123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364
(kicad_pcb
	(version 20241229)
	(generator "pcbnew")
	(generator_version "9.0")
	(general
		(thickness 1.6)
		(legacy_teardrops no)
	)
	(paper "A4")
	(layers
		(0 "F.Cu" signal)
		(2 "B.Cu" signal)
		(9 "F.Adhes" user "F.Adhesive")
		(11 "B.Adhes" user "B.Adhesive")
		(13 "F.Paste" user)
		(15 "B.Paste" user)
		(5 "F.SilkS" user "F.Silkscreen")
		(7 "B.SilkS" user "B.Silkscreen")
		(1 "F.Mask" user)
		(3 "B.Mask" user)
		(17 "Dwgs.User" user "User.Drawings")
		(19 "Cmts.User" user "User.Comments")
		(21 "Eco1.User" user "User.Eco1")
		(23 "Eco2.User" user "User.Eco2")
		(25 "Edge.Cuts" user)
		(27 "Margin" user)
		(31 "F.CrtYd" user "F.Courtyard")
		(29 "B.CrtYd" user "B.Courtyard")
		(35 "F.Fab" user)
		(33 "B.Fab" user)
		(39 "User.1" user)
		(41 "User.2" user)
		(43 "User.3" user)
		(45 "User.4" user)
		(47 "User.5" user)
		(49 "User.6" user)
		(51 "User.7" user)
		(53 "User.8" user)
		(55 "User.9" user)
	)
	(setup
		(stackup
			(layer "F.SilkS"
				(type "Top Silk Screen")
			)
			(layer "F.Paste"
				(type "Top Solder Paste")
			)
			(layer "F.Mask"
				(type "Top Solder Mask")
				(thickness 0.01)
			)
			(layer "F.Cu"
				(type "copper")
				(thickness 0.035)
			)
			(layer "dielectric 1"
				(type "core")
				(thickness 1.51)
				(material "FR4")
				(epsilon_r 4.5)
				(loss_tangent 0.02)
			)
			(layer "B.Cu"
				(type "copper")
				(thickness 0.035)
			)
			(layer "B.Mask"
				(type "Bottom Solder Mask")
				(thickness 0.01)
			)
			(layer "B.Paste"
				(type "Bottom Solder Paste")
			)
			(layer "B.SilkS"
				(type "Bottom Silk Screen")
			)
			(copper_finish "None")
			(dielectric_constraints no)
		)
		(pad_to_mask_clearance 0)
		(allow_soldermask_bridges_in_footprints no)
		(tenting front back)
		(pcbplotparams
			(layerselection 0x00000000_00000000_55555555_5755f5ff)
			(plot_on_all_layers_selection 0x00000000_00000000_00000000_00000000)
			(disableapertmacros no)
			(usegerberextensions no)
			(usegerberattributes yes)
			(usegerberadvancedattributes yes)
			(creategerberjobfile yes)
			(dashed_line_dash_ratio 12.000000)
			(dashed_line_gap_ratio 3.000000)
			(svgprecision 4)
			(plotframeref no)
			(mode 1)
			(useauxorigin no)
			(hpglpennumber 1)
			(hpglpenspeed 20)
			(hpglpendiameter 15.000000)
			(pdf_front_fp_property_popups yes)
			(pdf_back_fp_property_popups yes)
			(pdf_metadata yes)
			(pdf_single_document no)
			(dxfpolygonmode yes)
			(dxfimperialunits yes)
			(dxfusepcbnewfont yes)
			(psnegative no)
			(psa4output no)
			(plot_black_and_white yes)
			(plotinvisibletext no)
			(sketchpadsonfab no)
			(plotpadnumbers no)
			(hidednponfab no)
			(sketchdnponfab yes)
			(crossoutdnponfab yes)
			(subtractmaskfromsilk no)
			(outputformat 1)
			(mirror no)
			(drillshape 1)
			(scaleselection 1)
			(outputdirectory "")
		)
	)
	(property "board_name" "AP2114H-3.3TRG1 v2.0")
	(net 0 "")
	(net 1 "VIN")
	(net 2 "+3.3V")
	(net 3 "GND")
	(net 4 "Net-(D1-A)")
	(footprint "Adom Footprint Library:ADOM_MEDIUM_PIN_SHORTER_v1"
		(layer "F.Cu")
		(uuid "0a1603b7-3812-4c8d-9dd8-c9c1bc050a0e")
		(at 9 -9)
		(property "Reference" "MC3"
			(at 0 -1.4 0)
			(unlocked yes)
			(layer "F.SilkS")
			(hide yes)
			(uuid "36e0afed-47f5-459e-abc3-a828605c1482")
			(effects
				(font
					(size 0.5 0.5)
					(thickness 0.1)
				)
			)
		)
		(property "Value" "ADOM_MECHANICAL_PIN"
			(at 0 -2 0)
			(unlocked yes)
			(layer "F.Fab")
			(hide yes)
			(uuid "37b9bcce-7715-46a3-b80c-b0c1471a2fdb")
			(effects
				(font
					(size 0.25 0.25)
					(thickness 0.0625)
					(bold yes)
				)
			)
		)
		(property "Datasheet" ""
			(at 0 0 0)
			(layer "F.Fab")
			(hide yes)
			(uuid "7f2060ab-0fa3-4c2c-a264-97019abd0e1d")
			(effects
				(font
					(size 1.27 1.27)
					(thickness 0.15)
				)
			)
		)
		(property "Description" ""
			(at 0 0 0)
			(layer "F.Fab")
			(hide yes)
			(uuid "e2f52ee7-d8a3-40d2-a115-9badd0d1f163")
			(effects
				(font
					(size 1.27 1.27)
					(thickness 0.15)
				)
			)
		)
		(property ki_fp_filters "Adom?Footprint?Library:ADOM?MEDIUM?PIN*")
		(path "/9e53c4b2-79e9-496f-8dc4-894c0a7134d7")
		(sheetname "/")
		(sheetfile "Molecule_AP2114H-3.3TRG1_v2.kicad_sch")
		(attr through_hole exclude_from_pos_files)
		(fp_circle
			(center 0 0)
			(end 0.9 0)
			(stroke
				(width 0.05)
				(type default)
			)
			(fill no)
			(layer "F.SilkS")
			(uuid "8a0eea2b-f38e-4213-adde-f4168841c2e4")
		)
		(fp_circle
			(center 0 0)
			(end 0.99 0)
			(stroke
				(width 0.05)
				(type default)
			)
			(fill no)
			(layer "B.CrtYd")
			(uuid "07d913e3-2bfb-4921-a8ee-8368451e11b7")
		)
		(fp_circle
			(center 0 0)
			(end 0.99 0)
			(stroke
				(width 0.05)
				(type default)
			)
			(fill no)
			(layer "F.CrtYd")
			(uuid "5cb8d009-2626-49d2-8819-83024d9b18b5")
		)
		(fp_rect
			(start -1 -1)
			(end 1 1)
			(stroke
				(width 0.05)
				(type default)
			)
			(fill no)
			(layer "F.Fab")
			(uuid "8137ae7e-97ce-439e-a729-4a1f4f527187")
		)
		(fp_text user "${REFERENCE}"
			(at 0 -1.4 0)
			(unlocked yes)
			(layer "F.Fab")
			(uuid "10f246ee-7c7c-41c5-895c-369164deb767")
			(effects
				(font
					(size 0.5 0.5)
					(thickness 0.1)
					(bold yes)
				)
			)
		)
		(pad "1" thru_hole circle
			(at 0 0)
			(size 1.6 1.6)
			(drill 1.2)
			(layers "*.Cu" "*.Mask")
			(remove_unused_layers no)
			(net 2 "+3.3V")
			(pintype "passive")
			(uuid "fb9c9b40-0220-46a1-907b-54477ba4f011")
		)
		(embedded_fonts no)
		(model "${ADOM_LIBRARY_DIR}/Adom Footprint Library.pretty/3D_Models/ShorterMediumMachinePin v1.step"
			(offset
				(xyz 0 0 0.28)
			)
			(scale
				(xyz 1 1 1)
			)
			(rotate
				(xyz 0 0 0)
			)
		)
	)
	(footprint "Adom Footprint Library:ADOM_MEDIUM_PIN_SHORTER_v1"
		(layer "F.Cu")
		(uuid "1ea78bb9-42fa-4099-be2f-48ba89c6387e")
		(at 1 -9)
		(property "Reference" "MC2"
			(at 0 -1.4 0)
			(unlocked yes)
			(layer "F.SilkS")
			(hide yes)
			(uuid "958159b6-8009-4b99-a977-a889a82222c0")
			(effects
				(font
					(size 0.5 0.5)
					(thickness 0.1)
				)
			)
		)
		(property "Value" "ADOM_MECHANICAL_PIN"
			(at 0 -2 0)
			(unlocked yes)
			(layer "F.Fab")
			(hide yes)
			(uuid "22e23719-bcaa-4ca9-b818-ffbfc4b5cc00")
			(effects
				(font
					(size 0.25 0.25)
					(thickness 0.0625)
					(bold yes)
				)
			)
		)
		(property "Datasheet" ""
			(at 0 0 0)
			(layer "F.Fab")
			(hide yes)
			(uuid "6c4c607c-a82c-4295-9a35-a1f48205b8e1")
			(effects
				(font
					(size 1.27 1.27)
					(thickness 0.15)
				)
			)
		)
		(property "Description" ""
			(at 0 0 0)
			(layer "F.Fab")
			(hide yes)
			(uuid "c6f14258-7f79-45c8-8516-2c6177f6bd0e")
			(effects
				(font
					(size 1.27 1.27)
					(thickness 0.15)
				)
			)
		)
		(property ki_fp_filters "Adom?Footprint?Library:ADOM?MEDIUM?PIN*")
		(path "/15815eac-0a3a-4efc-9935-dc3dc54c3cef")
		(sheetname "/")
		(sheetfile "Molecule_AP2114H-3.3TRG1_v2.kicad_sch")
		(attr through_hole exclude_from_pos_files)
		(fp_circle
			(center 0 0)
			(end 0.9 0)
			(stroke
				(width 0.05)
				(type default)
			)
			(fill no)
			(layer "F.SilkS")
			(uuid "724460c3-ab5c-4327-b55a-f05a7e6e5994")
		)
		(fp_circle
			(center 0 0)
			(end 0.99 0)
			(stroke
				(width 0.05)
				(type default)
			)
			(fill no)
			(layer "B.CrtYd")
			(uuid "ddbcb3bc-6942-4b64-bb00-30ec923ecc90")
		)
		(fp_circle
			(center 0 0)
			(end 0.99 0)
			(stroke
				(width 0.05)
				(type default)
			)
			(fill no)
			(layer "F.CrtYd")
			(uuid "9d72d4a2-5034-4c63-af13-e8591d3d2f3b")
		)
		(fp_rect
			(start -1 -1)
			(end 1 1)
			(stroke
				(width 0.05)
				(type default)
			)
			(fill no)
			(layer "F.Fab")
			(uuid "06be7534-f5f6-497d-94e0-1869f9d1c3ab")
		)
		(fp_text user "${REFERENCE}"
			(at 0 -1.4 0)
			(unlocked yes)
			(layer "F.Fab")
			(uuid "aa60e9f1-16f9-4ffc-9b23-a3f978693337")
			(effects
				(font
					(size 0.5 0.5)
					(thickness 0.1)
					(bold yes)
				)
			)
		)
		(pad "1" thru_hole circle
			(at 0 0)
			(size 1.6 1.6)
			(drill 1.2)
			(layers "*.Cu" "*.Mask")
			(remove_unused_layers no)
			(net 1 "VIN")
			(pintype "passive")
			(uuid "e8dd4e65-7e3f-44b9-a5be-41eb7618fd54")
		)
		(embedded_fonts no)
		(model "${ADOM_LIBRARY_DIR}/Adom Footprint Library.pretty/3D_Models/ShorterMediumMachinePin v1.step"
			(offset
				(xyz 0 0 0.28)
			)
			(scale
				(xyz 1 1 1)
			)
			(rotate
				(xyz 0 0 0)
			)
		)
	)
	(footprint "Package_TO_SOT_SMD:SOT-223-3_TabPin2"
		(layer "F.Cu")
		(uuid "399623d4-ef84-457d-8b96-78449a823b27")
		(at 5 -5.6 90)
		(descr "module CMS SOT223 4 pins")
		(tags "CMS SOT")
		(property "Reference" "U1"
			(at 0 0 180)
			(layer "F.SilkS")
			(uuid "ad47142f-c1bf-4779-8cb6-50831382908b")
			(effects
				(font
					(size 1 1)
					(thickness 0.15)
				)
			)
		)
		(property "Value" "AP2114H-3.3TRG1"
			(at 0 4.5 90)
			(layer "F.Fab")
			(uuid "9e03649e-3243-44eb-bfbd-2b630c51ebd7")
			(effects
				(font
					(size 1 1)
					(thickness 0.15)
				)
			)
		)
		(property "Datasheet" "http://www.advanced-monolithic.com/pdf/ds1117.pdf"
			(at 0 0 90)
			(layer "F.Fab")
			(hide yes)
			(uuid "4d9c0092-3dca-4c9b-95db-94a66ccfac47")
			(effects
				(font
					(size 1.27 1.27)
					(thickness 0.15)
				)
			)
		)
		(property "Description" ""
			(at 0 0 90)
			(layer "F.Fab")
			(hide yes)
			(uuid "8551131e-9dad-4868-8966-6c28723763ab")
			(effects
				(font
					(size 1.27 1.27)
					(thickness 0.15)
				)
			)
		)
		(property "LCSC" "C150716"
			(at 0 0 0)
			(layer "F.SilkS")
			(hide yes)
			(uuid "2b63b2a8-a2dc-418b-9018-310107d84eae")
			(effects
				(font
					(size 1.27 1.27)
					(thickness 0.15)
				)
			)
		)
		(property ki_fp_filters "SOT?223*TabPin2*")
		(path "/ed16f60c-f917-4a57-8342-f4e8b42fd346")
		(sheetname "/")
		(sheetfile "Molecule_AP2114H-3.3TRG1_v2.kicad_sch")
		(attr smd)
		(fp_line
			(start 1.91 -3.41)
			(end 1.91 -2.15)
			(stroke
				(width 0.12)
				(type solid)
			)
			(layer "F.SilkS")
			(uuid "47e7866e-a3c5-4ecf-9bb7-f0a618f720be")
		)
		(fp_line
			(start -4.1 -3.41)
			(end 1.91 -3.41)
			(stroke
				(width 0.12)
				(type solid)
			)
			(layer "F.SilkS")
			(uuid "02b2be33-0072-4234-98d6-8b002373e603")
		)
		(fp_line
			(start 1.91 3.32)
			(end 1.91 2.15)
			(stroke
				(width 0.12)
				(type solid)
			)
			(layer "F.SilkS")
			(uuid "11a26436-2d63-46d1-b0a3-17d22393d87e")
		)
		(fp_line
			(start -1.85 3.41)
			(end 1.8 3.41)
			(stroke
				(width 0.12)
				(type solid)
			)
			(layer "F.SilkS")
			(uuid "6882b8e0-6955-456b-909a-56e1f809aee9")
		)
		(fp_line
			(start 4.4 -3.6)
			(end -4.4 -3.6)
			(stroke
				(width 0.05)
				(type solid)
			)
			(layer "F.CrtYd")
			(uuid "200aba92-aad0-4729-8b1d-73097db51096")
		)
		(fp_line
			(start -4.4 -3.6)
			(end -4.4 3.6)
			(stroke
				(width 0.05)
				(type solid)
			)
			(layer "F.CrtYd")
			(uuid "777a328e-db76-417e-a448-ad96d17351f1")
		)
		(fp_line
			(start 4.4 3.6)
			(end 4.4 -3.6)
			(stroke
				(width 0.05)
				(type solid)
			)
			(layer "F.CrtYd")
			(uuid "fd355048-3221-4662-86de-63aeddaa04b6")
		)
		(fp_line
			(start -4.4 3.6)
			(end 4.4 3.6)
			(stroke
				(width 0.05)
				(type solid)
			)
			(layer "F.CrtYd")
			(uuid "a81746cf-e2f7-43ed-9519-be0c79ab41eb")
		)
		(fp_line
			(start 1.85 -3.35)
			(end 1.85 3.35)
			(stroke
				(width 0.1)
				(type solid)
			)
			(layer "F.Fab")
			(uuid "5e969c0d-4583-4168-9117-4f6b3d643c49")
		)
		(fp_line
			(start -0.85 -3.35)
			(end 1.85 -3.35)
			(stroke
				(width 0.1)
				(type solid)
			)
			(layer "F.Fab")
			(uuid "5ad764dc-73d0-49da-a864-0235ffc229c4")
		)
		(fp_line
			(start -1.85 -2.35)
			(end -0.85 -3.35)
			(stroke
				(width 0.1)
				(type solid)
			)
			(layer "F.Fab")
			(uuid "f6f9b8a0-2f54-4376-985d-ab7d9f7eae28")
		)
		(fp_line
			(start -1.85 -2.35)
			(end -1.85 3.35)
			(stroke
				(width 0.1)
				(type solid)
			)
			(layer "F.Fab")
			(uuid "8bd6a0f2-b2a1-4cee-a429-5ed1dd512e88")
		)
		(fp_line
			(start -1.85 3.35)
			(end 1.85 3.35)
			(stroke
				(width 0.1)
				(type solid)
			)
			(layer "F.Fab")
			(uuid "beab6a06-52b2-48ad-a307-aa7195d9715d")
		)
		(fp_text user "${REFERENCE}"
			(at 0 0 0)
			(layer "F.Fab")
			(uuid "666efbe7-4435-4692-aa79-69ebc3182a70")
			(effects
				(font
					(size 0.8 0.8)
					(thickness 0.12)
				)
			)
		)
		(pad "1" smd rect
			(at -3.15 -2.3 90)
			(size 2 1.5)
			(layers "F.Cu" "F.Mask" "F.Paste")
			(net 3 "GND")
			(pinfunction "GND")
			(pintype "power_in")
			(uuid "0b9a6d55-cafc-4b29-bc59-11e52d61f4de")
		)
		(pad "2" smd rect
			(at -3.15 0 90)
			(size 2 1.5)
			(layers "F.Cu" "F.Mask" "F.Paste")
			(net 2 "+3.3V")
			(pinfunction "VO")
			(pintype "power_out")
			(uuid "f0dcc1aa-0c3f-429b-96d4-9f735e5959b6")
		)
		(pad "2" smd rect
			(at 3.15 0 90)
			(size 2 3.8)
			(layers "F.Cu" "F.Mask" "F.Paste")
			(net 2 "+3.3V")
			(pinfunction "VO")
			(pintype "power_out")
			(uuid "f0dcc1aa-0c3f-429b-96d4-9f735e5959b6")
		)
		(pad "3" smd rect
			(at -3.15 2.3 90)
			(size 2 1.5)
			(layers "F.Cu" "F.Mask" "F.Paste")
			(net 1 "VIN")
			(pinfunction "VI")
			(pintype "power_in")
			(uuid "5cc8cc82-3cf0-476e-b911-83cc6204788d")
		)
		(embedded_fonts no)
		(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-223.wrl"
			(offset
				(xyz 0 0 0)
			)
			(scale
				(xyz 1 1 1)
			)
			(rotate
				(xyz 0 0 0)
			)
		)
	)
	(footprint "Ray Fundamental Components:LED_0603_1608Metric_RED"
		(layer "F.Cu")
		(uuid "3d61856a-dd86-414b-ba87-371f6563520c")
		(at 9.3 -3.4875 90)
		(descr "LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
		(tags "LED")
		(property "Reference" "D1"
			(at 0 0 0)
			(layer "F.SilkS")
			(uuid "59c20dc9-b4c7-447f-85cc-1c7d10b92fb3")
			(effects
				(font
					(size 0.5 0.5)
					(thickness 0.125)
				)
			)
		)
		(property "Value" "LED-RED"
			(at 0 0 90)
			(layer "F.Fab")
			(hide yes)
			(uuid "67359c45-6eb9-44af-a071-e7d66895dca1")
			(effects
				(font
					(size 0.5 0.5)
					(thickness 0.15)
				)
			)
		)
		(property "Datasheet" ""
			(at 0 0 90)
			(unlocked yes)
			(layer "F.Fab")
			(hide yes)
			(uuid "2f170440-8377-46cf-a9c2-4b1979eea1e6")
			(effects
				(font
					(size 1.27 1.27)
					(thickness 0.15)
				)
			)
		)
		(property "Description" "Light emitting diode"
			(at 0 0 90)
			(unlocked yes)
			(layer "F.Fab")
			(hide yes)
			(uuid "5b4a8bae-ab83-4f17-9600-d2d5c26268d7")
			(effects
				(font
					(size 1.27 1.27)
					(thickness 0.15)
				)
			)
		)
		(property "LCSC" "C2286"
			(at 0 0 90)
			(unlocked yes)
			(layer "F.Fab")
			(hide yes)
			(uuid "56573d6b-0e20-451a-96cc-93a391ded857")
			(effects
				(font
					(size 1 1)
					(thickness 0.15)
				)
			)
		)
		(property ki_fp_filters "LED* LED_SMD:* LED_THT:*")
		(path "/dd33dec1-e415-47bb-a24c-363d38d23c25")
		(sheetname "/")
		(sheetfile "Molecule_AP2114H-3.3TRG1_v2.kicad_sch")
		(attr smd)
		(fp_line
			(start 0.8 -0.735)
			(end -1.485 -0.735)
			(stroke
				(width 0.12)
				(type solid)
			)
			(layer "F.SilkS")
			(uuid "1fec5205-d992-4024-bcb6-d421419b9501")
		)
		(fp_line
			(start -1.485 -0.735)
			(end -1.485 0.735)
			(stroke
				(width 0.12)
				(type solid)
			)
			(layer "F.SilkS")
			(uuid "2ef4f4a7-d222-4248-a431-ff87e0bb0d04")
		)
		(fp_line
			(start -1.485 0.735)
			(end 0.8 0.735)
			(stroke
				(width 0.12)
				(type solid)
			)
			(layer "F.SilkS")
			(uuid "b652637e-9fc5-4570-b74c-56d5fb292dd2")
		)
		(fp_line
			(start 1.48 -0.73)
			(end 1.48 0.73)
			(stroke
				(width 0.05)
				(type solid)
			)
			(layer "F.CrtYd")
			(uuid "585dc7c3-95e9-42ab-b6f2-6c1d4daa9712")
		)
		(fp_line
			(start -1.48 -0.73)
			(end 1.48 -0.73)
			(stroke
				(width 0.05)
				(type solid)
			)
			(layer "F.CrtYd")
			(uuid "71611299-4320-4170-a686-103b5c7e3a66")
		)
		(fp_line
			(start 1.48 0.73)
			(end -1.48 0.73)
			(stroke
				(width 0.05)
				(type solid)
			)
			(layer "F.CrtYd")
			(uuid "85740ab8-2ef6-40cb-b491-43b830c6e55a")
		)
		(fp_line
			(start -1.48 0.73)
			(end -1.48 -0.73)
			(stroke
				(width 0.05)
				(type solid)
			)
			(layer "F.CrtYd")
			(uuid "ab1afb59-3c02-47be-bdcf-3b3ea139d774")
		)
		(fp_line
			(start 0.8 -0.4)
			(end -0.5 -0.4)
			(stroke
				(width 0.1)
				(type solid)
			)
			(layer "F.Fab")
			(uuid "b6f0a7e7-9656-4b2f-8f61-05a6aee64516")
		)
		(fp_line
			(start -0.5 -0.4)
			(end -0.8 -0.1)
			(stroke
				(width 0.1)
				(type solid)
			)
			(layer "F.Fab")
			(uuid "57d01105-d10b-4274-ad73-c6540da16d79")
		)
		(fp_line
			(start -0.8 -0.1)
			(end -0.8 0.4)
			(stroke
				(width 0.1)
				(type solid)
			)
			(layer "F.Fab")
			(uuid "7c482e59-ed4b-4af8-9e22-9e5b72b5c1e0")
		)
		(fp_line
			(start 0.8 0.4)
			(end 0.8 -0.4)
			(stroke
				(width 0.1)
				(type solid)
			)
			(layer "F.Fab")
			(uuid "d8e5ed2b-e2c8-4389-8281-09a78feddb9a")
		)
		(fp_line
			(start -0.8 0.4)
			(end 0.8 0.4)
			(stroke
				(width 0.1)
				(type solid)
			)
			(layer "F.Fab")
			(uuid "e064af6e-5189-42d2-9ef5-b581a2ae7bda")
		)
		(fp_text user "${REFERENCE}"
			(at 0 0 90)
			(layer "F.Fab")
			(uuid "90640267-6bed-4513-afaa-0db53a592a03")
			(effects
				(font
					(size 0.4 0.4)
					(thickness 0.06)
				)
			)
		)
		(pad "1" smd roundrect
			(at -0.7875 0 90)
			(size 0.875 0.95)
			(layers "F.Cu" "F.Mask" "F.Paste")
			(roundrect_rratio 0.25)
			(net 3 "GND")
			(pinfunction "K")
			(pintype "passive")
			(uuid "ace01722-fd02-48c5-86ae-54e11abf4984")
		)
		(pad "2" smd roundrect
			(at 0.7875 0 90)
			(size 0.875 0.95)
			(layers "F.Cu" "F.Mask" "F.Paste")
			(roundrect_rratio 0.25)
			(net 4 "Net-(D1-A)")
			(pinfunction "A")
			(pintype "passive")
			(uuid "5a5448b7-5adf-453b-9c0a-93d4a2ecab9d")
		)
		(embedded_fonts no)
		(model "${KICAD_USER_PROJECTS_LIBRARY}/Ray Fundamental Components.pretty/3D_Models/KT-0603R-3DModel.step"
			(offset
				(xyz 0 0 0)
			)
			(scale
				(xyz 1 1 1)
			)
			(rotate
				(xyz -90 -0 -0)
			)
		)
	)
	(footprint "Adom Footprint Library:ADOM_MEDIUM_PIN_SHORTER_v1"
		(layer "F.Cu")
		(uuid "492ab051-7511-4098-84ab-ead7841193e0")
		(at 1 -1)
		(property "Reference" "MC1"
			(at 0 2 0)
			(unlocked yes)
			(layer "F.SilkS")
			(hide yes)
			(uuid "0bddbcd8-831d-4df2-9f9a-5b43e7aa7ed1")
			(effects
				(font
					(size 0.5 0.5)
					(thickness 0.1)
				)
			)
		)
		(property "Value" "ADOM_MECHANICAL_PIN"
			(at 0 -2 0)
			(unlocked yes)
			(layer "F.Fab")
			(hide yes)
			(uuid "05ec7693-a2b3-4e58-9556-0069f3a4e543")
			(effects
				(font
					(size 0.25 0.25)
					(thickness 0.0625)
					(bold yes)
				)
			)
		)
		(property "Datasheet" ""
			(at 0 0 0)
			(layer "F.Fab")
			(hide yes)
			(uuid "2ba183e4-e0d4-4ea3-8777-c184f8dfef5a")
			(effects
				(font
					(size 1.27 1.27)
					(thickness 0.15)
				)
			)
		)
		(property "Description" ""
			(at 0 0 0)
			(layer "F.Fab")
			(hide yes)
			(uuid "a574e085-e1a8-4181-a20e-7d935d4a08fe")
			(effects
				(font
					(size 1.27 1.27)
					(thickness 0.15)
				)
			)
		)
		(property ki_fp_filters "Adom?Footprint?Library:ADOM?MEDIUM?PIN*")
		(path "/c1dc1c8e-4de8-4559-ae07-8d63079948d4")
		(sheetname "/")
		(sheetfile "Molecule_AP2114H-3.3TRG1_v2.kicad_sch")
		(attr through_hole exclude_from_pos_files)
		(fp_circle
			(center 0 0)
			(end 0.9 0)
			(stroke
				(width 0.05)
				(type default)
			)
			(fill no)
			(layer "F.SilkS")
			(uuid "a60db158-4be3-4ac4-b3ce-1018812a4884")
		)
		(fp_circle
			(center 0 0)
			(end 0.99 0)
			(stroke
				(width 0.05)
				(type default)
			)
			(fill no)
			(layer "B.CrtYd")
			(uuid "0837eb60-a4a3-48de-b2c3-b60fbca9e5c2")
		)
		(fp_circle
			(center 0 0)
			(end 0.99 0)
			(stroke
				(width 0.05)
				(type default)
			)
			(fill no)
			(layer "F.CrtYd")
			(uuid "e2111b76-ba77-486c-9a26-196e83bfd4a9")
		)
		(fp_rect
			(start -1 -1)
			(end 1 1)
			(stroke
				(width 0.05)
				(type default)
			)
			(fill no)
			(layer "F.Fab")
			(uuid "8047911a-be21-49bc-8cb4-fdbbb8f92e57")
		)
		(fp_text user "${REFERENCE}"
			(at 0 1.5 0)
			(unlocked yes)
			(layer "F.Fab")
			(uuid "00888ecf-3c32-4396-89d3-d40097214842")
			(effects
				(font
					(size 0.5 0.5)
					(thickness 0.1)
					(bold yes)
				)
			)
		)
		(pad "1" thru_hole circle
			(at 0 0)
			(size 1.6 1.6)
			(drill 1.2)
			(layers "*.Cu" "*.Mask")
			(remove_unused_layers no)
			(net 3 "GND")
			(pintype "passive")
			(uuid "73781366-7059-4480-8401-d91ed636f51d")
		)
		(embedded_fonts no)
		(model "${ADOM_LIBRARY_DIR}/Adom Footprint Library.pretty/3D_Models/ShorterMediumMachinePin v1.step"
			(offset
				(xyz 0 0 0.28)
			)
			(scale
				(xyz 1 1 1)
			)
			(rotate
				(xyz 0 0 0)
			)
		)
	)
	(footprint "Ray Fundamental Components:R_0402_1005Metric"
		(layer "F.Cu")
		(uuid "c2b674c2-c8cb-45e0-8150-6e71e42113c6")
		(at 9.3 -5.86 -90)
		(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
		(tags "resistor")
		(property "Reference" "R1"
			(at 0 0 90)
			(layer "F.Fab")
			(hide yes)
			(uuid "0202867a-1e75-4bfd-bd3c-114f960fe0dd")
			(effects
				(font
					(size 0.25 0.25)
					(thickness 0.0625)
				)
			)
		)
		(property "Value" "1k"
			(at 0 1.17 90)
			(layer "F.Fab")
			(hide yes)
			(uuid "0293a3fa-b913-40c5-a591-cb56cff5725c")
			(effects
				(font
					(size 1 1)
					(thickness 0.15)
				)
			)
		)
		(property "Datasheet" ""
			(at 0 0 270)
			(unlocked yes)
			(layer "F.Fab")
			(hide yes)
			(uuid "bc2414eb-76e5-4693-bca7-6341336a7db3")
			(effects
				(font
					(size 1.27 1.27)
					(thickness 0.15)
				)
			)
		)
		(property "Description" "Resistor"
			(at 0 0 270)
			(unlocked yes)
			(layer "F.Fab")
			(hide yes)
			(uuid "a019cda1-66b0-46d3-b6b8-c2ef34c51f55")
			(effects
				(font
					(size 1.27 1.27)
					(thickness 0.15)
				)
			)
		)
		(property "LCSC" "C11702"
			(at 0 0 270)
			(unlocked yes)
			(layer "F.Fab")
			(hide yes)
			(uuid "9965b13c-8e98-4fd3-a718-13d9ed9d74b1")
			(effects
				(font
					(size 1 1)
					(thickness 0.15)
				)
			)
		)
		(property ki_fp_filters "R_*")
		(path "/bf9c3b7d-f177-40c8-be2e-594e001d9cc6")
		(sheetname "/")
		(sheetfile "Molecule_AP2114H-3.3TRG1_v2.kicad_sch")
		(attr smd)
		(fp_line
			(start -0.93 0.47)
			(end -0.93 -0.47)
			(stroke
				(width 0.05)
				(type solid)
			)
			(layer "F.CrtYd")
			(uuid "9cee7e2c-f0b3-4bc1-a1f0-3ff648a4ce8d")
		)
		(fp_line
			(start 0.93 0.47)
			(end -0.93 0.47)
			(stroke
				(width 0.05)
				(type solid)
			)
			(layer "F.CrtYd")
			(uuid "96612552-479f-4397-a2c8-d6e9b567f95c")
		)
		(fp_line
			(start -0.93 -0.47)
			(end 0.93 -0.47)
			(stroke
				(width 0.05)
				(type solid)
			)
			(layer "F.CrtYd")
			(uuid "1badd142-8bbe-425d-bf48-2d5787ee0254")
		)
		(fp_line
			(start 0.93 -0.47)
			(end 0.93 0.47)
			(stroke
				(width 0.05)
				(type solid)
			)
			(layer "F.CrtYd")
			(uuid "11c8a67c-104b-43a3-961b-2c03f9bda896")
		)
		(fp_line
			(start -0.153641 0.38)
			(end 0.153641 0.38)
			(stroke
				(width 0.12)
				(type solid)
			)
			(layer "F.Fab")
			(uuid "a616946c-0293-4de1-8cd0-fc793b3bc093")
		)
		(fp_line
			(start -0.525 0.27)
			(end -0.525 -0.27)
			(stroke
				(width 0.1)
				(type solid)
			)
			(layer "F.Fab")
			(uuid "8cb3edc8-1c4a-4a9d-ace8-b35a0f373fd4")
		)
		(fp_line
			(start 0.525 0.27)
			(end -0.525 0.27)
			(stroke
				(width 0.1)
				(type solid)
			)
			(layer "F.Fab")
			(uuid "9971c743-cb0e-4f28-8748-4265441fc551")
		)
		(fp_line
			(start -0.525 -0.27)
			(end 0.525 -0.27)
			(stroke
				(width 0.1)
				(type solid)
			)
			(layer "F.Fab")
			(uuid "55cffd2b-9a52-422f-9d23-4a9340380dd3")
		)
		(fp_line
			(start 0.525 -0.27)
			(end 0.525 0.27)
			(stroke
				(width 0.1)
				(type solid)
			)
			(layer "F.Fab")
			(uuid "ced29f28-3dac-4f05-a61d-cb1afdd92984")
		)
		(fp_line
			(start -0.153641 -0.38)
			(end 0.153641 -0.38)
			(stroke
				(width 0.12)
				(type solid)
			)
			(layer "F.Fab")
			(uuid "088a0a04-d0aa-4e52-8bbd-20f20f82909a")
		)
		(fp_text user "${REFERENCE}"
			(at 0 0 90)
			(layer "F.Fab")
			(uuid "b9527194-932c-4738-927a-1ee79a7af13e")
			(effects
				(font
					(size 0.26 0.26)
					(thickness 0.04)
				)
			)
		)
		(pad "1" smd roundrect
			(at -0.51 0 270)
			(size 0.54 0.64)
			(layers "F.Cu" "F.Mask" "F.Paste")
			(roundrect_rratio 0.25)
			(net 2 "+3.3V")
			(pintype "passive")
			(uuid "9d4d0311-6852-4762-ad0a-d15681413429")
		)
		(pad "2" smd roundrect
			(at 0.51 0 270)
			(size 0.54 0.64)
			(layers "F.Cu" "F.Mask" "F.Paste")
			(roundrect_rratio 0.25)
			(net 4 "Net-(D1-A)")
			(pintype "passive")
			(uuid "df5d2ba1-c2cf-49bd-b7b4-df59930c5401")
		)
		(embedded_fonts no)
		(model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
			(offset
				(xyz 0 0 0)
			)
			(scale
				(xyz 1 1 1)
			)
			(rotate
				(xyz 0 0 0)
			)
		)
	)
	(footprint "Adom Footprint Library:ADOM_MEDIUM_PIN_SHORTER_v1"
		(layer "F.Cu")
		(uuid "e48ee9a1-6ff2-4a85-b3aa-c2da95a88e51")
		(at 9 -1)
		(property "Reference" "MC4"
			(at 0 2 0)
			(unlocked yes)
			(layer "F.SilkS")
			(hide yes)
			(uuid "7e5ee1f4-6660-473a-9820-9f5c2581799c")
			(effects
				(font
					(size 0.5 0.5)
					(thickness 0.1)
				)
			)
		)
		(property "Value" "ADOM_MECHANICAL_PIN"
			(at 0 -2 0)
			(unlocked yes)
			(layer "F.Fab")
			(hide yes)
			(uuid "f8fb3bcf-2a4e-4df1-8c1a-a3ce93da504b")
			(effects
				(font
					(size 0.25 0.25)
					(thickness 0.0625)
					(bold yes)
				)
			)
		)
		(property "Datasheet" ""
			(at 0 0 0)
			(layer "F.Fab")
			(hide yes)
			(uuid "2d2e44bd-3efe-4664-9be3-6ee1df3515d9")
			(effects
				(font
					(size 1.27 1.27)
					(thickness 0.15)
				)
			)
		)
		(property "Description" ""
			(at 0 0 0)
			(layer "F.Fab")
			(hide yes)
			(uuid "dc85b42d-16b1-44a8-ade8-ceb27ba85f82")
			(effects
				(font
					(size 1.27 1.27)
					(thickness 0.15)
				)
			)
		)
		(property ki_fp_filters "Adom?Footprint?Library:ADOM?MEDIUM?PIN*")
		(path "/2ca0093b-612b-400c-97c3-c6d13ca80920")
		(sheetname "/")
		(sheetfile "Molecule_AP2114H-3.3TRG1_v2.kicad_sch")
		(attr through_hole exclude_from_pos_files)
		(fp_circle
			(center 0 0)
			(end 0.9 0)
			(stroke
				(width 0.05)
				(type default)
			)
			(fill no)
			(layer "F.SilkS")
			(uuid "a10a8856-74fc-47dc-8d13-57cd492fbb7b")
		)
		(fp_circle
			(center 0 0)
			(end 0.99 0)
			(stroke
				(width 0.05)
				(type default)
			)
			(fill no)
			(layer "B.CrtYd")
			(uuid "314b71de-6334-4c0e-be6f-1cdde0e9f281")
		)
		(fp_circle
			(center 0 0)
			(end 0.99 0)
			(stroke
				(width 0.05)
				(type default)
			)
			(fill no)
			(layer "F.CrtYd")
			(uuid "25ecc9df-2d2f-48b4-bbc1-787a99e12ed4")
		)
		(fp_rect
			(start -1 -1)
			(end 1 1)
			(stroke
				(width 0.05)
				(type default)
			)
			(fill no)
			(layer "F.Fab")
			(uuid "4a85ff86-69d8-4ab6-955e-55ea5ab31a04")
		)
		(fp_text user "${REFERENCE}"
			(at 0 1.5 0)
			(unlocked yes)
			(layer "F.Fab")
			(uuid "ec865821-0199-4619-9645-d28e896f354f")
			(effects
				(font
					(size 0.5 0.5)
					(thickness 0.1)
					(bold yes)
				)
			)
		)
		(pad "1" thru_hole circle
			(at 0 0)
			(size 1.6 1.6)
			(drill 1.2)
			(layers "*.Cu" "*.Mask")
			(remove_unused_layers no)
			(net 3 "GND")
			(pintype "passive")
			(uuid "795f5bfc-6410-4d40-af48-8e7456f09124")
		)
		(embedded_fonts no)
		(model "${ADOM_LIBRARY_DIR}/Adom Footprint Library.pretty/3D_Models/ShorterMediumMachinePin v1.step"
			(offset
				(xyz 0 0 0.28)
			)
			(scale
				(xyz 1 1 1)
			)
			(rotate
				(xyz 0 0 0)
			)
		)
	)
	(gr_rect
		(start -0.2 -10.2)
		(end 10.2 0.2)
		(stroke
			(width 0.1)
			(type default)
		)
		(fill no)
		(layer "Edge.Cuts")
		(uuid "7194b5fb-6621-4dd2-a152-6fe5ab8e352f")
	)
	(gr_text "VIN"
		(at 1 -7.4 0)
		(layer "F.SilkS" knockout)
		(uuid "7bab3265-5db2-4b82-9e18-0eb5fb9bee42")
		(effects
			(font
				(size 0.5 0.5)
				(thickness 0.125)
			)
			(justify bottom)
		)
	)
	(gr_text "GND"
		(at 2.6 -0.1 0)
		(layer "F.SilkS" knockout)
		(uuid "938b00f8-f046-4abd-91c3-628aa426f6de")
		(effects
			(font
				(size 0.5 0.5)
				(thickness 0.125)
			)
			(justify bottom)
		)
	)
	(gr_text "${board_name}"
		(at 5 -16 0)
		(layer "F.SilkS" knockout)
		(uuid "a43ce693-1e6a-4807-858e-962c4754819d")
		(effects
			(font
				(size 0.5 0.5)
				(thickness 0.125)
			)
			(justify bottom)
		)
	)
	(gr_text "3.3V\nOUT"
		(at 9.2 -6.65 0)
		(layer "F.SilkS" knockout)
		(uuid "c39433e4-aed8-4599-b876-f89cdeba3f76")
		(effects
			(font
				(size 0.5 0.5)
				(thickness 0.125)
			)
			(justify bottom)
		)
	)
	(gr_text "GND"
		(at 7.45 -0.1 0)
		(layer "F.SilkS" knockout)
		(uuid "ff7cf3ab-d71d-42fe-aaf0-3fe9b2ff6b98")
		(effects
			(font
				(size 0.5 0.5)
				(thickness 0.125)
			)
			(justify bottom)
		)
	)
	(gr_text "Molecule\n${board_name}\nDesign ${CURRENT_DATE}"
		(at 5.9 -3.1 0)
		(layer "B.SilkS" knockout)
		(uuid "a3bbe43b-21a8-49aa-975b-497c11d634fe")
		(effects
			(font
				(size 0.5 0.45)
				(thickness 0.1125)
			)
			(justify mirror)
		)
	)
	(segment
		(start 7.3 -2.45)
		(end 7.55 -2.45)
		(width 1)
		(layer "F.Cu")
		(net 1)
		(uuid "67b1b520-711e-4d9d-a3d9-56a07114ee02")
	)
	(segment
		(start 7.3 -2.45)
		(end 7.3 -4)
		(width 0.25)
		(layer "F.Cu")
		(net 1)
		(uuid "c727a8da-6a7a-49df-8bf3-398b9cd705f3")
	)
	(segment
		(start 1 -9)
		(end 1 -7.6)
		(width 0.25)
		(layer "F.Cu")
		(net 1)
		(uuid "cc6ae5c4-8e0e-4f12-bef7-1e8d4bef1fee")
	)
	(via
		(at 7.6 -5)
		(size 0.6)
		(drill 0.3)
		(layers "F.Cu" "B.Cu")
		(net 1)
		(uuid "043344fa-3a06-4f4f-809e-20c9c135927f")
	)
	(via
		(at 2.2 -5.8)
		(size 0.6)
		(drill 0.3)
		(layers "F.Cu" "B.Cu")
		(net 1)
		(uuid "048d34fa-c809-4c51-8194-5da109d3979a")
	)
	(via
		(at 1.6 -5.2)
		(size 0.6)
		(drill 0.3)
		(layers "F.Cu" "B.Cu")
		(net 1)
		(uuid "0eee8975-31f2-4e92-9bee-6e816168447e")
	)
	(via
		(at 8.2 -4.4)
		(size 0.6)
		(drill 0.3)
		(layers "F.Cu" "B.Cu")
		(net 1)
		(uuid "106af917-d168-452c-87bb-23c15c3a746c")
	)
	(via
		(at 1 -5.2)
		(size 0.6)
		(drill 0.3)
		(layers "F.Cu" "B.Cu")
		(net 1)
		(uuid "1a13df63-8530-4a1b-b82c-2dc48d61e817")
	)
	(via
		(at 7 -5)
		(size 0.6)
		(drill 0.3)
		(layers "F.Cu" "B.Cu")
		(net 1)
		(uuid "253e1a67-d65e-4caf-abb5-3faf16ebb483")
	)
	(via
		(at 6.4 -4.4)
		(size 0.6)
		(drill 0.3)
		(layers "F.Cu" "B.Cu")
		(net 1)
		(uuid "2df64e4f-53c8-454b-acc8-a4792f0dd747")
	)
	(via
		(at 0.4 -5.8)
		(size 0.6)
		(drill 0.3)
		(layers "F.Cu" "B.Cu")
		(net 1)
		(uuid "3743b79d-727f-4b4d-896f-2a53d58b1fde")
	)
	(via
		(at 2.2 -7)
		(size 0.6)
		(drill 0.3)
		(layers "F.Cu" "B.Cu")
		(net 1)
		(uuid "3ce8158e-3286-4463-95c6-6c7ac41aa7f9")
	)
	(via
		(at 8.2 -5.6)
		(size 0.6)
		(drill 0.3)
		(layers "F.Cu" "B.Cu")
		(net 1)
		(uuid "49dd9718-15e3-4742-80f3-9afc3b20811b")
	)
	(via
		(at 0.4 -5.2)
		(size 0.6)
		(drill 0.3)
		(layers "F.Cu" "B.Cu")
		(net 1)
		(uuid "5f8a4e03-5fe5-4e93-8cc1-ce449a446068")
	)
	(via
		(at 1 -4.6)
		(size 0.6)
		(drill 0.3)
		(layers "F.Cu" "B.Cu")
		(net 1)
		(uuid "609cbd2e-8be5-4c41-a847-479bf8da57f2")
	)
	(via
		(at 0.4 -4.6)
		(size 0.6)
		(drill 0.3)
		(layers "F.Cu" "B.Cu")
		(net 1)
		(uuid "61d233ee-28b9-4203-99b1-fe3508f11973")
	)
	(via
		(at 1.6 -5.8)
		(size 0.6)
		(drill 0.3)
		(layers "F.Cu" "B.Cu")
		(net 1)
		(uuid "699ab299-789f-4bf2-a103-6a49a5ddf15f")
	)
	(via
		(at 1 -5.8)
		(size 0.6)
		(drill 0.3)
		(layers "F.Cu" "B.Cu")
		(net 1)
		(uuid "73a3227f-c6c8-45e7-a6b5-220585737758")
	)
	(via
		(at 7 -5.6)
		(size 0.6)
		(drill 0.3)
		(layers "F.Cu" "B.Cu")
		(net 1)
		(uuid "73d1ba09-2de2-49ac-98d1-c4ffb93aa28e")
	)
	(via
		(at 1 -7)
		(size 0.6)
		(drill 0.3)
		(layers "F.Cu" "B.Cu")
		(net 1)
		(uuid "7aa6edd6-7091-4e3e-a8c0-699ec30003f3")
	)
	(via
		(at 2.2 -6.4)
		(size 0.6)
		(drill 0.3)
		(layers "F.Cu" "B.Cu")
		(net 1)
		(uuid "81d8085a-a817-4bf7-9a71-6c9928354882")
	)
	(via
		(at 0.4 -6.4)
		(size 0.6)
		(drill 0.3)
		(layers "F.Cu" "B.Cu")
		(net 1)
		(uuid "822d0f21-f663-478b-8794-00d4f14c35b3")
	)
	(via
		(at 2.2 -5.2)
		(size 0.6)
		(drill 0.3)
		(layers "F.Cu" "B.Cu")
		(net 1)
		(uuid "9a83e543-aa10-46e7-80a0-aeabbf28708a")
	)
	(via
		(at 7.6 -5.6)
		(size 0.6)
		(drill 0.3)
		(layers "F.Cu" "B.Cu")
		(net 1)
		(uuid "a3d5054c-1efc-4141-9804-27642f796fd9")
	)
	(via
		(at 1.6 -6.4)
		(size 0.6)
		(drill 0.3)
		(layers "F.Cu" "B.Cu")
		(net 1)
		(uuid "a706c41d-a998-48ea-af4e-9e3d0608c089")
	)
	(via
		(at 1 -6.4)
		(size 0.6)
		(drill 0.3)
		(layers "F.Cu" "B.Cu")
		(net 1)
		(uuid "b81d2c28-8bcc-46d6-b319-cf3255e4aaa7")
	)
	(via
		(at 7.6 -4.4)
		(size 0.6)
		(drill 0.3)
		(layers "F.Cu" "B.Cu")
		(net 1)
		(uuid "c0771570-b0c9-47f1-be00-59a654548285")
	)
	(via
		(at 2.2 -4.6)
		(size 0.6)
		(drill 0.3)
		(layers "F.Cu" "B.Cu")
		(net 1)
		(uuid "c948cc56-49e8-4de4-b5de-c474413a221c")
	)
	(via
		(at 0.4 -7)
		(size 0.6)
		(drill 0.3)
		(layers "F.Cu" "B.Cu")
		(net 1)
		(uuid "ca4563db-929a-4cf3-937b-b9ac122c801b")
	)
	(via
		(at 1.6 -7)
		(size 0.6)
		(drill 0.3)
		(layers "F.Cu" "B.Cu")
		(net 1)
		(uuid "dc3bdcc1-406e-4a65-8f3e-36dd4ea9a537")
	)
	(via
		(at 1.6 -4.6)
		(size 0.6)
		(drill 0.3)
		(layers "F.Cu" "B.Cu")
		(net 1)
		(uuid "e648034d-ceb4-4dac-a7d3-0c8e62b61df3")
	)
	(via
		(at 6.4 -5.6)
		(size 0.6)
		(drill 0.3)
		(layers "F.Cu" "B.Cu")
		(net 1)
		(uuid "ed4b83e2-9738-4cfa-b65d-b7b990bd46c7")
	)
	(via
		(at 7 -4.4)
		(size 0.6)
		(drill 0.3)
		(layers "F.Cu" "B.Cu")
		(net 1)
		(uuid "f6afcd4d-f2b5-4c39-9cd7-edf990ae9716")
	)
	(via
		(at 8.2 -5)
		(size 0.6)
		(drill 0.3)
		(layers "F.Cu" "B.Cu")
		(net 1)
		(uuid "fea43767-5432-4ba3-88ea-cd0510be57db")
	)
	(via
		(at 6.4 -5)
		(size 0.6)
		(drill 0.3)
		(layers "F.Cu" "B.Cu")
		(net 1)
		(uuid "ffcd03fd-9cf0-4c46-a7a2-e71fbf0c74e1")
	)
	(segment
		(start 9 -9)
		(end 9 -7)
		(width 0.5)
		(layer "F.Cu")
		(net 2)
		(uuid "1d8fd6b1-c410-4721-9ce8-cb56c9584a13")
	)
	(segment
		(start 4.75 -9)
		(end 5 -8.75)
		(width 1)
		(layer "F.Cu")
		(net 2)
		(uuid "83fd88fe-012f-4361-ba0a-2035a3148966")
	)
	(segment
		(start 5.25 -9)
		(end 9 -9)
		(width 1)
		(layer "F.Cu")
		(net 2)
		(uuid "c5c0db86-4feb-4c8c-95a9-64eb7220f473")
	)
	(segment
		(start 5 -2.45)
		(end 5 -8.75)
		(width 1)
		(layer "F.Cu")
		(net 2)
		(uuid "c7e5df7d-5a66-4751-803b-b41b4c3223e9")
	)
	(segment
		(start 5 -8.75)
		(end 5.25 -9)
		(width 1)
		(layer "F.Cu")
		(net 2)
		(uuid "fc81397c-0d68-4073-87c6-4dd4b62d1b24")
	)
	(segment
		(start 2.7 -2.45)
		(end 2.45 -2.45)
		(width 1)
		(layer "F.Cu")
		(net 3)
		(uuid "1f447966-2cb1-405a-a900-8047b253cd91")
	)
	(segment
		(start 8.6 -0.3)
		(end 6.4 -0.3)
		(width 0.25)
		(layer "F.Cu")
		(net 3)
		(uuid "3a7aada3-9bee-4c25-9bc7-f4f9cc754a3c")
	)
	(segment
		(start 9 -0.7)
		(end 8.6 -0.3)
		(width 0.25)
		(layer "F.Cu")
		(net 3)
		(uuid "538e73a9-9155-4c08-84c5-a7d571d66544")
	)
	(segment
		(start 9.3 -2.35)
		(end 9.7 -1.95)
		(width 0.5)
		(layer "F.Cu")
		(net 3)
		(uuid "5506ecb4-5fe3-435a-b1cd-86eb18794af8")
	)
	(segment
		(start 9 -1)
		(end 9 -0.7)
		(width 0.25)
		(layer "F.Cu")
		(net 3)
		(uuid "60b0b9c4-0ce8-4a3c-82ce-40ee91611ef9")
	)
	(segment
		(start 9.3 -1.3)
		(end 9.3 -2.35)
		(width 0.5)
		(layer "F.Cu")
		(net 3)
		(uuid "ac47e60f-f1af-4144-a0ab-b89d3f2c0ed7")
	)
	(segment
		(start 9 -1)
		(end 9.3 -1.3)
		(width 0.5)
		(layer "F.Cu")
		(net 3)
		(uuid "cbcf0fd9-3c3c-41b4-a23d-3208ae789776")
	)
	(segment
		(start 9.3 -2.7)
		(end 9.3 -2.35)
		(width 0.5)
		(layer "F.Cu")
		(net 3)
		(uuid "cf21ef75-5665-4193-b837-89597fe42bc6")
	)
	(via
		(at 5.8 -0.4)
		(size 0.6)
		(drill 0.3)
		(layers "F.Cu" "B.Cu")
		(net 3)
		(uuid "14cf3c95-869c-4e62-8857-f3a08a1901b0")
	)
	(via
		(at 0.4 -2.05)
		(size 0.6)
		(drill 0.3)
		(layers "F.Cu" "B.Cu")
		(net 3)
		(uuid "1e840c64-f5a9-4f66-92a8-56ec2fe404bb")
	)
	(via
		(at 0.4 -2.65)
		(size 0.6)
		(drill 0.3)
		(layers "F.Cu" "B.Cu")
		(net 3)
		(uuid "2a67d3b4-f32e-4ddc-aba5-5debc46d2fd1")
	)
	(via
		(at 4 -0.4)
		(size 0.6)
		(drill 0.3)
		(layers "F.Cu" "B.Cu")
		(net 3)
		(uuid "3b1c3592-edba-489c-a31c-3f2a00533081")
	)
	(via
		(at 5.2 -0.4)
		(size 0.6)
		(drill 0.3)
		(layers "F.Cu" "B.Cu")
		(net 3)
		(uuid "3b78170d-e977-44cc-a73e-646c794ea0a6")
	)
	(via
		(at 1 -2.65)
		(size 0.6)
		(drill 0.3)
		(layers "F.Cu" "B.Cu")
		(net 3)
		(uuid "66169923-e334-4727-b2ab-82e36236a01e")
	)
	(via
		(at 2.8 -1.1)
		(size 0.6)
		(drill 0.3)
		(layers "F.Cu" "B.Cu")
		(net 3)
		(uuid "6b235c73-309b-40a8-b0ae-022737f69dbc")
	)
	(via
		(at 3.4 -1.1)
		(size 0.6)
		(drill 0.3)
		(layers "F.Cu" "B.Cu")
		(net 3)
		(uuid "7b91f892-f365-43f7-a8ec-55ef6cc7d146")
	)
	(via
		(at 9.7 -1.95)
		(size 0.6)
		(drill 0.3)
		(layers "F.Cu" "B.Cu")
		(net 3)
		(uuid "9a39cac5-2eb6-47b1-a408-cf8aad50c97d")
	)
	(via
		(at 6.4 -0.4)
		(size 0.6)
		(drill 0.3)
		(layers "F.Cu" "B.Cu")
		(net 3)
		(uuid "b32e5f05-de07-49fe-bdd0-9de7e6c94a90")
	)
	(via
		(at 0.4 -3.25)
		(size 0.6)
		(drill 0.3)
		(layers "F.Cu" "B.Cu")
		(net 3)
		(uuid "c35243eb-f537-491c-82de-5cda54e65325")
	)
	(via
		(at 1 -3.25)
		(size 0.6)
		(drill 0.3)
		(layers "F.Cu" "B.Cu")
		(net 3)
		(uuid "d32fed87-0144-487c-8a91-c32c03535fdc")
	)
	(via
		(at 1.6 -2.05)
		(size 0.6)
		(drill 0.3)
		(layers "F.Cu" "B.Cu")
		(net 3)
		(uuid "df92ab27-d045-4eb3-a99b-14a18653e136")
	)
	(via
		(at 4.6 -0.4)
		(size 0.6)
		(drill 0.3)
		(layers "F.Cu" "B.Cu")
		(net 3)
		(uuid "e5c8e26e-ba40-4746-a3e1-b152a42edbf3")
	)
	(via
		(at 1.6 -2.65)
		(size 0.6)
		(drill 0.3)
		(layers "F.Cu" "B.Cu")
		(net 3)
		(uuid "eecd6bfb-19ed-4548-bfcf-4b53ac908663")
	)
	(via
		(at 2.2 -1.1)
		(size 0.6)
		(drill 0.3)
		(layers "F.Cu" "B.Cu")
		(net 3)
		(uuid "efbd7c82-9ba3-452a-bb70-cbaec081e391")
	)
	(via
		(at 1.6 -3.25)
		(size 0.6)
		(drill 0.3)
		(layers "F.Cu" "B.Cu")
		(net 3)
		(uuid "fc62d10f-6137-482a-b4ac-1ebcd914c913")
	)
	(segment
		(start 1 -1)
		(end 2 -1)
		(width 0.5)
		(layer "B.Cu")
		(net 3)
		(uuid "3ac1b7b1-7535-4c78-8539-6e59e8077bf5")
	)
	(segment
		(start 1 -1)
		(end 1 -3)
		(width 0.5)
		(layer "B.Cu")
		(net 3)
		(uuid "b7539cb5-0298-4b07-bf5a-1b82a8576772")
	)
	(segment
		(start 2 -1)
		(end 3 -1)
		(width 0.5)
		(layer "B.Cu")
		(net 3)
		(uuid "b8031a6d-a6b3-48aa-801c-5609b66b9605")
	)
	(segment
		(start 9.3 -5.35)
		(end 9.3 -4.275)
		(width 0.4)
		(layer "F.Cu")
		(net 4)
		(uuid "ba4c43f4-a563-417c-a5ab-7584e681e247")
	)
	(zone
		(net 2)
		(net_name "+3.3V")
		(layer "F.Cu")
		(uuid "126bf0f6-6ba5-499b-b8c6-56d0238c373e")
		(hatch edge 0.5)
		(connect_pads yes
			(clearance 0.25)
		)
		(min_thickness 0.25)
		(filled_areas_thickness no)
		(fill yes
			(thermal_gap 0.25)
			(thermal_bridge_width 0.5)
		)
		(polygon
			(pts
				(xy 3 -1.3) (xy 10 -1.3) (xy 10 -10) (xy 3 -10)
			)
		)
		(filled_polygon
			(layer "F.Cu")
			(pts
				(xy 9.942539 -9.979815) (xy 9.988294 -9.927011) (xy 9.9995 -9.8755) (xy 9.9995 -5.815041) (xy 9.979815 -5.748002)
				(xy 9.927011 -5.702247) (xy 9.857853 -5.692303) (xy 9.794297 -5.721328) (xy 9.787819 -5.72736) (xy 9.712102 -5.803076)
				(xy 9.712099 -5.803078) (xy 9.65431 -5.831329) (xy 9.596518 -5.859582) (xy 9.521582 -5.8705) (xy 9.521577 -5.8705)
				(xy 9.249288 -5.8705) (xy 9.182249 -5.890185) (xy 9.136494 -5.942989) (xy 9.130954 -5.957446) (xy 9.129251 -5.962884)
				(xy 9.114872 -6.008806) (xy 9.081387 -6.070129) (xy 9.037804 -6.128348) (xy 9.022373 -6.143777)
				(xy 8.99865 -6.177001) (xy 8.966547 -6.242673) (xy 8.927882 -6.300304) (xy 8.88352 -6.350159) (xy 8.852965 -6.379257)
				(xy 8.76463 -6.425465) (xy 8.764628 -6.425465) (xy 8.764628 -6.425466) (xy 8.720391 -6.438455) (xy 8.697591 -6.44515)
				(xy 8.625606 -6.4555) (xy 6.124 -6.4555) (xy 6.069687 -6.449661) (xy 6.018176 -6.438455) (xy 5.991802 -6.431219)
				(xy 5.991798 -6.431216) (xy 5.991796 -6.431216) (xy 5.905181 -6.381894) (xy 5.905176 -6.38189) (xy 5.905172 -6.381888)
				(xy 5.852368 -6.336133) (xy 5.820743 -6.303359) (xy 5.774535 -6.215024) (xy 5.774534 -6.215022)
				(xy 5.774533 -6.215022) (xy 5.754851 -6.14799) (xy 5.754848 -6.147978) (xy 5.7445 -6.076001) (xy 5.7445 -3.485857)
				(xy 5.744809 -3.473265) (xy 5.74485 -3.472437) (xy 5.745 -3.466346) (xy 5.745 -1.579) (xy 5.725315 -1.511961)
				(xy 5.672511 -1.466206) (xy 5.621 -1.455) (xy 4.379 -1.455) (xy 4.311961 -1.474685) (xy 4.266206 -1.527489)
				(xy 4.255 -1.579) (xy 4.255 -3.466346) (xy 4.25515 -3.472437) (xy 4.255152 -3.472481) (xy 4.255192 -3.473292)
				(xy 4.2555 -3.485841) (xy 4.2555 -3.876) (xy 4.249661 -3.930313) (xy 4.238455 -3.981824) (xy 4.231219 -4.008198)
				(xy 4.181888 -4.094828) (xy 4.136133 -4.147632) (xy 4.103359 -4.179257) (xy 4.015024 -4.225465)
				(xy 4.015022 -4.225465) (xy 4.015022 -4.225466) (xy 3.985731 -4.234066) (xy 3.947985 -4.24515) (xy 3.876 -4.2555)
				(xy 3.875998 -4.2555) (xy 3.374377 -4.2555) (xy 3.307338 -4.275185) (xy 3.261583 -4.327989) (xy 3.251639 -4.397147)
				(xy 3.2555 -4.424) (xy 3.2555 -7.449264) (xy 3.2555 -7.449271) (xy 3.250137 -7.501331) (xy 3.250136 -7.501343)
				(xy 3.239832 -7.550833) (xy 3.233523 -7.575101) (xy 3.185746 -7.662598) (xy 3.140941 -7.71621) (xy 3.140927 -7.716222)
				(xy 3.139781 -7.717411) (xy 3.139519 -7.71791) (xy 3.1381 -7.719609) (xy 3.138469 -7.719917) (xy 3.107386 -7.779317)
				(xy 3.105 -7.803527) (xy 3.105 -9.737299) (xy 3.105589 -9.749375) (xy 3.106185 -9.755468) (xy 3.115334 -9.801463)
				(xy 3.116575 -9.80817) (xy 3.117696 -9.814714) (xy 3.118604 -9.882386) (xy 3.119112 -9.887576) (xy 3.1303 -9.915333)
				(xy 3.139116 -9.943933) (xy 3.143223 -9.947396) (xy 3.145232 -9.95238) (xy 3.169655 -9.969685) (xy 3.19253 -9.988975)
				(xy 3.198716 -9.990277) (xy 3.202241 -9.992775) (xy 3.212865 -9.993256) (xy 3.242523 -9.9995) (xy 9.8755 -9.9995)
			)
		)
	)
	(zone
		(net 1)
		(net_name "VIN")
		(layer "F.Cu")
		(uuid "46714d05-873a-4c58-905f-3f42db6c63f7")
		(hatch edge 0.5)
		(priority 3)
		(connect_pads yes
			(clearance 0.25)
		)
		(min_thickness 0.25)
		(filled_areas_thickness no)
		(fill yes
			(thermal_gap 0.25)
			(thermal_bridge_width 0.5)
		)
		(polygon
			(pts
				(xy 6 -1) (xy 6 -1.2) (xy 6 -1.2) (xy 6 -6.2) (xy 10 -6.2) (xy 10 -1)
			)
		)
		(filled_polygon
			(layer "F.Cu")
			(pts
				(xy 8.692645 -6.180315) (xy 8.737007 -6.13046) (xy 8.796924 -6.007896) (xy 8.85714 -5.947681) (xy 8.890625 -5.886358)
				(xy 8.885641 -5.816666) (xy 8.85714 -5.772319) (xy 8.796923 -5.712102) (xy 8.796921 -5.712099) (xy 8.740419 -5.596521)
				(xy 8.740418 -5.596518) (xy 8.7295 -5.521582) (xy 8.7295 -5.178418) (xy 8.738598 -5.115971) (xy 8.740418 -5.103481)
				(xy 8.785039 -5.012208) (xy 8.796798 -4.943335) (xy 8.769454 -4.879038) (xy 8.747954 -4.858486)
				(xy 8.708528 -4.828972) (xy 8.708527 -4.82897) (xy 8.627664 -4.72095) (xy 8.627662 -4.720947) (xy 8.580509 -4.594524)
				(xy 8.5745 -4.538644) (xy 8.5745 -4.011355) (xy 8.580509 -3.955475) (xy 8.630763 -3.82074) (xy 8.629254 -3.820177)
				(xy 8.64195 -3.761809) (xy 8.617531 -3.696345) (xy 8.599474 -3.676951) (xy 8.552368 -3.636133) (xy 8.520743 -3.603359)
				(xy 8.474535 -3.515024) (xy 8.474534 -3.515022) (xy 8.474533 -3.515022) (xy 8.454851 -3.44799) (xy 8.454848 -3.447978)
				(xy 8.4445 -3.376001) (xy 8.4445 -1.958531) (xy 8.424815 -1.891492) (xy 8.38939 -1.855429) (xy 8.350818 -1.829656)
				(xy 8.330346 -1.815978) (xy 8.330341 -1.815974) (xy 8.184025 -1.669658) (xy 8.184023 -1.669655)
				(xy 8.135091 -1.596423) (xy 8.113669 -1.575001) (xy 8.081894 -1.536282) (xy 8.054828 -1.47094) (xy 8.048852 -1.46163)
				(xy 8.036862 -1.45123) (xy 8.023164 -1.432761) (xy 8.019333 -1.429617) (xy 8.009004 -1.414158) (xy 7.967646 -1.35226)
				(xy 7.963948 -1.346726) (xy 7.963947 -1.346723) (xy 7.9445 -1.248956) (xy 7.9445 -1.124) (xy 7.924815 -1.056961)
				(xy 7.872011 -1.011206) (xy 7.8205 -1) (xy 6.124 -1) (xy 6.056961 -1.019685) (xy 6.011206 -1.072489)
				(xy 6 -1.124) (xy 6 -1.414158) (xy 6.0005 -1.424336) (xy 6.0005 -3.475673) (xy 6 -3.485841) (xy 6 -6.076)
				(xy 6.019685 -6.143039) (xy 6.072489 -6.188794) (xy 6.124 -6.2) (xy 8.625606 -6.2)
			)
		)
	)
	(zone
		(net 3)
		(net_name "GND")
		(layer "F.Cu")
		(uuid "6e9ba62a-0df2-4319-b507-fcca0c2204c4")
		(hatch edge 0.5)
		(priority 3)
		(connect_pads yes
			(clearance 0.25)
		)
		(min_thickness 0.25)
		(filled_areas_thickness no)
		(fill yes
			(thermal_gap 0.25)
			(thermal_bridge_width 0.5)
		)
		(polygon
			(pts
				(xy 8.7 -1.8) (xy 8.2 -1.3) (xy 8.2 0.2) (xy 10.3 0.2) (xy 10.3 -3.5) (xy 8.7 -3.5)
			)
		)
		(filled_polygon
			(layer "F.Cu")
			(pts
				(xy 9.942539 -3.480315) (xy 9.988294 -3.427511) (xy 9.9995 -3.376) (xy 9.9995 -0.1245) (xy 9.979815 -0.057461)
				(xy 9.927011 -0.011706) (xy 9.8755 -0.0005) (xy 8.2 -0.0005) (xy 8.2 -1.248952) (xy 8.211748 -1.256802)
				(xy 8.230601 -1.269399) (xy 8.285966 -1.35226) (xy 8.294335 -1.394335) (xy 8.7 -1.8) (xy 8.7 -3.376)
				(xy 8.719685 -3.443039) (xy 8.772489 -3.488794) (xy 8.824 -3.5) (xy 9.8755 -3.5)
			)
		)
	)
	(zone
		(net 1)
		(net_name "VIN")
		(layer "F.Cu")
		(uuid "7d15387b-58ef-4802-8e81-48d5471e8839")
		(hatch edge 0.5)
		(priority 3)
		(connect_pads yes
			(clearance 0.25)
		)
		(min_thickness 0.25)
		(filled_areas_thickness no)
		(fill yes
			(thermal_gap 0.25)
			(thermal_bridge_width 0.5)
		)
		(polygon
			(pts
				(xy -0.2 -4.3) (xy -0.2 -10.2) (xy 3 -10.2) (xy 3 -4.3)
			)
		)
		(filled_polygon
			(layer "F.Cu")
			(pts
				(xy 2.810165 -9.979815) (xy 2.85592 -9.927011) (xy 2.865864 -9.857853) (xy 2.864743 -9.851309) (xy 2.8495 -9.774678)
				(xy 2.8495 -7.725321) (xy 2.864032 -7.652264) (xy 2.864033 -7.65226) (xy 2.919399 -7.569398) (xy 2.944891 -7.552366)
				(xy 2.989696 -7.498754) (xy 3 -7.449264) (xy 3 -4.424) (xy 2.980315 -4.356961) (xy 2.927511 -4.311206)
				(xy 2.876 -4.3) (xy 0.1245 -4.3) (xy 0.057461 -4.319685) (xy 0.011706 -4.372489) (xy 0.0005 -4.424)
				(xy 0.0005 -9.8755) (xy 0.020185 -9.942539) (xy 0.072989 -9.988294) (xy 0.1245 -9.9995) (xy 2.743126 -9.9995)
			)
		)
	)
	(zone
		(net 3)
		(net_name "GND")
		(layer "F.Cu")
		(uuid "b0b5227c-b74c-4c5e-a62d-dc0e4a772cf8")
		(hatch edge 0.5)
		(priority 2)
		(connect_pads yes
			(clearance 0.25)
		)
		(min_thickness 0.25)
		(filled_areas_thickness no)
		(fill yes
			(thermal_gap 0.25)
			(thermal_bridge_width 0.5)
		)
		(polygon
			(pts
				(xy 4 1) (xy 9 1) (xy 9 -2) (xy 4 -2)
			)
		)
		(filled_polygon
			(layer "F.Cu")
			(pts
				(xy 4.014032 -1.352264) (xy 4.014033 -1.35226) (xy 4.069399 -1.269399) (xy 4.15226 -1.214033) (xy 4.152264 -1.214032)
				(xy 4.225321 -1.1995) (xy 4.225326 -1.1995) (xy 5.624999 -1.1995) (xy 5.692038 -1.179815) (xy 5.737793 -1.127011)
				(xy 5.748289 -1.088755) (xy 5.750339 -1.069686) (xy 5.761543 -1.018181) (xy 5.761546 -1.018172)
				(xy 5.768779 -0.991807) (xy 5.768783 -0.991796) (xy 5.818105 -0.905181) (xy 5.818111 -0.905173)
				(xy 5.863863 -0.852371) (xy 5.89664 -0.820743) (xy 5.984977 -0.774534) (xy 5.984977 -0.774533) (xy 6.052009 -0.754851)
				(xy 6.052021 -0.754848) (xy 6.123998 -0.7445) (xy 6.124 -0.7445) (xy 7.820502 -0.7445) (xy 7.874812 -0.750338)
				(xy 7.926318 -0.761543) (xy 7.926324 -0.761545) (xy 7.935115 -0.763957) (xy 7.952692 -0.768779)
				(xy 7.952703 -0.768783) (xy 8.039318 -0.818105) (xy 8.039326 -0.818111) (xy 8.039328 -0.818112)
				(xy 8.069874 -0.84458) (xy 8.092128 -0.863863) (xy 8.123756 -0.89664) (xy 8.123757 -0.896641) (xy 8.169965 -0.984976)
				(xy 8.169965 -0.984977) (xy 8.169966 -0.984977) (xy 8.189648 -1.052009) (xy 8.189651 -1.052021)
				(xy 8.194932 -1.088755) (xy 8.2 -1.124) (xy 8.2 -0.0005) (xy 4 -0.0005) (xy 4 -1.422807)
			)
		)
		(filled_polygon
			(layer "F.Cu")
			(pts
				(xy 8.7 -1.8) (xy 8.315757 -1.415757) (xy 8.347527 -1.454469) (xy 8.347532 -1.454475) (xy 8.347537 -1.454482)
				(xy 8.347544 -1.454492) (xy 8.375699 -1.496629) (xy 8.391119 -1.51542) (xy 8.484576 -1.608878) (xy 8.503367 -1.624299)
				(xy 8.531337 -1.642988) (xy 8.57165 -1.676373) (xy 8.571662 -1.676384) (xy 8.572323 -1.677057) (xy 8.607086 -1.712446)
				(xy 8.615421 -1.721809) (xy 8.623754 -1.731168) (xy 8.623755 -1.731169) (xy 8.623757 -1.731172)
				(xy 8.669965 -1.819507) (xy 8.669966 -1.819508) (xy 8.689648 -1.88654) (xy 8.689651 -1.886552) (xy 8.691323 -1.898183)
				(xy 8.7 -1.958531)
			)
		)
	)
	(zone
		(net 3)
		(net_name "GND")
		(layer "F.Cu")
		(uuid "d0da079f-97ba-428c-8602-b329ff202e49")
		(hatch edge 0.5)
		(priority 2)
		(connect_pads yes
			(clearance 0.25)
		)
		(min_thickness 0.25)
		(filled_areas_thickness no)
		(fill yes
			(thermal_gap 0.25)
			(thermal_bridge_width 0.5)
		)
		(polygon
			(pts
				(xy -1 1) (xy 4 1) (xy 4 -4) (xy -1 -4)
			)
		)
		(filled_polygon
			(layer "F.Cu")
			(pts
				(xy 3.943039 -3.980315) (xy 3.988794 -3.927511) (xy 4 -3.876) (xy 4 -3.485841) (xy 3.9995 -3.475673)
				(xy 3.9995 -1.425321) (xy 4 -1.422807) (xy 4 -0.0005) (xy 0.1245 -0.0005) (xy 0.057461 -0.020185)
				(xy 0.011706 -0.072989) (xy 0.0005 -0.1245) (xy 0.0005 -3.876) (xy 0.020185 -3.943039) (xy 0.072989 -3.988794)
				(xy 0.1245 -4) (xy 3.876 -4)
			)
		)
	)
	(zone
		(net 1)
		(net_name "VIN")
		(layer "B.Cu")
		(uuid "4a046a61-7e72-4d46-9289-13a83bd059cb")
		(hatch edge 0.5)
		(priority 3)
		(connect_pads yes
			(clearance 0.25)
		)
		(min_thickness 0.25)
		(filled_areas_thickness no)
		(fill yes
			(thermal_gap 0.25)
			(thermal_bridge_width 0.5)
		)
		(polygon
			(pts
				(xy 0 -3.8) (xy 0 -10) (xy 10 -10) (xy 10 -3.8)
			)
		)
		(filled_polygon
			(layer "B.Cu")
			(pts
				(xy 8.281544 -9.979815) (xy 8.327299 -9.927011) (xy 8.337243 -9.857853) (xy 8.308218 -9.794297)
				(xy 8.302186 -9.787819) (xy 8.184024 -9.669657) (xy 8.069058 -9.497596) (xy 7.98987 -9.30642) (xy 7.989868 -9.306412)
				(xy 7.9495 -9.103469) (xy 7.9495 -8.89653) (xy 7.989868 -8.693587) (xy 7.98987 -8.693579) (xy 8.069058 -8.502403)
				(xy 8.184024 -8.330342) (xy 8.330342 -8.184024) (xy 8.502403 -8.069058) (xy 8.693579 -7.98987) (xy 8.693587 -7.989868)
				(xy 8.89653 -7.9495) (xy 8.896535 -7.9495) (xy 9.103469 -7.9495) (xy 9.306412 -7.989868) (xy 9.30642 -7.98987)
				(xy 9.497596 -8.069058) (xy 9.497598 -8.069059) (xy 9.583626 -8.126541) (xy 9.669657 -8.184024)
				(xy 9.787819 -8.302186) (xy 9.849142 -8.335671) (xy 9.918834 -8.330687) (xy 9.974767 -8.288815)
				(xy 9.999184 -8.223351) (xy 9.9995 -8.214505) (xy 9.9995 -3.924) (xy 9.979815 -3.856961) (xy 9.927011 -3.811206)
				(xy 9.8755 -3.8) (xy 1.674341 -3.8) (xy 1.672475 -3.8005) (xy 1.527525 -3.8005) (xy 1.525659 -3.8)
				(xy 1.084399 -3.8) (xy 1.07677 -3.8005) (xy 1.072475 -3.8005) (xy 0.927525 -3.8005) (xy 0.92323 -3.8005)
				(xy 0.915601 -3.8) (xy 0.474341 -3.8) (xy 0.472475 -3.8005) (xy 0.327525 -3.8005) (xy 0.325659 -3.8)
				(xy 0.1245 -3.8) (xy 0.057461 -3.819685) (xy 0.011706 -3.872489) (xy 0.0005 -3.924) (xy 0.0005 -9.8755)
				(xy 0.020185 -9.942539) (xy 0.072989 -9.988294) (xy 0.1245 -9.9995) (xy 8.214505 -9.9995)
			)
		)
	)
	(zone
		(net 3)
		(net_name "GND")
		(layer "B.Cu")
		(uuid "eaebcec0-f4e7-493a-8c0b-31500388c377")
		(hatch edge 0.5)
		(priority 1)
		(connect_pads yes
			(clearance 0.25)
		)
		(min_thickness 0.25)
		(filled_areas_thickness no)
		(fill yes
			(thermal_gap 0.25)
			(thermal_bridge_width 0.5)
		)
		(polygon
			(pts
				(xy -1 1) (xy 11 1) (xy 11 -3.7) (xy -1 -3.7)
			)
		)
		(filled_polygon
			(layer "B.Cu")
			(pts
				(xy 0.470765 -3.544734) (xy 0.474335 -3.5445) (xy 0.474341 -3.5445) (xy 0.915593 -3.5445) (xy 0.915601 -3.5445)
				(xy 0.926168 -3.544845) (xy 0.92886 -3.544934) (xy 0.932914 -3.545) (xy 1.067086 -3.545) (xy 1.07114 -3.544934)
				(xy 1.073831 -3.544845) (xy 1.084399 -3.5445) (xy 1.084407 -3.5445) (xy 1.525665 -3.5445) (xy 1.529235 -3.544734)
				(xy 1.537346 -3.545) (xy 1.662654 -3.545) (xy 1.670765 -3.544734) (xy 1.674335 -3.5445) (xy 9.8755 -3.5445)
				(xy 9.942539 -3.524815) (xy 9.988294 -3.472011) (xy 9.9995 -3.4205) (xy 9.9995 -0.1245) (xy 9.979815 -0.057461)
				(xy 9.927011 -0.011706) (xy 9.8755 -0.0005) (xy 0.1245 -0.0005) (xy 0.057461 -0.020185) (xy 0.011706 -0.072989)
				(xy 0.0005 -0.1245) (xy 0.0005 -3.4205) (xy 0.003009 -3.429045) (xy 0.001721 -3.437859) (xy 0.0127 -3.462051)
				(xy 0.020185 -3.487539) (xy 0.026915 -3.493371) (xy 0.030597 -3.501482) (xy 0.052913 -3.515898)
				(xy 0.072989 -3.533294) (xy 0.083351 -3.535561) (xy 0.089286 -3.539395) (xy 0.123637 -3.544374)
				(xy 0.124209 -3.5445) (xy 0.124495 -3.5445) (xy 0.1245 -3.5445) (xy 0.325659 -3.5445) (xy 0.329318 -3.544981)
				(xy 0.337055 -3.545) (xy 0.337084 -3.544991) (xy 0.337346 -3.545) (xy 0.462654 -3.545)
			)
		)
	)
	(group ""
		(uuid "9ccf1270-8a77-4818-b840-b37dbc2c0953")
		(members "043344fa-3a06-4f4f-809e-20c9c135927f" "106af917-d168-452c-87bb-23c15c3a746c"
			"253e1a67-d65e-4caf-abb5-3faf16ebb483" "2df64e4f-53c8-454b-acc8-a4792f0dd747"
			"49dd9718-15e3-4742-80f3-9afc3b20811b" "73d1ba09-2de2-49ac-98d1-c4ffb93aa28e"
			"a3d5054c-1efc-4141-9804-27642f796fd9" "c0771570-b0c9-47f1-be00-59a654548285"
			"ed4b83e2-9738-4cfa-b65d-b7b990bd46c7" "f6afcd4d-f2b5-4c39-9cd7-edf990ae9716"
			"fea43767-5432-4ba3-88ea-cd0510be57db" "ffcd03fd-9cf0-4c46-a7a2-e71fbf0c74e1"
		)
	)
	(embedded_fonts no)
)