Greaseweazle.kicad_sch 373 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723
  1. (kicad_sch (version 20211123) (generator eeschema)
  2. (uuid c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09)
  3. (paper "A4")
  4. (title_block
  5. (title "Greaseweazle F7 Lighting, USB PD")
  6. (date "2022-09-14")
  7. (rev "2.00")
  8. (company "SweProj.com")
  9. )
  10. (lib_symbols
  11. (symbol "74xx:SN74LS07" (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" "SN74LS07" (id 1) (at 0 -1.27 0)
  16. (effects (font (size 1.27 1.27)))
  17. )
  18. (property "Footprint" "" (id 2) (at 0 0 0)
  19. (effects (font (size 1.27 1.27)) hide)
  20. )
  21. (property "Datasheet" "www.ti.com/lit/ds/symlink/sn74ls07.pdf" (id 3) (at 0 0 0)
  22. (effects (font (size 1.27 1.27)) hide)
  23. )
  24. (property "ki_locked" "" (id 4) (at 0 0 0)
  25. (effects (font (size 1.27 1.27)))
  26. )
  27. (property "ki_keywords" "TTL hex buffer OpenCol" (id 5) (at 0 0 0)
  28. (effects (font (size 1.27 1.27)) hide)
  29. )
  30. (property "ki_description" "Hex Buffers and Drivers With Open Collector High Voltage Outputs" (id 6) (at 0 0 0)
  31. (effects (font (size 1.27 1.27)) hide)
  32. )
  33. (property "ki_fp_filters" "SOIC*3.9x8.7mm*P1.27mm* TSSOP*4.4x5mm*P0.65mm* DIP*W7.62mm*" (id 7) (at 0 0 0)
  34. (effects (font (size 1.27 1.27)) hide)
  35. )
  36. (symbol "SN74LS07_1_0"
  37. (polyline
  38. (pts
  39. (xy -3.81 3.81)
  40. (xy -3.81 -3.81)
  41. (xy 3.81 0)
  42. (xy -3.81 3.81)
  43. )
  44. (stroke (width 0.254) (type default) (color 0 0 0 0))
  45. (fill (type background))
  46. )
  47. (pin input line (at -7.62 0 0) (length 3.81)
  48. (name "~" (effects (font (size 1.27 1.27))))
  49. (number "1" (effects (font (size 1.27 1.27))))
  50. )
  51. (pin open_collector line (at 7.62 0 180) (length 3.81)
  52. (name "~" (effects (font (size 1.27 1.27))))
  53. (number "2" (effects (font (size 1.27 1.27))))
  54. )
  55. )
  56. (symbol "SN74LS07_2_0"
  57. (polyline
  58. (pts
  59. (xy -3.81 3.81)
  60. (xy -3.81 -3.81)
  61. (xy 3.81 0)
  62. (xy -3.81 3.81)
  63. )
  64. (stroke (width 0.254) (type default) (color 0 0 0 0))
  65. (fill (type background))
  66. )
  67. (pin input line (at -7.62 0 0) (length 3.81)
  68. (name "~" (effects (font (size 1.27 1.27))))
  69. (number "3" (effects (font (size 1.27 1.27))))
  70. )
  71. (pin open_collector line (at 7.62 0 180) (length 3.81)
  72. (name "~" (effects (font (size 1.27 1.27))))
  73. (number "4" (effects (font (size 1.27 1.27))))
  74. )
  75. )
  76. (symbol "SN74LS07_3_0"
  77. (polyline
  78. (pts
  79. (xy -3.81 3.81)
  80. (xy -3.81 -3.81)
  81. (xy 3.81 0)
  82. (xy -3.81 3.81)
  83. )
  84. (stroke (width 0.254) (type default) (color 0 0 0 0))
  85. (fill (type background))
  86. )
  87. (pin input line (at -7.62 0 0) (length 3.81)
  88. (name "~" (effects (font (size 1.27 1.27))))
  89. (number "5" (effects (font (size 1.27 1.27))))
  90. )
  91. (pin open_collector line (at 7.62 0 180) (length 3.81)
  92. (name "~" (effects (font (size 1.27 1.27))))
  93. (number "6" (effects (font (size 1.27 1.27))))
  94. )
  95. )
  96. (symbol "SN74LS07_4_0"
  97. (polyline
  98. (pts
  99. (xy -3.81 3.81)
  100. (xy -3.81 -3.81)
  101. (xy 3.81 0)
  102. (xy -3.81 3.81)
  103. )
  104. (stroke (width 0.254) (type default) (color 0 0 0 0))
  105. (fill (type background))
  106. )
  107. (pin open_collector line (at 7.62 0 180) (length 3.81)
  108. (name "~" (effects (font (size 1.27 1.27))))
  109. (number "8" (effects (font (size 1.27 1.27))))
  110. )
  111. (pin input line (at -7.62 0 0) (length 3.81)
  112. (name "~" (effects (font (size 1.27 1.27))))
  113. (number "9" (effects (font (size 1.27 1.27))))
  114. )
  115. )
  116. (symbol "SN74LS07_5_0"
  117. (polyline
  118. (pts
  119. (xy -3.81 3.81)
  120. (xy -3.81 -3.81)
  121. (xy 3.81 0)
  122. (xy -3.81 3.81)
  123. )
  124. (stroke (width 0.254) (type default) (color 0 0 0 0))
  125. (fill (type background))
  126. )
  127. (pin open_collector line (at 7.62 0 180) (length 3.81)
  128. (name "~" (effects (font (size 1.27 1.27))))
  129. (number "10" (effects (font (size 1.27 1.27))))
  130. )
  131. (pin input line (at -7.62 0 0) (length 3.81)
  132. (name "~" (effects (font (size 1.27 1.27))))
  133. (number "11" (effects (font (size 1.27 1.27))))
  134. )
  135. )
  136. (symbol "SN74LS07_6_0"
  137. (polyline
  138. (pts
  139. (xy -3.81 3.81)
  140. (xy -3.81 -3.81)
  141. (xy 3.81 0)
  142. (xy -3.81 3.81)
  143. )
  144. (stroke (width 0.254) (type default) (color 0 0 0 0))
  145. (fill (type background))
  146. )
  147. (pin open_collector line (at 7.62 0 180) (length 3.81)
  148. (name "~" (effects (font (size 1.27 1.27))))
  149. (number "12" (effects (font (size 1.27 1.27))))
  150. )
  151. (pin input line (at -7.62 0 0) (length 3.81)
  152. (name "~" (effects (font (size 1.27 1.27))))
  153. (number "13" (effects (font (size 1.27 1.27))))
  154. )
  155. )
  156. (symbol "SN74LS07_7_0"
  157. (pin power_in line (at 0 12.7 270) (length 5.08)
  158. (name "VCC" (effects (font (size 1.27 1.27))))
  159. (number "14" (effects (font (size 1.27 1.27))))
  160. )
  161. (pin power_in line (at 0 -12.7 90) (length 5.08)
  162. (name "GND" (effects (font (size 1.27 1.27))))
  163. (number "7" (effects (font (size 1.27 1.27))))
  164. )
  165. )
  166. (symbol "SN74LS07_7_1"
  167. (rectangle (start -5.08 7.62) (end 5.08 -7.62)
  168. (stroke (width 0.254) (type default) (color 0 0 0 0))
  169. (fill (type background))
  170. )
  171. )
  172. )
  173. (symbol "Connector:Conn_01x02_Male" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  174. (property "Reference" "J" (id 0) (at 0 2.54 0)
  175. (effects (font (size 1.27 1.27)))
  176. )
  177. (property "Value" "Conn_01x02_Male" (id 1) (at 0 -5.08 0)
  178. (effects (font (size 1.27 1.27)))
  179. )
  180. (property "Footprint" "" (id 2) (at 0 0 0)
  181. (effects (font (size 1.27 1.27)) hide)
  182. )
  183. (property "Datasheet" "~" (id 3) (at 0 0 0)
  184. (effects (font (size 1.27 1.27)) hide)
  185. )
  186. (property "ki_keywords" "connector" (id 4) (at 0 0 0)
  187. (effects (font (size 1.27 1.27)) hide)
  188. )
  189. (property "ki_description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
  190. (effects (font (size 1.27 1.27)) hide)
  191. )
  192. (property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
  193. (effects (font (size 1.27 1.27)) hide)
  194. )
  195. (symbol "Conn_01x02_Male_1_1"
  196. (polyline
  197. (pts
  198. (xy 1.27 -2.54)
  199. (xy 0.8636 -2.54)
  200. )
  201. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  202. (fill (type none))
  203. )
  204. (polyline
  205. (pts
  206. (xy 1.27 0)
  207. (xy 0.8636 0)
  208. )
  209. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  210. (fill (type none))
  211. )
  212. (rectangle (start 0.8636 -2.413) (end 0 -2.667)
  213. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  214. (fill (type outline))
  215. )
  216. (rectangle (start 0.8636 0.127) (end 0 -0.127)
  217. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  218. (fill (type outline))
  219. )
  220. (pin passive line (at 5.08 0 180) (length 3.81)
  221. (name "Pin_1" (effects (font (size 1.27 1.27))))
  222. (number "1" (effects (font (size 1.27 1.27))))
  223. )
  224. (pin passive line (at 5.08 -2.54 180) (length 3.81)
  225. (name "Pin_2" (effects (font (size 1.27 1.27))))
  226. (number "2" (effects (font (size 1.27 1.27))))
  227. )
  228. )
  229. )
  230. (symbol "Connector:Conn_01x03_Male" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  231. (property "Reference" "J" (id 0) (at 0 5.08 0)
  232. (effects (font (size 1.27 1.27)))
  233. )
  234. (property "Value" "Conn_01x03_Male" (id 1) (at 0 -5.08 0)
  235. (effects (font (size 1.27 1.27)))
  236. )
  237. (property "Footprint" "" (id 2) (at 0 0 0)
  238. (effects (font (size 1.27 1.27)) hide)
  239. )
  240. (property "Datasheet" "~" (id 3) (at 0 0 0)
  241. (effects (font (size 1.27 1.27)) hide)
  242. )
  243. (property "ki_keywords" "connector" (id 4) (at 0 0 0)
  244. (effects (font (size 1.27 1.27)) hide)
  245. )
  246. (property "ki_description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
  247. (effects (font (size 1.27 1.27)) hide)
  248. )
  249. (property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
  250. (effects (font (size 1.27 1.27)) hide)
  251. )
  252. (symbol "Conn_01x03_Male_1_1"
  253. (polyline
  254. (pts
  255. (xy 1.27 -2.54)
  256. (xy 0.8636 -2.54)
  257. )
  258. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  259. (fill (type none))
  260. )
  261. (polyline
  262. (pts
  263. (xy 1.27 0)
  264. (xy 0.8636 0)
  265. )
  266. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  267. (fill (type none))
  268. )
  269. (polyline
  270. (pts
  271. (xy 1.27 2.54)
  272. (xy 0.8636 2.54)
  273. )
  274. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  275. (fill (type none))
  276. )
  277. (rectangle (start 0.8636 -2.413) (end 0 -2.667)
  278. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  279. (fill (type outline))
  280. )
  281. (rectangle (start 0.8636 0.127) (end 0 -0.127)
  282. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  283. (fill (type outline))
  284. )
  285. (rectangle (start 0.8636 2.667) (end 0 2.413)
  286. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  287. (fill (type outline))
  288. )
  289. (pin passive line (at 5.08 2.54 180) (length 3.81)
  290. (name "Pin_1" (effects (font (size 1.27 1.27))))
  291. (number "1" (effects (font (size 1.27 1.27))))
  292. )
  293. (pin passive line (at 5.08 0 180) (length 3.81)
  294. (name "Pin_2" (effects (font (size 1.27 1.27))))
  295. (number "2" (effects (font (size 1.27 1.27))))
  296. )
  297. (pin passive line (at 5.08 -2.54 180) (length 3.81)
  298. (name "Pin_3" (effects (font (size 1.27 1.27))))
  299. (number "3" (effects (font (size 1.27 1.27))))
  300. )
  301. )
  302. )
  303. (symbol "Connector_Generic:Conn_01x03" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  304. (property "Reference" "J" (id 0) (at 0 5.08 0)
  305. (effects (font (size 1.27 1.27)))
  306. )
  307. (property "Value" "Conn_01x03" (id 1) (at 0 -5.08 0)
  308. (effects (font (size 1.27 1.27)))
  309. )
  310. (property "Footprint" "" (id 2) (at 0 0 0)
  311. (effects (font (size 1.27 1.27)) hide)
  312. )
  313. (property "Datasheet" "~" (id 3) (at 0 0 0)
  314. (effects (font (size 1.27 1.27)) hide)
  315. )
  316. (property "ki_keywords" "connector" (id 4) (at 0 0 0)
  317. (effects (font (size 1.27 1.27)) hide)
  318. )
  319. (property "ki_description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
  320. (effects (font (size 1.27 1.27)) hide)
  321. )
  322. (property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
  323. (effects (font (size 1.27 1.27)) hide)
  324. )
  325. (symbol "Conn_01x03_1_1"
  326. (rectangle (start -1.27 -2.413) (end 0 -2.667)
  327. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  328. (fill (type none))
  329. )
  330. (rectangle (start -1.27 0.127) (end 0 -0.127)
  331. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  332. (fill (type none))
  333. )
  334. (rectangle (start -1.27 2.667) (end 0 2.413)
  335. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  336. (fill (type none))
  337. )
  338. (rectangle (start -1.27 3.81) (end 1.27 -3.81)
  339. (stroke (width 0.254) (type default) (color 0 0 0 0))
  340. (fill (type background))
  341. )
  342. (pin passive line (at -5.08 2.54 0) (length 3.81)
  343. (name "Pin_1" (effects (font (size 1.27 1.27))))
  344. (number "1" (effects (font (size 1.27 1.27))))
  345. )
  346. (pin passive line (at -5.08 0 0) (length 3.81)
  347. (name "Pin_2" (effects (font (size 1.27 1.27))))
  348. (number "2" (effects (font (size 1.27 1.27))))
  349. )
  350. (pin passive line (at -5.08 -2.54 0) (length 3.81)
  351. (name "Pin_3" (effects (font (size 1.27 1.27))))
  352. (number "3" (effects (font (size 1.27 1.27))))
  353. )
  354. )
  355. )
  356. (symbol "Connector_Generic:Conn_02x03_Odd_Even" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  357. (property "Reference" "J" (id 0) (at 1.27 5.08 0)
  358. (effects (font (size 1.27 1.27)))
  359. )
  360. (property "Value" "Conn_02x03_Odd_Even" (id 1) (at 1.27 -5.08 0)
  361. (effects (font (size 1.27 1.27)))
  362. )
  363. (property "Footprint" "" (id 2) (at 0 0 0)
  364. (effects (font (size 1.27 1.27)) hide)
  365. )
  366. (property "Datasheet" "~" (id 3) (at 0 0 0)
  367. (effects (font (size 1.27 1.27)) hide)
  368. )
  369. (property "ki_keywords" "connector" (id 4) (at 0 0 0)
  370. (effects (font (size 1.27 1.27)) hide)
  371. )
  372. (property "ki_description" "Generic connector, double row, 02x03, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
  373. (effects (font (size 1.27 1.27)) hide)
  374. )
  375. (property "ki_fp_filters" "Connector*:*_2x??_*" (id 6) (at 0 0 0)
  376. (effects (font (size 1.27 1.27)) hide)
  377. )
  378. (symbol "Conn_02x03_Odd_Even_1_1"
  379. (rectangle (start -1.27 -2.413) (end 0 -2.667)
  380. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  381. (fill (type none))
  382. )
  383. (rectangle (start -1.27 0.127) (end 0 -0.127)
  384. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  385. (fill (type none))
  386. )
  387. (rectangle (start -1.27 2.667) (end 0 2.413)
  388. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  389. (fill (type none))
  390. )
  391. (rectangle (start -1.27 3.81) (end 3.81 -3.81)
  392. (stroke (width 0.254) (type default) (color 0 0 0 0))
  393. (fill (type background))
  394. )
  395. (rectangle (start 3.81 -2.413) (end 2.54 -2.667)
  396. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  397. (fill (type none))
  398. )
  399. (rectangle (start 3.81 0.127) (end 2.54 -0.127)
  400. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  401. (fill (type none))
  402. )
  403. (rectangle (start 3.81 2.667) (end 2.54 2.413)
  404. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  405. (fill (type none))
  406. )
  407. (pin passive line (at -5.08 2.54 0) (length 3.81)
  408. (name "Pin_1" (effects (font (size 1.27 1.27))))
  409. (number "1" (effects (font (size 1.27 1.27))))
  410. )
  411. (pin passive line (at 7.62 2.54 180) (length 3.81)
  412. (name "Pin_2" (effects (font (size 1.27 1.27))))
  413. (number "2" (effects (font (size 1.27 1.27))))
  414. )
  415. (pin passive line (at -5.08 0 0) (length 3.81)
  416. (name "Pin_3" (effects (font (size 1.27 1.27))))
  417. (number "3" (effects (font (size 1.27 1.27))))
  418. )
  419. (pin passive line (at 7.62 0 180) (length 3.81)
  420. (name "Pin_4" (effects (font (size 1.27 1.27))))
  421. (number "4" (effects (font (size 1.27 1.27))))
  422. )
  423. (pin passive line (at -5.08 -2.54 0) (length 3.81)
  424. (name "Pin_5" (effects (font (size 1.27 1.27))))
  425. (number "5" (effects (font (size 1.27 1.27))))
  426. )
  427. (pin passive line (at 7.62 -2.54 180) (length 3.81)
  428. (name "Pin_6" (effects (font (size 1.27 1.27))))
  429. (number "6" (effects (font (size 1.27 1.27))))
  430. )
  431. )
  432. )
  433. (symbol "Connector_Generic:Conn_02x05_Odd_Even" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  434. (property "Reference" "J" (id 0) (at 1.27 7.62 0)
  435. (effects (font (size 1.27 1.27)))
  436. )
  437. (property "Value" "Conn_02x05_Odd_Even" (id 1) (at 1.27 -7.62 0)
  438. (effects (font (size 1.27 1.27)))
  439. )
  440. (property "Footprint" "" (id 2) (at 0 0 0)
  441. (effects (font (size 1.27 1.27)) hide)
  442. )
  443. (property "Datasheet" "~" (id 3) (at 0 0 0)
  444. (effects (font (size 1.27 1.27)) hide)
  445. )
  446. (property "ki_keywords" "connector" (id 4) (at 0 0 0)
  447. (effects (font (size 1.27 1.27)) hide)
  448. )
  449. (property "ki_description" "Generic connector, double row, 02x05, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
  450. (effects (font (size 1.27 1.27)) hide)
  451. )
  452. (property "ki_fp_filters" "Connector*:*_2x??_*" (id 6) (at 0 0 0)
  453. (effects (font (size 1.27 1.27)) hide)
  454. )
  455. (symbol "Conn_02x05_Odd_Even_1_1"
  456. (rectangle (start -1.27 -4.953) (end 0 -5.207)
  457. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  458. (fill (type none))
  459. )
  460. (rectangle (start -1.27 -2.413) (end 0 -2.667)
  461. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  462. (fill (type none))
  463. )
  464. (rectangle (start -1.27 0.127) (end 0 -0.127)
  465. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  466. (fill (type none))
  467. )
  468. (rectangle (start -1.27 2.667) (end 0 2.413)
  469. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  470. (fill (type none))
  471. )
  472. (rectangle (start -1.27 5.207) (end 0 4.953)
  473. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  474. (fill (type none))
  475. )
  476. (rectangle (start -1.27 6.35) (end 3.81 -6.35)
  477. (stroke (width 0.254) (type default) (color 0 0 0 0))
  478. (fill (type background))
  479. )
  480. (rectangle (start 3.81 -4.953) (end 2.54 -5.207)
  481. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  482. (fill (type none))
  483. )
  484. (rectangle (start 3.81 -2.413) (end 2.54 -2.667)
  485. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  486. (fill (type none))
  487. )
  488. (rectangle (start 3.81 0.127) (end 2.54 -0.127)
  489. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  490. (fill (type none))
  491. )
  492. (rectangle (start 3.81 2.667) (end 2.54 2.413)
  493. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  494. (fill (type none))
  495. )
  496. (rectangle (start 3.81 5.207) (end 2.54 4.953)
  497. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  498. (fill (type none))
  499. )
  500. (pin passive line (at -5.08 5.08 0) (length 3.81)
  501. (name "Pin_1" (effects (font (size 1.27 1.27))))
  502. (number "1" (effects (font (size 1.27 1.27))))
  503. )
  504. (pin passive line (at 7.62 -5.08 180) (length 3.81)
  505. (name "Pin_10" (effects (font (size 1.27 1.27))))
  506. (number "10" (effects (font (size 1.27 1.27))))
  507. )
  508. (pin passive line (at 7.62 5.08 180) (length 3.81)
  509. (name "Pin_2" (effects (font (size 1.27 1.27))))
  510. (number "2" (effects (font (size 1.27 1.27))))
  511. )
  512. (pin passive line (at -5.08 2.54 0) (length 3.81)
  513. (name "Pin_3" (effects (font (size 1.27 1.27))))
  514. (number "3" (effects (font (size 1.27 1.27))))
  515. )
  516. (pin passive line (at 7.62 2.54 180) (length 3.81)
  517. (name "Pin_4" (effects (font (size 1.27 1.27))))
  518. (number "4" (effects (font (size 1.27 1.27))))
  519. )
  520. (pin passive line (at -5.08 0 0) (length 3.81)
  521. (name "Pin_5" (effects (font (size 1.27 1.27))))
  522. (number "5" (effects (font (size 1.27 1.27))))
  523. )
  524. (pin passive line (at 7.62 0 180) (length 3.81)
  525. (name "Pin_6" (effects (font (size 1.27 1.27))))
  526. (number "6" (effects (font (size 1.27 1.27))))
  527. )
  528. (pin passive line (at -5.08 -2.54 0) (length 3.81)
  529. (name "Pin_7" (effects (font (size 1.27 1.27))))
  530. (number "7" (effects (font (size 1.27 1.27))))
  531. )
  532. (pin passive line (at 7.62 -2.54 180) (length 3.81)
  533. (name "Pin_8" (effects (font (size 1.27 1.27))))
  534. (number "8" (effects (font (size 1.27 1.27))))
  535. )
  536. (pin passive line (at -5.08 -5.08 0) (length 3.81)
  537. (name "Pin_9" (effects (font (size 1.27 1.27))))
  538. (number "9" (effects (font (size 1.27 1.27))))
  539. )
  540. )
  541. )
  542. (symbol "Connector_Generic:Conn_02x17_Odd_Even" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  543. (property "Reference" "J" (id 0) (at 1.27 22.86 0)
  544. (effects (font (size 1.27 1.27)))
  545. )
  546. (property "Value" "Conn_02x17_Odd_Even" (id 1) (at 1.27 -22.86 0)
  547. (effects (font (size 1.27 1.27)))
  548. )
  549. (property "Footprint" "" (id 2) (at 0 0 0)
  550. (effects (font (size 1.27 1.27)) hide)
  551. )
  552. (property "Datasheet" "~" (id 3) (at 0 0 0)
  553. (effects (font (size 1.27 1.27)) hide)
  554. )
  555. (property "ki_keywords" "connector" (id 4) (at 0 0 0)
  556. (effects (font (size 1.27 1.27)) hide)
  557. )
  558. (property "ki_description" "Generic connector, double row, 02x17, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
  559. (effects (font (size 1.27 1.27)) hide)
  560. )
  561. (property "ki_fp_filters" "Connector*:*_2x??_*" (id 6) (at 0 0 0)
  562. (effects (font (size 1.27 1.27)) hide)
  563. )
  564. (symbol "Conn_02x17_Odd_Even_1_1"
  565. (rectangle (start -1.27 -20.193) (end 0 -20.447)
  566. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  567. (fill (type none))
  568. )
  569. (rectangle (start -1.27 -17.653) (end 0 -17.907)
  570. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  571. (fill (type none))
  572. )
  573. (rectangle (start -1.27 -15.113) (end 0 -15.367)
  574. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  575. (fill (type none))
  576. )
  577. (rectangle (start -1.27 -12.573) (end 0 -12.827)
  578. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  579. (fill (type none))
  580. )
  581. (rectangle (start -1.27 -10.033) (end 0 -10.287)
  582. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  583. (fill (type none))
  584. )
  585. (rectangle (start -1.27 -7.493) (end 0 -7.747)
  586. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  587. (fill (type none))
  588. )
  589. (rectangle (start -1.27 -4.953) (end 0 -5.207)
  590. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  591. (fill (type none))
  592. )
  593. (rectangle (start -1.27 -2.413) (end 0 -2.667)
  594. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  595. (fill (type none))
  596. )
  597. (rectangle (start -1.27 0.127) (end 0 -0.127)
  598. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  599. (fill (type none))
  600. )
  601. (rectangle (start -1.27 2.667) (end 0 2.413)
  602. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  603. (fill (type none))
  604. )
  605. (rectangle (start -1.27 5.207) (end 0 4.953)
  606. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  607. (fill (type none))
  608. )
  609. (rectangle (start -1.27 7.747) (end 0 7.493)
  610. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  611. (fill (type none))
  612. )
  613. (rectangle (start -1.27 10.287) (end 0 10.033)
  614. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  615. (fill (type none))
  616. )
  617. (rectangle (start -1.27 12.827) (end 0 12.573)
  618. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  619. (fill (type none))
  620. )
  621. (rectangle (start -1.27 15.367) (end 0 15.113)
  622. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  623. (fill (type none))
  624. )
  625. (rectangle (start -1.27 17.907) (end 0 17.653)
  626. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  627. (fill (type none))
  628. )
  629. (rectangle (start -1.27 20.447) (end 0 20.193)
  630. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  631. (fill (type none))
  632. )
  633. (rectangle (start -1.27 21.59) (end 3.81 -21.59)
  634. (stroke (width 0.254) (type default) (color 0 0 0 0))
  635. (fill (type background))
  636. )
  637. (rectangle (start 3.81 -20.193) (end 2.54 -20.447)
  638. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  639. (fill (type none))
  640. )
  641. (rectangle (start 3.81 -17.653) (end 2.54 -17.907)
  642. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  643. (fill (type none))
  644. )
  645. (rectangle (start 3.81 -15.113) (end 2.54 -15.367)
  646. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  647. (fill (type none))
  648. )
  649. (rectangle (start 3.81 -12.573) (end 2.54 -12.827)
  650. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  651. (fill (type none))
  652. )
  653. (rectangle (start 3.81 -10.033) (end 2.54 -10.287)
  654. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  655. (fill (type none))
  656. )
  657. (rectangle (start 3.81 -7.493) (end 2.54 -7.747)
  658. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  659. (fill (type none))
  660. )
  661. (rectangle (start 3.81 -4.953) (end 2.54 -5.207)
  662. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  663. (fill (type none))
  664. )
  665. (rectangle (start 3.81 -2.413) (end 2.54 -2.667)
  666. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  667. (fill (type none))
  668. )
  669. (rectangle (start 3.81 0.127) (end 2.54 -0.127)
  670. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  671. (fill (type none))
  672. )
  673. (rectangle (start 3.81 2.667) (end 2.54 2.413)
  674. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  675. (fill (type none))
  676. )
  677. (rectangle (start 3.81 5.207) (end 2.54 4.953)
  678. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  679. (fill (type none))
  680. )
  681. (rectangle (start 3.81 7.747) (end 2.54 7.493)
  682. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  683. (fill (type none))
  684. )
  685. (rectangle (start 3.81 10.287) (end 2.54 10.033)
  686. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  687. (fill (type none))
  688. )
  689. (rectangle (start 3.81 12.827) (end 2.54 12.573)
  690. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  691. (fill (type none))
  692. )
  693. (rectangle (start 3.81 15.367) (end 2.54 15.113)
  694. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  695. (fill (type none))
  696. )
  697. (rectangle (start 3.81 17.907) (end 2.54 17.653)
  698. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  699. (fill (type none))
  700. )
  701. (rectangle (start 3.81 20.447) (end 2.54 20.193)
  702. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  703. (fill (type none))
  704. )
  705. (pin passive line (at -5.08 20.32 0) (length 3.81)
  706. (name "Pin_1" (effects (font (size 1.27 1.27))))
  707. (number "1" (effects (font (size 1.27 1.27))))
  708. )
  709. (pin passive line (at 7.62 10.16 180) (length 3.81)
  710. (name "Pin_10" (effects (font (size 1.27 1.27))))
  711. (number "10" (effects (font (size 1.27 1.27))))
  712. )
  713. (pin passive line (at -5.08 7.62 0) (length 3.81)
  714. (name "Pin_11" (effects (font (size 1.27 1.27))))
  715. (number "11" (effects (font (size 1.27 1.27))))
  716. )
  717. (pin passive line (at 7.62 7.62 180) (length 3.81)
  718. (name "Pin_12" (effects (font (size 1.27 1.27))))
  719. (number "12" (effects (font (size 1.27 1.27))))
  720. )
  721. (pin passive line (at -5.08 5.08 0) (length 3.81)
  722. (name "Pin_13" (effects (font (size 1.27 1.27))))
  723. (number "13" (effects (font (size 1.27 1.27))))
  724. )
  725. (pin passive line (at 7.62 5.08 180) (length 3.81)
  726. (name "Pin_14" (effects (font (size 1.27 1.27))))
  727. (number "14" (effects (font (size 1.27 1.27))))
  728. )
  729. (pin passive line (at -5.08 2.54 0) (length 3.81)
  730. (name "Pin_15" (effects (font (size 1.27 1.27))))
  731. (number "15" (effects (font (size 1.27 1.27))))
  732. )
  733. (pin passive line (at 7.62 2.54 180) (length 3.81)
  734. (name "Pin_16" (effects (font (size 1.27 1.27))))
  735. (number "16" (effects (font (size 1.27 1.27))))
  736. )
  737. (pin passive line (at -5.08 0 0) (length 3.81)
  738. (name "Pin_17" (effects (font (size 1.27 1.27))))
  739. (number "17" (effects (font (size 1.27 1.27))))
  740. )
  741. (pin passive line (at 7.62 0 180) (length 3.81)
  742. (name "Pin_18" (effects (font (size 1.27 1.27))))
  743. (number "18" (effects (font (size 1.27 1.27))))
  744. )
  745. (pin passive line (at -5.08 -2.54 0) (length 3.81)
  746. (name "Pin_19" (effects (font (size 1.27 1.27))))
  747. (number "19" (effects (font (size 1.27 1.27))))
  748. )
  749. (pin passive line (at 7.62 20.32 180) (length 3.81)
  750. (name "Pin_2" (effects (font (size 1.27 1.27))))
  751. (number "2" (effects (font (size 1.27 1.27))))
  752. )
  753. (pin passive line (at 7.62 -2.54 180) (length 3.81)
  754. (name "Pin_20" (effects (font (size 1.27 1.27))))
  755. (number "20" (effects (font (size 1.27 1.27))))
  756. )
  757. (pin passive line (at -5.08 -5.08 0) (length 3.81)
  758. (name "Pin_21" (effects (font (size 1.27 1.27))))
  759. (number "21" (effects (font (size 1.27 1.27))))
  760. )
  761. (pin passive line (at 7.62 -5.08 180) (length 3.81)
  762. (name "Pin_22" (effects (font (size 1.27 1.27))))
  763. (number "22" (effects (font (size 1.27 1.27))))
  764. )
  765. (pin passive line (at -5.08 -7.62 0) (length 3.81)
  766. (name "Pin_23" (effects (font (size 1.27 1.27))))
  767. (number "23" (effects (font (size 1.27 1.27))))
  768. )
  769. (pin passive line (at 7.62 -7.62 180) (length 3.81)
  770. (name "Pin_24" (effects (font (size 1.27 1.27))))
  771. (number "24" (effects (font (size 1.27 1.27))))
  772. )
  773. (pin passive line (at -5.08 -10.16 0) (length 3.81)
  774. (name "Pin_25" (effects (font (size 1.27 1.27))))
  775. (number "25" (effects (font (size 1.27 1.27))))
  776. )
  777. (pin passive line (at 7.62 -10.16 180) (length 3.81)
  778. (name "Pin_26" (effects (font (size 1.27 1.27))))
  779. (number "26" (effects (font (size 1.27 1.27))))
  780. )
  781. (pin passive line (at -5.08 -12.7 0) (length 3.81)
  782. (name "Pin_27" (effects (font (size 1.27 1.27))))
  783. (number "27" (effects (font (size 1.27 1.27))))
  784. )
  785. (pin passive line (at 7.62 -12.7 180) (length 3.81)
  786. (name "Pin_28" (effects (font (size 1.27 1.27))))
  787. (number "28" (effects (font (size 1.27 1.27))))
  788. )
  789. (pin passive line (at -5.08 -15.24 0) (length 3.81)
  790. (name "Pin_29" (effects (font (size 1.27 1.27))))
  791. (number "29" (effects (font (size 1.27 1.27))))
  792. )
  793. (pin passive line (at -5.08 17.78 0) (length 3.81)
  794. (name "Pin_3" (effects (font (size 1.27 1.27))))
  795. (number "3" (effects (font (size 1.27 1.27))))
  796. )
  797. (pin passive line (at 7.62 -15.24 180) (length 3.81)
  798. (name "Pin_30" (effects (font (size 1.27 1.27))))
  799. (number "30" (effects (font (size 1.27 1.27))))
  800. )
  801. (pin passive line (at -5.08 -17.78 0) (length 3.81)
  802. (name "Pin_31" (effects (font (size 1.27 1.27))))
  803. (number "31" (effects (font (size 1.27 1.27))))
  804. )
  805. (pin passive line (at 7.62 -17.78 180) (length 3.81)
  806. (name "Pin_32" (effects (font (size 1.27 1.27))))
  807. (number "32" (effects (font (size 1.27 1.27))))
  808. )
  809. (pin passive line (at -5.08 -20.32 0) (length 3.81)
  810. (name "Pin_33" (effects (font (size 1.27 1.27))))
  811. (number "33" (effects (font (size 1.27 1.27))))
  812. )
  813. (pin passive line (at 7.62 -20.32 180) (length 3.81)
  814. (name "Pin_34" (effects (font (size 1.27 1.27))))
  815. (number "34" (effects (font (size 1.27 1.27))))
  816. )
  817. (pin passive line (at 7.62 17.78 180) (length 3.81)
  818. (name "Pin_4" (effects (font (size 1.27 1.27))))
  819. (number "4" (effects (font (size 1.27 1.27))))
  820. )
  821. (pin passive line (at -5.08 15.24 0) (length 3.81)
  822. (name "Pin_5" (effects (font (size 1.27 1.27))))
  823. (number "5" (effects (font (size 1.27 1.27))))
  824. )
  825. (pin passive line (at 7.62 15.24 180) (length 3.81)
  826. (name "Pin_6" (effects (font (size 1.27 1.27))))
  827. (number "6" (effects (font (size 1.27 1.27))))
  828. )
  829. (pin passive line (at -5.08 12.7 0) (length 3.81)
  830. (name "Pin_7" (effects (font (size 1.27 1.27))))
  831. (number "7" (effects (font (size 1.27 1.27))))
  832. )
  833. (pin passive line (at 7.62 12.7 180) (length 3.81)
  834. (name "Pin_8" (effects (font (size 1.27 1.27))))
  835. (number "8" (effects (font (size 1.27 1.27))))
  836. )
  837. (pin passive line (at -5.08 10.16 0) (length 3.81)
  838. (name "Pin_9" (effects (font (size 1.27 1.27))))
  839. (number "9" (effects (font (size 1.27 1.27))))
  840. )
  841. )
  842. )
  843. (symbol "Connector_Generic:Conn_02x25_Odd_Even" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  844. (property "Reference" "J" (id 0) (at 1.27 33.02 0)
  845. (effects (font (size 1.27 1.27)))
  846. )
  847. (property "Value" "Conn_02x25_Odd_Even" (id 1) (at 1.27 -33.02 0)
  848. (effects (font (size 1.27 1.27)))
  849. )
  850. (property "Footprint" "" (id 2) (at 0 0 0)
  851. (effects (font (size 1.27 1.27)) hide)
  852. )
  853. (property "Datasheet" "~" (id 3) (at 0 0 0)
  854. (effects (font (size 1.27 1.27)) hide)
  855. )
  856. (property "ki_keywords" "connector" (id 4) (at 0 0 0)
  857. (effects (font (size 1.27 1.27)) hide)
  858. )
  859. (property "ki_description" "Generic connector, double row, 02x25, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
  860. (effects (font (size 1.27 1.27)) hide)
  861. )
  862. (property "ki_fp_filters" "Connector*:*_2x??_*" (id 6) (at 0 0 0)
  863. (effects (font (size 1.27 1.27)) hide)
  864. )
  865. (symbol "Conn_02x25_Odd_Even_1_1"
  866. (rectangle (start -1.27 -30.353) (end 0 -30.607)
  867. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  868. (fill (type none))
  869. )
  870. (rectangle (start -1.27 -27.813) (end 0 -28.067)
  871. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  872. (fill (type none))
  873. )
  874. (rectangle (start -1.27 -25.273) (end 0 -25.527)
  875. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  876. (fill (type none))
  877. )
  878. (rectangle (start -1.27 -22.733) (end 0 -22.987)
  879. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  880. (fill (type none))
  881. )
  882. (rectangle (start -1.27 -20.193) (end 0 -20.447)
  883. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  884. (fill (type none))
  885. )
  886. (rectangle (start -1.27 -17.653) (end 0 -17.907)
  887. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  888. (fill (type none))
  889. )
  890. (rectangle (start -1.27 -15.113) (end 0 -15.367)
  891. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  892. (fill (type none))
  893. )
  894. (rectangle (start -1.27 -12.573) (end 0 -12.827)
  895. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  896. (fill (type none))
  897. )
  898. (rectangle (start -1.27 -10.033) (end 0 -10.287)
  899. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  900. (fill (type none))
  901. )
  902. (rectangle (start -1.27 -7.493) (end 0 -7.747)
  903. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  904. (fill (type none))
  905. )
  906. (rectangle (start -1.27 -4.953) (end 0 -5.207)
  907. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  908. (fill (type none))
  909. )
  910. (rectangle (start -1.27 -2.413) (end 0 -2.667)
  911. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  912. (fill (type none))
  913. )
  914. (rectangle (start -1.27 0.127) (end 0 -0.127)
  915. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  916. (fill (type none))
  917. )
  918. (rectangle (start -1.27 2.667) (end 0 2.413)
  919. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  920. (fill (type none))
  921. )
  922. (rectangle (start -1.27 5.207) (end 0 4.953)
  923. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  924. (fill (type none))
  925. )
  926. (rectangle (start -1.27 7.747) (end 0 7.493)
  927. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  928. (fill (type none))
  929. )
  930. (rectangle (start -1.27 10.287) (end 0 10.033)
  931. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  932. (fill (type none))
  933. )
  934. (rectangle (start -1.27 12.827) (end 0 12.573)
  935. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  936. (fill (type none))
  937. )
  938. (rectangle (start -1.27 15.367) (end 0 15.113)
  939. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  940. (fill (type none))
  941. )
  942. (rectangle (start -1.27 17.907) (end 0 17.653)
  943. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  944. (fill (type none))
  945. )
  946. (rectangle (start -1.27 20.447) (end 0 20.193)
  947. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  948. (fill (type none))
  949. )
  950. (rectangle (start -1.27 22.987) (end 0 22.733)
  951. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  952. (fill (type none))
  953. )
  954. (rectangle (start -1.27 25.527) (end 0 25.273)
  955. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  956. (fill (type none))
  957. )
  958. (rectangle (start -1.27 28.067) (end 0 27.813)
  959. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  960. (fill (type none))
  961. )
  962. (rectangle (start -1.27 30.607) (end 0 30.353)
  963. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  964. (fill (type none))
  965. )
  966. (rectangle (start -1.27 31.75) (end 3.81 -31.75)
  967. (stroke (width 0.254) (type default) (color 0 0 0 0))
  968. (fill (type background))
  969. )
  970. (rectangle (start 3.81 -30.353) (end 2.54 -30.607)
  971. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  972. (fill (type none))
  973. )
  974. (rectangle (start 3.81 -27.813) (end 2.54 -28.067)
  975. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  976. (fill (type none))
  977. )
  978. (rectangle (start 3.81 -25.273) (end 2.54 -25.527)
  979. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  980. (fill (type none))
  981. )
  982. (rectangle (start 3.81 -22.733) (end 2.54 -22.987)
  983. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  984. (fill (type none))
  985. )
  986. (rectangle (start 3.81 -20.193) (end 2.54 -20.447)
  987. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  988. (fill (type none))
  989. )
  990. (rectangle (start 3.81 -17.653) (end 2.54 -17.907)
  991. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  992. (fill (type none))
  993. )
  994. (rectangle (start 3.81 -15.113) (end 2.54 -15.367)
  995. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  996. (fill (type none))
  997. )
  998. (rectangle (start 3.81 -12.573) (end 2.54 -12.827)
  999. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1000. (fill (type none))
  1001. )
  1002. (rectangle (start 3.81 -10.033) (end 2.54 -10.287)
  1003. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1004. (fill (type none))
  1005. )
  1006. (rectangle (start 3.81 -7.493) (end 2.54 -7.747)
  1007. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1008. (fill (type none))
  1009. )
  1010. (rectangle (start 3.81 -4.953) (end 2.54 -5.207)
  1011. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1012. (fill (type none))
  1013. )
  1014. (rectangle (start 3.81 -2.413) (end 2.54 -2.667)
  1015. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1016. (fill (type none))
  1017. )
  1018. (rectangle (start 3.81 0.127) (end 2.54 -0.127)
  1019. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1020. (fill (type none))
  1021. )
  1022. (rectangle (start 3.81 2.667) (end 2.54 2.413)
  1023. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1024. (fill (type none))
  1025. )
  1026. (rectangle (start 3.81 5.207) (end 2.54 4.953)
  1027. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1028. (fill (type none))
  1029. )
  1030. (rectangle (start 3.81 7.747) (end 2.54 7.493)
  1031. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1032. (fill (type none))
  1033. )
  1034. (rectangle (start 3.81 10.287) (end 2.54 10.033)
  1035. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1036. (fill (type none))
  1037. )
  1038. (rectangle (start 3.81 12.827) (end 2.54 12.573)
  1039. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1040. (fill (type none))
  1041. )
  1042. (rectangle (start 3.81 15.367) (end 2.54 15.113)
  1043. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1044. (fill (type none))
  1045. )
  1046. (rectangle (start 3.81 17.907) (end 2.54 17.653)
  1047. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1048. (fill (type none))
  1049. )
  1050. (rectangle (start 3.81 20.447) (end 2.54 20.193)
  1051. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1052. (fill (type none))
  1053. )
  1054. (rectangle (start 3.81 22.987) (end 2.54 22.733)
  1055. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1056. (fill (type none))
  1057. )
  1058. (rectangle (start 3.81 25.527) (end 2.54 25.273)
  1059. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1060. (fill (type none))
  1061. )
  1062. (rectangle (start 3.81 28.067) (end 2.54 27.813)
  1063. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1064. (fill (type none))
  1065. )
  1066. (rectangle (start 3.81 30.607) (end 2.54 30.353)
  1067. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1068. (fill (type none))
  1069. )
  1070. (pin passive line (at -5.08 30.48 0) (length 3.81)
  1071. (name "Pin_1" (effects (font (size 1.27 1.27))))
  1072. (number "1" (effects (font (size 1.27 1.27))))
  1073. )
  1074. (pin passive line (at 7.62 20.32 180) (length 3.81)
  1075. (name "Pin_10" (effects (font (size 1.27 1.27))))
  1076. (number "10" (effects (font (size 1.27 1.27))))
  1077. )
  1078. (pin passive line (at -5.08 17.78 0) (length 3.81)
  1079. (name "Pin_11" (effects (font (size 1.27 1.27))))
  1080. (number "11" (effects (font (size 1.27 1.27))))
  1081. )
  1082. (pin passive line (at 7.62 17.78 180) (length 3.81)
  1083. (name "Pin_12" (effects (font (size 1.27 1.27))))
  1084. (number "12" (effects (font (size 1.27 1.27))))
  1085. )
  1086. (pin passive line (at -5.08 15.24 0) (length 3.81)
  1087. (name "Pin_13" (effects (font (size 1.27 1.27))))
  1088. (number "13" (effects (font (size 1.27 1.27))))
  1089. )
  1090. (pin passive line (at 7.62 15.24 180) (length 3.81)
  1091. (name "Pin_14" (effects (font (size 1.27 1.27))))
  1092. (number "14" (effects (font (size 1.27 1.27))))
  1093. )
  1094. (pin passive line (at -5.08 12.7 0) (length 3.81)
  1095. (name "Pin_15" (effects (font (size 1.27 1.27))))
  1096. (number "15" (effects (font (size 1.27 1.27))))
  1097. )
  1098. (pin passive line (at 7.62 12.7 180) (length 3.81)
  1099. (name "Pin_16" (effects (font (size 1.27 1.27))))
  1100. (number "16" (effects (font (size 1.27 1.27))))
  1101. )
  1102. (pin passive line (at -5.08 10.16 0) (length 3.81)
  1103. (name "Pin_17" (effects (font (size 1.27 1.27))))
  1104. (number "17" (effects (font (size 1.27 1.27))))
  1105. )
  1106. (pin passive line (at 7.62 10.16 180) (length 3.81)
  1107. (name "Pin_18" (effects (font (size 1.27 1.27))))
  1108. (number "18" (effects (font (size 1.27 1.27))))
  1109. )
  1110. (pin passive line (at -5.08 7.62 0) (length 3.81)
  1111. (name "Pin_19" (effects (font (size 1.27 1.27))))
  1112. (number "19" (effects (font (size 1.27 1.27))))
  1113. )
  1114. (pin passive line (at 7.62 30.48 180) (length 3.81)
  1115. (name "Pin_2" (effects (font (size 1.27 1.27))))
  1116. (number "2" (effects (font (size 1.27 1.27))))
  1117. )
  1118. (pin passive line (at 7.62 7.62 180) (length 3.81)
  1119. (name "Pin_20" (effects (font (size 1.27 1.27))))
  1120. (number "20" (effects (font (size 1.27 1.27))))
  1121. )
  1122. (pin passive line (at -5.08 5.08 0) (length 3.81)
  1123. (name "Pin_21" (effects (font (size 1.27 1.27))))
  1124. (number "21" (effects (font (size 1.27 1.27))))
  1125. )
  1126. (pin passive line (at 7.62 5.08 180) (length 3.81)
  1127. (name "Pin_22" (effects (font (size 1.27 1.27))))
  1128. (number "22" (effects (font (size 1.27 1.27))))
  1129. )
  1130. (pin passive line (at -5.08 2.54 0) (length 3.81)
  1131. (name "Pin_23" (effects (font (size 1.27 1.27))))
  1132. (number "23" (effects (font (size 1.27 1.27))))
  1133. )
  1134. (pin passive line (at 7.62 2.54 180) (length 3.81)
  1135. (name "Pin_24" (effects (font (size 1.27 1.27))))
  1136. (number "24" (effects (font (size 1.27 1.27))))
  1137. )
  1138. (pin passive line (at -5.08 0 0) (length 3.81)
  1139. (name "Pin_25" (effects (font (size 1.27 1.27))))
  1140. (number "25" (effects (font (size 1.27 1.27))))
  1141. )
  1142. (pin passive line (at 7.62 0 180) (length 3.81)
  1143. (name "Pin_26" (effects (font (size 1.27 1.27))))
  1144. (number "26" (effects (font (size 1.27 1.27))))
  1145. )
  1146. (pin passive line (at -5.08 -2.54 0) (length 3.81)
  1147. (name "Pin_27" (effects (font (size 1.27 1.27))))
  1148. (number "27" (effects (font (size 1.27 1.27))))
  1149. )
  1150. (pin passive line (at 7.62 -2.54 180) (length 3.81)
  1151. (name "Pin_28" (effects (font (size 1.27 1.27))))
  1152. (number "28" (effects (font (size 1.27 1.27))))
  1153. )
  1154. (pin passive line (at -5.08 -5.08 0) (length 3.81)
  1155. (name "Pin_29" (effects (font (size 1.27 1.27))))
  1156. (number "29" (effects (font (size 1.27 1.27))))
  1157. )
  1158. (pin passive line (at -5.08 27.94 0) (length 3.81)
  1159. (name "Pin_3" (effects (font (size 1.27 1.27))))
  1160. (number "3" (effects (font (size 1.27 1.27))))
  1161. )
  1162. (pin passive line (at 7.62 -5.08 180) (length 3.81)
  1163. (name "Pin_30" (effects (font (size 1.27 1.27))))
  1164. (number "30" (effects (font (size 1.27 1.27))))
  1165. )
  1166. (pin passive line (at -5.08 -7.62 0) (length 3.81)
  1167. (name "Pin_31" (effects (font (size 1.27 1.27))))
  1168. (number "31" (effects (font (size 1.27 1.27))))
  1169. )
  1170. (pin passive line (at 7.62 -7.62 180) (length 3.81)
  1171. (name "Pin_32" (effects (font (size 1.27 1.27))))
  1172. (number "32" (effects (font (size 1.27 1.27))))
  1173. )
  1174. (pin passive line (at -5.08 -10.16 0) (length 3.81)
  1175. (name "Pin_33" (effects (font (size 1.27 1.27))))
  1176. (number "33" (effects (font (size 1.27 1.27))))
  1177. )
  1178. (pin passive line (at 7.62 -10.16 180) (length 3.81)
  1179. (name "Pin_34" (effects (font (size 1.27 1.27))))
  1180. (number "34" (effects (font (size 1.27 1.27))))
  1181. )
  1182. (pin passive line (at -5.08 -12.7 0) (length 3.81)
  1183. (name "Pin_35" (effects (font (size 1.27 1.27))))
  1184. (number "35" (effects (font (size 1.27 1.27))))
  1185. )
  1186. (pin passive line (at 7.62 -12.7 180) (length 3.81)
  1187. (name "Pin_36" (effects (font (size 1.27 1.27))))
  1188. (number "36" (effects (font (size 1.27 1.27))))
  1189. )
  1190. (pin passive line (at -5.08 -15.24 0) (length 3.81)
  1191. (name "Pin_37" (effects (font (size 1.27 1.27))))
  1192. (number "37" (effects (font (size 1.27 1.27))))
  1193. )
  1194. (pin passive line (at 7.62 -15.24 180) (length 3.81)
  1195. (name "Pin_38" (effects (font (size 1.27 1.27))))
  1196. (number "38" (effects (font (size 1.27 1.27))))
  1197. )
  1198. (pin passive line (at -5.08 -17.78 0) (length 3.81)
  1199. (name "Pin_39" (effects (font (size 1.27 1.27))))
  1200. (number "39" (effects (font (size 1.27 1.27))))
  1201. )
  1202. (pin passive line (at 7.62 27.94 180) (length 3.81)
  1203. (name "Pin_4" (effects (font (size 1.27 1.27))))
  1204. (number "4" (effects (font (size 1.27 1.27))))
  1205. )
  1206. (pin passive line (at 7.62 -17.78 180) (length 3.81)
  1207. (name "Pin_40" (effects (font (size 1.27 1.27))))
  1208. (number "40" (effects (font (size 1.27 1.27))))
  1209. )
  1210. (pin passive line (at -5.08 -20.32 0) (length 3.81)
  1211. (name "Pin_41" (effects (font (size 1.27 1.27))))
  1212. (number "41" (effects (font (size 1.27 1.27))))
  1213. )
  1214. (pin passive line (at 7.62 -20.32 180) (length 3.81)
  1215. (name "Pin_42" (effects (font (size 1.27 1.27))))
  1216. (number "42" (effects (font (size 1.27 1.27))))
  1217. )
  1218. (pin passive line (at -5.08 -22.86 0) (length 3.81)
  1219. (name "Pin_43" (effects (font (size 1.27 1.27))))
  1220. (number "43" (effects (font (size 1.27 1.27))))
  1221. )
  1222. (pin passive line (at 7.62 -22.86 180) (length 3.81)
  1223. (name "Pin_44" (effects (font (size 1.27 1.27))))
  1224. (number "44" (effects (font (size 1.27 1.27))))
  1225. )
  1226. (pin passive line (at -5.08 -25.4 0) (length 3.81)
  1227. (name "Pin_45" (effects (font (size 1.27 1.27))))
  1228. (number "45" (effects (font (size 1.27 1.27))))
  1229. )
  1230. (pin passive line (at 7.62 -25.4 180) (length 3.81)
  1231. (name "Pin_46" (effects (font (size 1.27 1.27))))
  1232. (number "46" (effects (font (size 1.27 1.27))))
  1233. )
  1234. (pin passive line (at -5.08 -27.94 0) (length 3.81)
  1235. (name "Pin_47" (effects (font (size 1.27 1.27))))
  1236. (number "47" (effects (font (size 1.27 1.27))))
  1237. )
  1238. (pin passive line (at 7.62 -27.94 180) (length 3.81)
  1239. (name "Pin_48" (effects (font (size 1.27 1.27))))
  1240. (number "48" (effects (font (size 1.27 1.27))))
  1241. )
  1242. (pin passive line (at -5.08 -30.48 0) (length 3.81)
  1243. (name "Pin_49" (effects (font (size 1.27 1.27))))
  1244. (number "49" (effects (font (size 1.27 1.27))))
  1245. )
  1246. (pin passive line (at -5.08 25.4 0) (length 3.81)
  1247. (name "Pin_5" (effects (font (size 1.27 1.27))))
  1248. (number "5" (effects (font (size 1.27 1.27))))
  1249. )
  1250. (pin passive line (at 7.62 -30.48 180) (length 3.81)
  1251. (name "Pin_50" (effects (font (size 1.27 1.27))))
  1252. (number "50" (effects (font (size 1.27 1.27))))
  1253. )
  1254. (pin passive line (at 7.62 25.4 180) (length 3.81)
  1255. (name "Pin_6" (effects (font (size 1.27 1.27))))
  1256. (number "6" (effects (font (size 1.27 1.27))))
  1257. )
  1258. (pin passive line (at -5.08 22.86 0) (length 3.81)
  1259. (name "Pin_7" (effects (font (size 1.27 1.27))))
  1260. (number "7" (effects (font (size 1.27 1.27))))
  1261. )
  1262. (pin passive line (at 7.62 22.86 180) (length 3.81)
  1263. (name "Pin_8" (effects (font (size 1.27 1.27))))
  1264. (number "8" (effects (font (size 1.27 1.27))))
  1265. )
  1266. (pin passive line (at -5.08 20.32 0) (length 3.81)
  1267. (name "Pin_9" (effects (font (size 1.27 1.27))))
  1268. (number "9" (effects (font (size 1.27 1.27))))
  1269. )
  1270. )
  1271. )
  1272. (symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
  1273. (property "Reference" "C" (id 0) (at 0.254 1.778 0)
  1274. (effects (font (size 1.27 1.27)) (justify left))
  1275. )
  1276. (property "Value" "C_Small" (id 1) (at 0.254 -2.032 0)
  1277. (effects (font (size 1.27 1.27)) (justify left))
  1278. )
  1279. (property "Footprint" "" (id 2) (at 0 0 0)
  1280. (effects (font (size 1.27 1.27)) hide)
  1281. )
  1282. (property "Datasheet" "~" (id 3) (at 0 0 0)
  1283. (effects (font (size 1.27 1.27)) hide)
  1284. )
  1285. (property "ki_keywords" "capacitor cap" (id 4) (at 0 0 0)
  1286. (effects (font (size 1.27 1.27)) hide)
  1287. )
  1288. (property "ki_description" "Unpolarized capacitor, small symbol" (id 5) (at 0 0 0)
  1289. (effects (font (size 1.27 1.27)) hide)
  1290. )
  1291. (property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
  1292. (effects (font (size 1.27 1.27)) hide)
  1293. )
  1294. (symbol "C_Small_0_1"
  1295. (polyline
  1296. (pts
  1297. (xy -1.524 -0.508)
  1298. (xy 1.524 -0.508)
  1299. )
  1300. (stroke (width 0.3302) (type default) (color 0 0 0 0))
  1301. (fill (type none))
  1302. )
  1303. (polyline
  1304. (pts
  1305. (xy -1.524 0.508)
  1306. (xy 1.524 0.508)
  1307. )
  1308. (stroke (width 0.3048) (type default) (color 0 0 0 0))
  1309. (fill (type none))
  1310. )
  1311. )
  1312. (symbol "C_Small_1_1"
  1313. (pin passive line (at 0 2.54 270) (length 2.032)
  1314. (name "~" (effects (font (size 1.27 1.27))))
  1315. (number "1" (effects (font (size 1.27 1.27))))
  1316. )
  1317. (pin passive line (at 0 -2.54 90) (length 2.032)
  1318. (name "~" (effects (font (size 1.27 1.27))))
  1319. (number "2" (effects (font (size 1.27 1.27))))
  1320. )
  1321. )
  1322. )
  1323. (symbol "Device:LED" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  1324. (property "Reference" "D" (id 0) (at 0 2.54 0)
  1325. (effects (font (size 1.27 1.27)))
  1326. )
  1327. (property "Value" "LED" (id 1) (at 0 -2.54 0)
  1328. (effects (font (size 1.27 1.27)))
  1329. )
  1330. (property "Footprint" "" (id 2) (at 0 0 0)
  1331. (effects (font (size 1.27 1.27)) hide)
  1332. )
  1333. (property "Datasheet" "~" (id 3) (at 0 0 0)
  1334. (effects (font (size 1.27 1.27)) hide)
  1335. )
  1336. (property "ki_keywords" "LED diode" (id 4) (at 0 0 0)
  1337. (effects (font (size 1.27 1.27)) hide)
  1338. )
  1339. (property "ki_description" "Light emitting diode" (id 5) (at 0 0 0)
  1340. (effects (font (size 1.27 1.27)) hide)
  1341. )
  1342. (property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (id 6) (at 0 0 0)
  1343. (effects (font (size 1.27 1.27)) hide)
  1344. )
  1345. (symbol "LED_0_1"
  1346. (polyline
  1347. (pts
  1348. (xy -1.27 -1.27)
  1349. (xy -1.27 1.27)
  1350. )
  1351. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1352. (fill (type none))
  1353. )
  1354. (polyline
  1355. (pts
  1356. (xy -1.27 0)
  1357. (xy 1.27 0)
  1358. )
  1359. (stroke (width 0) (type default) (color 0 0 0 0))
  1360. (fill (type none))
  1361. )
  1362. (polyline
  1363. (pts
  1364. (xy 1.27 -1.27)
  1365. (xy 1.27 1.27)
  1366. (xy -1.27 0)
  1367. (xy 1.27 -1.27)
  1368. )
  1369. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1370. (fill (type none))
  1371. )
  1372. (polyline
  1373. (pts
  1374. (xy -3.048 -0.762)
  1375. (xy -4.572 -2.286)
  1376. (xy -3.81 -2.286)
  1377. (xy -4.572 -2.286)
  1378. (xy -4.572 -1.524)
  1379. )
  1380. (stroke (width 0) (type default) (color 0 0 0 0))
  1381. (fill (type none))
  1382. )
  1383. (polyline
  1384. (pts
  1385. (xy -1.778 -0.762)
  1386. (xy -3.302 -2.286)
  1387. (xy -2.54 -2.286)
  1388. (xy -3.302 -2.286)
  1389. (xy -3.302 -1.524)
  1390. )
  1391. (stroke (width 0) (type default) (color 0 0 0 0))
  1392. (fill (type none))
  1393. )
  1394. )
  1395. (symbol "LED_1_1"
  1396. (pin passive line (at -3.81 0 0) (length 2.54)
  1397. (name "K" (effects (font (size 1.27 1.27))))
  1398. (number "1" (effects (font (size 1.27 1.27))))
  1399. )
  1400. (pin passive line (at 3.81 0 180) (length 2.54)
  1401. (name "A" (effects (font (size 1.27 1.27))))
  1402. (number "2" (effects (font (size 1.27 1.27))))
  1403. )
  1404. )
  1405. )
  1406. (symbol "Device:R_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
  1407. (property "Reference" "R" (id 0) (at 0.762 0.508 0)
  1408. (effects (font (size 1.27 1.27)) (justify left))
  1409. )
  1410. (property "Value" "R_Small" (id 1) (at 0.762 -1.016 0)
  1411. (effects (font (size 1.27 1.27)) (justify left))
  1412. )
  1413. (property "Footprint" "" (id 2) (at 0 0 0)
  1414. (effects (font (size 1.27 1.27)) hide)
  1415. )
  1416. (property "Datasheet" "~" (id 3) (at 0 0 0)
  1417. (effects (font (size 1.27 1.27)) hide)
  1418. )
  1419. (property "ki_keywords" "R resistor" (id 4) (at 0 0 0)
  1420. (effects (font (size 1.27 1.27)) hide)
  1421. )
  1422. (property "ki_description" "Resistor, small symbol" (id 5) (at 0 0 0)
  1423. (effects (font (size 1.27 1.27)) hide)
  1424. )
  1425. (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
  1426. (effects (font (size 1.27 1.27)) hide)
  1427. )
  1428. (symbol "R_Small_0_1"
  1429. (rectangle (start -0.762 1.778) (end 0.762 -1.778)
  1430. (stroke (width 0.2032) (type default) (color 0 0 0 0))
  1431. (fill (type none))
  1432. )
  1433. )
  1434. (symbol "R_Small_1_1"
  1435. (pin passive line (at 0 2.54 270) (length 0.762)
  1436. (name "~" (effects (font (size 1.27 1.27))))
  1437. (number "1" (effects (font (size 1.27 1.27))))
  1438. )
  1439. (pin passive line (at 0 -2.54 90) (length 0.762)
  1440. (name "~" (effects (font (size 1.27 1.27))))
  1441. (number "2" (effects (font (size 1.27 1.27))))
  1442. )
  1443. )
  1444. )
  1445. (symbol "Diode:1N4148W" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  1446. (property "Reference" "D" (id 0) (at 0 2.54 0)
  1447. (effects (font (size 1.27 1.27)))
  1448. )
  1449. (property "Value" "1N4148W" (id 1) (at 0 -2.54 0)
  1450. (effects (font (size 1.27 1.27)))
  1451. )
  1452. (property "Footprint" "Diode_SMD:D_SOD-123" (id 2) (at 0 -4.445 0)
  1453. (effects (font (size 1.27 1.27)) hide)
  1454. )
  1455. (property "Datasheet" "https://www.vishay.com/docs/85748/1n4148w.pdf" (id 3) (at 0 0 0)
  1456. (effects (font (size 1.27 1.27)) hide)
  1457. )
  1458. (property "ki_keywords" "diode" (id 4) (at 0 0 0)
  1459. (effects (font (size 1.27 1.27)) hide)
  1460. )
  1461. (property "ki_description" "75V 0.15A Fast Switching Diode, SOD-123" (id 5) (at 0 0 0)
  1462. (effects (font (size 1.27 1.27)) hide)
  1463. )
  1464. (property "ki_fp_filters" "D*SOD?123*" (id 6) (at 0 0 0)
  1465. (effects (font (size 1.27 1.27)) hide)
  1466. )
  1467. (symbol "1N4148W_0_1"
  1468. (polyline
  1469. (pts
  1470. (xy -1.27 1.27)
  1471. (xy -1.27 -1.27)
  1472. )
  1473. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1474. (fill (type none))
  1475. )
  1476. (polyline
  1477. (pts
  1478. (xy 1.27 0)
  1479. (xy -1.27 0)
  1480. )
  1481. (stroke (width 0) (type default) (color 0 0 0 0))
  1482. (fill (type none))
  1483. )
  1484. (polyline
  1485. (pts
  1486. (xy 1.27 1.27)
  1487. (xy 1.27 -1.27)
  1488. (xy -1.27 0)
  1489. (xy 1.27 1.27)
  1490. )
  1491. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1492. (fill (type none))
  1493. )
  1494. )
  1495. (symbol "1N4148W_1_1"
  1496. (pin passive line (at -3.81 0 0) (length 2.54)
  1497. (name "K" (effects (font (size 1.27 1.27))))
  1498. (number "1" (effects (font (size 1.27 1.27))))
  1499. )
  1500. (pin passive line (at 3.81 0 180) (length 2.54)
  1501. (name "A" (effects (font (size 1.27 1.27))))
  1502. (number "2" (effects (font (size 1.27 1.27))))
  1503. )
  1504. )
  1505. )
  1506. (symbol "Greaseweazle:STM32F730Z8T6" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  1507. (property "Reference" "U" (id 0) (at 0 5.08 0)
  1508. (effects (font (size 1.27 1.27)) (justify left))
  1509. )
  1510. (property "Value" "STM32F730Z8T6" (id 1) (at 0 7.62 0)
  1511. (effects (font (size 1.27 1.27)) (justify left))
  1512. )
  1513. (property "Footprint" "sm6uax:STMicroelectronics-LQFP144-1A-0-3-IPC_A" (id 2) (at 0 10.16 0)
  1514. (effects (font (size 1.27 1.27)) (justify left) hide)
  1515. )
  1516. (property "Datasheet" "https://www.st.com/resource/en/datasheet/stm32f730r8.pdf" (id 3) (at 0 12.7 0)
  1517. (effects (font (size 1.27 1.27)) (justify left) hide)
  1518. )
  1519. (property "ki_locked" "" (id 4) (at 0 0 0)
  1520. (effects (font (size 1.27 1.27)))
  1521. )
  1522. (property "ki_description" "STM32F730Z8T6" (id 5) (at 0 0 0)
  1523. (effects (font (size 1.27 1.27)) hide)
  1524. )
  1525. (symbol "STM32F730Z8T6_1_1"
  1526. (rectangle (start 5.08 2.54) (end 45.72 -71.12)
  1527. (stroke (width 0) (type default) (color 0 0 0 0))
  1528. (fill (type background))
  1529. )
  1530. (pin power_in line (at 2.54 -40.64 0) (length 2.54)
  1531. (name "VCAP_2" (effects (font (size 1.016 1.016))))
  1532. (number "106" (effects (font (size 1.016 1.016))))
  1533. )
  1534. (pin power_in line (at 48.26 -60.96 180) (length 2.54)
  1535. (name "VSS" (effects (font (size 1.016 1.016))))
  1536. (number "107" (effects (font (size 1.016 1.016))))
  1537. )
  1538. (pin power_in line (at 2.54 -17.78 0) (length 2.54)
  1539. (name "VDD" (effects (font (size 1.016 1.016))))
  1540. (number "108" (effects (font (size 1.016 1.016))))
  1541. )
  1542. (pin power_in line (at 48.26 -63.5 180) (length 2.54)
  1543. (name "VSS" (effects (font (size 1.016 1.016))))
  1544. (number "120" (effects (font (size 1.016 1.016))))
  1545. )
  1546. (pin power_in line (at 2.54 -30.48 0) (length 2.54)
  1547. (name "VDDSDMMC" (effects (font (size 1.016 1.016))))
  1548. (number "121" (effects (font (size 1.016 1.016))))
  1549. )
  1550. (pin power_in line (at 48.26 -66.04 180) (length 2.54)
  1551. (name "VSS" (effects (font (size 1.016 1.016))))
  1552. (number "130" (effects (font (size 1.016 1.016))))
  1553. )
  1554. (pin power_in line (at 2.54 -20.32 0) (length 2.54)
  1555. (name "VDD" (effects (font (size 1.016 1.016))))
  1556. (number "131" (effects (font (size 1.016 1.016))))
  1557. )
  1558. (pin passive line (at 2.54 -58.42 0) (length 2.54)
  1559. (name "BOOT0" (effects (font (size 1.016 1.016))))
  1560. (number "138" (effects (font (size 1.016 1.016))))
  1561. )
  1562. (pin power_in line (at 2.54 -63.5 0) (length 2.54)
  1563. (name "PDR_ON" (effects (font (size 1.016 1.016))))
  1564. (number "143" (effects (font (size 1.016 1.016))))
  1565. )
  1566. (pin power_in line (at 2.54 -22.86 0) (length 2.54)
  1567. (name "VDD" (effects (font (size 1.016 1.016))))
  1568. (number "144" (effects (font (size 1.016 1.016))))
  1569. )
  1570. (pin power_in line (at 48.26 -45.72 180) (length 2.54)
  1571. (name "VSS" (effects (font (size 1.016 1.016))))
  1572. (number "16" (effects (font (size 1.016 1.016))))
  1573. )
  1574. (pin power_in line (at 2.54 0 0) (length 2.54)
  1575. (name "VDD" (effects (font (size 1.016 1.016))))
  1576. (number "17" (effects (font (size 1.016 1.016))))
  1577. )
  1578. (pin input line (at 2.54 -68.58 0) (length 2.54)
  1579. (name "~{RST}" (effects (font (size 1.016 1.016))))
  1580. (number "25" (effects (font (size 1.016 1.016))))
  1581. )
  1582. (pin power_in line (at 2.54 -2.54 0) (length 2.54)
  1583. (name "VDD" (effects (font (size 1.016 1.016))))
  1584. (number "30" (effects (font (size 1.016 1.016))))
  1585. )
  1586. (pin power_in line (at 48.26 -68.58 180) (length 2.54)
  1587. (name "VSSA" (effects (font (size 1.016 1.016))))
  1588. (number "31" (effects (font (size 1.016 1.016))))
  1589. )
  1590. (pin power_in line (at 2.54 -48.26 0) (length 2.54)
  1591. (name "VREF+" (effects (font (size 1.016 1.016))))
  1592. (number "32" (effects (font (size 1.016 1.016))))
  1593. )
  1594. (pin power_in line (at 2.54 -27.94 0) (length 2.54)
  1595. (name "VDDA" (effects (font (size 1.016 1.016))))
  1596. (number "33" (effects (font (size 1.016 1.016))))
  1597. )
  1598. (pin power_in line (at 48.26 -48.26 180) (length 2.54)
  1599. (name "VSS" (effects (font (size 1.016 1.016))))
  1600. (number "38" (effects (font (size 1.016 1.016))))
  1601. )
  1602. (pin power_in line (at 2.54 -5.08 0) (length 2.54)
  1603. (name "VDD" (effects (font (size 1.016 1.016))))
  1604. (number "39" (effects (font (size 1.016 1.016))))
  1605. )
  1606. (pin power_in line (at 48.26 -50.8 180) (length 2.54)
  1607. (name "VSS" (effects (font (size 1.016 1.016))))
  1608. (number "51" (effects (font (size 1.016 1.016))))
  1609. )
  1610. (pin power_in line (at 2.54 -7.62 0) (length 2.54)
  1611. (name "VDD" (effects (font (size 1.016 1.016))))
  1612. (number "52" (effects (font (size 1.016 1.016))))
  1613. )
  1614. (pin power_in line (at 2.54 -45.72 0) (length 2.54)
  1615. (name "VBAT" (effects (font (size 1.016 1.016))))
  1616. (number "6" (effects (font (size 1.016 1.016))))
  1617. )
  1618. (pin power_in line (at 48.26 -53.34 180) (length 2.54)
  1619. (name "VSS" (effects (font (size 1.016 1.016))))
  1620. (number "61" (effects (font (size 1.016 1.016))))
  1621. )
  1622. (pin power_in line (at 2.54 -10.16 0) (length 2.54)
  1623. (name "VDD" (effects (font (size 1.016 1.016))))
  1624. (number "62" (effects (font (size 1.016 1.016))))
  1625. )
  1626. (pin power_in line (at 2.54 -38.1 0) (length 2.54)
  1627. (name "VCAP_1" (effects (font (size 1.016 1.016))))
  1628. (number "71" (effects (font (size 1.016 1.016))))
  1629. )
  1630. (pin power_in line (at 2.54 -12.7 0) (length 2.54)
  1631. (name "VDD" (effects (font (size 1.016 1.016))))
  1632. (number "72" (effects (font (size 1.016 1.016))))
  1633. )
  1634. (pin power_in line (at 2.54 -53.34 0) (length 2.54)
  1635. (name "OTG_HS_REXT" (effects (font (size 1.016 1.016))))
  1636. (number "75" (effects (font (size 1.016 1.016))))
  1637. )
  1638. (pin passive line (at 2.54 -25.4 0) (length 2.54)
  1639. (name "VDD12OTGHS" (effects (font (size 1.016 1.016))))
  1640. (number "76" (effects (font (size 1.016 1.016))))
  1641. )
  1642. (pin power_in line (at 48.26 -55.88 180) (length 2.54)
  1643. (name "VSS" (effects (font (size 1.016 1.016))))
  1644. (number "85" (effects (font (size 1.016 1.016))))
  1645. )
  1646. (pin power_in line (at 2.54 -15.24 0) (length 2.54)
  1647. (name "VDD" (effects (font (size 1.016 1.016))))
  1648. (number "86" (effects (font (size 1.016 1.016))))
  1649. )
  1650. (pin power_in line (at 48.26 -58.42 180) (length 2.54)
  1651. (name "VSS" (effects (font (size 1.016 1.016))))
  1652. (number "94" (effects (font (size 1.016 1.016))))
  1653. )
  1654. (pin power_in line (at 2.54 -33.02 0) (length 2.54)
  1655. (name "VDDUSB" (effects (font (size 1.016 1.016))))
  1656. (number "95" (effects (font (size 1.016 1.016))))
  1657. )
  1658. )
  1659. (symbol "STM32F730Z8T6_2_1"
  1660. (rectangle (start 5.08 2.54) (end 22.86 -83.82)
  1661. (stroke (width 0) (type default) (color 0 0 0 0))
  1662. (fill (type background))
  1663. )
  1664. (pin bidirectional line (at 2.54 -20.32 0) (length 2.54)
  1665. (name "PA8" (effects (font (size 1.016 1.016))))
  1666. (number "100" (effects (font (size 1.016 1.016))))
  1667. )
  1668. (pin bidirectional line (at 2.54 -22.86 0) (length 2.54)
  1669. (name "PA9" (effects (font (size 1.016 1.016))))
  1670. (number "101" (effects (font (size 1.016 1.016))))
  1671. )
  1672. (pin bidirectional line (at 2.54 -25.4 0) (length 2.54)
  1673. (name "PA10" (effects (font (size 1.016 1.016))))
  1674. (number "102" (effects (font (size 1.016 1.016))))
  1675. )
  1676. (pin bidirectional line (at 2.54 -27.94 0) (length 2.54)
  1677. (name "PA11" (effects (font (size 1.016 1.016))))
  1678. (number "103" (effects (font (size 1.016 1.016))))
  1679. )
  1680. (pin bidirectional line (at 2.54 -30.48 0) (length 2.54)
  1681. (name "PA12" (effects (font (size 1.016 1.016))))
  1682. (number "104" (effects (font (size 1.016 1.016))))
  1683. )
  1684. (pin bidirectional line (at 2.54 -33.02 0) (length 2.54)
  1685. (name "PA13" (effects (font (size 1.016 1.016))))
  1686. (number "105" (effects (font (size 1.016 1.016))))
  1687. )
  1688. (pin bidirectional line (at 2.54 -35.56 0) (length 2.54)
  1689. (name "PA14" (effects (font (size 1.016 1.016))))
  1690. (number "109" (effects (font (size 1.016 1.016))))
  1691. )
  1692. (pin bidirectional line (at 2.54 -38.1 0) (length 2.54)
  1693. (name "PA15" (effects (font (size 1.016 1.016))))
  1694. (number "110" (effects (font (size 1.016 1.016))))
  1695. )
  1696. (pin bidirectional line (at 25.4 -25.4 180) (length 2.54)
  1697. (name "PC10" (effects (font (size 1.016 1.016))))
  1698. (number "111" (effects (font (size 1.016 1.016))))
  1699. )
  1700. (pin bidirectional line (at 25.4 -27.94 180) (length 2.54)
  1701. (name "PC11" (effects (font (size 1.016 1.016))))
  1702. (number "112" (effects (font (size 1.016 1.016))))
  1703. )
  1704. (pin bidirectional line (at 25.4 -30.48 180) (length 2.54)
  1705. (name "PC12" (effects (font (size 1.016 1.016))))
  1706. (number "113" (effects (font (size 1.016 1.016))))
  1707. )
  1708. (pin bidirectional line (at 25.4 -43.18 180) (length 2.54)
  1709. (name "PD0" (effects (font (size 1.016 1.016))))
  1710. (number "114" (effects (font (size 1.016 1.016))))
  1711. )
  1712. (pin bidirectional line (at 25.4 -45.72 180) (length 2.54)
  1713. (name "PD1" (effects (font (size 1.016 1.016))))
  1714. (number "115" (effects (font (size 1.016 1.016))))
  1715. )
  1716. (pin bidirectional line (at 25.4 -48.26 180) (length 2.54)
  1717. (name "PD2" (effects (font (size 1.016 1.016))))
  1718. (number "116" (effects (font (size 1.016 1.016))))
  1719. )
  1720. (pin bidirectional line (at 25.4 -50.8 180) (length 2.54)
  1721. (name "PD3" (effects (font (size 1.016 1.016))))
  1722. (number "117" (effects (font (size 1.016 1.016))))
  1723. )
  1724. (pin bidirectional line (at 25.4 -53.34 180) (length 2.54)
  1725. (name "PD4" (effects (font (size 1.016 1.016))))
  1726. (number "118" (effects (font (size 1.016 1.016))))
  1727. )
  1728. (pin bidirectional line (at 25.4 -55.88 180) (length 2.54)
  1729. (name "PD5" (effects (font (size 1.016 1.016))))
  1730. (number "119" (effects (font (size 1.016 1.016))))
  1731. )
  1732. (pin bidirectional line (at 25.4 -58.42 180) (length 2.54)
  1733. (name "PD6" (effects (font (size 1.016 1.016))))
  1734. (number "122" (effects (font (size 1.016 1.016))))
  1735. )
  1736. (pin bidirectional line (at 25.4 -60.96 180) (length 2.54)
  1737. (name "PD7" (effects (font (size 1.016 1.016))))
  1738. (number "123" (effects (font (size 1.016 1.016))))
  1739. )
  1740. (pin bidirectional line (at 2.54 -50.8 0) (length 2.54)
  1741. (name "PB3" (effects (font (size 1.016 1.016))))
  1742. (number "133" (effects (font (size 1.016 1.016))))
  1743. )
  1744. (pin bidirectional line (at 2.54 -53.34 0) (length 2.54)
  1745. (name "PB4" (effects (font (size 1.016 1.016))))
  1746. (number "134" (effects (font (size 1.016 1.016))))
  1747. )
  1748. (pin bidirectional line (at 2.54 -55.88 0) (length 2.54)
  1749. (name "PB5" (effects (font (size 1.016 1.016))))
  1750. (number "135" (effects (font (size 1.016 1.016))))
  1751. )
  1752. (pin bidirectional line (at 2.54 -58.42 0) (length 2.54)
  1753. (name "PB6" (effects (font (size 1.016 1.016))))
  1754. (number "136" (effects (font (size 1.016 1.016))))
  1755. )
  1756. (pin bidirectional line (at 2.54 -60.96 0) (length 2.54)
  1757. (name "PB7" (effects (font (size 1.016 1.016))))
  1758. (number "137" (effects (font (size 1.016 1.016))))
  1759. )
  1760. (pin bidirectional line (at 2.54 -63.5 0) (length 2.54)
  1761. (name "PB8" (effects (font (size 1.016 1.016))))
  1762. (number "139" (effects (font (size 1.016 1.016))))
  1763. )
  1764. (pin bidirectional line (at 2.54 -66.04 0) (length 2.54)
  1765. (name "PB9" (effects (font (size 1.016 1.016))))
  1766. (number "140" (effects (font (size 1.016 1.016))))
  1767. )
  1768. (pin bidirectional line (at 25.4 0 180) (length 2.54)
  1769. (name "PC0" (effects (font (size 1.016 1.016))))
  1770. (number "26" (effects (font (size 1.016 1.016))))
  1771. )
  1772. (pin bidirectional line (at 25.4 -2.54 180) (length 2.54)
  1773. (name "PC1" (effects (font (size 1.016 1.016))))
  1774. (number "27" (effects (font (size 1.016 1.016))))
  1775. )
  1776. (pin bidirectional line (at 25.4 -5.08 180) (length 2.54)
  1777. (name "PC2" (effects (font (size 1.016 1.016))))
  1778. (number "28" (effects (font (size 1.016 1.016))))
  1779. )
  1780. (pin bidirectional line (at 25.4 -7.62 180) (length 2.54)
  1781. (name "PC3" (effects (font (size 1.016 1.016))))
  1782. (number "29" (effects (font (size 1.016 1.016))))
  1783. )
  1784. (pin bidirectional line (at 2.54 0 0) (length 2.54)
  1785. (name "PA0" (effects (font (size 1.016 1.016))))
  1786. (number "34" (effects (font (size 1.016 1.016))))
  1787. )
  1788. (pin bidirectional line (at 2.54 -2.54 0) (length 2.54)
  1789. (name "PA1" (effects (font (size 1.016 1.016))))
  1790. (number "35" (effects (font (size 1.016 1.016))))
  1791. )
  1792. (pin bidirectional line (at 2.54 -5.08 0) (length 2.54)
  1793. (name "PA2" (effects (font (size 1.016 1.016))))
  1794. (number "36" (effects (font (size 1.016 1.016))))
  1795. )
  1796. (pin bidirectional line (at 2.54 -7.62 0) (length 2.54)
  1797. (name "PA3" (effects (font (size 1.016 1.016))))
  1798. (number "37" (effects (font (size 1.016 1.016))))
  1799. )
  1800. (pin bidirectional line (at 2.54 -10.16 0) (length 2.54)
  1801. (name "PA4" (effects (font (size 1.016 1.016))))
  1802. (number "40" (effects (font (size 1.016 1.016))))
  1803. )
  1804. (pin bidirectional line (at 2.54 -12.7 0) (length 2.54)
  1805. (name "PA5" (effects (font (size 1.016 1.016))))
  1806. (number "41" (effects (font (size 1.016 1.016))))
  1807. )
  1808. (pin bidirectional line (at 2.54 -15.24 0) (length 2.54)
  1809. (name "PA6" (effects (font (size 1.016 1.016))))
  1810. (number "42" (effects (font (size 1.016 1.016))))
  1811. )
  1812. (pin bidirectional line (at 2.54 -17.78 0) (length 2.54)
  1813. (name "PA7" (effects (font (size 1.016 1.016))))
  1814. (number "43" (effects (font (size 1.016 1.016))))
  1815. )
  1816. (pin bidirectional line (at 25.4 -10.16 180) (length 2.54)
  1817. (name "PC4" (effects (font (size 1.016 1.016))))
  1818. (number "44" (effects (font (size 1.016 1.016))))
  1819. )
  1820. (pin bidirectional line (at 25.4 -12.7 180) (length 2.54)
  1821. (name "PC5" (effects (font (size 1.016 1.016))))
  1822. (number "45" (effects (font (size 1.016 1.016))))
  1823. )
  1824. (pin bidirectional line (at 2.54 -43.18 0) (length 2.54)
  1825. (name "PB0" (effects (font (size 1.016 1.016))))
  1826. (number "46" (effects (font (size 1.016 1.016))))
  1827. )
  1828. (pin bidirectional line (at 2.54 -45.72 0) (length 2.54)
  1829. (name "PB1" (effects (font (size 1.016 1.016))))
  1830. (number "47" (effects (font (size 1.016 1.016))))
  1831. )
  1832. (pin bidirectional line (at 2.54 -48.26 0) (length 2.54)
  1833. (name "PB2" (effects (font (size 1.016 1.016))))
  1834. (number "48" (effects (font (size 1.016 1.016))))
  1835. )
  1836. (pin bidirectional line (at 2.54 -68.58 0) (length 2.54)
  1837. (name "PB10" (effects (font (size 1.016 1.016))))
  1838. (number "69" (effects (font (size 1.016 1.016))))
  1839. )
  1840. (pin bidirectional line (at 25.4 -33.02 180) (length 2.54)
  1841. (name "PC13" (effects (font (size 1.016 1.016))))
  1842. (number "7" (effects (font (size 1.016 1.016))))
  1843. )
  1844. (pin bidirectional line (at 2.54 -71.12 0) (length 2.54)
  1845. (name "PB11" (effects (font (size 1.016 1.016))))
  1846. (number "70" (effects (font (size 1.016 1.016))))
  1847. )
  1848. (pin bidirectional line (at 2.54 -73.66 0) (length 2.54)
  1849. (name "PB12" (effects (font (size 1.016 1.016))))
  1850. (number "73" (effects (font (size 1.016 1.016))))
  1851. )
  1852. (pin bidirectional line (at 2.54 -76.2 0) (length 2.54)
  1853. (name "PB13" (effects (font (size 1.016 1.016))))
  1854. (number "74" (effects (font (size 1.016 1.016))))
  1855. )
  1856. (pin bidirectional line (at 2.54 -78.74 0) (length 2.54)
  1857. (name "PB14" (effects (font (size 1.016 1.016))))
  1858. (number "77" (effects (font (size 1.016 1.016))))
  1859. )
  1860. (pin bidirectional line (at 2.54 -81.28 0) (length 2.54)
  1861. (name "PB15" (effects (font (size 1.016 1.016))))
  1862. (number "78" (effects (font (size 1.016 1.016))))
  1863. )
  1864. (pin bidirectional line (at 25.4 -63.5 180) (length 2.54)
  1865. (name "PD8" (effects (font (size 1.016 1.016))))
  1866. (number "79" (effects (font (size 1.016 1.016))))
  1867. )
  1868. (pin bidirectional line (at 25.4 -35.56 180) (length 2.54)
  1869. (name "PC14" (effects (font (size 1.016 1.016))))
  1870. (number "8" (effects (font (size 1.016 1.016))))
  1871. )
  1872. (pin bidirectional line (at 25.4 -66.04 180) (length 2.54)
  1873. (name "PD9" (effects (font (size 1.016 1.016))))
  1874. (number "80" (effects (font (size 1.016 1.016))))
  1875. )
  1876. (pin bidirectional line (at 25.4 -68.58 180) (length 2.54)
  1877. (name "PD10" (effects (font (size 1.016 1.016))))
  1878. (number "81" (effects (font (size 1.016 1.016))))
  1879. )
  1880. (pin bidirectional line (at 25.4 -71.12 180) (length 2.54)
  1881. (name "PD11" (effects (font (size 1.016 1.016))))
  1882. (number "82" (effects (font (size 1.016 1.016))))
  1883. )
  1884. (pin bidirectional line (at 25.4 -73.66 180) (length 2.54)
  1885. (name "PD12" (effects (font (size 1.016 1.016))))
  1886. (number "83" (effects (font (size 1.016 1.016))))
  1887. )
  1888. (pin bidirectional line (at 25.4 -76.2 180) (length 2.54)
  1889. (name "PD13" (effects (font (size 1.016 1.016))))
  1890. (number "84" (effects (font (size 1.016 1.016))))
  1891. )
  1892. (pin bidirectional line (at 25.4 -78.74 180) (length 2.54)
  1893. (name "PD14" (effects (font (size 1.016 1.016))))
  1894. (number "87" (effects (font (size 1.016 1.016))))
  1895. )
  1896. (pin bidirectional line (at 25.4 -81.28 180) (length 2.54)
  1897. (name "PD15" (effects (font (size 1.016 1.016))))
  1898. (number "88" (effects (font (size 1.016 1.016))))
  1899. )
  1900. (pin bidirectional line (at 25.4 -38.1 180) (length 2.54)
  1901. (name "PC15" (effects (font (size 1.016 1.016))))
  1902. (number "9" (effects (font (size 1.016 1.016))))
  1903. )
  1904. (pin bidirectional line (at 25.4 -15.24 180) (length 2.54)
  1905. (name "PC6" (effects (font (size 1.016 1.016))))
  1906. (number "96" (effects (font (size 1.016 1.016))))
  1907. )
  1908. (pin bidirectional line (at 25.4 -17.78 180) (length 2.54)
  1909. (name "PC7" (effects (font (size 1.016 1.016))))
  1910. (number "97" (effects (font (size 1.016 1.016))))
  1911. )
  1912. (pin bidirectional line (at 25.4 -20.32 180) (length 2.54)
  1913. (name "PC8" (effects (font (size 1.016 1.016))))
  1914. (number "98" (effects (font (size 1.016 1.016))))
  1915. )
  1916. (pin bidirectional line (at 25.4 -22.86 180) (length 2.54)
  1917. (name "PC9" (effects (font (size 1.016 1.016))))
  1918. (number "99" (effects (font (size 1.016 1.016))))
  1919. )
  1920. )
  1921. (symbol "STM32F730Z8T6_3_1"
  1922. (rectangle (start 5.08 2.54) (end 22.86 -83.82)
  1923. (stroke (width 0) (type default) (color 0 0 0 0))
  1924. (fill (type background))
  1925. )
  1926. (pin bidirectional line (at 2.54 -5.08 0) (length 2.54)
  1927. (name "PE2" (effects (font (size 1.016 1.016))))
  1928. (number "1" (effects (font (size 1.016 1.016))))
  1929. )
  1930. (pin bidirectional line (at 2.54 -43.18 0) (length 2.54)
  1931. (name "PF0" (effects (font (size 1.016 1.016))))
  1932. (number "10" (effects (font (size 1.016 1.016))))
  1933. )
  1934. (pin bidirectional line (at 2.54 -45.72 0) (length 2.54)
  1935. (name "PF1" (effects (font (size 1.016 1.016))))
  1936. (number "11" (effects (font (size 1.016 1.016))))
  1937. )
  1938. (pin bidirectional line (at 2.54 -48.26 0) (length 2.54)
  1939. (name "PF2" (effects (font (size 1.016 1.016))))
  1940. (number "12" (effects (font (size 1.016 1.016))))
  1941. )
  1942. (pin bidirectional line (at 25.4 -17.78 180) (length 2.54)
  1943. (name "PG9" (effects (font (size 1.016 1.016))))
  1944. (number "124" (effects (font (size 1.016 1.016))))
  1945. )
  1946. (pin bidirectional line (at 25.4 -20.32 180) (length 2.54)
  1947. (name "PG10" (effects (font (size 1.016 1.016))))
  1948. (number "125" (effects (font (size 1.016 1.016))))
  1949. )
  1950. (pin bidirectional line (at 25.4 -22.86 180) (length 2.54)
  1951. (name "PG11" (effects (font (size 1.016 1.016))))
  1952. (number "126" (effects (font (size 1.016 1.016))))
  1953. )
  1954. (pin bidirectional line (at 25.4 -25.4 180) (length 2.54)
  1955. (name "PG12" (effects (font (size 1.016 1.016))))
  1956. (number "127" (effects (font (size 1.016 1.016))))
  1957. )
  1958. (pin bidirectional line (at 25.4 -27.94 180) (length 2.54)
  1959. (name "PG13" (effects (font (size 1.016 1.016))))
  1960. (number "128" (effects (font (size 1.016 1.016))))
  1961. )
  1962. (pin bidirectional line (at 25.4 -30.48 180) (length 2.54)
  1963. (name "PG14" (effects (font (size 1.016 1.016))))
  1964. (number "129" (effects (font (size 1.016 1.016))))
  1965. )
  1966. (pin bidirectional line (at 2.54 -50.8 0) (length 2.54)
  1967. (name "PF3" (effects (font (size 1.016 1.016))))
  1968. (number "13" (effects (font (size 1.016 1.016))))
  1969. )
  1970. (pin bidirectional line (at 25.4 -33.02 180) (length 2.54)
  1971. (name "PG15" (effects (font (size 1.016 1.016))))
  1972. (number "132" (effects (font (size 1.016 1.016))))
  1973. )
  1974. (pin bidirectional line (at 2.54 -53.34 0) (length 2.54)
  1975. (name "PF4" (effects (font (size 1.016 1.016))))
  1976. (number "14" (effects (font (size 1.016 1.016))))
  1977. )
  1978. (pin bidirectional line (at 2.54 0 0) (length 2.54)
  1979. (name "PE0" (effects (font (size 1.016 1.016))))
  1980. (number "141" (effects (font (size 1.016 1.016))))
  1981. )
  1982. (pin bidirectional line (at 2.54 -2.54 0) (length 2.54)
  1983. (name "PE1" (effects (font (size 1.016 1.016))))
  1984. (number "142" (effects (font (size 1.016 1.016))))
  1985. )
  1986. (pin bidirectional line (at 2.54 -55.88 0) (length 2.54)
  1987. (name "PF5" (effects (font (size 1.016 1.016))))
  1988. (number "15" (effects (font (size 1.016 1.016))))
  1989. )
  1990. (pin bidirectional line (at 2.54 -58.42 0) (length 2.54)
  1991. (name "PF6" (effects (font (size 1.016 1.016))))
  1992. (number "18" (effects (font (size 1.016 1.016))))
  1993. )
  1994. (pin bidirectional line (at 2.54 -60.96 0) (length 2.54)
  1995. (name "PF7" (effects (font (size 1.016 1.016))))
  1996. (number "19" (effects (font (size 1.016 1.016))))
  1997. )
  1998. (pin bidirectional line (at 2.54 -7.62 0) (length 2.54)
  1999. (name "PE3" (effects (font (size 1.016 1.016))))
  2000. (number "2" (effects (font (size 1.016 1.016))))
  2001. )
  2002. (pin bidirectional line (at 2.54 -63.5 0) (length 2.54)
  2003. (name "PF8" (effects (font (size 1.016 1.016))))
  2004. (number "20" (effects (font (size 1.016 1.016))))
  2005. )
  2006. (pin bidirectional line (at 2.54 -66.04 0) (length 2.54)
  2007. (name "PF9" (effects (font (size 1.016 1.016))))
  2008. (number "21" (effects (font (size 1.016 1.016))))
  2009. )
  2010. (pin bidirectional line (at 2.54 -68.58 0) (length 2.54)
  2011. (name "PF10" (effects (font (size 1.016 1.016))))
  2012. (number "22" (effects (font (size 1.016 1.016))))
  2013. )
  2014. (pin bidirectional line (at 25.4 -43.18 180) (length 2.54)
  2015. (name "PH0" (effects (font (size 1.016 1.016))))
  2016. (number "23" (effects (font (size 1.016 1.016))))
  2017. )
  2018. (pin bidirectional line (at 25.4 -45.72 180) (length 2.54)
  2019. (name "PH1" (effects (font (size 1.016 1.016))))
  2020. (number "24" (effects (font (size 1.016 1.016))))
  2021. )
  2022. (pin bidirectional line (at 2.54 -10.16 0) (length 2.54)
  2023. (name "PE4" (effects (font (size 1.016 1.016))))
  2024. (number "3" (effects (font (size 1.016 1.016))))
  2025. )
  2026. (pin bidirectional line (at 2.54 -12.7 0) (length 2.54)
  2027. (name "PE5" (effects (font (size 1.016 1.016))))
  2028. (number "4" (effects (font (size 1.016 1.016))))
  2029. )
  2030. (pin bidirectional line (at 2.54 -71.12 0) (length 2.54)
  2031. (name "PF11" (effects (font (size 1.016 1.016))))
  2032. (number "49" (effects (font (size 1.016 1.016))))
  2033. )
  2034. (pin bidirectional line (at 2.54 -15.24 0) (length 2.54)
  2035. (name "PE6" (effects (font (size 1.016 1.016))))
  2036. (number "5" (effects (font (size 1.016 1.016))))
  2037. )
  2038. (pin bidirectional line (at 2.54 -73.66 0) (length 2.54)
  2039. (name "PF12" (effects (font (size 1.016 1.016))))
  2040. (number "50" (effects (font (size 1.016 1.016))))
  2041. )
  2042. (pin bidirectional line (at 2.54 -76.2 0) (length 2.54)
  2043. (name "PF13" (effects (font (size 1.016 1.016))))
  2044. (number "53" (effects (font (size 1.016 1.016))))
  2045. )
  2046. (pin bidirectional line (at 2.54 -78.74 0) (length 2.54)
  2047. (name "PF14" (effects (font (size 1.016 1.016))))
  2048. (number "54" (effects (font (size 1.016 1.016))))
  2049. )
  2050. (pin bidirectional line (at 2.54 -81.28 0) (length 2.54)
  2051. (name "PF15" (effects (font (size 1.016 1.016))))
  2052. (number "55" (effects (font (size 1.016 1.016))))
  2053. )
  2054. (pin bidirectional line (at 25.4 0 180) (length 2.54)
  2055. (name "PG0" (effects (font (size 1.016 1.016))))
  2056. (number "56" (effects (font (size 1.016 1.016))))
  2057. )
  2058. (pin bidirectional line (at 25.4 -2.54 180) (length 2.54)
  2059. (name "PG1" (effects (font (size 1.016 1.016))))
  2060. (number "57" (effects (font (size 1.016 1.016))))
  2061. )
  2062. (pin bidirectional line (at 2.54 -17.78 0) (length 2.54)
  2063. (name "PE7" (effects (font (size 1.016 1.016))))
  2064. (number "58" (effects (font (size 1.016 1.016))))
  2065. )
  2066. (pin bidirectional line (at 2.54 -20.32 0) (length 2.54)
  2067. (name "PE8" (effects (font (size 1.016 1.016))))
  2068. (number "59" (effects (font (size 1.016 1.016))))
  2069. )
  2070. (pin bidirectional line (at 2.54 -22.86 0) (length 2.54)
  2071. (name "PE9" (effects (font (size 1.016 1.016))))
  2072. (number "60" (effects (font (size 1.016 1.016))))
  2073. )
  2074. (pin bidirectional line (at 2.54 -25.4 0) (length 2.54)
  2075. (name "PE10" (effects (font (size 1.016 1.016))))
  2076. (number "63" (effects (font (size 1.016 1.016))))
  2077. )
  2078. (pin bidirectional line (at 2.54 -27.94 0) (length 2.54)
  2079. (name "PE11" (effects (font (size 1.016 1.016))))
  2080. (number "64" (effects (font (size 1.016 1.016))))
  2081. )
  2082. (pin bidirectional line (at 2.54 -30.48 0) (length 2.54)
  2083. (name "PE12" (effects (font (size 1.016 1.016))))
  2084. (number "65" (effects (font (size 1.016 1.016))))
  2085. )
  2086. (pin bidirectional line (at 2.54 -33.02 0) (length 2.54)
  2087. (name "PE13" (effects (font (size 1.016 1.016))))
  2088. (number "66" (effects (font (size 1.016 1.016))))
  2089. )
  2090. (pin bidirectional line (at 2.54 -35.56 0) (length 2.54)
  2091. (name "PE14" (effects (font (size 1.016 1.016))))
  2092. (number "67" (effects (font (size 1.016 1.016))))
  2093. )
  2094. (pin bidirectional line (at 2.54 -38.1 0) (length 2.54)
  2095. (name "PE15" (effects (font (size 1.016 1.016))))
  2096. (number "68" (effects (font (size 1.016 1.016))))
  2097. )
  2098. (pin bidirectional line (at 25.4 -5.08 180) (length 2.54)
  2099. (name "PG2" (effects (font (size 1.016 1.016))))
  2100. (number "89" (effects (font (size 1.016 1.016))))
  2101. )
  2102. (pin bidirectional line (at 25.4 -7.62 180) (length 2.54)
  2103. (name "PG3" (effects (font (size 1.016 1.016))))
  2104. (number "90" (effects (font (size 1.016 1.016))))
  2105. )
  2106. (pin bidirectional line (at 25.4 -10.16 180) (length 2.54)
  2107. (name "PG4" (effects (font (size 1.016 1.016))))
  2108. (number "91" (effects (font (size 1.016 1.016))))
  2109. )
  2110. (pin bidirectional line (at 25.4 -12.7 180) (length 2.54)
  2111. (name "PG5" (effects (font (size 1.016 1.016))))
  2112. (number "92" (effects (font (size 1.016 1.016))))
  2113. )
  2114. (pin bidirectional line (at 25.4 -15.24 180) (length 2.54)
  2115. (name "PG8" (effects (font (size 1.016 1.016))))
  2116. (number "93" (effects (font (size 1.016 1.016))))
  2117. )
  2118. )
  2119. )
  2120. (symbol "Mechanical:MountingHole" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  2121. (property "Reference" "H" (id 0) (at 0 5.08 0)
  2122. (effects (font (size 1.27 1.27)))
  2123. )
  2124. (property "Value" "MountingHole" (id 1) (at 0 3.175 0)
  2125. (effects (font (size 1.27 1.27)))
  2126. )
  2127. (property "Footprint" "" (id 2) (at 0 0 0)
  2128. (effects (font (size 1.27 1.27)) hide)
  2129. )
  2130. (property "Datasheet" "~" (id 3) (at 0 0 0)
  2131. (effects (font (size 1.27 1.27)) hide)
  2132. )
  2133. (property "ki_keywords" "mounting hole" (id 4) (at 0 0 0)
  2134. (effects (font (size 1.27 1.27)) hide)
  2135. )
  2136. (property "ki_description" "Mounting Hole without connection" (id 5) (at 0 0 0)
  2137. (effects (font (size 1.27 1.27)) hide)
  2138. )
  2139. (property "ki_fp_filters" "MountingHole*" (id 6) (at 0 0 0)
  2140. (effects (font (size 1.27 1.27)) hide)
  2141. )
  2142. (symbol "MountingHole_0_1"
  2143. (circle (center 0 0) (radius 1.27)
  2144. (stroke (width 1.27) (type default) (color 0 0 0 0))
  2145. (fill (type none))
  2146. )
  2147. )
  2148. )
  2149. (symbol "Oscillator:ASCO" (in_bom yes) (on_board yes)
  2150. (property "Reference" "X" (id 0) (at -7.62 6.35 0)
  2151. (effects (font (size 1.27 1.27)) (justify left))
  2152. )
  2153. (property "Value" "ASCO" (id 1) (at 1.27 -6.35 0)
  2154. (effects (font (size 1.27 1.27)) (justify left))
  2155. )
  2156. (property "Footprint" "Oscillator:Oscillator_SMD_Abracon_ASCO-4Pin_1.6x1.2mm" (id 2) (at 2.54 -8.89 0)
  2157. (effects (font (size 1.27 1.27)) hide)
  2158. )
  2159. (property "Datasheet" "https://abracon.com/Oscillators/ASCO.pdf" (id 3) (at -5.715 3.175 0)
  2160. (effects (font (size 1.27 1.27)) hide)
  2161. )
  2162. (property "ki_keywords" "Crystal Clock Oscillator" (id 4) (at 0 0 0)
  2163. (effects (font (size 1.27 1.27)) hide)
  2164. )
  2165. (property "ki_description" "Crystal Clock Oscillator, Abracon ASCO" (id 5) (at 0 0 0)
  2166. (effects (font (size 1.27 1.27)) hide)
  2167. )
  2168. (property "ki_fp_filters" "Oscillator*Abracon*ASCO*1.6x1.2mm*" (id 6) (at 0 0 0)
  2169. (effects (font (size 1.27 1.27)) hide)
  2170. )
  2171. (symbol "ASCO_0_1"
  2172. (rectangle (start -7.62 5.08) (end 7.62 -5.08)
  2173. (stroke (width 0.254) (type default) (color 0 0 0 0))
  2174. (fill (type background))
  2175. )
  2176. (polyline
  2177. (pts
  2178. (xy -5.715 2.54)
  2179. (xy -5.08 2.54)
  2180. (xy -5.08 3.81)
  2181. (xy -4.445 3.81)
  2182. (xy -4.445 2.54)
  2183. (xy -3.81 2.54)
  2184. (xy -3.81 3.81)
  2185. (xy -3.175 3.81)
  2186. (xy -3.175 2.54)
  2187. )
  2188. (stroke (width 0) (type default) (color 0 0 0 0))
  2189. (fill (type none))
  2190. )
  2191. )
  2192. (symbol "ASCO_1_1"
  2193. (pin input line (at -10.16 0 0) (length 2.54)
  2194. (name "Tri-State" (effects (font (size 1.27 1.27))))
  2195. (number "1" (effects (font (size 1.27 1.27))))
  2196. )
  2197. (pin power_in line (at 0 -7.62 90) (length 2.54)
  2198. (name "GND" (effects (font (size 1.27 1.27))))
  2199. (number "2" (effects (font (size 1.27 1.27))))
  2200. )
  2201. (pin output line (at 10.16 0 180) (length 2.54)
  2202. (name "OUT" (effects (font (size 1.27 1.27))))
  2203. (number "3" (effects (font (size 1.27 1.27))))
  2204. )
  2205. (pin power_in line (at 0 7.62 270) (length 2.54)
  2206. (name "VDD" (effects (font (size 1.27 1.27))))
  2207. (number "4" (effects (font (size 1.27 1.27))))
  2208. )
  2209. )
  2210. )
  2211. (symbol "power:+3V3" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  2212. (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
  2213. (effects (font (size 1.27 1.27)) hide)
  2214. )
  2215. (property "Value" "+3V3" (id 1) (at 0 3.556 0)
  2216. (effects (font (size 1.27 1.27)))
  2217. )
  2218. (property "Footprint" "" (id 2) (at 0 0 0)
  2219. (effects (font (size 1.27 1.27)) hide)
  2220. )
  2221. (property "Datasheet" "" (id 3) (at 0 0 0)
  2222. (effects (font (size 1.27 1.27)) hide)
  2223. )
  2224. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  2225. (effects (font (size 1.27 1.27)) hide)
  2226. )
  2227. (property "ki_description" "Power symbol creates a global label with name \"+3V3\"" (id 5) (at 0 0 0)
  2228. (effects (font (size 1.27 1.27)) hide)
  2229. )
  2230. (symbol "+3V3_0_1"
  2231. (polyline
  2232. (pts
  2233. (xy -0.762 1.27)
  2234. (xy 0 2.54)
  2235. )
  2236. (stroke (width 0) (type default) (color 0 0 0 0))
  2237. (fill (type none))
  2238. )
  2239. (polyline
  2240. (pts
  2241. (xy 0 0)
  2242. (xy 0 2.54)
  2243. )
  2244. (stroke (width 0) (type default) (color 0 0 0 0))
  2245. (fill (type none))
  2246. )
  2247. (polyline
  2248. (pts
  2249. (xy 0 2.54)
  2250. (xy 0.762 1.27)
  2251. )
  2252. (stroke (width 0) (type default) (color 0 0 0 0))
  2253. (fill (type none))
  2254. )
  2255. )
  2256. (symbol "+3V3_1_1"
  2257. (pin power_in line (at 0 0 90) (length 0) hide
  2258. (name "+3V3" (effects (font (size 1.27 1.27))))
  2259. (number "1" (effects (font (size 1.27 1.27))))
  2260. )
  2261. )
  2262. )
  2263. (symbol "power:+5V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  2264. (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
  2265. (effects (font (size 1.27 1.27)) hide)
  2266. )
  2267. (property "Value" "+5V" (id 1) (at 0 3.556 0)
  2268. (effects (font (size 1.27 1.27)))
  2269. )
  2270. (property "Footprint" "" (id 2) (at 0 0 0)
  2271. (effects (font (size 1.27 1.27)) hide)
  2272. )
  2273. (property "Datasheet" "" (id 3) (at 0 0 0)
  2274. (effects (font (size 1.27 1.27)) hide)
  2275. )
  2276. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  2277. (effects (font (size 1.27 1.27)) hide)
  2278. )
  2279. (property "ki_description" "Power symbol creates a global label with name \"+5V\"" (id 5) (at 0 0 0)
  2280. (effects (font (size 1.27 1.27)) hide)
  2281. )
  2282. (symbol "+5V_0_1"
  2283. (polyline
  2284. (pts
  2285. (xy -0.762 1.27)
  2286. (xy 0 2.54)
  2287. )
  2288. (stroke (width 0) (type default) (color 0 0 0 0))
  2289. (fill (type none))
  2290. )
  2291. (polyline
  2292. (pts
  2293. (xy 0 0)
  2294. (xy 0 2.54)
  2295. )
  2296. (stroke (width 0) (type default) (color 0 0 0 0))
  2297. (fill (type none))
  2298. )
  2299. (polyline
  2300. (pts
  2301. (xy 0 2.54)
  2302. (xy 0.762 1.27)
  2303. )
  2304. (stroke (width 0) (type default) (color 0 0 0 0))
  2305. (fill (type none))
  2306. )
  2307. )
  2308. (symbol "+5V_1_1"
  2309. (pin power_in line (at 0 0 90) (length 0) hide
  2310. (name "+5V" (effects (font (size 1.27 1.27))))
  2311. (number "1" (effects (font (size 1.27 1.27))))
  2312. )
  2313. )
  2314. )
  2315. (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  2316. (property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
  2317. (effects (font (size 1.27 1.27)) hide)
  2318. )
  2319. (property "Value" "GND" (id 1) (at 0 -3.81 0)
  2320. (effects (font (size 1.27 1.27)))
  2321. )
  2322. (property "Footprint" "" (id 2) (at 0 0 0)
  2323. (effects (font (size 1.27 1.27)) hide)
  2324. )
  2325. (property "Datasheet" "" (id 3) (at 0 0 0)
  2326. (effects (font (size 1.27 1.27)) hide)
  2327. )
  2328. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  2329. (effects (font (size 1.27 1.27)) hide)
  2330. )
  2331. (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
  2332. (effects (font (size 1.27 1.27)) hide)
  2333. )
  2334. (symbol "GND_0_1"
  2335. (polyline
  2336. (pts
  2337. (xy 0 0)
  2338. (xy 0 -1.27)
  2339. (xy 1.27 -1.27)
  2340. (xy 0 -2.54)
  2341. (xy -1.27 -1.27)
  2342. (xy 0 -1.27)
  2343. )
  2344. (stroke (width 0) (type default) (color 0 0 0 0))
  2345. (fill (type none))
  2346. )
  2347. )
  2348. (symbol "GND_1_1"
  2349. (pin power_in line (at 0 0 270) (length 0) hide
  2350. (name "GND" (effects (font (size 1.27 1.27))))
  2351. (number "1" (effects (font (size 1.27 1.27))))
  2352. )
  2353. )
  2354. )
  2355. (symbol "sm6uax:STM32F730Z8T6" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  2356. (property "Reference" "U" (id 0) (at 0 5.08 0)
  2357. (effects (font (size 1.27 1.27)) (justify left))
  2358. )
  2359. (property "Value" "sm6uax_STM32F730Z8T6" (id 1) (at 0 7.62 0)
  2360. (effects (font (size 1.27 1.27)) (justify left))
  2361. )
  2362. (property "Footprint" "sm6uax:STMicroelectronics-LQFP144-1A-0-3-IPC_A" (id 2) (at 0 10.16 0)
  2363. (effects (font (size 1.27 1.27)) (justify left) hide)
  2364. )
  2365. (property "Datasheet" "" (id 3) (at 0 12.7 0)
  2366. (effects (font (size 1.27 1.27)) (justify left) hide)
  2367. )
  2368. (property "ki_locked" "" (id 4) (at 0 0 0)
  2369. (effects (font (size 1.27 1.27)))
  2370. )
  2371. (symbol "STM32F730Z8T6_1_1"
  2372. (rectangle (start 5.08 2.54) (end 45.72 -71.12)
  2373. (stroke (width 0) (type default) (color 0 0 0 0))
  2374. (fill (type background))
  2375. )
  2376. (pin power_in line (at 2.54 -40.64 0) (length 2.54)
  2377. (name "VCAP_2" (effects (font (size 1.016 1.016))))
  2378. (number "106" (effects (font (size 1.016 1.016))))
  2379. )
  2380. (pin power_in line (at 48.26 -60.96 180) (length 2.54)
  2381. (name "VSS" (effects (font (size 1.016 1.016))))
  2382. (number "107" (effects (font (size 1.016 1.016))))
  2383. )
  2384. (pin power_in line (at 2.54 -17.78 0) (length 2.54)
  2385. (name "VDD" (effects (font (size 1.016 1.016))))
  2386. (number "108" (effects (font (size 1.016 1.016))))
  2387. )
  2388. (pin power_in line (at 48.26 -63.5 180) (length 2.54)
  2389. (name "VSS" (effects (font (size 1.016 1.016))))
  2390. (number "120" (effects (font (size 1.016 1.016))))
  2391. )
  2392. (pin power_in line (at 2.54 -30.48 0) (length 2.54)
  2393. (name "VDDSDMMC" (effects (font (size 1.016 1.016))))
  2394. (number "121" (effects (font (size 1.016 1.016))))
  2395. )
  2396. (pin power_in line (at 48.26 -66.04 180) (length 2.54)
  2397. (name "VSS" (effects (font (size 1.016 1.016))))
  2398. (number "130" (effects (font (size 1.016 1.016))))
  2399. )
  2400. (pin power_in line (at 2.54 -20.32 0) (length 2.54)
  2401. (name "VDD" (effects (font (size 1.016 1.016))))
  2402. (number "131" (effects (font (size 1.016 1.016))))
  2403. )
  2404. (pin passive line (at 2.54 -58.42 0) (length 2.54)
  2405. (name "BOOT0" (effects (font (size 1.016 1.016))))
  2406. (number "138" (effects (font (size 1.016 1.016))))
  2407. )
  2408. (pin power_in line (at 2.54 -63.5 0) (length 2.54)
  2409. (name "PDR_ON" (effects (font (size 1.016 1.016))))
  2410. (number "143" (effects (font (size 1.016 1.016))))
  2411. )
  2412. (pin power_in line (at 2.54 -22.86 0) (length 2.54)
  2413. (name "VDD" (effects (font (size 1.016 1.016))))
  2414. (number "144" (effects (font (size 1.016 1.016))))
  2415. )
  2416. (pin power_in line (at 48.26 -45.72 180) (length 2.54)
  2417. (name "VSS" (effects (font (size 1.016 1.016))))
  2418. (number "16" (effects (font (size 1.016 1.016))))
  2419. )
  2420. (pin power_in line (at 2.54 0 0) (length 2.54)
  2421. (name "VDD" (effects (font (size 1.016 1.016))))
  2422. (number "17" (effects (font (size 1.016 1.016))))
  2423. )
  2424. (pin input line (at 2.54 -68.58 0) (length 2.54)
  2425. (name "~{RST}" (effects (font (size 1.016 1.016))))
  2426. (number "25" (effects (font (size 1.016 1.016))))
  2427. )
  2428. (pin power_in line (at 2.54 -2.54 0) (length 2.54)
  2429. (name "VDD" (effects (font (size 1.016 1.016))))
  2430. (number "30" (effects (font (size 1.016 1.016))))
  2431. )
  2432. (pin power_in line (at 48.26 -68.58 180) (length 2.54)
  2433. (name "VSSA" (effects (font (size 1.016 1.016))))
  2434. (number "31" (effects (font (size 1.016 1.016))))
  2435. )
  2436. (pin power_in line (at 2.54 -48.26 0) (length 2.54)
  2437. (name "VREF+" (effects (font (size 1.016 1.016))))
  2438. (number "32" (effects (font (size 1.016 1.016))))
  2439. )
  2440. (pin power_in line (at 2.54 -27.94 0) (length 2.54)
  2441. (name "VDDA" (effects (font (size 1.016 1.016))))
  2442. (number "33" (effects (font (size 1.016 1.016))))
  2443. )
  2444. (pin power_in line (at 48.26 -48.26 180) (length 2.54)
  2445. (name "VSS" (effects (font (size 1.016 1.016))))
  2446. (number "38" (effects (font (size 1.016 1.016))))
  2447. )
  2448. (pin power_in line (at 2.54 -5.08 0) (length 2.54)
  2449. (name "VDD" (effects (font (size 1.016 1.016))))
  2450. (number "39" (effects (font (size 1.016 1.016))))
  2451. )
  2452. (pin power_in line (at 48.26 -50.8 180) (length 2.54)
  2453. (name "VSS" (effects (font (size 1.016 1.016))))
  2454. (number "51" (effects (font (size 1.016 1.016))))
  2455. )
  2456. (pin power_in line (at 2.54 -7.62 0) (length 2.54)
  2457. (name "VDD" (effects (font (size 1.016 1.016))))
  2458. (number "52" (effects (font (size 1.016 1.016))))
  2459. )
  2460. (pin power_in line (at 2.54 -45.72 0) (length 2.54)
  2461. (name "VBAT" (effects (font (size 1.016 1.016))))
  2462. (number "6" (effects (font (size 1.016 1.016))))
  2463. )
  2464. (pin power_in line (at 48.26 -53.34 180) (length 2.54)
  2465. (name "VSS" (effects (font (size 1.016 1.016))))
  2466. (number "61" (effects (font (size 1.016 1.016))))
  2467. )
  2468. (pin power_in line (at 2.54 -10.16 0) (length 2.54)
  2469. (name "VDD" (effects (font (size 1.016 1.016))))
  2470. (number "62" (effects (font (size 1.016 1.016))))
  2471. )
  2472. (pin power_in line (at 2.54 -38.1 0) (length 2.54)
  2473. (name "VCAP_1" (effects (font (size 1.016 1.016))))
  2474. (number "71" (effects (font (size 1.016 1.016))))
  2475. )
  2476. (pin power_in line (at 2.54 -12.7 0) (length 2.54)
  2477. (name "VDD" (effects (font (size 1.016 1.016))))
  2478. (number "72" (effects (font (size 1.016 1.016))))
  2479. )
  2480. (pin power_in line (at 2.54 -53.34 0) (length 2.54)
  2481. (name "OTG_HS_REXT" (effects (font (size 1.016 1.016))))
  2482. (number "75" (effects (font (size 1.016 1.016))))
  2483. )
  2484. (pin passive line (at 2.54 -25.4 0) (length 2.54)
  2485. (name "VDD12OTGHS" (effects (font (size 1.016 1.016))))
  2486. (number "76" (effects (font (size 1.016 1.016))))
  2487. )
  2488. (pin power_in line (at 48.26 -55.88 180) (length 2.54)
  2489. (name "VSS" (effects (font (size 1.016 1.016))))
  2490. (number "85" (effects (font (size 1.016 1.016))))
  2491. )
  2492. (pin power_in line (at 2.54 -15.24 0) (length 2.54)
  2493. (name "VDD" (effects (font (size 1.016 1.016))))
  2494. (number "86" (effects (font (size 1.016 1.016))))
  2495. )
  2496. (pin power_in line (at 48.26 -58.42 180) (length 2.54)
  2497. (name "VSS" (effects (font (size 1.016 1.016))))
  2498. (number "94" (effects (font (size 1.016 1.016))))
  2499. )
  2500. (pin power_in line (at 2.54 -33.02 0) (length 2.54)
  2501. (name "VDDUSB" (effects (font (size 1.016 1.016))))
  2502. (number "95" (effects (font (size 1.016 1.016))))
  2503. )
  2504. )
  2505. (symbol "STM32F730Z8T6_2_1"
  2506. (rectangle (start 5.08 2.54) (end 22.86 -83.82)
  2507. (stroke (width 0) (type default) (color 0 0 0 0))
  2508. (fill (type background))
  2509. )
  2510. (pin bidirectional line (at 2.54 -20.32 0) (length 2.54)
  2511. (name "PA8" (effects (font (size 1.016 1.016))))
  2512. (number "100" (effects (font (size 1.016 1.016))))
  2513. )
  2514. (pin bidirectional line (at 2.54 -22.86 0) (length 2.54)
  2515. (name "PA9" (effects (font (size 1.016 1.016))))
  2516. (number "101" (effects (font (size 1.016 1.016))))
  2517. )
  2518. (pin bidirectional line (at 2.54 -25.4 0) (length 2.54)
  2519. (name "PA10" (effects (font (size 1.016 1.016))))
  2520. (number "102" (effects (font (size 1.016 1.016))))
  2521. )
  2522. (pin bidirectional line (at 2.54 -27.94 0) (length 2.54)
  2523. (name "PA11" (effects (font (size 1.016 1.016))))
  2524. (number "103" (effects (font (size 1.016 1.016))))
  2525. )
  2526. (pin bidirectional line (at 2.54 -30.48 0) (length 2.54)
  2527. (name "PA12" (effects (font (size 1.016 1.016))))
  2528. (number "104" (effects (font (size 1.016 1.016))))
  2529. )
  2530. (pin bidirectional line (at 2.54 -33.02 0) (length 2.54)
  2531. (name "PA13" (effects (font (size 1.016 1.016))))
  2532. (number "105" (effects (font (size 1.016 1.016))))
  2533. )
  2534. (pin bidirectional line (at 2.54 -35.56 0) (length 2.54)
  2535. (name "PA14" (effects (font (size 1.016 1.016))))
  2536. (number "109" (effects (font (size 1.016 1.016))))
  2537. )
  2538. (pin bidirectional line (at 2.54 -38.1 0) (length 2.54)
  2539. (name "PA15" (effects (font (size 1.016 1.016))))
  2540. (number "110" (effects (font (size 1.016 1.016))))
  2541. )
  2542. (pin bidirectional line (at 25.4 -25.4 180) (length 2.54)
  2543. (name "PC10" (effects (font (size 1.016 1.016))))
  2544. (number "111" (effects (font (size 1.016 1.016))))
  2545. )
  2546. (pin bidirectional line (at 25.4 -27.94 180) (length 2.54)
  2547. (name "PC11" (effects (font (size 1.016 1.016))))
  2548. (number "112" (effects (font (size 1.016 1.016))))
  2549. )
  2550. (pin bidirectional line (at 25.4 -30.48 180) (length 2.54)
  2551. (name "PC12" (effects (font (size 1.016 1.016))))
  2552. (number "113" (effects (font (size 1.016 1.016))))
  2553. )
  2554. (pin bidirectional line (at 25.4 -43.18 180) (length 2.54)
  2555. (name "PD0" (effects (font (size 1.016 1.016))))
  2556. (number "114" (effects (font (size 1.016 1.016))))
  2557. )
  2558. (pin bidirectional line (at 25.4 -45.72 180) (length 2.54)
  2559. (name "PD1" (effects (font (size 1.016 1.016))))
  2560. (number "115" (effects (font (size 1.016 1.016))))
  2561. )
  2562. (pin bidirectional line (at 25.4 -48.26 180) (length 2.54)
  2563. (name "PD2" (effects (font (size 1.016 1.016))))
  2564. (number "116" (effects (font (size 1.016 1.016))))
  2565. )
  2566. (pin bidirectional line (at 25.4 -50.8 180) (length 2.54)
  2567. (name "PD3" (effects (font (size 1.016 1.016))))
  2568. (number "117" (effects (font (size 1.016 1.016))))
  2569. )
  2570. (pin bidirectional line (at 25.4 -53.34 180) (length 2.54)
  2571. (name "PD4" (effects (font (size 1.016 1.016))))
  2572. (number "118" (effects (font (size 1.016 1.016))))
  2573. )
  2574. (pin bidirectional line (at 25.4 -55.88 180) (length 2.54)
  2575. (name "PD5" (effects (font (size 1.016 1.016))))
  2576. (number "119" (effects (font (size 1.016 1.016))))
  2577. )
  2578. (pin bidirectional line (at 25.4 -58.42 180) (length 2.54)
  2579. (name "PD6" (effects (font (size 1.016 1.016))))
  2580. (number "122" (effects (font (size 1.016 1.016))))
  2581. )
  2582. (pin bidirectional line (at 25.4 -60.96 180) (length 2.54)
  2583. (name "PD7" (effects (font (size 1.016 1.016))))
  2584. (number "123" (effects (font (size 1.016 1.016))))
  2585. )
  2586. (pin bidirectional line (at 2.54 -50.8 0) (length 2.54)
  2587. (name "PB3" (effects (font (size 1.016 1.016))))
  2588. (number "133" (effects (font (size 1.016 1.016))))
  2589. )
  2590. (pin bidirectional line (at 2.54 -53.34 0) (length 2.54)
  2591. (name "PB4" (effects (font (size 1.016 1.016))))
  2592. (number "134" (effects (font (size 1.016 1.016))))
  2593. )
  2594. (pin bidirectional line (at 2.54 -55.88 0) (length 2.54)
  2595. (name "PB5" (effects (font (size 1.016 1.016))))
  2596. (number "135" (effects (font (size 1.016 1.016))))
  2597. )
  2598. (pin bidirectional line (at 2.54 -58.42 0) (length 2.54)
  2599. (name "PB6" (effects (font (size 1.016 1.016))))
  2600. (number "136" (effects (font (size 1.016 1.016))))
  2601. )
  2602. (pin bidirectional line (at 2.54 -60.96 0) (length 2.54)
  2603. (name "PB7" (effects (font (size 1.016 1.016))))
  2604. (number "137" (effects (font (size 1.016 1.016))))
  2605. )
  2606. (pin bidirectional line (at 2.54 -63.5 0) (length 2.54)
  2607. (name "PB8" (effects (font (size 1.016 1.016))))
  2608. (number "139" (effects (font (size 1.016 1.016))))
  2609. )
  2610. (pin bidirectional line (at 2.54 -66.04 0) (length 2.54)
  2611. (name "PB9" (effects (font (size 1.016 1.016))))
  2612. (number "140" (effects (font (size 1.016 1.016))))
  2613. )
  2614. (pin bidirectional line (at 25.4 0 180) (length 2.54)
  2615. (name "PC0" (effects (font (size 1.016 1.016))))
  2616. (number "26" (effects (font (size 1.016 1.016))))
  2617. )
  2618. (pin bidirectional line (at 25.4 -2.54 180) (length 2.54)
  2619. (name "PC1" (effects (font (size 1.016 1.016))))
  2620. (number "27" (effects (font (size 1.016 1.016))))
  2621. )
  2622. (pin bidirectional line (at 25.4 -5.08 180) (length 2.54)
  2623. (name "PC2" (effects (font (size 1.016 1.016))))
  2624. (number "28" (effects (font (size 1.016 1.016))))
  2625. )
  2626. (pin bidirectional line (at 25.4 -7.62 180) (length 2.54)
  2627. (name "PC3" (effects (font (size 1.016 1.016))))
  2628. (number "29" (effects (font (size 1.016 1.016))))
  2629. )
  2630. (pin bidirectional line (at 2.54 0 0) (length 2.54)
  2631. (name "PA0" (effects (font (size 1.016 1.016))))
  2632. (number "34" (effects (font (size 1.016 1.016))))
  2633. )
  2634. (pin bidirectional line (at 2.54 -2.54 0) (length 2.54)
  2635. (name "PA1" (effects (font (size 1.016 1.016))))
  2636. (number "35" (effects (font (size 1.016 1.016))))
  2637. )
  2638. (pin bidirectional line (at 2.54 -5.08 0) (length 2.54)
  2639. (name "PA2" (effects (font (size 1.016 1.016))))
  2640. (number "36" (effects (font (size 1.016 1.016))))
  2641. )
  2642. (pin bidirectional line (at 2.54 -7.62 0) (length 2.54)
  2643. (name "PA3" (effects (font (size 1.016 1.016))))
  2644. (number "37" (effects (font (size 1.016 1.016))))
  2645. )
  2646. (pin bidirectional line (at 2.54 -10.16 0) (length 2.54)
  2647. (name "PA4" (effects (font (size 1.016 1.016))))
  2648. (number "40" (effects (font (size 1.016 1.016))))
  2649. )
  2650. (pin bidirectional line (at 2.54 -12.7 0) (length 2.54)
  2651. (name "PA5" (effects (font (size 1.016 1.016))))
  2652. (number "41" (effects (font (size 1.016 1.016))))
  2653. )
  2654. (pin bidirectional line (at 2.54 -15.24 0) (length 2.54)
  2655. (name "PA6" (effects (font (size 1.016 1.016))))
  2656. (number "42" (effects (font (size 1.016 1.016))))
  2657. )
  2658. (pin bidirectional line (at 2.54 -17.78 0) (length 2.54)
  2659. (name "PA7" (effects (font (size 1.016 1.016))))
  2660. (number "43" (effects (font (size 1.016 1.016))))
  2661. )
  2662. (pin bidirectional line (at 25.4 -10.16 180) (length 2.54)
  2663. (name "PC4" (effects (font (size 1.016 1.016))))
  2664. (number "44" (effects (font (size 1.016 1.016))))
  2665. )
  2666. (pin bidirectional line (at 25.4 -12.7 180) (length 2.54)
  2667. (name "PC5" (effects (font (size 1.016 1.016))))
  2668. (number "45" (effects (font (size 1.016 1.016))))
  2669. )
  2670. (pin bidirectional line (at 2.54 -43.18 0) (length 2.54)
  2671. (name "PB0" (effects (font (size 1.016 1.016))))
  2672. (number "46" (effects (font (size 1.016 1.016))))
  2673. )
  2674. (pin bidirectional line (at 2.54 -45.72 0) (length 2.54)
  2675. (name "PB1" (effects (font (size 1.016 1.016))))
  2676. (number "47" (effects (font (size 1.016 1.016))))
  2677. )
  2678. (pin bidirectional line (at 2.54 -48.26 0) (length 2.54)
  2679. (name "PB2" (effects (font (size 1.016 1.016))))
  2680. (number "48" (effects (font (size 1.016 1.016))))
  2681. )
  2682. (pin bidirectional line (at 2.54 -68.58 0) (length 2.54)
  2683. (name "PB10" (effects (font (size 1.016 1.016))))
  2684. (number "69" (effects (font (size 1.016 1.016))))
  2685. )
  2686. (pin bidirectional line (at 25.4 -33.02 180) (length 2.54)
  2687. (name "PC13" (effects (font (size 1.016 1.016))))
  2688. (number "7" (effects (font (size 1.016 1.016))))
  2689. )
  2690. (pin bidirectional line (at 2.54 -71.12 0) (length 2.54)
  2691. (name "PB11" (effects (font (size 1.016 1.016))))
  2692. (number "70" (effects (font (size 1.016 1.016))))
  2693. )
  2694. (pin bidirectional line (at 2.54 -73.66 0) (length 2.54)
  2695. (name "PB12" (effects (font (size 1.016 1.016))))
  2696. (number "73" (effects (font (size 1.016 1.016))))
  2697. )
  2698. (pin bidirectional line (at 2.54 -76.2 0) (length 2.54)
  2699. (name "PB13" (effects (font (size 1.016 1.016))))
  2700. (number "74" (effects (font (size 1.016 1.016))))
  2701. )
  2702. (pin bidirectional line (at 2.54 -78.74 0) (length 2.54)
  2703. (name "PB14" (effects (font (size 1.016 1.016))))
  2704. (number "77" (effects (font (size 1.016 1.016))))
  2705. )
  2706. (pin bidirectional line (at 2.54 -81.28 0) (length 2.54)
  2707. (name "PB15" (effects (font (size 1.016 1.016))))
  2708. (number "78" (effects (font (size 1.016 1.016))))
  2709. )
  2710. (pin bidirectional line (at 25.4 -63.5 180) (length 2.54)
  2711. (name "PD8" (effects (font (size 1.016 1.016))))
  2712. (number "79" (effects (font (size 1.016 1.016))))
  2713. )
  2714. (pin bidirectional line (at 25.4 -35.56 180) (length 2.54)
  2715. (name "PC14" (effects (font (size 1.016 1.016))))
  2716. (number "8" (effects (font (size 1.016 1.016))))
  2717. )
  2718. (pin bidirectional line (at 25.4 -66.04 180) (length 2.54)
  2719. (name "PD9" (effects (font (size 1.016 1.016))))
  2720. (number "80" (effects (font (size 1.016 1.016))))
  2721. )
  2722. (pin bidirectional line (at 25.4 -68.58 180) (length 2.54)
  2723. (name "PD10" (effects (font (size 1.016 1.016))))
  2724. (number "81" (effects (font (size 1.016 1.016))))
  2725. )
  2726. (pin bidirectional line (at 25.4 -71.12 180) (length 2.54)
  2727. (name "PD11" (effects (font (size 1.016 1.016))))
  2728. (number "82" (effects (font (size 1.016 1.016))))
  2729. )
  2730. (pin bidirectional line (at 25.4 -73.66 180) (length 2.54)
  2731. (name "PD12" (effects (font (size 1.016 1.016))))
  2732. (number "83" (effects (font (size 1.016 1.016))))
  2733. )
  2734. (pin bidirectional line (at 25.4 -76.2 180) (length 2.54)
  2735. (name "PD13" (effects (font (size 1.016 1.016))))
  2736. (number "84" (effects (font (size 1.016 1.016))))
  2737. )
  2738. (pin bidirectional line (at 25.4 -78.74 180) (length 2.54)
  2739. (name "PD14" (effects (font (size 1.016 1.016))))
  2740. (number "87" (effects (font (size 1.016 1.016))))
  2741. )
  2742. (pin bidirectional line (at 25.4 -81.28 180) (length 2.54)
  2743. (name "PD15" (effects (font (size 1.016 1.016))))
  2744. (number "88" (effects (font (size 1.016 1.016))))
  2745. )
  2746. (pin bidirectional line (at 25.4 -38.1 180) (length 2.54)
  2747. (name "PC15" (effects (font (size 1.016 1.016))))
  2748. (number "9" (effects (font (size 1.016 1.016))))
  2749. )
  2750. (pin bidirectional line (at 25.4 -15.24 180) (length 2.54)
  2751. (name "PC6" (effects (font (size 1.016 1.016))))
  2752. (number "96" (effects (font (size 1.016 1.016))))
  2753. )
  2754. (pin bidirectional line (at 25.4 -17.78 180) (length 2.54)
  2755. (name "PC7" (effects (font (size 1.016 1.016))))
  2756. (number "97" (effects (font (size 1.016 1.016))))
  2757. )
  2758. (pin bidirectional line (at 25.4 -20.32 180) (length 2.54)
  2759. (name "PC8" (effects (font (size 1.016 1.016))))
  2760. (number "98" (effects (font (size 1.016 1.016))))
  2761. )
  2762. (pin bidirectional line (at 25.4 -22.86 180) (length 2.54)
  2763. (name "PC9" (effects (font (size 1.016 1.016))))
  2764. (number "99" (effects (font (size 1.016 1.016))))
  2765. )
  2766. )
  2767. (symbol "STM32F730Z8T6_3_1"
  2768. (rectangle (start 5.08 2.54) (end 22.86 -83.82)
  2769. (stroke (width 0) (type default) (color 0 0 0 0))
  2770. (fill (type background))
  2771. )
  2772. (pin bidirectional line (at 2.54 -5.08 0) (length 2.54)
  2773. (name "PE2" (effects (font (size 1.016 1.016))))
  2774. (number "1" (effects (font (size 1.016 1.016))))
  2775. )
  2776. (pin bidirectional line (at 2.54 -43.18 0) (length 2.54)
  2777. (name "PF0" (effects (font (size 1.016 1.016))))
  2778. (number "10" (effects (font (size 1.016 1.016))))
  2779. )
  2780. (pin bidirectional line (at 2.54 -45.72 0) (length 2.54)
  2781. (name "PF1" (effects (font (size 1.016 1.016))))
  2782. (number "11" (effects (font (size 1.016 1.016))))
  2783. )
  2784. (pin bidirectional line (at 2.54 -48.26 0) (length 2.54)
  2785. (name "PF2" (effects (font (size 1.016 1.016))))
  2786. (number "12" (effects (font (size 1.016 1.016))))
  2787. )
  2788. (pin bidirectional line (at 25.4 -17.78 180) (length 2.54)
  2789. (name "PG9" (effects (font (size 1.016 1.016))))
  2790. (number "124" (effects (font (size 1.016 1.016))))
  2791. )
  2792. (pin bidirectional line (at 25.4 -20.32 180) (length 2.54)
  2793. (name "PG10" (effects (font (size 1.016 1.016))))
  2794. (number "125" (effects (font (size 1.016 1.016))))
  2795. )
  2796. (pin bidirectional line (at 25.4 -22.86 180) (length 2.54)
  2797. (name "PG11" (effects (font (size 1.016 1.016))))
  2798. (number "126" (effects (font (size 1.016 1.016))))
  2799. )
  2800. (pin bidirectional line (at 25.4 -25.4 180) (length 2.54)
  2801. (name "PG12" (effects (font (size 1.016 1.016))))
  2802. (number "127" (effects (font (size 1.016 1.016))))
  2803. )
  2804. (pin bidirectional line (at 25.4 -27.94 180) (length 2.54)
  2805. (name "PG13" (effects (font (size 1.016 1.016))))
  2806. (number "128" (effects (font (size 1.016 1.016))))
  2807. )
  2808. (pin bidirectional line (at 25.4 -30.48 180) (length 2.54)
  2809. (name "PG14" (effects (font (size 1.016 1.016))))
  2810. (number "129" (effects (font (size 1.016 1.016))))
  2811. )
  2812. (pin bidirectional line (at 2.54 -50.8 0) (length 2.54)
  2813. (name "PF3" (effects (font (size 1.016 1.016))))
  2814. (number "13" (effects (font (size 1.016 1.016))))
  2815. )
  2816. (pin bidirectional line (at 25.4 -33.02 180) (length 2.54)
  2817. (name "PG15" (effects (font (size 1.016 1.016))))
  2818. (number "132" (effects (font (size 1.016 1.016))))
  2819. )
  2820. (pin bidirectional line (at 2.54 -53.34 0) (length 2.54)
  2821. (name "PF4" (effects (font (size 1.016 1.016))))
  2822. (number "14" (effects (font (size 1.016 1.016))))
  2823. )
  2824. (pin bidirectional line (at 2.54 0 0) (length 2.54)
  2825. (name "PE0" (effects (font (size 1.016 1.016))))
  2826. (number "141" (effects (font (size 1.016 1.016))))
  2827. )
  2828. (pin bidirectional line (at 2.54 -2.54 0) (length 2.54)
  2829. (name "PE1" (effects (font (size 1.016 1.016))))
  2830. (number "142" (effects (font (size 1.016 1.016))))
  2831. )
  2832. (pin bidirectional line (at 2.54 -55.88 0) (length 2.54)
  2833. (name "PF5" (effects (font (size 1.016 1.016))))
  2834. (number "15" (effects (font (size 1.016 1.016))))
  2835. )
  2836. (pin bidirectional line (at 2.54 -58.42 0) (length 2.54)
  2837. (name "PF6" (effects (font (size 1.016 1.016))))
  2838. (number "18" (effects (font (size 1.016 1.016))))
  2839. )
  2840. (pin bidirectional line (at 2.54 -60.96 0) (length 2.54)
  2841. (name "PF7" (effects (font (size 1.016 1.016))))
  2842. (number "19" (effects (font (size 1.016 1.016))))
  2843. )
  2844. (pin bidirectional line (at 2.54 -7.62 0) (length 2.54)
  2845. (name "PE3" (effects (font (size 1.016 1.016))))
  2846. (number "2" (effects (font (size 1.016 1.016))))
  2847. )
  2848. (pin bidirectional line (at 2.54 -63.5 0) (length 2.54)
  2849. (name "PF8" (effects (font (size 1.016 1.016))))
  2850. (number "20" (effects (font (size 1.016 1.016))))
  2851. )
  2852. (pin bidirectional line (at 2.54 -66.04 0) (length 2.54)
  2853. (name "PF9" (effects (font (size 1.016 1.016))))
  2854. (number "21" (effects (font (size 1.016 1.016))))
  2855. )
  2856. (pin bidirectional line (at 2.54 -68.58 0) (length 2.54)
  2857. (name "PF10" (effects (font (size 1.016 1.016))))
  2858. (number "22" (effects (font (size 1.016 1.016))))
  2859. )
  2860. (pin bidirectional line (at 25.4 -43.18 180) (length 2.54)
  2861. (name "PH0" (effects (font (size 1.016 1.016))))
  2862. (number "23" (effects (font (size 1.016 1.016))))
  2863. )
  2864. (pin bidirectional line (at 25.4 -45.72 180) (length 2.54)
  2865. (name "PH1" (effects (font (size 1.016 1.016))))
  2866. (number "24" (effects (font (size 1.016 1.016))))
  2867. )
  2868. (pin bidirectional line (at 2.54 -10.16 0) (length 2.54)
  2869. (name "PE4" (effects (font (size 1.016 1.016))))
  2870. (number "3" (effects (font (size 1.016 1.016))))
  2871. )
  2872. (pin bidirectional line (at 2.54 -12.7 0) (length 2.54)
  2873. (name "PE5" (effects (font (size 1.016 1.016))))
  2874. (number "4" (effects (font (size 1.016 1.016))))
  2875. )
  2876. (pin bidirectional line (at 2.54 -71.12 0) (length 2.54)
  2877. (name "PF11" (effects (font (size 1.016 1.016))))
  2878. (number "49" (effects (font (size 1.016 1.016))))
  2879. )
  2880. (pin bidirectional line (at 2.54 -15.24 0) (length 2.54)
  2881. (name "PE6" (effects (font (size 1.016 1.016))))
  2882. (number "5" (effects (font (size 1.016 1.016))))
  2883. )
  2884. (pin bidirectional line (at 2.54 -73.66 0) (length 2.54)
  2885. (name "PF12" (effects (font (size 1.016 1.016))))
  2886. (number "50" (effects (font (size 1.016 1.016))))
  2887. )
  2888. (pin bidirectional line (at 2.54 -76.2 0) (length 2.54)
  2889. (name "PF13" (effects (font (size 1.016 1.016))))
  2890. (number "53" (effects (font (size 1.016 1.016))))
  2891. )
  2892. (pin bidirectional line (at 2.54 -78.74 0) (length 2.54)
  2893. (name "PF14" (effects (font (size 1.016 1.016))))
  2894. (number "54" (effects (font (size 1.016 1.016))))
  2895. )
  2896. (pin bidirectional line (at 2.54 -81.28 0) (length 2.54)
  2897. (name "PF15" (effects (font (size 1.016 1.016))))
  2898. (number "55" (effects (font (size 1.016 1.016))))
  2899. )
  2900. (pin bidirectional line (at 25.4 0 180) (length 2.54)
  2901. (name "PG0" (effects (font (size 1.016 1.016))))
  2902. (number "56" (effects (font (size 1.016 1.016))))
  2903. )
  2904. (pin bidirectional line (at 25.4 -2.54 180) (length 2.54)
  2905. (name "PG1" (effects (font (size 1.016 1.016))))
  2906. (number "57" (effects (font (size 1.016 1.016))))
  2907. )
  2908. (pin bidirectional line (at 2.54 -17.78 0) (length 2.54)
  2909. (name "PE7" (effects (font (size 1.016 1.016))))
  2910. (number "58" (effects (font (size 1.016 1.016))))
  2911. )
  2912. (pin bidirectional line (at 2.54 -20.32 0) (length 2.54)
  2913. (name "PE8" (effects (font (size 1.016 1.016))))
  2914. (number "59" (effects (font (size 1.016 1.016))))
  2915. )
  2916. (pin bidirectional line (at 2.54 -22.86 0) (length 2.54)
  2917. (name "PE9" (effects (font (size 1.016 1.016))))
  2918. (number "60" (effects (font (size 1.016 1.016))))
  2919. )
  2920. (pin bidirectional line (at 2.54 -25.4 0) (length 2.54)
  2921. (name "PE10" (effects (font (size 1.016 1.016))))
  2922. (number "63" (effects (font (size 1.016 1.016))))
  2923. )
  2924. (pin bidirectional line (at 2.54 -27.94 0) (length 2.54)
  2925. (name "PE11" (effects (font (size 1.016 1.016))))
  2926. (number "64" (effects (font (size 1.016 1.016))))
  2927. )
  2928. (pin bidirectional line (at 2.54 -30.48 0) (length 2.54)
  2929. (name "PE12" (effects (font (size 1.016 1.016))))
  2930. (number "65" (effects (font (size 1.016 1.016))))
  2931. )
  2932. (pin bidirectional line (at 2.54 -33.02 0) (length 2.54)
  2933. (name "PE13" (effects (font (size 1.016 1.016))))
  2934. (number "66" (effects (font (size 1.016 1.016))))
  2935. )
  2936. (pin bidirectional line (at 2.54 -35.56 0) (length 2.54)
  2937. (name "PE14" (effects (font (size 1.016 1.016))))
  2938. (number "67" (effects (font (size 1.016 1.016))))
  2939. )
  2940. (pin bidirectional line (at 2.54 -38.1 0) (length 2.54)
  2941. (name "PE15" (effects (font (size 1.016 1.016))))
  2942. (number "68" (effects (font (size 1.016 1.016))))
  2943. )
  2944. (pin bidirectional line (at 25.4 -5.08 180) (length 2.54)
  2945. (name "PG2" (effects (font (size 1.016 1.016))))
  2946. (number "89" (effects (font (size 1.016 1.016))))
  2947. )
  2948. (pin bidirectional line (at 25.4 -7.62 180) (length 2.54)
  2949. (name "PG3" (effects (font (size 1.016 1.016))))
  2950. (number "90" (effects (font (size 1.016 1.016))))
  2951. )
  2952. (pin bidirectional line (at 25.4 -10.16 180) (length 2.54)
  2953. (name "PG4" (effects (font (size 1.016 1.016))))
  2954. (number "91" (effects (font (size 1.016 1.016))))
  2955. )
  2956. (pin bidirectional line (at 25.4 -12.7 180) (length 2.54)
  2957. (name "PG5" (effects (font (size 1.016 1.016))))
  2958. (number "92" (effects (font (size 1.016 1.016))))
  2959. )
  2960. (pin bidirectional line (at 25.4 -15.24 180) (length 2.54)
  2961. (name "PG8" (effects (font (size 1.016 1.016))))
  2962. (number "93" (effects (font (size 1.016 1.016))))
  2963. )
  2964. )
  2965. )
  2966. )
  2967. (junction (at 158.75 95.25) (diameter 0) (color 0 0 0 0)
  2968. (uuid 01f82238-6335-48fe-8b0a-6853e227345a)
  2969. )
  2970. (junction (at 111.76 68.58) (diameter 0) (color 0 0 0 0)
  2971. (uuid 068d7a7a-0f25-4de5-9cb5-2349a9191b50)
  2972. )
  2973. (junction (at 111.76 104.14) (diameter 0) (color 0 0 0 0)
  2974. (uuid 0d6967d1-12be-4710-aef1-65627c2c9e8a)
  2975. )
  2976. (junction (at 158.75 77.47) (diameter 0) (color 0 0 0 0)
  2977. (uuid 0fc5db66-6188-4c1f-bb14-0868bef113eb)
  2978. )
  2979. (junction (at 158.75 72.39) (diameter 0) (color 0 0 0 0)
  2980. (uuid 10e52e95-44f3-4059-a86d-dcda603e0623)
  2981. )
  2982. (junction (at 111.76 58.42) (diameter 0) (color 0 0 0 0)
  2983. (uuid 1187e9bb-7692-4dd1-9945-e39ef9e5ce5b)
  2984. )
  2985. (junction (at 158.75 92.71) (diameter 0) (color 0 0 0 0)
  2986. (uuid 13bbfffc-affb-4b43-9eb1-f2ed90a8a919)
  2987. )
  2988. (junction (at 111.76 53.34) (diameter 0) (color 0 0 0 0)
  2989. (uuid 14bfaf9f-b822-4cbc-aa30-b927236f307a)
  2990. )
  2991. (junction (at 158.75 90.17) (diameter 0) (color 0 0 0 0)
  2992. (uuid 1ab71a3c-340b-469a-ada5-4f87f0b7b2fa)
  2993. )
  2994. (junction (at 158.75 82.55) (diameter 0) (color 0 0 0 0)
  2995. (uuid 20caf6d2-76a7-497e-ac56-f6d31eb9027b)
  2996. )
  2997. (junction (at 274.32 38.1) (diameter 0) (color 0 0 0 0)
  2998. (uuid 24adc223-60f0-4497-98a3-d664c5a13280)
  2999. )
  3000. (junction (at 158.75 69.85) (diameter 0) (color 0 0 0 0)
  3001. (uuid 252f1275-081d-4d77-8bd5-3b9e6916ef42)
  3002. )
  3003. (junction (at 111.76 86.36) (diameter 0) (color 0 0 0 0)
  3004. (uuid 2c99bd06-59a6-4b07-a512-6528fd43f4dc)
  3005. )
  3006. (junction (at 111.76 83.82) (diameter 0) (color 0 0 0 0)
  3007. (uuid 35b2233e-2f59-44bf-93b3-2716d5b5b514)
  3008. )
  3009. (junction (at 111.76 78.74) (diameter 0) (color 0 0 0 0)
  3010. (uuid 3857167d-f8fc-4da8-b232-a84de78f65eb)
  3011. )
  3012. (junction (at 158.75 74.93) (diameter 0) (color 0 0 0 0)
  3013. (uuid 3c8d03bf-f31d-4aa0-b8db-a227ffd7d8d6)
  3014. )
  3015. (junction (at 274.32 92.71) (diameter 0) (color 0 0 0 0)
  3016. (uuid 44b926bf-8bdd-4191-846d-2dfabab2cecb)
  3017. )
  3018. (junction (at 274.32 68.58) (diameter 0) (color 0 0 0 0)
  3019. (uuid 4bbde53d-6894-4e18-9480-84a6a26d5f6b)
  3020. )
  3021. (junction (at 111.76 50.8) (diameter 0) (color 0 0 0 0)
  3022. (uuid 5c0b1897-8155-4679-9116-805919f75f96)
  3023. )
  3024. (junction (at 274.32 107.95) (diameter 0) (color 0 0 0 0)
  3025. (uuid 5eb16f0d-ef1e-4549-97a1-19cd06ad7236)
  3026. )
  3027. (junction (at 158.75 85.09) (diameter 0) (color 0 0 0 0)
  3028. (uuid 62a1f3d4-027d-4ecf-a37a-6fcf4263e9d2)
  3029. )
  3030. (junction (at 111.76 106.68) (diameter 0) (color 0 0 0 0)
  3031. (uuid 6621a5a6-aa7a-4de2-9d29-1b200c13ada9)
  3032. )
  3033. (junction (at 111.76 88.9) (diameter 0) (color 0 0 0 0)
  3034. (uuid 71e2c442-6854-420c-af35-dcfcf83456aa)
  3035. )
  3036. (junction (at 274.32 58.42) (diameter 0) (color 0 0 0 0)
  3037. (uuid 749d9ed0-2ff2-4b55-abc5-f7231ec3aa28)
  3038. )
  3039. (junction (at 111.76 76.2) (diameter 0) (color 0 0 0 0)
  3040. (uuid 7e59628a-e341-44cc-bf0f-f1b798a31f1a)
  3041. )
  3042. (junction (at 111.76 101.6) (diameter 0) (color 0 0 0 0)
  3043. (uuid 7f8cd204-ec07-4f76-9072-92e7ccb38dd1)
  3044. )
  3045. (junction (at 111.76 93.98) (diameter 0) (color 0 0 0 0)
  3046. (uuid 86d01cdf-5357-44e1-88d9-97c064cddc9b)
  3047. )
  3048. (junction (at 111.76 71.12) (diameter 0) (color 0 0 0 0)
  3049. (uuid 8dbd51b4-44a2-4ec8-88cf-49079c3aa71e)
  3050. )
  3051. (junction (at 158.75 100.33) (diameter 0) (color 0 0 0 0)
  3052. (uuid 8efee08b-b92e-4ba6-8722-c058e18114fe)
  3053. )
  3054. (junction (at 274.32 73.66) (diameter 0) (color 0 0 0 0)
  3055. (uuid 9112ddd5-10d5-48b8-954f-f1d5adcacbd9)
  3056. )
  3057. (junction (at 274.32 43.18) (diameter 0) (color 0 0 0 0)
  3058. (uuid 929a9b03-e99e-4b88-8e16-759f8c6b59a5)
  3059. )
  3060. (junction (at 111.76 91.44) (diameter 0) (color 0 0 0 0)
  3061. (uuid 93d4a801-226a-48d7-8947-f1bfb7b16554)
  3062. )
  3063. (junction (at 111.76 81.28) (diameter 0) (color 0 0 0 0)
  3064. (uuid 964e4e90-e12f-441c-9d6e-816439c420a1)
  3065. )
  3066. (junction (at 274.32 33.02) (diameter 0) (color 0 0 0 0)
  3067. (uuid 98966de3-2364-43d8-a2e0-b03bb9487b03)
  3068. )
  3069. (junction (at 158.75 67.31) (diameter 0) (color 0 0 0 0)
  3070. (uuid 98fe66f3-ec8b-4515-ae34-617f2124a7ec)
  3071. )
  3072. (junction (at 111.76 60.96) (diameter 0) (color 0 0 0 0)
  3073. (uuid a91cedf1-2089-4c44-9b06-471821937b05)
  3074. )
  3075. (junction (at 274.32 53.34) (diameter 0) (color 0 0 0 0)
  3076. (uuid aadc3df5-0e2d-4f3d-b72e-6f184da74c89)
  3077. )
  3078. (junction (at 111.76 48.26) (diameter 0) (color 0 0 0 0)
  3079. (uuid adc65b09-91c2-4457-8ffe-d57980cf8d73)
  3080. )
  3081. (junction (at 274.32 63.5) (diameter 0) (color 0 0 0 0)
  3082. (uuid af76ce95-feca-41fb-bf31-edaa26d6766a)
  3083. )
  3084. (junction (at 162.56 125.73) (diameter 0) (color 0 0 0 0)
  3085. (uuid afacc12f-b097-4001-b889-9e6781913725)
  3086. )
  3087. (junction (at 143.51 105.41) (diameter 0) (color 0 0 0 0)
  3088. (uuid b854a395-bfc6-4140-9640-75d4f9296771)
  3089. )
  3090. (junction (at 111.76 55.88) (diameter 0) (color 0 0 0 0)
  3091. (uuid c1f5a21c-f5c2-44b0-9b58-90bde58c0d60)
  3092. )
  3093. (junction (at 274.32 102.87) (diameter 0) (color 0 0 0 0)
  3094. (uuid c3a69550-c4fa-45d1-9aba-0bba47699cca)
  3095. )
  3096. (junction (at 274.32 78.74) (diameter 0) (color 0 0 0 0)
  3097. (uuid ca9b74ce-0dee-401c-9544-f599f4cf538d)
  3098. )
  3099. (junction (at 111.76 99.06) (diameter 0) (color 0 0 0 0)
  3100. (uuid cb63a9d8-a84d-43a5-8ff1-d18b1b48c54a)
  3101. )
  3102. (junction (at 274.32 27.94) (diameter 0) (color 0 0 0 0)
  3103. (uuid da546d77-4b03-4562-8fc6-837fd68e7691)
  3104. )
  3105. (junction (at 111.76 96.52) (diameter 0) (color 0 0 0 0)
  3106. (uuid e30dfecd-d78a-4507-91d6-d47619648416)
  3107. )
  3108. (junction (at 158.75 97.79) (diameter 0) (color 0 0 0 0)
  3109. (uuid e6d68f56-4a40-4849-b8d1-13d5ca292900)
  3110. )
  3111. (junction (at 158.75 80.01) (diameter 0) (color 0 0 0 0)
  3112. (uuid f6983918-fe05-46ea-b355-bc522ec53440)
  3113. )
  3114. (junction (at 274.32 97.79) (diameter 0) (color 0 0 0 0)
  3115. (uuid f7070c76-b83b-43a9-a243-491723819616)
  3116. )
  3117. (junction (at 111.76 73.66) (diameter 0) (color 0 0 0 0)
  3118. (uuid f70a4a9d-e097-4502-83aa-1f63e074f06b)
  3119. )
  3120. (junction (at 111.76 66.04) (diameter 0) (color 0 0 0 0)
  3121. (uuid f82dfe8f-ba55-4ab9-a234-6aed39cd6ca4)
  3122. )
  3123. (junction (at 111.76 63.5) (diameter 0) (color 0 0 0 0)
  3124. (uuid f91c051b-372e-45a5-ac05-790df945f858)
  3125. )
  3126. (junction (at 274.32 48.26) (diameter 0) (color 0 0 0 0)
  3127. (uuid fc2e9f96-3bed-4896-b995-f56e799f1c77)
  3128. )
  3129. (junction (at 158.75 87.63) (diameter 0) (color 0 0 0 0)
  3130. (uuid fc4ad874-c922-4070-89f9-7262080469d8)
  3131. )
  3132. (no_connect (at 218.44 158.75) (uuid 276dd34e-fc62-4ec0-a853-7be08f169b56))
  3133. (no_connect (at 251.46 148.59) (uuid 37728c8e-efcc-462c-a749-47b6bfcbaf37))
  3134. (no_connect (at 54.61 78.74) (uuid f78abf3d-5695-4b76-b33f-d959d7b688e7))
  3135. (bus_entry (at 248.92 118.11) (size 2.54 -2.54)
  3136. (stroke (width 0) (type default) (color 0 0 0 0))
  3137. (uuid 0b4c0f05-c855-4742-bad2-dbf645d5842b)
  3138. )
  3139. (bus_entry (at 19.05 121.92) (size 2.54 2.54)
  3140. (stroke (width 0) (type default) (color 0 0 0 0))
  3141. (uuid 0ce1dd44-f307-4f98-9f0d-478fd87daa64)
  3142. )
  3143. (bus_entry (at 248.92 46.99) (size 2.54 -2.54)
  3144. (stroke (width 0) (type default) (color 0 0 0 0))
  3145. (uuid 12c8f4c9-cb79-4390-b96c-a717c693de17)
  3146. )
  3147. (bus_entry (at 248.92 57.15) (size 2.54 -2.54)
  3148. (stroke (width 0) (type default) (color 0 0 0 0))
  3149. (uuid 12f8e43c-8f83-48d3-a9b5-5f3ebc0b6c43)
  3150. )
  3151. (bus_entry (at 66.04 81.28) (size 2.54 -2.54)
  3152. (stroke (width 0) (type default) (color 0 0 0 0))
  3153. (uuid 15699041-ed40-45ee-87d8-f5e206a88536)
  3154. )
  3155. (bus_entry (at 251.46 30.48) (size 2.54 2.54)
  3156. (stroke (width 0) (type default) (color 0 0 0 0))
  3157. (uuid 18f1018d-5857-4c32-a072-f3de80352f74)
  3158. )
  3159. (bus_entry (at 189.23 105.41) (size 2.54 2.54)
  3160. (stroke (width 0) (type default) (color 0 0 0 0))
  3161. (uuid 1a22eb2d-f625-4371-a918-ff1b97dc8219)
  3162. )
  3163. (bus_entry (at 19.05 149.86) (size 2.54 2.54)
  3164. (stroke (width 0) (type default) (color 0 0 0 0))
  3165. (uuid 1cacb878-9da4-41fc-aa80-018bc841e19a)
  3166. )
  3167. (bus_entry (at 251.46 95.25) (size 2.54 2.54)
  3168. (stroke (width 0) (type default) (color 0 0 0 0))
  3169. (uuid 2028d85e-9e27-4758-8c0b-559fad072813)
  3170. )
  3171. (bus_entry (at 19.05 147.32) (size 2.54 2.54)
  3172. (stroke (width 0) (type default) (color 0 0 0 0))
  3173. (uuid 247ebffd-2cb6-4379-ba6e-21861fea3913)
  3174. )
  3175. (bus_entry (at 248.92 97.79) (size 2.54 -2.54)
  3176. (stroke (width 0) (type default) (color 0 0 0 0))
  3177. (uuid 282c8e53-3acc-42f0-a92a-6aa976b97a93)
  3178. )
  3179. (bus_entry (at 19.05 124.46) (size 2.54 2.54)
  3180. (stroke (width 0) (type default) (color 0 0 0 0))
  3181. (uuid 3457afc5-3e4f-4220-81d1-b079f653a722)
  3182. )
  3183. (bus_entry (at 19.05 78.74) (size 2.54 2.54)
  3184. (stroke (width 0) (type default) (color 0 0 0 0))
  3185. (uuid 3bbbbb7d-391c-4fee-ac81-3c47878edc38)
  3186. )
  3187. (bus_entry (at 251.46 50.8) (size 2.54 2.54)
  3188. (stroke (width 0) (type default) (color 0 0 0 0))
  3189. (uuid 3d552623-2969-4b15-8623-368144f225e9)
  3190. )
  3191. (bus_entry (at 66.04 83.82) (size 2.54 -2.54)
  3192. (stroke (width 0) (type default) (color 0 0 0 0))
  3193. (uuid 402c62e6-8d8e-473a-a0cf-2b86e4908cd7)
  3194. )
  3195. (bus_entry (at 66.04 88.9) (size 2.54 -2.54)
  3196. (stroke (width 0) (type default) (color 0 0 0 0))
  3197. (uuid 406d491e-5b01-46dc-a768-fd0992cdb346)
  3198. )
  3199. (bus_entry (at 248.92 36.83) (size 2.54 -2.54)
  3200. (stroke (width 0) (type default) (color 0 0 0 0))
  3201. (uuid 4344bc11-e822-474b-8d61-d12211e719b1)
  3202. )
  3203. (bus_entry (at 19.05 81.28) (size 2.54 2.54)
  3204. (stroke (width 0) (type default) (color 0 0 0 0))
  3205. (uuid 4a53fa56-d65b-42a4-a4be-8f49c4c015bb)
  3206. )
  3207. (bus_entry (at 68.58 114.3) (size 2.54 2.54)
  3208. (stroke (width 0) (type default) (color 0 0 0 0))
  3209. (uuid 58390862-1833-41dd-9c4e-98073ea0da33)
  3210. )
  3211. (bus_entry (at 68.58 111.76) (size 2.54 2.54)
  3212. (stroke (width 0) (type default) (color 0 0 0 0))
  3213. (uuid 5e755161-24a5-4650-a6e3-9836bf074412)
  3214. )
  3215. (bus_entry (at 248.92 77.47) (size 2.54 -2.54)
  3216. (stroke (width 0) (type default) (color 0 0 0 0))
  3217. (uuid 5f38bdb2-3657-474e-8e86-d6bb0b298110)
  3218. )
  3219. (bus_entry (at 19.05 93.98) (size 2.54 2.54)
  3220. (stroke (width 0) (type default) (color 0 0 0 0))
  3221. (uuid 7582a530-a952-46c1-b7eb-75006524ba29)
  3222. )
  3223. (bus_entry (at 248.92 107.95) (size 2.54 -2.54)
  3224. (stroke (width 0) (type default) (color 0 0 0 0))
  3225. (uuid 83c5181e-f5ee-453c-ae5c-d7256ba8837d)
  3226. )
  3227. (bus_entry (at 251.46 66.04) (size 2.54 2.54)
  3228. (stroke (width 0) (type default) (color 0 0 0 0))
  3229. (uuid 8aeae536-fd36-430e-be47-1a856eced2fc)
  3230. )
  3231. (bus_entry (at 251.46 40.64) (size 2.54 2.54)
  3232. (stroke (width 0) (type default) (color 0 0 0 0))
  3233. (uuid 92848721-49b5-4e4c-b042-6fd51e1d562f)
  3234. )
  3235. (bus_entry (at 19.05 91.44) (size 2.54 2.54)
  3236. (stroke (width 0) (type default) (color 0 0 0 0))
  3237. (uuid 92f063a3-7cce-4a96-8a3a-cf5767f700c6)
  3238. )
  3239. (bus_entry (at 19.05 83.82) (size 2.54 2.54)
  3240. (stroke (width 0) (type default) (color 0 0 0 0))
  3241. (uuid 96781640-c07e-4eea-a372-067ded96b703)
  3242. )
  3243. (bus_entry (at 19.05 144.78) (size 2.54 2.54)
  3244. (stroke (width 0) (type default) (color 0 0 0 0))
  3245. (uuid 96ef76a5-90c3-4767-98ba-2b61887e28d3)
  3246. )
  3247. (bus_entry (at 251.46 25.4) (size 2.54 2.54)
  3248. (stroke (width 0) (type default) (color 0 0 0 0))
  3249. (uuid 992a2b00-5e28-4edd-88b5-994891512d8d)
  3250. )
  3251. (bus_entry (at 251.46 110.49) (size 2.54 2.54)
  3252. (stroke (width 0) (type default) (color 0 0 0 0))
  3253. (uuid 9cacb6ad-6bbf-4ffe-b0a4-2df24045e046)
  3254. )
  3255. (bus_entry (at 189.23 95.25) (size 2.54 2.54)
  3256. (stroke (width 0) (type default) (color 0 0 0 0))
  3257. (uuid 9f969b13-1795-4747-8326-93bdc304ed56)
  3258. )
  3259. (bus_entry (at 189.23 97.79) (size 2.54 2.54)
  3260. (stroke (width 0) (type default) (color 0 0 0 0))
  3261. (uuid 9fdca5c2-1fbd-4774-a9c3-8795a40c206d)
  3262. )
  3263. (bus_entry (at 189.23 100.33) (size 2.54 2.54)
  3264. (stroke (width 0) (type default) (color 0 0 0 0))
  3265. (uuid a0d52767-051a-423c-a600-928281f27952)
  3266. )
  3267. (bus_entry (at 66.04 86.36) (size 2.54 -2.54)
  3268. (stroke (width 0) (type default) (color 0 0 0 0))
  3269. (uuid a177c3b4-b04c-490e-b3fe-d3d4d7aa24a7)
  3270. )
  3271. (bus_entry (at 251.46 90.17) (size 2.54 2.54)
  3272. (stroke (width 0) (type default) (color 0 0 0 0))
  3273. (uuid a48f5fff-52e4-4ae8-8faa-7084c7ae8a28)
  3274. )
  3275. (bus_entry (at 251.46 60.96) (size 2.54 2.54)
  3276. (stroke (width 0) (type default) (color 0 0 0 0))
  3277. (uuid bc3b3f93-69e0-44a5-b919-319b81d13095)
  3278. )
  3279. (bus_entry (at 251.46 105.41) (size 2.54 2.54)
  3280. (stroke (width 0) (type default) (color 0 0 0 0))
  3281. (uuid be5a7017-fe9d-43ea-9a6a-8fe8deb78420)
  3282. )
  3283. (bus_entry (at 251.46 45.72) (size 2.54 2.54)
  3284. (stroke (width 0) (type default) (color 0 0 0 0))
  3285. (uuid c07eebcc-30d2-439d-8030-faea6ade4486)
  3286. )
  3287. (bus_entry (at 248.92 128.27) (size 2.54 -2.54)
  3288. (stroke (width 0) (type default) (color 0 0 0 0))
  3289. (uuid ca5b6af8-ca05-4338-b852-b51f2b49b1db)
  3290. )
  3291. (bus_entry (at 248.92 87.63) (size 2.54 -2.54)
  3292. (stroke (width 0) (type default) (color 0 0 0 0))
  3293. (uuid d72c89a6-7578-4468-964e-2a845431195f)
  3294. )
  3295. (bus_entry (at 251.46 35.56) (size 2.54 2.54)
  3296. (stroke (width 0) (type default) (color 0 0 0 0))
  3297. (uuid db1ed10a-ef86-43bf-93dc-9be76327f6d2)
  3298. )
  3299. (bus_entry (at 248.92 27.94) (size 2.54 -2.54)
  3300. (stroke (width 0) (type default) (color 0 0 0 0))
  3301. (uuid db742b9e-1fed-4e0c-b783-f911ab5116aa)
  3302. )
  3303. (bus_entry (at 251.46 100.33) (size 2.54 2.54)
  3304. (stroke (width 0) (type default) (color 0 0 0 0))
  3305. (uuid e0d7c1d9-102e-4758-a8b7-ff248f1ce315)
  3306. )
  3307. (bus_entry (at 251.46 55.88) (size 2.54 2.54)
  3308. (stroke (width 0) (type default) (color 0 0 0 0))
  3309. (uuid e65bab67-68b7-4b22-a939-6f2c05164d2a)
  3310. )
  3311. (bus_entry (at 248.92 138.43) (size 2.54 -2.54)
  3312. (stroke (width 0) (type default) (color 0 0 0 0))
  3313. (uuid ea2ea877-1ce1-4cd6-ad19-1da87f51601d)
  3314. )
  3315. (bus_entry (at 248.92 67.31) (size 2.54 -2.54)
  3316. (stroke (width 0) (type default) (color 0 0 0 0))
  3317. (uuid eaa0d51a-ee4e-4d3a-a801-bddb7027e94c)
  3318. )
  3319. (bus_entry (at 19.05 76.2) (size 2.54 2.54)
  3320. (stroke (width 0) (type default) (color 0 0 0 0))
  3321. (uuid eb391a95-1c1d-4613-b508-c76b8bc13a73)
  3322. )
  3323. (bus_entry (at 251.46 71.12) (size 2.54 2.54)
  3324. (stroke (width 0) (type default) (color 0 0 0 0))
  3325. (uuid eb473bfd-fc2d-4cf0-8714-6b7dd95b0a03)
  3326. )
  3327. (bus_entry (at 19.05 119.38) (size 2.54 2.54)
  3328. (stroke (width 0) (type default) (color 0 0 0 0))
  3329. (uuid f8b47531-6c06-4e54-9fc9-cd9d0f3dd69f)
  3330. )
  3331. (bus_entry (at 251.46 81.28) (size 2.54 2.54)
  3332. (stroke (width 0) (type default) (color 0 0 0 0))
  3333. (uuid fa20e708-ec85-4e0b-8402-f74a2724f920)
  3334. )
  3335. (bus_entry (at 189.23 72.39) (size 2.54 2.54)
  3336. (stroke (width 0) (type default) (color 0 0 0 0))
  3337. (uuid fb0bf2a0-d317-42f7-b022-b5e05481f6be)
  3338. )
  3339. (bus_entry (at 251.46 76.2) (size 2.54 2.54)
  3340. (stroke (width 0) (type default) (color 0 0 0 0))
  3341. (uuid fb35e3b1-aff6-41a7-9cf0-52694b95edeb)
  3342. )
  3343. (wire (pts (xy 30.48 101.6) (xy 31.75 101.6))
  3344. (stroke (width 0) (type default) (color 0 0 0 0))
  3345. (uuid 000b46d6-b833-4804-8f56-56d539f76d09)
  3346. )
  3347. (wire (pts (xy 111.76 66.04) (xy 111.76 68.58))
  3348. (stroke (width 0) (type default) (color 0 0 0 0))
  3349. (uuid 01dc798b-4c95-4d40-80b7-aa972004ee44)
  3350. )
  3351. (wire (pts (xy 133.35 170.18) (xy 135.89 170.18))
  3352. (stroke (width 0) (type default) (color 0 0 0 0))
  3353. (uuid 03e48a7d-cbfe-454a-bd5a-26805d2a84ce)
  3354. )
  3355. (bus (pts (xy 68.58 81.28) (xy 68.58 83.82))
  3356. (stroke (width 0) (type default) (color 0 0 0 0))
  3357. (uuid 042355dd-6e0d-4b8b-8570-27753e03916b)
  3358. )
  3359. (wire (pts (xy 128.27 78.74) (xy 130.81 78.74))
  3360. (stroke (width 0) (type default) (color 0 0 0 0))
  3361. (uuid 042b8bea-9219-4f6a-89b3-599bbdfa8b93)
  3362. )
  3363. (bus (pts (xy 19.05 91.44) (xy 19.05 93.98))
  3364. (stroke (width 0) (type default) (color 0 0 0 0))
  3365. (uuid 042cd293-06db-42f3-afc5-3844e62e7be3)
  3366. )
  3367. (wire (pts (xy 157.48 129.54) (xy 162.56 129.54))
  3368. (stroke (width 0) (type default) (color 0 0 0 0))
  3369. (uuid 04657fbf-e375-4129-bf29-87f895ae9e9c)
  3370. )
  3371. (wire (pts (xy 111.76 71.12) (xy 115.57 71.12))
  3372. (stroke (width 0) (type default) (color 0 0 0 0))
  3373. (uuid 04d7fd83-a6aa-4987-9e20-3d50c265b831)
  3374. )
  3375. (wire (pts (xy 242.57 128.27) (xy 248.92 128.27))
  3376. (stroke (width 0) (type default) (color 0 0 0 0))
  3377. (uuid 05d3e08e-e1f9-46cf-93d0-836d1306d03a)
  3378. )
  3379. (wire (pts (xy 111.76 48.26) (xy 115.57 48.26))
  3380. (stroke (width 0) (type default) (color 0 0 0 0))
  3381. (uuid 05d6ed65-9b0b-47fc-9d52-3f81dfc32551)
  3382. )
  3383. (wire (pts (xy 128.27 88.9) (xy 130.81 88.9))
  3384. (stroke (width 0) (type default) (color 0 0 0 0))
  3385. (uuid 05e3b151-dc12-4701-912e-3bf8070597d8)
  3386. )
  3387. (wire (pts (xy 175.26 100.33) (xy 189.23 100.33))
  3388. (stroke (width 0) (type default) (color 0 0 0 0))
  3389. (uuid 06665bf8-cef1-4e75-8d5b-1537b3c1b090)
  3390. )
  3391. (wire (pts (xy 274.32 83.82) (xy 274.32 78.74))
  3392. (stroke (width 0) (type default) (color 0 0 0 0))
  3393. (uuid 099473f1-6598-46ff-a50f-4c520832170d)
  3394. )
  3395. (wire (pts (xy 128.27 91.44) (xy 130.81 91.44))
  3396. (stroke (width 0) (type default) (color 0 0 0 0))
  3397. (uuid 0a1f756a-03ad-48d1-a3cc-07b1e91bf6b5)
  3398. )
  3399. (bus (pts (xy 19.05 78.74) (xy 19.05 81.28))
  3400. (stroke (width 0) (type default) (color 0 0 0 0))
  3401. (uuid 0bbf9571-8208-4728-bca6-e36e4dcb62f0)
  3402. )
  3403. (wire (pts (xy 21.59 124.46) (xy 31.75 124.46))
  3404. (stroke (width 0) (type default) (color 0 0 0 0))
  3405. (uuid 0c5dddf1-38df-43d2-b49c-e7b691dab0ab)
  3406. )
  3407. (wire (pts (xy 158.75 67.31) (xy 158.75 69.85))
  3408. (stroke (width 0) (type default) (color 0 0 0 0))
  3409. (uuid 0dfdfa9f-1e3f-4e14-b64b-12bde76a80c7)
  3410. )
  3411. (wire (pts (xy 162.56 100.33) (xy 158.75 100.33))
  3412. (stroke (width 0) (type default) (color 0 0 0 0))
  3413. (uuid 0e249018-17e7-42b3-ae5d-5ebf3ae299ae)
  3414. )
  3415. (wire (pts (xy 29.972 137.16) (xy 31.75 137.16))
  3416. (stroke (width 0) (type default) (color 0 0 0 0))
  3417. (uuid 0e7ad38a-9a9f-4f7f-85da-d397ca1ffbd3)
  3418. )
  3419. (wire (pts (xy 111.76 91.44) (xy 115.57 91.44))
  3420. (stroke (width 0) (type default) (color 0 0 0 0))
  3421. (uuid 105d2701-5e63-4eb3-8241-5608caa465c8)
  3422. )
  3423. (wire (pts (xy 281.94 156.21) (xy 281.94 151.13))
  3424. (stroke (width 0) (type default) (color 0 0 0 0))
  3425. (uuid 11c7c8d4-4c4b-4330-bb59-1eec2e98b255)
  3426. )
  3427. (bus (pts (xy 68.58 83.82) (xy 68.58 86.36))
  3428. (stroke (width 0) (type default) (color 0 0 0 0))
  3429. (uuid 12064ebf-c118-4e17-9e5f-93ba0649c1a8)
  3430. )
  3431. (wire (pts (xy 274.32 43.18) (xy 270.51 43.18))
  3432. (stroke (width 0) (type default) (color 0 0 0 0))
  3433. (uuid 13ac70df-e9b9-44e5-96e6-20f0b0dc6a3a)
  3434. )
  3435. (wire (pts (xy 226.06 67.31) (xy 227.33 67.31))
  3436. (stroke (width 0) (type default) (color 0 0 0 0))
  3437. (uuid 14064e1b-d8db-4b96-9159-f0491d3e5f02)
  3438. )
  3439. (wire (pts (xy 162.56 80.01) (xy 158.75 80.01))
  3440. (stroke (width 0) (type default) (color 0 0 0 0))
  3441. (uuid 142dd724-2a9f-4eea-ab21-209b1bc7ec65)
  3442. )
  3443. (bus (pts (xy 251.46 54.61) (xy 251.46 55.88))
  3444. (stroke (width 0) (type default) (color 0 0 0 0))
  3445. (uuid 1466a746-e42c-4539-8265-f23e0ae49915)
  3446. )
  3447. (wire (pts (xy 158.75 80.01) (xy 158.75 77.47))
  3448. (stroke (width 0) (type default) (color 0 0 0 0))
  3449. (uuid 15a82541-58d8-45b5-99c5-fb52e017e3ea)
  3450. )
  3451. (wire (pts (xy 274.32 92.71) (xy 274.32 90.17))
  3452. (stroke (width 0) (type default) (color 0 0 0 0))
  3453. (uuid 1732b93f-cd0e-4ca4-a905-bb406354ca33)
  3454. )
  3455. (wire (pts (xy 274.32 107.95) (xy 274.32 102.87))
  3456. (stroke (width 0) (type default) (color 0 0 0 0))
  3457. (uuid 17cf1c88-8d51-4538-aa76-e35ac22d0ed0)
  3458. )
  3459. (wire (pts (xy 218.44 46.99) (xy 227.33 46.99))
  3460. (stroke (width 0) (type default) (color 0 0 0 0))
  3461. (uuid 17ed3508-fa2e-4593-a799-bfd39a6cc14d)
  3462. )
  3463. (wire (pts (xy 31.75 127) (xy 21.59 127))
  3464. (stroke (width 0) (type default) (color 0 0 0 0))
  3465. (uuid 1855ca44-ab48-4b76-a210-97fc81d916c4)
  3466. )
  3467. (wire (pts (xy 270.51 83.82) (xy 274.32 83.82))
  3468. (stroke (width 0) (type default) (color 0 0 0 0))
  3469. (uuid 1876c30c-72b2-4a8d-9f32-bf8b213530b4)
  3470. )
  3471. (wire (pts (xy 24.13 190.5) (xy 26.67 190.5))
  3472. (stroke (width 0) (type default) (color 0 0 0 0))
  3473. (uuid 197737a3-f629-4847-a3bd-29bbed8e8513)
  3474. )
  3475. (wire (pts (xy 71.12 114.3) (xy 81.28 114.3))
  3476. (stroke (width 0) (type default) (color 0 0 0 0))
  3477. (uuid 1bf7d0f9-0dcf-4d7c-b58c-318e3dc42bc9)
  3478. )
  3479. (bus (pts (xy 68.58 86.36) (xy 68.58 111.76))
  3480. (stroke (width 0) (type default) (color 0 0 0 0))
  3481. (uuid 1bfd907f-4d47-425f-8228-0ad04c9e1e44)
  3482. )
  3483. (wire (pts (xy 242.57 97.79) (xy 248.92 97.79))
  3484. (stroke (width 0) (type default) (color 0 0 0 0))
  3485. (uuid 1c052668-6749-425a-9a77-35f046c8aa39)
  3486. )
  3487. (wire (pts (xy 133.35 170.18) (xy 133.35 172.72))
  3488. (stroke (width 0) (type default) (color 0 0 0 0))
  3489. (uuid 1c24771c-19d1-4407-9c2f-255b7ddf0492)
  3490. )
  3491. (wire (pts (xy 30.48 157.48) (xy 31.75 157.48))
  3492. (stroke (width 0) (type default) (color 0 0 0 0))
  3493. (uuid 1de61170-5337-44c5-ba28-bd477db4bff1)
  3494. )
  3495. (wire (pts (xy 111.76 101.6) (xy 111.76 104.14))
  3496. (stroke (width 0) (type default) (color 0 0 0 0))
  3497. (uuid 1f261883-4501-4c16-8f24-011b93c7b7c4)
  3498. )
  3499. (wire (pts (xy 111.76 60.96) (xy 111.76 63.5))
  3500. (stroke (width 0) (type default) (color 0 0 0 0))
  3501. (uuid 1f848839-e564-450f-a963-ebf13ca910f5)
  3502. )
  3503. (wire (pts (xy 30.48 111.76) (xy 31.75 111.76))
  3504. (stroke (width 0) (type default) (color 0 0 0 0))
  3505. (uuid 2102c637-9f11-48f1-aae6-b4139dc22be2)
  3506. )
  3507. (wire (pts (xy 144.78 170.18) (xy 147.32 170.18))
  3508. (stroke (width 0) (type default) (color 0 0 0 0))
  3509. (uuid 22b49795-d138-447a-8a67-2f87ad0d4bd4)
  3510. )
  3511. (wire (pts (xy 218.44 156.21) (xy 219.71 156.21))
  3512. (stroke (width 0) (type default) (color 0 0 0 0))
  3513. (uuid 22c1623e-dd8d-428b-b9ae-ebb3a532b396)
  3514. )
  3515. (bus (pts (xy 251.46 25.4) (xy 251.46 30.48))
  3516. (stroke (width 0) (type default) (color 0 0 0 0))
  3517. (uuid 22ca4d26-dec4-44a3-995c-be969ad2dac7)
  3518. )
  3519. (bus (pts (xy 251.46 55.88) (xy 251.46 60.96))
  3520. (stroke (width 0) (type default) (color 0 0 0 0))
  3521. (uuid 2335a1d2-947d-4bec-881e-be4aaf732354)
  3522. )
  3523. (wire (pts (xy 128.27 99.06) (xy 130.81 99.06))
  3524. (stroke (width 0) (type default) (color 0 0 0 0))
  3525. (uuid 2447f5f1-b3d5-43aa-959f-88436ebed06d)
  3526. )
  3527. (wire (pts (xy 111.76 106.68) (xy 115.57 106.68))
  3528. (stroke (width 0) (type default) (color 0 0 0 0))
  3529. (uuid 26f6b829-e63c-496a-b791-5dd68c7ead9d)
  3530. )
  3531. (wire (pts (xy 30.48 114.3) (xy 31.75 114.3))
  3532. (stroke (width 0) (type default) (color 0 0 0 0))
  3533. (uuid 272c2a78-b5f5-4b61-aed3-ec69e0e92729)
  3534. )
  3535. (wire (pts (xy 274.32 38.1) (xy 274.32 43.18))
  3536. (stroke (width 0) (type default) (color 0 0 0 0))
  3537. (uuid 278a91dc-d57d-4a5c-a045-34b6bd84131f)
  3538. )
  3539. (wire (pts (xy 274.32 25.4) (xy 274.32 27.94))
  3540. (stroke (width 0) (type default) (color 0 0 0 0))
  3541. (uuid 29126f72-63f7-4275-8b12-6b96a71c6f17)
  3542. )
  3543. (wire (pts (xy 254 53.34) (xy 265.43 53.34))
  3544. (stroke (width 0) (type default) (color 0 0 0 0))
  3545. (uuid 291935ec-f8ff-41f0-8717-e68b8af7b8c1)
  3546. )
  3547. (wire (pts (xy 111.76 88.9) (xy 111.76 91.44))
  3548. (stroke (width 0) (type default) (color 0 0 0 0))
  3549. (uuid 2b5319a3-2b4f-4c5e-b61e-a7934593e487)
  3550. )
  3551. (wire (pts (xy 128.27 86.36) (xy 130.81 86.36))
  3552. (stroke (width 0) (type default) (color 0 0 0 0))
  3553. (uuid 2b8c6538-2116-4527-a026-b4925dd2ee57)
  3554. )
  3555. (wire (pts (xy 57.15 31.75) (xy 57.15 33.02))
  3556. (stroke (width 0) (type default) (color 0 0 0 0))
  3557. (uuid 2ba25c40-ea42-478e-9150-1d94fa1c8ae9)
  3558. )
  3559. (bus (pts (xy 68.58 68.58) (xy 68.58 78.74))
  3560. (stroke (width 0) (type default) (color 0 0 0 0))
  3561. (uuid 2d0d333a-99a0-4575-9433-710c8cc7ac0b)
  3562. )
  3563. (bus (pts (xy 251.46 125.73) (xy 251.46 135.89))
  3564. (stroke (width 0) (type default) (color 0 0 0 0))
  3565. (uuid 2dbbf750-c1db-47bf-9f50-fe0096e42311)
  3566. )
  3567. (wire (pts (xy 274.32 27.94) (xy 274.32 33.02))
  3568. (stroke (width 0) (type default) (color 0 0 0 0))
  3569. (uuid 2ea8fa6f-efc3-40fe-bcf9-05bfa46ead4f)
  3570. )
  3571. (wire (pts (xy 270.51 92.71) (xy 274.32 92.71))
  3572. (stroke (width 0) (type default) (color 0 0 0 0))
  3573. (uuid 2f0570b6-86da-47a8-9e56-ce60c431c534)
  3574. )
  3575. (wire (pts (xy 162.56 87.63) (xy 158.75 87.63))
  3576. (stroke (width 0) (type default) (color 0 0 0 0))
  3577. (uuid 2f291a4b-4ecb-4692-9ad2-324f9784c0d4)
  3578. )
  3579. (wire (pts (xy 264.16 156.21) (xy 281.94 156.21))
  3580. (stroke (width 0) (type default) (color 0 0 0 0))
  3581. (uuid 300aa512-2f66-4c26-a530-50c091b3a099)
  3582. )
  3583. (wire (pts (xy 111.76 73.66) (xy 115.57 73.66))
  3584. (stroke (width 0) (type default) (color 0 0 0 0))
  3585. (uuid 3102a495-c747-4ebd-910d-ccca3f28177b)
  3586. )
  3587. (wire (pts (xy 158.75 90.17) (xy 158.75 87.63))
  3588. (stroke (width 0) (type default) (color 0 0 0 0))
  3589. (uuid 319639ae-c2c5-486d-93b1-d03bb1b64252)
  3590. )
  3591. (wire (pts (xy 111.76 86.36) (xy 111.76 88.9))
  3592. (stroke (width 0) (type default) (color 0 0 0 0))
  3593. (uuid 32cfb255-fdbf-4c67-9adf-72dba031ac4d)
  3594. )
  3595. (wire (pts (xy 254 43.18) (xy 265.43 43.18))
  3596. (stroke (width 0) (type default) (color 0 0 0 0))
  3597. (uuid 35fb7c56-dc85-43f7-b954-81b8040a8500)
  3598. )
  3599. (wire (pts (xy 134.62 167.64) (xy 135.89 167.64))
  3600. (stroke (width 0) (type default) (color 0 0 0 0))
  3601. (uuid 3656bb3f-f8a4-4f3a-8e9a-ec6203c87a56)
  3602. )
  3603. (bus (pts (xy 251.46 90.17) (xy 251.46 95.25))
  3604. (stroke (width 0) (type default) (color 0 0 0 0))
  3605. (uuid 3738728a-c5af-46d4-b1cb-ff6e3af40838)
  3606. )
  3607. (wire (pts (xy 111.76 101.6) (xy 115.57 101.6))
  3608. (stroke (width 0) (type default) (color 0 0 0 0))
  3609. (uuid 395f28d9-5d9e-4a88-b7ad-8a1df4610090)
  3610. )
  3611. (wire (pts (xy 241.3 151.13) (xy 251.46 151.13))
  3612. (stroke (width 0) (type default) (color 0 0 0 0))
  3613. (uuid 39845449-7a31-4262-86b1-e7af14a6659f)
  3614. )
  3615. (wire (pts (xy 158.75 67.31) (xy 162.56 67.31))
  3616. (stroke (width 0) (type default) (color 0 0 0 0))
  3617. (uuid 3a41dd27-ec14-44d5-b505-aad1d829f79a)
  3618. )
  3619. (wire (pts (xy 162.56 90.17) (xy 158.75 90.17))
  3620. (stroke (width 0) (type default) (color 0 0 0 0))
  3621. (uuid 3a70978e-dcc2-4620-a99c-514362812927)
  3622. )
  3623. (bus (pts (xy 251.46 76.2) (xy 251.46 81.28))
  3624. (stroke (width 0) (type default) (color 0 0 0 0))
  3625. (uuid 3b229eb0-e28b-492b-a12f-d0915dbc7d4d)
  3626. )
  3627. (wire (pts (xy 54.61 83.82) (xy 66.04 83.82))
  3628. (stroke (width 0) (type default) (color 0 0 0 0))
  3629. (uuid 3b65c51e-c243-447e-bee9-832d94c1630e)
  3630. )
  3631. (wire (pts (xy 144.78 162.56) (xy 144.78 165.1))
  3632. (stroke (width 0) (type default) (color 0 0 0 0))
  3633. (uuid 3c3e06bd-c8bb-4ec8-84e0-f7f9437909b3)
  3634. )
  3635. (wire (pts (xy 162.56 82.55) (xy 158.75 82.55))
  3636. (stroke (width 0) (type default) (color 0 0 0 0))
  3637. (uuid 3d6cdd62-5634-4e30-acf8-1b9c1dbf6653)
  3638. )
  3639. (wire (pts (xy 199.39 153.67) (xy 205.74 153.67))
  3640. (stroke (width 0) (type default) (color 0 0 0 0))
  3641. (uuid 3ec95abd-e81e-441d-9d27-b430f8003396)
  3642. )
  3643. (wire (pts (xy 133.35 165.1) (xy 135.89 165.1))
  3644. (stroke (width 0) (type default) (color 0 0 0 0))
  3645. (uuid 3f1ae028-5eb5-4638-9698-eea3446a90d1)
  3646. )
  3647. (wire (pts (xy 111.76 58.42) (xy 115.57 58.42))
  3648. (stroke (width 0) (type default) (color 0 0 0 0))
  3649. (uuid 3f329a8f-e359-4d98-956d-6a077a40e514)
  3650. )
  3651. (wire (pts (xy 175.26 85.09) (xy 176.53 85.09))
  3652. (stroke (width 0) (type default) (color 0 0 0 0))
  3653. (uuid 3f7513cb-6fe5-481f-8bc3-13eed2580912)
  3654. )
  3655. (wire (pts (xy 274.32 113.03) (xy 274.32 107.95))
  3656. (stroke (width 0) (type default) (color 0 0 0 0))
  3657. (uuid 3fa05934-8ad1-40a9-af5c-98ad298eb412)
  3658. )
  3659. (wire (pts (xy 21.59 96.52) (xy 31.75 96.52))
  3660. (stroke (width 0) (type default) (color 0 0 0 0))
  3661. (uuid 4160bbf7-ffff-4c5c-a647-5ee58ddecf06)
  3662. )
  3663. (wire (pts (xy 175.26 140.97) (xy 175.26 143.51))
  3664. (stroke (width 0) (type default) (color 0 0 0 0))
  3665. (uuid 41c18011-40db-4384-9ba4-c0158d0d9d6a)
  3666. )
  3667. (wire (pts (xy 158.75 185.42) (xy 161.29 185.42))
  3668. (stroke (width 0) (type default) (color 0 0 0 0))
  3669. (uuid 42b61d5b-39d6-462b-b2cc-57656078085f)
  3670. )
  3671. (wire (pts (xy 111.76 34.29) (xy 109.22 34.29))
  3672. (stroke (width 0) (type default) (color 0 0 0 0))
  3673. (uuid 42bd0f96-a831-406e-abb7-03ed1bbd785f)
  3674. )
  3675. (wire (pts (xy 274.32 33.02) (xy 274.32 38.1))
  3676. (stroke (width 0) (type default) (color 0 0 0 0))
  3677. (uuid 4641c87c-bffa-41fe-ae77-be3a97a6f797)
  3678. )
  3679. (wire (pts (xy 264.16 153.67) (xy 276.86 153.67))
  3680. (stroke (width 0) (type default) (color 0 0 0 0))
  3681. (uuid 46491a9d-8b3d-4c74-b09a-70c876f162e5)
  3682. )
  3683. (bus (pts (xy 251.46 60.96) (xy 251.46 64.77))
  3684. (stroke (width 0) (type default) (color 0 0 0 0))
  3685. (uuid 4731b9a8-2054-4b6a-95e1-f9d04358cfc1)
  3686. )
  3687. (wire (pts (xy 156.21 165.1) (xy 158.75 165.1))
  3688. (stroke (width 0) (type default) (color 0 0 0 0))
  3689. (uuid 4888c330-f8fa-492d-aa6f-da06d2350187)
  3690. )
  3691. (wire (pts (xy 156.21 162.56) (xy 156.21 165.1))
  3692. (stroke (width 0) (type default) (color 0 0 0 0))
  3693. (uuid 48c34b19-0b1a-4994-ab08-825d4c2b7c6b)
  3694. )
  3695. (wire (pts (xy 111.76 73.66) (xy 111.76 76.2))
  3696. (stroke (width 0) (type default) (color 0 0 0 0))
  3697. (uuid 4905470f-e5d5-44e9-bdea-3395fa3a3921)
  3698. )
  3699. (wire (pts (xy 254 107.95) (xy 265.43 107.95))
  3700. (stroke (width 0) (type default) (color 0 0 0 0))
  3701. (uuid 49488c82-6277-4d05-a051-6a9df142c373)
  3702. )
  3703. (wire (pts (xy 254 58.42) (xy 265.43 58.42))
  3704. (stroke (width 0) (type default) (color 0 0 0 0))
  3705. (uuid 49a65079-57a9-46fc-8711-1d7f2cab8dbf)
  3706. )
  3707. (wire (pts (xy 30.48 160.02) (xy 31.75 160.02))
  3708. (stroke (width 0) (type default) (color 0 0 0 0))
  3709. (uuid 49b5f540-e128-4e08-bb09-f321f8e64056)
  3710. )
  3711. (bus (pts (xy 251.46 95.25) (xy 251.46 100.33))
  3712. (stroke (width 0) (type default) (color 0 0 0 0))
  3713. (uuid 49c443f1-81ac-4bcd-a9bb-a1172f94d5b6)
  3714. )
  3715. (wire (pts (xy 274.32 38.1) (xy 270.51 38.1))
  3716. (stroke (width 0) (type default) (color 0 0 0 0))
  3717. (uuid 4cc0e615-05a0-4f42-a208-4011ba8ef841)
  3718. )
  3719. (wire (pts (xy 111.76 55.88) (xy 111.76 58.42))
  3720. (stroke (width 0) (type default) (color 0 0 0 0))
  3721. (uuid 4cdd7089-c144-4631-a49d-c738e3706227)
  3722. )
  3723. (wire (pts (xy 274.32 58.42) (xy 274.32 53.34))
  3724. (stroke (width 0) (type default) (color 0 0 0 0))
  3725. (uuid 4cfd9a02-97ef-4af4-a6b8-db9be1a8fda5)
  3726. )
  3727. (bus (pts (xy 251.46 110.49) (xy 251.46 115.57))
  3728. (stroke (width 0) (type default) (color 0 0 0 0))
  3729. (uuid 4d66242d-4189-4e67-8d30-86b9373a63be)
  3730. )
  3731. (wire (pts (xy 175.26 90.17) (xy 176.53 90.17))
  3732. (stroke (width 0) (type default) (color 0 0 0 0))
  3733. (uuid 4e563ce6-c7b9-4224-ace7-42cd7b117034)
  3734. )
  3735. (wire (pts (xy 254 38.1) (xy 265.43 38.1))
  3736. (stroke (width 0) (type default) (color 0 0 0 0))
  3737. (uuid 4e677390-a246-4ca0-954c-746e0870f88f)
  3738. )
  3739. (wire (pts (xy 162.56 115.57) (xy 162.56 116.84))
  3740. (stroke (width 0) (type default) (color 0 0 0 0))
  3741. (uuid 4fa74df1-ebd8-46ed-bf5b-d6c582baafde)
  3742. )
  3743. (wire (pts (xy 154.94 100.33) (xy 154.94 107.95))
  3744. (stroke (width 0) (type default) (color 0 0 0 0))
  3745. (uuid 52a8f1be-73ca-41a8-bc24-2320706b0ec1)
  3746. )
  3747. (wire (pts (xy 139.7 26.67) (xy 139.7 27.94))
  3748. (stroke (width 0) (type default) (color 0 0 0 0))
  3749. (uuid 53719fc4-141e-4c58-98cd-ab3bf9a4e1c0)
  3750. )
  3751. (wire (pts (xy 270.51 68.58) (xy 274.32 68.58))
  3752. (stroke (width 0) (type default) (color 0 0 0 0))
  3753. (uuid 54ed3ee1-891b-418e-ab9c-6a18747d7388)
  3754. )
  3755. (wire (pts (xy 31.75 152.4) (xy 21.59 152.4))
  3756. (stroke (width 0) (type default) (color 0 0 0 0))
  3757. (uuid 5576cd03-3bad-40c5-9316-1d286895d52a)
  3758. )
  3759. (wire (pts (xy 144.78 165.1) (xy 147.32 165.1))
  3760. (stroke (width 0) (type default) (color 0 0 0 0))
  3761. (uuid 559e1426-1fb6-47d1-a873-ab4aaa368ae6)
  3762. )
  3763. (bus (pts (xy 19.05 76.2) (xy 19.05 78.74))
  3764. (stroke (width 0) (type default) (color 0 0 0 0))
  3765. (uuid 56b1134b-0f27-4e3d-8fb4-1111f9c33c1a)
  3766. )
  3767. (bus (pts (xy 191.77 97.79) (xy 191.77 100.33))
  3768. (stroke (width 0) (type default) (color 0 0 0 0))
  3769. (uuid 574d5882-6893-4ffd-94a6-b3195bea031a)
  3770. )
  3771. (wire (pts (xy 111.76 31.75) (xy 109.22 31.75))
  3772. (stroke (width 0) (type default) (color 0 0 0 0))
  3773. (uuid 57543893-39bf-4d83-b4e0-8d020b4a6d48)
  3774. )
  3775. (bus (pts (xy 251.46 81.28) (xy 251.46 85.09))
  3776. (stroke (width 0) (type default) (color 0 0 0 0))
  3777. (uuid 57578e03-2e53-4877-944b-f4c3284d1e06)
  3778. )
  3779. (wire (pts (xy 274.32 97.79) (xy 274.32 92.71))
  3780. (stroke (width 0) (type default) (color 0 0 0 0))
  3781. (uuid 58126faf-01a4-4f91-8e8c-ca9e47b48048)
  3782. )
  3783. (wire (pts (xy 254 83.82) (xy 265.43 83.82))
  3784. (stroke (width 0) (type default) (color 0 0 0 0))
  3785. (uuid 58cc7831-f944-4d33-8c61-2fd5bebc61e0)
  3786. )
  3787. (wire (pts (xy 111.76 99.06) (xy 111.76 101.6))
  3788. (stroke (width 0) (type default) (color 0 0 0 0))
  3789. (uuid 5a498b94-152d-4c3c-b168-67379cce2165)
  3790. )
  3791. (bus (pts (xy 251.46 34.29) (xy 251.46 35.56))
  3792. (stroke (width 0) (type default) (color 0 0 0 0))
  3793. (uuid 5b244179-97d5-493d-b78d-928a3ae4986d)
  3794. )
  3795. (wire (pts (xy 167.64 20.32) (xy 167.64 21.59))
  3796. (stroke (width 0) (type default) (color 0 0 0 0))
  3797. (uuid 5b70b09b-6762-4725-9d48-805300c0bdc8)
  3798. )
  3799. (wire (pts (xy 21.59 93.98) (xy 31.75 93.98))
  3800. (stroke (width 0) (type default) (color 0 0 0 0))
  3801. (uuid 5bab6a37-1fdf-4cf8-b571-44c962ed86e9)
  3802. )
  3803. (bus (pts (xy 251.46 64.77) (xy 251.46 66.04))
  3804. (stroke (width 0) (type default) (color 0 0 0 0))
  3805. (uuid 5bc20085-820e-47c8-ab7c-3ba772cda985)
  3806. )
  3807. (wire (pts (xy 175.26 80.01) (xy 176.53 80.01))
  3808. (stroke (width 0) (type default) (color 0 0 0 0))
  3809. (uuid 5c72c984-d4a8-4f48-9a7a-2aa9b6284609)
  3810. )
  3811. (bus (pts (xy 19.05 124.46) (xy 19.05 144.78))
  3812. (stroke (width 0) (type default) (color 0 0 0 0))
  3813. (uuid 5dae91a7-20b6-4a19-9963-e132bc1adbec)
  3814. )
  3815. (wire (pts (xy 157.48 125.73) (xy 162.56 125.73))
  3816. (stroke (width 0) (type default) (color 0 0 0 0))
  3817. (uuid 5e34b255-874b-4b5f-a1f3-79e323d9278a)
  3818. )
  3819. (wire (pts (xy 111.76 76.2) (xy 111.76 78.74))
  3820. (stroke (width 0) (type default) (color 0 0 0 0))
  3821. (uuid 5f2e9c21-b36e-4432-b901-39c98c054570)
  3822. )
  3823. (wire (pts (xy 128.27 101.6) (xy 130.81 101.6))
  3824. (stroke (width 0) (type default) (color 0 0 0 0))
  3825. (uuid 5fe9a8c1-579e-4b33-a28f-2287de31bc8f)
  3826. )
  3827. (wire (pts (xy 111.76 86.36) (xy 115.57 86.36))
  3828. (stroke (width 0) (type default) (color 0 0 0 0))
  3829. (uuid 6123de74-e7fc-4738-8ff4-abd5233ea3f0)
  3830. )
  3831. (wire (pts (xy 175.26 82.55) (xy 176.53 82.55))
  3832. (stroke (width 0) (type default) (color 0 0 0 0))
  3833. (uuid 61447001-96f3-4ac4-a932-91f733b21544)
  3834. )
  3835. (wire (pts (xy 21.59 83.82) (xy 31.75 83.82))
  3836. (stroke (width 0) (type default) (color 0 0 0 0))
  3837. (uuid 6150c02b-beb5-4af1-951e-3666a285a6ea)
  3838. )
  3839. (wire (pts (xy 175.26 102.87) (xy 176.53 102.87))
  3840. (stroke (width 0) (type default) (color 0 0 0 0))
  3841. (uuid 620d0d18-5248-4410-bb06-dea084235707)
  3842. )
  3843. (wire (pts (xy 158.75 72.39) (xy 162.56 72.39))
  3844. (stroke (width 0) (type default) (color 0 0 0 0))
  3845. (uuid 62e8c4d4-266c-4e53-8981-1028251d724c)
  3846. )
  3847. (wire (pts (xy 274.32 48.26) (xy 270.51 48.26))
  3848. (stroke (width 0) (type default) (color 0 0 0 0))
  3849. (uuid 631c7be5-8dc2-4df4-ab73-737bb928e763)
  3850. )
  3851. (wire (pts (xy 143.51 102.87) (xy 143.51 105.41))
  3852. (stroke (width 0) (type default) (color 0 0 0 0))
  3853. (uuid 633292d3-80c5-4986-be82-ce926e9f09f4)
  3854. )
  3855. (wire (pts (xy 158.75 100.33) (xy 158.75 97.79))
  3856. (stroke (width 0) (type default) (color 0 0 0 0))
  3857. (uuid 63489ebf-0f52-43a6-a0ab-158b1a7d4988)
  3858. )
  3859. (wire (pts (xy 254 27.94) (xy 265.43 27.94))
  3860. (stroke (width 0) (type default) (color 0 0 0 0))
  3861. (uuid 637e9edf-ffed-49a2-8408-fa110c9a4c79)
  3862. )
  3863. (wire (pts (xy 226.06 77.47) (xy 227.33 77.47))
  3864. (stroke (width 0) (type default) (color 0 0 0 0))
  3865. (uuid 643a0e14-1c81-4883-9037-039c243acc5c)
  3866. )
  3867. (wire (pts (xy 111.76 50.8) (xy 115.57 50.8))
  3868. (stroke (width 0) (type default) (color 0 0 0 0))
  3869. (uuid 649fe687-776d-40a8-8956-cf56be8678e1)
  3870. )
  3871. (wire (pts (xy 236.22 153.67) (xy 251.46 153.67))
  3872. (stroke (width 0) (type default) (color 0 0 0 0))
  3873. (uuid 64d1d0fe-4fd6-4a55-8314-56a651e1ccab)
  3874. )
  3875. (wire (pts (xy 175.26 74.93) (xy 176.53 74.93))
  3876. (stroke (width 0) (type default) (color 0 0 0 0))
  3877. (uuid 663516d2-919a-4a92-bdfb-fab0b7a33e92)
  3878. )
  3879. (wire (pts (xy 175.26 97.79) (xy 189.23 97.79))
  3880. (stroke (width 0) (type default) (color 0 0 0 0))
  3881. (uuid 66ca01b3-51ff-4294-9b77-4492e98f6aec)
  3882. )
  3883. (wire (pts (xy 128.27 66.04) (xy 130.81 66.04))
  3884. (stroke (width 0) (type default) (color 0 0 0 0))
  3885. (uuid 6807b074-032b-4c51-b22d-e941de673402)
  3886. )
  3887. (wire (pts (xy 24.13 175.26) (xy 26.67 175.26))
  3888. (stroke (width 0) (type default) (color 0 0 0 0))
  3889. (uuid 68191023-0d18-4f99-a293-00db5ad9e7a0)
  3890. )
  3891. (wire (pts (xy 111.76 91.44) (xy 111.76 93.98))
  3892. (stroke (width 0) (type default) (color 0 0 0 0))
  3893. (uuid 6823c850-9a49-4624-92ab-0fa22f6fef1e)
  3894. )
  3895. (wire (pts (xy 128.27 58.42) (xy 130.81 58.42))
  3896. (stroke (width 0) (type default) (color 0 0 0 0))
  3897. (uuid 692165ae-3334-4d40-a34f-38277ee462be)
  3898. )
  3899. (wire (pts (xy 254 68.58) (xy 265.43 68.58))
  3900. (stroke (width 0) (type default) (color 0 0 0 0))
  3901. (uuid 6ae963fb-e34f-4e11-9adf-78839a5b2ef1)
  3902. )
  3903. (wire (pts (xy 158.75 72.39) (xy 158.75 74.93))
  3904. (stroke (width 0) (type default) (color 0 0 0 0))
  3905. (uuid 6b91a3ee-fdcd-4bfe-ad57-c8d5ea9903a8)
  3906. )
  3907. (wire (pts (xy 242.57 118.11) (xy 248.92 118.11))
  3908. (stroke (width 0) (type default) (color 0 0 0 0))
  3909. (uuid 6bd46644-7209-4d4d-acd8-f4c0d045bc61)
  3910. )
  3911. (wire (pts (xy 274.32 43.18) (xy 274.32 48.26))
  3912. (stroke (width 0) (type default) (color 0 0 0 0))
  3913. (uuid 6d2a06fb-0b1e-452a-ab38-11a5f45e1b32)
  3914. )
  3915. (wire (pts (xy 156.21 170.18) (xy 158.75 170.18))
  3916. (stroke (width 0) (type default) (color 0 0 0 0))
  3917. (uuid 6f5a9f10-1b2c-4916-b4e5-cb5bd0f851a0)
  3918. )
  3919. (wire (pts (xy 175.26 105.41) (xy 189.23 105.41))
  3920. (stroke (width 0) (type default) (color 0 0 0 0))
  3921. (uuid 6ff9bb63-d6fd-4e32-bb60-7ac65509c2e9)
  3922. )
  3923. (wire (pts (xy 31.75 78.74) (xy 21.59 78.74))
  3924. (stroke (width 0) (type default) (color 0 0 0 0))
  3925. (uuid 706c1cb9-5d96-4282-9efc-6147f0125147)
  3926. )
  3927. (wire (pts (xy 226.06 57.15) (xy 227.33 57.15))
  3928. (stroke (width 0) (type default) (color 0 0 0 0))
  3929. (uuid 709b97c7-c0c7-478c-bd89-4135c69c0161)
  3930. )
  3931. (wire (pts (xy 24.13 187.96) (xy 26.67 187.96))
  3932. (stroke (width 0) (type default) (color 0 0 0 0))
  3933. (uuid 70a2e356-245d-4d32-a1fc-9371f952d347)
  3934. )
  3935. (wire (pts (xy 236.22 151.13) (xy 236.22 153.67))
  3936. (stroke (width 0) (type default) (color 0 0 0 0))
  3937. (uuid 70cda344-73be-4466-a097-1fd56f3b19e2)
  3938. )
  3939. (wire (pts (xy 128.27 60.96) (xy 130.81 60.96))
  3940. (stroke (width 0) (type default) (color 0 0 0 0))
  3941. (uuid 71deed4a-3525-41c7-864c-419bd64a18d8)
  3942. )
  3943. (wire (pts (xy 217.17 138.43) (xy 227.33 138.43))
  3944. (stroke (width 0) (type default) (color 0 0 0 0))
  3945. (uuid 71ee0878-3a21-46c5-9585-084073e61e46)
  3946. )
  3947. (wire (pts (xy 162.56 97.79) (xy 158.75 97.79))
  3948. (stroke (width 0) (type default) (color 0 0 0 0))
  3949. (uuid 71f8d568-0f23-4ff2-8e60-1600ce517a48)
  3950. )
  3951. (wire (pts (xy 54.61 88.9) (xy 66.04 88.9))
  3952. (stroke (width 0) (type default) (color 0 0 0 0))
  3953. (uuid 722636b6-8ff0-452f-9357-23deb317d921)
  3954. )
  3955. (wire (pts (xy 54.61 111.76) (xy 55.88 111.76))
  3956. (stroke (width 0) (type default) (color 0 0 0 0))
  3957. (uuid 7273dd21-e834-41d3-b279-d7de727709ca)
  3958. )
  3959. (wire (pts (xy 111.76 78.74) (xy 111.76 81.28))
  3960. (stroke (width 0) (type default) (color 0 0 0 0))
  3961. (uuid 732adcdb-5400-4b48-b390-9c07efe3787d)
  3962. )
  3963. (wire (pts (xy 111.76 68.58) (xy 111.76 71.12))
  3964. (stroke (width 0) (type default) (color 0 0 0 0))
  3965. (uuid 73c09a8e-334a-415d-8fcf-2f80e5530386)
  3966. )
  3967. (wire (pts (xy 254 48.26) (xy 265.43 48.26))
  3968. (stroke (width 0) (type default) (color 0 0 0 0))
  3969. (uuid 73ee7e03-97a8-4121-b568-c25f3934a935)
  3970. )
  3971. (wire (pts (xy 162.56 77.47) (xy 158.75 77.47))
  3972. (stroke (width 0) (type default) (color 0 0 0 0))
  3973. (uuid 74f5ec08-7600-4a0b-a9e4-aae29f9ea08a)
  3974. )
  3975. (wire (pts (xy 270.51 58.42) (xy 274.32 58.42))
  3976. (stroke (width 0) (type default) (color 0 0 0 0))
  3977. (uuid 751d823e-1d7b-4501-9658-d06d459b0e16)
  3978. )
  3979. (wire (pts (xy 111.76 58.42) (xy 111.76 60.96))
  3980. (stroke (width 0) (type default) (color 0 0 0 0))
  3981. (uuid 7555990b-6425-4e86-89df-79d641461153)
  3982. )
  3983. (wire (pts (xy 158.75 85.09) (xy 158.75 82.55))
  3984. (stroke (width 0) (type default) (color 0 0 0 0))
  3985. (uuid 759788bd-3cb9-4d38-b58c-5cb10b7dca6b)
  3986. )
  3987. (wire (pts (xy 143.51 97.79) (xy 158.75 97.79))
  3988. (stroke (width 0) (type default) (color 0 0 0 0))
  3989. (uuid 7744b6ee-910d-401d-b730-65c35d3d8092)
  3990. )
  3991. (wire (pts (xy 111.76 45.72) (xy 111.76 48.26))
  3992. (stroke (width 0) (type default) (color 0 0 0 0))
  3993. (uuid 79418ab7-d09c-4c13-9426-59e88a9a6e18)
  3994. )
  3995. (wire (pts (xy 111.76 68.58) (xy 115.57 68.58))
  3996. (stroke (width 0) (type default) (color 0 0 0 0))
  3997. (uuid 7ad6872e-544b-496c-b63f-ef820d73efe1)
  3998. )
  3999. (wire (pts (xy 158.75 97.79) (xy 158.75 95.25))
  4000. (stroke (width 0) (type default) (color 0 0 0 0))
  4001. (uuid 7c00778a-4692-4f9b-87d5-2d355077ce1e)
  4002. )
  4003. (bus (pts (xy 251.46 21.59) (xy 251.46 25.4))
  4004. (stroke (width 0) (type default) (color 0 0 0 0))
  4005. (uuid 7c6e532b-1afd-48d4-9389-2942dcbc7c3c)
  4006. )
  4007. (wire (pts (xy 110.49 121.92) (xy 110.49 151.13))
  4008. (stroke (width 0) (type default) (color 0 0 0 0))
  4009. (uuid 7d8af909-893b-485f-9682-d51cea81cf8a)
  4010. )
  4011. (wire (pts (xy 158.75 102.87) (xy 158.75 100.33))
  4012. (stroke (width 0) (type default) (color 0 0 0 0))
  4013. (uuid 7db990e4-92e1-4f99-b4d2-435bbec1ba83)
  4014. )
  4015. (wire (pts (xy 128.27 76.2) (xy 130.81 76.2))
  4016. (stroke (width 0) (type default) (color 0 0 0 0))
  4017. (uuid 7e4acdae-bb82-4c28-bdbc-521d32bd98f8)
  4018. )
  4019. (bus (pts (xy 251.46 45.72) (xy 251.46 50.8))
  4020. (stroke (width 0) (type default) (color 0 0 0 0))
  4021. (uuid 7eddabae-9934-4cfd-a7c8-ccfc3e95f822)
  4022. )
  4023. (wire (pts (xy 110.49 151.13) (xy 165.1 151.13))
  4024. (stroke (width 0) (type default) (color 0 0 0 0))
  4025. (uuid 7f32685a-40c9-41a7-8dab-b6ab4c5c3545)
  4026. )
  4027. (wire (pts (xy 79.756 111.76) (xy 81.28 111.76))
  4028. (stroke (width 0) (type default) (color 0 0 0 0))
  4029. (uuid 7f896033-7144-41bd-b21d-db4128e258fd)
  4030. )
  4031. (wire (pts (xy 264.16 148.59) (xy 266.7 148.59))
  4032. (stroke (width 0) (type default) (color 0 0 0 0))
  4033. (uuid 80f8c1b4-10dd-40fe-b7f7-67988bc3ad81)
  4034. )
  4035. (bus (pts (xy 19.05 149.86) (xy 19.05 160.02))
  4036. (stroke (width 0) (type default) (color 0 0 0 0))
  4037. (uuid 81316926-3139-42f8-a6c1-e9035c1142be)
  4038. )
  4039. (wire (pts (xy 111.76 66.04) (xy 115.57 66.04))
  4040. (stroke (width 0) (type default) (color 0 0 0 0))
  4041. (uuid 81942b2b-e9f9-4911-a8e1-de17115edd34)
  4042. )
  4043. (wire (pts (xy 226.06 36.83) (xy 227.33 36.83))
  4044. (stroke (width 0) (type default) (color 0 0 0 0))
  4045. (uuid 830f705c-6254-4bfd-97c9-b4a49db1c87a)
  4046. )
  4047. (wire (pts (xy 111.76 60.96) (xy 115.57 60.96))
  4048. (stroke (width 0) (type default) (color 0 0 0 0))
  4049. (uuid 83a028cb-daf6-43c6-bb0d-a9bb6cd2a863)
  4050. )
  4051. (bus (pts (xy 19.05 68.58) (xy 68.58 68.58))
  4052. (stroke (width 0) (type default) (color 0 0 0 0))
  4053. (uuid 83e349fb-6338-43f9-ad3f-2e7f4b8bb4a9)
  4054. )
  4055. (wire (pts (xy 189.23 20.32) (xy 189.23 21.59))
  4056. (stroke (width 0) (type default) (color 0 0 0 0))
  4057. (uuid 843b53af-dd34-4db8-aa6b-5035b25affc7)
  4058. )
  4059. (wire (pts (xy 162.56 129.54) (xy 162.56 125.73))
  4060. (stroke (width 0) (type default) (color 0 0 0 0))
  4061. (uuid 84544935-1faf-4126-88f6-e96cd0681253)
  4062. )
  4063. (wire (pts (xy 111.76 81.28) (xy 115.57 81.28))
  4064. (stroke (width 0) (type default) (color 0 0 0 0))
  4065. (uuid 84eb08f1-0a1f-4d6f-8c5c-d15a819ccdd5)
  4066. )
  4067. (wire (pts (xy 218.44 153.67) (xy 219.71 153.67))
  4068. (stroke (width 0) (type default) (color 0 0 0 0))
  4069. (uuid 85ccc615-869a-4036-82a2-a7ac8bd5531a)
  4070. )
  4071. (wire (pts (xy 139.7 20.32) (xy 139.7 21.59))
  4072. (stroke (width 0) (type default) (color 0 0 0 0))
  4073. (uuid 8765371a-21c2-4fe3-a3af-88f5eb1f02a0)
  4074. )
  4075. (wire (pts (xy 254 63.5) (xy 265.43 63.5))
  4076. (stroke (width 0) (type default) (color 0 0 0 0))
  4077. (uuid 87ba184f-bff5-4989-8217-6af375cc3dd8)
  4078. )
  4079. (wire (pts (xy 111.76 99.06) (xy 115.57 99.06))
  4080. (stroke (width 0) (type default) (color 0 0 0 0))
  4081. (uuid 87d21a28-f5ce-4361-b5cf-47858dfef8d8)
  4082. )
  4083. (wire (pts (xy 264.16 146.05) (xy 266.7 146.05))
  4084. (stroke (width 0) (type default) (color 0 0 0 0))
  4085. (uuid 883105b0-f6a6-466b-ba58-a2fcc1f18e4b)
  4086. )
  4087. (wire (pts (xy 54.61 86.36) (xy 66.04 86.36))
  4088. (stroke (width 0) (type default) (color 0 0 0 0))
  4089. (uuid 88deea08-baa5-4041-beb7-01c299cf00e6)
  4090. )
  4091. (bus (pts (xy 251.46 71.12) (xy 251.46 74.93))
  4092. (stroke (width 0) (type default) (color 0 0 0 0))
  4093. (uuid 899be28b-7a34-4339-b62b-c2063cb92da2)
  4094. )
  4095. (wire (pts (xy 146.05 167.64) (xy 147.32 167.64))
  4096. (stroke (width 0) (type default) (color 0 0 0 0))
  4097. (uuid 8a31a6e8-de50-46d8-9f88-57e4d3d98a89)
  4098. )
  4099. (bus (pts (xy 49.53 173.99) (xy 64.77 173.99))
  4100. (stroke (width 0) (type default) (color 0 0 0 0))
  4101. (uuid 8a5d3cc0-5e58-4772-b8ed-616d461ac222)
  4102. )
  4103. (wire (pts (xy 104.14 121.92) (xy 110.49 121.92))
  4104. (stroke (width 0) (type default) (color 0 0 0 0))
  4105. (uuid 8a8ab9d8-b8d7-4bb4-a217-42d273c00eb7)
  4106. )
  4107. (wire (pts (xy 274.32 63.5) (xy 274.32 58.42))
  4108. (stroke (width 0) (type default) (color 0 0 0 0))
  4109. (uuid 8a8c373f-9bc3-4cf7-8f41-4802da916698)
  4110. )
  4111. (bus (pts (xy 19.05 147.32) (xy 19.05 149.86))
  4112. (stroke (width 0) (type default) (color 0 0 0 0))
  4113. (uuid 8ab22013-b232-4779-af3c-aa499c27d6e8)
  4114. )
  4115. (bus (pts (xy 19.05 93.98) (xy 19.05 119.38))
  4116. (stroke (width 0) (type default) (color 0 0 0 0))
  4117. (uuid 8c11ed6a-5b1c-4882-88dd-dbaf4db6903e)
  4118. )
  4119. (wire (pts (xy 107.95 39.37) (xy 107.95 36.83))
  4120. (stroke (width 0) (type default) (color 0 0 0 0))
  4121. (uuid 8cb5a828-8cef-4784-b78d-175b49646952)
  4122. )
  4123. (bus (pts (xy 191.77 72.39) (xy 191.77 74.93))
  4124. (stroke (width 0) (type default) (color 0 0 0 0))
  4125. (uuid 8cc561d7-e45e-4b28-aa41-37d898f4efec)
  4126. )
  4127. (wire (pts (xy 115.57 45.72) (xy 111.76 45.72))
  4128. (stroke (width 0) (type default) (color 0 0 0 0))
  4129. (uuid 8eaf6a06-4675-4396-80ad-3f0aec3cf44d)
  4130. )
  4131. (wire (pts (xy 111.76 93.98) (xy 111.76 96.52))
  4132. (stroke (width 0) (type default) (color 0 0 0 0))
  4133. (uuid 8f73769d-d6ee-4481-af51-f24a2b202099)
  4134. )
  4135. (wire (pts (xy 157.48 167.64) (xy 158.75 167.64))
  4136. (stroke (width 0) (type default) (color 0 0 0 0))
  4137. (uuid 8ff8ff6e-d217-46cc-b48c-9a03cdac2032)
  4138. )
  4139. (wire (pts (xy 24.13 182.88) (xy 26.67 182.88))
  4140. (stroke (width 0) (type default) (color 0 0 0 0))
  4141. (uuid 90358cb2-bdb6-48de-8f7b-fde76fb4cd36)
  4142. )
  4143. (wire (pts (xy 111.76 50.8) (xy 111.76 53.34))
  4144. (stroke (width 0) (type default) (color 0 0 0 0))
  4145. (uuid 911422e1-2c1b-4b48-98bf-1cfa390d5967)
  4146. )
  4147. (wire (pts (xy 111.76 83.82) (xy 111.76 86.36))
  4148. (stroke (width 0) (type default) (color 0 0 0 0))
  4149. (uuid 915cd6f0-d23f-4be4-a6bd-9624a37012b0)
  4150. )
  4151. (bus (pts (xy 191.77 74.93) (xy 191.77 97.79))
  4152. (stroke (width 0) (type default) (color 0 0 0 0))
  4153. (uuid 91d05fa9-0568-4355-88b3-b170f82535a9)
  4154. )
  4155. (wire (pts (xy 71.12 116.84) (xy 81.28 116.84))
  4156. (stroke (width 0) (type default) (color 0 0 0 0))
  4157. (uuid 9208ea78-8dde-4b3d-91e9-5755ab5efd9a)
  4158. )
  4159. (wire (pts (xy 270.51 63.5) (xy 274.32 63.5))
  4160. (stroke (width 0) (type default) (color 0 0 0 0))
  4161. (uuid 92761c09-a591-4c8e-af4d-e0e2262cb01d)
  4162. )
  4163. (wire (pts (xy 31.75 86.36) (xy 21.59 86.36))
  4164. (stroke (width 0) (type default) (color 0 0 0 0))
  4165. (uuid 93ac15d8-5f91-4361-acff-be4992b93b51)
  4166. )
  4167. (wire (pts (xy 24.13 177.8) (xy 26.67 177.8))
  4168. (stroke (width 0) (type default) (color 0 0 0 0))
  4169. (uuid 94dbbf07-776e-489c-bf10-aad9fddb4b70)
  4170. )
  4171. (wire (pts (xy 175.26 67.31) (xy 176.53 67.31))
  4172. (stroke (width 0) (type default) (color 0 0 0 0))
  4173. (uuid 9628da2d-251a-42dd-b606-c284cad02d89)
  4174. )
  4175. (wire (pts (xy 21.59 149.86) (xy 31.75 149.86))
  4176. (stroke (width 0) (type default) (color 0 0 0 0))
  4177. (uuid 966ee9ec-860e-45bb-af89-30bda72b2032)
  4178. )
  4179. (wire (pts (xy 54.61 81.28) (xy 66.04 81.28))
  4180. (stroke (width 0) (type default) (color 0 0 0 0))
  4181. (uuid 968a6172-7a4e-40ab-a78a-e4d03671e136)
  4182. )
  4183. (wire (pts (xy 111.76 53.34) (xy 115.57 53.34))
  4184. (stroke (width 0) (type default) (color 0 0 0 0))
  4185. (uuid 96aa2b8a-4424-4fb9-8558-aee17effda2c)
  4186. )
  4187. (bus (pts (xy 251.46 66.04) (xy 251.46 71.12))
  4188. (stroke (width 0) (type default) (color 0 0 0 0))
  4189. (uuid 96d68340-9a9f-4169-b6ba-05f62d551cc4)
  4190. )
  4191. (bus (pts (xy 49.53 176.53) (xy 64.77 176.53))
  4192. (stroke (width 0) (type default) (color 0 0 0 0))
  4193. (uuid 9710ec47-7e55-45b4-abed-e335e0b81e28)
  4194. )
  4195. (wire (pts (xy 217.17 128.27) (xy 227.33 128.27))
  4196. (stroke (width 0) (type default) (color 0 0 0 0))
  4197. (uuid 974c48bf-534e-4335-98e1-b0426c783e99)
  4198. )
  4199. (wire (pts (xy 158.75 95.25) (xy 158.75 92.71))
  4200. (stroke (width 0) (type default) (color 0 0 0 0))
  4201. (uuid 97581b9a-3f6b-4e88-8768-6fdb60e6aca6)
  4202. )
  4203. (wire (pts (xy 128.27 96.52) (xy 130.81 96.52))
  4204. (stroke (width 0) (type default) (color 0 0 0 0))
  4205. (uuid 98840b25-f2e8-4b5f-abb6-8c14da6c0152)
  4206. )
  4207. (wire (pts (xy 226.06 97.79) (xy 227.33 97.79))
  4208. (stroke (width 0) (type default) (color 0 0 0 0))
  4209. (uuid 9a7dc00e-0d3f-4329-ac3d-e2f4d39382c9)
  4210. )
  4211. (wire (pts (xy 107.95 36.83) (xy 111.76 36.83))
  4212. (stroke (width 0) (type default) (color 0 0 0 0))
  4213. (uuid 9bb406d9-c650-4e67-9a26-3195d4de542e)
  4214. )
  4215. (wire (pts (xy 111.76 55.88) (xy 115.57 55.88))
  4216. (stroke (width 0) (type default) (color 0 0 0 0))
  4217. (uuid 9bd4c0f8-c3c0-4d90-8fbb-f0f029ee301b)
  4218. )
  4219. (wire (pts (xy 21.59 81.28) (xy 31.75 81.28))
  4220. (stroke (width 0) (type default) (color 0 0 0 0))
  4221. (uuid 9c2999b2-1cf1-4204-9d23-243401b77aa3)
  4222. )
  4223. (bus (pts (xy 251.46 35.56) (xy 251.46 40.64))
  4224. (stroke (width 0) (type default) (color 0 0 0 0))
  4225. (uuid 9d6062dd-fd08-44d6-b6dd-d45c05a42051)
  4226. )
  4227. (wire (pts (xy 274.32 27.94) (xy 270.51 27.94))
  4228. (stroke (width 0) (type default) (color 0 0 0 0))
  4229. (uuid 9da1ace0-4181-4f12-80f8-16786a9e5c07)
  4230. )
  4231. (wire (pts (xy 242.57 87.63) (xy 248.92 87.63))
  4232. (stroke (width 0) (type default) (color 0 0 0 0))
  4233. (uuid 9db16341-dac0-4aab-9c62-7d88c111c1ce)
  4234. )
  4235. (bus (pts (xy 251.46 115.57) (xy 251.46 125.73))
  4236. (stroke (width 0) (type default) (color 0 0 0 0))
  4237. (uuid 9db85383-a03f-4209-a928-87be53d1e345)
  4238. )
  4239. (wire (pts (xy 270.51 97.79) (xy 274.32 97.79))
  4240. (stroke (width 0) (type default) (color 0 0 0 0))
  4241. (uuid 9e136ac4-5d28-4814-9ebf-c30c372bc2ec)
  4242. )
  4243. (wire (pts (xy 254 92.71) (xy 265.43 92.71))
  4244. (stroke (width 0) (type default) (color 0 0 0 0))
  4245. (uuid 9e2492fd-e074-42db-8129-fe39460dc1e0)
  4246. )
  4247. (bus (pts (xy 251.46 44.45) (xy 251.46 45.72))
  4248. (stroke (width 0) (type default) (color 0 0 0 0))
  4249. (uuid 9ef45ec8-740d-4a58-b716-2638313c28e8)
  4250. )
  4251. (bus (pts (xy 19.05 83.82) (xy 19.05 91.44))
  4252. (stroke (width 0) (type default) (color 0 0 0 0))
  4253. (uuid 9f0af3e4-5b9a-4e92-a459-772389cb956f)
  4254. )
  4255. (bus (pts (xy 19.05 81.28) (xy 19.05 83.82))
  4256. (stroke (width 0) (type default) (color 0 0 0 0))
  4257. (uuid a0780bef-3115-4bff-b13e-1b43b4e3ddfe)
  4258. )
  4259. (wire (pts (xy 29.972 139.7) (xy 31.75 139.7))
  4260. (stroke (width 0) (type default) (color 0 0 0 0))
  4261. (uuid a1a5f77e-d865-42f1-9d75-c27e95794088)
  4262. )
  4263. (wire (pts (xy 175.26 72.39) (xy 189.23 72.39))
  4264. (stroke (width 0) (type default) (color 0 0 0 0))
  4265. (uuid a239fd1d-dfbb-49fd-b565-8c3de9dcf42b)
  4266. )
  4267. (bus (pts (xy 251.46 74.93) (xy 251.46 76.2))
  4268. (stroke (width 0) (type default) (color 0 0 0 0))
  4269. (uuid a33b5e77-b2fb-4a35-b3ba-f69d7686e9c2)
  4270. )
  4271. (wire (pts (xy 162.56 92.71) (xy 158.75 92.71))
  4272. (stroke (width 0) (type default) (color 0 0 0 0))
  4273. (uuid a5c8e189-1ddc-4a66-984b-e0fd1529d346)
  4274. )
  4275. (wire (pts (xy 111.76 48.26) (xy 111.76 50.8))
  4276. (stroke (width 0) (type default) (color 0 0 0 0))
  4277. (uuid a7688449-9952-4584-8101-9ab6d851dcd2)
  4278. )
  4279. (bus (pts (xy 19.05 121.92) (xy 19.05 124.46))
  4280. (stroke (width 0) (type default) (color 0 0 0 0))
  4281. (uuid a7da70c2-b38c-438f-b225-c108efb448cd)
  4282. )
  4283. (wire (pts (xy 226.06 87.63) (xy 227.33 87.63))
  4284. (stroke (width 0) (type default) (color 0 0 0 0))
  4285. (uuid a81c142a-a1f2-4334-bd16-60dba1bd4309)
  4286. )
  4287. (wire (pts (xy 175.26 64.77) (xy 176.53 64.77))
  4288. (stroke (width 0) (type default) (color 0 0 0 0))
  4289. (uuid a9c5e8cb-7e6c-477b-a602-f739a18c5503)
  4290. )
  4291. (wire (pts (xy 128.27 68.58) (xy 130.81 68.58))
  4292. (stroke (width 0) (type default) (color 0 0 0 0))
  4293. (uuid a9c73773-0e9e-46cb-a0a7-3f1b8d377e9e)
  4294. )
  4295. (wire (pts (xy 242.57 46.99) (xy 248.92 46.99))
  4296. (stroke (width 0) (type default) (color 0 0 0 0))
  4297. (uuid aa047297-22f8-4de0-a969-0b3451b8e164)
  4298. )
  4299. (wire (pts (xy 204.47 92.71) (xy 217.17 92.71))
  4300. (stroke (width 0) (type default) (color 0 0 0 0))
  4301. (uuid aa1c6f47-cbd4-4cbd-8265-e5ac08b7ffc8)
  4302. )
  4303. (wire (pts (xy 144.78 170.18) (xy 144.78 172.72))
  4304. (stroke (width 0) (type default) (color 0 0 0 0))
  4305. (uuid aa48ec10-373c-4362-ad1d-b391c597316c)
  4306. )
  4307. (bus (pts (xy 251.46 105.41) (xy 251.46 110.49))
  4308. (stroke (width 0) (type default) (color 0 0 0 0))
  4309. (uuid aab77494-c4ba-4a75-887e-595d961a2f5a)
  4310. )
  4311. (bus (pts (xy 191.77 100.33) (xy 191.77 102.87))
  4312. (stroke (width 0) (type default) (color 0 0 0 0))
  4313. (uuid aafe5d1f-aa11-4c25-b001-4c7fe82a6dab)
  4314. )
  4315. (wire (pts (xy 242.57 67.31) (xy 248.92 67.31))
  4316. (stroke (width 0) (type default) (color 0 0 0 0))
  4317. (uuid ab8b0540-9c9f-4195-88f5-7bed0b0a8ed6)
  4318. )
  4319. (wire (pts (xy 111.76 96.52) (xy 115.57 96.52))
  4320. (stroke (width 0) (type default) (color 0 0 0 0))
  4321. (uuid abe306dd-1edd-4fdd-87f4-7ca5963c9ea7)
  4322. )
  4323. (wire (pts (xy 111.76 104.14) (xy 115.57 104.14))
  4324. (stroke (width 0) (type default) (color 0 0 0 0))
  4325. (uuid ac0380df-fedb-4df2-985d-2d7af79c1b50)
  4326. )
  4327. (wire (pts (xy 57.15 25.4) (xy 57.15 26.67))
  4328. (stroke (width 0) (type default) (color 0 0 0 0))
  4329. (uuid acb6c3f3-e677-4f35-9fc2-138ba10f33af)
  4330. )
  4331. (bus (pts (xy 251.46 50.8) (xy 251.46 54.61))
  4332. (stroke (width 0) (type default) (color 0 0 0 0))
  4333. (uuid accecafb-f0c6-421c-a053-5fb77ee80ae3)
  4334. )
  4335. (wire (pts (xy 271.78 151.13) (xy 271.78 160.02))
  4336. (stroke (width 0) (type default) (color 0 0 0 0))
  4337. (uuid adcbf4d0-ed9c-4c7d-b78f-3bcbe974bdcb)
  4338. )
  4339. (wire (pts (xy 24.13 180.34) (xy 26.67 180.34))
  4340. (stroke (width 0) (type default) (color 0 0 0 0))
  4341. (uuid aeaadbdf-86af-4f08-9da0-3d321e9b530e)
  4342. )
  4343. (wire (pts (xy 274.32 53.34) (xy 274.32 48.26))
  4344. (stroke (width 0) (type default) (color 0 0 0 0))
  4345. (uuid b21299b9-3c4d-43df-b399-7f9b08eb5470)
  4346. )
  4347. (wire (pts (xy 254 33.02) (xy 265.43 33.02))
  4348. (stroke (width 0) (type default) (color 0 0 0 0))
  4349. (uuid b456cffc-d9d7-4c91-91f2-36ec9a65dd1b)
  4350. )
  4351. (bus (pts (xy 251.46 40.64) (xy 251.46 44.45))
  4352. (stroke (width 0) (type default) (color 0 0 0 0))
  4353. (uuid b4ca85b3-6a90-4906-a492-8bef7d03002d)
  4354. )
  4355. (wire (pts (xy 204.47 156.21) (xy 205.74 156.21))
  4356. (stroke (width 0) (type default) (color 0 0 0 0))
  4357. (uuid b645d226-73c2-4fa2-99d4-8f77587b4ca2)
  4358. )
  4359. (wire (pts (xy 270.51 113.03) (xy 274.32 113.03))
  4360. (stroke (width 0) (type default) (color 0 0 0 0))
  4361. (uuid b7b00984-6ab1-482e-b4b4-67cac44d44da)
  4362. )
  4363. (wire (pts (xy 242.57 77.47) (xy 248.92 77.47))
  4364. (stroke (width 0) (type default) (color 0 0 0 0))
  4365. (uuid b7d06af4-a5b1-447f-9b1a-8b44eb1cc204)
  4366. )
  4367. (wire (pts (xy 175.26 95.25) (xy 189.23 95.25))
  4368. (stroke (width 0) (type default) (color 0 0 0 0))
  4369. (uuid b9d4de74-d246-495d-8b63-12ab2133d6d6)
  4370. )
  4371. (wire (pts (xy 158.75 82.55) (xy 158.75 80.01))
  4372. (stroke (width 0) (type default) (color 0 0 0 0))
  4373. (uuid bb59b92a-e4d0-4b9e-82cd-26304f5c15b8)
  4374. )
  4375. (bus (pts (xy 19.05 119.38) (xy 19.05 121.92))
  4376. (stroke (width 0) (type default) (color 0 0 0 0))
  4377. (uuid bc4d78c7-cfb7-470d-96b6-a4b223139f12)
  4378. )
  4379. (wire (pts (xy 111.76 93.98) (xy 115.57 93.98))
  4380. (stroke (width 0) (type default) (color 0 0 0 0))
  4381. (uuid bcd30c68-6a0c-4d48-b059-36bb89da1e79)
  4382. )
  4383. (wire (pts (xy 111.76 83.82) (xy 115.57 83.82))
  4384. (stroke (width 0) (type default) (color 0 0 0 0))
  4385. (uuid bd0dd8cc-2030-49e6-af9c-fd81a82f9d87)
  4386. )
  4387. (wire (pts (xy 158.75 74.93) (xy 162.56 74.93))
  4388. (stroke (width 0) (type default) (color 0 0 0 0))
  4389. (uuid bd793ae5-cde5-43f6-8def-1f95f35b1be6)
  4390. )
  4391. (bus (pts (xy 251.46 30.48) (xy 251.46 34.29))
  4392. (stroke (width 0) (type default) (color 0 0 0 0))
  4393. (uuid be038fc3-5eb3-4731-9a5f-154f54e46607)
  4394. )
  4395. (wire (pts (xy 242.57 107.95) (xy 248.92 107.95))
  4396. (stroke (width 0) (type default) (color 0 0 0 0))
  4397. (uuid befdfbe5-f3e5-423b-a34e-7bba3f218536)
  4398. )
  4399. (wire (pts (xy 111.76 63.5) (xy 111.76 66.04))
  4400. (stroke (width 0) (type default) (color 0 0 0 0))
  4401. (uuid bf48d325-aa3e-4b5d-9567-32fa56f5e35b)
  4402. )
  4403. (wire (pts (xy 57.15 40.64) (xy 57.15 43.18))
  4404. (stroke (width 0) (type default) (color 0 0 0 0))
  4405. (uuid bf8d857b-70bf-41ee-a068-5771461e04e9)
  4406. )
  4407. (bus (pts (xy 251.46 85.09) (xy 251.46 90.17))
  4408. (stroke (width 0) (type default) (color 0 0 0 0))
  4409. (uuid c12a6a42-8cb5-4069-8c97-ec644a3df054)
  4410. )
  4411. (wire (pts (xy 54.61 114.3) (xy 55.88 114.3))
  4412. (stroke (width 0) (type default) (color 0 0 0 0))
  4413. (uuid c15b2f75-2e10-4b71-bebb-e2b872171b92)
  4414. )
  4415. (wire (pts (xy 254 113.03) (xy 265.43 113.03))
  4416. (stroke (width 0) (type default) (color 0 0 0 0))
  4417. (uuid c20aea50-e9e4-4978-b938-d613d445aab7)
  4418. )
  4419. (wire (pts (xy 270.51 53.34) (xy 274.32 53.34))
  4420. (stroke (width 0) (type default) (color 0 0 0 0))
  4421. (uuid c210293b-1d7a-4e96-92e9-058784106727)
  4422. )
  4423. (wire (pts (xy 229.87 156.21) (xy 251.46 156.21))
  4424. (stroke (width 0) (type default) (color 0 0 0 0))
  4425. (uuid c2a9d834-7cb1-4ec5-b0ba-ae56215ff9fc)
  4426. )
  4427. (wire (pts (xy 128.27 63.5) (xy 130.81 63.5))
  4428. (stroke (width 0) (type default) (color 0 0 0 0))
  4429. (uuid c3c540e1-6789-4fb5-a7f3-e013ed58d2f0)
  4430. )
  4431. (wire (pts (xy 274.32 78.74) (xy 274.32 73.66))
  4432. (stroke (width 0) (type default) (color 0 0 0 0))
  4433. (uuid c3d5daf8-d359-42b2-a7c2-0d080ba7e212)
  4434. )
  4435. (bus (pts (xy 191.77 102.87) (xy 191.77 107.95))
  4436. (stroke (width 0) (type default) (color 0 0 0 0))
  4437. (uuid c45ff964-8483-4c3c-8a8b-859245cfc166)
  4438. )
  4439. (wire (pts (xy 111.76 53.34) (xy 111.76 55.88))
  4440. (stroke (width 0) (type default) (color 0 0 0 0))
  4441. (uuid c634a039-7d21-44f5-afe8-c31a95f913fa)
  4442. )
  4443. (wire (pts (xy 264.16 151.13) (xy 271.78 151.13))
  4444. (stroke (width 0) (type default) (color 0 0 0 0))
  4445. (uuid c6bba6d7-3631-448e-9df8-b5a9e3238ade)
  4446. )
  4447. (wire (pts (xy 158.75 92.71) (xy 158.75 90.17))
  4448. (stroke (width 0) (type default) (color 0 0 0 0))
  4449. (uuid c71f56c1-5b7c-4373-9716-fffac482104c)
  4450. )
  4451. (wire (pts (xy 162.56 64.77) (xy 158.75 64.77))
  4452. (stroke (width 0) (type default) (color 0 0 0 0))
  4453. (uuid c7df8431-dcf5-4ab4-b8f8-21c1cafc5246)
  4454. )
  4455. (wire (pts (xy 147.32 129.54) (xy 149.86 129.54))
  4456. (stroke (width 0) (type default) (color 0 0 0 0))
  4457. (uuid c8263b20-79fc-4839-a962-2f02144545a4)
  4458. )
  4459. (wire (pts (xy 229.87 151.13) (xy 229.87 156.21))
  4460. (stroke (width 0) (type default) (color 0 0 0 0))
  4461. (uuid c9badf80-21f8-404a-b5df-18e98bffebf9)
  4462. )
  4463. (wire (pts (xy 21.59 121.92) (xy 31.75 121.92))
  4464. (stroke (width 0) (type default) (color 0 0 0 0))
  4465. (uuid ca56e1ad-54bf-4df5-a4f7-99f5d61d0de9)
  4466. )
  4467. (wire (pts (xy 175.26 87.63) (xy 176.53 87.63))
  4468. (stroke (width 0) (type default) (color 0 0 0 0))
  4469. (uuid caec258f-08ad-4a14-a897-c865492c6866)
  4470. )
  4471. (wire (pts (xy 205.74 158.75) (xy 199.39 158.75))
  4472. (stroke (width 0) (type default) (color 0 0 0 0))
  4473. (uuid caecdfb7-ad32-4c62-85bf-e74b77cca81e)
  4474. )
  4475. (wire (pts (xy 111.76 63.5) (xy 115.57 63.5))
  4476. (stroke (width 0) (type default) (color 0 0 0 0))
  4477. (uuid cc82dc36-4024-423c-8da3-2d14d47e5181)
  4478. )
  4479. (wire (pts (xy 162.56 102.87) (xy 158.75 102.87))
  4480. (stroke (width 0) (type default) (color 0 0 0 0))
  4481. (uuid cd5e758d-cb66-484a-ae8b-21f53ceee49e)
  4482. )
  4483. (wire (pts (xy 162.56 125.73) (xy 162.56 121.92))
  4484. (stroke (width 0) (type default) (color 0 0 0 0))
  4485. (uuid ceaf7d3e-c900-458e-a1b1-b52da1114534)
  4486. )
  4487. (wire (pts (xy 30.48 104.14) (xy 31.75 104.14))
  4488. (stroke (width 0) (type default) (color 0 0 0 0))
  4489. (uuid ceb12634-32ca-4cbf-9ff5-5e8b53ab18ad)
  4490. )
  4491. (wire (pts (xy 175.26 92.71) (xy 201.93 92.71))
  4492. (stroke (width 0) (type default) (color 0 0 0 0))
  4493. (uuid cf21dfe3-ab4f-4ad9-b7cf-dc892d833b13)
  4494. )
  4495. (bus (pts (xy 251.46 100.33) (xy 251.46 105.41))
  4496. (stroke (width 0) (type default) (color 0 0 0 0))
  4497. (uuid cff9f71d-afc1-4fb6-8a01-5760e047edaa)
  4498. )
  4499. (wire (pts (xy 143.51 105.41) (xy 139.7 105.41))
  4500. (stroke (width 0) (type default) (color 0 0 0 0))
  4501. (uuid d0cd3439-276c-41ba-b38d-f84f6da38415)
  4502. )
  4503. (wire (pts (xy 111.76 76.2) (xy 115.57 76.2))
  4504. (stroke (width 0) (type default) (color 0 0 0 0))
  4505. (uuid d23f7535-a044-4247-95d7-457cdd1c122f)
  4506. )
  4507. (wire (pts (xy 226.06 107.95) (xy 227.33 107.95))
  4508. (stroke (width 0) (type default) (color 0 0 0 0))
  4509. (uuid d25b2628-ae11-499a-9364-d37bc176f51a)
  4510. )
  4511. (wire (pts (xy 156.21 170.18) (xy 156.21 172.72))
  4512. (stroke (width 0) (type default) (color 0 0 0 0))
  4513. (uuid d2db53d0-2821-4ebe-bf21-b864eac8ca44)
  4514. )
  4515. (wire (pts (xy 158.75 64.77) (xy 158.75 67.31))
  4516. (stroke (width 0) (type default) (color 0 0 0 0))
  4517. (uuid d38aa458-d7c4-47af-ba08-2b6be506a3fd)
  4518. )
  4519. (wire (pts (xy 226.06 118.11) (xy 227.33 118.11))
  4520. (stroke (width 0) (type default) (color 0 0 0 0))
  4521. (uuid d3a871af-3e46-4a18-909a-afda82616114)
  4522. )
  4523. (wire (pts (xy 218.44 69.85) (xy 218.44 46.99))
  4524. (stroke (width 0) (type default) (color 0 0 0 0))
  4525. (uuid d3a97c30-4ac8-4098-8132-98f3b6543eaa)
  4526. )
  4527. (wire (pts (xy 270.51 78.74) (xy 274.32 78.74))
  4528. (stroke (width 0) (type default) (color 0 0 0 0))
  4529. (uuid d3dd7cdb-b730-487d-804d-99150ba318ef)
  4530. )
  4531. (wire (pts (xy 111.76 71.12) (xy 111.76 73.66))
  4532. (stroke (width 0) (type default) (color 0 0 0 0))
  4533. (uuid d41a5206-cc17-4bcb-8c5a-8e7f7357a9a3)
  4534. )
  4535. (wire (pts (xy 254 73.66) (xy 265.43 73.66))
  4536. (stroke (width 0) (type default) (color 0 0 0 0))
  4537. (uuid d45d1afe-78e6-4045-862c-b274469da903)
  4538. )
  4539. (wire (pts (xy 250.19 146.05) (xy 251.46 146.05))
  4540. (stroke (width 0) (type default) (color 0 0 0 0))
  4541. (uuid d4e4ffa8-e3e2-4590-b9df-630d1880f3e4)
  4542. )
  4543. (bus (pts (xy 19.05 68.58) (xy 19.05 76.2))
  4544. (stroke (width 0) (type default) (color 0 0 0 0))
  4545. (uuid d53baa32-ba88-4646-9db3-0e9b0f0da4f0)
  4546. )
  4547. (wire (pts (xy 111.76 81.28) (xy 111.76 83.82))
  4548. (stroke (width 0) (type default) (color 0 0 0 0))
  4549. (uuid d5752e0f-5ead-4438-8daf-6a0f62b20fff)
  4550. )
  4551. (wire (pts (xy 175.26 77.47) (xy 176.53 77.47))
  4552. (stroke (width 0) (type default) (color 0 0 0 0))
  4553. (uuid d5cd321f-154d-44fc-8d43-4ec6816b5a0c)
  4554. )
  4555. (wire (pts (xy 189.23 46.99) (xy 189.23 49.53))
  4556. (stroke (width 0) (type default) (color 0 0 0 0))
  4557. (uuid d5f4d798-57d3-493b-b57c-3b6e89508879)
  4558. )
  4559. (wire (pts (xy 175.26 158.75) (xy 175.26 160.02))
  4560. (stroke (width 0) (type default) (color 0 0 0 0))
  4561. (uuid d655bb0a-cbf9-4908-ad60-7024ff468fbd)
  4562. )
  4563. (wire (pts (xy 175.26 69.85) (xy 218.44 69.85))
  4564. (stroke (width 0) (type default) (color 0 0 0 0))
  4565. (uuid d86b23c2-4505-475a-b56c-9a20b82b4564)
  4566. )
  4567. (wire (pts (xy 151.13 20.32) (xy 151.13 21.59))
  4568. (stroke (width 0) (type default) (color 0 0 0 0))
  4569. (uuid da337fe1-c322-4637-ad26-2622b82ac8ee)
  4570. )
  4571. (wire (pts (xy 31.75 147.32) (xy 21.59 147.32))
  4572. (stroke (width 0) (type default) (color 0 0 0 0))
  4573. (uuid db6412d3-e6c3-4bdd-abf4-a8f55d56df31)
  4574. )
  4575. (wire (pts (xy 162.56 95.25) (xy 158.75 95.25))
  4576. (stroke (width 0) (type default) (color 0 0 0 0))
  4577. (uuid dbe92a0d-89cb-4d3f-9497-c2c1d93a3018)
  4578. )
  4579. (wire (pts (xy 199.39 158.75) (xy 199.39 160.02))
  4580. (stroke (width 0) (type default) (color 0 0 0 0))
  4581. (uuid dc2434c5-9883-49e3-a65f-233a4b4287b8)
  4582. )
  4583. (wire (pts (xy 241.3 160.02) (xy 241.3 151.13))
  4584. (stroke (width 0) (type default) (color 0 0 0 0))
  4585. (uuid dd6c35f3-ae45-4706-ad6f-8028797ca8e0)
  4586. )
  4587. (wire (pts (xy 162.56 125.73) (xy 163.83 125.73))
  4588. (stroke (width 0) (type default) (color 0 0 0 0))
  4589. (uuid dda0e41f-1d9a-4045-be58-aba2f0b0530f)
  4590. )
  4591. (wire (pts (xy 143.51 105.41) (xy 146.05 105.41))
  4592. (stroke (width 0) (type default) (color 0 0 0 0))
  4593. (uuid dda1e6ca-91ec-4136-b90b-3c54d79454b9)
  4594. )
  4595. (wire (pts (xy 242.57 36.83) (xy 248.92 36.83))
  4596. (stroke (width 0) (type default) (color 0 0 0 0))
  4597. (uuid df3dc9a2-ba40-4c3a-87fe-61cc8e23d71b)
  4598. )
  4599. (wire (pts (xy 151.13 26.67) (xy 151.13 27.94))
  4600. (stroke (width 0) (type default) (color 0 0 0 0))
  4601. (uuid dff67d5c-d976-4516-ae67-dbbdb70f8ddd)
  4602. )
  4603. (wire (pts (xy 265.43 102.87) (xy 254 102.87))
  4604. (stroke (width 0) (type default) (color 0 0 0 0))
  4605. (uuid e04b8c10-725b-4bde-8cbf-66bfea5053e6)
  4606. )
  4607. (wire (pts (xy 226.06 27.94) (xy 227.33 27.94))
  4608. (stroke (width 0) (type default) (color 0 0 0 0))
  4609. (uuid e0d598e4-d700-418e-81d8-4a06e1fafba0)
  4610. )
  4611. (wire (pts (xy 270.51 73.66) (xy 274.32 73.66))
  4612. (stroke (width 0) (type default) (color 0 0 0 0))
  4613. (uuid e11ae5a5-aa10-4f10-b346-f16e33c7899a)
  4614. )
  4615. (bus (pts (xy 68.58 111.76) (xy 68.58 114.3))
  4616. (stroke (width 0) (type default) (color 0 0 0 0))
  4617. (uuid e141d7d4-5ea5-4218-a8a2-9ec21d158b1b)
  4618. )
  4619. (wire (pts (xy 111.76 104.14) (xy 111.76 106.68))
  4620. (stroke (width 0) (type default) (color 0 0 0 0))
  4621. (uuid e27535b7-e54a-4a5a-98af-cd2921ed47c2)
  4622. )
  4623. (wire (pts (xy 274.32 33.02) (xy 270.51 33.02))
  4624. (stroke (width 0) (type default) (color 0 0 0 0))
  4625. (uuid e2fac877-439c-4da0-af2e-5fdc70f85d42)
  4626. )
  4627. (wire (pts (xy 158.75 100.33) (xy 154.94 100.33))
  4628. (stroke (width 0) (type default) (color 0 0 0 0))
  4629. (uuid e300709f-6c72-488d-a598-efcbd6d3af54)
  4630. )
  4631. (wire (pts (xy 111.76 78.74) (xy 115.57 78.74))
  4632. (stroke (width 0) (type default) (color 0 0 0 0))
  4633. (uuid e3faefe1-ec26-4576-8d54-ae0993368ae3)
  4634. )
  4635. (wire (pts (xy 30.48 154.94) (xy 31.75 154.94))
  4636. (stroke (width 0) (type default) (color 0 0 0 0))
  4637. (uuid e4504518-96e7-4c9e-8457-7273f5a490f1)
  4638. )
  4639. (bus (pts (xy 68.58 78.74) (xy 68.58 81.28))
  4640. (stroke (width 0) (type default) (color 0 0 0 0))
  4641. (uuid e4c3b705-2a18-4901-91bd-a2c819d848ad)
  4642. )
  4643. (bus (pts (xy 19.05 144.78) (xy 19.05 147.32))
  4644. (stroke (width 0) (type default) (color 0 0 0 0))
  4645. (uuid e4e80a48-6fe5-4294-90e4-a4b15db5115b)
  4646. )
  4647. (wire (pts (xy 133.35 162.56) (xy 133.35 165.1))
  4648. (stroke (width 0) (type default) (color 0 0 0 0))
  4649. (uuid e623f100-5d92-4d52-a4ee-879775a3b961)
  4650. )
  4651. (wire (pts (xy 158.75 77.47) (xy 158.75 74.93))
  4652. (stroke (width 0) (type default) (color 0 0 0 0))
  4653. (uuid e70b6168-f98e-4322-bc55-500948ef7b77)
  4654. )
  4655. (wire (pts (xy 242.57 57.15) (xy 248.92 57.15))
  4656. (stroke (width 0) (type default) (color 0 0 0 0))
  4657. (uuid e79c8e11-ed47-4701-ae80-a54cdb6682a5)
  4658. )
  4659. (wire (pts (xy 158.75 69.85) (xy 162.56 69.85))
  4660. (stroke (width 0) (type default) (color 0 0 0 0))
  4661. (uuid e7d81bce-286e-41e4-9181-3511e9c0455e)
  4662. )
  4663. (wire (pts (xy 276.86 153.67) (xy 276.86 151.13))
  4664. (stroke (width 0) (type default) (color 0 0 0 0))
  4665. (uuid e80b0e91-f15f-4e36-9a9c-b2cfd5a01d2a)
  4666. )
  4667. (wire (pts (xy 270.51 102.87) (xy 274.32 102.87))
  4668. (stroke (width 0) (type default) (color 0 0 0 0))
  4669. (uuid e8274862-c966-456a-98d5-9c42f72963c1)
  4670. )
  4671. (wire (pts (xy 242.57 27.94) (xy 248.92 27.94))
  4672. (stroke (width 0) (type default) (color 0 0 0 0))
  4673. (uuid e87a6f80-914f-4f62-9c9f-9ba62a88ee3d)
  4674. )
  4675. (wire (pts (xy 24.13 185.42) (xy 26.67 185.42))
  4676. (stroke (width 0) (type default) (color 0 0 0 0))
  4677. (uuid e9e21288-a1da-4e40-9282-79c2fe7455e5)
  4678. )
  4679. (wire (pts (xy 147.32 125.73) (xy 149.86 125.73))
  4680. (stroke (width 0) (type default) (color 0 0 0 0))
  4681. (uuid ea262f36-6725-4873-a0e9-06d96f680d55)
  4682. )
  4683. (wire (pts (xy 167.64 46.99) (xy 167.64 49.53))
  4684. (stroke (width 0) (type default) (color 0 0 0 0))
  4685. (uuid ea77ba09-319a-49bd-ad5b-49f4c76f232c)
  4686. )
  4687. (wire (pts (xy 199.39 151.13) (xy 199.39 153.67))
  4688. (stroke (width 0) (type default) (color 0 0 0 0))
  4689. (uuid eab51dd7-660f-4f60-86ec-46ce23e50144)
  4690. )
  4691. (wire (pts (xy 111.76 106.68) (xy 111.76 111.76))
  4692. (stroke (width 0) (type default) (color 0 0 0 0))
  4693. (uuid ecdfb0d6-40ce-48d1-9a5f-4d48b9122aad)
  4694. )
  4695. (wire (pts (xy 111.76 88.9) (xy 115.57 88.9))
  4696. (stroke (width 0) (type default) (color 0 0 0 0))
  4697. (uuid ed9ead52-6238-44fd-a3d4-0700bcb50d4b)
  4698. )
  4699. (wire (pts (xy 274.32 102.87) (xy 274.32 97.79))
  4700. (stroke (width 0) (type default) (color 0 0 0 0))
  4701. (uuid efd7a1e0-5bed-4583-a94e-5ccec9e4eb74)
  4702. )
  4703. (wire (pts (xy 254 78.74) (xy 265.43 78.74))
  4704. (stroke (width 0) (type default) (color 0 0 0 0))
  4705. (uuid f203116d-f256-4611-a03e-9536bbedaf2f)
  4706. )
  4707. (wire (pts (xy 274.32 73.66) (xy 274.32 68.58))
  4708. (stroke (width 0) (type default) (color 0 0 0 0))
  4709. (uuid f23ac723-a36d-491d-9473-7ec0ffed332d)
  4710. )
  4711. (wire (pts (xy 151.13 105.41) (xy 162.56 105.41))
  4712. (stroke (width 0) (type default) (color 0 0 0 0))
  4713. (uuid f2480d0c-9b08-4037-9175-b2369af04d4c)
  4714. )
  4715. (wire (pts (xy 128.27 93.98) (xy 130.81 93.98))
  4716. (stroke (width 0) (type default) (color 0 0 0 0))
  4717. (uuid f27395de-9934-421f-8875-68b92fffd253)
  4718. )
  4719. (wire (pts (xy 158.75 189.23) (xy 161.29 189.23))
  4720. (stroke (width 0) (type default) (color 0 0 0 0))
  4721. (uuid f284b1e2-75a4-4a3f-a5f4-6f05f15fb4f5)
  4722. )
  4723. (wire (pts (xy 217.17 92.71) (xy 217.17 128.27))
  4724. (stroke (width 0) (type default) (color 0 0 0 0))
  4725. (uuid f28e56e7-283b-4b9a-ae27-95e89770fbf8)
  4726. )
  4727. (wire (pts (xy 158.75 87.63) (xy 158.75 85.09))
  4728. (stroke (width 0) (type default) (color 0 0 0 0))
  4729. (uuid f447e585-df78-4239-b8cb-4653b3837bb1)
  4730. )
  4731. (wire (pts (xy 162.56 85.09) (xy 158.75 85.09))
  4732. (stroke (width 0) (type default) (color 0 0 0 0))
  4733. (uuid f44d04c5-0d17-4d52-8328-ef3b4fdfba5f)
  4734. )
  4735. (wire (pts (xy 254 97.79) (xy 265.43 97.79))
  4736. (stroke (width 0) (type default) (color 0 0 0 0))
  4737. (uuid f4aae365-6c70-41da-9253-52b239e8f5e6)
  4738. )
  4739. (wire (pts (xy 270.51 107.95) (xy 274.32 107.95))
  4740. (stroke (width 0) (type default) (color 0 0 0 0))
  4741. (uuid f5eb7390-4215-4bb5-bc53-f82f663cc9a5)
  4742. )
  4743. (wire (pts (xy 242.57 138.43) (xy 248.92 138.43))
  4744. (stroke (width 0) (type default) (color 0 0 0 0))
  4745. (uuid f699494a-77d6-4c73-bd50-29c1c1c5b879)
  4746. )
  4747. (wire (pts (xy 54.61 116.84) (xy 55.88 116.84))
  4748. (stroke (width 0) (type default) (color 0 0 0 0))
  4749. (uuid f6a5c856-f2b5-40eb-a958-b666a0d408a0)
  4750. )
  4751. (wire (pts (xy 111.76 96.52) (xy 111.76 99.06))
  4752. (stroke (width 0) (type default) (color 0 0 0 0))
  4753. (uuid f9320816-e65b-4f3a-aaf1-d8542dc397ef)
  4754. )
  4755. (wire (pts (xy 158.75 69.85) (xy 158.75 72.39))
  4756. (stroke (width 0) (type default) (color 0 0 0 0))
  4757. (uuid fc3d51c1-8b35-4da3-a742-0ebe104989d7)
  4758. )
  4759. (wire (pts (xy 274.32 68.58) (xy 274.32 63.5))
  4760. (stroke (width 0) (type default) (color 0 0 0 0))
  4761. (uuid fd60415a-f01a-46c5-9369-ea970e435e5b)
  4762. )
  4763. (bus (pts (xy 68.58 114.3) (xy 68.58 161.29))
  4764. (stroke (width 0) (type default) (color 0 0 0 0))
  4765. (uuid fd6f49bb-74a8-4779-91c3-00aca981aada)
  4766. )
  4767. (text "WRITE INHIBIT" (at 196.85 104.14 0)
  4768. (effects (font (size 1.27 1.27)) (justify left bottom))
  4769. (uuid 044de712-d3da-40ed-9c9f-d91ef285c74c)
  4770. )
  4771. (text "ST-LINK" (at 261.62 140.97 0)
  4772. (effects (font (size 1.27 1.27)) (justify left bottom))
  4773. (uuid 8220ba36-5fda-4461-95e2-49a5bc0c76af)
  4774. )
  4775. (label "~{WR_GATE}" (at 242.57 128.27 0)
  4776. (effects (font (size 1.27 1.27)) (justify left bottom))
  4777. (uuid 02f8904b-a7b2-49dd-b392-764e7e29fb51)
  4778. )
  4779. (label "~{WR_DAT}" (at 30.48 83.82 180)
  4780. (effects (font (size 1.27 1.27)) (justify right bottom))
  4781. (uuid 044dde97-ee2e-473a-9264-ed4dff1893a5)
  4782. )
  4783. (label "~{WR_DATA}" (at 226.06 118.11 180)
  4784. (effects (font (size 1.27 1.27)) (justify right bottom))
  4785. (uuid 04ab0cfd-0e8d-474e-bc39-9b21c3d360c9)
  4786. )
  4787. (label "LED1" (at 30.48 154.94 180)
  4788. (effects (font (size 1.27 1.27)) (justify right bottom))
  4789. (uuid 0a5610bb-d01a-4417-8271-dc424dd2c838)
  4790. )
  4791. (label "~{RDY}" (at 255.27 113.03 0)
  4792. (effects (font (size 1.27 1.27)) (justify left bottom))
  4793. (uuid 0b110cbc-e477-4bdc-9c81-26a3d588d354)
  4794. )
  4795. (label "~{DENSEL}" (at 128.27 45.72 0)
  4796. (effects (font (size 1.27 1.27)) (justify left bottom))
  4797. (uuid 0f66079d-975f-43b2-9b94-5ed2a07d9162)
  4798. )
  4799. (label "~{DIR}" (at 255.27 63.5 0)
  4800. (effects (font (size 1.27 1.27)) (justify left bottom))
  4801. (uuid 112371bd-7aa2-4b47-b184-50d12afc2534)
  4802. )
  4803. (label "RX" (at 30.48 104.14 180)
  4804. (effects (font (size 1.27 1.27)) (justify right bottom))
  4805. (uuid 113ffcdf-4c54-4e37-81dc-f91efa934ba7)
  4806. )
  4807. (label "~{DRIVE1}" (at 176.53 77.47 0)
  4808. (effects (font (size 1.27 1.27)) (justify left bottom))
  4809. (uuid 11c46ed6-a4c0-496e-aeea-27757b88d27c)
  4810. )
  4811. (label "~{DRIVE1}" (at 226.06 67.31 180)
  4812. (effects (font (size 1.27 1.27)) (justify right bottom))
  4813. (uuid 1222150b-916f-4129-817c-4d0356e5a191)
  4814. )
  4815. (label "~{TRK_00}" (at 176.53 95.25 0)
  4816. (effects (font (size 1.27 1.27)) (justify left bottom))
  4817. (uuid 178ae27e-edb9-4ffb-bd13-c0a6dd659606)
  4818. )
  4819. (label "~{SIDE}" (at 255.27 83.82 0)
  4820. (effects (font (size 1.27 1.27)) (justify left bottom))
  4821. (uuid 1d0d5161-c82f-4c77-a9ca-15d017db65d3)
  4822. )
  4823. (label "~{DENSEL}" (at 176.53 64.77 0)
  4824. (effects (font (size 1.27 1.27)) (justify left bottom))
  4825. (uuid 1f9fc6ff-03a6-460e-ba12-d6a241cd0f48)
  4826. )
  4827. (label "~{INDEX}" (at 24.13 185.42 180)
  4828. (effects (font (size 1.27 1.27)) (justify right bottom))
  4829. (uuid 1fb62290-089a-4cdf-b37b-f810068b852c)
  4830. )
  4831. (label "INUSE" (at 130.81 63.5 0)
  4832. (effects (font (size 1.27 1.27)) (justify left bottom))
  4833. (uuid 21783cf4-91af-460e-ac99-9922d6b7d60e)
  4834. )
  4835. (label "~{MOTOR_EN}" (at 130.81 66.04 0)
  4836. (effects (font (size 1.27 1.27)) (justify left bottom))
  4837. (uuid 21872bbc-f7bd-4fc9-89e0-5de9dc30b08f)
  4838. )
  4839. (label "~{DIRECTION}" (at 24.13 180.34 180)
  4840. (effects (font (size 1.27 1.27)) (justify right bottom))
  4841. (uuid 22cee2fe-730e-411c-83d4-d741c8e3424c)
  4842. )
  4843. (label "USB_D-" (at 161.29 189.23 0)
  4844. (effects (font (size 1.27 1.27)) (justify left bottom))
  4845. (uuid 232ccf4f-3322-4e62-990b-290e6ff36fcd)
  4846. )
  4847. (label "~{DENSEL}" (at 226.06 27.94 180)
  4848. (effects (font (size 1.27 1.27)) (justify right bottom))
  4849. (uuid 238f9083-46e5-4f0c-bcf3-448afb2553f6)
  4850. )
  4851. (label "~{DS1}" (at 242.57 67.31 0)
  4852. (effects (font (size 1.27 1.27)) (justify left bottom))
  4853. (uuid 2518d4ea-25cc-4e57-a0d6-8482034e7318)
  4854. )
  4855. (label "~{DS1}" (at 30.48 121.92 180)
  4856. (effects (font (size 1.27 1.27)) (justify right bottom))
  4857. (uuid 254f7cc6-cee1-44ca-9afe-939b318201aa)
  4858. )
  4859. (label "~{RDY}" (at 176.53 105.41 0)
  4860. (effects (font (size 1.27 1.27)) (justify left bottom))
  4861. (uuid 25c663ff-96b6-4263-a06e-d1829409cf73)
  4862. )
  4863. (label "~{M0_EN}" (at 147.32 125.73 180)
  4864. (effects (font (size 1.27 1.27)) (justify right bottom))
  4865. (uuid 26444c2f-6072-46b6-bb67-df561d826796)
  4866. )
  4867. (label "~{FLIPPY}" (at 55.88 81.28 0)
  4868. (effects (font (size 1.27 1.27)) (justify left bottom))
  4869. (uuid 26a22c19-4cc5-4237-9651-0edc4f854154)
  4870. )
  4871. (label "SWDIO" (at 219.71 153.67 0)
  4872. (effects (font (size 1.27 1.27)) (justify left bottom))
  4873. (uuid 2900965f-8b8d-458a-b86a-6e9955743074)
  4874. )
  4875. (label "~{M1_EN}" (at 147.32 129.54 180)
  4876. (effects (font (size 1.27 1.27)) (justify right bottom))
  4877. (uuid 2b295bac-9753-4da5-990b-f753b6ce9bda)
  4878. )
  4879. (label "~{STEPS}" (at 130.81 88.9 0)
  4880. (effects (font (size 1.27 1.27)) (justify left bottom))
  4881. (uuid 2bd46b23-cd1b-4758-94b3-eaa8bb441c6c)
  4882. )
  4883. (label "~{WR_PROT}" (at 130.81 99.06 0)
  4884. (effects (font (size 1.27 1.27)) (justify left bottom))
  4885. (uuid 2f9c49f2-2034-4978-8916-aa0655e2f9f8)
  4886. )
  4887. (label "~{DENS}" (at 255.27 27.94 0)
  4888. (effects (font (size 1.27 1.27)) (justify left bottom))
  4889. (uuid 31bfc3e7-147b-4531-a0c5-e3a305c1647d)
  4890. )
  4891. (label "~{M0_EN}" (at 226.06 57.15 180)
  4892. (effects (font (size 1.27 1.27)) (justify right bottom))
  4893. (uuid 33495d31-b72d-44fa-9c0f-389fb23eb659)
  4894. )
  4895. (label "~{M0}" (at 255.27 43.18 0)
  4896. (effects (font (size 1.27 1.27)) (justify left bottom))
  4897. (uuid 363189af-2faa-46a4-b025-5a779d801f2e)
  4898. )
  4899. (label "~{INDEX}" (at 130.81 68.58 0)
  4900. (effects (font (size 1.27 1.27)) (justify left bottom))
  4901. (uuid 371e69e8-c492-4e8d-85fd-3ca4ff5c48dc)
  4902. )
  4903. (label "SPARE2" (at 255.27 38.1 0)
  4904. (effects (font (size 1.27 1.27)) (justify left bottom))
  4905. (uuid 37657eee-b379-4145-b65d-79c82b53e49e)
  4906. )
  4907. (label "~{WR_GATE_OUT}" (at 130.81 93.98 0)
  4908. (effects (font (size 1.27 1.27)) (justify left bottom))
  4909. (uuid 38029921-f5d0-4b06-b806-54c68d329f8c)
  4910. )
  4911. (label "USB_D+" (at 30.48 160.02 180)
  4912. (effects (font (size 1.27 1.27)) (justify right bottom))
  4913. (uuid 3a1a39fc-8030-4c93-9d9c-d79ba6824099)
  4914. )
  4915. (label "~{RD_DATA" (at 130.81 101.6 0)
  4916. (effects (font (size 1.27 1.27)) (justify left bottom))
  4917. (uuid 3d9da780-2975-4cf6-8d88-e86bfca02620)
  4918. )
  4919. (label "SWCLK" (at 30.48 114.3 180)
  4920. (effects (font (size 1.27 1.27)) (justify right bottom))
  4921. (uuid 3f2a6679-91d7-4b6c-bf5c-c4d5abb2bc44)
  4922. )
  4923. (label "~{RD_DATA" (at 24.13 175.26 180)
  4924. (effects (font (size 1.27 1.27)) (justify right bottom))
  4925. (uuid 41e02b86-e75d-48dd-b73f-1ca41019a3da)
  4926. )
  4927. (label "~{WR_DATA}" (at 176.53 90.17 0)
  4928. (effects (font (size 1.27 1.27)) (justify left bottom))
  4929. (uuid 43d52763-bb58-40dc-85ff-f539d4a17e32)
  4930. )
  4931. (label "~{DIR}" (at 55.88 88.9 0)
  4932. (effects (font (size 1.27 1.27)) (justify left bottom))
  4933. (uuid 4970ec6e-3725-4619-b57d-dc2c2cb86ed0)
  4934. )
  4935. (label "ID1" (at 146.05 167.64 180)
  4936. (effects (font (size 1.27 1.27)) (justify right bottom))
  4937. (uuid 49d97c73-e37a-4154-9d0a-88037e40cc11)
  4938. )
  4939. (label "SWCLK" (at 266.7 146.05 0)
  4940. (effects (font (size 1.27 1.27)) (justify left bottom))
  4941. (uuid 4b471778-f61d-4b9d-a507-3d4f82ec4b7c)
  4942. )
  4943. (label "~{M1_EN}" (at 226.06 87.63 180)
  4944. (effects (font (size 1.27 1.27)) (justify right bottom))
  4945. (uuid 4b8b9044-1b17-4fac-b8d3-7511d3efd589)
  4946. )
  4947. (label "~{DENS}" (at 30.48 152.4 180)
  4948. (effects (font (size 1.27 1.27)) (justify right bottom))
  4949. (uuid 4ce9470f-5633-41bf-89ac-74a810939893)
  4950. )
  4951. (label "~{RDY}" (at 130.81 58.42 0)
  4952. (effects (font (size 1.27 1.27)) (justify left bottom))
  4953. (uuid 4ed83c86-6683-48d9-ad36-3c4016416c3c)
  4954. )
  4955. (label "~{STEP}" (at 242.57 107.95 0)
  4956. (effects (font (size 1.27 1.27)) (justify left bottom))
  4957. (uuid 4fd9bc4f-0ae3-42d4-a1b4-9fb1b2a0a7fd)
  4958. )
  4959. (label "PB[0..11]" (at 52.07 176.53 0)
  4960. (effects (font (size 1.27 1.27)) (justify left bottom))
  4961. (uuid 51bc70a6-2f66-431d-9492-186dca686508)
  4962. )
  4963. (label "~{M1}" (at 30.48 147.32 180)
  4964. (effects (font (size 1.27 1.27)) (justify right bottom))
  4965. (uuid 51cc007a-3378-4ce3-909c-71e94822f8d1)
  4966. )
  4967. (label "~{DRIVE0}" (at 130.81 76.2 0)
  4968. (effects (font (size 1.27 1.27)) (justify left bottom))
  4969. (uuid 5860b84f-3484-424c-8cae-5de0b22df872)
  4970. )
  4971. (label "PA[0..11]" (at 52.07 173.99 0)
  4972. (effects (font (size 1.27 1.27)) (justify left bottom))
  4973. (uuid 59e058da-2964-4ef6-bd9a-9c7aa026d0b2)
  4974. )
  4975. (label "~{STEP}" (at 255.27 68.58 0)
  4976. (effects (font (size 1.27 1.27)) (justify left bottom))
  4977. (uuid 5c32b099-dba7-4228-8a5e-c2156f635ce2)
  4978. )
  4979. (label "~{TRK_00}" (at 24.13 182.88 180)
  4980. (effects (font (size 1.27 1.27)) (justify right bottom))
  4981. (uuid 5ce4df25-e816-4843-9a48-29160907263a)
  4982. )
  4983. (label "INUSE" (at 226.06 36.83 180)
  4984. (effects (font (size 1.27 1.27)) (justify right bottom))
  4985. (uuid 5eb94574-4b17-4405-ab0e-af45ba088621)
  4986. )
  4987. (label "~{M0}" (at 30.48 124.46 180)
  4988. (effects (font (size 1.27 1.27)) (justify right bottom))
  4989. (uuid 5f48b0f2-82cf-40ce-afac-440f97643c36)
  4990. )
  4991. (label "RX" (at 109.22 34.29 180)
  4992. (effects (font (size 1.27 1.27)) (justify right bottom))
  4993. (uuid 629fdb7a-7978-43d0-987e-b84465775826)
  4994. )
  4995. (label "ID1" (at 55.88 114.3 0)
  4996. (effects (font (size 1.27 1.27)) (justify left bottom))
  4997. (uuid 62f15a9a-9893-486e-9ad0-ea43f88fc9e7)
  4998. )
  4999. (label "~{DRIVE0}" (at 176.53 80.01 0)
  5000. (effects (font (size 1.27 1.27)) (justify left bottom))
  5001. (uuid 6406f0fb-9933-4ab4-8954-3fcb06c214bc)
  5002. )
  5003. (label "~{TRK_00}" (at 30.48 86.36 180)
  5004. (effects (font (size 1.27 1.27)) (justify right bottom))
  5005. (uuid 661ca2ba-bce5-4308-99a6-de333a625515)
  5006. )
  5007. (label "~{RD_DATA}" (at 255.27 107.95 0)
  5008. (effects (font (size 1.27 1.27)) (justify left bottom))
  5009. (uuid 6762c669-2824-49a2-8bd4-3f19091dd75a)
  5010. )
  5011. (label "USB_D+" (at 161.29 185.42 0)
  5012. (effects (font (size 1.27 1.27)) (justify left bottom))
  5013. (uuid 6d7ff8c0-8a2a-4636-844f-c7210ff3e6f2)
  5014. )
  5015. (label "~{WR_GATE}" (at 255.27 78.74 0)
  5016. (effects (font (size 1.27 1.27)) (justify left bottom))
  5017. (uuid 6f1beb86-67e1-46bf-8c2b-6d1e1485d5c0)
  5018. )
  5019. (label "~{DIR}" (at 242.57 97.79 0)
  5020. (effects (font (size 1.27 1.27)) (justify left bottom))
  5021. (uuid 71af7b65-0e6b-402e-b1a4-b66be507b4dc)
  5022. )
  5023. (label "~{INDEX}" (at 176.53 72.39 0)
  5024. (effects (font (size 1.27 1.27)) (justify left bottom))
  5025. (uuid 73fbe87f-3928-49c2-bf87-839d907c6aef)
  5026. )
  5027. (label "~{STEP}" (at 30.48 96.52 180)
  5028. (effects (font (size 1.27 1.27)) (justify right bottom))
  5029. (uuid 755f94aa-38f0-4a64-a7c7-6c71cb18cddf)
  5030. )
  5031. (label "SPARE1" (at 255.27 33.02 0)
  5032. (effects (font (size 1.27 1.27)) (justify left bottom))
  5033. (uuid 7668b629-abd6-4e14-be84-df90ae487fc6)
  5034. )
  5035. (label "~{M1}" (at 242.57 87.63 0)
  5036. (effects (font (size 1.27 1.27)) (justify left bottom))
  5037. (uuid 799e761c-1426-40e9-a069-1f4cb353bfaa)
  5038. )
  5039. (label "INUSE" (at 176.53 67.31 0)
  5040. (effects (font (size 1.27 1.27)) (justify left bottom))
  5041. (uuid 7b41936f-8892-4c2e-8a5d-04d1cd2d6fa3)
  5042. )
  5043. (label "~{WR_DAT}" (at 255.27 73.66 0)
  5044. (effects (font (size 1.27 1.27)) (justify left bottom))
  5045. (uuid 7ca71fec-e7f1-454f-9196-b80d15925fff)
  5046. )
  5047. (label "~{DIRECTION}" (at 226.06 97.79 180)
  5048. (effects (font (size 1.27 1.27)) (justify right bottom))
  5049. (uuid 7ca974e9-cb7c-4def-9cab-b7ce7bb7ac62)
  5050. )
  5051. (label "~{SIDE_SEL}" (at 176.53 102.87 0)
  5052. (effects (font (size 1.27 1.27)) (justify left bottom))
  5053. (uuid 8196cec5-f23f-4729-a049-5f8821aabad6)
  5054. )
  5055. (label "~{DS0}" (at 30.48 149.86 180)
  5056. (effects (font (size 1.27 1.27)) (justify right bottom))
  5057. (uuid 83184391-76ed-44f0-8cd0-01f89f157bdb)
  5058. )
  5059. (label "~{WR_DAT}" (at 242.57 118.11 0)
  5060. (effects (font (size 1.27 1.27)) (justify left bottom))
  5061. (uuid 86e98417-f5e4-48ba-8147-ef66cc03dde6)
  5062. )
  5063. (label "~{WR_PROT}" (at 30.48 81.28 180)
  5064. (effects (font (size 1.27 1.27)) (justify right bottom))
  5065. (uuid 8ae05d37-86b4-45ea-800f-f1f9fb167857)
  5066. )
  5067. (label "SPARE2" (at 80.01 116.84 180)
  5068. (effects (font (size 1.27 1.27)) (justify right bottom))
  5069. (uuid 94d24676-7ae3-483c-8bd6-88d31adf00b4)
  5070. )
  5071. (label "ID0" (at 134.62 167.64 180)
  5072. (effects (font (size 1.27 1.27)) (justify right bottom))
  5073. (uuid 9505be36-b21c-4db8-9484-dd0861395d26)
  5074. )
  5075. (label "ID2" (at 157.48 167.64 180)
  5076. (effects (font (size 1.27 1.27)) (justify right bottom))
  5077. (uuid 961b4579-9ee8-407a-89a7-81f36f1ad865)
  5078. )
  5079. (label "~{WR_GATE_OUT}" (at 176.53 92.71 0)
  5080. (effects (font (size 1.27 1.27)) (justify left bottom))
  5081. (uuid 96cde6a5-b5a4-41f4-be57-14529a48aa65)
  5082. )
  5083. (label "~{DRIVE1}" (at 130.81 78.74 0)
  5084. (effects (font (size 1.27 1.27)) (justify left bottom))
  5085. (uuid 998438c1-cf31-461b-9870-09f708a5cd72)
  5086. )
  5087. (label "SPARE2" (at 242.57 46.99 0)
  5088. (effects (font (size 1.27 1.27)) (justify left bottom))
  5089. (uuid 99e6b8eb-b08e-4d42-84dd-8b7f6765b7b7)
  5090. )
  5091. (label "~{WR_DATA}" (at 130.81 91.44 0)
  5092. (effects (font (size 1.27 1.27)) (justify left bottom))
  5093. (uuid 9a445d32-7123-4c5a-9f28-0b3a5e65e844)
  5094. )
  5095. (label "TX" (at 109.22 31.75 180)
  5096. (effects (font (size 1.27 1.27)) (justify right bottom))
  5097. (uuid 9c5933cf-1535-4465-90dd-da9b75afcdcf)
  5098. )
  5099. (label "~{WR_GATE}" (at 30.48 93.98 180)
  5100. (effects (font (size 1.27 1.27)) (justify right bottom))
  5101. (uuid 9ed09117-33cf-45a3-85a7-2606522feaf8)
  5102. )
  5103. (label "ID0" (at 55.88 111.76 0)
  5104. (effects (font (size 1.27 1.27)) (justify left bottom))
  5105. (uuid a3fab380-991d-404b-95d5-1c209b047b6e)
  5106. )
  5107. (label "~{WR_PROT}" (at 255.27 102.87 0)
  5108. (effects (font (size 1.27 1.27)) (justify left bottom))
  5109. (uuid a9d76dfc-52ba-46de-beb4-dab7b94ee663)
  5110. )
  5111. (label "USB_D-" (at 30.48 157.48 180)
  5112. (effects (font (size 1.27 1.27)) (justify right bottom))
  5113. (uuid aa23bfe3-454b-4a2b-bfe1-101c747eb84e)
  5114. )
  5115. (label "~{WR_PROT}" (at 176.53 97.79 0)
  5116. (effects (font (size 1.27 1.27)) (justify left bottom))
  5117. (uuid aa8663be-9516-4b07-84d2-4c4d668b8596)
  5118. )
  5119. (label "BUS" (at 19.05 68.58 0)
  5120. (effects (font (size 1.27 1.27)) (justify left bottom))
  5121. (uuid aae6bc05-6036-4fc6-8be7-c70daf5c8932)
  5122. )
  5123. (label "~{SIDE}" (at 55.88 86.36 0)
  5124. (effects (font (size 1.27 1.27)) (justify left bottom))
  5125. (uuid ad4d05f5-6957-42f8-b65c-c657b9a26485)
  5126. )
  5127. (label "~{TRK_00}" (at 130.81 96.52 0)
  5128. (effects (font (size 1.27 1.27)) (justify left bottom))
  5129. (uuid ae2627f8-bfa0-44d6-8ce5-4df81452e696)
  5130. )
  5131. (label "BUS" (at 251.46 21.59 0)
  5132. (effects (font (size 1.27 1.27)) (justify left bottom))
  5133. (uuid b0b4c3cb-e7ea-49c0-8162-be3bbab3e4ec)
  5134. )
  5135. (label "ID2" (at 55.88 116.84 0)
  5136. (effects (font (size 1.27 1.27)) (justify left bottom))
  5137. (uuid b2b363dd-8e47-4a76-a142-e00e28334875)
  5138. )
  5139. (label "~{MOTOR_EN}" (at 163.83 125.73 0)
  5140. (effects (font (size 1.27 1.27)) (justify left bottom))
  5141. (uuid b59fca79-e320-4eb0-83be-1506dc492388)
  5142. )
  5143. (label "~{M1_EN}" (at 176.53 82.55 0)
  5144. (effects (font (size 1.27 1.27)) (justify left bottom))
  5145. (uuid b60fe4b1-9c0f-4a22-9c47-1eb969b306ae)
  5146. )
  5147. (label "~{DS1}" (at 255.27 48.26 0)
  5148. (effects (font (size 1.27 1.27)) (justify left bottom))
  5149. (uuid b66b83a0-313f-4b03-b851-c6e9577a6eb7)
  5150. )
  5151. (label "~{DENS}" (at 242.57 27.94 0)
  5152. (effects (font (size 1.27 1.27)) (justify left bottom))
  5153. (uuid b794d099-f823-4d35-9755-ca1c45247ee9)
  5154. )
  5155. (label "LED1" (at 57.15 43.18 180)
  5156. (effects (font (size 1.27 1.27)) (justify right bottom))
  5157. (uuid b7ac5cea-ed28-4028-87d0-45e58c709cf1)
  5158. )
  5159. (label "SWCLK" (at 219.71 156.21 0)
  5160. (effects (font (size 1.27 1.27)) (justify left bottom))
  5161. (uuid b83c0b65-9035-44f4-9939-bf63baaf6b52)
  5162. )
  5163. (label "~{STEPS}" (at 176.53 87.63 0)
  5164. (effects (font (size 1.27 1.27)) (justify left bottom))
  5165. (uuid b8d45b0e-7a89-4c6a-bafb-b38131792b26)
  5166. )
  5167. (label "~{DIRECTION}" (at 130.81 86.36 0)
  5168. (effects (font (size 1.27 1.27)) (justify left bottom))
  5169. (uuid be0d4b70-103c-4e11-a759-a5fbc6164b7c)
  5170. )
  5171. (label "~{RDY}" (at 55.88 83.82 0)
  5172. (effects (font (size 1.27 1.27)) (justify left bottom))
  5173. (uuid c1b11207-7c0a-49b3-a41d-2fe677d5f3b8)
  5174. )
  5175. (label "~{STEPS}" (at 226.06 107.95 180)
  5176. (effects (font (size 1.27 1.27)) (justify right bottom))
  5177. (uuid c283c5c5-a3f3-492b-abc6-13a971f417c7)
  5178. )
  5179. (label "SWDIO" (at 30.48 111.76 180)
  5180. (effects (font (size 1.27 1.27)) (justify right bottom))
  5181. (uuid c7cd39db-931a-4d86-96b8-57e6b39f58f9)
  5182. )
  5183. (label "~{M0_EN}" (at 176.53 74.93 0)
  5184. (effects (font (size 1.27 1.27)) (justify left bottom))
  5185. (uuid c7f2486c-d7b2-4a7b-aa54-8db7dad7108b)
  5186. )
  5187. (label "~{SIDE_SEL}" (at 24.13 190.5 180)
  5188. (effects (font (size 1.27 1.27)) (justify right bottom))
  5189. (uuid d28a78ab-2168-4efb-aa09-70733b60123c)
  5190. )
  5191. (label "BUS" (at 191.77 72.39 0)
  5192. (effects (font (size 1.27 1.27)) (justify left bottom))
  5193. (uuid d32956af-146b-4a09-a053-d9d64b8dd86d)
  5194. )
  5195. (label "~{RD_DAT}" (at 30.226 78.74 180)
  5196. (effects (font (size 1.27 1.27)) (justify right bottom))
  5197. (uuid d790ac31-48e7-4e4b-82dc-634404122ce7)
  5198. )
  5199. (label "~{TRK_00}" (at 255.27 97.79 0)
  5200. (effects (font (size 1.27 1.27)) (justify left bottom))
  5201. (uuid d9cf2d61-3126-40fe-a66d-ae5145f94be8)
  5202. )
  5203. (label "~{SIDE_SEL}" (at 217.17 138.43 0)
  5204. (effects (font (size 1.27 1.27)) (justify left bottom))
  5205. (uuid daa508c5-8f27-4b6f-ae12-3bffccc2008e)
  5206. )
  5207. (label "~{DS0}" (at 255.27 53.34 0)
  5208. (effects (font (size 1.27 1.27)) (justify left bottom))
  5209. (uuid dad2f9a9-292b-4f7e-9524-a263f3c1ba74)
  5210. )
  5211. (label "~{M0}" (at 242.57 57.15 0)
  5212. (effects (font (size 1.27 1.27)) (justify left bottom))
  5213. (uuid db851147-6a1e-4d19-898c-0ba71182359b)
  5214. )
  5215. (label "~{DIRECTION}" (at 176.53 85.09 0)
  5216. (effects (font (size 1.27 1.27)) (justify left bottom))
  5217. (uuid dcbaec81-1b4e-42e0-bf43-284215f091f7)
  5218. )
  5219. (label "TX" (at 30.48 101.6 180)
  5220. (effects (font (size 1.27 1.27)) (justify right bottom))
  5221. (uuid dd70858b-2f9a-4b3f-9af5-ead3a9ba57e9)
  5222. )
  5223. (label "SPARE1" (at 242.57 36.83 0)
  5224. (effects (font (size 1.27 1.27)) (justify left bottom))
  5225. (uuid de370984-7922-4327-a0ba-7cd613995df4)
  5226. )
  5227. (label "~{INDEX}" (at 255.27 92.71 0)
  5228. (effects (font (size 1.27 1.27)) (justify left bottom))
  5229. (uuid df5c9f6b-a62e-44ba-997f-b2cf3279c7d4)
  5230. )
  5231. (label "~{RD_DATA}" (at 176.53 100.33 0)
  5232. (effects (font (size 1.27 1.27)) (justify left bottom))
  5233. (uuid dfcef016-1bf5-4158-8a79-72d38a522877)
  5234. )
  5235. (label "SPARE1" (at 80.01 114.3 180)
  5236. (effects (font (size 1.27 1.27)) (justify right bottom))
  5237. (uuid e45aa7d8-0254-4176-afd9-766820762e19)
  5238. )
  5239. (label "~{DS0}" (at 242.57 77.47 0)
  5240. (effects (font (size 1.27 1.27)) (justify left bottom))
  5241. (uuid e69c64f9-717d-4a97-b3df-80325ec2fa63)
  5242. )
  5243. (label "~{SIDE}" (at 242.57 138.43 0)
  5244. (effects (font (size 1.27 1.27)) (justify left bottom))
  5245. (uuid e70d061b-28f0-4421-ad15-0598604086e8)
  5246. )
  5247. (label "~{INDEX}" (at 30.48 127 180)
  5248. (effects (font (size 1.27 1.27)) (justify right bottom))
  5249. (uuid e86e4fae-9ca7-4857-a93c-bc6a3048f887)
  5250. )
  5251. (label "~{RDY}" (at 24.13 187.96 180)
  5252. (effects (font (size 1.27 1.27)) (justify right bottom))
  5253. (uuid f2b56347-0c47-4bbc-8fbc-afd4af879320)
  5254. )
  5255. (label "~{M1}" (at 255.27 58.42 0)
  5256. (effects (font (size 1.27 1.27)) (justify left bottom))
  5257. (uuid f4117d3e-819d-4d33-bf85-69e28ba32fe5)
  5258. )
  5259. (label "~{DRIVE0}" (at 226.06 77.47 180)
  5260. (effects (font (size 1.27 1.27)) (justify right bottom))
  5261. (uuid f5987f1b-b17c-450e-95c5-6acf6dfcf136)
  5262. )
  5263. (label "~{FLIPPY}" (at 139.7 105.41 270)
  5264. (effects (font (size 1.27 1.27)) (justify right bottom))
  5265. (uuid f5bf5b4a-5213-48af-a5cd-0d67969d2de6)
  5266. )
  5267. (label "~{SIDE_SEL}" (at 130.81 60.96 0)
  5268. (effects (font (size 1.27 1.27)) (justify left bottom))
  5269. (uuid f7b74101-684a-494a-af23-daffa52c836c)
  5270. )
  5271. (label "SWDIO" (at 266.7 148.59 0)
  5272. (effects (font (size 1.27 1.27)) (justify left bottom))
  5273. (uuid f8621ac5-1e7e-4e87-8c69-5fd403df9470)
  5274. )
  5275. (label "~{STEPS}" (at 24.13 177.8 180)
  5276. (effects (font (size 1.27 1.27)) (justify right bottom))
  5277. (uuid fe15bfaa-dcda-4806-8d15-02807e914ad4)
  5278. )
  5279. (global_label "SCL_3V3" (shape input) (at 29.972 137.16 180) (fields_autoplaced)
  5280. (effects (font (size 1.27 1.27)) (justify right))
  5281. (uuid 95b348ce-a1ec-4474-b8ff-6454bee5f80d)
  5282. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 19.6649 137.0806 0)
  5283. (effects (font (size 1.27 1.27)) (justify right) hide)
  5284. )
  5285. )
  5286. (global_label "nRST" (shape input) (at 204.47 156.21 180) (fields_autoplaced)
  5287. (effects (font (size 1.27 1.27)) (justify right))
  5288. (uuid d6984b42-b9a8-4892-9bee-b20ffcb9eedf)
  5289. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at -45.72 10.16 0)
  5290. (effects (font (size 1.27 1.27)) hide)
  5291. )
  5292. )
  5293. (global_label "nRST" (shape input) (at 250.19 146.05 180) (fields_autoplaced)
  5294. (effects (font (size 1.27 1.27)) (justify right))
  5295. (uuid d8dc9b6c-67d0-4a0d-a791-6f7d43ef3652)
  5296. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  5297. (effects (font (size 1.27 1.27)) hide)
  5298. )
  5299. )
  5300. (global_label "prog_stusb" (shape input) (at 79.756 111.76 180) (fields_autoplaced)
  5301. (effects (font (size 1.27 1.27)) (justify right))
  5302. (uuid f6239217-956e-431e-bc03-d3b89202f86b)
  5303. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 67.1508 111.6806 0)
  5304. (effects (font (size 1.27 1.27)) (justify right) hide)
  5305. )
  5306. )
  5307. (global_label "SDA_3V3" (shape input) (at 29.972 139.7 180) (fields_autoplaced)
  5308. (effects (font (size 1.27 1.27)) (justify right))
  5309. (uuid f6cf5603-b183-4632-9453-2e800c25ea22)
  5310. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 19.6045 139.6206 0)
  5311. (effects (font (size 1.27 1.27)) (justify right) hide)
  5312. )
  5313. )
  5314. (symbol (lib_id "Mechanical:MountingHole") (at 26.67 22.86 0) (unit 1)
  5315. (in_bom yes) (on_board yes)
  5316. (uuid 00000000-0000-0000-0000-000060f2641d)
  5317. (property "Reference" "H1" (id 0) (at 29.21 21.6916 0)
  5318. (effects (font (size 1.27 1.27)) (justify left))
  5319. )
  5320. (property "Value" "MountingHole" (id 1) (at 29.21 24.003 0)
  5321. (effects (font (size 1.27 1.27)) (justify left))
  5322. )
  5323. (property "Footprint" "MountingHole:MountingHole_3.2mm_M3" (id 2) (at 26.67 22.86 0)
  5324. (effects (font (size 1.27 1.27)) hide)
  5325. )
  5326. (property "Datasheet" "~" (id 3) (at 26.67 22.86 0)
  5327. (effects (font (size 1.27 1.27)) hide)
  5328. )
  5329. (property "LCSC" "DNP" (id 4) (at 26.67 22.86 0)
  5330. (effects (font (size 1.27 1.27)) hide)
  5331. )
  5332. )
  5333. (symbol (lib_id "Mechanical:MountingHole") (at 26.67 27.94 0) (unit 1)
  5334. (in_bom yes) (on_board yes)
  5335. (uuid 00000000-0000-0000-0000-000060f2c7b9)
  5336. (property "Reference" "H2" (id 0) (at 29.21 26.7716 0)
  5337. (effects (font (size 1.27 1.27)) (justify left))
  5338. )
  5339. (property "Value" "MountingHole" (id 1) (at 29.21 29.083 0)
  5340. (effects (font (size 1.27 1.27)) (justify left))
  5341. )
  5342. (property "Footprint" "MountingHole:MountingHole_3.2mm_M3" (id 2) (at 26.67 27.94 0)
  5343. (effects (font (size 1.27 1.27)) hide)
  5344. )
  5345. (property "Datasheet" "~" (id 3) (at 26.67 27.94 0)
  5346. (effects (font (size 1.27 1.27)) hide)
  5347. )
  5348. (property "LCSC" "DNP" (id 4) (at 26.67 27.94 0)
  5349. (effects (font (size 1.27 1.27)) hide)
  5350. )
  5351. )
  5352. (symbol (lib_id "Mechanical:MountingHole") (at 26.67 33.02 0) (unit 1)
  5353. (in_bom yes) (on_board yes)
  5354. (uuid 00000000-0000-0000-0000-000060f34430)
  5355. (property "Reference" "H3" (id 0) (at 29.21 31.8516 0)
  5356. (effects (font (size 1.27 1.27)) (justify left))
  5357. )
  5358. (property "Value" "MountingHole" (id 1) (at 29.21 34.163 0)
  5359. (effects (font (size 1.27 1.27)) (justify left))
  5360. )
  5361. (property "Footprint" "MountingHole:MountingHole_3.2mm_M3" (id 2) (at 26.67 33.02 0)
  5362. (effects (font (size 1.27 1.27)) hide)
  5363. )
  5364. (property "Datasheet" "~" (id 3) (at 26.67 33.02 0)
  5365. (effects (font (size 1.27 1.27)) hide)
  5366. )
  5367. (property "LCSC" "DNP" (id 4) (at 26.67 33.02 0)
  5368. (effects (font (size 1.27 1.27)) hide)
  5369. )
  5370. )
  5371. (symbol (lib_id "Mechanical:MountingHole") (at 26.67 38.1 0) (unit 1)
  5372. (in_bom yes) (on_board yes)
  5373. (uuid 00000000-0000-0000-0000-000060f360e1)
  5374. (property "Reference" "H4" (id 0) (at 29.21 36.9316 0)
  5375. (effects (font (size 1.27 1.27)) (justify left))
  5376. )
  5377. (property "Value" "MountingHole" (id 1) (at 29.21 39.243 0)
  5378. (effects (font (size 1.27 1.27)) (justify left))
  5379. )
  5380. (property "Footprint" "MountingHole:MountingHole_3.2mm_M3" (id 2) (at 26.67 38.1 0)
  5381. (effects (font (size 1.27 1.27)) hide)
  5382. )
  5383. (property "Datasheet" "~" (id 3) (at 26.67 38.1 0)
  5384. (effects (font (size 1.27 1.27)) hide)
  5385. )
  5386. (property "LCSC" "DNP" (id 4) (at 26.67 38.1 0)
  5387. (effects (font (size 1.27 1.27)) hide)
  5388. )
  5389. )
  5390. (symbol (lib_id "sm6uax:STM32F730Z8T6") (at 29.21 78.74 0) (unit 2)
  5391. (in_bom yes) (on_board yes)
  5392. (uuid 00000000-0000-0000-0000-000060f41cbf)
  5393. (property "Reference" "U1" (id 0) (at 43.18 72.009 0))
  5394. (property "Value" "STM32F730Z8T6" (id 1) (at 43.18 74.3204 0))
  5395. (property "Footprint" "Greaseweazle:STMicroelectronics-LQFP144-1A-0-3-IPC_A" (id 2) (at 29.21 68.58 0)
  5396. (effects (font (size 1.27 1.27)) (justify left) hide)
  5397. )
  5398. (property "Datasheet" "https://www.st.com/resource/en/datasheet/stm32f730r8.pdf" (id 3) (at 29.21 66.04 0)
  5399. (effects (font (size 1.27 1.27)) (justify left) hide)
  5400. )
  5401. (property "LCSC" "C508478" (id 4) (at 29.21 78.74 0)
  5402. (effects (font (size 1.27 1.27)) hide)
  5403. )
  5404. (pin "106" (uuid a8c3a219-f369-4c85-ba26-945442b9698b))
  5405. (pin "107" (uuid a30d8973-30e5-407e-8ed2-8249cce59363))
  5406. (pin "108" (uuid cc67b6f6-8a7e-4c54-81f2-0658aec2d9ac))
  5407. (pin "120" (uuid 4e321d3e-e044-4f61-a638-be0c8c311a97))
  5408. (pin "121" (uuid a75bc01d-37f0-48f8-95d0-bc545329fc56))
  5409. (pin "130" (uuid a534cb3c-3026-43e3-bd1b-6d61d20fb83f))
  5410. (pin "131" (uuid bd6a76f2-9ceb-47fe-96a2-58b991e26334))
  5411. (pin "138" (uuid 44316e54-0cee-4e63-b166-19214f1554a2))
  5412. (pin "143" (uuid e761cc5c-0717-4901-a85b-15fffd30ebcb))
  5413. (pin "144" (uuid 8ab1ac55-9bb2-4855-9084-fcef55c090f6))
  5414. (pin "16" (uuid d76951c7-90df-44ef-9dcf-7210c88290e4))
  5415. (pin "17" (uuid 6e5366e5-7080-484b-85e9-c5c4f30e753b))
  5416. (pin "25" (uuid 6a4835f3-a4a1-49ab-ab66-043ac65139d3))
  5417. (pin "30" (uuid 6767558b-8dd2-496c-baac-4d9be646e323))
  5418. (pin "31" (uuid 9512ac8b-8dff-43e9-9e11-10ee644d2267))
  5419. (pin "32" (uuid 55b84cb4-395b-4252-a790-b9f0dcd0732e))
  5420. (pin "33" (uuid 76c79972-a58d-4707-8646-2c7f7214fc85))
  5421. (pin "38" (uuid c878c2eb-9c7e-4340-9d79-e0098685d083))
  5422. (pin "39" (uuid a41f4944-f406-4570-bdd5-bd77844d2b14))
  5423. (pin "51" (uuid a164207d-01bf-42fe-b8da-a52533a5de36))
  5424. (pin "52" (uuid fafe7494-c2ea-4e1e-93bd-c6bc5aed0c60))
  5425. (pin "6" (uuid 177d63bc-6c81-445e-97ef-2c8ae49d2bad))
  5426. (pin "61" (uuid b662713a-c52f-4d24-bac4-0376034f0a96))
  5427. (pin "62" (uuid 8885be88-c4e7-4b1a-b1bf-18ae7a503cb8))
  5428. (pin "71" (uuid 5b89939f-5974-4042-b685-3f0ee2e9cc94))
  5429. (pin "72" (uuid 610d8a72-d541-4ed1-bcca-7c61e2720169))
  5430. (pin "75" (uuid 235fe9d9-0957-462d-aee2-1e8aa0c26291))
  5431. (pin "76" (uuid 0d6e36a7-73f6-42fb-9481-e7cd9650c15f))
  5432. (pin "85" (uuid 8a97d427-b567-4036-924f-a991bc9af9dd))
  5433. (pin "86" (uuid d4fa08a5-d91d-4856-b922-e1cfa927a00c))
  5434. (pin "94" (uuid 5aeb1d53-41d9-4803-8b99-0c6a2207fd90))
  5435. (pin "95" (uuid 906984d0-0843-44fe-8c58-61f0ac540375))
  5436. (pin "100" (uuid 42482779-f9f2-40ab-baf7-4c1790415678))
  5437. (pin "101" (uuid e3ccee67-8018-467d-8b07-397d5feb3047))
  5438. (pin "102" (uuid 364429d4-c2db-4b92-b5b3-81a955855816))
  5439. (pin "103" (uuid 2c2edfd1-0910-4683-9b11-324fb21e0d16))
  5440. (pin "104" (uuid 8588d019-3df7-4e6c-99b4-c25e560e198f))
  5441. (pin "105" (uuid 5ff816d2-14fe-422a-aec9-0030719e3ff6))
  5442. (pin "109" (uuid 732cf7f1-1497-49fb-9df9-283f13bc9404))
  5443. (pin "110" (uuid 8afe3ccb-06c4-449f-a360-cd097848bd4d))
  5444. (pin "111" (uuid 26551ff6-d2b6-499a-9b1f-76cc044dd976))
  5445. (pin "112" (uuid 4c8451c7-cce3-4abc-89c4-dc2ac5202733))
  5446. (pin "113" (uuid ad58f393-9ae7-4f86-afbb-9666afbf3eb9))
  5447. (pin "114" (uuid 12ab9aa0-7650-4363-b78e-49387aff44ac))
  5448. (pin "115" (uuid 29bdf366-29cb-4aba-a242-14bed940e319))
  5449. (pin "116" (uuid 05cb53dc-04d8-46bb-851d-dc8d2852fc88))
  5450. (pin "117" (uuid d6f1af51-0e95-41dd-a8b8-9ae612c65faa))
  5451. (pin "118" (uuid 7fc5bab0-7e23-48c7-8069-9d335e1f094f))
  5452. (pin "119" (uuid 75565b0e-79d0-4bb9-8c23-bac6cbf61dc1))
  5453. (pin "122" (uuid 8c195c07-ef74-48f2-84eb-404421262d70))
  5454. (pin "123" (uuid 5deaca77-ce5d-4538-bbaa-4d5f26accafd))
  5455. (pin "133" (uuid bac6dc4c-de97-4edb-9ea2-b15d3b1814fc))
  5456. (pin "134" (uuid ca4119e7-0ccd-4468-af69-690a2633ead6))
  5457. (pin "135" (uuid 60daeeeb-ed6d-40d2-803e-e5526dc10d0e))
  5458. (pin "136" (uuid 7ec119d9-9cd1-4e53-8ad0-bc8cee5fc3fd))
  5459. (pin "137" (uuid f3e96e9a-d0a4-412a-8548-1b08376f1473))
  5460. (pin "139" (uuid a43a8018-3e71-4d1f-97fa-068c488081d4))
  5461. (pin "140" (uuid ca8f82f2-88a8-426c-8f24-a25219306dd1))
  5462. (pin "26" (uuid 17282933-a81a-4b61-8ca9-db5ca090bd86))
  5463. (pin "27" (uuid cadab07e-00a4-4e4a-b247-861666897cd6))
  5464. (pin "28" (uuid 2189d1be-0ed2-4565-afed-3c37f89f419d))
  5465. (pin "29" (uuid a6c2c227-1aac-42d4-a023-22a436a5d746))
  5466. (pin "34" (uuid 2fa59316-d176-4553-aee4-a43b611b0503))
  5467. (pin "35" (uuid 11f41cfe-3fc1-4e7b-8256-ae3816fc9398))
  5468. (pin "36" (uuid b8cfb57c-c563-47fd-969c-7b1c7851ffe7))
  5469. (pin "37" (uuid 74d6a48f-dc35-488c-8425-9e6684eb439c))
  5470. (pin "40" (uuid 6dd26538-ec73-4f8d-827f-8d03adf27aa0))
  5471. (pin "41" (uuid 1dec311a-aa54-4a68-a19e-4a94a75ae4be))
  5472. (pin "42" (uuid 449aa4fd-01df-4352-b690-80e85a4798b8))
  5473. (pin "43" (uuid 4f9e6cae-fab3-4485-8e9d-93d0810a8d1e))
  5474. (pin "44" (uuid 5ac6169e-4082-4f07-86af-bbbe1039f563))
  5475. (pin "45" (uuid f3dafbe0-98f5-43c0-a9b4-9aa3fcdaa621))
  5476. (pin "46" (uuid 68759b10-ad4f-4ff4-8fe7-98d34bd21274))
  5477. (pin "47" (uuid 24fb8ab1-dba6-4a17-9e07-642a7d579224))
  5478. (pin "48" (uuid a3d30bdf-c68b-4ea0-97c2-1ef75d6f7f78))
  5479. (pin "69" (uuid 03133b52-4c75-4a2b-a5da-286e63de596a))
  5480. (pin "7" (uuid 38c640a4-73cd-4a06-aae4-d89190ab1acc))
  5481. (pin "70" (uuid ea404c26-60ae-403d-bc79-976a0d3ac5e2))
  5482. (pin "73" (uuid c4e3d562-90f9-4653-bc60-00a5d8001f40))
  5483. (pin "74" (uuid 9280e48f-bc81-469e-897a-a0d1e8f16506))
  5484. (pin "77" (uuid d5999206-eb84-4af8-bdb9-b2b0a802279d))
  5485. (pin "78" (uuid 1bf4d2d7-d987-4596-9a7d-e95a7d391735))
  5486. (pin "79" (uuid 09c41a12-7105-4f5b-ba67-01f5510a9d75))
  5487. (pin "8" (uuid c7420b7d-0c35-477a-a996-b9e7e88b90ba))
  5488. (pin "80" (uuid 6aadae28-7197-43a0-ada3-0c09939cd024))
  5489. (pin "81" (uuid 7140ec3e-8241-4c98-9305-3e76208507dc))
  5490. (pin "82" (uuid a8a7dad5-f843-4c5a-b6f9-e002393e1baf))
  5491. (pin "83" (uuid 64bf311b-f54a-4dee-a743-fade97165da2))
  5492. (pin "84" (uuid 90e33c19-4c6f-4ef5-8114-69630f997371))
  5493. (pin "87" (uuid a7de3a40-26af-41ea-a03a-cb1cca262e27))
  5494. (pin "88" (uuid c7ff192a-cc63-4eb7-9ae1-ff75956be99c))
  5495. (pin "9" (uuid aacc088b-2901-4053-9010-eb52148e7f6d))
  5496. (pin "96" (uuid 101b6eaf-af0e-4209-a274-ca7157d23f85))
  5497. (pin "97" (uuid 7ad57f9c-b465-4d3d-8576-fb4f8bda29ba))
  5498. (pin "98" (uuid d1d2ca14-a057-486d-b8ae-dcc5a5c5bab8))
  5499. (pin "99" (uuid f3135e8c-47df-4d28-8958-6b5d38f6bcea))
  5500. (pin "1" (uuid bbb5607e-acf0-4a1a-b75b-ae4d6aaf5038))
  5501. (pin "10" (uuid b9ac2921-cba5-4e5e-b5d6-c9623722e4d5))
  5502. (pin "11" (uuid 9160bd7c-b1e8-4696-a277-d1ed726202fe))
  5503. (pin "12" (uuid 8ab99e8f-2f82-48ee-8bf9-bf07876cf96c))
  5504. (pin "124" (uuid 2d047ac0-e4c7-41d2-8948-269f409bfaf1))
  5505. (pin "125" (uuid 747a5871-16a4-4f32-9871-32e2b6bbb297))
  5506. (pin "126" (uuid 9bb66bfb-fa7e-4c57-bc52-ab0ee14f65ab))
  5507. (pin "127" (uuid 8a5b4b25-6778-4cd2-9ca7-f0bec2a2f512))
  5508. (pin "128" (uuid 742e5992-cc0c-47c2-b78c-c49207a3a704))
  5509. (pin "129" (uuid 7541ecb9-70ed-493a-9ea6-9cf2bc588ef6))
  5510. (pin "13" (uuid 143e4150-f8a5-4a7f-a5bd-1d901ec2fd38))
  5511. (pin "132" (uuid e3e091d1-b73f-4b26-8076-61ee26e42211))
  5512. (pin "14" (uuid 2d652106-8809-468d-8e8c-7daa7f2af06f))
  5513. (pin "141" (uuid dad998fb-b89c-4cc0-8dd4-efc0862158c1))
  5514. (pin "142" (uuid b6a6433c-f816-4b82-96bf-4aebf518aa2f))
  5515. (pin "15" (uuid bd2b03d3-7e3b-463f-8f61-4407863a9ba9))
  5516. (pin "18" (uuid b0be13f4-7a23-4b37-9260-443accd9cba8))
  5517. (pin "19" (uuid b65a8839-6d75-4581-b3f8-213aefdf1be6))
  5518. (pin "2" (uuid 54dc09fb-becf-4481-88d7-c6c2ac3fe6df))
  5519. (pin "20" (uuid af540457-77e9-470d-9dde-018647ac814d))
  5520. (pin "21" (uuid f7c7f8c7-1537-434d-afa6-03fbbd7a6e82))
  5521. (pin "22" (uuid 782c7201-1ac8-439b-b4d0-e3a2ef01eb31))
  5522. (pin "23" (uuid 03294b1f-492f-4536-a655-787400168d26))
  5523. (pin "24" (uuid 1afc4923-cfac-412d-9cbb-f2fcf7af815d))
  5524. (pin "3" (uuid ba710487-e3b3-4443-93f1-01113e8c74ba))
  5525. (pin "4" (uuid 32bcd295-cd24-40e7-a67e-804342774df7))
  5526. (pin "49" (uuid 7f4cc1fc-2bc6-4c84-a3be-79579666f075))
  5527. (pin "5" (uuid ea7446f4-dd41-420d-8031-fb36e90fc95a))
  5528. (pin "50" (uuid 11b5b0e6-98d5-4eee-98fb-bb00ebe1f9d2))
  5529. (pin "53" (uuid 1496b6d4-e091-4ff3-b505-fb944079e83f))
  5530. (pin "54" (uuid fb181a9b-e416-4743-91d4-ca34323e6af7))
  5531. (pin "55" (uuid af422a5f-7c49-4665-b72f-14a8b722fbee))
  5532. (pin "56" (uuid 63a0939b-6567-46d2-a101-4d79d84ec80d))
  5533. (pin "57" (uuid 2943a394-6d2a-4724-9337-7a8c8d89b171))
  5534. (pin "58" (uuid b17af7f3-a858-4169-8fc8-5f51df1965cc))
  5535. (pin "59" (uuid 5e148cc3-3303-42cf-90b8-e4ee7b783186))
  5536. (pin "60" (uuid 2040cd84-0470-48f7-acaf-3167758a56cd))
  5537. (pin "63" (uuid 7d61ae21-ae4e-4280-9849-8c14a4100837))
  5538. (pin "64" (uuid be3d08d9-a590-4fcf-b29c-0b4d23f98143))
  5539. (pin "65" (uuid 0e3316c2-96d6-408a-ac07-c8603412c150))
  5540. (pin "66" (uuid bc9b34ef-81fa-4913-83de-6ba9313b41f6))
  5541. (pin "67" (uuid b3417b89-6cab-49c1-941e-807e3a491272))
  5542. (pin "68" (uuid 2df5cac7-d354-45d1-8601-3b32890a3309))
  5543. (pin "89" (uuid 8f416b4b-d238-4f2f-803e-f2b08b1663fb))
  5544. (pin "90" (uuid 96b33583-d157-4e7e-b75e-d2d18766eb4d))
  5545. (pin "91" (uuid 8a79c87e-de1c-41a5-a32c-6b77d03b3618))
  5546. (pin "92" (uuid 2a8e8e69-5112-47ec-adaf-21ea53ec1226))
  5547. (pin "93" (uuid 92c55cef-81cc-4b31-9b35-4f0b4ef98074))
  5548. )
  5549. (symbol (lib_id "Greaseweazle:STM32F730Z8T6") (at 78.74 78.74 0) (unit 3)
  5550. (in_bom yes) (on_board yes)
  5551. (uuid 00000000-0000-0000-0000-000060f442ce)
  5552. (property "Reference" "U1" (id 0) (at 92.71 72.009 0))
  5553. (property "Value" "STM32F730Z8T6" (id 1) (at 92.71 74.3204 0))
  5554. (property "Footprint" "Greaseweazle:STMicroelectronics-LQFP144-1A-0-3-IPC_A" (id 2) (at 78.74 68.58 0)
  5555. (effects (font (size 1.27 1.27)) (justify left) hide)
  5556. )
  5557. (property "Datasheet" "https://www.st.com/resource/en/datasheet/stm32f730r8.pdf" (id 3) (at 78.74 66.04 0)
  5558. (effects (font (size 1.27 1.27)) (justify left) hide)
  5559. )
  5560. (property "LCSC" "C508478" (id 4) (at 78.74 78.74 0)
  5561. (effects (font (size 1.27 1.27)) hide)
  5562. )
  5563. (pin "106" (uuid c39738c7-f989-47b6-9299-fd56155b3713))
  5564. (pin "107" (uuid 7531f7b1-26b9-4496-bc67-9c04a3814083))
  5565. (pin "108" (uuid 342ff0de-02e9-46ba-b77f-72d16700e4e9))
  5566. (pin "120" (uuid 5ef156ac-d63c-4dee-9b95-8c2c34b6235b))
  5567. (pin "121" (uuid 5178afd9-61a8-4ad9-8160-95e57d88b3be))
  5568. (pin "130" (uuid 3c5980d3-a1f4-46d7-91e1-3ab1d6e96632))
  5569. (pin "131" (uuid d262eba6-5b43-4c4b-986d-fd4306755089))
  5570. (pin "138" (uuid 8a397129-a93c-4afb-aa87-501a2ac488e7))
  5571. (pin "143" (uuid 6b4e308f-3b5f-44d8-8b0b-4443b58c60ba))
  5572. (pin "144" (uuid f64d5c97-8df5-49a8-83a0-2d67d2d1080a))
  5573. (pin "16" (uuid 21bc88d0-523c-437f-afb2-ac94230513f3))
  5574. (pin "17" (uuid f2afeef5-2756-4b8c-96e8-010abc8821f2))
  5575. (pin "25" (uuid 4ec19b7c-af12-4464-89b7-b85c3d3a1478))
  5576. (pin "30" (uuid f7970699-e288-47f5-92a6-951bfc5398ea))
  5577. (pin "31" (uuid 2044d208-7f41-4af7-97a2-547985301345))
  5578. (pin "32" (uuid a1256fc9-c053-46da-a48a-200e92717834))
  5579. (pin "33" (uuid 079c0f14-ef71-4e76-8afd-a115b57f6bc0))
  5580. (pin "38" (uuid 8f994a63-5979-4697-8788-8880d7fb143c))
  5581. (pin "39" (uuid b6f6174a-21cc-491d-bfea-c42d97e6e16f))
  5582. (pin "51" (uuid 2316473e-23ff-43a4-99a1-ad7f993a57c8))
  5583. (pin "52" (uuid 43b4b2f6-21b2-415c-a57a-b272593b4666))
  5584. (pin "6" (uuid 1a007abf-59d3-4c77-8ea7-406a6fe23f41))
  5585. (pin "61" (uuid 308f9a56-3179-4be2-ab74-bae1fe2da1f6))
  5586. (pin "62" (uuid 7846a9f5-e595-4a16-8d2e-502997232cea))
  5587. (pin "71" (uuid e974b7d4-1646-48d7-81fd-40976770c160))
  5588. (pin "72" (uuid 6fbd35dc-a2f2-403f-a128-b1049fd604ec))
  5589. (pin "75" (uuid cb267294-d5bb-426e-8e66-b49d04fe3079))
  5590. (pin "76" (uuid d8272e64-4c14-4eed-8565-4d961e5bb5f0))
  5591. (pin "85" (uuid 1e1f6aa3-0d3b-470c-9f82-60244777e4d7))
  5592. (pin "86" (uuid dfb40137-5ce8-4137-9313-67d785a1fbfb))
  5593. (pin "94" (uuid 6fa951e5-ef2b-43f0-8602-ce742e546700))
  5594. (pin "95" (uuid 86e0260b-4a03-44ef-825c-afa574dfce06))
  5595. (pin "100" (uuid 2d49add9-f626-4c40-beb6-abf539c8ce3f))
  5596. (pin "101" (uuid f3cb0593-36cb-4e39-8aa9-eb397d0cdf2e))
  5597. (pin "102" (uuid 0746d5bd-eea3-4f49-b0fd-3e38b87962fd))
  5598. (pin "103" (uuid 92e6f68f-3eed-4dd4-b73a-078b81c1f281))
  5599. (pin "104" (uuid 5b12a5b4-b6ed-4adf-b96a-11a61e1df496))
  5600. (pin "105" (uuid e98e1f6a-3633-4887-86c7-370253c1fd7b))
  5601. (pin "109" (uuid 27fe3ab7-c259-4398-b792-98b198d63ef0))
  5602. (pin "110" (uuid 70a09bf0-5e27-4706-81bb-98a5cf06fcc9))
  5603. (pin "111" (uuid 082c820c-a252-4987-9aa1-4e3ceab0f64a))
  5604. (pin "112" (uuid b056f192-c747-4503-929d-f15b1b11f6c4))
  5605. (pin "113" (uuid 1b32183d-8670-48e1-927f-5e390c04274e))
  5606. (pin "114" (uuid e263ff84-ad54-438f-b868-ef432a538176))
  5607. (pin "115" (uuid 90ce14e9-2240-4d1b-8caa-7aa7f8bc9050))
  5608. (pin "116" (uuid f8ff3f29-85fa-4ccd-b8a4-9ad5ec04c3b7))
  5609. (pin "117" (uuid 4f8eb150-8b33-4152-bdb4-215462777009))
  5610. (pin "118" (uuid 823fabdd-e705-4a71-bb8a-92953057d1d5))
  5611. (pin "119" (uuid 18906d41-202e-4ddf-9bfd-9c64feead654))
  5612. (pin "122" (uuid 09542806-f64a-4084-8bcf-b12c1ffe9d5f))
  5613. (pin "123" (uuid bf67b7c1-2524-4040-8d06-f728ae3212a8))
  5614. (pin "133" (uuid 7fd0092c-f6cf-4fbf-bd6b-809035d1020b))
  5615. (pin "134" (uuid 5bbd43e1-cf89-43b6-92d2-f4b55c3adccd))
  5616. (pin "135" (uuid f4e2d5f6-a3c1-4482-a457-4ce92dae4e02))
  5617. (pin "136" (uuid 465e18a6-9790-4a3d-abf8-72f5b626b3ad))
  5618. (pin "137" (uuid 7e82f50b-2484-429a-8dcd-3f211ceb7569))
  5619. (pin "139" (uuid c8c5a77e-db06-41dd-8645-3ec0169c3c58))
  5620. (pin "140" (uuid 80022db3-47f6-43f7-87b1-fbb1081871ef))
  5621. (pin "26" (uuid 402693eb-d32f-4b92-b575-31422dda850b))
  5622. (pin "27" (uuid 97118eb4-3576-4300-b0b8-6c0b5ecb0c0b))
  5623. (pin "28" (uuid 67ede522-f4c0-4d48-9a20-2b0bb5976d62))
  5624. (pin "29" (uuid c6f1ba1e-61e2-4269-8812-4587b9c9c402))
  5625. (pin "34" (uuid 6d9ca7d0-d53d-472f-80b4-a14e2e3ea529))
  5626. (pin "35" (uuid 53790407-3f8b-45df-80de-fcef632ea575))
  5627. (pin "36" (uuid 2cb24424-ef15-46ea-a53f-c332059a0409))
  5628. (pin "37" (uuid 82f5eccd-674d-4b26-9afb-b0a4da2c7eb3))
  5629. (pin "40" (uuid 69d9b2b3-f9b0-4235-a7a8-2c8b886d61e6))
  5630. (pin "41" (uuid 7cee08cd-c504-4026-b4c3-3ca43bdae0c8))
  5631. (pin "42" (uuid 42972ff3-0a5c-4ae5-9147-ce24b73f4e88))
  5632. (pin "43" (uuid 287f6406-20c0-4430-baa5-6e713312673a))
  5633. (pin "44" (uuid 41009f2b-b7b8-4c73-a957-bddea2557205))
  5634. (pin "45" (uuid e25cf8fe-d0cd-4287-b923-fbe03ca7502a))
  5635. (pin "46" (uuid a08c6d62-434a-4f30-beb8-9a7d608612d3))
  5636. (pin "47" (uuid 4c74b97d-a243-463d-9e7f-7561d48a05f2))
  5637. (pin "48" (uuid 24742515-c21d-4b08-b24a-f3acd60d5875))
  5638. (pin "69" (uuid c474f2fc-4141-4cc8-b3f6-c5779d2f584a))
  5639. (pin "7" (uuid 05ca308e-df62-4d44-b49f-ec4dc441d2f1))
  5640. (pin "70" (uuid 494f9afa-6728-4d72-a088-1b61ac7cdedb))
  5641. (pin "73" (uuid 3c504fc8-8b76-414d-8623-88314c1f59e3))
  5642. (pin "74" (uuid 308df6f4-9077-4108-9839-cf6f6eca2987))
  5643. (pin "77" (uuid 7339917c-75f7-4f67-85ec-e2d58d5a2ac3))
  5644. (pin "78" (uuid 08319c56-4c4a-417b-b6a6-d132075c9723))
  5645. (pin "79" (uuid f0ca1cb4-f359-4de7-9d34-9d34ced97f66))
  5646. (pin "8" (uuid 1c65eae5-8d17-4f62-9119-f7787b94fd93))
  5647. (pin "80" (uuid a697e81e-1ef7-456a-80f6-cd5048461894))
  5648. (pin "81" (uuid 3c23f531-4e85-46dc-b45d-82bb9a17b821))
  5649. (pin "82" (uuid 567ffa8a-3d2b-4e14-b8e6-e1cbc43d554a))
  5650. (pin "83" (uuid 15733515-dbdb-4862-94fe-0fff1be346cf))
  5651. (pin "84" (uuid 9fb4f6fd-54e0-4230-8c27-bf920e0bd49c))
  5652. (pin "87" (uuid 0805e80f-375d-49c1-845e-4a9b68293704))
  5653. (pin "88" (uuid 7c7b1fd4-7b24-4f38-8b2b-4cdb97c22679))
  5654. (pin "9" (uuid 134888d2-8967-4aff-b66d-087435790005))
  5655. (pin "96" (uuid 85748bf1-cb92-4dd0-879a-e1e5fdccd1ac))
  5656. (pin "97" (uuid 6c183b40-ab48-4ab3-baec-243e17c55fe3))
  5657. (pin "98" (uuid d6f2ec9f-9c52-44cc-9cbc-4e0a4a4c308a))
  5658. (pin "99" (uuid 423f4126-8332-4865-b443-a213f055dfe1))
  5659. (pin "1" (uuid f3639215-b551-487d-ae8c-60273667099a))
  5660. (pin "10" (uuid e33d7611-a840-4788-a1e6-68497c6522b2))
  5661. (pin "11" (uuid b24ce7c7-0154-43f1-b8a3-d77f7357f530))
  5662. (pin "12" (uuid 4a258637-74af-4e31-9499-73ec42eb090e))
  5663. (pin "124" (uuid cf06ffd0-8420-4e50-a7fb-7ba5b412320a))
  5664. (pin "125" (uuid adf48ab3-4e39-4561-abfa-0696b06a797e))
  5665. (pin "126" (uuid a89423a0-ed83-46d2-9347-3f642d13e46e))
  5666. (pin "127" (uuid b179feb9-2f49-4e0e-a200-fc5a38d984ae))
  5667. (pin "128" (uuid 7cd7f63a-c80d-4e72-9ceb-3478c0ef1738))
  5668. (pin "129" (uuid 9b9e4f49-fa16-42db-844d-6f607afeb674))
  5669. (pin "13" (uuid 7aa76fbf-6d13-485a-8bf9-4e821ab52578))
  5670. (pin "132" (uuid 429a8d1d-c10a-4b01-ac24-ecfeb9734155))
  5671. (pin "14" (uuid 10f95310-255b-493c-ac24-50ebb7de2e30))
  5672. (pin "141" (uuid 32e1aed6-e06d-402f-b13b-cddeae58cd61))
  5673. (pin "142" (uuid 8c9b65b8-604e-4402-84ed-ae1f6870ba9f))
  5674. (pin "15" (uuid 789a3be2-3ddf-4185-a259-98f054b74afa))
  5675. (pin "18" (uuid 720d84a5-d456-43d5-8a65-667f26a4e24a))
  5676. (pin "19" (uuid 6f11d598-f7c5-44d6-806f-724d5c4e20f0))
  5677. (pin "2" (uuid c0e39e81-4fdf-4cb3-9d6d-7e082337b449))
  5678. (pin "20" (uuid 06fbe29b-b299-4f32-a6dd-c90c02612952))
  5679. (pin "21" (uuid 21913590-4e2f-43fa-bbd7-cb7f24ddacd5))
  5680. (pin "22" (uuid e6e13d1c-360e-4fa0-9b92-15c11b8ce28d))
  5681. (pin "23" (uuid 0ca10eb8-7e39-4592-a016-4b54e43b5dfb))
  5682. (pin "24" (uuid 8d3c9ae7-a390-4a71-aed1-567e25c5f448))
  5683. (pin "3" (uuid 17a1b522-2ee3-4822-93fe-d4342cbed430))
  5684. (pin "4" (uuid 7562f07e-e5bb-40bf-9bac-e4fbbb2b9fe8))
  5685. (pin "49" (uuid e346bbd7-a637-4efd-888e-008ad9afccf3))
  5686. (pin "5" (uuid bc418028-adfa-4d91-91e8-622122f2a484))
  5687. (pin "50" (uuid 6d6a02c4-9d75-4f69-8d2b-d9dac1f98fb9))
  5688. (pin "53" (uuid c80f4224-5cb4-44fa-8af7-ac2df201f153))
  5689. (pin "54" (uuid d757e929-0349-4135-8c0f-677905da760b))
  5690. (pin "55" (uuid 22a0b7ff-6314-4a7c-939b-f23f858ed1b1))
  5691. (pin "56" (uuid b17dc3ba-b6c2-441d-923c-8e9e359300be))
  5692. (pin "57" (uuid 50b0b2da-09f5-4fbc-9ecb-6495e9c1af44))
  5693. (pin "58" (uuid b1dd9b3e-a7ee-4111-ab24-3bd333096d17))
  5694. (pin "59" (uuid cf20bfb1-8393-4551-8655-dcac7a3c32ba))
  5695. (pin "60" (uuid f1c1d2c5-60a1-4d40-b95d-5f8af761ab9f))
  5696. (pin "63" (uuid 80bf846b-a650-46bb-9f84-c7cc6d8ad54b))
  5697. (pin "64" (uuid deb52071-5967-4bea-abd3-18ec89d3a79e))
  5698. (pin "65" (uuid 53bbcfdd-728c-4b1c-891d-759e34ac482f))
  5699. (pin "66" (uuid d8f76f48-be08-432a-ba04-7fc13b308ec8))
  5700. (pin "67" (uuid 505a33df-d18d-42f5-b21a-0d35edec1115))
  5701. (pin "68" (uuid ac33d4ae-6cf8-443e-a0ba-e1364b8b2396))
  5702. (pin "89" (uuid d469820a-9cb5-40d5-b8ac-bedb08233feb))
  5703. (pin "90" (uuid c0d8c685-a6f1-4a7f-b389-a18c80b6d37c))
  5704. (pin "91" (uuid a9303d62-f256-43ac-bb4a-8797c11ca40d))
  5705. (pin "92" (uuid e3e0c89f-2ade-4dfb-a48f-3e2e411609ed))
  5706. (pin "93" (uuid 4848bfef-8d8f-406b-a025-f4f77ca61ae7))
  5707. )
  5708. (symbol (lib_id "Connector_Generic:Conn_02x17_Odd_Even") (at 167.64 85.09 0) (unit 1)
  5709. (in_bom yes) (on_board yes)
  5710. (uuid 00000000-0000-0000-0000-000060f4c92b)
  5711. (property "Reference" "J1" (id 0) (at 168.91 59.2582 0))
  5712. (property "Value" "Conn_02x17_Odd_Even" (id 1) (at 168.91 61.5696 0))
  5713. (property "Footprint" "Connector_IDC:IDC-Header_2x17_P2.54mm_Vertical" (id 2) (at 167.64 85.09 0)
  5714. (effects (font (size 1.27 1.27)) hide)
  5715. )
  5716. (property "Datasheet" "~" (id 3) (at 167.64 85.09 0)
  5717. (effects (font (size 1.27 1.27)) hide)
  5718. )
  5719. (property "LCSC" "C707014" (id 4) (at 167.64 85.09 0)
  5720. (effects (font (size 1.27 1.27)) hide)
  5721. )
  5722. (pin "1" (uuid b8cc6224-2f81-46b6-a77a-773baaf2b6d0))
  5723. (pin "10" (uuid 0aa86141-1459-4a87-9396-130aede42323))
  5724. (pin "11" (uuid 12f39ff6-5f59-4b51-a71a-df15b8dcf55b))
  5725. (pin "12" (uuid 8765664d-be73-4392-8c1b-8c6b12024e16))
  5726. (pin "13" (uuid 93040d74-6406-463e-a97a-a48b20506717))
  5727. (pin "14" (uuid 17c3a4cd-f30e-4042-b755-1ee0a4149172))
  5728. (pin "15" (uuid 71f79fc4-fa4c-48ce-bde7-3b66cd98e9ff))
  5729. (pin "16" (uuid d4b4f1c6-f9f0-4c00-8754-53e7b5e5e549))
  5730. (pin "17" (uuid de15fe5d-45d2-4dca-ba71-66ab9f54444b))
  5731. (pin "18" (uuid 0214ea21-f575-44a3-b503-44671f335a8e))
  5732. (pin "19" (uuid 833feb1f-5f9c-4353-9923-1e7f4dc21a46))
  5733. (pin "2" (uuid 19a3b9b1-d4e3-4222-a8ec-927f2152e5bb))
  5734. (pin "20" (uuid ab2b3c3d-85e3-4392-8f47-e18919aff965))
  5735. (pin "21" (uuid 4e50f9bc-3e87-4c13-870e-8a8fad85b563))
  5736. (pin "22" (uuid cf81a8d6-b162-4b49-b351-4b76e65b25ec))
  5737. (pin "23" (uuid c3f298a1-f22c-4d8c-a17a-8a0ae31cd9ae))
  5738. (pin "24" (uuid 4b66930d-e1f9-40d8-93e4-e8a8841729c3))
  5739. (pin "25" (uuid d5306c93-9546-4845-8d44-737008a08930))
  5740. (pin "26" (uuid 161d4802-fde1-46e2-a40e-e7d76d4c0ed0))
  5741. (pin "27" (uuid 4d597a20-72a5-4a02-bc54-623ca5389e9a))
  5742. (pin "28" (uuid affee555-ded7-46de-bff4-a724c2bcaa09))
  5743. (pin "29" (uuid 36a622e5-4091-4a5e-bae0-b659b4043931))
  5744. (pin "3" (uuid 23c58602-2348-4da2-9507-8278ff434ceb))
  5745. (pin "30" (uuid 13c91444-9126-4814-8b6a-ce70c8b9abe0))
  5746. (pin "31" (uuid 0b9077a1-b269-4aa9-aaed-746706b0433a))
  5747. (pin "32" (uuid 6fc77fe5-79e6-450e-b23d-5030c1d9462e))
  5748. (pin "33" (uuid 8dc812a5-09db-44f1-853e-af14748d8d08))
  5749. (pin "34" (uuid 0131a8bc-235f-48c3-b245-7e00786eaf66))
  5750. (pin "4" (uuid ebf7c116-2f1b-4bae-8c7f-65453f8cf504))
  5751. (pin "5" (uuid 7b9869b5-7af6-411e-acd5-a10638854032))
  5752. (pin "6" (uuid 448d47e1-fe0b-4e38-aff7-c747fbf3150a))
  5753. (pin "7" (uuid 205f2f89-709d-4ac9-aae2-d82248cd0ff8))
  5754. (pin "8" (uuid 27f20f52-9431-4e60-a894-1ea89f12d744))
  5755. (pin "9" (uuid c7cbdd03-1f8f-4c83-b4b0-98f201e67593))
  5756. )
  5757. (symbol (lib_id "power:GND") (at 154.94 107.95 0) (unit 1)
  5758. (in_bom yes) (on_board yes)
  5759. (uuid 00000000-0000-0000-0000-000060f79d03)
  5760. (property "Reference" "#PWR01" (id 0) (at 154.94 114.3 0)
  5761. (effects (font (size 1.27 1.27)) hide)
  5762. )
  5763. (property "Value" "GND" (id 1) (at 155.067 112.3442 0))
  5764. (property "Footprint" "" (id 2) (at 154.94 107.95 0)
  5765. (effects (font (size 1.27 1.27)) hide)
  5766. )
  5767. (property "Datasheet" "" (id 3) (at 154.94 107.95 0)
  5768. (effects (font (size 1.27 1.27)) hide)
  5769. )
  5770. (pin "1" (uuid f6ca2bfd-4c67-4258-aa2f-7ddc30211957))
  5771. )
  5772. (symbol (lib_id "Device:R_Small") (at 148.59 105.41 270) (unit 1)
  5773. (in_bom yes) (on_board yes)
  5774. (uuid 00000000-0000-0000-0000-000060f7b3e5)
  5775. (property "Reference" "R4" (id 0) (at 148.59 100.4316 90))
  5776. (property "Value" "3k" (id 1) (at 148.59 102.743 90))
  5777. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 148.59 105.41 0)
  5778. (effects (font (size 1.27 1.27)) hide)
  5779. )
  5780. (property "Datasheet" "~" (id 3) (at 148.59 105.41 0)
  5781. (effects (font (size 1.27 1.27)) hide)
  5782. )
  5783. (property "LCSC" "C137987" (id 4) (at 148.59 105.41 0)
  5784. (effects (font (size 1.27 1.27)) hide)
  5785. )
  5786. (pin "1" (uuid 76037a64-7f40-4d35-9914-f40473a56e64))
  5787. (pin "2" (uuid f2aee87f-c31d-42db-870e-2f0cf1ab9c8b))
  5788. )
  5789. (symbol (lib_id "Device:R_Small") (at 143.51 100.33 180) (unit 1)
  5790. (in_bom yes) (on_board yes)
  5791. (uuid 00000000-0000-0000-0000-000060f7de7e)
  5792. (property "Reference" "R3" (id 0) (at 145.0086 99.1616 0)
  5793. (effects (font (size 1.27 1.27)) (justify right))
  5794. )
  5795. (property "Value" "3k" (id 1) (at 145.0086 101.473 0)
  5796. (effects (font (size 1.27 1.27)) (justify right))
  5797. )
  5798. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 143.51 100.33 0)
  5799. (effects (font (size 1.27 1.27)) hide)
  5800. )
  5801. (property "Datasheet" "~" (id 3) (at 143.51 100.33 0)
  5802. (effects (font (size 1.27 1.27)) hide)
  5803. )
  5804. (property "LCSC" "C137987" (id 4) (at 143.51 100.33 0)
  5805. (effects (font (size 1.27 1.27)) hide)
  5806. )
  5807. (pin "1" (uuid e06a59e6-3afe-4857-8998-a5946749a3af))
  5808. (pin "2" (uuid 7dc2e59d-84c1-4673-a0c3-d287d43e80c1))
  5809. )
  5810. (symbol (lib_id "74xx:SN74LS07") (at 234.95 27.94 180) (unit 1)
  5811. (in_bom yes) (on_board yes)
  5812. (uuid 00000000-0000-0000-0000-000060f860dc)
  5813. (property "Reference" "U3" (id 0) (at 229.87 25.4 0))
  5814. (property "Value" "SN74LS07" (id 1) (at 245.11 24.13 0))
  5815. (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (id 2) (at 234.95 27.94 0)
  5816. (effects (font (size 1.27 1.27)) hide)
  5817. )
  5818. (property "Datasheet" "www.ti.com/lit/ds/symlink/sn74ls07.pdf" (id 3) (at 234.95 27.94 0)
  5819. (effects (font (size 1.27 1.27)) hide)
  5820. )
  5821. (property "LCSC" "C371970" (id 4) (at 234.95 27.94 0)
  5822. (effects (font (size 1.27 1.27)) hide)
  5823. )
  5824. (pin "1" (uuid 6295c533-797a-4550-b2d2-5bed7c2d6f23))
  5825. (pin "2" (uuid 6b6a5170-71ed-4b5e-8698-0c07fcb58794))
  5826. (pin "3" (uuid 7d7cc1d4-6cc2-4923-b237-8c291fdb9a3c))
  5827. (pin "4" (uuid f7b0b693-2513-47b9-aeef-714d278341db))
  5828. (pin "5" (uuid c18cc1a5-1f3f-485d-a7f6-8fa9503c5bb6))
  5829. (pin "6" (uuid e797eba5-831d-403a-8b6f-a498c6542d73))
  5830. (pin "8" (uuid f23ef44b-b108-435e-88d8-3ad988200627))
  5831. (pin "9" (uuid 07393278-bc07-4019-a186-45ddee27c076))
  5832. (pin "10" (uuid 8a90b1fa-7779-44bd-b306-42d5dcb90f52))
  5833. (pin "11" (uuid 9177e20f-cee1-48a3-b6ce-8d9ef3385007))
  5834. (pin "12" (uuid 59fff83b-b91b-4338-a572-dca004d974c6))
  5835. (pin "13" (uuid 22bfebf0-10ca-4b90-b3bf-d133492db6df))
  5836. (pin "14" (uuid ae95ed07-1a2c-4fb8-b076-1f926f7b4ec5))
  5837. (pin "7" (uuid 8eff2830-2ece-4c3b-8536-54def5632bac))
  5838. )
  5839. (symbol (lib_id "74xx:SN74LS07") (at 234.95 77.47 180) (unit 2)
  5840. (in_bom yes) (on_board yes)
  5841. (uuid 00000000-0000-0000-0000-000060f8e956)
  5842. (property "Reference" "U3" (id 0) (at 229.87 73.66 0))
  5843. (property "Value" "SN74LS07" (id 1) (at 245.11 73.66 0))
  5844. (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (id 2) (at 234.95 77.47 0)
  5845. (effects (font (size 1.27 1.27)) hide)
  5846. )
  5847. (property "Datasheet" "www.ti.com/lit/ds/symlink/sn74ls07.pdf" (id 3) (at 234.95 77.47 0)
  5848. (effects (font (size 1.27 1.27)) hide)
  5849. )
  5850. (property "LCSC" "C371970" (id 4) (at 234.95 77.47 0)
  5851. (effects (font (size 1.27 1.27)) hide)
  5852. )
  5853. (pin "1" (uuid 33ce77cd-72d9-4d90-9f8f-e3e1c7a6ad01))
  5854. (pin "2" (uuid b0c361d6-e612-4920-8d91-20a53c819a11))
  5855. (pin "3" (uuid 04c877dc-86e7-4d6b-b354-0ba706f86dc1))
  5856. (pin "4" (uuid fb33ce2b-9929-4774-84fa-8290a264fc87))
  5857. (pin "5" (uuid c358c362-2092-45c8-9934-baf8516b1380))
  5858. (pin "6" (uuid e6895e8a-5ece-467c-8fb7-c33570f39e0f))
  5859. (pin "8" (uuid b25302dd-7993-4845-b294-1ad4712cb99e))
  5860. (pin "9" (uuid ab4d3cc6-46c6-4604-bd23-c61d13cacd62))
  5861. (pin "10" (uuid c9e497d7-b15d-456f-9c26-2fce98bad4be))
  5862. (pin "11" (uuid 8c720165-7e83-498d-baaa-489fcf7bb69a))
  5863. (pin "12" (uuid b40af5e8-5c6e-46b4-b5f9-b4716a98f7d5))
  5864. (pin "13" (uuid 3d5b92b1-8c8a-49b5-8da7-afd940465501))
  5865. (pin "14" (uuid 6f9c746a-56ac-4c76-a21a-897a0cead77e))
  5866. (pin "7" (uuid 3bc032f9-a129-4835-b915-25c2cc7cd580))
  5867. )
  5868. (symbol (lib_id "74xx:SN74LS07") (at 234.95 87.63 180) (unit 3)
  5869. (in_bom yes) (on_board yes)
  5870. (uuid 00000000-0000-0000-0000-000060f9020d)
  5871. (property "Reference" "U3" (id 0) (at 229.87 83.82 0))
  5872. (property "Value" "SN74LS07" (id 1) (at 245.11 83.82 0))
  5873. (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (id 2) (at 234.95 87.63 0)
  5874. (effects (font (size 1.27 1.27)) hide)
  5875. )
  5876. (property "Datasheet" "www.ti.com/lit/ds/symlink/sn74ls07.pdf" (id 3) (at 234.95 87.63 0)
  5877. (effects (font (size 1.27 1.27)) hide)
  5878. )
  5879. (property "LCSC" "C371970" (id 4) (at 234.95 87.63 0)
  5880. (effects (font (size 1.27 1.27)) hide)
  5881. )
  5882. (pin "1" (uuid b3d545d7-ca49-41b0-aeb7-43f3ef287bcf))
  5883. (pin "2" (uuid 3a157836-bba8-4259-9898-c7b1aa9b2de6))
  5884. (pin "3" (uuid 3cc8c766-6e80-41c9-a677-dd3168184e6e))
  5885. (pin "4" (uuid c997ae15-1996-44cb-8cbc-80fa35181b1f))
  5886. (pin "5" (uuid c0ee9747-f834-4fbb-85a9-6f249f422fdb))
  5887. (pin "6" (uuid e9da25f2-a680-45c2-8f43-700de870251c))
  5888. (pin "8" (uuid 5c5d39b4-bf90-47ee-9448-adaacf91d9cf))
  5889. (pin "9" (uuid 6ab860d4-8d75-4a6a-9c49-60e7483ec2fa))
  5890. (pin "10" (uuid 373a2ee8-4c2e-43cc-919b-eb8ae5101a12))
  5891. (pin "11" (uuid 19aa0c28-d7af-4b27-bc95-76ef9163a977))
  5892. (pin "12" (uuid 3c09437a-e30a-4f41-b71c-e71bad1b70c4))
  5893. (pin "13" (uuid 31e5ca46-568d-4756-9a17-dc6517a34c67))
  5894. (pin "14" (uuid 71863c9a-6564-49bf-b012-d0c3d479fe17))
  5895. (pin "7" (uuid 001faff8-e9fa-443c-a958-92bf5039d37c))
  5896. )
  5897. (symbol (lib_id "74xx:SN74LS07") (at 234.95 57.15 180) (unit 4)
  5898. (in_bom yes) (on_board yes)
  5899. (uuid 00000000-0000-0000-0000-000060f91637)
  5900. (property "Reference" "U3" (id 0) (at 229.87 54.61 0))
  5901. (property "Value" "SN74LS07" (id 1) (at 245.11 53.34 0))
  5902. (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (id 2) (at 234.95 57.15 0)
  5903. (effects (font (size 1.27 1.27)) hide)
  5904. )
  5905. (property "Datasheet" "www.ti.com/lit/ds/symlink/sn74ls07.pdf" (id 3) (at 234.95 57.15 0)
  5906. (effects (font (size 1.27 1.27)) hide)
  5907. )
  5908. (property "LCSC" "C371970" (id 4) (at 234.95 57.15 0)
  5909. (effects (font (size 1.27 1.27)) hide)
  5910. )
  5911. (pin "1" (uuid 17eaf7ab-a300-442a-8ee0-2bd59c9511fb))
  5912. (pin "2" (uuid 5156448e-0bf9-4ae8-a942-496877ab9e3f))
  5913. (pin "3" (uuid 2eddbc7c-92bb-4b5a-b2b9-3ee1da0c92f7))
  5914. (pin "4" (uuid e21c3568-b1a1-45b7-8ff2-d3a87b7d6b6c))
  5915. (pin "5" (uuid ecc7d787-469f-4cb5-a9fd-3e221deab42b))
  5916. (pin "6" (uuid 540cab02-374c-4707-aa29-8c6842806de4))
  5917. (pin "8" (uuid 4eaa075d-7fb1-4efd-94ee-06a96e8b5ed3))
  5918. (pin "9" (uuid 76d63f42-b317-4d36-9487-95d72b9dd6e1))
  5919. (pin "10" (uuid 5197ce6c-bed1-40a0-8915-a6417c2848cb))
  5920. (pin "11" (uuid d802a285-ad69-40d1-a642-aa1d31fbc3e3))
  5921. (pin "12" (uuid 8f391acc-9832-4d65-80b1-6b0c7082d3c8))
  5922. (pin "13" (uuid 0c751d67-0ea2-4ca6-8329-bf5665f5cfe3))
  5923. (pin "14" (uuid c06c33ac-ba55-4c39-8c2d-384ab49db47d))
  5924. (pin "7" (uuid ef9d7fdc-4827-406f-959b-0e009ee945e3))
  5925. )
  5926. (symbol (lib_id "74xx:SN74LS07") (at 234.95 46.99 180) (unit 5)
  5927. (in_bom yes) (on_board yes)
  5928. (uuid 00000000-0000-0000-0000-000060f93294)
  5929. (property "Reference" "U3" (id 0) (at 229.87 43.18 0))
  5930. (property "Value" "SN74LS07" (id 1) (at 245.11 43.18 0))
  5931. (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (id 2) (at 234.95 46.99 0)
  5932. (effects (font (size 1.27 1.27)) hide)
  5933. )
  5934. (property "Datasheet" "www.ti.com/lit/ds/symlink/sn74ls07.pdf" (id 3) (at 234.95 46.99 0)
  5935. (effects (font (size 1.27 1.27)) hide)
  5936. )
  5937. (property "LCSC" "C371970" (id 4) (at 234.95 46.99 0)
  5938. (effects (font (size 1.27 1.27)) hide)
  5939. )
  5940. (pin "1" (uuid 7276283b-48eb-4726-b2a9-3ed31fe9a40f))
  5941. (pin "2" (uuid d87a587f-7982-4cd1-92aa-3a037f67eb49))
  5942. (pin "3" (uuid 311bd2d3-5803-412d-ac98-e52fb8d3e649))
  5943. (pin "4" (uuid 540f9d42-2bbf-46be-8128-483982dc1239))
  5944. (pin "5" (uuid 6b44eaf5-7d68-416b-b879-730d722316db))
  5945. (pin "6" (uuid 3e670fa4-4e6c-44b6-8bdb-ef4ae836a4bf))
  5946. (pin "8" (uuid 3dd44522-a362-4b0f-9280-247fd7a89b56))
  5947. (pin "9" (uuid bbc555ce-6892-4c40-aae0-7245a53b849b))
  5948. (pin "10" (uuid f5554ab6-a586-4d52-83f2-873de3663067))
  5949. (pin "11" (uuid 1f867b4f-e3fd-485f-9296-ed4f9cae7ab3))
  5950. (pin "12" (uuid 4953395c-a43a-4459-8e1e-5bded79fd184))
  5951. (pin "13" (uuid b23886b8-69bf-49a2-a467-09d7b88b4609))
  5952. (pin "14" (uuid 0ba5d63e-a4f4-4b2a-9580-1a71f145859d))
  5953. (pin "7" (uuid d637133d-bcc9-4032-95a4-c3057fd2c213))
  5954. )
  5955. (symbol (lib_id "74xx:SN74LS07") (at 234.95 36.83 180) (unit 6)
  5956. (in_bom yes) (on_board yes)
  5957. (uuid 00000000-0000-0000-0000-000060f949da)
  5958. (property "Reference" "U3" (id 0) (at 229.87 33.02 0))
  5959. (property "Value" "SN74LS07" (id 1) (at 245.11 33.02 0))
  5960. (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (id 2) (at 234.95 36.83 0)
  5961. (effects (font (size 1.27 1.27)) hide)
  5962. )
  5963. (property "Datasheet" "www.ti.com/lit/ds/symlink/sn74ls07.pdf" (id 3) (at 234.95 36.83 0)
  5964. (effects (font (size 1.27 1.27)) hide)
  5965. )
  5966. (property "LCSC" "C371970" (id 4) (at 234.95 36.83 0)
  5967. (effects (font (size 1.27 1.27)) hide)
  5968. )
  5969. (pin "1" (uuid f6c2eb1a-193d-4068-b3ef-25378400f1d9))
  5970. (pin "2" (uuid 210eea15-ce08-4dcb-9e09-00b9484ca786))
  5971. (pin "3" (uuid c01d87cc-9d1b-43e2-ab8f-7f2a3a6a17e5))
  5972. (pin "4" (uuid 8445bc8c-e2c5-4cc7-b776-787a7a27be61))
  5973. (pin "5" (uuid f1060de1-57c9-4add-b60a-ee5bc3130708))
  5974. (pin "6" (uuid cf5b3a06-9528-42e4-9861-f0ec827c0ab5))
  5975. (pin "8" (uuid 7ff684fb-0f57-4268-90ca-eb7a837149a2))
  5976. (pin "9" (uuid 776acb57-e76b-4ad6-ba59-943101e69970))
  5977. (pin "10" (uuid 62904812-fb8d-4bcb-824b-ba0c19446254))
  5978. (pin "11" (uuid e3d5dcb9-4369-4562-ac1f-f6398bb3bed8))
  5979. (pin "12" (uuid 0fa42326-3fa2-4523-b403-e582e228b584))
  5980. (pin "13" (uuid 334d2aea-23a6-47a1-8548-51ea33472ce4))
  5981. (pin "14" (uuid a4b08239-f4e7-4401-ae43-f98d8fe35809))
  5982. (pin "7" (uuid c5635a25-06cb-4287-afdd-e81789b5beb6))
  5983. )
  5984. (symbol (lib_id "74xx:SN74LS07") (at 167.64 34.29 0) (unit 7)
  5985. (in_bom yes) (on_board yes)
  5986. (uuid 00000000-0000-0000-0000-000060f95e46)
  5987. (property "Reference" "U3" (id 0) (at 173.482 33.1216 0)
  5988. (effects (font (size 1.27 1.27)) (justify left))
  5989. )
  5990. (property "Value" "SN74LS07" (id 1) (at 173.482 35.433 0)
  5991. (effects (font (size 1.27 1.27)) (justify left))
  5992. )
  5993. (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (id 2) (at 167.64 34.29 0)
  5994. (effects (font (size 1.27 1.27)) hide)
  5995. )
  5996. (property "Datasheet" "www.ti.com/lit/ds/symlink/sn74ls07.pdf" (id 3) (at 167.64 34.29 0)
  5997. (effects (font (size 1.27 1.27)) hide)
  5998. )
  5999. (property "LCSC" "C371970" (id 4) (at 167.64 34.29 0)
  6000. (effects (font (size 1.27 1.27)) hide)
  6001. )
  6002. (pin "1" (uuid 67ec928b-8b6d-4931-bb99-5c8bf6e11745))
  6003. (pin "2" (uuid d8651a91-bdbb-45a2-8259-5bef6cb0c790))
  6004. (pin "3" (uuid ccfdddb4-12ca-4ac5-b8f5-740e0444ee8d))
  6005. (pin "4" (uuid 1d50adac-ce04-47e5-b858-265b394cfa02))
  6006. (pin "5" (uuid c255a7a9-edb8-4191-a2e9-d52e28fe46a1))
  6007. (pin "6" (uuid 874caacf-2f7c-4448-9a51-9fbcd4964f88))
  6008. (pin "8" (uuid ff41c38b-a798-40a5-b225-1652ce6a5691))
  6009. (pin "9" (uuid 82bb1537-9a8b-48e3-b6b0-8224a99d41fc))
  6010. (pin "10" (uuid b463083f-f87e-49f0-835d-533e2a55f049))
  6011. (pin "11" (uuid 7da6d787-a27d-4ba6-aa89-7b9426753ff2))
  6012. (pin "12" (uuid 05431228-6c5d-4893-921a-c54021d96f10))
  6013. (pin "13" (uuid 17e69d6f-2ff6-455b-bbdb-648ee15536e6))
  6014. (pin "14" (uuid 41d3d80b-e46d-45c7-868b-84557a85f8a6))
  6015. (pin "7" (uuid 49df4c2e-b520-458b-a40c-83b813e3a918))
  6016. )
  6017. (symbol (lib_id "74xx:SN74LS07") (at 234.95 67.31 180) (unit 1)
  6018. (in_bom yes) (on_board yes)
  6019. (uuid 00000000-0000-0000-0000-00006102cdb8)
  6020. (property "Reference" "U4" (id 0) (at 229.87 63.5 0))
  6021. (property "Value" "SN74LS07" (id 1) (at 245.11 63.5 0))
  6022. (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (id 2) (at 234.95 67.31 0)
  6023. (effects (font (size 1.27 1.27)) hide)
  6024. )
  6025. (property "Datasheet" "www.ti.com/lit/ds/symlink/sn74ls07.pdf" (id 3) (at 234.95 67.31 0)
  6026. (effects (font (size 1.27 1.27)) hide)
  6027. )
  6028. (property "LCSC" "C371970" (id 4) (at 234.95 67.31 0)
  6029. (effects (font (size 1.27 1.27)) hide)
  6030. )
  6031. (pin "1" (uuid 62103c11-51d2-468d-851b-b3ecb76379fd))
  6032. (pin "2" (uuid 6dc190ab-497b-47c1-b6b2-6a0a7da3d0ba))
  6033. (pin "3" (uuid 28e31ffc-a4a1-4938-98ad-21d0868c8fb3))
  6034. (pin "4" (uuid 3331c383-29e1-4dc4-a0e0-cdbff47d5e40))
  6035. (pin "5" (uuid 98d67350-3951-437b-84bd-d0db9a42e329))
  6036. (pin "6" (uuid fc9e901d-d315-48c9-a44d-96445fe1af0f))
  6037. (pin "8" (uuid 99a30d6e-fc12-4526-a948-64d709385d95))
  6038. (pin "9" (uuid 76b397e7-3954-4f3e-a094-d206007fdf37))
  6039. (pin "10" (uuid 2a1da672-1eb4-4a9d-989f-140f11cdb464))
  6040. (pin "11" (uuid 07f21c72-9a18-4f65-9456-b39ff271c148))
  6041. (pin "12" (uuid 614cf9ab-6564-42c6-b155-3751e27002d3))
  6042. (pin "13" (uuid 53c7c6e0-927b-423f-ab5e-3f87616bb5e3))
  6043. (pin "14" (uuid da8b82c6-f385-475c-addc-5d8cba099627))
  6044. (pin "7" (uuid 42a3779d-fc3f-491e-9240-b1fbf9b7654f))
  6045. )
  6046. (symbol (lib_id "74xx:SN74LS07") (at 234.95 128.27 180) (unit 2)
  6047. (in_bom yes) (on_board yes)
  6048. (uuid 00000000-0000-0000-0000-00006102d33e)
  6049. (property "Reference" "U4" (id 0) (at 229.87 124.46 0))
  6050. (property "Value" "SN74LS07" (id 1) (at 245.11 123.19 0))
  6051. (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (id 2) (at 234.95 128.27 0)
  6052. (effects (font (size 1.27 1.27)) hide)
  6053. )
  6054. (property "Datasheet" "www.ti.com/lit/ds/symlink/sn74ls07.pdf" (id 3) (at 234.95 128.27 0)
  6055. (effects (font (size 1.27 1.27)) hide)
  6056. )
  6057. (property "LCSC" "C371970" (id 4) (at 234.95 128.27 0)
  6058. (effects (font (size 1.27 1.27)) hide)
  6059. )
  6060. (pin "1" (uuid 7f7e83e5-25a3-48e3-a3a2-b5878b8b9097))
  6061. (pin "2" (uuid 78512b91-2c4a-464d-81c0-f93ab3f06ace))
  6062. (pin "3" (uuid ce6fe94f-9351-48d2-bc59-9ec2780191f4))
  6063. (pin "4" (uuid 59650916-13de-4138-8779-8aa11bcfa820))
  6064. (pin "5" (uuid 5b78d931-93dd-4459-ab39-a4a1b7c3a26b))
  6065. (pin "6" (uuid 8c07a833-af48-4034-95c2-af0099872aa9))
  6066. (pin "8" (uuid e1dc5ad8-c254-4b06-bbf1-a1f8d8580aef))
  6067. (pin "9" (uuid 291e6d25-1c1f-4680-8ca9-13d590de3d0d))
  6068. (pin "10" (uuid b7ff882f-f8ad-44d1-b071-a8ec3c1fc82b))
  6069. (pin "11" (uuid 69c159b5-0eb0-4ed6-81a6-0bdb564bab65))
  6070. (pin "12" (uuid c59324ab-c01c-464f-bd01-a1cffe4e3a14))
  6071. (pin "13" (uuid 852ee0ac-b227-4df3-8213-a6155c9becdc))
  6072. (pin "14" (uuid 7d45845a-6d69-45af-97de-5bc02297b233))
  6073. (pin "7" (uuid d178a976-ceac-4446-92bd-a15abdb74d2c))
  6074. )
  6075. (symbol (lib_id "74xx:SN74LS07") (at 234.95 138.43 180) (unit 3)
  6076. (in_bom yes) (on_board yes)
  6077. (uuid 00000000-0000-0000-0000-00006102d348)
  6078. (property "Reference" "U4" (id 0) (at 229.87 134.62 0))
  6079. (property "Value" "SN74LS07" (id 1) (at 245.11 134.62 0))
  6080. (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (id 2) (at 234.95 138.43 0)
  6081. (effects (font (size 1.27 1.27)) hide)
  6082. )
  6083. (property "Datasheet" "www.ti.com/lit/ds/symlink/sn74ls07.pdf" (id 3) (at 234.95 138.43 0)
  6084. (effects (font (size 1.27 1.27)) hide)
  6085. )
  6086. (property "LCSC" "C371970" (id 4) (at 234.95 138.43 0)
  6087. (effects (font (size 1.27 1.27)) hide)
  6088. )
  6089. (pin "1" (uuid 400c7a12-6a3b-4007-bebb-25fa9d8ef61f))
  6090. (pin "2" (uuid 6753fb15-6b58-43d8-83e1-ebcb9e2515e3))
  6091. (pin "3" (uuid c500017d-0fc8-497d-a0b5-573cf317a1f0))
  6092. (pin "4" (uuid c2f66d6a-847a-47a7-b437-610af356cccf))
  6093. (pin "5" (uuid 09df223b-8d4d-4be3-a158-ffa72fa73cdd))
  6094. (pin "6" (uuid 0ea711b1-d5d0-4be4-80c2-95f902cd0ea0))
  6095. (pin "8" (uuid ef7bcbad-8524-4da1-a6b2-9526b183d86a))
  6096. (pin "9" (uuid a205b07a-2ec7-4863-91ef-08bdca92813c))
  6097. (pin "10" (uuid db8fa787-e8ef-477d-9928-c4b6bb4ed89b))
  6098. (pin "11" (uuid e973ba27-951d-4dd3-bf2a-c87e7607eed1))
  6099. (pin "12" (uuid 4936daab-87ad-422b-b2aa-4c1e6cb463e6))
  6100. (pin "13" (uuid eca36748-7a52-4057-9cd6-5964aef071a4))
  6101. (pin "14" (uuid c90f81af-6b36-409b-9ff6-3fcb16f11f97))
  6102. (pin "7" (uuid 743073e6-fb42-4935-b0ad-3b453235ec35))
  6103. )
  6104. (symbol (lib_id "74xx:SN74LS07") (at 234.95 118.11 180) (unit 4)
  6105. (in_bom yes) (on_board yes)
  6106. (uuid 00000000-0000-0000-0000-00006102d352)
  6107. (property "Reference" "U4" (id 0) (at 229.87 114.3 0))
  6108. (property "Value" "SN74LS07" (id 1) (at 245.11 114.3 0))
  6109. (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (id 2) (at 234.95 118.11 0)
  6110. (effects (font (size 1.27 1.27)) hide)
  6111. )
  6112. (property "Datasheet" "www.ti.com/lit/ds/symlink/sn74ls07.pdf" (id 3) (at 234.95 118.11 0)
  6113. (effects (font (size 1.27 1.27)) hide)
  6114. )
  6115. (property "LCSC" "C371970" (id 4) (at 234.95 118.11 0)
  6116. (effects (font (size 1.27 1.27)) hide)
  6117. )
  6118. (pin "1" (uuid 957c3c6b-7d30-414d-8d06-ae7da1e49865))
  6119. (pin "2" (uuid bec69fb8-deae-4fc4-8c0a-7f148f2f1e2e))
  6120. (pin "3" (uuid 1be2feac-cc1d-4501-905d-05d6ec8ac6b3))
  6121. (pin "4" (uuid 752dd0db-3350-432a-a4ea-3cbf975365ef))
  6122. (pin "5" (uuid a7ab4152-eb90-46e8-bf7c-a531751f058e))
  6123. (pin "6" (uuid 62b7b16b-5464-4601-8420-d8062bb1432f))
  6124. (pin "8" (uuid ab53bdc6-ce0d-4241-8996-ce7f96233d93))
  6125. (pin "9" (uuid f0d8b35b-2fcc-4e9f-ae47-ff97b26d93c5))
  6126. (pin "10" (uuid d82d0c3d-8175-498a-9ba8-78724c6071e8))
  6127. (pin "11" (uuid 26b8d87d-6155-4d46-9b88-d6e71928b593))
  6128. (pin "12" (uuid 5f0785de-e44f-445e-b5f8-098c93755b25))
  6129. (pin "13" (uuid e504f124-96b8-4a11-b0cd-6fbfbeb8b27b))
  6130. (pin "14" (uuid 4083ed00-38ae-4d5a-8dd6-363f798fdc84))
  6131. (pin "7" (uuid e6c817d4-96f2-42aa-808d-e32124a450c2))
  6132. )
  6133. (symbol (lib_id "74xx:SN74LS07") (at 234.95 107.95 180) (unit 5)
  6134. (in_bom yes) (on_board yes)
  6135. (uuid 00000000-0000-0000-0000-00006102d35c)
  6136. (property "Reference" "U4" (id 0) (at 229.87 104.14 0))
  6137. (property "Value" "SN74LS07" (id 1) (at 245.11 104.14 0))
  6138. (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (id 2) (at 234.95 107.95 0)
  6139. (effects (font (size 1.27 1.27)) hide)
  6140. )
  6141. (property "Datasheet" "www.ti.com/lit/ds/symlink/sn74ls07.pdf" (id 3) (at 234.95 107.95 0)
  6142. (effects (font (size 1.27 1.27)) hide)
  6143. )
  6144. (property "LCSC" "C371970" (id 4) (at 234.95 107.95 0)
  6145. (effects (font (size 1.27 1.27)) hide)
  6146. )
  6147. (pin "1" (uuid da1fe8dd-ed61-48e8-9962-b068ad628547))
  6148. (pin "2" (uuid 25e44330-c8d6-4b63-95c1-539015339137))
  6149. (pin "3" (uuid 379fd8c3-9548-4cf9-8ad9-4dec865075ad))
  6150. (pin "4" (uuid fd2eefd3-012b-46c9-b883-c1a935468261))
  6151. (pin "5" (uuid 6979ffd1-2215-4d6f-8fe1-8ac2cb730830))
  6152. (pin "6" (uuid 6aa11453-b879-4f7c-9d2d-f6c7e175282f))
  6153. (pin "8" (uuid 1d4680de-dd18-4aa8-8553-00a816c6dec5))
  6154. (pin "9" (uuid 253b9a93-2e8d-4cf3-ba9b-71ba91ed7a3a))
  6155. (pin "10" (uuid 25545c85-5f3e-45cb-8a45-5d4689dfa3b1))
  6156. (pin "11" (uuid 94b179d6-cace-41c1-86d1-c64ce4de0da1))
  6157. (pin "12" (uuid 855df60a-38ff-402b-976c-233b92358df7))
  6158. (pin "13" (uuid e9acd5b3-b3b2-484f-88a5-5f6bfd678bd0))
  6159. (pin "14" (uuid 87961e6b-e09b-4093-9030-7369f46a2b2d))
  6160. (pin "7" (uuid a6fcc0eb-3087-4d44-8615-401871c7210a))
  6161. )
  6162. (symbol (lib_id "74xx:SN74LS07") (at 234.95 97.79 180) (unit 6)
  6163. (in_bom yes) (on_board yes)
  6164. (uuid 00000000-0000-0000-0000-00006102d366)
  6165. (property "Reference" "U4" (id 0) (at 229.87 93.98 0))
  6166. (property "Value" "SN74LS07" (id 1) (at 245.11 93.98 0))
  6167. (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (id 2) (at 234.95 97.79 0)
  6168. (effects (font (size 1.27 1.27)) hide)
  6169. )
  6170. (property "Datasheet" "www.ti.com/lit/ds/symlink/sn74ls07.pdf" (id 3) (at 234.95 97.79 0)
  6171. (effects (font (size 1.27 1.27)) hide)
  6172. )
  6173. (property "LCSC" "C371970" (id 4) (at 234.95 97.79 0)
  6174. (effects (font (size 1.27 1.27)) hide)
  6175. )
  6176. (pin "1" (uuid 831a40cf-d386-48fc-8b39-094a3f71ee27))
  6177. (pin "2" (uuid 9ff6293b-68f9-43a8-970e-2fb5515952e5))
  6178. (pin "3" (uuid 29dafafd-f472-4aaf-8040-c9c0f625eef3))
  6179. (pin "4" (uuid da359725-aee5-4528-9eed-cb94fcb8fffc))
  6180. (pin "5" (uuid f04006fa-35fd-447b-9e95-975e0dec67c8))
  6181. (pin "6" (uuid 9b664edd-9026-46e2-9164-e2b4169d7d7f))
  6182. (pin "8" (uuid 514e2018-feed-4760-81b4-3215fcc3bfa9))
  6183. (pin "9" (uuid c8b29e06-4b17-4bf6-bdbd-dace57e07aaf))
  6184. (pin "10" (uuid 0d5880cb-c997-4346-8a4c-147141cb29ea))
  6185. (pin "11" (uuid c8463c9c-bcb3-4081-a363-16436a3117fc))
  6186. (pin "12" (uuid 3e495ac4-b11f-4e38-b2d2-d494623eabe5))
  6187. (pin "13" (uuid a58ec886-072f-4e13-ad85-88e0fa7fdea6))
  6188. (pin "14" (uuid c66fd03a-304d-4ccf-a7b5-a6e16da0cf94))
  6189. (pin "7" (uuid 16120cef-f140-4c5a-a97b-1b66f47121c6))
  6190. )
  6191. (symbol (lib_id "74xx:SN74LS07") (at 189.23 34.29 0) (unit 7)
  6192. (in_bom yes) (on_board yes)
  6193. (uuid 00000000-0000-0000-0000-00006102d370)
  6194. (property "Reference" "U4" (id 0) (at 195.072 33.1216 0)
  6195. (effects (font (size 1.27 1.27)) (justify left))
  6196. )
  6197. (property "Value" "SN74LS07" (id 1) (at 195.072 35.433 0)
  6198. (effects (font (size 1.27 1.27)) (justify left))
  6199. )
  6200. (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (id 2) (at 189.23 34.29 0)
  6201. (effects (font (size 1.27 1.27)) hide)
  6202. )
  6203. (property "Datasheet" "www.ti.com/lit/ds/symlink/sn74ls07.pdf" (id 3) (at 189.23 34.29 0)
  6204. (effects (font (size 1.27 1.27)) hide)
  6205. )
  6206. (property "LCSC" "C371970" (id 4) (at 189.23 34.29 0)
  6207. (effects (font (size 1.27 1.27)) hide)
  6208. )
  6209. (pin "1" (uuid 7656570e-867b-4b6d-b70f-eb88d30e6ee0))
  6210. (pin "2" (uuid d0a00acd-e3b5-4720-bd64-e904539067b3))
  6211. (pin "3" (uuid 8171fca6-efb9-45c5-b0e7-4a15e93d354a))
  6212. (pin "4" (uuid 59d4e593-92a8-4646-9d03-2c8c6507900f))
  6213. (pin "5" (uuid de2a9e73-e6fc-4167-9c6b-916dc9d0a598))
  6214. (pin "6" (uuid 4b398063-ea11-4195-8a64-45cefe2f4788))
  6215. (pin "8" (uuid 9b21da0a-ef92-4510-87d8-78a39fd6f03f))
  6216. (pin "9" (uuid b0f405d0-2eca-4f5d-9c12-e19f1bebe545))
  6217. (pin "10" (uuid a02d7f83-2ec2-4308-b79c-9bdabe923c5a))
  6218. (pin "11" (uuid d2707fdd-4d90-4a32-a9d7-21342d56e4ae))
  6219. (pin "12" (uuid 6f8343e7-5623-4415-b20f-994b3ebd3ebf))
  6220. (pin "13" (uuid 49ab6d26-429b-43e8-9955-af02bab3dee1))
  6221. (pin "14" (uuid c114b98f-c340-46d0-85d6-3e787c776a13))
  6222. (pin "7" (uuid c1257a43-33f6-4ff2-9e53-85ba1a2b0d2d))
  6223. )
  6224. (symbol (lib_id "Connector:Conn_01x02_Male") (at 201.93 97.79 90) (unit 1)
  6225. (in_bom yes) (on_board yes)
  6226. (uuid 00000000-0000-0000-0000-00006113965b)
  6227. (property "Reference" "J2" (id 0) (at 206.7052 93.8784 90)
  6228. (effects (font (size 1.27 1.27)) (justify right))
  6229. )
  6230. (property "Value" "Conn_01x02_Male" (id 1) (at 195.58 100.33 90)
  6231. (effects (font (size 1.27 1.27)) (justify right))
  6232. )
  6233. (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (id 2) (at 201.93 97.79 0)
  6234. (effects (font (size 1.27 1.27)) hide)
  6235. )
  6236. (property "Datasheet" "~" (id 3) (at 201.93 97.79 0)
  6237. (effects (font (size 1.27 1.27)) hide)
  6238. )
  6239. (property "LCSC" "C160332" (id 4) (at 201.93 97.79 0)
  6240. (effects (font (size 1.27 1.27)) hide)
  6241. )
  6242. (pin "1" (uuid 681cfc22-eb9d-4c2f-9ea5-89c04aecadc4))
  6243. (pin "2" (uuid 0606874a-8758-44e9-ae59-f5feb3be295e))
  6244. )
  6245. (symbol (lib_id "Connector:Conn_01x03_Male") (at 116.84 34.29 180) (unit 1)
  6246. (in_bom yes) (on_board yes)
  6247. (uuid 00000000-0000-0000-0000-00006115910d)
  6248. (property "Reference" "J10" (id 0) (at 117.5512 32.5628 0)
  6249. (effects (font (size 1.27 1.27)) (justify right))
  6250. )
  6251. (property "Value" "Conn_01x03_Male" (id 1) (at 117.5512 34.8742 0)
  6252. (effects (font (size 1.27 1.27)) (justify right))
  6253. )
  6254. (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (id 2) (at 116.84 34.29 0)
  6255. (effects (font (size 1.27 1.27)) hide)
  6256. )
  6257. (property "Datasheet" "~" (id 3) (at 116.84 34.29 0)
  6258. (effects (font (size 1.27 1.27)) hide)
  6259. )
  6260. (pin "1" (uuid 0bc865a5-b2f9-4250-aa9c-7cde34db911e))
  6261. (pin "2" (uuid 48bfce0d-2c2e-48ed-ad0b-e8ca9c82f9a0))
  6262. (pin "3" (uuid 3d5cf429-0f57-410f-9cb4-66e75156a04a))
  6263. )
  6264. (symbol (lib_id "power:GND") (at 107.95 39.37 0) (unit 1)
  6265. (in_bom yes) (on_board yes)
  6266. (uuid 00000000-0000-0000-0000-000061180e4f)
  6267. (property "Reference" "#PWR0170" (id 0) (at 107.95 45.72 0)
  6268. (effects (font (size 1.27 1.27)) hide)
  6269. )
  6270. (property "Value" "GND" (id 1) (at 108.077 43.7642 0))
  6271. (property "Footprint" "" (id 2) (at 107.95 39.37 0)
  6272. (effects (font (size 1.27 1.27)) hide)
  6273. )
  6274. (property "Datasheet" "" (id 3) (at 107.95 39.37 0)
  6275. (effects (font (size 1.27 1.27)) hide)
  6276. )
  6277. (pin "1" (uuid cd2d2fb2-9aca-41f0-be21-42fed54a3cf3))
  6278. )
  6279. (symbol (lib_id "Device:R_Small") (at 267.97 27.94 270) (unit 1)
  6280. (in_bom yes) (on_board yes)
  6281. (uuid 00000000-0000-0000-0000-0000611f6a4c)
  6282. (property "Reference" "R7" (id 0) (at 264.16 25.4 90))
  6283. (property "Value" "10k" (id 1) (at 271.78 25.4 90))
  6284. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 267.97 27.94 0)
  6285. (effects (font (size 1.27 1.27)) hide)
  6286. )
  6287. (property "Datasheet" "~" (id 3) (at 267.97 27.94 0)
  6288. (effects (font (size 1.27 1.27)) hide)
  6289. )
  6290. (property "LCSC" "C25744" (id 4) (at 267.97 27.94 0)
  6291. (effects (font (size 1.27 1.27)) hide)
  6292. )
  6293. (pin "1" (uuid cf6489b9-2cb7-4d60-8de9-72e7fbb778c5))
  6294. (pin "2" (uuid 896dca97-c39b-4601-9bf9-cd3e123f007c))
  6295. )
  6296. (symbol (lib_id "Device:R_Small") (at 267.97 33.02 270) (unit 1)
  6297. (in_bom yes) (on_board yes)
  6298. (uuid 00000000-0000-0000-0000-0000611f8573)
  6299. (property "Reference" "R8" (id 0) (at 264.16 31.75 90))
  6300. (property "Value" "10k" (id 1) (at 271.78 30.48 90))
  6301. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 267.97 33.02 0)
  6302. (effects (font (size 1.27 1.27)) hide)
  6303. )
  6304. (property "Datasheet" "~" (id 3) (at 267.97 33.02 0)
  6305. (effects (font (size 1.27 1.27)) hide)
  6306. )
  6307. (property "LCSC" "C25744" (id 4) (at 267.97 33.02 0)
  6308. (effects (font (size 1.27 1.27)) hide)
  6309. )
  6310. (pin "1" (uuid 8f159cda-aff3-4861-936e-7f023a40f556))
  6311. (pin "2" (uuid 61dc861a-f1a1-4047-b0dc-8467c610b19a))
  6312. )
  6313. (symbol (lib_id "Device:R_Small") (at 267.97 38.1 270) (unit 1)
  6314. (in_bom yes) (on_board yes)
  6315. (uuid 00000000-0000-0000-0000-0000611f9281)
  6316. (property "Reference" "R9" (id 0) (at 264.16 35.56 90))
  6317. (property "Value" "10k" (id 1) (at 271.78 35.56 90))
  6318. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 267.97 38.1 0)
  6319. (effects (font (size 1.27 1.27)) hide)
  6320. )
  6321. (property "Datasheet" "~" (id 3) (at 267.97 38.1 0)
  6322. (effects (font (size 1.27 1.27)) hide)
  6323. )
  6324. (property "LCSC" "C25744" (id 4) (at 267.97 38.1 0)
  6325. (effects (font (size 1.27 1.27)) hide)
  6326. )
  6327. (pin "1" (uuid 75a97f43-6f80-4dbe-9aa5-53b49f5586eb))
  6328. (pin "2" (uuid 16cf0e22-c6b2-45a4-beaa-5cff542bc08d))
  6329. )
  6330. (symbol (lib_id "Device:R_Small") (at 267.97 43.18 270) (unit 1)
  6331. (in_bom yes) (on_board yes)
  6332. (uuid 00000000-0000-0000-0000-0000611f9f92)
  6333. (property "Reference" "R10" (id 0) (at 264.16 40.64 90))
  6334. (property "Value" "10k" (id 1) (at 271.78 40.64 90))
  6335. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 267.97 43.18 0)
  6336. (effects (font (size 1.27 1.27)) hide)
  6337. )
  6338. (property "Datasheet" "~" (id 3) (at 267.97 43.18 0)
  6339. (effects (font (size 1.27 1.27)) hide)
  6340. )
  6341. (property "LCSC" "C25744" (id 4) (at 267.97 43.18 0)
  6342. (effects (font (size 1.27 1.27)) hide)
  6343. )
  6344. (pin "1" (uuid 9d0adf74-661d-4cea-89c5-e9ae58448d24))
  6345. (pin "2" (uuid ca522c15-b33e-4fb6-80bd-2eed05cd4b4d))
  6346. )
  6347. (symbol (lib_id "Device:R_Small") (at 267.97 48.26 270) (unit 1)
  6348. (in_bom yes) (on_board yes)
  6349. (uuid 00000000-0000-0000-0000-0000611facfa)
  6350. (property "Reference" "R11" (id 0) (at 264.16 45.72 90))
  6351. (property "Value" "10k" (id 1) (at 271.78 45.72 90))
  6352. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 267.97 48.26 0)
  6353. (effects (font (size 1.27 1.27)) hide)
  6354. )
  6355. (property "Datasheet" "~" (id 3) (at 267.97 48.26 0)
  6356. (effects (font (size 1.27 1.27)) hide)
  6357. )
  6358. (property "LCSC" "C25744" (id 4) (at 267.97 48.26 0)
  6359. (effects (font (size 1.27 1.27)) hide)
  6360. )
  6361. (pin "1" (uuid e8a21aee-ae8d-479c-b81e-4be470b5870a))
  6362. (pin "2" (uuid 7a46ad85-358d-4ee5-b34b-d4ba07f16a44))
  6363. )
  6364. (symbol (lib_id "Device:R_Small") (at 267.97 53.34 270) (unit 1)
  6365. (in_bom yes) (on_board yes)
  6366. (uuid 00000000-0000-0000-0000-0000611fbaa4)
  6367. (property "Reference" "R12" (id 0) (at 264.16 50.8 90))
  6368. (property "Value" "10k" (id 1) (at 271.78 50.8 90))
  6369. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 267.97 53.34 0)
  6370. (effects (font (size 1.27 1.27)) hide)
  6371. )
  6372. (property "Datasheet" "~" (id 3) (at 267.97 53.34 0)
  6373. (effects (font (size 1.27 1.27)) hide)
  6374. )
  6375. (property "LCSC" "C25744" (id 4) (at 267.97 53.34 0)
  6376. (effects (font (size 1.27 1.27)) hide)
  6377. )
  6378. (pin "1" (uuid 31f31c7e-646d-4a37-88c6-75b4dcda809d))
  6379. (pin "2" (uuid d376e8ff-b4e6-45ee-bfe5-561ed1a3a9e4))
  6380. )
  6381. (symbol (lib_id "Device:R_Small") (at 267.97 58.42 270) (unit 1)
  6382. (in_bom yes) (on_board yes)
  6383. (uuid 00000000-0000-0000-0000-0000611fc856)
  6384. (property "Reference" "R13" (id 0) (at 264.16 55.88 90))
  6385. (property "Value" "10k" (id 1) (at 271.78 55.88 90))
  6386. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 267.97 58.42 0)
  6387. (effects (font (size 1.27 1.27)) hide)
  6388. )
  6389. (property "Datasheet" "~" (id 3) (at 267.97 58.42 0)
  6390. (effects (font (size 1.27 1.27)) hide)
  6391. )
  6392. (property "LCSC" "C25744" (id 4) (at 267.97 58.42 0)
  6393. (effects (font (size 1.27 1.27)) hide)
  6394. )
  6395. (pin "1" (uuid bc32c772-f75a-43e4-b3a8-a7be7eb0b0b7))
  6396. (pin "2" (uuid 103c4835-5f15-418a-ace8-90d7911eeeec))
  6397. )
  6398. (symbol (lib_id "Device:R_Small") (at 267.97 63.5 270) (unit 1)
  6399. (in_bom yes) (on_board yes)
  6400. (uuid 00000000-0000-0000-0000-0000611fd625)
  6401. (property "Reference" "R14" (id 0) (at 264.16 60.96 90))
  6402. (property "Value" "10k" (id 1) (at 271.78 60.96 90))
  6403. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 267.97 63.5 0)
  6404. (effects (font (size 1.27 1.27)) hide)
  6405. )
  6406. (property "Datasheet" "~" (id 3) (at 267.97 63.5 0)
  6407. (effects (font (size 1.27 1.27)) hide)
  6408. )
  6409. (property "LCSC" "C25744" (id 4) (at 267.97 63.5 0)
  6410. (effects (font (size 1.27 1.27)) hide)
  6411. )
  6412. (pin "1" (uuid 91254066-d51b-4c18-a8cf-b313fdb6f168))
  6413. (pin "2" (uuid cf26a1c6-e7a7-483b-a332-36e4672e2728))
  6414. )
  6415. (symbol (lib_id "Device:R_Small") (at 267.97 68.58 270) (unit 1)
  6416. (in_bom yes) (on_board yes)
  6417. (uuid 00000000-0000-0000-0000-0000611fe402)
  6418. (property "Reference" "R15" (id 0) (at 264.16 66.04 90))
  6419. (property "Value" "10k" (id 1) (at 271.78 66.04 90))
  6420. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 267.97 68.58 0)
  6421. (effects (font (size 1.27 1.27)) hide)
  6422. )
  6423. (property "Datasheet" "~" (id 3) (at 267.97 68.58 0)
  6424. (effects (font (size 1.27 1.27)) hide)
  6425. )
  6426. (property "LCSC" "C25744" (id 4) (at 267.97 68.58 0)
  6427. (effects (font (size 1.27 1.27)) hide)
  6428. )
  6429. (pin "1" (uuid 2195e2f2-da04-4bd6-a319-2c21e265eda5))
  6430. (pin "2" (uuid b5a18fcc-9f5b-4e8c-834d-52e7758a3c86))
  6431. )
  6432. (symbol (lib_id "Device:R_Small") (at 267.97 73.66 270) (unit 1)
  6433. (in_bom yes) (on_board yes)
  6434. (uuid 00000000-0000-0000-0000-0000611ff27a)
  6435. (property "Reference" "R16" (id 0) (at 264.16 71.12 90))
  6436. (property "Value" "10k" (id 1) (at 271.78 71.12 90))
  6437. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 267.97 73.66 0)
  6438. (effects (font (size 1.27 1.27)) hide)
  6439. )
  6440. (property "Datasheet" "~" (id 3) (at 267.97 73.66 0)
  6441. (effects (font (size 1.27 1.27)) hide)
  6442. )
  6443. (property "LCSC" "C25744" (id 4) (at 267.97 73.66 0)
  6444. (effects (font (size 1.27 1.27)) hide)
  6445. )
  6446. (pin "1" (uuid 2b4cd3f3-7dbf-4150-8a50-b1ff074d7900))
  6447. (pin "2" (uuid 8f7d91fb-9467-4183-80a1-867a2c3f8a7e))
  6448. )
  6449. (symbol (lib_id "Device:R_Small") (at 267.97 78.74 270) (unit 1)
  6450. (in_bom yes) (on_board yes)
  6451. (uuid 00000000-0000-0000-0000-0000612000bb)
  6452. (property "Reference" "R17" (id 0) (at 265.43 76.2 90))
  6453. (property "Value" "10k" (id 1) (at 271.78 76.2 90))
  6454. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 267.97 78.74 0)
  6455. (effects (font (size 1.27 1.27)) hide)
  6456. )
  6457. (property "Datasheet" "~" (id 3) (at 267.97 78.74 0)
  6458. (effects (font (size 1.27 1.27)) hide)
  6459. )
  6460. (property "LCSC" "C25744" (id 4) (at 267.97 78.74 0)
  6461. (effects (font (size 1.27 1.27)) hide)
  6462. )
  6463. (pin "1" (uuid 73841576-14f3-438c-b6e1-04ce224ed47b))
  6464. (pin "2" (uuid 0145e00b-171e-43d9-b06d-fee0a2f04f39))
  6465. )
  6466. (symbol (lib_id "Device:R_Small") (at 267.97 83.82 270) (unit 1)
  6467. (in_bom yes) (on_board yes)
  6468. (uuid 00000000-0000-0000-0000-000061200f43)
  6469. (property "Reference" "R18" (id 0) (at 264.16 81.28 90))
  6470. (property "Value" "10k" (id 1) (at 271.78 81.28 90))
  6471. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 267.97 83.82 0)
  6472. (effects (font (size 1.27 1.27)) hide)
  6473. )
  6474. (property "Datasheet" "~" (id 3) (at 267.97 83.82 0)
  6475. (effects (font (size 1.27 1.27)) hide)
  6476. )
  6477. (property "LCSC" "C25744" (id 4) (at 267.97 83.82 0)
  6478. (effects (font (size 1.27 1.27)) hide)
  6479. )
  6480. (pin "1" (uuid c7879267-0799-48e8-9735-c2b4735a16f6))
  6481. (pin "2" (uuid eec36734-bff4-49be-8a73-c2e6d89da086))
  6482. )
  6483. (symbol (lib_id "power:+5V") (at 274.32 90.17 0) (unit 1)
  6484. (in_bom yes) (on_board yes)
  6485. (uuid 00000000-0000-0000-0000-00006126baa5)
  6486. (property "Reference" "#PWR09" (id 0) (at 274.32 93.98 0)
  6487. (effects (font (size 1.27 1.27)) hide)
  6488. )
  6489. (property "Value" "+5V" (id 1) (at 274.701 85.7758 0))
  6490. (property "Footprint" "" (id 2) (at 274.32 90.17 0)
  6491. (effects (font (size 1.27 1.27)) hide)
  6492. )
  6493. (property "Datasheet" "" (id 3) (at 274.32 90.17 0)
  6494. (effects (font (size 1.27 1.27)) hide)
  6495. )
  6496. (pin "1" (uuid 807871f7-f850-4128-bdfe-ed4ba365f245))
  6497. )
  6498. (symbol (lib_id "Oscillator:ASCO") (at 175.26 151.13 0) (mirror y) (unit 1)
  6499. (in_bom yes) (on_board yes)
  6500. (uuid 00000000-0000-0000-0000-00006138d37a)
  6501. (property "Reference" "X1" (id 0) (at 186.5376 149.9616 0)
  6502. (effects (font (size 1.27 1.27)) (justify right))
  6503. )
  6504. (property "Value" "16MHz" (id 1) (at 186.5376 152.273 0)
  6505. (effects (font (size 1.27 1.27)) (justify right))
  6506. )
  6507. (property "Footprint" "Greaseweazle:Oscillator_SMD_Abracon_ASE-4Pin_3.2x2.5mm" (id 2) (at 172.72 160.02 0)
  6508. (effects (font (size 1.27 1.27)) hide)
  6509. )
  6510. (property "Datasheet" "https://abracon.com/Oscillators/ASCO.pdf" (id 3) (at 180.975 147.955 0)
  6511. (effects (font (size 1.27 1.27)) hide)
  6512. )
  6513. (property "MOUSER" "520-3225MV-160-BNT" (id 4) (at 175.26 151.13 0)
  6514. (effects (font (size 1.27 1.27)) hide)
  6515. )
  6516. (property "LCSC" "C252336" (id 5) (at 175.26 151.13 0)
  6517. (effects (font (size 1.27 1.27)) hide)
  6518. )
  6519. (pin "1" (uuid 02b07214-5684-4bf1-9764-9cbbb73366f0))
  6520. (pin "2" (uuid 94b02acb-b941-4e5d-a803-5f767ff385da))
  6521. (pin "3" (uuid dd18e56c-7eee-4e90-ad95-e6ce34c0fb16))
  6522. (pin "4" (uuid b68961b1-2003-495c-ae70-e4148030a126))
  6523. )
  6524. (symbol (lib_id "power:+3V3") (at 175.26 140.97 0) (unit 1)
  6525. (in_bom yes) (on_board yes)
  6526. (uuid 00000000-0000-0000-0000-00006139973e)
  6527. (property "Reference" "#PWR04" (id 0) (at 175.26 144.78 0)
  6528. (effects (font (size 1.27 1.27)) hide)
  6529. )
  6530. (property "Value" "+3V3" (id 1) (at 175.641 136.5758 0))
  6531. (property "Footprint" "" (id 2) (at 175.26 140.97 0)
  6532. (effects (font (size 1.27 1.27)) hide)
  6533. )
  6534. (property "Datasheet" "" (id 3) (at 175.26 140.97 0)
  6535. (effects (font (size 1.27 1.27)) hide)
  6536. )
  6537. (pin "1" (uuid 989a8ff9-18c2-413e-961e-31d789a51854))
  6538. )
  6539. (symbol (lib_id "power:GND") (at 175.26 160.02 0) (unit 1)
  6540. (in_bom yes) (on_board yes)
  6541. (uuid 00000000-0000-0000-0000-0000613a4a45)
  6542. (property "Reference" "#PWR05" (id 0) (at 175.26 166.37 0)
  6543. (effects (font (size 1.27 1.27)) hide)
  6544. )
  6545. (property "Value" "GND" (id 1) (at 175.387 164.4142 0))
  6546. (property "Footprint" "" (id 2) (at 175.26 160.02 0)
  6547. (effects (font (size 1.27 1.27)) hide)
  6548. )
  6549. (property "Datasheet" "" (id 3) (at 175.26 160.02 0)
  6550. (effects (font (size 1.27 1.27)) hide)
  6551. )
  6552. (pin "1" (uuid bd599c2b-ec09-436e-942e-6849fdb43942))
  6553. )
  6554. (symbol (lib_id "Device:R_Small") (at 267.97 92.71 270) (unit 1)
  6555. (in_bom yes) (on_board yes)
  6556. (uuid 00000000-0000-0000-0000-000061540484)
  6557. (property "Reference" "R19" (id 0) (at 264.16 90.17 90))
  6558. (property "Value" "1k" (id 1) (at 271.78 90.17 90))
  6559. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 267.97 92.71 0)
  6560. (effects (font (size 1.27 1.27)) hide)
  6561. )
  6562. (property "Datasheet" "~" (id 3) (at 267.97 92.71 0)
  6563. (effects (font (size 1.27 1.27)) hide)
  6564. )
  6565. (property "LCSC" "C11702" (id 4) (at 267.97 92.71 0)
  6566. (effects (font (size 1.27 1.27)) hide)
  6567. )
  6568. (pin "1" (uuid bdb39d38-ce31-4800-bd04-5e8489581a7c))
  6569. (pin "2" (uuid b868dcd4-3a02-4fb0-9750-dc85febd6913))
  6570. )
  6571. (symbol (lib_id "Device:R_Small") (at 267.97 97.79 270) (unit 1)
  6572. (in_bom yes) (on_board yes)
  6573. (uuid 00000000-0000-0000-0000-000061541c23)
  6574. (property "Reference" "R20" (id 0) (at 264.16 95.25 90))
  6575. (property "Value" "1k" (id 1) (at 271.78 96.52 90))
  6576. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 267.97 97.79 0)
  6577. (effects (font (size 1.27 1.27)) hide)
  6578. )
  6579. (property "Datasheet" "~" (id 3) (at 267.97 97.79 0)
  6580. (effects (font (size 1.27 1.27)) hide)
  6581. )
  6582. (property "LCSC" "C11702" (id 4) (at 267.97 97.79 0)
  6583. (effects (font (size 1.27 1.27)) hide)
  6584. )
  6585. (pin "1" (uuid c6b17716-5fd8-428a-8f7e-0372ee8b9ea7))
  6586. (pin "2" (uuid c7bce3ff-6d28-4c2c-9b64-11b2aa93a5ca))
  6587. )
  6588. (symbol (lib_id "Device:R_Small") (at 267.97 102.87 270) (unit 1)
  6589. (in_bom yes) (on_board yes)
  6590. (uuid 00000000-0000-0000-0000-0000615428fc)
  6591. (property "Reference" "R21" (id 0) (at 265.43 100.33 90))
  6592. (property "Value" "1k" (id 1) (at 271.78 100.33 90))
  6593. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 267.97 102.87 0)
  6594. (effects (font (size 1.27 1.27)) hide)
  6595. )
  6596. (property "Datasheet" "~" (id 3) (at 267.97 102.87 0)
  6597. (effects (font (size 1.27 1.27)) hide)
  6598. )
  6599. (property "LCSC" "C11702" (id 4) (at 267.97 102.87 0)
  6600. (effects (font (size 1.27 1.27)) hide)
  6601. )
  6602. (pin "1" (uuid 925730e4-95c9-4c63-8650-486fa63f2212))
  6603. (pin "2" (uuid 23a5ced7-2b7d-4185-9a82-1fbdc1aa4390))
  6604. )
  6605. (symbol (lib_id "Device:R_Small") (at 267.97 107.95 270) (unit 1)
  6606. (in_bom yes) (on_board yes)
  6607. (uuid 00000000-0000-0000-0000-0000615435d8)
  6608. (property "Reference" "R22" (id 0) (at 264.16 105.41 90))
  6609. (property "Value" "1k" (id 1) (at 271.78 105.41 90))
  6610. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 267.97 107.95 0)
  6611. (effects (font (size 1.27 1.27)) hide)
  6612. )
  6613. (property "Datasheet" "~" (id 3) (at 267.97 107.95 0)
  6614. (effects (font (size 1.27 1.27)) hide)
  6615. )
  6616. (property "LCSC" "C11702" (id 4) (at 267.97 107.95 0)
  6617. (effects (font (size 1.27 1.27)) hide)
  6618. )
  6619. (pin "1" (uuid a7dbcf5d-7f15-47b8-818f-7472764a1ac7))
  6620. (pin "2" (uuid 8099129e-89ff-4d3c-8e6f-309333d77fbf))
  6621. )
  6622. (symbol (lib_id "Device:R_Small") (at 267.97 113.03 270) (unit 1)
  6623. (in_bom yes) (on_board yes)
  6624. (uuid 00000000-0000-0000-0000-000061544310)
  6625. (property "Reference" "R23" (id 0) (at 264.16 110.49 90))
  6626. (property "Value" "1k" (id 1) (at 271.78 110.49 90))
  6627. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 267.97 113.03 0)
  6628. (effects (font (size 1.27 1.27)) hide)
  6629. )
  6630. (property "Datasheet" "~" (id 3) (at 267.97 113.03 0)
  6631. (effects (font (size 1.27 1.27)) hide)
  6632. )
  6633. (property "LCSC" "C11702" (id 4) (at 267.97 113.03 0)
  6634. (effects (font (size 1.27 1.27)) hide)
  6635. )
  6636. (pin "1" (uuid 6139c8f7-018f-4692-9e06-8efb167aaa9c))
  6637. (pin "2" (uuid 797aa639-894b-4650-a767-8c9ecc99241c))
  6638. )
  6639. (symbol (lib_id "power:+3V3") (at 274.32 25.4 0) (unit 1)
  6640. (in_bom yes) (on_board yes)
  6641. (uuid 00000000-0000-0000-0000-000061550552)
  6642. (property "Reference" "#PWR08" (id 0) (at 274.32 29.21 0)
  6643. (effects (font (size 1.27 1.27)) hide)
  6644. )
  6645. (property "Value" "+3V3" (id 1) (at 274.701 21.0058 0))
  6646. (property "Footprint" "" (id 2) (at 274.32 25.4 0)
  6647. (effects (font (size 1.27 1.27)) hide)
  6648. )
  6649. (property "Datasheet" "" (id 3) (at 274.32 25.4 0)
  6650. (effects (font (size 1.27 1.27)) hide)
  6651. )
  6652. (pin "1" (uuid ccfbcf7f-cf75-49ec-a1e7-7b013b2d3905))
  6653. )
  6654. (symbol (lib_id "Device:C_Small") (at 151.13 24.13 0) (unit 1)
  6655. (in_bom yes) (on_board yes)
  6656. (uuid 00000000-0000-0000-0000-0000616c45b0)
  6657. (property "Reference" "C19" (id 0) (at 153.4668 22.9616 0)
  6658. (effects (font (size 1.27 1.27)) (justify left))
  6659. )
  6660. (property "Value" "100nF" (id 1) (at 153.4668 25.273 0)
  6661. (effects (font (size 1.27 1.27)) (justify left))
  6662. )
  6663. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 151.13 24.13 0)
  6664. (effects (font (size 1.27 1.27)) hide)
  6665. )
  6666. (property "Datasheet" "~" (id 3) (at 151.13 24.13 0)
  6667. (effects (font (size 1.27 1.27)) hide)
  6668. )
  6669. (property "LCSC" "C1525" (id 4) (at 151.13 24.13 0)
  6670. (effects (font (size 1.27 1.27)) hide)
  6671. )
  6672. (pin "1" (uuid 6ff4ddb0-7fc2-4345-b786-a84d787ec204))
  6673. (pin "2" (uuid de8b9cd6-23ff-4031-b87e-0b8a74cfc6f3))
  6674. )
  6675. (symbol (lib_id "Device:C_Small") (at 139.7 24.13 0) (unit 1)
  6676. (in_bom yes) (on_board yes)
  6677. (uuid 00000000-0000-0000-0000-0000616c45ba)
  6678. (property "Reference" "C18" (id 0) (at 142.0368 22.9616 0)
  6679. (effects (font (size 1.27 1.27)) (justify left))
  6680. )
  6681. (property "Value" "100nF" (id 1) (at 142.0368 25.273 0)
  6682. (effects (font (size 1.27 1.27)) (justify left))
  6683. )
  6684. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 139.7 24.13 0)
  6685. (effects (font (size 1.27 1.27)) hide)
  6686. )
  6687. (property "Datasheet" "~" (id 3) (at 139.7 24.13 0)
  6688. (effects (font (size 1.27 1.27)) hide)
  6689. )
  6690. (property "LCSC" "C1525" (id 4) (at 139.7 24.13 0)
  6691. (effects (font (size 1.27 1.27)) hide)
  6692. )
  6693. (pin "1" (uuid b9b9114f-cfdd-4f0f-994c-c896bb2c8ed4))
  6694. (pin "2" (uuid d9ec4686-42ea-445a-9055-88bd8eb9cf52))
  6695. )
  6696. (symbol (lib_id "power:GND") (at 167.64 49.53 0) (unit 1)
  6697. (in_bom yes) (on_board yes)
  6698. (uuid 00000000-0000-0000-0000-00006170e1c1)
  6699. (property "Reference" "#PWR06" (id 0) (at 167.64 55.88 0)
  6700. (effects (font (size 1.27 1.27)) hide)
  6701. )
  6702. (property "Value" "GND" (id 1) (at 167.767 53.9242 0))
  6703. (property "Footprint" "" (id 2) (at 167.64 49.53 0)
  6704. (effects (font (size 1.27 1.27)) hide)
  6705. )
  6706. (property "Datasheet" "" (id 3) (at 167.64 49.53 0)
  6707. (effects (font (size 1.27 1.27)) hide)
  6708. )
  6709. (pin "1" (uuid de1be746-b7ec-4baf-8299-9379d5cfcc62))
  6710. )
  6711. (symbol (lib_id "power:GND") (at 189.23 49.53 0) (unit 1)
  6712. (in_bom yes) (on_board yes)
  6713. (uuid 00000000-0000-0000-0000-00006171a8a6)
  6714. (property "Reference" "#PWR07" (id 0) (at 189.23 55.88 0)
  6715. (effects (font (size 1.27 1.27)) hide)
  6716. )
  6717. (property "Value" "GND" (id 1) (at 189.357 53.9242 0))
  6718. (property "Footprint" "" (id 2) (at 189.23 49.53 0)
  6719. (effects (font (size 1.27 1.27)) hide)
  6720. )
  6721. (property "Datasheet" "" (id 3) (at 189.23 49.53 0)
  6722. (effects (font (size 1.27 1.27)) hide)
  6723. )
  6724. (pin "1" (uuid 778638ac-e0fb-42b8-8c63-0809f5895195))
  6725. )
  6726. (symbol (lib_id "Device:LED") (at 57.15 36.83 90) (unit 1)
  6727. (in_bom yes) (on_board yes)
  6728. (uuid 00000000-0000-0000-0000-000061787067)
  6729. (property "Reference" "D1" (id 0) (at 60.1472 35.8394 90)
  6730. (effects (font (size 1.27 1.27)) (justify right))
  6731. )
  6732. (property "Value" "LED" (id 1) (at 60.1472 38.1508 90)
  6733. (effects (font (size 1.27 1.27)) (justify right))
  6734. )
  6735. (property "Footprint" "LED_SMD:LED_0603_1608Metric" (id 2) (at 57.15 36.83 0)
  6736. (effects (font (size 1.27 1.27)) hide)
  6737. )
  6738. (property "Datasheet" "~" (id 3) (at 57.15 36.83 0)
  6739. (effects (font (size 1.27 1.27)) hide)
  6740. )
  6741. (property "LCSC" "C72041" (id 4) (at 57.15 36.83 0)
  6742. (effects (font (size 1.27 1.27)) hide)
  6743. )
  6744. (pin "1" (uuid 62a2d35c-51f3-4560-9ba3-c8554b164be4))
  6745. (pin "2" (uuid 43adeeda-45a9-49c0-9f1f-746f14391161))
  6746. )
  6747. (symbol (lib_id "Device:R_Small") (at 57.15 29.21 0) (unit 1)
  6748. (in_bom yes) (on_board yes)
  6749. (uuid 00000000-0000-0000-0000-000061789539)
  6750. (property "Reference" "R6" (id 0) (at 58.6486 28.0416 0)
  6751. (effects (font (size 1.27 1.27)) (justify left))
  6752. )
  6753. (property "Value" "470" (id 1) (at 58.6486 30.353 0)
  6754. (effects (font (size 1.27 1.27)) (justify left))
  6755. )
  6756. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 57.15 29.21 0)
  6757. (effects (font (size 1.27 1.27)) hide)
  6758. )
  6759. (property "Datasheet" "~" (id 3) (at 57.15 29.21 0)
  6760. (effects (font (size 1.27 1.27)) hide)
  6761. )
  6762. (property "LCSC" "C25117" (id 4) (at 57.15 29.21 0)
  6763. (effects (font (size 1.27 1.27)) hide)
  6764. )
  6765. (pin "1" (uuid 1cb534a2-4c17-4751-8a89-694b1a1ecbe7))
  6766. (pin "2" (uuid d80a6ce8-ddc9-4465-843e-77fab6b40b99))
  6767. )
  6768. (symbol (lib_id "power:+3V3") (at 57.15 25.4 0) (unit 1)
  6769. (in_bom yes) (on_board yes)
  6770. (uuid 00000000-0000-0000-0000-0000617910f5)
  6771. (property "Reference" "#PWR03" (id 0) (at 57.15 29.21 0)
  6772. (effects (font (size 1.27 1.27)) hide)
  6773. )
  6774. (property "Value" "+3V3" (id 1) (at 57.531 21.0058 0))
  6775. (property "Footprint" "" (id 2) (at 57.15 25.4 0)
  6776. (effects (font (size 1.27 1.27)) hide)
  6777. )
  6778. (property "Datasheet" "" (id 3) (at 57.15 25.4 0)
  6779. (effects (font (size 1.27 1.27)) hide)
  6780. )
  6781. (pin "1" (uuid 7b73243f-f2a2-4601-b3a2-a4364a47c988))
  6782. )
  6783. (symbol (lib_id "Connector_Generic:Conn_02x05_Odd_Even") (at 256.54 151.13 0) (unit 1)
  6784. (in_bom yes) (on_board yes)
  6785. (uuid 00000000-0000-0000-0000-0000619aeefc)
  6786. (property "Reference" "J5" (id 0) (at 257.81 140.5382 0))
  6787. (property "Value" "ST LINK DEBUG/FLASH" (id 1) (at 257.81 142.8496 0))
  6788. (property "Footprint" "Connector_IDC:IDC-Header_2x05_P2.54mm_Vertical" (id 2) (at 256.54 151.13 0)
  6789. (effects (font (size 1.27 1.27)) hide)
  6790. )
  6791. (property "Datasheet" "~" (id 3) (at 256.54 151.13 0)
  6792. (effects (font (size 1.27 1.27)) hide)
  6793. )
  6794. (property "LCSC" "C706914" (id 4) (at 256.54 151.13 0)
  6795. (effects (font (size 1.27 1.27)) hide)
  6796. )
  6797. (pin "1" (uuid d9904713-5589-410c-a87c-dc35e17cdc96))
  6798. (pin "10" (uuid c6167abf-5b27-4d58-bbc4-02a12e1b50f2))
  6799. (pin "2" (uuid cc6d8589-d3ef-4c49-8f29-121ddf19266e))
  6800. (pin "3" (uuid c97331df-a2bf-4a4b-b52c-67d808eb3912))
  6801. (pin "4" (uuid b686aa45-50ed-4c6d-9a9e-44c8ef2cc835))
  6802. (pin "5" (uuid feb7af07-00c5-44ae-98db-c56bb3db2efb))
  6803. (pin "6" (uuid 15b9d65e-3834-4c21-b97d-64b85ecb2c04))
  6804. (pin "7" (uuid a2cb3dd4-7456-4418-96f1-4c8fc4e82f93))
  6805. (pin "8" (uuid 1a3dca5e-9f4a-44a8-b3e2-f1721faa1094))
  6806. (pin "9" (uuid 876b127b-2c90-425b-b412-703b2a6ab315))
  6807. )
  6808. (symbol (lib_id "Connector_Generic:Conn_01x03") (at 140.97 167.64 0) (unit 1)
  6809. (in_bom yes) (on_board yes)
  6810. (uuid 00000000-0000-0000-0000-000061a2788d)
  6811. (property "Reference" "J6" (id 0) (at 139.7 158.75 0)
  6812. (effects (font (size 1.27 1.27)) (justify left))
  6813. )
  6814. (property "Value" "ID HI" (id 1) (at 149.86 161.29 0)
  6815. (effects (font (size 1.27 1.27)) (justify left))
  6816. )
  6817. (property "Footprint" "Jumper:SolderJumper-3_P1.3mm_Open_RoundedPad1.0x1.5mm_NumberLabels" (id 2) (at 140.97 167.64 0)
  6818. (effects (font (size 1.27 1.27)) hide)
  6819. )
  6820. (property "Datasheet" "~" (id 3) (at 140.97 167.64 0)
  6821. (effects (font (size 1.27 1.27)) hide)
  6822. )
  6823. (property "LCSC" "C225478" (id 4) (at 140.97 167.64 0)
  6824. (effects (font (size 1.27 1.27)) hide)
  6825. )
  6826. (pin "1" (uuid 8814f97e-9379-4b31-88e8-e99a8be1cfd6))
  6827. (pin "2" (uuid ced83566-388d-4f99-be31-41bdc857545a))
  6828. (pin "3" (uuid 3ad1de4c-8408-4027-ad9c-3fd5c92fe0b8))
  6829. )
  6830. (symbol (lib_id "Connector_Generic:Conn_01x03") (at 152.4 167.64 0) (unit 1)
  6831. (in_bom yes) (on_board yes)
  6832. (uuid 00000000-0000-0000-0000-000061a29d54)
  6833. (property "Reference" "J7" (id 0) (at 151.13 158.75 0)
  6834. (effects (font (size 1.27 1.27)) (justify left))
  6835. )
  6836. (property "Value" "ID" (id 1) (at 139.7 161.29 0)
  6837. (effects (font (size 1.27 1.27)) (justify left))
  6838. )
  6839. (property "Footprint" "Jumper:SolderJumper-3_P1.3mm_Open_RoundedPad1.0x1.5mm_NumberLabels" (id 2) (at 152.4 167.64 0)
  6840. (effects (font (size 1.27 1.27)) hide)
  6841. )
  6842. (property "Datasheet" "~" (id 3) (at 152.4 167.64 0)
  6843. (effects (font (size 1.27 1.27)) hide)
  6844. )
  6845. (property "LCSC" "C225478" (id 4) (at 152.4 167.64 0)
  6846. (effects (font (size 1.27 1.27)) hide)
  6847. )
  6848. (pin "1" (uuid 2460893c-a3af-4899-95e1-0e398bf3d855))
  6849. (pin "2" (uuid 4aa6fc9f-d2ac-435f-8408-092c94eb96e1))
  6850. (pin "3" (uuid a044e21d-edf5-4199-9c94-8aa40ba0be53))
  6851. )
  6852. (symbol (lib_id "Connector_Generic:Conn_01x03") (at 163.83 167.64 0) (unit 1)
  6853. (in_bom yes) (on_board yes)
  6854. (uuid 00000000-0000-0000-0000-000061a2b329)
  6855. (property "Reference" "J8" (id 0) (at 162.56 158.75 0)
  6856. (effects (font (size 1.27 1.27)) (justify left))
  6857. )
  6858. (property "Value" "ID LOW" (id 1) (at 161.29 161.29 0)
  6859. (effects (font (size 1.27 1.27)) (justify left))
  6860. )
  6861. (property "Footprint" "Jumper:SolderJumper-3_P1.3mm_Open_RoundedPad1.0x1.5mm_NumberLabels" (id 2) (at 163.83 167.64 0)
  6862. (effects (font (size 1.27 1.27)) hide)
  6863. )
  6864. (property "Datasheet" "~" (id 3) (at 163.83 167.64 0)
  6865. (effects (font (size 1.27 1.27)) hide)
  6866. )
  6867. (property "LCSC" "C225478" (id 4) (at 163.83 167.64 0)
  6868. (effects (font (size 1.27 1.27)) hide)
  6869. )
  6870. (pin "1" (uuid a9f64757-5858-4f74-85b0-83b0b6984315))
  6871. (pin "2" (uuid 6b41202c-9017-4555-8823-836bda0ce6bf))
  6872. (pin "3" (uuid e71a0e1f-4c5f-4fa7-97cc-0c3ffe757078))
  6873. )
  6874. (symbol (lib_id "power:+3V3") (at 144.78 162.56 0) (unit 1)
  6875. (in_bom yes) (on_board yes)
  6876. (uuid 00000000-0000-0000-0000-000061a5abb1)
  6877. (property "Reference" "#PWR0107" (id 0) (at 144.78 166.37 0)
  6878. (effects (font (size 1.27 1.27)) hide)
  6879. )
  6880. (property "Value" "+3V3" (id 1) (at 145.161 158.1658 0))
  6881. (property "Footprint" "" (id 2) (at 144.78 162.56 0)
  6882. (effects (font (size 1.27 1.27)) hide)
  6883. )
  6884. (property "Datasheet" "" (id 3) (at 144.78 162.56 0)
  6885. (effects (font (size 1.27 1.27)) hide)
  6886. )
  6887. (pin "1" (uuid 7134f0e7-4867-4617-b970-a95d472f2379))
  6888. )
  6889. (symbol (lib_id "power:GND") (at 156.21 172.72 0) (unit 1)
  6890. (in_bom yes) (on_board yes)
  6891. (uuid 00000000-0000-0000-0000-000061a8d98a)
  6892. (property "Reference" "#PWR0108" (id 0) (at 156.21 179.07 0)
  6893. (effects (font (size 1.27 1.27)) hide)
  6894. )
  6895. (property "Value" "GND" (id 1) (at 156.337 177.1142 0))
  6896. (property "Footprint" "" (id 2) (at 156.21 172.72 0)
  6897. (effects (font (size 1.27 1.27)) hide)
  6898. )
  6899. (property "Datasheet" "" (id 3) (at 156.21 172.72 0)
  6900. (effects (font (size 1.27 1.27)) hide)
  6901. )
  6902. (pin "1" (uuid 391a6298-71f7-4c29-9a57-1b9126684372))
  6903. )
  6904. (symbol (lib_id "power:GND") (at 241.3 160.02 0) (unit 1)
  6905. (in_bom yes) (on_board yes)
  6906. (uuid 00000000-0000-0000-0000-000061aafd54)
  6907. (property "Reference" "#PWR0110" (id 0) (at 241.3 166.37 0)
  6908. (effects (font (size 1.27 1.27)) hide)
  6909. )
  6910. (property "Value" "GND" (id 1) (at 241.427 164.4142 0))
  6911. (property "Footprint" "" (id 2) (at 241.3 160.02 0)
  6912. (effects (font (size 1.27 1.27)) hide)
  6913. )
  6914. (property "Datasheet" "" (id 3) (at 241.3 160.02 0)
  6915. (effects (font (size 1.27 1.27)) hide)
  6916. )
  6917. (pin "1" (uuid f6661887-cf0e-4db1-8f7b-e7f30359b22c))
  6918. )
  6919. (symbol (lib_id "power:GND") (at 271.78 160.02 0) (unit 1)
  6920. (in_bom yes) (on_board yes)
  6921. (uuid 00000000-0000-0000-0000-000061abe3cd)
  6922. (property "Reference" "#PWR0111" (id 0) (at 271.78 166.37 0)
  6923. (effects (font (size 1.27 1.27)) hide)
  6924. )
  6925. (property "Value" "GND" (id 1) (at 271.907 164.4142 0))
  6926. (property "Footprint" "" (id 2) (at 271.78 160.02 0)
  6927. (effects (font (size 1.27 1.27)) hide)
  6928. )
  6929. (property "Datasheet" "" (id 3) (at 271.78 160.02 0)
  6930. (effects (font (size 1.27 1.27)) hide)
  6931. )
  6932. (pin "1" (uuid f9f013bd-5225-4bad-a22e-600cf9fcef63))
  6933. )
  6934. (symbol (lib_id "power:+3V3") (at 276.86 151.13 0) (unit 1)
  6935. (in_bom yes) (on_board yes)
  6936. (uuid 00000000-0000-0000-0000-000061aecf76)
  6937. (property "Reference" "#PWR0112" (id 0) (at 276.86 154.94 0)
  6938. (effects (font (size 1.27 1.27)) hide)
  6939. )
  6940. (property "Value" "+3V3" (id 1) (at 277.241 146.7358 0))
  6941. (property "Footprint" "" (id 2) (at 276.86 151.13 0)
  6942. (effects (font (size 1.27 1.27)) hide)
  6943. )
  6944. (property "Datasheet" "" (id 3) (at 276.86 151.13 0)
  6945. (effects (font (size 1.27 1.27)) hide)
  6946. )
  6947. (pin "1" (uuid 8657ebd4-6149-4492-bac5-2ce6f77c5b3b))
  6948. )
  6949. (symbol (lib_id "power:+5V") (at 281.94 151.13 0) (unit 1)
  6950. (in_bom yes) (on_board yes)
  6951. (uuid 00000000-0000-0000-0000-000061afd140)
  6952. (property "Reference" "#PWR0113" (id 0) (at 281.94 154.94 0)
  6953. (effects (font (size 1.27 1.27)) hide)
  6954. )
  6955. (property "Value" "+5V" (id 1) (at 282.321 146.7358 0))
  6956. (property "Footprint" "" (id 2) (at 281.94 151.13 0)
  6957. (effects (font (size 1.27 1.27)) hide)
  6958. )
  6959. (property "Datasheet" "" (id 3) (at 281.94 151.13 0)
  6960. (effects (font (size 1.27 1.27)) hide)
  6961. )
  6962. (pin "1" (uuid a01755df-86c4-4a62-95cc-ecf2809c8a1a))
  6963. )
  6964. (symbol (lib_id "power:+3V3") (at 236.22 151.13 0) (unit 1)
  6965. (in_bom yes) (on_board yes)
  6966. (uuid 00000000-0000-0000-0000-000061b0e64a)
  6967. (property "Reference" "#PWR0114" (id 0) (at 236.22 154.94 0)
  6968. (effects (font (size 1.27 1.27)) hide)
  6969. )
  6970. (property "Value" "+3V3" (id 1) (at 236.601 146.7358 0))
  6971. (property "Footprint" "" (id 2) (at 236.22 151.13 0)
  6972. (effects (font (size 1.27 1.27)) hide)
  6973. )
  6974. (property "Datasheet" "" (id 3) (at 236.22 151.13 0)
  6975. (effects (font (size 1.27 1.27)) hide)
  6976. )
  6977. (pin "1" (uuid a61f637c-a305-4916-bf82-376a9a4e2a26))
  6978. )
  6979. (symbol (lib_id "power:+5V") (at 229.87 151.13 0) (unit 1)
  6980. (in_bom yes) (on_board yes)
  6981. (uuid 00000000-0000-0000-0000-000061b1e450)
  6982. (property "Reference" "#PWR0115" (id 0) (at 229.87 154.94 0)
  6983. (effects (font (size 1.27 1.27)) hide)
  6984. )
  6985. (property "Value" "+5V" (id 1) (at 230.251 146.7358 0))
  6986. (property "Footprint" "" (id 2) (at 229.87 151.13 0)
  6987. (effects (font (size 1.27 1.27)) hide)
  6988. )
  6989. (property "Datasheet" "" (id 3) (at 229.87 151.13 0)
  6990. (effects (font (size 1.27 1.27)) hide)
  6991. )
  6992. (pin "1" (uuid cf88f82e-a67e-47a6-9146-3dc97dd3a3ac))
  6993. )
  6994. (symbol (lib_id "power:GND") (at 139.7 27.94 0) (unit 1)
  6995. (in_bom yes) (on_board yes)
  6996. (uuid 00000000-0000-0000-0000-000061b7ab9b)
  6997. (property "Reference" "#PWR0116" (id 0) (at 139.7 34.29 0)
  6998. (effects (font (size 1.27 1.27)) hide)
  6999. )
  7000. (property "Value" "GND" (id 1) (at 139.827 32.3342 0))
  7001. (property "Footprint" "" (id 2) (at 139.7 27.94 0)
  7002. (effects (font (size 1.27 1.27)) hide)
  7003. )
  7004. (property "Datasheet" "" (id 3) (at 139.7 27.94 0)
  7005. (effects (font (size 1.27 1.27)) hide)
  7006. )
  7007. (pin "1" (uuid 7e8e834c-5fcc-4c97-a591-250d41a34553))
  7008. )
  7009. (symbol (lib_id "power:GND") (at 151.13 27.94 0) (unit 1)
  7010. (in_bom yes) (on_board yes)
  7011. (uuid 00000000-0000-0000-0000-000061b8acb1)
  7012. (property "Reference" "#PWR0117" (id 0) (at 151.13 34.29 0)
  7013. (effects (font (size 1.27 1.27)) hide)
  7014. )
  7015. (property "Value" "GND" (id 1) (at 151.257 32.3342 0))
  7016. (property "Footprint" "" (id 2) (at 151.13 27.94 0)
  7017. (effects (font (size 1.27 1.27)) hide)
  7018. )
  7019. (property "Datasheet" "" (id 3) (at 151.13 27.94 0)
  7020. (effects (font (size 1.27 1.27)) hide)
  7021. )
  7022. (pin "1" (uuid a6fbafad-3f9c-4613-abf9-d6b0ea786512))
  7023. )
  7024. (symbol (lib_id "power:+3V3") (at 139.7 20.32 0) (unit 1)
  7025. (in_bom yes) (on_board yes)
  7026. (uuid 00000000-0000-0000-0000-000061b9ba45)
  7027. (property "Reference" "#PWR0118" (id 0) (at 139.7 24.13 0)
  7028. (effects (font (size 1.27 1.27)) hide)
  7029. )
  7030. (property "Value" "+3V3" (id 1) (at 140.081 15.9258 0))
  7031. (property "Footprint" "" (id 2) (at 139.7 20.32 0)
  7032. (effects (font (size 1.27 1.27)) hide)
  7033. )
  7034. (property "Datasheet" "" (id 3) (at 139.7 20.32 0)
  7035. (effects (font (size 1.27 1.27)) hide)
  7036. )
  7037. (pin "1" (uuid cd376ec6-47e1-418a-9127-045d1da49ecd))
  7038. )
  7039. (symbol (lib_id "power:+3V3") (at 151.13 20.32 0) (unit 1)
  7040. (in_bom yes) (on_board yes)
  7041. (uuid 00000000-0000-0000-0000-000061b9cd1c)
  7042. (property "Reference" "#PWR0119" (id 0) (at 151.13 24.13 0)
  7043. (effects (font (size 1.27 1.27)) hide)
  7044. )
  7045. (property "Value" "+3V3" (id 1) (at 151.511 15.9258 0))
  7046. (property "Footprint" "" (id 2) (at 151.13 20.32 0)
  7047. (effects (font (size 1.27 1.27)) hide)
  7048. )
  7049. (property "Datasheet" "" (id 3) (at 151.13 20.32 0)
  7050. (effects (font (size 1.27 1.27)) hide)
  7051. )
  7052. (pin "1" (uuid c148d6a2-b769-45c3-bba5-967203976bd7))
  7053. )
  7054. (symbol (lib_id "power:+3V3") (at 167.64 20.32 0) (unit 1)
  7055. (in_bom yes) (on_board yes)
  7056. (uuid 00000000-0000-0000-0000-000061b9df0e)
  7057. (property "Reference" "#PWR0120" (id 0) (at 167.64 24.13 0)
  7058. (effects (font (size 1.27 1.27)) hide)
  7059. )
  7060. (property "Value" "+3V3" (id 1) (at 168.021 15.9258 0))
  7061. (property "Footprint" "" (id 2) (at 167.64 20.32 0)
  7062. (effects (font (size 1.27 1.27)) hide)
  7063. )
  7064. (property "Datasheet" "" (id 3) (at 167.64 20.32 0)
  7065. (effects (font (size 1.27 1.27)) hide)
  7066. )
  7067. (pin "1" (uuid c37f6d7b-cb0d-41e8-bebd-5887732015af))
  7068. )
  7069. (symbol (lib_id "power:+3V3") (at 189.23 20.32 0) (unit 1)
  7070. (in_bom yes) (on_board yes)
  7071. (uuid 00000000-0000-0000-0000-000061b9f12d)
  7072. (property "Reference" "#PWR0121" (id 0) (at 189.23 24.13 0)
  7073. (effects (font (size 1.27 1.27)) hide)
  7074. )
  7075. (property "Value" "+3V3" (id 1) (at 189.611 15.9258 0))
  7076. (property "Footprint" "" (id 2) (at 189.23 20.32 0)
  7077. (effects (font (size 1.27 1.27)) hide)
  7078. )
  7079. (property "Datasheet" "" (id 3) (at 189.23 20.32 0)
  7080. (effects (font (size 1.27 1.27)) hide)
  7081. )
  7082. (pin "1" (uuid 79ba0572-2056-43c1-be53-6ceefc2cf25a))
  7083. )
  7084. (symbol (lib_id "power:GND") (at 199.39 160.02 0) (unit 1)
  7085. (in_bom yes) (on_board yes) (fields_autoplaced)
  7086. (uuid 138b55c4-a8cf-43b6-aeeb-467cc948641b)
  7087. (property "Reference" "#PWR0175" (id 0) (at 199.39 166.37 0)
  7088. (effects (font (size 1.27 1.27)) hide)
  7089. )
  7090. (property "Value" "GND" (id 1) (at 199.39 165.1 0))
  7091. (property "Footprint" "" (id 2) (at 199.39 160.02 0)
  7092. (effects (font (size 1.27 1.27)) hide)
  7093. )
  7094. (property "Datasheet" "" (id 3) (at 199.39 160.02 0)
  7095. (effects (font (size 1.27 1.27)) hide)
  7096. )
  7097. (pin "1" (uuid cb2084ec-bf02-4b3f-b3b1-2b9f517acb7d))
  7098. )
  7099. (symbol (lib_id "power:+3V3") (at 156.21 162.56 0) (unit 1)
  7100. (in_bom yes) (on_board yes)
  7101. (uuid 1e363680-fc77-40a0-b7ae-3279abfba965)
  7102. (property "Reference" "#PWR0173" (id 0) (at 156.21 166.37 0)
  7103. (effects (font (size 1.27 1.27)) hide)
  7104. )
  7105. (property "Value" "+3V3" (id 1) (at 156.591 158.1658 0))
  7106. (property "Footprint" "" (id 2) (at 156.21 162.56 0)
  7107. (effects (font (size 1.27 1.27)) hide)
  7108. )
  7109. (property "Datasheet" "" (id 3) (at 156.21 162.56 0)
  7110. (effects (font (size 1.27 1.27)) hide)
  7111. )
  7112. (pin "1" (uuid 5c4cf1a6-89ae-432e-ad2c-5f8e8ab9f4e3))
  7113. )
  7114. (symbol (lib_id "power:GND") (at 133.35 172.72 0) (unit 1)
  7115. (in_bom yes) (on_board yes)
  7116. (uuid 1f643113-fa5c-4d33-af0d-36613c1d3ae5)
  7117. (property "Reference" "#PWR0172" (id 0) (at 133.35 179.07 0)
  7118. (effects (font (size 1.27 1.27)) hide)
  7119. )
  7120. (property "Value" "GND" (id 1) (at 133.477 177.1142 0))
  7121. (property "Footprint" "" (id 2) (at 133.35 172.72 0)
  7122. (effects (font (size 1.27 1.27)) hide)
  7123. )
  7124. (property "Datasheet" "" (id 3) (at 133.35 172.72 0)
  7125. (effects (font (size 1.27 1.27)) hide)
  7126. )
  7127. (pin "1" (uuid 25d2c409-9df9-4f79-afd7-4c5cf7171864))
  7128. )
  7129. (symbol (lib_id "Device:R_Small") (at 162.56 119.38 0) (unit 1)
  7130. (in_bom yes) (on_board yes)
  7131. (uuid 3d4ee57f-7979-4983-a450-d4a7eead57eb)
  7132. (property "Reference" "R64" (id 0) (at 157.5816 119.38 90))
  7133. (property "Value" "3k" (id 1) (at 159.893 119.38 90))
  7134. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 162.56 119.38 0)
  7135. (effects (font (size 1.27 1.27)) hide)
  7136. )
  7137. (property "Datasheet" "~" (id 3) (at 162.56 119.38 0)
  7138. (effects (font (size 1.27 1.27)) hide)
  7139. )
  7140. (property "LCSC" "C137987" (id 4) (at 162.56 119.38 0)
  7141. (effects (font (size 1.27 1.27)) hide)
  7142. )
  7143. (pin "1" (uuid 7e827eb7-a125-47f1-acc1-e503cdd953f0))
  7144. (pin "2" (uuid 4912fcb7-37bd-4af0-9140-1d62d6b8949e))
  7145. )
  7146. (symbol (lib_id "Connector_Generic:Conn_02x03_Odd_Even") (at 210.82 156.21 0) (unit 1)
  7147. (in_bom yes) (on_board yes) (fields_autoplaced)
  7148. (uuid 4ed97a04-0986-4770-aed0-dc9f909c392f)
  7149. (property "Reference" "J11" (id 0) (at 212.09 147.32 0))
  7150. (property "Value" "Conn_02x03_Odd_Even" (id 1) (at 212.09 149.86 0))
  7151. (property "Footprint" "Connector:Tag-Connect_TC2030-IDC-FP_2x03_P1.27mm_Vertical" (id 2) (at 210.82 156.21 0)
  7152. (effects (font (size 1.27 1.27)) hide)
  7153. )
  7154. (property "Datasheet" "~" (id 3) (at 210.82 156.21 0)
  7155. (effects (font (size 1.27 1.27)) hide)
  7156. )
  7157. (property "LCSC" "NM" (id 4) (at 210.82 156.21 0)
  7158. (effects (font (size 1.27 1.27)) hide)
  7159. )
  7160. (pin "1" (uuid 694349ac-dd8e-4206-ab3f-a2667df33d53))
  7161. (pin "2" (uuid 4be1cee2-a15e-46bb-b636-7b7b95d7450e))
  7162. (pin "3" (uuid 4e7f077b-b549-4a6c-88a8-b7e8876537d4))
  7163. (pin "4" (uuid f4136950-38cb-4981-9884-4447a479e935))
  7164. (pin "5" (uuid c04676dc-af89-4568-9231-c9d886469934))
  7165. (pin "6" (uuid cc688cd2-08ad-4256-bba2-7e9697424f84))
  7166. )
  7167. (symbol (lib_id "power:GND") (at 111.76 111.76 0) (unit 1)
  7168. (in_bom yes) (on_board yes)
  7169. (uuid 579f6b2b-1542-4dae-8619-560e86764e1b)
  7170. (property "Reference" "#PWR0185" (id 0) (at 111.76 118.11 0)
  7171. (effects (font (size 1.27 1.27)) hide)
  7172. )
  7173. (property "Value" "GND" (id 1) (at 111.887 116.1542 0))
  7174. (property "Footprint" "" (id 2) (at 111.76 111.76 0)
  7175. (effects (font (size 1.27 1.27)) hide)
  7176. )
  7177. (property "Datasheet" "" (id 3) (at 111.76 111.76 0)
  7178. (effects (font (size 1.27 1.27)) hide)
  7179. )
  7180. (pin "1" (uuid 173b7683-fc15-4518-a4c2-6e93812e700a))
  7181. )
  7182. (symbol (lib_id "Diode:1N4148W") (at 153.67 129.54 0) (unit 1)
  7183. (in_bom yes) (on_board yes)
  7184. (uuid 615e49fd-3f83-4aa6-b131-9d3dcb501f2c)
  7185. (property "Reference" "D10" (id 0) (at 153.67 135.89 0))
  7186. (property "Value" "MBRA340T" (id 1) (at 153.67 133.35 0))
  7187. (property "Footprint" "Diode_SMD:D_SMA" (id 2) (at 153.67 133.985 0)
  7188. (effects (font (size 1.27 1.27)) hide)
  7189. )
  7190. (property "Datasheet" "" (id 3) (at 153.67 129.54 0)
  7191. (effects (font (size 1.27 1.27)) hide)
  7192. )
  7193. (property "LCSC" "C26178" (id 4) (at 153.67 129.54 0)
  7194. (effects (font (size 1.27 1.27)) hide)
  7195. )
  7196. (pin "1" (uuid 29762142-0fbc-4564-8d28-2a150dda40c7))
  7197. (pin "2" (uuid 717a7f41-32cd-45c4-8023-b8f092a09e3f))
  7198. )
  7199. (symbol (lib_id "power:+5V") (at 162.56 115.57 0) (unit 1)
  7200. (in_bom yes) (on_board yes) (fields_autoplaced)
  7201. (uuid 75db0569-c1c9-47ca-b2fd-be6d039ffae9)
  7202. (property "Reference" "#PWR0190" (id 0) (at 162.56 119.38 0)
  7203. (effects (font (size 1.27 1.27)) hide)
  7204. )
  7205. (property "Value" "+5V" (id 1) (at 162.56 110.49 0))
  7206. (property "Footprint" "" (id 2) (at 162.56 115.57 0)
  7207. (effects (font (size 1.27 1.27)) hide)
  7208. )
  7209. (property "Datasheet" "" (id 3) (at 162.56 115.57 0)
  7210. (effects (font (size 1.27 1.27)) hide)
  7211. )
  7212. (pin "1" (uuid 94b4e1d3-26de-4d2a-aee2-105f21e7f527))
  7213. )
  7214. (symbol (lib_id "power:+3V3") (at 133.35 162.56 0) (unit 1)
  7215. (in_bom yes) (on_board yes)
  7216. (uuid 7e409286-fd81-4589-a252-d85b68bce9f6)
  7217. (property "Reference" "#PWR0174" (id 0) (at 133.35 166.37 0)
  7218. (effects (font (size 1.27 1.27)) hide)
  7219. )
  7220. (property "Value" "+3V3" (id 1) (at 133.731 158.1658 0))
  7221. (property "Footprint" "" (id 2) (at 133.35 162.56 0)
  7222. (effects (font (size 1.27 1.27)) hide)
  7223. )
  7224. (property "Datasheet" "" (id 3) (at 133.35 162.56 0)
  7225. (effects (font (size 1.27 1.27)) hide)
  7226. )
  7227. (pin "1" (uuid 5162ce73-0694-4c4d-b59c-441dae82bbe8))
  7228. )
  7229. (symbol (lib_id "power:+3V3") (at 199.39 151.13 0) (unit 1)
  7230. (in_bom yes) (on_board yes) (fields_autoplaced)
  7231. (uuid 831181f3-e07e-4359-85a3-43a55598e402)
  7232. (property "Reference" "#PWR0159" (id 0) (at 199.39 154.94 0)
  7233. (effects (font (size 1.27 1.27)) hide)
  7234. )
  7235. (property "Value" "+3V3" (id 1) (at 199.39 145.415 0))
  7236. (property "Footprint" "" (id 2) (at 199.39 151.13 0)
  7237. (effects (font (size 1.27 1.27)) hide)
  7238. )
  7239. (property "Datasheet" "" (id 3) (at 199.39 151.13 0)
  7240. (effects (font (size 1.27 1.27)) hide)
  7241. )
  7242. (pin "1" (uuid 49bb3b6b-654d-4e70-a4aa-1f1efa32c9ab))
  7243. )
  7244. (symbol (lib_id "Diode:1N4148W") (at 153.67 125.73 0) (unit 1)
  7245. (in_bom yes) (on_board yes) (fields_autoplaced)
  7246. (uuid caa6303a-9842-4b6b-90f3-1429bc2a97a5)
  7247. (property "Reference" "D9" (id 0) (at 153.67 119.38 0))
  7248. (property "Value" "MBRA340T" (id 1) (at 153.67 121.92 0))
  7249. (property "Footprint" "Diode_SMD:D_SMA" (id 2) (at 153.67 130.175 0)
  7250. (effects (font (size 1.27 1.27)) hide)
  7251. )
  7252. (property "Datasheet" "" (id 3) (at 153.67 125.73 0)
  7253. (effects (font (size 1.27 1.27)) hide)
  7254. )
  7255. (property "LCSC" "C26178" (id 4) (at 153.67 125.73 0)
  7256. (effects (font (size 1.27 1.27)) hide)
  7257. )
  7258. (pin "1" (uuid d701d0d6-82cc-42bf-a7c9-7931e6a1fc89))
  7259. (pin "2" (uuid 2ae579a8-31c8-4a78-8bf6-72fca00e8bf2))
  7260. )
  7261. (symbol (lib_id "Connector_Generic:Conn_02x25_Odd_Even") (at 120.65 76.2 0) (unit 1)
  7262. (in_bom yes) (on_board yes)
  7263. (uuid de74180e-b890-44b7-9756-b45db32a51e7)
  7264. (property "Reference" "J12" (id 0) (at 121.92 46.99 0))
  7265. (property "Value" "Conn_02x25_Odd_Even" (id 1) (at 137.16 41.91 0))
  7266. (property "Footprint" "Connector_IDC:IDC-Header_2x25_P2.54mm_Vertical" (id 2) (at 120.65 76.2 0)
  7267. (effects (font (size 1.27 1.27)) hide)
  7268. )
  7269. (property "Datasheet" "~" (id 3) (at 120.65 76.2 0)
  7270. (effects (font (size 1.27 1.27)) hide)
  7271. )
  7272. (pin "1" (uuid e82cf3eb-2e7a-4a8b-996b-2004f7cc101e))
  7273. (pin "10" (uuid f85f1d29-b803-48d0-a168-b0de65e2db9a))
  7274. (pin "11" (uuid ce4709a5-6b7e-44ee-9871-1149986c2e7b))
  7275. (pin "12" (uuid bc60c623-edf8-4166-a45a-3c9a60efe4c5))
  7276. (pin "13" (uuid fdf58be0-57f4-4f08-9b70-a06b3776c6dd))
  7277. (pin "14" (uuid 98dc8f49-9dd6-478e-96d0-75e275701e99))
  7278. (pin "15" (uuid b77a486d-6152-4411-b337-ad777a3a63b2))
  7279. (pin "16" (uuid 81a6758a-a06b-4d3e-81b9-1534449b7457))
  7280. (pin "17" (uuid a30248e1-36ea-41cd-9738-19184ec09b84))
  7281. (pin "18" (uuid d6a3e2ff-d905-48de-9d37-71f236ccc546))
  7282. (pin "19" (uuid 9a06744a-f10d-4166-ac1a-8b7135113449))
  7283. (pin "2" (uuid 6c6de6b0-904e-47e2-b173-fef9720dc2f0))
  7284. (pin "20" (uuid 3ecbfdf0-8e49-4182-8306-2d2414f292e8))
  7285. (pin "21" (uuid a9852008-7e99-4f79-b5b8-e7f11c815644))
  7286. (pin "22" (uuid 2d47214f-09f7-4be0-b959-6a1a12712566))
  7287. (pin "23" (uuid 5bd07084-94cc-440c-a517-4f05f269a051))
  7288. (pin "24" (uuid bec7a52d-6468-43d5-af05-b1095ac23562))
  7289. (pin "25" (uuid 758a7679-139e-4a9c-9aeb-308864cc3fa2))
  7290. (pin "26" (uuid 63439fd7-d47e-44e9-8dcc-82c2d87ff6e7))
  7291. (pin "27" (uuid da0a5b3e-b06b-4b1c-8f68-88dfb234e103))
  7292. (pin "28" (uuid 9bbbfda7-00a5-46bc-bd4b-24d24b05c493))
  7293. (pin "29" (uuid 69c84803-47b1-473f-9de9-b49f05339acb))
  7294. (pin "3" (uuid 9d071495-1596-4032-9674-45bf136b1434))
  7295. (pin "30" (uuid 24cf2efd-e65a-4663-bd27-2c130a59e247))
  7296. (pin "31" (uuid 03c60276-9cee-4781-b007-54c011d4d0b6))
  7297. (pin "32" (uuid 5672feed-8ce9-45eb-a12b-2ae55f14cf06))
  7298. (pin "33" (uuid 97ff1303-2a73-45a8-9dce-ccfad4d8856d))
  7299. (pin "34" (uuid aebd8b10-f548-4b59-b363-faf804cceb80))
  7300. (pin "35" (uuid 6b41e40e-6fd1-4184-8969-2fab7495f289))
  7301. (pin "36" (uuid 2194bd37-8058-4a74-bea1-ddfab1944045))
  7302. (pin "37" (uuid 9e30b787-f77c-4eaf-b66c-041831445de5))
  7303. (pin "38" (uuid 8ff8d685-c3b5-4f17-a85d-ae040b646d36))
  7304. (pin "39" (uuid 066a5e73-7597-4b00-b55e-e8762abce7dc))
  7305. (pin "4" (uuid 81989f3d-72e0-4d08-9169-c7889ecb5198))
  7306. (pin "40" (uuid 3d854c76-58a1-4a84-9941-a2d726b4718f))
  7307. (pin "41" (uuid ade87e76-71e5-4f80-befe-9281ddcf366b))
  7308. (pin "42" (uuid 7fb81863-adfd-4a97-a8bd-b9b260872a7f))
  7309. (pin "43" (uuid e930b31f-dd3e-4ac0-bc3c-b32d2ce4ec42))
  7310. (pin "44" (uuid 5c4bedb2-6b2c-4477-86d9-75961acfd50a))
  7311. (pin "45" (uuid 60d4226d-73a7-409c-9af7-9138eaebce1c))
  7312. (pin "46" (uuid f5276d96-dfca-441c-a300-6ff68916b237))
  7313. (pin "47" (uuid 2c12258c-2060-4e56-8405-f8e95f0f8b23))
  7314. (pin "48" (uuid b2f5fcbb-4108-47c2-9b21-a00c8af39f28))
  7315. (pin "49" (uuid 0e128492-d712-448d-a57e-b745cd318360))
  7316. (pin "5" (uuid 01b5e3f8-125a-43e6-8d70-b31b6fea712d))
  7317. (pin "50" (uuid eb6d13a3-cb69-4d31-9377-c8373d0f7cf7))
  7318. (pin "6" (uuid 6b78cc14-a42d-4692-b883-1ebe582371c0))
  7319. (pin "7" (uuid 15ddd425-ab43-47ec-aa05-f2c5d1bf61df))
  7320. (pin "8" (uuid 042fa674-2585-40a6-9b91-3a24ef63d8b0))
  7321. (pin "9" (uuid 7ad2f2e1-1e93-4416-a934-bf1ba56dc10a))
  7322. )
  7323. (symbol (lib_id "power:GND") (at 144.78 172.72 0) (unit 1)
  7324. (in_bom yes) (on_board yes)
  7325. (uuid e3a430e6-9432-407c-b496-db8bd65368c8)
  7326. (property "Reference" "#PWR0171" (id 0) (at 144.78 179.07 0)
  7327. (effects (font (size 1.27 1.27)) hide)
  7328. )
  7329. (property "Value" "GND" (id 1) (at 144.907 177.1142 0))
  7330. (property "Footprint" "" (id 2) (at 144.78 172.72 0)
  7331. (effects (font (size 1.27 1.27)) hide)
  7332. )
  7333. (property "Datasheet" "" (id 3) (at 144.78 172.72 0)
  7334. (effects (font (size 1.27 1.27)) hide)
  7335. )
  7336. (pin "1" (uuid e08b015f-c58a-412f-a287-830ddd1dade3))
  7337. )
  7338. (sheet (at 137.16 181.61) (size 21.59 11.43) (fields_autoplaced)
  7339. (stroke (width 0) (type solid) (color 0 0 0 0))
  7340. (fill (color 0 0 0 0.0000))
  7341. (uuid 00000000-0000-0000-0000-000060f22a52)
  7342. (property "Sheet name" "USB" (id 0) (at 137.16 180.8984 0)
  7343. (effects (font (size 1.27 1.27)) (justify left bottom))
  7344. )
  7345. (property "Sheet file" "usb.kicad_sch" (id 1) (at 137.16 193.6246 0)
  7346. (effects (font (size 1.27 1.27)) (justify left top))
  7347. )
  7348. (pin "USB_D+" input (at 158.75 185.42 0)
  7349. (effects (font (size 1.27 1.27)) (justify right))
  7350. (uuid 269f19c3-6824-45a8-be29-fa58d70cbb42)
  7351. )
  7352. (pin "USB_D-" input (at 158.75 189.23 0)
  7353. (effects (font (size 1.27 1.27)) (justify right))
  7354. (uuid da481376-0e49-44d3-91b8-aaa39b869dd1)
  7355. )
  7356. )
  7357. (sheet (at 111.76 181.61) (size 20.32 11.43) (fields_autoplaced)
  7358. (stroke (width 0) (type solid) (color 0 0 0 0))
  7359. (fill (color 0 0 0 0.0000))
  7360. (uuid 00000000-0000-0000-0000-0000618a932e)
  7361. (property "Sheet name" "Power_USB" (id 0) (at 111.76 180.8984 0)
  7362. (effects (font (size 1.27 1.27)) (justify left bottom))
  7363. )
  7364. (property "Sheet file" "Power_USB.kicad_sch" (id 1) (at 111.76 193.6246 0)
  7365. (effects (font (size 1.27 1.27)) (justify left top))
  7366. )
  7367. )
  7368. (sheet (at 88.9 181.61) (size 19.05 11.43) (fields_autoplaced)
  7369. (stroke (width 0) (type solid) (color 0 0 0 0))
  7370. (fill (color 0 0 0 0.0000))
  7371. (uuid 00000000-0000-0000-0000-0000619586c3)
  7372. (property "Sheet name" "Power" (id 0) (at 88.9 180.8984 0)
  7373. (effects (font (size 1.27 1.27)) (justify left bottom))
  7374. )
  7375. (property "Sheet file" "Power.kicad_sch" (id 1) (at 88.9 193.6246 0)
  7376. (effects (font (size 1.27 1.27)) (justify left top))
  7377. )
  7378. )
  7379. (sheet (at 26.67 171.45) (size 22.86 22.86) (fields_autoplaced)
  7380. (stroke (width 0.1524) (type solid) (color 0 0 0 0))
  7381. (fill (color 0 0 0 0.0000))
  7382. (uuid 39d9aca3-c269-4acc-b200-a28fd3c81717)
  7383. (property "Sheet name" "AD_USB" (id 0) (at 26.67 170.7384 0)
  7384. (effects (font (size 1.27 1.27)) (justify left bottom))
  7385. )
  7386. (property "Sheet file" "ad_usb.kicad_sch" (id 1) (at 26.67 194.8946 0)
  7387. (effects (font (size 1.27 1.27)) (justify left top))
  7388. )
  7389. (pin "STEP" input (at 26.67 177.8 180)
  7390. (effects (font (size 1.27 1.27)) (justify left))
  7391. (uuid eb170636-6185-4375-9f1c-1fdddb64f74e)
  7392. )
  7393. (pin "R_DATA" input (at 26.67 175.26 180)
  7394. (effects (font (size 1.27 1.27)) (justify left))
  7395. (uuid d12e2ddd-dbf6-4288-8370-002533a5c144)
  7396. )
  7397. (pin "TRK_00" input (at 26.67 182.88 180)
  7398. (effects (font (size 1.27 1.27)) (justify left))
  7399. (uuid 53bb84f9-c469-4af3-91d6-1b2c9c63edef)
  7400. )
  7401. (pin "DIR" input (at 26.67 180.34 180)
  7402. (effects (font (size 1.27 1.27)) (justify left))
  7403. (uuid b008c4af-d775-4f04-ad60-7d6baa46bebe)
  7404. )
  7405. (pin "READY" input (at 26.67 187.96 180)
  7406. (effects (font (size 1.27 1.27)) (justify left))
  7407. (uuid ac3b8662-b07d-4123-b7b5-75a78cc0387c)
  7408. )
  7409. (pin "INDEX" input (at 26.67 185.42 180)
  7410. (effects (font (size 1.27 1.27)) (justify left))
  7411. (uuid 9da5a5f9-7aac-4826-be9a-29f4b0854a62)
  7412. )
  7413. (pin "PB[0..11]" input (at 49.53 176.53 0)
  7414. (effects (font (size 1.27 1.27)) (justify right))
  7415. (uuid c38b7402-09d9-4335-aea2-cc4f797b5808)
  7416. )
  7417. (pin "PA[0..11]" input (at 49.53 173.99 0)
  7418. (effects (font (size 1.27 1.27)) (justify right))
  7419. (uuid 5e6dc98a-40f2-41f2-901c-f762536e4328)
  7420. )
  7421. (pin "SIDE_SEL" input (at 26.67 190.5 180)
  7422. (effects (font (size 1.27 1.27)) (justify left))
  7423. (uuid 7fc1cf34-43d1-49db-ab5f-9e1f3086d5bf)
  7424. )
  7425. )
  7426. (sheet (at 64.77 171.45) (size 12.7 20.32) (fields_autoplaced)
  7427. (stroke (width 0.1524) (type solid) (color 0 0 0 0))
  7428. (fill (color 0 0 0 0.0000))
  7429. (uuid 587e0876-966b-4d35-bd3c-c5066c967aa3)
  7430. (property "Sheet name" "AD" (id 0) (at 64.77 170.7384 0)
  7431. (effects (font (size 1.27 1.27)) (justify left bottom))
  7432. )
  7433. (property "Sheet file" "ad.kicad_sch" (id 1) (at 64.77 192.3546 0)
  7434. (effects (font (size 1.27 1.27)) (justify left top))
  7435. )
  7436. (pin "PA[0..11]" input (at 64.77 173.99 180)
  7437. (effects (font (size 1.27 1.27)) (justify left))
  7438. (uuid 766758f2-edd5-4881-8f91-2127594b41f4)
  7439. )
  7440. (pin "PB[0..11]" input (at 64.77 176.53 180)
  7441. (effects (font (size 1.27 1.27)) (justify left))
  7442. (uuid bed1934f-df91-4927-898c-8e7a784fec42)
  7443. )
  7444. )
  7445. (sheet_instances
  7446. (path "/" (page "1"))
  7447. (path "/00000000-0000-0000-0000-0000619586c3" (page "2"))
  7448. (path "/00000000-0000-0000-0000-0000618a932e" (page "3"))
  7449. (path "/00000000-0000-0000-0000-000060f22a52" (page "4"))
  7450. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3" (page "5"))
  7451. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717" (page "6"))
  7452. )
  7453. (symbol_instances
  7454. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/f5496f64-fa88-46b0-96c0-0a7db8062989"
  7455. (reference "#FLG0101") (unit 1) (value "PWR_FLAG") (footprint "")
  7456. )
  7457. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/1d3f356b-b244-426b-8b1c-39ae6c5a4b4e"
  7458. (reference "#FLG0102") (unit 1) (value "PWR_FLAG") (footprint "")
  7459. )
  7460. (path "/00000000-0000-0000-0000-000060f79d03"
  7461. (reference "#PWR01") (unit 1) (value "GND") (footprint "")
  7462. )
  7463. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-00006248a530"
  7464. (reference "#PWR02") (unit 1) (value "+3.3V") (footprint "")
  7465. )
  7466. (path "/00000000-0000-0000-0000-0000617910f5"
  7467. (reference "#PWR03") (unit 1) (value "+3V3") (footprint "")
  7468. )
  7469. (path "/00000000-0000-0000-0000-00006139973e"
  7470. (reference "#PWR04") (unit 1) (value "+3V3") (footprint "")
  7471. )
  7472. (path "/00000000-0000-0000-0000-0000613a4a45"
  7473. (reference "#PWR05") (unit 1) (value "GND") (footprint "")
  7474. )
  7475. (path "/00000000-0000-0000-0000-00006170e1c1"
  7476. (reference "#PWR06") (unit 1) (value "GND") (footprint "")
  7477. )
  7478. (path "/00000000-0000-0000-0000-00006171a8a6"
  7479. (reference "#PWR07") (unit 1) (value "GND") (footprint "")
  7480. )
  7481. (path "/00000000-0000-0000-0000-000061550552"
  7482. (reference "#PWR08") (unit 1) (value "+3V3") (footprint "")
  7483. )
  7484. (path "/00000000-0000-0000-0000-00006126baa5"
  7485. (reference "#PWR09") (unit 1) (value "+5V") (footprint "")
  7486. )
  7487. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-00006248b2f4"
  7488. (reference "#PWR010") (unit 1) (value "GND") (footprint "")
  7489. )
  7490. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-0000619943a8"
  7491. (reference "#PWR011") (unit 1) (value "GND") (footprint "")
  7492. )
  7493. (path "/00000000-0000-0000-0000-0000619586c3/6553d8eb-c75a-476a-8d4d-a3729779c9ea"
  7494. (reference "#PWR012") (unit 1) (value "+5V") (footprint "")
  7495. )
  7496. (path "/00000000-0000-0000-0000-0000619586c3/b99f049b-86ba-49a7-80e9-213f3e98b092"
  7497. (reference "#PWR013") (unit 1) (value "GND") (footprint "")
  7498. )
  7499. (path "/00000000-0000-0000-0000-0000619586c3/9efba57b-3500-4f45-9fe5-be8043407d0a"
  7500. (reference "#PWR014") (unit 1) (value "GND") (footprint "")
  7501. )
  7502. (path "/00000000-0000-0000-0000-0000619586c3/f2bfa2d8-80d5-4b13-ae87-9c844021de35"
  7503. (reference "#PWR015") (unit 1) (value "GND") (footprint "")
  7504. )
  7505. (path "/00000000-0000-0000-0000-0000619586c3/bced4998-bac0-4d66-bf24-5c442d5a0060"
  7506. (reference "#PWR016") (unit 1) (value "GND") (footprint "")
  7507. )
  7508. (path "/00000000-0000-0000-0000-0000619586c3/e9e88504-9527-4479-a4fc-483b95b11399"
  7509. (reference "#PWR017") (unit 1) (value "GND") (footprint "")
  7510. )
  7511. (path "/00000000-0000-0000-0000-0000619586c3/3f3e2887-0131-4b6d-b226-262c167d3f98"
  7512. (reference "#PWR018") (unit 1) (value "+3V3") (footprint "")
  7513. )
  7514. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-0000619a72a6"
  7515. (reference "#PWR0101") (unit 1) (value "+3.3V") (footprint "")
  7516. )
  7517. (path "/00000000-0000-0000-0000-000060f22a52/00000000-0000-0000-0000-00005cc8b39c"
  7518. (reference "#PWR0102") (unit 1) (value "GND") (footprint "")
  7519. )
  7520. (path "/00000000-0000-0000-0000-0000619586c3/0c5fd953-b3c5-4a33-b878-c8771600a700"
  7521. (reference "#PWR0103") (unit 1) (value "+3V3") (footprint "")
  7522. )
  7523. (path "/00000000-0000-0000-0000-000060f22a52/00000000-0000-0000-0000-00005cc7520b"
  7524. (reference "#PWR0104") (unit 1) (value "GND") (footprint "")
  7525. )
  7526. (path "/00000000-0000-0000-0000-000060f22a52/00000000-0000-0000-0000-00005e9ecde8"
  7527. (reference "#PWR0105") (unit 1) (value "GND") (footprint "")
  7528. )
  7529. (path "/00000000-0000-0000-0000-000060f22a52/00000000-0000-0000-0000-000062237a55"
  7530. (reference "#PWR0106") (unit 1) (value "+5V") (footprint "")
  7531. )
  7532. (path "/00000000-0000-0000-0000-000061a5abb1"
  7533. (reference "#PWR0107") (unit 1) (value "+3V3") (footprint "")
  7534. )
  7535. (path "/00000000-0000-0000-0000-000061a8d98a"
  7536. (reference "#PWR0108") (unit 1) (value "GND") (footprint "")
  7537. )
  7538. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061a13217"
  7539. (reference "#PWR0109") (unit 1) (value "GND") (footprint "")
  7540. )
  7541. (path "/00000000-0000-0000-0000-000061aafd54"
  7542. (reference "#PWR0110") (unit 1) (value "GND") (footprint "")
  7543. )
  7544. (path "/00000000-0000-0000-0000-000061abe3cd"
  7545. (reference "#PWR0111") (unit 1) (value "GND") (footprint "")
  7546. )
  7547. (path "/00000000-0000-0000-0000-000061aecf76"
  7548. (reference "#PWR0112") (unit 1) (value "+3V3") (footprint "")
  7549. )
  7550. (path "/00000000-0000-0000-0000-000061afd140"
  7551. (reference "#PWR0113") (unit 1) (value "+5V") (footprint "")
  7552. )
  7553. (path "/00000000-0000-0000-0000-000061b0e64a"
  7554. (reference "#PWR0114") (unit 1) (value "+3V3") (footprint "")
  7555. )
  7556. (path "/00000000-0000-0000-0000-000061b1e450"
  7557. (reference "#PWR0115") (unit 1) (value "+5V") (footprint "")
  7558. )
  7559. (path "/00000000-0000-0000-0000-000061b7ab9b"
  7560. (reference "#PWR0116") (unit 1) (value "GND") (footprint "")
  7561. )
  7562. (path "/00000000-0000-0000-0000-000061b8acb1"
  7563. (reference "#PWR0117") (unit 1) (value "GND") (footprint "")
  7564. )
  7565. (path "/00000000-0000-0000-0000-000061b9ba45"
  7566. (reference "#PWR0118") (unit 1) (value "+3V3") (footprint "")
  7567. )
  7568. (path "/00000000-0000-0000-0000-000061b9cd1c"
  7569. (reference "#PWR0119") (unit 1) (value "+3V3") (footprint "")
  7570. )
  7571. (path "/00000000-0000-0000-0000-000061b9df0e"
  7572. (reference "#PWR0120") (unit 1) (value "+3V3") (footprint "")
  7573. )
  7574. (path "/00000000-0000-0000-0000-000061b9f12d"
  7575. (reference "#PWR0121") (unit 1) (value "+3V3") (footprint "")
  7576. )
  7577. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061c052fd"
  7578. (reference "#PWR0122") (unit 1) (value "GND") (footprint "")
  7579. )
  7580. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061bf280e"
  7581. (reference "#PWR0123") (unit 1) (value "GND") (footprint "")
  7582. )
  7583. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061bf71ab"
  7584. (reference "#PWR0124") (unit 1) (value "GND") (footprint "")
  7585. )
  7586. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061bf8580"
  7587. (reference "#PWR0125") (unit 1) (value "GND") (footprint "")
  7588. )
  7589. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061c054d5"
  7590. (reference "#PWR0126") (unit 1) (value "GND") (footprint "")
  7591. )
  7592. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061bf9eea"
  7593. (reference "#PWR0127") (unit 1) (value "GND") (footprint "")
  7594. )
  7595. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061c163d3"
  7596. (reference "#PWR0128") (unit 1) (value "GND") (footprint "")
  7597. )
  7598. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061c1eb9a"
  7599. (reference "#PWR0129") (unit 1) (value "GND") (footprint "")
  7600. )
  7601. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000062230106"
  7602. (reference "#PWR0130") (unit 1) (value "+24V") (footprint "")
  7603. )
  7604. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000060faaca0"
  7605. (reference "#PWR0131") (unit 1) (value "GND") (footprint "")
  7606. )
  7607. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-00006101dfa2"
  7608. (reference "#PWR0132") (unit 1) (value "GND") (footprint "")
  7609. )
  7610. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061c2bef0"
  7611. (reference "#PWR0133") (unit 1) (value "VPP") (footprint "")
  7612. )
  7613. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061c2dece"
  7614. (reference "#PWR0134") (unit 1) (value "VCC") (footprint "")
  7615. )
  7616. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061c30b1a"
  7617. (reference "#PWR0135") (unit 1) (value "VPP") (footprint "")
  7618. )
  7619. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061c5199c"
  7620. (reference "#PWR0136") (unit 1) (value "VCC") (footprint "")
  7621. )
  7622. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061c576d0"
  7623. (reference "#PWR0137") (unit 1) (value "GND") (footprint "")
  7624. )
  7625. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061c5980b"
  7626. (reference "#PWR0138") (unit 1) (value "GND") (footprint "")
  7627. )
  7628. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061c5d42d"
  7629. (reference "#PWR0139") (unit 1) (value "GND") (footprint "")
  7630. )
  7631. (path "/00000000-0000-0000-0000-0000619586c3/f458115f-385e-4b7e-96e6-e47f9d8828c8"
  7632. (reference "#PWR0140") (unit 1) (value "+5VA") (footprint "")
  7633. )
  7634. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061070447"
  7635. (reference "#PWR0141") (unit 1) (value "+12V") (footprint "")
  7636. )
  7637. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061cc8dda"
  7638. (reference "#PWR0142") (unit 1) (value "GND") (footprint "")
  7639. )
  7640. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-0000610715f3"
  7641. (reference "#PWR0143") (unit 1) (value "GND") (footprint "")
  7642. )
  7643. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061cebf91"
  7644. (reference "#PWR0144") (unit 1) (value "GND") (footprint "")
  7645. )
  7646. (path "/00000000-0000-0000-0000-0000619586c3/c44f3506-fdb2-4e65-9a29-9adbc98d0f6c"
  7647. (reference "#PWR0145") (unit 1) (value "GND") (footprint "")
  7648. )
  7649. (path "/00000000-0000-0000-0000-0000619586c3/30da45cc-a8bc-44fc-8e7b-2858d6603444"
  7650. (reference "#PWR0146") (unit 1) (value "GND") (footprint "")
  7651. )
  7652. (path "/00000000-0000-0000-0000-0000619586c3/c5133f35-adbf-4ce4-bebc-090279107ab9"
  7653. (reference "#PWR0147") (unit 1) (value "GND") (footprint "")
  7654. )
  7655. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061d967b6"
  7656. (reference "#PWR0148") (unit 1) (value "GND") (footprint "")
  7657. )
  7658. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061d967c0"
  7659. (reference "#PWR0149") (unit 1) (value "GND") (footprint "")
  7660. )
  7661. (path "/00000000-0000-0000-0000-0000619586c3/d7b957cc-18a9-46de-b844-2af67b2367f9"
  7662. (reference "#PWR0150") (unit 1) (value "+5VA") (footprint "")
  7663. )
  7664. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061db36eb"
  7665. (reference "#PWR0151") (unit 1) (value "+12V") (footprint "")
  7666. )
  7667. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061deec14"
  7668. (reference "#PWR0152") (unit 1) (value "+3V3") (footprint "")
  7669. )
  7670. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061e68f7d"
  7671. (reference "#PWR0153") (unit 1) (value "GND") (footprint "")
  7672. )
  7673. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061ee93e8"
  7674. (reference "#PWR0154") (unit 1) (value "GND") (footprint "")
  7675. )
  7676. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061f3f533"
  7677. (reference "#PWR0155") (unit 1) (value "GND") (footprint "")
  7678. )
  7679. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061f4c845"
  7680. (reference "#PWR0156") (unit 1) (value "+3V3") (footprint "")
  7681. )
  7682. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061f90b65"
  7683. (reference "#PWR0157") (unit 1) (value "GND") (footprint "")
  7684. )
  7685. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061f19e0b"
  7686. (reference "#PWR0158") (unit 1) (value "GND") (footprint "")
  7687. )
  7688. (path "/831181f3-e07e-4359-85a3-43a55598e402"
  7689. (reference "#PWR0159") (unit 1) (value "+3V3") (footprint "")
  7690. )
  7691. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061fe2dba"
  7692. (reference "#PWR0160") (unit 1) (value "GND") (footprint "")
  7693. )
  7694. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-00006205c39d"
  7695. (reference "#PWR0161") (unit 1) (value "GND") (footprint "")
  7696. )
  7697. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000062114235"
  7698. (reference "#PWR0162") (unit 1) (value "+12V") (footprint "")
  7699. )
  7700. (path "/00000000-0000-0000-0000-0000618a932e/5f913140-2c34-4501-b371-858a0c11d771"
  7701. (reference "#PWR0163") (unit 1) (value "+5VA") (footprint "")
  7702. )
  7703. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-00006212dbb5"
  7704. (reference "#PWR0164") (unit 1) (value "GND") (footprint "")
  7705. )
  7706. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061117579"
  7707. (reference "#PWR0165") (unit 1) (value "+3V3") (footprint "")
  7708. )
  7709. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000062165a3c"
  7710. (reference "#PWR0166") (unit 1) (value "GND") (footprint "")
  7711. )
  7712. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000062165a46"
  7713. (reference "#PWR0167") (unit 1) (value "GND") (footprint "")
  7714. )
  7715. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000062165ae0"
  7716. (reference "#PWR0168") (unit 1) (value "+12V") (footprint "")
  7717. )
  7718. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-0000621ca70f"
  7719. (reference "#PWR0169") (unit 1) (value "+24V") (footprint "")
  7720. )
  7721. (path "/00000000-0000-0000-0000-000061180e4f"
  7722. (reference "#PWR0170") (unit 1) (value "GND") (footprint "")
  7723. )
  7724. (path "/e3a430e6-9432-407c-b496-db8bd65368c8"
  7725. (reference "#PWR0171") (unit 1) (value "GND") (footprint "")
  7726. )
  7727. (path "/1f643113-fa5c-4d33-af0d-36613c1d3ae5"
  7728. (reference "#PWR0172") (unit 1) (value "GND") (footprint "")
  7729. )
  7730. (path "/1e363680-fc77-40a0-b7ae-3279abfba965"
  7731. (reference "#PWR0173") (unit 1) (value "+3V3") (footprint "")
  7732. )
  7733. (path "/7e409286-fd81-4589-a252-d85b68bce9f6"
  7734. (reference "#PWR0174") (unit 1) (value "+3V3") (footprint "")
  7735. )
  7736. (path "/138b55c4-a8cf-43b6-aeeb-467cc948641b"
  7737. (reference "#PWR0175") (unit 1) (value "GND") (footprint "")
  7738. )
  7739. (path "/00000000-0000-0000-0000-0000618a932e/7366efb4-8376-4153-8376-8e8efa53da71"
  7740. (reference "#PWR0176") (unit 1) (value "VPP") (footprint "")
  7741. )
  7742. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/f8943277-c0ad-4703-bab4-a2905995b5cd"
  7743. (reference "#PWR0177") (unit 1) (value "GND") (footprint "")
  7744. )
  7745. (path "/00000000-0000-0000-0000-0000618a932e/c6315284-c1a5-481e-acc9-907a4b5f620d"
  7746. (reference "#PWR0178") (unit 1) (value "+5V") (footprint "")
  7747. )
  7748. (path "/00000000-0000-0000-0000-0000618a932e/4ca44258-1e5c-44c1-ba8a-36ba31b68f52"
  7749. (reference "#PWR0179") (unit 1) (value "+3V3") (footprint "")
  7750. )
  7751. (path "/00000000-0000-0000-0000-0000618a932e/131544d1-99b1-4185-bbe4-5057bbb29d1c"
  7752. (reference "#PWR0180") (unit 1) (value "+5V") (footprint "")
  7753. )
  7754. (path "/00000000-0000-0000-0000-0000618a932e/2aa51d3c-cec4-4e75-86a2-706373fb593f"
  7755. (reference "#PWR0181") (unit 1) (value "+5V") (footprint "")
  7756. )
  7757. (path "/00000000-0000-0000-0000-0000618a932e/9815c0c0-909c-470a-8382-3e353daf2683"
  7758. (reference "#PWR0182") (unit 1) (value "+3V3") (footprint "")
  7759. )
  7760. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/4deb904e-fd2d-4d48-8ca1-9d6a1354ae8d"
  7761. (reference "#PWR0183") (unit 1) (value "GNDA") (footprint "")
  7762. )
  7763. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/db86c91b-5306-439e-923d-f0a0603bec55"
  7764. (reference "#PWR0184") (unit 1) (value "GNDA") (footprint "")
  7765. )
  7766. (path "/579f6b2b-1542-4dae-8619-560e86764e1b"
  7767. (reference "#PWR0185") (unit 1) (value "GND") (footprint "")
  7768. )
  7769. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/e28a05db-55cf-4f3b-8a53-7501eb154f18"
  7770. (reference "#PWR0186") (unit 1) (value "+3.3VADC") (footprint "")
  7771. )
  7772. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/dbea19a7-d3cf-4adf-910d-4ca6d1d43f18"
  7773. (reference "#PWR0187") (unit 1) (value "GNDA") (footprint "")
  7774. )
  7775. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/2ba0cfff-1796-4cd2-b9b4-0ee05bc768ef"
  7776. (reference "#PWR0188") (unit 1) (value "GNDA") (footprint "")
  7777. )
  7778. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/54d04f66-b81d-46aa-89e0-c9e6591e7c8d"
  7779. (reference "#PWR0189") (unit 1) (value "+3V3") (footprint "")
  7780. )
  7781. (path "/75db0569-c1c9-47ca-b2fd-be6d039ffae9"
  7782. (reference "#PWR0190") (unit 1) (value "+5V") (footprint "")
  7783. )
  7784. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/37191450-a834-4171-80df-9fee91b104fd"
  7785. (reference "#PWR0191") (unit 1) (value "GND") (footprint "")
  7786. )
  7787. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/1b529824-337e-4f41-8aae-49b6ae00652d"
  7788. (reference "#PWR0192") (unit 1) (value "GND") (footprint "")
  7789. )
  7790. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/bd2cb2aa-a578-4ea4-83ab-829eeaee310a"
  7791. (reference "#PWR0193") (unit 1) (value "GNDA") (footprint "")
  7792. )
  7793. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/50eda5fa-93e9-477a-9ecd-081aa0fb8923"
  7794. (reference "#PWR0194") (unit 1) (value "GNDA") (footprint "")
  7795. )
  7796. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/0e117833-f253-45cc-981e-737ef0e2df43"
  7797. (reference "#PWR0195") (unit 1) (value "GNDA") (footprint "")
  7798. )
  7799. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/e504f737-afa3-4e8f-813d-636cac6e64c2"
  7800. (reference "#PWR0196") (unit 1) (value "+3V3") (footprint "")
  7801. )
  7802. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/ae23faac-f730-4d4b-a62c-3c8216cd43d3"
  7803. (reference "#PWR0197") (unit 1) (value "GND") (footprint "")
  7804. )
  7805. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/b9a5576a-8f1f-407b-8db8-2597d5ccf48b"
  7806. (reference "#PWR0198") (unit 1) (value "GND") (footprint "")
  7807. )
  7808. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/4520838b-b386-4c1a-ae61-0999e4bb0c70"
  7809. (reference "#PWR0199") (unit 1) (value "GNDA") (footprint "")
  7810. )
  7811. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/71f39067-782c-458e-889e-e78f7a279a0a"
  7812. (reference "#PWR0200") (unit 1) (value "GNDA") (footprint "")
  7813. )
  7814. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/94c7b6b8-12f7-4936-a936-7dc672feb5ee"
  7815. (reference "#PWR0201") (unit 1) (value "GND") (footprint "")
  7816. )
  7817. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/fb0b8725-c9f5-4019-8f2d-5d01dc6047a1"
  7818. (reference "#PWR0202") (unit 1) (value "GNDA") (footprint "")
  7819. )
  7820. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/56cf5c35-6aa6-4082-ba0d-e6c3653bc82c"
  7821. (reference "#PWR0203") (unit 1) (value "+3.3VADC") (footprint "")
  7822. )
  7823. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/ed632bc7-7448-4fcc-b2cb-45c037bf88b8"
  7824. (reference "#PWR0204") (unit 1) (value "GND") (footprint "")
  7825. )
  7826. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/20dbb1dd-fd1c-48bd-9224-700eadf6ff96"
  7827. (reference "#PWR0205") (unit 1) (value "GNDA") (footprint "")
  7828. )
  7829. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/d84ef48d-75f6-4f2a-bbb4-6b10fa08f99d"
  7830. (reference "#PWR0206") (unit 1) (value "-3V3") (footprint "")
  7831. )
  7832. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/29b617e8-701d-4c6d-a11f-ec26e65094f0"
  7833. (reference "#PWR0207") (unit 1) (value "-3V3") (footprint "")
  7834. )
  7835. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/bdb85bdc-171e-4460-aebf-8d0d5c5d34a2"
  7836. (reference "#PWR0208") (unit 1) (value "+3V3") (footprint "")
  7837. )
  7838. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/7be74137-1904-41a3-b044-50d9530ffcd8"
  7839. (reference "#PWR0209") (unit 1) (value "+3V3") (footprint "")
  7840. )
  7841. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/0073505c-a814-46df-b863-e34c87cae6cf"
  7842. (reference "#PWR0210") (unit 1) (value "+3.3VADC") (footprint "")
  7843. )
  7844. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/660ec9e9-a96b-418b-bf77-78b1133eaaa7"
  7845. (reference "#PWR0211") (unit 1) (value "GND") (footprint "")
  7846. )
  7847. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/1a0db7ac-3a63-4703-b6a1-569c421c930d"
  7848. (reference "#PWR0212") (unit 1) (value "GNDA") (footprint "")
  7849. )
  7850. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/baa41b16-fe89-4046-aead-081c4c338957"
  7851. (reference "#PWR0213") (unit 1) (value "GNDA") (footprint "")
  7852. )
  7853. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/a3b7dfab-9d62-4ac7-97a3-e2e31b3f84ba"
  7854. (reference "#PWR0214") (unit 1) (value "GND") (footprint "")
  7855. )
  7856. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/77286fe1-c01a-4d48-94a1-e4ecfcbede1f"
  7857. (reference "#PWR0215") (unit 1) (value "GNDA") (footprint "")
  7858. )
  7859. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/c88011a8-c447-40cf-ae4a-39b4de961c04"
  7860. (reference "#PWR0216") (unit 1) (value "GNDA") (footprint "")
  7861. )
  7862. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/67ff579f-1797-45a2-97ef-2719922260b6"
  7863. (reference "#PWR0217") (unit 1) (value "+3V3") (footprint "")
  7864. )
  7865. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/29939c5d-d0d4-47ef-960c-1fd924a994de"
  7866. (reference "#PWR0233") (unit 1) (value "GNDA") (footprint "")
  7867. )
  7868. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/b9908ee4-2959-4eaf-a1e7-a2f3914d7ae8"
  7869. (reference "#PWR0234") (unit 1) (value "GNDA") (footprint "")
  7870. )
  7871. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/3fb74797-86cc-4b2b-bcc9-333f56933c4c"
  7872. (reference "#PWR0235") (unit 1) (value "+3V3") (footprint "")
  7873. )
  7874. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/f7bba936-eaf0-487f-b62b-1d6e52cc7ab5"
  7875. (reference "#PWR0236") (unit 1) (value "+3.3VADC") (footprint "")
  7876. )
  7877. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/09b9d37c-f3b8-419a-9cc7-28197aab4e7f"
  7878. (reference "#PWR0237") (unit 1) (value "GND") (footprint "")
  7879. )
  7880. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/c9319b83-cc89-49ae-bb43-b86703b863eb"
  7881. (reference "#PWR0238") (unit 1) (value "GND") (footprint "")
  7882. )
  7883. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/b8258162-88b0-4f4d-8180-41d50177f4d6"
  7884. (reference "#PWR0239") (unit 1) (value "+3V3") (footprint "")
  7885. )
  7886. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/37eddccd-66cd-4aae-afaa-68dcc9005132"
  7887. (reference "#PWR0240") (unit 1) (value "GNDA") (footprint "")
  7888. )
  7889. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/170d5544-5d57-4ed1-bad2-499a01f94eb0"
  7890. (reference "#PWR0243") (unit 1) (value "GNDA") (footprint "")
  7891. )
  7892. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/a3aeb7d3-55b8-43c9-8d53-5192d486c987"
  7893. (reference "#PWR0244") (unit 1) (value "GNDA") (footprint "")
  7894. )
  7895. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/28122e99-85f9-4440-8a10-eee271bd6ca9"
  7896. (reference "#PWR0247") (unit 1) (value "GNDA") (footprint "")
  7897. )
  7898. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/4d71b557-d950-40f1-9a8f-35bdf0b88b9a"
  7899. (reference "#PWR0248") (unit 1) (value "-3V3") (footprint "")
  7900. )
  7901. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/3c0f3210-25b2-405c-98da-8abdc48a0da4"
  7902. (reference "#PWR0249") (unit 1) (value "+3.3VADC") (footprint "")
  7903. )
  7904. (path "/00000000-0000-0000-0000-000060f22a52/00000000-0000-0000-0000-00005e7feac9"
  7905. (reference "C1") (unit 1) (value "1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  7906. )
  7907. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061cb935e"
  7908. (reference "C2") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  7909. )
  7910. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061ce2725"
  7911. (reference "C3") (unit 1) (value "100uF") (footprint "Capacitor_SMD:C_1210_3225Metric")
  7912. )
  7913. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061d96834"
  7914. (reference "C4") (unit 1) (value "220uF") (footprint "Capacitor_SMD:CP_Elec_8x10.5")
  7915. )
  7916. (path "/00000000-0000-0000-0000-0000619586c3/8a273ef1-0085-4a14-9190-f6d0f6313d4c"
  7917. (reference "C5") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  7918. )
  7919. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-00006199437d"
  7920. (reference "C6") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  7921. )
  7922. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061994383"
  7923. (reference "C7") (unit 1) (value "1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  7924. )
  7925. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061994377"
  7926. (reference "C8") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  7927. )
  7928. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061994389"
  7929. (reference "C9") (unit 1) (value "1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  7930. )
  7931. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061994371"
  7932. (reference "C10") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  7933. )
  7934. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061f82fc0"
  7935. (reference "C11") (unit 1) (value "2.2uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  7936. )
  7937. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-00006199436b"
  7938. (reference "C12") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  7939. )
  7940. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061edc345"
  7941. (reference "C13") (unit 1) (value "2.2uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  7942. )
  7943. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061994365"
  7944. (reference "C14") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  7945. )
  7946. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061ef5b8b"
  7947. (reference "C15") (unit 1) (value "2.2uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  7948. )
  7949. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-00006199435f"
  7950. (reference "C16") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  7951. )
  7952. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061994359"
  7953. (reference "C17") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  7954. )
  7955. (path "/00000000-0000-0000-0000-0000616c45ba"
  7956. (reference "C18") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  7957. )
  7958. (path "/00000000-0000-0000-0000-0000616c45b0"
  7959. (reference "C19") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  7960. )
  7961. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061994353"
  7962. (reference "C20") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  7963. )
  7964. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-00006199434d"
  7965. (reference "C21") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  7966. )
  7967. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061994341"
  7968. (reference "C22") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  7969. )
  7970. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061c56c9b"
  7971. (reference "C23") (unit 1) (value "1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  7972. )
  7973. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061c54e11"
  7974. (reference "C24") (unit 1) (value "1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  7975. )
  7976. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061c5650b"
  7977. (reference "C25") (unit 1) (value "1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  7978. )
  7979. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061d96808"
  7980. (reference "C26") (unit 1) (value "22uF") (footprint "Capacitor_SMD:C_1206_3216Metric")
  7981. )
  7982. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061d967cc"
  7983. (reference "C27") (unit 1) (value "15nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  7984. )
  7985. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061d9678d"
  7986. (reference "C28") (unit 1) (value "5600pF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  7987. )
  7988. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061d96382"
  7989. (reference "C29") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  7990. )
  7991. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061d96798"
  7992. (reference "C30") (unit 1) (value "390pF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  7993. )
  7994. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061d96772"
  7995. (reference "C31") (unit 1) (value "22uF") (footprint "Capacitor_SMD:C_1206_3216Metric")
  7996. )
  7997. (path "/00000000-0000-0000-0000-0000619586c3/50f3aa0d-e02c-4605-8d23-8f30a192db6b"
  7998. (reference "C32") (unit 1) (value "47uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  7999. )
  8000. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000062165aa6"
  8001. (reference "C33") (unit 1) (value "220uF") (footprint "Capacitor_SMD:CP_Elec_8x10.5")
  8002. )
  8003. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000062165a7a"
  8004. (reference "C34") (unit 1) (value "22uF") (footprint "Capacitor_SMD:C_1206_3216Metric")
  8005. )
  8006. (path "/00000000-0000-0000-0000-0000619586c3/2371edfd-3192-49c5-a18b-146e47cbce4a"
  8007. (reference "C35") (unit 1) (value "47uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8008. )
  8009. (path "/00000000-0000-0000-0000-0000619586c3/a699b0e4-7d28-4143-92c1-fd238fd7270e"
  8010. (reference "C36") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8011. )
  8012. (path "/00000000-0000-0000-0000-0000619586c3/afeb5d6b-7f4d-41b9-ac0b-8457c1693aac"
  8013. (reference "C37") (unit 1) (value "220uF") (footprint "Capacitor_SMD:CP_Elec_8x10.5")
  8014. )
  8015. (path "/00000000-0000-0000-0000-0000619586c3/54426ce1-260f-4569-b31f-0b544e60105f"
  8016. (reference "C38") (unit 1) (value "47uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8017. )
  8018. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000062165a52"
  8019. (reference "C39") (unit 1) (value "15nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8020. )
  8021. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000062165a13"
  8022. (reference "C40") (unit 1) (value "5600pF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8023. )
  8024. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-0000621659b8"
  8025. (reference "C41") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8026. )
  8027. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000062165a1e"
  8028. (reference "C42") (unit 1) (value "390pF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8029. )
  8030. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-0000621659f8"
  8031. (reference "C43") (unit 1) (value "22uF") (footprint "Capacitor_SMD:C_1206_3216Metric")
  8032. )
  8033. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/0b98176c-f35e-4f33-aaa2-9c6b5da0eecd"
  8034. (reference "C44") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8035. )
  8036. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000062489810"
  8037. (reference "C45") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8038. )
  8039. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-0000624d0c15"
  8040. (reference "C46") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8041. )
  8042. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000060f6ef2a"
  8043. (reference "C47") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8044. )
  8045. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/e6fe311c-62ea-4949-9548-07e5a2a2fbf5"
  8046. (reference "C48") (unit 1) (value "47u") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8047. )
  8048. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/74c6cdf0-1811-4024-880f-2fc2fbce716a"
  8049. (reference "C49") (unit 1) (value "47u") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8050. )
  8051. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/b49381b7-86d8-4468-9408-0d3f72bf79fd"
  8052. (reference "C50") (unit 1) (value "15p") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8053. )
  8054. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/b45c8235-0e72-46e9-b581-1e9ec7ba5169"
  8055. (reference "C51") (unit 1) (value "15p") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8056. )
  8057. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/6eaa4b52-7e9e-469f-809c-5821d7afb4a1"
  8058. (reference "C52") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8059. )
  8060. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/d0e4d675-6dec-4855-84b2-3dd0bb949370"
  8061. (reference "C53") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8062. )
  8063. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/f015ad2c-3080-4147-bb24-2dc075a03e15"
  8064. (reference "C54") (unit 1) (value "47u") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8065. )
  8066. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/292eecaa-1713-4c27-a066-538c5ee44376"
  8067. (reference "C55") (unit 1) (value "3.3u") (footprint "Capacitor_SMD:CP_Elec_4x5.4")
  8068. )
  8069. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/690cc8a8-660a-4d68-85d8-28464242ed6c"
  8070. (reference "C56") (unit 1) (value "47u") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8071. )
  8072. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/3451e0b8-e5cc-4bd4-9ee5-586832783336"
  8073. (reference "C57") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8074. )
  8075. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/90ec0fa0-8653-4b41-aa06-80c30336e014"
  8076. (reference "C58") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8077. )
  8078. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/31880848-2d7e-47ad-8623-f94e3a0c4cbb"
  8079. (reference "C59") (unit 1) (value "15p") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8080. )
  8081. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/3f8bce2f-f092-4b69-a2f7-7ebff8165487"
  8082. (reference "C60") (unit 1) (value "15p") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8083. )
  8084. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/0f0a097f-1e00-488c-a3a7-2a1967026c19"
  8085. (reference "C61") (unit 1) (value "47u") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8086. )
  8087. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/9feecfcf-7d25-40cf-ad2d-488769ee4aad"
  8088. (reference "C62") (unit 1) (value "3.3u") (footprint "Capacitor_SMD:CP_Elec_4x5.4")
  8089. )
  8090. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/19a96f21-b011-4a2d-8cd2-5048cd043ae5"
  8091. (reference "C63") (unit 1) (value "3.3u") (footprint "Capacitor_SMD:CP_Elec_4x5.4")
  8092. )
  8093. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/4dbb4c65-f29c-4e56-a3ae-edd9ec7100ab"
  8094. (reference "C64") (unit 1) (value "47u") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8095. )
  8096. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/7da573c9-2ed3-46bd-9520-ce143e314f93"
  8097. (reference "C65") (unit 1) (value "3.3u") (footprint "Capacitor_SMD:CP_Elec_4x5.4")
  8098. )
  8099. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/9ab79c72-a815-4fd5-bbaf-5a52783d05ce"
  8100. (reference "C66") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8101. )
  8102. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/62b2e931-73fe-4a9d-8601-8cb8563b3f67"
  8103. (reference "C67") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8104. )
  8105. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/925eea5a-795f-4716-bbbb-1e1b6a567a73"
  8106. (reference "C68") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8107. )
  8108. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/4e2e1f17-b513-4179-b43e-f34d94712930"
  8109. (reference "C69") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8110. )
  8111. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/494bf120-7732-48b5-a8d5-04599731a5ad"
  8112. (reference "C70") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8113. )
  8114. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/e8d93bc9-2d59-4913-8099-f98850f69c17"
  8115. (reference "C71") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8116. )
  8117. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/2a3aa0e4-74df-4ebb-9b71-9df5a99f9b47"
  8118. (reference "C72") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8119. )
  8120. (path "/00000000-0000-0000-0000-000061787067"
  8121. (reference "D1") (unit 1) (value "LED") (footprint "LED_SMD:LED_0603_1608Metric")
  8122. )
  8123. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061cc4ade"
  8124. (reference "D2") (unit 1) (value "1N5819W") (footprint "Diode_SMD:D_SOD-123")
  8125. )
  8126. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061bf640d"
  8127. (reference "D3") (unit 1) (value "1N5819W") (footprint "Diode_SMD:D_SOD-123")
  8128. )
  8129. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061bf74de"
  8130. (reference "D4") (unit 1) (value "1N5819W") (footprint "Diode_SMD:D_SOD-123")
  8131. )
  8132. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061bf0f20"
  8133. (reference "D5") (unit 1) (value "1N5819W") (footprint "Diode_SMD:D_SOD-123")
  8134. )
  8135. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061d9673d"
  8136. (reference "D6") (unit 1) (value "MBRA340T") (footprint "Diode_SMD:D_SMA")
  8137. )
  8138. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061d96850"
  8139. (reference "D7") (unit 1) (value "LED-B") (footprint "LED_SMD:LED_0603_1608Metric")
  8140. )
  8141. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-0000620de268"
  8142. (reference "D8") (unit 1) (value "1N5819W") (footprint "Diode_SMD:D_SOD-123")
  8143. )
  8144. (path "/caa6303a-9842-4b6b-90f3-1429bc2a97a5"
  8145. (reference "D9") (unit 1) (value "MBRA340T") (footprint "Diode_SMD:D_SMA")
  8146. )
  8147. (path "/615e49fd-3f83-4aa6-b131-9d3dcb501f2c"
  8148. (reference "D10") (unit 1) (value "MBRA340T") (footprint "Diode_SMD:D_SMA")
  8149. )
  8150. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-0000621659c3"
  8151. (reference "D11") (unit 1) (value "MBRA340T") (footprint "Diode_SMD:D_SMA")
  8152. )
  8153. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000062165ac0"
  8154. (reference "D12") (unit 1) (value "LED-B") (footprint "LED_SMD:LED_0603_1608Metric")
  8155. )
  8156. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000062165aed"
  8157. (reference "D13") (unit 1) (value "MBRA340T") (footprint "Diode_SMD:D_SMA")
  8158. )
  8159. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-0000620ac1a6"
  8160. (reference "D14") (unit 1) (value "MBRA340T") (footprint "Diode_SMD:D_SMA")
  8161. )
  8162. (path "/00000000-0000-0000-0000-0000619586c3/74dd3e82-6ce0-40e5-9a7e-400e2add8afc"
  8163. (reference "D15") (unit 1) (value "LED-B") (footprint "LED_SMD:LED_0603_1608Metric")
  8164. )
  8165. (path "/00000000-0000-0000-0000-000060f22a52/00000000-0000-0000-0000-00005cc74192"
  8166. (reference "F1") (unit 1) (value "Polyfuse 460mA") (footprint "Greaseweazle:Fuse_1206_3216Metric")
  8167. )
  8168. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-00006223ce57"
  8169. (reference "F2") (unit 1) (value "Polyfuse 2.2A") (footprint "Greaseweazle:Fuse_2018Metric")
  8170. )
  8171. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-0000622abbc4"
  8172. (reference "F6") (unit 1) (value "Polyfuse 4.2A") (footprint "Greaseweazle:Fuse_2018Metric")
  8173. )
  8174. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-00006226e0d2"
  8175. (reference "F7") (unit 1) (value "Polyfuse 2.2A") (footprint "Greaseweazle:Fuse_2018Metric")
  8176. )
  8177. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-00006110f4b4"
  8178. (reference "F8") (unit 1) (value "Polyfuse 4.2A") (footprint "Greaseweazle:Fuse_2018Metric")
  8179. )
  8180. (path "/00000000-0000-0000-0000-000060f2641d"
  8181. (reference "H1") (unit 1) (value "MountingHole") (footprint "MountingHole:MountingHole_3.2mm_M3")
  8182. )
  8183. (path "/00000000-0000-0000-0000-000060f2c7b9"
  8184. (reference "H2") (unit 1) (value "MountingHole") (footprint "MountingHole:MountingHole_3.2mm_M3")
  8185. )
  8186. (path "/00000000-0000-0000-0000-000060f34430"
  8187. (reference "H3") (unit 1) (value "MountingHole") (footprint "MountingHole:MountingHole_3.2mm_M3")
  8188. )
  8189. (path "/00000000-0000-0000-0000-000060f360e1"
  8190. (reference "H4") (unit 1) (value "MountingHole") (footprint "MountingHole:MountingHole_3.2mm_M3")
  8191. )
  8192. (path "/00000000-0000-0000-0000-000060f4c92b"
  8193. (reference "J1") (unit 1) (value "Conn_02x17_Odd_Even") (footprint "Connector_IDC:IDC-Header_2x17_P2.54mm_Vertical")
  8194. )
  8195. (path "/00000000-0000-0000-0000-00006113965b"
  8196. (reference "J2") (unit 1) (value "Conn_01x02_Male") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical")
  8197. )
  8198. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000060fde913"
  8199. (reference "J3") (unit 1) (value "Floppy power") (footprint "Greaseweazle:TE_171826-4_1x4_P2.50mm_Horizontal")
  8200. )
  8201. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061bef97d"
  8202. (reference "J4") (unit 1) (value "Power Connector") (footprint "Connector_Phoenix_MC:PhoenixContact_MC_1,5_4-G-3.81_1x04_P3.81mm_Horizontal")
  8203. )
  8204. (path "/00000000-0000-0000-0000-0000619aeefc"
  8205. (reference "J5") (unit 1) (value "ST LINK DEBUG/FLASH") (footprint "Connector_IDC:IDC-Header_2x05_P2.54mm_Vertical")
  8206. )
  8207. (path "/00000000-0000-0000-0000-000061a2788d"
  8208. (reference "J6") (unit 1) (value "ID HI") (footprint "Jumper:SolderJumper-3_P1.3mm_Open_RoundedPad1.0x1.5mm_NumberLabels")
  8209. )
  8210. (path "/00000000-0000-0000-0000-000061a29d54"
  8211. (reference "J7") (unit 1) (value "ID") (footprint "Jumper:SolderJumper-3_P1.3mm_Open_RoundedPad1.0x1.5mm_NumberLabels")
  8212. )
  8213. (path "/00000000-0000-0000-0000-000061a2b329"
  8214. (reference "J8") (unit 1) (value "ID LOW") (footprint "Jumper:SolderJumper-3_P1.3mm_Open_RoundedPad1.0x1.5mm_NumberLabels")
  8215. )
  8216. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061c0ccd0"
  8217. (reference "J9") (unit 1) (value "STUBS4500 Programming") (footprint "Connector_IDC:IDC-Header_2x06_P2.54mm_Vertical")
  8218. )
  8219. (path "/00000000-0000-0000-0000-00006115910d"
  8220. (reference "J10") (unit 1) (value "Conn_01x03_Male") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical")
  8221. )
  8222. (path "/4ed97a04-0986-4770-aed0-dc9f909c392f"
  8223. (reference "J11") (unit 1) (value "Conn_02x03_Odd_Even") (footprint "Connector:Tag-Connect_TC2030-IDC-FP_2x03_P1.27mm_Vertical")
  8224. )
  8225. (path "/de74180e-b890-44b7-9756-b45db32a51e7"
  8226. (reference "J12") (unit 1) (value "Conn_02x25_Odd_Even") (footprint "Connector_IDC:IDC-Header_2x25_P2.54mm_Vertical")
  8227. )
  8228. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/c44eb0b7-9260-4b83-a166-21f9ddc296fb"
  8229. (reference "J14") (unit 1) (value "FLOPPY-GND") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical")
  8230. )
  8231. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/b1301c60-ff7e-469f-b090-63f6a467a427"
  8232. (reference "J17") (unit 1) (value "FLOPPY-SIDE-0") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical")
  8233. )
  8234. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061d9681d"
  8235. (reference "L1") (unit 1) (value "15uH") (footprint "Greaseweazle:L_6.3x6.3_H3")
  8236. )
  8237. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/0e088394-8c5a-44be-ac98-14bc2dc355fb"
  8238. (reference "L2") (unit 1) (value "100u") (footprint "Inductor_SMD:L_6.3x6.3_H3")
  8239. )
  8240. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000062165a8f"
  8241. (reference "L3") (unit 1) (value "15uH") (footprint "Greaseweazle:L_6.3x6.3_H3")
  8242. )
  8243. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/cff86929-ce63-4508-8edc-a0fb9eb66289"
  8244. (reference "L4") (unit 1) (value "100u") (footprint "Inductor_SMD:L_6.3x6.3_H3")
  8245. )
  8246. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061c7c2e9"
  8247. (reference "Q1") (unit 1) (value "AO4407C") (footprint "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm")
  8248. )
  8249. (path "/00000000-0000-0000-0000-0000618a932e/7cb5267b-02e0-46f9-9a48-d31c48814c00"
  8250. (reference "Q2") (unit 1) (value "BSS138") (footprint "Package_TO_SOT_SMD:SOT-23")
  8251. )
  8252. (path "/00000000-0000-0000-0000-0000618a932e/603b1750-0482-4332-a28b-9b74150b9566"
  8253. (reference "Q3") (unit 1) (value "BSS138") (footprint "Package_TO_SOT_SMD:SOT-23")
  8254. )
  8255. (path "/00000000-0000-0000-0000-0000618a932e/232d0c9a-0752-47ab-a532-e1a9d47faefb"
  8256. (reference "Q4") (unit 1) (value "AO3401A") (footprint "Package_TO_SOT_SMD:SOT-23")
  8257. )
  8258. (path "/00000000-0000-0000-0000-000060f22a52/00000000-0000-0000-0000-00005e733708"
  8259. (reference "R1") (unit 1) (value "5.1k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8260. )
  8261. (path "/00000000-0000-0000-0000-000060f22a52/00000000-0000-0000-0000-00005e79f20f"
  8262. (reference "R2") (unit 1) (value "5.1k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8263. )
  8264. (path "/00000000-0000-0000-0000-000060f7de7e"
  8265. (reference "R3") (unit 1) (value "3k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8266. )
  8267. (path "/00000000-0000-0000-0000-000060f7b3e5"
  8268. (reference "R4") (unit 1) (value "3k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8269. )
  8270. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-0000619943a1"
  8271. (reference "R5") (unit 1) (value "3k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8272. )
  8273. (path "/00000000-0000-0000-0000-000061789539"
  8274. (reference "R6") (unit 1) (value "470") (footprint "Resistor_SMD:R_0402_1005Metric")
  8275. )
  8276. (path "/00000000-0000-0000-0000-0000611f6a4c"
  8277. (reference "R7") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8278. )
  8279. (path "/00000000-0000-0000-0000-0000611f8573"
  8280. (reference "R8") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8281. )
  8282. (path "/00000000-0000-0000-0000-0000611f9281"
  8283. (reference "R9") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8284. )
  8285. (path "/00000000-0000-0000-0000-0000611f9f92"
  8286. (reference "R10") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8287. )
  8288. (path "/00000000-0000-0000-0000-0000611facfa"
  8289. (reference "R11") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8290. )
  8291. (path "/00000000-0000-0000-0000-0000611fbaa4"
  8292. (reference "R12") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8293. )
  8294. (path "/00000000-0000-0000-0000-0000611fc856"
  8295. (reference "R13") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8296. )
  8297. (path "/00000000-0000-0000-0000-0000611fd625"
  8298. (reference "R14") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8299. )
  8300. (path "/00000000-0000-0000-0000-0000611fe402"
  8301. (reference "R15") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8302. )
  8303. (path "/00000000-0000-0000-0000-0000611ff27a"
  8304. (reference "R16") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8305. )
  8306. (path "/00000000-0000-0000-0000-0000612000bb"
  8307. (reference "R17") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8308. )
  8309. (path "/00000000-0000-0000-0000-000061200f43"
  8310. (reference "R18") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8311. )
  8312. (path "/00000000-0000-0000-0000-000061540484"
  8313. (reference "R19") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8314. )
  8315. (path "/00000000-0000-0000-0000-000061541c23"
  8316. (reference "R20") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8317. )
  8318. (path "/00000000-0000-0000-0000-0000615428fc"
  8319. (reference "R21") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8320. )
  8321. (path "/00000000-0000-0000-0000-0000615435d8"
  8322. (reference "R22") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8323. )
  8324. (path "/00000000-0000-0000-0000-000061544310"
  8325. (reference "R23") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8326. )
  8327. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061c03140"
  8328. (reference "R24") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8329. )
  8330. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061c1d791"
  8331. (reference "R25") (unit 1) (value "100k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8332. )
  8333. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061c48580"
  8334. (reference "R26") (unit 1) (value "4.7k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8335. )
  8336. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061c47e41"
  8337. (reference "R27") (unit 1) (value "4.7k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8338. )
  8339. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061c31387"
  8340. (reference "R28") (unit 1) (value "100k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8341. )
  8342. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061c36c80"
  8343. (reference "R29") (unit 1) (value "100k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8344. )
  8345. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061c39cf4"
  8346. (reference "R30") (unit 1) (value "100k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8347. )
  8348. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061c3b934"
  8349. (reference "R31") (unit 1) (value "100k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8350. )
  8351. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061c3df7b"
  8352. (reference "R32") (unit 1) (value "100k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8353. )
  8354. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061c4031d"
  8355. (reference "R33") (unit 1) (value "100k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8356. )
  8357. (path "/00000000-0000-0000-0000-0000619586c3/ddf1d253-db65-4693-a880-6f566c4de4b7"
  8358. (reference "R34") (unit 1) (value "470") (footprint "Resistor_SMD:R_0402_1005Metric")
  8359. )
  8360. (path "/00000000-0000-0000-0000-0000618a932e/c0ff9264-07fc-4cd6-8b9d-9956044633a2"
  8361. (reference "R35") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8362. )
  8363. (path "/00000000-0000-0000-0000-0000618a932e/0ba63d92-8d75-4d10-8d9d-9abe26b02317"
  8364. (reference "R36") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8365. )
  8366. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061c9cd51"
  8367. (reference "R37") (unit 1) (value "100k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8368. )
  8369. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061ca64e3"
  8370. (reference "R38") (unit 1) (value "22k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8371. )
  8372. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061cb587b"
  8373. (reference "R39") (unit 1) (value "100") (footprint "Resistor_SMD:R_0402_1005Metric")
  8374. )
  8375. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061cdb3e1"
  8376. (reference "R40") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8377. )
  8378. (path "/00000000-0000-0000-0000-0000618a932e/135a8189-cb8f-427c-98c0-5b42cbd7be3a"
  8379. (reference "R41") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8380. )
  8381. (path "/00000000-0000-0000-0000-0000618a932e/f584fe43-11f3-4350-ac5e-df1dd1ce9a3a"
  8382. (reference "R42") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8383. )
  8384. (path "/00000000-0000-0000-0000-0000618a932e/4ddcf6b9-fab3-458a-ba6a-f6692afff192"
  8385. (reference "R43") (unit 1) (value "100k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8386. )
  8387. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061d967ed"
  8388. (reference "R44") (unit 1) (value "330k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8389. )
  8390. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061d967f8"
  8391. (reference "R45") (unit 1) (value "120k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8392. )
  8393. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061d967a3"
  8394. (reference "R46") (unit 1) (value "12.7k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8395. )
  8396. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061d96749"
  8397. (reference "R47") (unit 1) (value "17k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8398. )
  8399. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061d96754"
  8400. (reference "R48") (unit 1) (value "3.24k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8401. )
  8402. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061d9685b"
  8403. (reference "R49") (unit 1) (value "1,5k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8404. )
  8405. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000062165a5f"
  8406. (reference "R50") (unit 1) (value "330k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8407. )
  8408. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000062165a6a"
  8409. (reference "R51") (unit 1) (value "120k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8410. )
  8411. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000062165a29"
  8412. (reference "R52") (unit 1) (value "12.7k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8413. )
  8414. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-0000621659cf"
  8415. (reference "R53") (unit 1) (value "45k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8416. )
  8417. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-0000621659da"
  8418. (reference "R54") (unit 1) (value "3.24k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8419. )
  8420. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000062165acb"
  8421. (reference "R55") (unit 1) (value "4,7k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8422. )
  8423. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/cd7ebafb-fcbb-4229-adc5-b9407a585ed9"
  8424. (reference "R56") (unit 1) (value "1k") (footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal")
  8425. )
  8426. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/e12e12b8-bd55-4675-8170-62b4affa5540"
  8427. (reference "R57") (unit 1) (value "1k") (footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal")
  8428. )
  8429. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/46617fbe-d99c-4562-8e6d-b69c8cd6a29e"
  8430. (reference "R58") (unit 1) (value "1k") (footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal")
  8431. )
  8432. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/376504a8-15f0-43da-95a7-b6fc08c06053"
  8433. (reference "R59") (unit 1) (value "1k") (footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal")
  8434. )
  8435. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/04a8b46f-a99a-42a7-af65-f98a8345abfc"
  8436. (reference "R60") (unit 1) (value "22") (footprint "Resistor_SMD:R_0402_1005Metric")
  8437. )
  8438. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/4d519c3a-abc8-4421-803d-ced69e37d9f7"
  8439. (reference "R61") (unit 1) (value "22") (footprint "Resistor_SMD:R_0402_1005Metric")
  8440. )
  8441. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/ecc88c66-df50-4406-98a5-56d24055f0c5"
  8442. (reference "R62") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8443. )
  8444. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/b4981be0-4d5c-4698-bfe3-c33355328d33"
  8445. (reference "R63") (unit 1) (value "2k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8446. )
  8447. (path "/3d4ee57f-7979-4983-a450-d4a7eead57eb"
  8448. (reference "R64") (unit 1) (value "3k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8449. )
  8450. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/e7ccc987-ceaf-4508-8dbc-ea6b1d931777"
  8451. (reference "R65") (unit 1) (value "1k") (footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal")
  8452. )
  8453. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/40ba2de4-e92f-4d99-9118-a68407bb88ff"
  8454. (reference "R66") (unit 1) (value "1k") (footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal")
  8455. )
  8456. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/1b5747a6-762a-4b6e-8f91-1aa90cbd0339"
  8457. (reference "R67") (unit 1) (value "1k") (footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal")
  8458. )
  8459. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/756b0a26-47b6-45ab-9b00-76ddfba740d4"
  8460. (reference "R68") (unit 1) (value "1k") (footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal")
  8461. )
  8462. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/a0b4b5f9-8033-4f4a-b05f-6a9cf7772979"
  8463. (reference "R69") (unit 1) (value "22") (footprint "Resistor_SMD:R_0402_1005Metric")
  8464. )
  8465. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/b62a4fb1-6880-4226-9be9-56d9577fb96f"
  8466. (reference "R70") (unit 1) (value "22") (footprint "Resistor_SMD:R_0402_1005Metric")
  8467. )
  8468. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/cbabf5a1-56c1-4765-8f8f-ba34e1fcd706"
  8469. (reference "R71") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8470. )
  8471. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/badea698-84a4-43e3-b805-1a4cd74cddd7"
  8472. (reference "R72") (unit 1) (value "2k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8473. )
  8474. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000060ffedf2"
  8475. (reference "SW1") (unit 1) (value "RESET") (footprint "Greaseweazle:SW_Push_1P1T_NO_CK_K2-1102SP-C4SC-04")
  8476. )
  8477. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061994339"
  8478. (reference "U1") (unit 1) (value "STM32F730Z8T6") (footprint "Greaseweazle:STMicroelectronics-LQFP144-1A-0-3-IPC_A")
  8479. )
  8480. (path "/00000000-0000-0000-0000-000060f41cbf"
  8481. (reference "U1") (unit 2) (value "STM32F730Z8T6") (footprint "Greaseweazle:STMicroelectronics-LQFP144-1A-0-3-IPC_A")
  8482. )
  8483. (path "/00000000-0000-0000-0000-000060f442ce"
  8484. (reference "U1") (unit 3) (value "STM32F730Z8T6") (footprint "Greaseweazle:STMicroelectronics-LQFP144-1A-0-3-IPC_A")
  8485. )
  8486. (path "/00000000-0000-0000-0000-000060f22a52/00000000-0000-0000-0000-00005e95f9cd"
  8487. (reference "U2") (unit 1) (value "USBLC6-2SC6") (footprint "Package_TO_SOT_SMD:SOT-23-6")
  8488. )
  8489. (path "/00000000-0000-0000-0000-000060f860dc"
  8490. (reference "U3") (unit 1) (value "SN74LS07") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
  8491. )
  8492. (path "/00000000-0000-0000-0000-000060f8e956"
  8493. (reference "U3") (unit 2) (value "SN74LS07") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
  8494. )
  8495. (path "/00000000-0000-0000-0000-000060f9020d"
  8496. (reference "U3") (unit 3) (value "SN74LS07") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
  8497. )
  8498. (path "/00000000-0000-0000-0000-000060f91637"
  8499. (reference "U3") (unit 4) (value "SN74LS07") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
  8500. )
  8501. (path "/00000000-0000-0000-0000-000060f93294"
  8502. (reference "U3") (unit 5) (value "SN74LS07") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
  8503. )
  8504. (path "/00000000-0000-0000-0000-000060f949da"
  8505. (reference "U3") (unit 6) (value "SN74LS07") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
  8506. )
  8507. (path "/00000000-0000-0000-0000-000060f95e46"
  8508. (reference "U3") (unit 7) (value "SN74LS07") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
  8509. )
  8510. (path "/00000000-0000-0000-0000-00006102cdb8"
  8511. (reference "U4") (unit 1) (value "SN74LS07") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
  8512. )
  8513. (path "/00000000-0000-0000-0000-00006102d33e"
  8514. (reference "U4") (unit 2) (value "SN74LS07") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
  8515. )
  8516. (path "/00000000-0000-0000-0000-00006102d348"
  8517. (reference "U4") (unit 3) (value "SN74LS07") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
  8518. )
  8519. (path "/00000000-0000-0000-0000-00006102d352"
  8520. (reference "U4") (unit 4) (value "SN74LS07") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
  8521. )
  8522. (path "/00000000-0000-0000-0000-00006102d35c"
  8523. (reference "U4") (unit 5) (value "SN74LS07") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
  8524. )
  8525. (path "/00000000-0000-0000-0000-00006102d366"
  8526. (reference "U4") (unit 6) (value "SN74LS07") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
  8527. )
  8528. (path "/00000000-0000-0000-0000-00006102d370"
  8529. (reference "U4") (unit 7) (value "SN74LS07") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
  8530. )
  8531. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-00006190f976"
  8532. (reference "U5") (unit 1) (value "STUSB4500QTR") (footprint "Package_DFN_QFN:QFN-24-1EP_4x4mm_P0.5mm_EP2.7x2.7mm")
  8533. )
  8534. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061d9675f"
  8535. (reference "U6") (unit 1) (value "TPS54331") (footprint "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm")
  8536. )
  8537. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-0000621659e5"
  8538. (reference "U7") (unit 1) (value "TPS54331") (footprint "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm")
  8539. )
  8540. (path "/00000000-0000-0000-0000-0000619586c3/8883f98f-fba0-4976-882c-30cc0b8d2aea"
  8541. (reference "U8") (unit 1) (value "AMS1117-3.3") (footprint "Package_TO_SOT_SMD:SOT-223-3_TabPin2")
  8542. )
  8543. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/483f3754-695f-4639-a7d4-e12085459452"
  8544. (reference "U9") (unit 1) (value "AD8138") (footprint "Package_SO:SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.29x3mm")
  8545. )
  8546. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/85fd9882-f192-4cf4-a9fb-2e6abbcba5e2"
  8547. (reference "U10") (unit 1) (value "AD9235BR") (footprint "Package_SO:TSSOP-28_4.4x9.7mm_P0.65mm")
  8548. )
  8549. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/eeab0e80-e6e5-44e5-8328-097faabb11ab"
  8550. (reference "U11") (unit 1) (value "FT601Q-B-T") (footprint "Package_DFN_QFN:QFN-76-1EP_9x9mm_P0.4mm_EP3.8x3.8mm")
  8551. )
  8552. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/d24c061c-67bd-4714-97be-eb58b1700e60"
  8553. (reference "U12") (unit 1) (value "AD8138") (footprint "Package_SO:SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.29x3mm")
  8554. )
  8555. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/530796e2-7331-4204-8f24-dcc33f1230f9"
  8556. (reference "U14") (unit 1) (value "LM2664") (footprint "Package_TO_SOT_SMD:SOT-23-6")
  8557. )
  8558. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/88b45647-4a30-4371-8202-00f0cba17aa0"
  8559. (reference "U15") (unit 1) (value "AD9235BR") (footprint "Package_SO:TSSOP-28_4.4x9.7mm_P0.65mm")
  8560. )
  8561. (path "/00000000-0000-0000-0000-000060f22a52/00000000-0000-0000-0000-00005e68a6b6"
  8562. (reference "USB1") (unit 1) (value "HRO-TYPE-C-31-M-12") (footprint "Greaseweazle:HRO-TYPE-C-31-M-12")
  8563. )
  8564. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061910067"
  8565. (reference "USB2") (unit 1) (value "HRO-TYPE-C-31-M-12") (footprint "Greaseweazle:HRO-TYPE-C-31-M-12")
  8566. )
  8567. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/ff2bd700-3acd-4ff9-91eb-6c52d2dde82a"
  8568. (reference "USB3") (unit 1) (value "HRO-TYPE-C-31-M-12") (footprint "Greaseweazle:HRO-TYPE-C-31-M-12")
  8569. )
  8570. (path "/00000000-0000-0000-0000-00006138d37a"
  8571. (reference "X1") (unit 1) (value "16MHz") (footprint "Greaseweazle:Oscillator_SMD_Abracon_ASE-4Pin_3.2x2.5mm")
  8572. )
  8573. )
  8574. )