123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290
(kicad_sch
	(version 20260306)
	(generator "eeschema")
	(generator_version "10.0")
	(uuid "42587d8f-f55a-4a4b-88d0-3414766107e0")
	(paper "A4")
	(lib_symbols
		(symbol "CP_Sensor_8x8_1"
			(exclude_from_sim no)
			(in_bom yes)
			(on_board yes)
			(in_pos_files yes)
			(duplicate_pin_numbers_are_jumpers no)
			(property "Reference" "M"
				(at -3.81 21.59 0)
				(show_name no)
				(do_not_autoplace no)
				(effects
					(font
						(size 1.27 1.27)
					)
				)
			)
			(property "Value" "CP_Sensor_8x8"
				(at -3.81 24.13 0)
				(show_name no)
				(do_not_autoplace no)
				(effects
					(font
						(size 1.27 1.27)
					)
				)
			)
			(property "Footprint" "CalebsLib_CDT:CP_Sensor_8x8"
				(at 0 26.67 0)
				(show_name no)
				(do_not_autoplace no)
				(effects
					(font
						(size 1.27 1.27)
					)
				)
			)
			(property "Datasheet" ""
				(at 0 0 0)
				(show_name no)
				(do_not_autoplace no)
				(effects
					(font
						(size 1.27 1.27)
					)
				)
			)
			(property "Description" "Control Panel Layout for 8x8 Sensor Standardized, 3v3 input"
				(at -2.54 26.67 0)
				(show_name no)
				(do_not_autoplace no)
				(effects
					(font
						(size 1.27 1.27)
					)
				)
			)
			(symbol "CP_Sensor_8x8_1_1_0"
				(pin power_in line
					(at -15.24 17.78 0)
					(length 5.08)
					(name "+3V3"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
					(number "1"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
				)
				(pin input line
					(at -15.24 15.24 0)
					(length 5.08)
					(name "SCL"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
					(number "2"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
				)
				(pin bidirectional line
					(at -15.24 12.7 0)
					(length 5.08)
					(name "SDA"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
					(number "3"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
				)
				(pin power_in line
					(at 6.985 12.7 180)
					(length 5.08)
					(name "GND"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
					(number "4"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
				)
				(pin power_in line
					(at 6.985 12.7 180)
					(length 5.08)
					(hide yes)
					(name "GND"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
					(number "5"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
				)
				(pin output line
					(at 6.985 17.78 180)
					(length 5.08)
					(name "INT"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
					(number "6"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
				)
				(pin output line
					(at 6.985 17.78 180)
					(length 5.08)
					(hide yes)
					(name "INT"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
					(number "7"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
				)
				(pin power_in line
					(at 6.985 12.7 180)
					(length 5.08)
					(hide yes)
					(name "GND"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
					(number "8"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
				)
				(pin power_in line
					(at 6.985 12.7 180)
					(length 5.08)
					(hide yes)
					(name "GND"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
					(number "9"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
				)
			)
			(symbol "CP_Sensor_8x8_1_1_1"
				(rectangle
					(start -10.16 20.066)
					(end 1.905 11.43)
					(stroke
						(width 0)
						(type solid)
					)
					(fill
						(type color)
						(color 254 255 198 1)
					)
				)
			)
			(embedded_fonts no)
		)
		(symbol "CalebsLibrary:DIF_PAIR_LOGO"
			(exclude_from_sim no)
			(in_bom no)
			(on_board no)
			(in_pos_files yes)
			(duplicate_pin_numbers_are_jumpers no)
			(property "Reference" "#LOGO"
				(at 0 0 0)
				(show_name no)
				(do_not_autoplace no)
				(effects
					(font
						(size 1.27 1.27)
					)
				)
			)
			(property "Value" ""
				(at 0 0 0)
				(show_name no)
				(do_not_autoplace no)
				(effects
					(font
						(size 1.27 1.27)
					)
				)
			)
			(property "Footprint" ""
				(at 0 0 0)
				(show_name no)
				(do_not_autoplace no)
				(hide yes)
				(effects
					(font
						(size 1.27 1.27)
					)
				)
			)
			(property "Datasheet" ""
				(at 0 0 0)
				(show_name no)
				(do_not_autoplace no)
				(hide yes)
				(effects
					(font
						(size 1.27 1.27)
					)
				)
			)
			(property "Description" ""
				(at 0 0 0)
				(show_name no)
				(do_not_autoplace no)
				(hide yes)
				(effects
					(font
						(size 1.27 1.27)
					)
				)
			)
			(symbol "DIF_PAIR_LOGO_0_1"
				(polyline
					(pts
						(xy -3.048 -4.826) (xy -2.286 -4.064) (xy -1.397 -4.064) (xy -1.016 -4.572) (xy 0 -4.572) (xy 0.508 -4.064)
						(xy 1.524 -4.064)
					)
					(stroke
						(width 0.254)
						(type default)
						(color 255 11 0 1)
					)
					(fill
						(type none)
					)
				)
				(polyline
					(pts
						(xy 1.524 -3.556) (xy 1.27 -3.556) (xy 0.381 -3.556) (xy 0 -3.048) (xy -1.016 -3.048) (xy -1.524 -3.556)
						(xy -2.286 -3.556)
					)
					(stroke
						(width 0.254)
						(type default)
						(color 255 11 0 1)
					)
					(fill
						(type none)
					)
				)
			)
			(embedded_fonts no)
		)
		(symbol "CalebsLibrary:LOGO_DP_ORG"
			(exclude_from_sim no)
			(in_bom no)
			(on_board no)
			(in_pos_files yes)
			(duplicate_pin_numbers_are_jumpers no)
			(property "Reference" "#LOGO"
				(at 0 0 0)
				(show_name no)
				(do_not_autoplace no)
				(effects
					(font
						(size 1.27 1.27)
					)
				)
			)
			(property "Value" ""
				(at 0 0 0)
				(show_name no)
				(do_not_autoplace no)
				(effects
					(font
						(size 1.27 1.27)
					)
				)
			)
			(property "Footprint" ""
				(at 0 0 0)
				(show_name no)
				(do_not_autoplace no)
				(hide yes)
				(effects
					(font
						(size 1.27 1.27)
					)
				)
			)
			(property "Datasheet" ""
				(at 0 0 0)
				(show_name no)
				(do_not_autoplace no)
				(hide yes)
				(effects
					(font
						(size 1.27 1.27)
					)
				)
			)
			(property "Description" ""
				(at 0 0 0)
				(show_name no)
				(do_not_autoplace no)
				(hide yes)
				(effects
					(font
						(size 1.27 1.27)
					)
				)
			)
			(symbol "LOGO_DP_ORG_0_1"
				(polyline
					(pts
						(xy -3.048 -4.826) (xy -2.286 -4.064) (xy -1.397 -4.064) (xy -1.016 -4.572) (xy 0 -4.572) (xy 0.508 -4.064)
						(xy 1.524 -4.064)
					)
					(stroke
						(width 0.254)
						(type default)
						(color 255 171 2 1)
					)
					(fill
						(type none)
					)
				)
				(polyline
					(pts
						(xy 1.524 -3.556) (xy 1.27 -3.556) (xy 0.381 -3.556) (xy 0 -3.048) (xy -1.016 -3.048) (xy -1.524 -3.556)
						(xy -2.286 -3.556)
					)
					(stroke
						(width 0.254)
						(type default)
						(color 255 171 2 1)
					)
					(fill
						(type none)
					)
				)
			)
			(embedded_fonts no)
		)
		(symbol "CalebsLibrary:LOGO_DP_PURP"
			(exclude_from_sim no)
			(in_bom no)
			(on_board no)
			(in_pos_files yes)
			(duplicate_pin_numbers_are_jumpers no)
			(property "Reference" "#LOGO"
				(at 0 0 0)
				(show_name no)
				(do_not_autoplace no)
				(effects
					(font
						(size 1.27 1.27)
					)
				)
			)
			(property "Value" ""
				(at 0 0 0)
				(show_name no)
				(do_not_autoplace no)
				(effects
					(font
						(size 1.27 1.27)
					)
				)
			)
			(property "Footprint" ""
				(at 0 0 0)
				(show_name no)
				(do_not_autoplace no)
				(hide yes)
				(effects
					(font
						(size 1.27 1.27)
					)
				)
			)
			(property "Datasheet" ""
				(at 0 0 0)
				(show_name no)
				(do_not_autoplace no)
				(hide yes)
				(effects
					(font
						(size 1.27 1.27)
					)
				)
			)
			(property "Description" ""
				(at 0 0 0)
				(show_name no)
				(do_not_autoplace no)
				(hide yes)
				(effects
					(font
						(size 1.27 1.27)
					)
				)
			)
			(symbol "LOGO_DP_PURP_0_1"
				(polyline
					(pts
						(xy -3.048 -4.826) (xy -2.286 -4.064) (xy -1.397 -4.064) (xy -1.016 -4.572) (xy 0 -4.572) (xy 0.508 -4.064)
						(xy 1.524 -4.064)
					)
					(stroke
						(width 0.254)
						(type default)
						(color 189 21 255 1)
					)
					(fill
						(type none)
					)
				)
				(polyline
					(pts
						(xy 1.524 -3.556) (xy 1.27 -3.556) (xy 0.381 -3.556) (xy 0 -3.048) (xy -1.016 -3.048) (xy -1.524 -3.556)
						(xy -2.286 -3.556)
					)
					(stroke
						(width 0.254)
						(type default)
						(color 189 21 255 1)
					)
					(fill
						(type none)
					)
				)
			)
			(embedded_fonts no)
		)
		(symbol "CalebsLibrary:Molecule_PiProbe"
			(exclude_from_sim no)
			(in_bom no)
			(on_board yes)
			(in_pos_files yes)
			(duplicate_pin_numbers_are_jumpers no)
			(property "Reference" "U"
				(at 35.814 -20.32 0)
				(show_name no)
				(do_not_autoplace no)
				(effects
					(font
						(size 1.27 1.27)
					)
				)
			)
			(property "Value" "Molecule_PiProbe"
				(at 4.826 7.62 0)
				(show_name no)
				(do_not_autoplace no)
				(effects
					(font
						(size 1.27 1.27)
					)
				)
			)
			(property "Footprint" "CalebsLib:Molecule_PiProbe"
				(at 4.572 -3.81 0)
				(show_name no)
				(do_not_autoplace no)
				(hide yes)
				(effects
					(font
						(size 1.27 1.27)
					)
				)
			)
			(property "Datasheet" ""
				(at 0 0 0)
				(show_name no)
				(do_not_autoplace no)
				(hide yes)
				(effects
					(font
						(size 1.27 1.27)
					)
				)
			)
			(property "Description" "RP2040 Debug Probe (UART/SWDIO)"
				(at 6.096 -3.81 0)
				(show_name no)
				(do_not_autoplace no)
				(hide yes)
				(effects
					(font
						(size 1.27 1.27)
					)
				)
			)
			(symbol "Molecule_PiProbe_1_0"
				(pin power_in line
					(at -10.16 5.08 0)
					(length 5.08)
					(name "+3V3"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
					(number "1"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
				)
				(pin bidirectional line
					(at -10.16 2.54 0)
					(length 5.08)
					(name "USB_D-"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
					(number "2"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
				)
				(pin bidirectional line
					(at -10.16 0 0)
					(length 5.08)
					(name "USB_D+"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
					(number "3"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
				)
				(pin power_in line
					(at -10.16 -2.54 0)
					(length 5.08)
					(name "GND"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
					(number "4"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
				)
				(pin input line
					(at -10.16 -5.08 0)
					(length 5.08)
					(name "BOOTSEL"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
					(number "5"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
				)
				(pin input line
					(at -10.16 -10.16 0)
					(length 5.08)
					(name "RST"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
					(number "7"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
				)
				(pin power_in line
					(at -10.16 -12.7 0)
					(length 5.08)
					(name "GND"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
					(number "8"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
				)
				(pin output line
					(at 1.27 -20.32 90)
					(length 5.08)
					(name "TX"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
					(number "9"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
				)
				(pin input line
					(at 3.81 -20.32 90)
					(length 5.08)
					(name "RX"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
					(number "10"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
				)
				(pin power_in line
					(at 6.35 -20.32 90)
					(length 5.08)
					(name "GND"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
					(number "11"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
				)
				(pin bidirectional line
					(at 11.43 -20.32 90)
					(length 5.08)
					(name "DIO"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
					(number "12"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
				)
				(pin input line
					(at 13.97 -20.32 90)
					(length 5.08)
					(name "CLK"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
					(number "13"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
				)
				(pin power_in line
					(at 24.13 -12.7 180)
					(length 5.08)
					(name "GND"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
					(number "15"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
				)
				(pin power_in line
					(at 24.13 5.08 180)
					(length 5.08)
					(name "+3V3"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
					(number "16"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
				)
			)
			(symbol "Molecule_PiProbe_1_1"
				(rectangle
					(start -5.08 6.35)
					(end 19.05 -15.24)
					(stroke
						(width 0)
						(type solid)
					)
					(fill
						(type color)
						(color 254 255 198 1)
					)
				)
			)
			(embedded_fonts no)
		)
		(symbol "Molecule_CDT:CP_Sensor_8x8"
			(exclude_from_sim no)
			(in_bom yes)
			(on_board yes)
			(in_pos_files yes)
			(duplicate_pin_numbers_are_jumpers no)
			(property "Reference" "M"
				(at -3.81 21.59 0)
				(show_name no)
				(do_not_autoplace no)
				(effects
					(font
						(size 1.27 1.27)
					)
				)
			)
			(property "Value" "CP_Sensor_8x8"
				(at -3.81 24.13 0)
				(show_name no)
				(do_not_autoplace no)
				(effects
					(font
						(size 1.27 1.27)
					)
				)
			)
			(property "Footprint" "CalebsLib_CDT:CP_Sensor_8x8"
				(at 0 26.67 0)
				(show_name no)
				(do_not_autoplace no)
				(effects
					(font
						(size 1.27 1.27)
					)
				)
			)
			(property "Datasheet" ""
				(at 0 0 0)
				(show_name no)
				(do_not_autoplace no)
				(effects
					(font
						(size 1.27 1.27)
					)
				)
			)
			(property "Description" "Control Panel Layout for 8x8 Sensor Standardized, 3v3 input"
				(at -2.54 26.67 0)
				(show_name no)
				(do_not_autoplace no)
				(effects
					(font
						(size 1.27 1.27)
					)
				)
			)
			(symbol "CP_Sensor_8x8_1_0"
				(pin power_in line
					(at -15.24 17.78 0)
					(length 5.08)
					(name "+3V3"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
					(number "1"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
				)
				(pin input line
					(at -15.24 15.24 0)
					(length 5.08)
					(name "SCL"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
					(number "2"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
				)
				(pin bidirectional line
					(at -15.24 12.7 0)
					(length 5.08)
					(name "SDA"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
					(number "3"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
				)
				(pin power_in line
					(at 6.985 12.7 180)
					(length 5.08)
					(name "GND"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
					(number "4"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
				)
				(pin power_in line
					(at 6.985 12.7 180)
					(length 5.08)
					(hide yes)
					(name "GND"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
					(number "5"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
				)
				(pin output line
					(at 6.985 17.78 180)
					(length 5.08)
					(name "INT"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
					(number "6"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
				)
				(pin output line
					(at 6.985 17.78 180)
					(length 5.08)
					(hide yes)
					(name "INT"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
					(number "7"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
				)
				(pin power_in line
					(at 6.985 12.7 180)
					(length 5.08)
					(hide yes)
					(name "GND"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
					(number "8"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
				)
				(pin power_in line
					(at 6.985 12.7 180)
					(length 5.08)
					(hide yes)
					(name "GND"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
					(number "9"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
				)
			)
			(symbol "CP_Sensor_8x8_1_1"
				(rectangle
					(start -10.16 20.066)
					(end 1.905 11.43)
					(stroke
						(width 0)
						(type solid)
					)
					(fill
						(type color)
						(color 254 255 198 1)
					)
				)
			)
			(embedded_fonts no)
		)
		(symbol "Molecule_CDT:Carrier_I2S"
			(exclude_from_sim no)
			(in_bom yes)
			(on_board yes)
			(in_pos_files yes)
			(duplicate_pin_numbers_are_jumpers no)
			(property "Reference" "M"
				(at -3.81 21.59 0)
				(show_name no)
				(do_not_autoplace no)
				(effects
					(font
						(size 1.27 1.27)
					)
				)
			)
			(property "Value" "Carrier_I2S"
				(at -3.81 24.13 0)
				(show_name no)
				(do_not_autoplace no)
				(effects
					(font
						(size 1.27 1.27)
					)
				)
			)
			(property "Footprint" "CalebsLib_CDT:Carrier_I2S"
				(at 0 26.67 0)
				(show_name no)
				(do_not_autoplace no)
				(effects
					(font
						(size 1.27 1.27)
					)
				)
			)
			(property "Datasheet" ""
				(at 0 0 0)
				(show_name no)
				(do_not_autoplace no)
				(effects
					(font
						(size 1.27 1.27)
					)
				)
			)
			(property "Description" "MEMs I2S Microphone Carrier"
				(at -2.54 26.67 0)
				(show_name no)
				(do_not_autoplace no)
				(effects
					(font
						(size 1.27 1.27)
					)
				)
			)
			(symbol "Carrier_I2S_1_0"
				(pin power_in line
					(at -15.24 17.78 0)
					(length 5.08)
					(name "+3V3"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
					(number "1"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
				)
				(pin input line
					(at -15.24 15.24 0)
					(length 5.08)
					(name "SEL_0"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
					(number "2"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
				)
				(pin power_in line
					(at -15.24 12.7 0)
					(length 5.08)
					(name "GND"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
					(number "3"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
				)
				(pin power_in line
					(at -15.24 12.7 0)
					(length 5.08)
					(hide yes)
					(name "GND"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
					(number "4"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
				)
				(pin bidirectional line
					(at 6.985 17.78 180)
					(length 5.08)
					(name "SD"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
					(number "5"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
				)
				(pin bidirectional line
					(at 6.985 15.24 180)
					(length 5.08)
					(name "WS"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
					(number "6"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
				)
				(pin input line
					(at 6.985 12.7 180)
					(length 5.08)
					(name "SCK"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
					(number "7"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
				)
				(pin power_in line
					(at -15.24 12.7 0)
					(length 5.08)
					(hide yes)
					(name "GND"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
					(number "8"
						(effects
							(font
								(size 1.016 1.016)
							)
						)
					)
				)
			)
			(symbol "Carrier_I2S_1_1"
				(rectangle
					(start -10.16 20.066)
					(end 1.905 10.795)
					(stroke
						(width 0)
						(type solid)
					)
					(fill
						(type color)
						(color 254 255 198 1)
					)
				)
			)
			(embedded_fonts no)
		)
		(symbol "power:GND"
			(power global)
			(pin_numbers
				(hide yes)
			)
			(pin_names
				(offset 0)
				(hide yes)
			)
			(exclude_from_sim no)
			(in_bom yes)
			(on_board yes)
			(in_pos_files yes)
			(duplicate_pin_numbers_are_jumpers no)
			(property "Reference" "#PWR"
				(at 0 -6.35 0)
				(show_name no)
				(do_not_autoplace no)
				(hide yes)
				(effects
					(font
						(size 1.27 1.27)
					)
				)
			)
			(property "Value" "GND"
				(at 0 -3.81 0)
				(show_name no)
				(do_not_autoplace no)
				(effects
					(font
						(size 1.27 1.27)
					)
				)
			)
			(property "Footprint" ""
				(at 0 0 0)
				(show_name no)
				(do_not_autoplace no)
				(hide yes)
				(effects
					(font
						(size 1.27 1.27)
					)
				)
			)
			(property "Datasheet" ""
				(at 0 0 0)
				(show_name no)
				(do_not_autoplace no)
				(hide yes)
				(effects
					(font
						(size 1.27 1.27)
					)
				)
			)
			(property "Description" "Power symbol creates a global label with name \"GND\" , ground"
				(at 0 0 0)
				(show_name no)
				(do_not_autoplace no)
				(hide yes)
				(effects
					(font
						(size 1.27 1.27)
					)
				)
			)
			(property "ki_keywords" "global power"
				(at 0 0 0)
				(show_name no)
				(do_not_autoplace no)
				(hide yes)
				(effects
					(font
						(size 1.27 1.27)
					)
				)
			)
			(symbol "GND_0_1"
				(polyline
					(pts
						(xy 0 0) (xy 0 -1.27) (xy 1.27 -1.27) (xy 0 -2.54) (xy -1.27 -1.27) (xy 0 -1.27)
					)
					(stroke
						(width 0)
						(type default)
					)
					(fill
						(type none)
					)
				)
			)
			(symbol "GND_1_1"
				(pin power_in line
					(at 0 0 270)
					(length 0)
					(name ""
						(effects
							(font
								(size 1.27 1.27)
							)
						)
					)
					(number "1"
						(effects
							(font
								(size 1.27 1.27)
							)
						)
					)
				)
			)
			(embedded_fonts no)
		)
	)
	(text "(1)"
		(exclude_from_sim no)
		(at 105.41 74.93 0)
		(effects
			(font
				(size 1.27 1.27)
			)
		)
		(uuid "03eb9606-1d90-494b-854f-9f86e022221f")
	)
	(text "(1)"
		(exclude_from_sim no)
		(at 105.41 77.47 0)
		(effects
			(font
				(size 1.27 1.27)
			)
		)
		(uuid "049118ce-f2c4-474a-ac07-964508d05d22")
	)
	(text "(3)"
		(exclude_from_sim no)
		(at 43.815 57.15 0)
		(effects
			(font
				(size 1.27 1.27)
			)
		)
		(uuid "1f02b935-a14b-45f2-b48d-5b65cc656c19")
	)
	(text "(1)"
		(exclude_from_sim no)
		(at 55.245 77.47 0)
		(effects
			(font
				(size 1.27 1.27)
			)
		)
		(uuid "26078573-ba69-46b0-9f91-16f511146e02")
	)
	(text "USER DEBUG\n(NESTED)"
		(exclude_from_sim no)
		(at 75.565 28.575 0)
		(effects
			(font
				(size 2.54 2.54)
				(thickness 0.508)
				(bold yes)
			)
		)
		(uuid "5018d411-8175-48f4-a01a-3c88cbe07054")
	)
	(text "(3)"
		(exclude_from_sim no)
		(at 43.815 62.23 0)
		(effects
			(font
				(size 1.27 1.27)
			)
		)
		(uuid "5167ce75-8c61-4733-9a48-01fa61fd917c")
	)
	(text "(1)"
		(exclude_from_sim no)
		(at 55.245 74.93 0)
		(effects
			(font
				(size 1.27 1.27)
			)
		)
		(uuid "5749de71-c119-4f9f-9a65-09a855c0f5b8")
	)
	(text "(2)"
		(exclude_from_sim no)
		(at 104.7347 47.0628 0)
		(effects
			(font
				(size 1.27 1.27)
			)
		)
		(uuid "6a391c3b-1609-48f6-9b6d-6a0cadb2a242")
	)
	(text "(3,6)"
		(exclude_from_sim no)
		(at 205.105 71.755 0)
		(effects
			(font
				(size 1.27 1.27)
			)
		)
		(uuid "71a20342-845b-4908-b5a5-f604bb430243")
	)
	(text "JLCPCB: 3133"
		(exclude_from_sim no)
		(at 36.195 171.45 0)
		(effects
			(font
				(size 1.27 1.27)
			)
		)
		(uuid "893c1e0e-b512-4766-83bf-5c8be9313e98")
	)
	(text "SENSOR: 8x8\n(NESTED)"
		(exclude_from_sim no)
		(at 78.74 115.57 0)
		(effects
			(font
				(size 2.54 2.54)
				(thickness 0.508)
				(bold yes)
			)
		)
		(uuid "8ccdbe70-0280-4378-85a1-7b2c80df5b69")
	)
	(text "MEMs MIC: I2S\n(NESTED)"
		(exclude_from_sim no)
		(at 222.25 32.385 0)
		(effects
			(font
				(size 2.54 2.54)
				(thickness 0.508)
				(bold yes)
			)
		)
		(uuid "9306ce6e-810f-4474-9298-4320aa700cc2")
	)
	(text "(2)"
		(exclude_from_sim no)
		(at 43.815 46.99 0)
		(effects
			(font
				(size 1.27 1.27)
			)
		)
		(uuid "97341266-2fbe-43e9-a59b-76e36a80ef03")
	)
	(text "(4)"
		(exclude_from_sim no)
		(at 34.29 52.07 0)
		(effects
			(font
				(size 1.27 1.27)
			)
		)
		(uuid "9faa3c66-6979-4798-a6d7-4184b3ac40d6")
	)
	(text "(3)"
		(exclude_from_sim no)
		(at 118.745 141.605 0)
		(effects
			(font
				(size 1.27 1.27)
			)
		)
		(uuid "bb8c3fe3-4789-426a-b874-4f36656380ee")
	)
	(text "SENSOR: 8x8\n(NESTED)"
		(exclude_from_sim no)
		(at 223.52 113.03 0)
		(effects
			(font
				(size 2.54 2.54)
				(thickness 0.508)
				(bold yes)
			)
		)
		(uuid "f100cead-d147-45a6-97c9-bf8c5490b9f6")
	)
	(text "(4)"
		(exclude_from_sim no)
		(at 34.29 49.53 0)
		(effects
			(font
				(size 1.27 1.27)
			)
		)
		(uuid "febb77ef-d802-4c99-afea-81e8ea6c76f2")
	)
	(junction
		(at 41.91 64.77)
		(diameter 0)
		(color 0 0 0 0)
		(uuid "bb1948c3-126e-4c6b-a7a7-cb919e5d32b5")
	)
	(junction
		(at 207.645 53.34)
		(diameter 0)
		(color 0 0 0 0)
		(uuid "c136f0af-4093-4733-9537-4b96da243534")
	)
	(bus_entry
		(at 225.425 77.47)
		(size 2.54 2.54)
		(stroke
			(width 0)
			(type default)
		)
		(uuid "3267b9dd-b0cf-47e4-ab0e-a80ca41681f4")
	)
	(bus_entry
		(at 146.05 144.78)
		(size 2.54 2.54)
		(stroke
			(width 0)
			(type default)
		)
		(uuid "35e2a90b-0e47-46b3-bc31-1bca1b48684a")
	)
	(bus_entry
		(at 225.425 72.39)
		(size 2.54 2.54)
		(stroke
			(width 0)
			(type default)
		)
		(uuid "6378aed2-791b-498a-a298-de2cf798b273")
	)
	(bus_entry
		(at 146.05 142.24)
		(size 2.54 2.54)
		(stroke
			(width 0)
			(type default)
		)
		(uuid "a3481872-c90a-42c1-a6fd-680a5878c04d")
	)
	(bus_entry
		(at 225.425 74.93)
		(size 2.54 2.54)
		(stroke
			(width 0)
			(type default)
		)
		(uuid "b5358dc1-755a-4411-95c3-ea0b3a1e33d6")
	)
	(bus_entry
		(at 146.05 147.32)
		(size 2.54 2.54)
		(stroke
			(width 0)
			(type default)
		)
		(uuid "bc0d3840-2bca-4500-b3c6-fe136efb220b")
	)
	(wire
		(pts
			(xy 207.645 50.8) (xy 207.645 53.34)
		)
		(stroke
			(width 0)
			(type default)
		)
		(uuid "02180f13-04fa-4691-bb24-b45f6ef6bceb")
	)
	(bus
		(pts
			(xy 225.425 72.39) (xy 225.425 74.93)
		)
		(stroke
			(width 0)
			(type default)
		)
		(uuid "056beb68-a3e7-42b8-8b5d-057420089b17")
	)
	(wire
		(pts
			(xy 96.52 46.99) (xy 94.615 46.99)
		)
		(stroke
			(width 0)
			(type default)
		)
		(uuid "075f26f9-9722-4af9-9266-a29a530f50bc")
	)
	(wire
		(pts
			(xy 41.91 64.77) (xy 41.91 66.04)
		)
		(stroke
			(width 0)
			(type default)
		)
		(uuid "11e615e0-d085-46c4-96d9-8510eef872ad")
	)
	(wire
		(pts
			(xy 251.46 130.81) (xy 233.045 130.81)
		)
		(stroke
			(width 0)
			(type default)
		)
		(uuid "14aafa94-e7c3-4342-8b50-608bf194d1ce")
	)
	(wire
		(pts
			(xy 97.155 64.77) (xy 94.615 64.77)
		)
		(stroke
			(width 0)
			(type default)
		)
		(uuid "14d897bd-18de-44ad-92b2-2a252530d2df")
	)
	(wire
		(pts
			(xy 207.645 53.34) (xy 207.645 55.245)
		)
		(stroke
			(width 0)
			(type default)
		)
		(uuid "1a7c1bf2-bb3c-469a-a5cc-4f9d593be73d")
	)
	(wire
		(pts
			(xy 41.91 64.77) (xy 60.325 64.77)
		)
		(stroke
			(width 0)
			(type default)
		)
		(uuid "1a9420e2-bf3e-4e3b-b0ef-27ca04f67224")
	)
	(bus
		(pts
			(xy 146.05 141.605) (xy 144.78 141.605)
		)
		(stroke
			(width 0)
			(type default)
		)
		(uuid "38bf34f9-8b04-4b79-a33c-14c6e2abb737")
	)
	(wire
		(pts
			(xy 68.58 74.93) (xy 71.755 74.93)
		)
		(stroke
			(width 0)
			(type default)
		)
		(uuid "3a8b989a-3903-4307-9d9e-26ac77d6ffe7")
	)
	(wire
		(pts
			(xy 245.11 53.34) (xy 231.14 53.34)
		)
		(stroke
			(width 0)
			(type default)
		)
		(uuid "3dfc3338-cbcf-4ff4-b1bd-b89189a64002")
	)
	(wire
		(pts
			(xy 170.815 149.86) (xy 148.59 149.86)
		)
		(stroke
			(width 0)
			(type solid)
		)
		(uuid "4091bdcf-0fbe-4cb5-8d64-d33da795f3c0")
	)
	(wire
		(pts
			(xy 205.74 48.26) (xy 208.915 48.26)
		)
		(stroke
			(width 0)
			(type default)
		)
		(uuid "41a999a7-8633-48e5-aab0-c082e5643fd3")
	)
	(wire
		(pts
			(xy 71.755 72.39) (xy 71.755 74.93)
		)
		(stroke
			(width 0)
			(type default)
		)
		(uuid "469db9a8-e2fe-4f5e-a2fe-f1329f3619a6")
	)
	(bus
		(pts
			(xy 225.425 71.755) (xy 224.155 71.755)
		)
		(stroke
			(width 0)
			(type default)
		)
		(uuid "55a0e7bb-e59c-4ecf-840e-69cbdb4974f1")
	)
	(wire
		(pts
			(xy 107.95 130.175) (xy 89.535 130.175)
		)
		(stroke
			(width 0)
			(type default)
		)
		(uuid "55e0b8a8-5882-475b-909e-42110d6d0b40")
	)
	(wire
		(pts
			(xy 88.265 77.47) (xy 81.915 77.47)
		)
		(stroke
			(width 0)
			(type default)
		)
		(uuid "5775200e-ca50-41d7-a49f-f5cb2c397fc6")
	)
	(wire
		(pts
			(xy 245.11 80.01) (xy 227.965 80.01)
		)
		(stroke
			(width 0)
			(type solid)
		)
		(uuid "6187f660-6a2f-4f85-be7c-e0bf7e40f2ff")
	)
	(bus
		(pts
			(xy 146.05 141.605) (xy 146.05 142.24)
		)
		(stroke
			(width 0)
			(type default)
		)
		(uuid "63ec020c-5082-459d-9027-e0ae537f8603")
	)
	(wire
		(pts
			(xy 67.31 132.715) (xy 52.705 132.715)
		)
		(stroke
			(width 0)
			(type default)
		)
		(uuid "675b2e52-214d-4d62-b211-cdb7a56cf775")
	)
	(wire
		(pts
			(xy 170.815 147.32) (xy 148.59 147.32)
		)
		(stroke
			(width 0)
			(type solid)
		)
		(uuid "698d89f5-6b11-4751-ac0e-640d10ab8fa6")
	)
	(wire
		(pts
			(xy 245.11 48.26) (xy 231.14 48.26)
		)
		(stroke
			(width 0)
			(type default)
		)
		(uuid "69afae9b-a4f1-4cc3-8ed9-fee8b68a50ff")
	)
	(wire
		(pts
			(xy 207.645 53.34) (xy 208.915 53.34)
		)
		(stroke
			(width 0)
			(type default)
		)
		(uuid "6c2624c8-87c1-4723-951f-45220dafc15f")
	)
	(wire
		(pts
			(xy 52.07 46.99) (xy 60.325 46.99)
		)
		(stroke
			(width 0)
			(type default)
		)
		(uuid "752deb78-c78c-4806-8b41-90e92a82aa24")
	)
	(bus
		(pts
			(xy 146.05 142.24) (xy 146.05 144.78)
		)
		(stroke
			(width 0)
			(type default)
		)
		(uuid "797545a4-a01b-4c1d-bb00-41405d6696a5")
	)
	(wire
		(pts
			(xy 84.455 74.93) (xy 84.455 72.39)
		)
		(stroke
			(width 0)
			(type default)
		)
		(uuid "7a9d2989-d09a-45c4-92de-f3fe7de38924")
	)
	(bus
		(pts
			(xy 225.425 71.755) (xy 225.425 72.39)
		)
		(stroke
			(width 0)
			(type default)
		)
		(uuid "7ba73cb4-6043-4b8e-bb57-3728b2a56988")
	)
	(wire
		(pts
			(xy 245.11 50.8) (xy 231.14 50.8)
		)
		(stroke
			(width 0)
			(type default)
		)
		(uuid "7cf604e6-4966-4add-ba97-d1c3d8a46baa")
	)
	(bus
		(pts
			(xy 146.05 144.78) (xy 146.05 147.32)
		)
		(stroke
			(width 0)
			(type default)
		)
		(uuid "8140cf14-a2b7-4cad-8ed6-c96dd675d69e")
	)
	(wire
		(pts
			(xy 88.265 74.93) (xy 84.455 74.93)
		)
		(stroke
			(width 0)
			(type default)
		)
		(uuid "8da122e2-3e7a-488a-b53b-6ac3886fce00")
	)
	(wire
		(pts
			(xy 52.705 135.255) (xy 67.31 135.255)
		)
		(stroke
			(width 0)
			(type default)
		)
		(uuid "9d50c703-ac8d-4b37-b848-6b57b437f485")
	)
	(wire
		(pts
			(xy 90.805 135.255) (xy 90.805 137.16)
		)
		(stroke
			(width 0)
			(type default)
		)
		(uuid "a65dee4a-3a1c-4f67-949c-b1e63185f488")
	)
	(wire
		(pts
			(xy 41.91 54.61) (xy 41.91 64.77)
		)
		(stroke
			(width 0)
			(type default)
		)
		(uuid "a7014898-a68e-4052-9244-6b6d4448fa5f")
	)
	(wire
		(pts
			(xy 60.325 54.61) (xy 41.91 54.61)
		)
		(stroke
			(width 0)
			(type default)
		)
		(uuid "aa63c9c4-00ec-4671-bade-ec10344001b0")
	)
	(wire
		(pts
			(xy 68.58 77.47) (xy 74.295 77.47)
		)
		(stroke
			(width 0)
			(type default)
		)
		(uuid "aeaf9786-66d6-4e56-9483-3513bd6aec27")
	)
	(wire
		(pts
			(xy 234.315 135.89) (xy 233.045 135.89)
		)
		(stroke
			(width 0)
			(type default)
		)
		(uuid "b1b1d19d-6646-4965-b020-15017c7eab5a")
	)
	(wire
		(pts
			(xy 234.315 135.89) (xy 234.315 137.795)
		)
		(stroke
			(width 0)
			(type default)
		)
		(uuid "b7e679a1-f250-4a88-8246-0381599933fb")
	)
	(wire
		(pts
			(xy 76.835 72.39) (xy 76.835 74.295)
		)
		(stroke
			(width 0)
			(type default)
		)
		(uuid "b871b34f-2b4d-4b0a-830f-f3d2438a3748")
	)
	(wire
		(pts
			(xy 210.82 133.35) (xy 196.85 133.35)
		)
		(stroke
			(width 0)
			(type default)
		)
		(uuid "be8cd85c-b9ad-4fcc-b661-f14d58299a54")
	)
	(wire
		(pts
			(xy 74.295 72.39) (xy 74.295 77.47)
		)
		(stroke
			(width 0)
			(type default)
		)
		(uuid "bf17e070-ddac-4866-9345-2143791e4324")
	)
	(wire
		(pts
			(xy 170.815 144.78) (xy 148.59 144.78)
		)
		(stroke
			(width 0)
			(type solid)
		)
		(uuid "c324b2d6-7190-4d77-893a-1a1d8b1e4131")
	)
	(wire
		(pts
			(xy 97.155 66.04) (xy 97.155 64.77)
		)
		(stroke
			(width 0)
			(type default)
		)
		(uuid "c45d0645-bed8-4407-9e29-d5428e4e8b76")
	)
	(wire
		(pts
			(xy 196.85 135.89) (xy 210.82 135.89)
		)
		(stroke
			(width 0)
			(type default)
		)
		(uuid "c49dc723-70f2-4315-ac89-022f8af9791c")
	)
	(wire
		(pts
			(xy 52.705 130.175) (xy 67.31 130.175)
		)
		(stroke
			(width 0)
			(type default)
		)
		(uuid "c59e2647-ad07-4ca7-9bde-062b19e50081")
	)
	(wire
		(pts
			(xy 245.11 77.47) (xy 227.965 77.47)
		)
		(stroke
			(width 0)
			(type solid)
		)
		(uuid "c8aeb36a-93f6-411d-975d-c679ae158165")
	)
	(wire
		(pts
			(xy 52.07 49.53) (xy 60.325 49.53)
		)
		(stroke
			(width 0)
			(type default)
		)
		(uuid "cd3e15d6-0858-496d-bf7e-058919c8d810")
	)
	(wire
		(pts
			(xy 90.805 135.255) (xy 89.535 135.255)
		)
		(stroke
			(width 0)
			(type default)
		)
		(uuid "dfa86477-bab3-4fa3-aca6-677aa06cc9e9")
	)
	(wire
		(pts
			(xy 245.11 74.93) (xy 227.965 74.93)
		)
		(stroke
			(width 0)
			(type solid)
		)
		(uuid "ea7ee27f-91fb-4b8f-a0cd-023db0a6e907")
	)
	(wire
		(pts
			(xy 81.915 72.39) (xy 81.915 77.47)
		)
		(stroke
			(width 0)
			(type default)
		)
		(uuid "ed1b5a73-3d5a-4c5b-a5a9-5926c1f19cf5")
	)
	(wire
		(pts
			(xy 196.85 130.81) (xy 210.82 130.81)
		)
		(stroke
			(width 0)
			(type default)
		)
		(uuid "ee6ed731-53cc-4add-80a2-83e38743742d")
	)
	(wire
		(pts
			(xy 52.07 52.07) (xy 60.325 52.07)
		)
		(stroke
			(width 0)
			(type default)
		)
		(uuid "f26ae7a8-d4bc-4fc6-8826-55a85945fccc")
	)
	(wire
		(pts
			(xy 57.785 62.23) (xy 60.325 62.23)
		)
		(stroke
			(width 0)
			(type default)
		)
		(uuid "f30cf668-a135-4b95-9c1b-d9742f76f338")
	)
	(bus
		(pts
			(xy 225.425 74.93) (xy 225.425 77.47)
		)
		(stroke
			(width 0)
			(type default)
		)
		(uuid "f6c43ae2-e904-4749-8a06-b19da11ba48e")
	)
	(wire
		(pts
			(xy 59.055 57.15) (xy 60.325 57.15)
		)
		(stroke
			(width 0)
			(type default)
		)
		(uuid "f8eedd5f-c467-4245-b56e-dcbfc4b2fec8")
	)
	(wire
		(pts
			(xy 208.915 50.8) (xy 207.645 50.8)
		)
		(stroke
			(width 0)
			(type default)
		)
		(uuid "ff5b385b-5c26-4870-8f2b-ad2053aca5bf")
	)
	(table
		(column_count 1)
		(border
			(external yes)
			(header yes)
			(stroke
				(width 0)
				(type solid)
			)
		)
		(separators
			(rows yes)
			(cols yes)
			(stroke
				(width 0)
				(type solid)
			)
		)
		(column_widths 9.525)
		(row_heights 3.81)
		(uuid "29768ada-33cf-4d96-b706-05d063c19e0c")
		(cells
			(table_cell "Trace Width"
				(exclude_from_sim no)
				(at 36.195 176.53 0)
				(size 9.525 3.81)
				(margins 0.9525 0.9525 0.9525 0.9525)
				(span 1 1)
				(fill
					(type none)
				)
				(effects
					(font
						(size 1.016 1.016)
					)
				)
				(uuid "e9655908-921a-42de-9566-85230fcc039f")
			)
		)
	)
	(table
		(column_count 1)
		(border
			(external yes)
			(header yes)
			(stroke
				(width 0)
				(type solid)
			)
		)
		(separators
			(rows yes)
			(cols yes)
			(stroke
				(width 0)
				(type solid)
			)
		)
		(column_widths 36.83)
		(row_heights 3.175)
		(uuid "32fc72ae-2d23-412d-ab1d-7a6ad6962225")
		(cells
			(table_cell "Differential Pairs"
				(exclude_from_sim no)
				(at 18.415 173.355 0)
				(size 36.83 3.175)
				(margins 0.9525 0.9525 0.9525 0.9525)
				(span 1 1)
				(fill
					(type none)
				)
				(effects
					(font
						(size 1.27 1.27)
					)
				)
				(uuid "b893ff57-3555-47fe-b3a7-1fcacc397e1f")
			)
		)
	)
	(table
		(column_count 1)
		(border
			(external yes)
			(header yes)
			(stroke
				(width 0)
				(type solid)
			)
		)
		(separators
			(rows yes)
			(cols yes)
			(stroke
				(width 0)
				(type solid)
			)
		)
		(column_widths 8.255)
		(row_heights 3.81)
		(uuid "419660e2-4f10-4a7b-9539-54e504bfef64")
		(cells
			(table_cell "Symbol"
				(exclude_from_sim no)
				(at 18.415 176.53 0)
				(size 8.255 3.81)
				(margins 0.9525 0.9525 0.9525 0.9525)
				(span 1 1)
				(fill
					(type none)
				)
				(effects
					(font
						(size 1.27 1.27)
					)
				)
				(uuid "35aadae6-1714-4762-8b46-549a30007c84")
			)
		)
	)
	(table
		(column_count 1)
		(border
			(external yes)
			(header yes)
			(stroke
				(width 0)
				(type solid)
			)
		)
		(separators
			(rows yes)
			(cols yes)
			(stroke
				(width 0)
				(type solid)
			)
		)
		(column_widths 9.525)
		(row_heights 3.81 3.81)
		(uuid "42d2d44f-9994-44c7-a1bb-4dfcb44889f1")
		(cells
			(table_cell "0.2mm"
				(exclude_from_sim no)
				(at 45.72 180.34 0)
				(size 9.525 3.81)
				(margins 0.9525 0.9525 0.9525 0.9525)
				(span 1 1)
				(fill
					(type none)
				)
				(effects
					(font
						(size 1.27 1.27)
					)
				)
				(uuid "e9655908-921a-42de-9566-85230fcc039f")
			)
			(table_cell "0.16mm"
				(exclude_from_sim no)
				(at 45.72 184.15 0)
				(size 9.525 3.81)
				(margins 0.9525 0.9525 0.9525 0.9525)
				(span 1 1)
				(fill
					(type none)
				)
				(effects
					(font
						(size 1.27 1.27)
					)
				)
				(uuid "1bf7a051-5ff0-4650-9fc8-04a2a38bf5d1")
			)
		)
	)
	(table
		(column_count 1)
		(border
			(external yes)
			(header yes)
			(stroke
				(width 0)
				(type solid)
			)
		)
		(separators
			(rows yes)
			(cols yes)
			(stroke
				(width 0)
				(type solid)
			)
		)
		(column_widths 9.525)
		(row_heights 3.81 3.81)
		(uuid "438941e3-6f21-47ff-a8be-d80b76b8f0dd")
		(cells
			(table_cell "100R"
				(exclude_from_sim no)
				(at 26.67 180.34 0)
				(size 9.525 3.81)
				(margins 0.9525 0.9525 0.9525 0.9525)
				(span 1 1)
				(fill
					(type none)
				)
				(effects
					(font
						(size 1.27 1.27)
					)
				)
				(uuid "e9655908-921a-42de-9566-85230fcc039f")
			)
			(table_cell "90R"
				(exclude_from_sim no)
				(at 26.67 184.15 0)
				(size 9.525 3.81)
				(margins 0.9525 0.9525 0.9525 0.9525)
				(span 1 1)
				(fill
					(type none)
				)
				(effects
					(font
						(size 1.27 1.27)
					)
				)
				(uuid "1bf7a051-5ff0-4650-9fc8-04a2a38bf5d1")
			)
		)
	)
	(table
		(column_count 1)
		(border
			(external yes)
			(header yes)
			(stroke
				(width 0)
				(type solid)
			)
		)
		(separators
			(rows yes)
			(cols yes)
			(stroke
				(width 0)
				(type solid)
			)
		)
		(column_widths 9.525)
		(row_heights 3.81)
		(uuid "51b8ee58-29e7-41c2-a7e1-d717ffbc029b")
		(cells
			(table_cell "Z"
				(exclude_from_sim no)
				(at 26.67 176.53 0)
				(size 9.525 3.81)
				(margins 0.9525 0.9525 0.9525 0.9525)
				(span 1 1)
				(fill
					(type none)
				)
				(effects
					(font
						(size 1.27 1.27)
					)
				)
				(uuid "e9655908-921a-42de-9566-85230fcc039f")
			)
		)
	)
	(table
		(column_count 1)
		(border
			(external yes)
			(header yes)
			(stroke
				(width 0)
				(type solid)
			)
		)
		(separators
			(rows yes)
			(cols yes)
			(stroke
				(width 0)
				(type solid)
			)
		)
		(column_widths 9.525)
		(row_heights 3.81 3.81)
		(uuid "865ddcfb-39b4-4982-bdae-a267bda49472")
		(cells
			(table_cell "0.12mm"
				(exclude_from_sim no)
				(at 36.195 180.34 0)
				(size 9.525 3.81)
				(margins 0.9525 0.9525 0.9525 0.9525)
				(span 1 1)
				(fill
					(type none)
				)
				(effects
					(font
						(size 1.27 1.27)
					)
				)
				(uuid "e9655908-921a-42de-9566-85230fcc039f")
			)
			(table_cell "0.14mm"
				(exclude_from_sim no)
				(at 36.195 184.15 0)
				(size 9.525 3.81)
				(margins 0.9525 0.9525 0.9525 0.9525)
				(span 1 1)
				(fill
					(type none)
				)
				(effects
					(font
						(size 1.27 1.27)
					)
				)
				(uuid "1bf7a051-5ff0-4650-9fc8-04a2a38bf5d1")
			)
		)
	)
	(table
		(column_count 1)
		(border
			(external yes)
			(header yes)
			(stroke
				(width 0)
				(type solid)
			)
		)
		(separators
			(rows yes)
			(cols yes)
			(stroke
				(width 0)
				(type solid)
			)
		)
		(column_widths 9.525)
		(row_heights 3.81)
		(uuid "8fedb46d-d246-4b02-a87f-2709bf955aa9")
		(cells
			(table_cell "Spacing"
				(exclude_from_sim no)
				(at 45.72 176.53 0)
				(size 9.525 3.81)
				(margins 0.9525 0.9525 0.9525 0.9525)
				(span 1 1)
				(fill
					(type none)
				)
				(effects
					(font
						(size 1.27 1.27)
					)
				)
				(uuid "e9655908-921a-42de-9566-85230fcc039f")
			)
		)
	)
	(table
		(column_count 1)
		(border
			(external yes)
			(header yes)
			(stroke
				(width 0)
				(type solid)
			)
		)
		(separators
			(rows yes)
			(cols yes)
			(stroke
				(width 0)
				(type solid)
			)
		)
		(column_widths 9.525)
		(row_heights 3.81)
		(uuid "a153ac0a-30ee-40a1-9a71-83bf0f70277b")
		(cells
			(table_cell "0.15mm"
				(exclude_from_sim no)
				(at 45.72 187.96 0)
				(size 9.525 3.81)
				(margins 0.9525 0.9525 0.9525 0.9525)
				(span 1 1)
				(fill
					(type none)
				)
				(effects
					(font
						(size 1.27 1.27)
					)
				)
				(uuid "34ba587f-71ed-4558-ab32-59b5cdb99256")
			)
		)
	)
	(table
		(column_count 1)
		(border
			(external yes)
			(header yes)
			(stroke
				(width 0)
				(type solid)
			)
		)
		(separators
			(rows yes)
			(cols yes)
			(stroke
				(width 0)
				(type solid)
			)
		)
		(column_widths 9.525)
		(row_heights 3.81)
		(uuid "c7391867-e2b6-40cd-9e0d-435641889abb")
		(cells
			(table_cell "50R"
				(exclude_from_sim no)
				(at 26.67 187.96 0)
				(size 9.525 3.81)
				(margins 0.9525 0.9525 0.9525 0.9525)
				(span 1 1)
				(fill
					(type none)
				)
				(effects
					(font
						(size 1.27 1.27)
					)
				)
				(uuid "34ba587f-71ed-4558-ab32-59b5cdb99256")
			)
		)
	)
	(table
		(column_count 1)
		(border
			(external yes)
			(header yes)
			(stroke
				(width 0)
				(type solid)
			)
		)
		(separators
			(rows yes)
			(cols yes)
			(stroke
				(width 0)
				(type solid)
			)
		)
		(column_widths 8.255)
		(row_heights 3.81 3.81 3.81)
		(uuid "d8fae4ef-4274-4852-9e80-0c5b91af909b")
		(cells
			(table_cell ""
				(exclude_from_sim no)
				(at 18.415 180.34 0)
				(size 8.255 3.81)
				(margins 0.9525 0.9525 0.9525 0.9525)
				(span 1 1)
				(fill
					(type none)
				)
				(effects
					(font
						(size 1.27 1.27)
					)
					(justify left top)
				)
				(uuid "35aadae6-1714-4762-8b46-549a30007c84")
			)
			(table_cell ""
				(exclude_from_sim no)
				(at 18.415 184.15 0)
				(size 8.255 3.81)
				(margins 0.9525 0.9525 0.9525 0.9525)
				(span 1 1)
				(fill
					(type none)
				)
				(effects
					(font
						(size 1.27 1.27)
					)
					(justify left top)
				)
				(uuid "7fb753a0-6916-4221-810b-89422c09044b")
			)
			(table_cell ""
				(exclude_from_sim no)
				(at 18.415 187.96 0)
				(size 8.255 3.81)
				(margins 0.9525 0.9525 0.9525 0.9525)
				(span 1 1)
				(fill
					(type none)
				)
				(effects
					(font
						(size 1.27 1.27)
					)
					(justify left top)
				)
				(uuid "74fa1771-b591-4887-8878-fbbbb22ef272")
			)
		)
	)
	(table
		(column_count 1)
		(border
			(external yes)
			(header yes)
			(stroke
				(width 0)
				(type solid)
			)
		)
		(separators
			(rows yes)
			(cols yes)
			(stroke
				(width 0)
				(type solid)
			)
		)
		(column_widths 9.525)
		(row_heights 3.81)
		(uuid "f4270d22-1729-4a07-b019-d6bbddc747cc")
		(cells
			(table_cell "0.42mm"
				(exclude_from_sim no)
				(at 36.195 187.96 0)
				(size 9.525 3.81)
				(margins 0.9525 0.9525 0.9525 0.9525)
				(span 1 1)
				(fill
					(type none)
				)
				(effects
					(font
						(size 1.27 1.27)
					)
				)
				(uuid "34ba587f-71ed-4558-ab32-59b5cdb99256")
			)
		)
	)
	(label "SENSOR_I2C-2.SCL"
		(at 52.705 132.715 0)
		(effects
			(font
				(size 1.016 1.016)
			)
			(justify left bottom)
		)
		(uuid "0cd5c2e4-6cd6-4f36-8bbd-b62273a5d905")
	)
	(label "MIC_I2S-0.SCK"
		(at 245.11 80.01 180)
		(effects
			(font
				(size 1.27 1.27)
			)
			(justify right bottom)
		)
		(uuid "13edee0e-bd75-4e1a-ac16-5bf71e394289")
	)
	(label "SENSOR_I2C-2.SDA"
		(at 52.705 135.255 0)
		(effects
			(font
				(size 1.016 1.016)
			)
			(justify left bottom)
		)
		(uuid "158e7412-0be8-472f-9e9c-42e0758d55c9")
	)
	(label "MIC_I2S-0.SCK"
		(at 245.11 53.34 180)
		(effects
			(font
				(size 1.27 1.27)
			)
			(justify right bottom)
		)
		(uuid "2da68362-d4c7-453a-bdef-a10add884ecd")
	)
	(label "SENSOR_I2C-2.SDA"
		(at 196.85 135.89 0)
		(effects
			(font
				(size 1.016 1.016)
			)
			(justify left bottom)
		)
		(uuid "454deb0e-d7e1-4625-b082-eeca04e7bf1c")
	)
	(label "MIC_I2S-0.WS"
		(at 245.11 50.8 180)
		(effects
			(font
				(size 1.27 1.27)
			)
			(justify right bottom)
		)
		(uuid "8a8c0c82-89af-4636-922e-dc9d46d1ccb1")
	)
	(label "SENSOR_I2C-2.SDA"
		(at 170.815 144.78 180)
		(effects
			(font
				(size 1.27 1.27)
			)
			(justify right bottom)
		)
		(uuid "96c913fb-bf51-4f1d-82da-6d6d3004af5b")
	)
	(label "SENSOR_I2C-2.INT"
		(at 107.95 130.175 180)
		(effects
			(font
				(size 1.27 1.27)
			)
			(justify right bottom)
		)
		(uuid "a2a1215f-e587-4693-9664-02f8be988c69")
	)
	(label "MIC_I2S-0.WS"
		(at 245.11 77.47 180)
		(effects
			(font
				(size 1.27 1.27)
			)
			(justify right bottom)
		)
		(uuid "ac8671ad-8316-412c-9cca-e1ac37961968")
	)
	(label "MIC_I2S-0.SD"
		(at 245.11 48.26 180)
		(effects
			(font
				(size 1.27 1.27)
			)
			(justify right bottom)
		)
		(uuid "af7e6cc6-ad1d-48fb-b026-9de3c3327c3e")
	)
	(label "SENSOR_I2C-2.SCL"
		(at 196.85 133.35 0)
		(effects
			(font
				(size 1.016 1.016)
			)
			(justify left bottom)
		)
		(uuid "b8897a9e-49a9-4f4f-bf32-c4afe1a403c5")
	)
	(label "SENSOR_I2C-2.SCL"
		(at 170.815 147.32 180)
		(effects
			(font
				(size 1.27 1.27)
			)
			(justify right bottom)
		)
		(uuid "ced16a37-2cb6-4993-8426-9b865882f61b")
	)
	(label "SENSOR_I2C-2.INT"
		(at 251.46 130.81 180)
		(effects
			(font
				(size 1.27 1.27)
			)
			(justify right bottom)
		)
		(uuid "d83ed8e5-d4b8-4f55-9047-edb84df25ed2")
	)
	(label "SENSOR_I2C-2.INT"
		(at 170.815 149.86 180)
		(effects
			(font
				(size 1.27 1.27)
			)
			(justify right bottom)
		)
		(uuid "e7755d7f-c731-45cc-9150-a969a194b433")
	)
	(label "MIC_I2S-0.SD"
		(at 245.11 74.93 180)
		(effects
			(font
				(size 1.27 1.27)
			)
			(justify right bottom)
		)
		(uuid "f78f7e3d-c2f3-4b5d-a891-29754ec02d50")
	)
	(hierarchical_label "DEBUG_BOOT"
		(shape input)
		(at 59.055 57.15 180)
		(effects
			(font
				(size 1.27 1.27)
			)
			(justify right)
		)
		(uuid "0daf874b-91aa-4b98-8328-efa737f069bf")
	)
	(hierarchical_label "DEBUG_SWD"
		(shape input)
		(at 88.265 77.47 0)
		(effects
			(font
				(size 1.27 1.27)
			)
			(justify left)
		)
		(uuid "13103f2b-42ad-459f-9968-db8941eb6b9a")
	)
	(hierarchical_label "+3v3"
		(shape input)
		(at 96.52 46.99 0)
		(effects
			(font
				(size 1.27 1.27)
			)
			(justify left)
		)
		(uuid "171dcbaf-1385-460d-a626-35fc2c0163cb")
	)
	(hierarchical_label "DEBUG_USB2_N"
		(shape bidirectional)
		(at 52.07 49.53 180)
		(effects
			(font
				(size 1.27 1.27)
			)
			(justify right)
		)
		(uuid "1c051f6e-f4f0-4eb2-90ec-9a76951a87de")
	)
	(hierarchical_label "+3v3"
		(shape input)
		(at 52.705 130.175 180)
		(effects
			(font
				(size 1.27 1.27)
			)
			(justify right)
		)
		(uuid "31209205-d23e-42ef-a310-6888e3d39b20")
	)
	(hierarchical_label "DEBUG_RST"
		(shape input)
		(at 57.785 62.23 180)
		(effects
			(font
				(size 1.27 1.27)
			)
			(justify right)
		)
		(uuid "37cd856c-e277-4120-9a8b-1b33f2d4c942")
	)
	(hierarchical_label "DEBUG_RX"
		(shape input)
		(at 68.58 77.47 180)
		(effects
			(font
				(size 1.27 1.27)
			)
			(justify right)
		)
		(uuid "46c2bb2c-e638-4215-ae0e-401145f6fdba")
	)
	(hierarchical_label "DEBUG_USB2_P"
		(shape bidirectional)
		(at 52.07 52.07 180)
		(effects
			(font
				(size 1.27 1.27)
			)
			(justify right)
		)
		(uuid "4b4ebd8f-cd16-443f-868d-2e2d78f0affa")
	)
	(hierarchical_label "MIC_I2S-0{I2S}"
		(shape bidirectional)
		(at 224.155 71.755 180)
		(effects
			(font
				(size 1.27 1.27)
			)
			(justify right)
		)
		(uuid "90fc19f4-4727-48e2-80dd-156d1578ebad")
	)
	(hierarchical_label "SENSOR_I2C-2{I2C-2}"
		(shape input)
		(at 144.78 141.605 180)
		(effects
			(font
				(size 1.27 1.27)
			)
			(justify right)
		)
		(uuid "9236d027-477c-4043-94b5-b90fd8e8223d")
	)
	(hierarchical_label "DEBUG_TX"
		(shape input)
		(at 68.58 74.93 180)
		(effects
			(font
				(size 1.27 1.27)
			)
			(justify right)
		)
		(uuid "ab1d4f61-df57-4c09-a803-fcdc3cb2d161")
	)
	(hierarchical_label "+3v3"
		(shape input)
		(at 205.74 48.26 180)
		(effects
			(font
				(size 1.27 1.27)
			)
			(justify right)
		)
		(uuid "b7bc317e-3577-44be-af94-37ba08590fa4")
	)
	(hierarchical_label "+3v3"
		(shape input)
		(at 196.85 130.81 180)
		(effects
			(font
				(size 1.27 1.27)
			)
			(justify right)
		)
		(uuid "df63fa5d-593f-4892-9a1f-5dac0d444989")
	)
	(hierarchical_label "DEBUG_SWCLK"
		(shape input)
		(at 88.265 74.93 0)
		(effects
			(font
				(size 1.27 1.27)
			)
			(justify left)
		)
		(uuid "e351b8a7-ff8d-47ad-bb40-559420f6d8b1")
	)
	(hierarchical_label "+3v3"
		(shape input)
		(at 52.07 46.99 180)
		(effects
			(font
				(size 1.27 1.27)
			)
			(justify right)
		)
		(uuid "ee9bcb1f-28f2-41d1-aa18-fef7f864adf8")
	)
	(symbol
		(lib_id "Molecule_CDT:CP_Sensor_8x8")
		(at 226.06 148.59 0)
		(unit 1)
		(body_style 1)
		(exclude_from_sim no)
		(in_bom yes)
		(on_board yes)
		(in_pos_files yes)
		(dnp no)
		(uuid "09ba0cec-f61a-4168-9548-d87370ea3576")
		(property "Reference" "N4"
			(at 221.615 123.825 0)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(property "Value" "CP_Sensor_8x8"
			(at 221.615 126.365 0)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(property "Footprint" "CalebsLib_CDT:CP_Sensor_8x8"
			(at 221.9325 123.19 0)
			(hide yes)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(property "Datasheet" ""
			(at 226.06 148.59 0)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(property "Description" "Control Panel Layout for 8x8 Sensor Standardized, 3v3 input"
			(at 221.9325 125.73 0)
			(hide yes)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(pin "8"
			(uuid "dfc7a04d-0f30-4660-9b6d-21ad80536f35")
		)
		(pin "2"
			(uuid "16db47f6-5f49-4d56-9665-35d5280697cb")
		)
		(pin "3"
			(uuid "411058f1-6984-45dc-89ef-cb23622f3fda")
		)
		(pin "7"
			(uuid "9c2e977d-98d3-4132-85c1-3f559b1e73bd")
		)
		(pin "4"
			(uuid "b7fe9a84-33e4-44c0-8980-73bd17a1b817")
		)
		(pin "1"
			(uuid "12380d80-1fd6-476d-ae19-6a588c83774e")
		)
		(pin "5"
			(uuid "6c645f17-d320-4b0c-9014-880e42f1426a")
		)
		(pin "6"
			(uuid "f0f80168-7876-4472-bf68-e782a9d5756b")
		)
		(pin "9"
			(uuid "dc836f64-f54e-4885-a24b-1e2e0472125f")
		)
		(instances
			(project "control-panel_workcell_v2.0.1"
				(path "/6e80b007-9b8d-4972-8432-d741714df95d/97ad71f5-e402-453d-b6f9-22316ef3ac12"
					(reference "N4")
					(unit 1)
				)
			)
		)
	)
	(symbol
		(lib_id "Molecule_CDT:Carrier_I2S")
		(at 224.155 66.04 0)
		(unit 1)
		(body_style 1)
		(exclude_from_sim no)
		(in_bom yes)
		(on_board yes)
		(in_pos_files yes)
		(dnp no)
		(uuid "1318e985-bfbc-43bc-b3f5-5c2eac5640ae")
		(property "Reference" "N3"
			(at 220.345 41.275 0)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(property "Value" "Carrier_I2S"
			(at 220.345 43.18 0)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(property "Footprint" "CalebsLib_CDT:Carrier_I2S"
			(at 220.0275 41.275 0)
			(hide yes)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(property "Datasheet" ""
			(at 224.155 66.04 0)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(property "Description" "MEMs I2S Microphone Carrier"
			(at 220.0275 43.815 0)
			(hide yes)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(pin "6"
			(uuid "8818d857-6f43-4a23-ba71-01a1a6314136")
		)
		(pin "1"
			(uuid "2750d730-765c-432e-a62d-9623b7a8b738")
		)
		(pin "2"
			(uuid "e60dae33-1990-48c6-aa65-6e1bf67b553e")
		)
		(pin "3"
			(uuid "b21cf3d0-12ee-46b1-8885-c9fe853f9191")
		)
		(pin "4"
			(uuid "967a1184-eaf8-4f15-b1b7-8c9898e2aba6")
		)
		(pin "8"
			(uuid "184eb37b-9e18-4057-b31b-025cbbfa64a4")
		)
		(pin "5"
			(uuid "4c0861b2-84b4-4da3-bafd-8a0a7fb7f5f6")
		)
		(pin "7"
			(uuid "8f5b6dac-2804-46de-a4a3-3cab2f6d4b6f")
		)
		(instances
			(project "control-panel_workcell_v2.0.1"
				(path "/6e80b007-9b8d-4972-8432-d741714df95d/97ad71f5-e402-453d-b6f9-22316ef3ac12"
					(reference "N3")
					(unit 1)
				)
			)
		)
	)
	(symbol
		(lib_id "CalebsLibrary:LOGO_DP_ORG")
		(at 21.59 178.435 0)
		(mirror y)
		(unit 1)
		(body_style 1)
		(exclude_from_sim no)
		(in_bom no)
		(on_board no)
		(in_pos_files yes)
		(dnp no)
		(fields_autoplaced yes)
		(uuid "31dffed9-4b00-4b13-be03-eb2132be1f95")
		(property "Reference" "#LOGO54"
			(at 22.352 176.53 0)
			(hide yes)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(property "Value" ""
			(at 22.352 179.07 0)
			(hide yes)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(property "Footprint" ""
			(at 21.59 178.435 0)
			(hide yes)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(property "Datasheet" ""
			(at 21.59 178.435 0)
			(hide yes)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(property "Description" ""
			(at 21.59 178.435 0)
			(hide yes)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(instances
			(project "control-panel_workcell_v2.0.1"
				(path "/6e80b007-9b8d-4972-8432-d741714df95d/97ad71f5-e402-453d-b6f9-22316ef3ac12"
					(reference "#LOGO54")
					(unit 1)
				)
			)
		)
	)
	(symbol
		(lib_id "power:GND")
		(at 97.155 66.04 0)
		(unit 1)
		(body_style 1)
		(exclude_from_sim no)
		(in_bom yes)
		(on_board yes)
		(in_pos_files yes)
		(dnp no)
		(fields_autoplaced yes)
		(uuid "7af06896-4bd8-4aff-bc94-0aad5e63012f")
		(property "Reference" "#PWR0115"
			(at 97.155 72.39 0)
			(hide yes)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(property "Value" "GND"
			(at 97.155 70.485 0)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(property "Footprint" ""
			(at 97.155 66.04 0)
			(hide yes)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(property "Datasheet" ""
			(at 97.155 66.04 0)
			(hide yes)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(property "Description" "Power symbol creates a global label with name \"GND\" , ground"
			(at 97.155 66.04 0)
			(hide yes)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(pin "1"
			(uuid "495c2098-80ae-4018-b91f-17f448c54e6f")
		)
		(instances
			(project "control-panel_workcell_v2.0.1"
				(path "/6e80b007-9b8d-4972-8432-d741714df95d/97ad71f5-e402-453d-b6f9-22316ef3ac12"
					(reference "#PWR0115")
					(unit 1)
				)
			)
		)
	)
	(symbol
		(lib_id "CalebsLibrary:LOGO_DP_PURP")
		(at 21.59 186.055 0)
		(mirror y)
		(unit 1)
		(body_style 1)
		(exclude_from_sim no)
		(in_bom no)
		(on_board no)
		(in_pos_files yes)
		(dnp no)
		(uuid "a86ef013-3488-4749-9763-f933311dd729")
		(property "Reference" "#LOGO56"
			(at 22.352 184.15 0)
			(hide yes)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(property "Value" ""
			(at 22.352 186.69 0)
			(hide yes)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(property "Footprint" ""
			(at 21.59 186.055 0)
			(hide yes)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(property "Datasheet" ""
			(at 21.59 186.055 0)
			(hide yes)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(property "Description" ""
			(at 21.59 186.055 0)
			(hide yes)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(instances
			(project "control-panel_workcell_v2.0.1"
				(path "/6e80b007-9b8d-4972-8432-d741714df95d/97ad71f5-e402-453d-b6f9-22316ef3ac12"
					(reference "#LOGO56")
					(unit 1)
				)
			)
		)
	)
	(symbol
		(lib_id "CalebsLibrary:DIF_PAIR_LOGO")
		(at 58.42 46.99 0)
		(mirror y)
		(unit 1)
		(body_style 1)
		(exclude_from_sim no)
		(in_bom no)
		(on_board no)
		(in_pos_files yes)
		(dnp no)
		(uuid "a9581f0d-e742-4875-a492-5a0b2092aea8")
		(property "Reference" "#LOGO57"
			(at 59.182 45.085 0)
			(hide yes)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(property "Value" ""
			(at 59.182 47.625 0)
			(hide yes)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(property "Footprint" ""
			(at 58.42 46.99 0)
			(hide yes)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(property "Datasheet" ""
			(at 58.42 46.99 0)
			(hide yes)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(property "Description" ""
			(at 58.42 46.99 0)
			(hide yes)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(instances
			(project "control-panel_workcell_v2.0.1"
				(path "/6e80b007-9b8d-4972-8432-d741714df95d/97ad71f5-e402-453d-b6f9-22316ef3ac12"
					(reference "#LOGO57")
					(unit 1)
				)
			)
		)
	)
	(symbol
		(lib_id "power:GND")
		(at 41.91 66.04 0)
		(unit 1)
		(body_style 1)
		(exclude_from_sim no)
		(in_bom yes)
		(on_board yes)
		(in_pos_files yes)
		(dnp no)
		(fields_autoplaced yes)
		(uuid "b7cafd91-70c4-44d7-949d-09eb00b55acd")
		(property "Reference" "#PWR0112"
			(at 41.91 72.39 0)
			(hide yes)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(property "Value" "GND"
			(at 41.91 70.485 0)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(property "Footprint" ""
			(at 41.91 66.04 0)
			(hide yes)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(property "Datasheet" ""
			(at 41.91 66.04 0)
			(hide yes)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(property "Description" "Power symbol creates a global label with name \"GND\" , ground"
			(at 41.91 66.04 0)
			(hide yes)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(pin "1"
			(uuid "602eba6d-77d1-4e27-9fd2-2a4a52d0ba13")
		)
		(instances
			(project "control-panel_workcell_v2.0.1"
				(path "/6e80b007-9b8d-4972-8432-d741714df95d/97ad71f5-e402-453d-b6f9-22316ef3ac12"
					(reference "#PWR0112")
					(unit 1)
				)
			)
		)
	)
	(symbol
		(lib_id "power:GND")
		(at 90.805 137.16 0)
		(mirror y)
		(unit 1)
		(body_style 1)
		(exclude_from_sim no)
		(in_bom yes)
		(on_board yes)
		(in_pos_files yes)
		(dnp no)
		(fields_autoplaced yes)
		(uuid "d6d60e09-aef0-4150-b0b1-a808abf31f02")
		(property "Reference" "#PWR0114"
			(at 90.805 143.51 0)
			(hide yes)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(property "Value" "GND"
			(at 90.805 141.605 0)
			(hide yes)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(property "Footprint" ""
			(at 90.805 137.16 0)
			(hide yes)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(property "Datasheet" ""
			(at 90.805 137.16 0)
			(hide yes)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(property "Description" "Power symbol creates a global label with name \"GND\" , ground"
			(at 90.805 137.16 0)
			(hide yes)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(pin "1"
			(uuid "3c351f4b-64c8-4292-ac01-6989ec13096b")
		)
		(instances
			(project "control-panel_workcell_v2.0.1"
				(path "/6e80b007-9b8d-4972-8432-d741714df95d/97ad71f5-e402-453d-b6f9-22316ef3ac12"
					(reference "#PWR0114")
					(unit 1)
				)
			)
		)
	)
	(symbol
		(lib_id "power:GND")
		(at 207.645 55.245 0)
		(unit 1)
		(body_style 1)
		(exclude_from_sim no)
		(in_bom yes)
		(on_board yes)
		(in_pos_files yes)
		(dnp no)
		(fields_autoplaced yes)
		(uuid "e63d8845-bbcb-4d26-b750-8b26135402e7")
		(property "Reference" "#PWR0116"
			(at 207.645 61.595 0)
			(hide yes)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(property "Value" "GND"
			(at 207.645 59.69 0)
			(hide yes)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(property "Footprint" ""
			(at 207.645 55.245 0)
			(hide yes)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(property "Datasheet" ""
			(at 207.645 55.245 0)
			(hide yes)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(property "Description" "Power symbol creates a global label with name \"GND\" , ground"
			(at 207.645 55.245 0)
			(hide yes)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(pin "1"
			(uuid "efd1194d-6752-4528-801a-7061c427ab5f")
		)
		(instances
			(project "control-panel_workcell_v2.0.1"
				(path "/6e80b007-9b8d-4972-8432-d741714df95d/97ad71f5-e402-453d-b6f9-22316ef3ac12"
					(reference "#PWR0116")
					(unit 1)
				)
			)
		)
	)
	(symbol
		(lib_id "power:GND")
		(at 76.835 74.295 0)
		(unit 1)
		(body_style 1)
		(exclude_from_sim no)
		(in_bom yes)
		(on_board yes)
		(in_pos_files yes)
		(dnp no)
		(fields_autoplaced yes)
		(uuid "e92668c8-5f28-477d-9ee2-f28af821de5f")
		(property "Reference" "#PWR0113"
			(at 76.835 80.645 0)
			(hide yes)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(property "Value" "GND"
			(at 76.835 78.74 0)
			(hide yes)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(property "Footprint" ""
			(at 76.835 74.295 0)
			(hide yes)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(property "Datasheet" ""
			(at 76.835 74.295 0)
			(hide yes)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(property "Description" "Power symbol creates a global label with name \"GND\" , ground"
			(at 76.835 74.295 0)
			(hide yes)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(pin "1"
			(uuid "9389af73-cf46-4c7a-873a-d651197c3d35")
		)
		(instances
			(project "control-panel_workcell_v2.0.1"
				(path "/6e80b007-9b8d-4972-8432-d741714df95d/97ad71f5-e402-453d-b6f9-22316ef3ac12"
					(reference "#PWR0113")
					(unit 1)
				)
			)
		)
	)
	(symbol
		(lib_name "CP_Sensor_8x8_1")
		(lib_id "Molecule_CDT:CP_Sensor_8x8")
		(at 82.55 147.955 0)
		(unit 1)
		(body_style 1)
		(exclude_from_sim no)
		(in_bom yes)
		(on_board yes)
		(in_pos_files yes)
		(dnp no)
		(uuid "e9dd4d85-0b5c-414c-a342-9703dd7dec16")
		(property "Reference" "N2"
			(at 78.74 123.19 0)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(property "Value" "CP_Sensor_8x8"
			(at 78.105 125.73 0)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(property "Footprint" "CalebsLib_CDT:CP_Sensor_8x8"
			(at 78.4225 122.555 0)
			(hide yes)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(property "Datasheet" ""
			(at 82.55 147.955 0)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(property "Description" "Control Panel Layout for 8x8 Sensor Standardized, 3v3 input"
			(at 78.4225 125.095 0)
			(hide yes)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(pin "8"
			(uuid "98f0258f-3d51-4a39-9ea1-d9b824ed9b22")
		)
		(pin "2"
			(uuid "d3a65a3b-d128-4001-8b11-7e50541df4e6")
		)
		(pin "3"
			(uuid "7c271e6e-a36b-4f2c-ae46-971a92bfc883")
		)
		(pin "7"
			(uuid "4ee31eab-c5b4-4187-acfe-bc9e22281c93")
		)
		(pin "4"
			(uuid "f76cc4a9-0561-4851-8a0f-178943a1b570")
		)
		(pin "1"
			(uuid "c9d59746-60ee-405f-aa1a-7b700e0c6ebe")
		)
		(pin "5"
			(uuid "e72041fa-44c9-4894-a84f-b922621dbd03")
		)
		(pin "6"
			(uuid "4cbb9a31-05dc-4d5a-968e-5723d945e1b7")
		)
		(pin "9"
			(uuid "b9df790a-eb1c-4413-a037-19ecd8f38df8")
		)
		(instances
			(project "control-panel_workcell_v2.0.1"
				(path "/6e80b007-9b8d-4972-8432-d741714df95d/97ad71f5-e402-453d-b6f9-22316ef3ac12"
					(reference "N2")
					(unit 1)
				)
			)
		)
	)
	(symbol
		(lib_id "CalebsLibrary:Molecule_PiProbe")
		(at 70.485 52.07 0)
		(unit 1)
		(body_style 1)
		(exclude_from_sim no)
		(in_bom no)
		(on_board yes)
		(in_pos_files yes)
		(dnp no)
		(uuid "ec4a9d4e-273d-4c25-b6c0-2a2a83434097")
		(property "Reference" "N1"
			(at 75.565 41.275 0)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(property "Value" "Molecule_PiProbe"
			(at 76.2 43.815 0)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
					(thickness 0.254)
					(bold yes)
				)
			)
		)
		(property "Footprint" "CalebsLib_CDT:Molecule_PiProbe"
			(at 75.057 55.88 0)
			(hide yes)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(property "Datasheet" ""
			(at 70.485 52.07 0)
			(hide yes)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(property "Description" "RP2040 Debug Probe (UART/SWDIO)"
			(at 76.581 55.88 0)
			(hide yes)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(pin "5"
			(uuid "534c8a30-7776-426a-b31b-41f33f6dc173")
		)
		(pin "2"
			(uuid "eda0aaad-8c8e-440c-817a-2141a172f6c6")
		)
		(pin "3"
			(uuid "006f6aa6-fc20-423a-8028-f7cde75d04e1")
		)
		(pin "1"
			(uuid "50d68931-1ea1-4e12-93a7-7fdddd298423")
		)
		(pin "4"
			(uuid "c2e8024c-6d63-4921-aabd-bac43adcc16b")
		)
		(pin "7"
			(uuid "2f1f2be8-78dd-48cc-bec1-e08626e40e01")
		)
		(pin "8"
			(uuid "6503767b-1f30-49e0-9e8c-c3d623fcc9ba")
		)
		(pin "9"
			(uuid "28f13181-1298-493e-8f21-8a063c112bfd")
		)
		(pin "10"
			(uuid "c75f79ae-1bcf-40cd-8064-830660253a8f")
		)
		(pin "15"
			(uuid "476b1405-972f-41e7-be4f-a6ecdb080397")
		)
		(pin "16"
			(uuid "0bb28333-ee29-4283-99d7-b1b652bd92a9")
		)
		(pin "13"
			(uuid "314a7ceb-b72b-4659-ae72-0a6085f824dc")
		)
		(pin "11"
			(uuid "f4028337-b431-422a-b119-864036899a59")
		)
		(pin "12"
			(uuid "8f2fa2e9-8ea1-4563-8b53-ad2bc187ff5c")
		)
		(instances
			(project "control-panel_workcell_v2.0.1"
				(path "/6e80b007-9b8d-4972-8432-d741714df95d/97ad71f5-e402-453d-b6f9-22316ef3ac12"
					(reference "N1")
					(unit 1)
				)
			)
		)
	)
	(symbol
		(lib_id "CalebsLibrary:DIF_PAIR_LOGO")
		(at 21.59 182.245 0)
		(mirror y)
		(unit 1)
		(body_style 1)
		(exclude_from_sim no)
		(in_bom no)
		(on_board no)
		(in_pos_files yes)
		(dnp no)
		(fields_autoplaced yes)
		(uuid "fbba9c7f-8822-4c00-821f-7782275a4b05")
		(property "Reference" "#LOGO55"
			(at 22.352 180.34 0)
			(hide yes)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(property "Value" ""
			(at 22.352 182.88 0)
			(hide yes)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(property "Footprint" ""
			(at 21.59 182.245 0)
			(hide yes)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(property "Datasheet" ""
			(at 21.59 182.245 0)
			(hide yes)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(property "Description" ""
			(at 21.59 182.245 0)
			(hide yes)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(instances
			(project "control-panel_workcell_v2.0.1"
				(path "/6e80b007-9b8d-4972-8432-d741714df95d/97ad71f5-e402-453d-b6f9-22316ef3ac12"
					(reference "#LOGO55")
					(unit 1)
				)
			)
		)
	)
	(symbol
		(lib_id "power:GND")
		(at 234.315 137.795 0)
		(mirror y)
		(unit 1)
		(body_style 1)
		(exclude_from_sim no)
		(in_bom yes)
		(on_board yes)
		(in_pos_files yes)
		(dnp no)
		(fields_autoplaced yes)
		(uuid "ffc5160e-502e-43cf-93f2-a171ee87e07d")
		(property "Reference" "#PWR0117"
			(at 234.315 144.145 0)
			(hide yes)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(property "Value" "GND"
			(at 234.315 142.24 0)
			(hide yes)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(property "Footprint" ""
			(at 234.315 137.795 0)
			(hide yes)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(property "Datasheet" ""
			(at 234.315 137.795 0)
			(hide yes)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(property "Description" "Power symbol creates a global label with name \"GND\" , ground"
			(at 234.315 137.795 0)
			(hide yes)
			(show_name no)
			(do_not_autoplace no)
			(effects
				(font
					(size 1.27 1.27)
				)
			)
		)
		(pin "1"
			(uuid "883cc987-828f-4fdd-80c6-e1ca27bea864")
		)
		(instances
			(project "control-panel_workcell_v2.0.1"
				(path "/6e80b007-9b8d-4972-8432-d741714df95d/97ad71f5-e402-453d-b6f9-22316ef3ac12"
					(reference "#PWR0117")
					(unit 1)
				)
			)
		)
	)
)