PsuSwitchModule.kicad_pcb 320 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842
  1. (kicad_pcb (version 4) (host pcbnew 4.0.7)
  2. (general
  3. (links 151)
  4. (no_connects 0)
  5. (area 44.852857 22.700001 193.27 124.535001)
  6. (thickness 1.6)
  7. (drawings 32)
  8. (tracks 524)
  9. (zones 0)
  10. (modules 71)
  11. (nets 36)
  12. )
  13. (page A4)
  14. (title_block
  15. (title "Power Module (Control Board)")
  16. (date 2017-12-14)
  17. (rev "Release 0.1")
  18. (company "Enertechnos Ltd.")
  19. (comment 1 "FOR REVIEW")
  20. )
  21. (layers
  22. (0 F.Cu signal)
  23. (31 B.Cu signal)
  24. (33 F.Adhes user hide)
  25. (35 F.Paste user hide)
  26. (37 F.SilkS user)
  27. (38 B.Mask user)
  28. (39 F.Mask user)
  29. (40 Dwgs.User user)
  30. (41 Cmts.User user hide)
  31. (42 Eco1.User user hide)
  32. (43 Eco2.User user hide)
  33. (44 Edge.Cuts user)
  34. (45 Margin user hide)
  35. (47 F.CrtYd user)
  36. (49 F.Fab user hide)
  37. )
  38. (setup
  39. (last_trace_width 1)
  40. (trace_clearance 0.4)
  41. (zone_clearance 0.35)
  42. (zone_45_only no)
  43. (trace_min 1)
  44. (segment_width 0.2)
  45. (edge_width 0.15)
  46. (via_size 1.5)
  47. (via_drill 1)
  48. (via_min_size 1.5)
  49. (via_min_drill 0.3)
  50. (uvia_size 1)
  51. (uvia_drill 0.5)
  52. (uvias_allowed no)
  53. (uvia_min_size 1)
  54. (uvia_min_drill 0.1)
  55. (pcb_text_width 0.3)
  56. (pcb_text_size 1.5 1.5)
  57. (mod_edge_width 0.15)
  58. (mod_text_size 1 1)
  59. (mod_text_width 0.15)
  60. (pad_size 1.524 1.524)
  61. (pad_drill 0.762)
  62. (pad_to_mask_clearance 0.2)
  63. (aux_axis_origin 49.53 124.46)
  64. (visible_elements 7FFFEFFF)
  65. (pcbplotparams
  66. (layerselection 0x010e0_80000001)
  67. (usegerberextensions false)
  68. (excludeedgelayer true)
  69. (linewidth 0.100000)
  70. (plotframeref false)
  71. (viasonmask false)
  72. (mode 1)
  73. (useauxorigin true)
  74. (hpglpennumber 1)
  75. (hpglpenspeed 20)
  76. (hpglpendiameter 15)
  77. (hpglpenoverlay 2)
  78. (psnegative false)
  79. (psa4output false)
  80. (plotreference true)
  81. (plotvalue true)
  82. (plotinvisibletext false)
  83. (padsonsilk false)
  84. (subtractmaskfromsilk false)
  85. (outputformat 1)
  86. (mirror false)
  87. (drillshape 0)
  88. (scaleselection 1)
  89. (outputdirectory Plot/))
  90. )
  91. (net 0 "")
  92. (net 1 "Net-(C1-Pad1)")
  93. (net 2 "Net-(C10-Pad1)")
  94. (net 3 "Net-(C13-Pad1)")
  95. (net 4 "Net-(IC1-Pad2)")
  96. (net 5 "Net-(IC2-Pad2)")
  97. (net 6 "Net-(IC3-Pad2)")
  98. (net 7 "Net-(IC4-Pad2)")
  99. (net 8 DC_IN)
  100. (net 9 DC_GND)
  101. (net 10 ARD_GND)
  102. (net 11 "Net-(C20-Pad1)")
  103. (net 12 "Net-(C17-Pad1)")
  104. (net 13 "Net-(C19-Pad1)")
  105. (net 14 "Net-(C21-Pad1)")
  106. (net 15 "Net-(C23-Pad1)")
  107. (net 16 ARD_PWM_A)
  108. (net 17 ARD_PWM_B)
  109. (net 18 ARD_PWM_C)
  110. (net 19 ARD_PWM_D)
  111. (net 20 "Net-(C25-Pad1)")
  112. (net 21 "Net-(C26-Pad1)")
  113. (net 22 "Net-(C27-Pad1)")
  114. (net 23 "Net-(C28-Pad1)")
  115. (net 24 GND_ISO_1)
  116. (net 25 DRV_GATE_A)
  117. (net 26 GND_ISO_2)
  118. (net 27 DRV_GATE_B)
  119. (net 28 GND_ISO_3)
  120. (net 29 DRV_GATE_C)
  121. (net 30 GND_ISO_4)
  122. (net 31 DRV_GATE_D)
  123. (net 32 ARD_CUR)
  124. (net 33 ARD_VCC)
  125. (net 34 ARD_TEMP)
  126. (net 35 "Net-(J2-Pad3)")
  127. (net_class Default "This is the default net class."
  128. (clearance 0.4)
  129. (trace_width 1)
  130. (via_dia 1.5)
  131. (via_drill 1)
  132. (uvia_dia 1)
  133. (uvia_drill 0.5)
  134. (add_net ARD_CUR)
  135. (add_net ARD_GND)
  136. (add_net ARD_PWM_A)
  137. (add_net ARD_PWM_B)
  138. (add_net ARD_PWM_C)
  139. (add_net ARD_PWM_D)
  140. (add_net ARD_TEMP)
  141. (add_net ARD_VCC)
  142. (add_net DC_GND)
  143. (add_net DC_IN)
  144. (add_net DRV_GATE_A)
  145. (add_net DRV_GATE_B)
  146. (add_net DRV_GATE_C)
  147. (add_net DRV_GATE_D)
  148. (add_net GND_ISO_1)
  149. (add_net GND_ISO_2)
  150. (add_net GND_ISO_3)
  151. (add_net GND_ISO_4)
  152. (add_net "Net-(C1-Pad1)")
  153. (add_net "Net-(C10-Pad1)")
  154. (add_net "Net-(C13-Pad1)")
  155. (add_net "Net-(C17-Pad1)")
  156. (add_net "Net-(C19-Pad1)")
  157. (add_net "Net-(C20-Pad1)")
  158. (add_net "Net-(C21-Pad1)")
  159. (add_net "Net-(C23-Pad1)")
  160. (add_net "Net-(C25-Pad1)")
  161. (add_net "Net-(C26-Pad1)")
  162. (add_net "Net-(C27-Pad1)")
  163. (add_net "Net-(C28-Pad1)")
  164. (add_net "Net-(IC1-Pad2)")
  165. (add_net "Net-(IC2-Pad2)")
  166. (add_net "Net-(IC3-Pad2)")
  167. (add_net "Net-(IC4-Pad2)")
  168. (add_net "Net-(J2-Pad3)")
  169. )
  170. (module Connectors_JST:JST_XH_B03B-XH-A_03x2.50mm_Straight (layer F.Cu) (tedit 5A4B882C) (tstamp 5A328A2C)
  171. (at 91.52 118.142564)
  172. (descr "JST XH series connector, B03B-XH-A, top entry type, through hole")
  173. (tags "connector jst xh tht top vertical 2.50mm")
  174. (path /5A3469C9)
  175. (fp_text reference J101 (at 2.5 -3.5) (layer F.SilkS)
  176. (effects (font (size 1 1) (thickness 0.15)))
  177. )
  178. (fp_text value "Current Sensor" (at 2.5 5.047436) (layer F.SilkS)
  179. (effects (font (size 1 1) (thickness 0.15)))
  180. )
  181. (fp_line (start -2.45 -2.35) (end -2.45 3.4) (layer F.Fab) (width 0.1))
  182. (fp_line (start -2.45 3.4) (end 7.45 3.4) (layer F.Fab) (width 0.1))
  183. (fp_line (start 7.45 3.4) (end 7.45 -2.35) (layer F.Fab) (width 0.1))
  184. (fp_line (start 7.45 -2.35) (end -2.45 -2.35) (layer F.Fab) (width 0.1))
  185. (fp_line (start -2.95 -2.85) (end -2.95 3.9) (layer F.CrtYd) (width 0.05))
  186. (fp_line (start -2.95 3.9) (end 7.95 3.9) (layer F.CrtYd) (width 0.05))
  187. (fp_line (start 7.95 3.9) (end 7.95 -2.85) (layer F.CrtYd) (width 0.05))
  188. (fp_line (start 7.95 -2.85) (end -2.95 -2.85) (layer F.CrtYd) (width 0.05))
  189. (fp_line (start -2.55 -2.45) (end -2.55 3.5) (layer F.SilkS) (width 0.12))
  190. (fp_line (start -2.55 3.5) (end 7.55 3.5) (layer F.SilkS) (width 0.12))
  191. (fp_line (start 7.55 3.5) (end 7.55 -2.45) (layer F.SilkS) (width 0.12))
  192. (fp_line (start 7.55 -2.45) (end -2.55 -2.45) (layer F.SilkS) (width 0.12))
  193. (fp_line (start 0.75 -2.45) (end 0.75 -1.7) (layer F.SilkS) (width 0.12))
  194. (fp_line (start 0.75 -1.7) (end 4.25 -1.7) (layer F.SilkS) (width 0.12))
  195. (fp_line (start 4.25 -1.7) (end 4.25 -2.45) (layer F.SilkS) (width 0.12))
  196. (fp_line (start 4.25 -2.45) (end 0.75 -2.45) (layer F.SilkS) (width 0.12))
  197. (fp_line (start -2.55 -2.45) (end -2.55 -1.7) (layer F.SilkS) (width 0.12))
  198. (fp_line (start -2.55 -1.7) (end -0.75 -1.7) (layer F.SilkS) (width 0.12))
  199. (fp_line (start -0.75 -1.7) (end -0.75 -2.45) (layer F.SilkS) (width 0.12))
  200. (fp_line (start -0.75 -2.45) (end -2.55 -2.45) (layer F.SilkS) (width 0.12))
  201. (fp_line (start 5.75 -2.45) (end 5.75 -1.7) (layer F.SilkS) (width 0.12))
  202. (fp_line (start 5.75 -1.7) (end 7.55 -1.7) (layer F.SilkS) (width 0.12))
  203. (fp_line (start 7.55 -1.7) (end 7.55 -2.45) (layer F.SilkS) (width 0.12))
  204. (fp_line (start 7.55 -2.45) (end 5.75 -2.45) (layer F.SilkS) (width 0.12))
  205. (fp_line (start -2.55 -0.2) (end -1.8 -0.2) (layer F.SilkS) (width 0.12))
  206. (fp_line (start -1.8 -0.2) (end -1.8 2.75) (layer F.SilkS) (width 0.12))
  207. (fp_line (start -1.8 2.75) (end 2.5 2.75) (layer F.SilkS) (width 0.12))
  208. (fp_line (start 7.55 -0.2) (end 6.8 -0.2) (layer F.SilkS) (width 0.12))
  209. (fp_line (start 6.8 -0.2) (end 6.8 2.75) (layer F.SilkS) (width 0.12))
  210. (fp_line (start 6.8 2.75) (end 2.5 2.75) (layer F.SilkS) (width 0.12))
  211. (fp_line (start -0.35 -2.75) (end -2.85 -2.75) (layer F.SilkS) (width 0.12))
  212. (fp_line (start -2.85 -2.75) (end -2.85 -0.25) (layer F.SilkS) (width 0.12))
  213. (fp_line (start -0.35 -2.75) (end -2.85 -2.75) (layer F.Fab) (width 0.1))
  214. (fp_line (start -2.85 -2.75) (end -2.85 -0.25) (layer F.Fab) (width 0.1))
  215. (fp_text user %R (at 2.5 2.5) (layer F.Fab)
  216. (effects (font (size 1 1) (thickness 0.15)))
  217. )
  218. (pad 1 thru_hole rect (at 0 0) (size 1.75 1.75) (drill 1) (layers *.Cu *.Mask)
  219. (net 32 ARD_CUR))
  220. (pad 2 thru_hole circle (at 2.5 0) (size 1.75 1.75) (drill 1) (layers *.Cu *.Mask)
  221. (net 10 ARD_GND))
  222. (pad 3 thru_hole circle (at 5 0) (size 1.75 1.75) (drill 1) (layers *.Cu *.Mask)
  223. (net 33 ARD_VCC))
  224. (model Connectors_JST.3dshapes/JST_XH_B03B-XH-A_03x2.50mm_Straight.wrl
  225. (at (xyz 0 0 0))
  226. (scale (xyz 1 1 1))
  227. (rotate (xyz 0 0 0))
  228. )
  229. )
  230. (module Connectors_JST:JST_XH_B03B-XH-A_03x2.50mm_Straight (layer F.Cu) (tedit 5A4B8769) (tstamp 5A4B8B9E)
  231. (at 127.08 118.11)
  232. (descr "JST XH series connector, B03B-XH-A, top entry type, through hole")
  233. (tags "connector jst xh tht top vertical 2.50mm")
  234. (path /599EAAF2)
  235. (fp_text reference J2 (at 2.5 -3.5) (layer F.SilkS)
  236. (effects (font (size 1 1) (thickness 0.15)))
  237. )
  238. (fp_text value "Temperature Probe LM35" (at 3.73 5.08) (layer F.SilkS)
  239. (effects (font (size 1 1) (thickness 0.15)))
  240. )
  241. (fp_line (start -2.45 -2.35) (end -2.45 3.4) (layer F.Fab) (width 0.1))
  242. (fp_line (start -2.45 3.4) (end 7.45 3.4) (layer F.Fab) (width 0.1))
  243. (fp_line (start 7.45 3.4) (end 7.45 -2.35) (layer F.Fab) (width 0.1))
  244. (fp_line (start 7.45 -2.35) (end -2.45 -2.35) (layer F.Fab) (width 0.1))
  245. (fp_line (start -2.95 -2.85) (end -2.95 3.9) (layer F.CrtYd) (width 0.05))
  246. (fp_line (start -2.95 3.9) (end 7.95 3.9) (layer F.CrtYd) (width 0.05))
  247. (fp_line (start 7.95 3.9) (end 7.95 -2.85) (layer F.CrtYd) (width 0.05))
  248. (fp_line (start 7.95 -2.85) (end -2.95 -2.85) (layer F.CrtYd) (width 0.05))
  249. (fp_line (start -2.55 -2.45) (end -2.55 3.5) (layer F.SilkS) (width 0.12))
  250. (fp_line (start -2.55 3.5) (end 7.55 3.5) (layer F.SilkS) (width 0.12))
  251. (fp_line (start 7.55 3.5) (end 7.55 -2.45) (layer F.SilkS) (width 0.12))
  252. (fp_line (start 7.55 -2.45) (end -2.55 -2.45) (layer F.SilkS) (width 0.12))
  253. (fp_line (start 0.75 -2.45) (end 0.75 -1.7) (layer F.SilkS) (width 0.12))
  254. (fp_line (start 0.75 -1.7) (end 4.25 -1.7) (layer F.SilkS) (width 0.12))
  255. (fp_line (start 4.25 -1.7) (end 4.25 -2.45) (layer F.SilkS) (width 0.12))
  256. (fp_line (start 4.25 -2.45) (end 0.75 -2.45) (layer F.SilkS) (width 0.12))
  257. (fp_line (start -2.55 -2.45) (end -2.55 -1.7) (layer F.SilkS) (width 0.12))
  258. (fp_line (start -2.55 -1.7) (end -0.75 -1.7) (layer F.SilkS) (width 0.12))
  259. (fp_line (start -0.75 -1.7) (end -0.75 -2.45) (layer F.SilkS) (width 0.12))
  260. (fp_line (start -0.75 -2.45) (end -2.55 -2.45) (layer F.SilkS) (width 0.12))
  261. (fp_line (start 5.75 -2.45) (end 5.75 -1.7) (layer F.SilkS) (width 0.12))
  262. (fp_line (start 5.75 -1.7) (end 7.55 -1.7) (layer F.SilkS) (width 0.12))
  263. (fp_line (start 7.55 -1.7) (end 7.55 -2.45) (layer F.SilkS) (width 0.12))
  264. (fp_line (start 7.55 -2.45) (end 5.75 -2.45) (layer F.SilkS) (width 0.12))
  265. (fp_line (start -2.55 -0.2) (end -1.8 -0.2) (layer F.SilkS) (width 0.12))
  266. (fp_line (start -1.8 -0.2) (end -1.8 2.75) (layer F.SilkS) (width 0.12))
  267. (fp_line (start -1.8 2.75) (end 2.5 2.75) (layer F.SilkS) (width 0.12))
  268. (fp_line (start 7.55 -0.2) (end 6.8 -0.2) (layer F.SilkS) (width 0.12))
  269. (fp_line (start 6.8 -0.2) (end 6.8 2.75) (layer F.SilkS) (width 0.12))
  270. (fp_line (start 6.8 2.75) (end 2.5 2.75) (layer F.SilkS) (width 0.12))
  271. (fp_line (start -0.35 -2.75) (end -2.85 -2.75) (layer F.SilkS) (width 0.12))
  272. (fp_line (start -2.85 -2.75) (end -2.85 -0.25) (layer F.SilkS) (width 0.12))
  273. (fp_line (start -0.35 -2.75) (end -2.85 -2.75) (layer F.Fab) (width 0.1))
  274. (fp_line (start -2.85 -2.75) (end -2.85 -0.25) (layer F.Fab) (width 0.1))
  275. (fp_text user %R (at 2.5 2.5) (layer F.Fab)
  276. (effects (font (size 1 1) (thickness 0.15)))
  277. )
  278. (pad 1 thru_hole rect (at 0 0) (size 1.75 1.75) (drill 1) (layers *.Cu *.Mask)
  279. (net 33 ARD_VCC))
  280. (pad 2 thru_hole circle (at 2.5 0) (size 1.75 1.75) (drill 1) (layers *.Cu *.Mask)
  281. (net 34 ARD_TEMP))
  282. (pad 3 thru_hole circle (at 5 0) (size 1.75 1.75) (drill 1) (layers *.Cu *.Mask)
  283. (net 35 "Net-(J2-Pad3)"))
  284. (model Connectors_JST.3dshapes/JST_XH_B03B-XH-A_03x2.50mm_Straight.wrl
  285. (at (xyz 0 0 0))
  286. (scale (xyz 1 1 1))
  287. (rotate (xyz 0 0 0))
  288. )
  289. )
  290. (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59EF6824)
  291. (at 153.67 105.664)
  292. (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
  293. (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
  294. (path /59A712A3/59EF1A58)
  295. (fp_text reference R17 (at 3.81 -2.31) (layer F.SilkS)
  296. (effects (font (size 1 1) (thickness 0.15)))
  297. )
  298. (fp_text value R (at 3.81 2.31) (layer F.Fab)
  299. (effects (font (size 1 1) (thickness 0.15)))
  300. )
  301. (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
  302. (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
  303. (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
  304. (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
  305. (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
  306. (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
  307. (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
  308. (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
  309. (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
  310. (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
  311. (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
  312. (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
  313. (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
  314. (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
  315. (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
  316. (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
  317. (pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  318. (net 31 DRV_GATE_D))
  319. (pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  320. (net 30 GND_ISO_4))
  321. (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
  322. (at (xyz 0 0 0))
  323. (scale (xyz 0.3937 0.3937 0.3937))
  324. (rotate (xyz 0 0 0))
  325. )
  326. )
  327. (module Capacitors_THT:CP_Radial_Tantal_D4.5mm_P2.50mm (layer F.Cu) (tedit 597C781B) (tstamp 59EF6724)
  328. (at 163.83 91.44)
  329. (descr "CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf")
  330. (tags "CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor")
  331. (path /59A712A3/59EF1DD4)
  332. (fp_text reference C24 (at 1.25 -3.56) (layer F.SilkS)
  333. (effects (font (size 1 1) (thickness 0.15)))
  334. )
  335. (fp_text value 100nF (at 1.25 3.56) (layer F.Fab)
  336. (effects (font (size 1 1) (thickness 0.15)))
  337. )
  338. (fp_arc (start 1.25 0) (end -0.770693 -1.18) (angle 119.4) (layer F.SilkS) (width 0.12))
  339. (fp_arc (start 1.25 0) (end -0.770693 1.18) (angle -119.4) (layer F.SilkS) (width 0.12))
  340. (fp_arc (start 1.25 0) (end 3.270693 -1.18) (angle 60.6) (layer F.SilkS) (width 0.12))
  341. (fp_circle (center 1.25 0) (end 3.5 0) (layer F.Fab) (width 0.1))
  342. (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
  343. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
  344. (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
  345. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
  346. (fp_line (start -1.35 -2.6) (end -1.35 2.6) (layer F.CrtYd) (width 0.05))
  347. (fp_line (start -1.35 2.6) (end 3.85 2.6) (layer F.CrtYd) (width 0.05))
  348. (fp_line (start 3.85 2.6) (end 3.85 -2.6) (layer F.CrtYd) (width 0.05))
  349. (fp_line (start 3.85 -2.6) (end -1.35 -2.6) (layer F.CrtYd) (width 0.05))
  350. (fp_text user %R (at 1.25 0) (layer F.Fab)
  351. (effects (font (size 1 1) (thickness 0.15)))
  352. )
  353. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  354. (net 3 "Net-(C13-Pad1)"))
  355. (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  356. (net 30 GND_ISO_4))
  357. (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D4.5mm_P2.50mm.wrl
  358. (at (xyz 0 0 0))
  359. (scale (xyz 1 1 1))
  360. (rotate (xyz 0 0 0))
  361. )
  362. )
  363. (module Mounting_Holes:MountingHole_4.3mm_M4 (layer F.Cu) (tedit 59A7ED1B) (tstamp 59A7F102)
  364. (at 170.18 107.95)
  365. (descr "Mounting Hole 4.3mm, no annular, M4")
  366. (tags "mounting hole 4.3mm no annular m4")
  367. (fp_text reference "" (at 0 -5.3) (layer F.SilkS)
  368. (effects (font (size 1 1) (thickness 0.15)))
  369. )
  370. (fp_text value MountingHole_4.3mm_M4 (at 0 5.3) (layer F.Fab)
  371. (effects (font (size 1 1) (thickness 0.15)))
  372. )
  373. (fp_circle (center 0 0) (end 4.3 0) (layer Cmts.User) (width 0.15))
  374. (fp_circle (center 0 0) (end 4.55 0) (layer F.CrtYd) (width 0.05))
  375. (pad 1 np_thru_hole circle (at 0 0) (size 4.3 4.3) (drill 4.3) (layers *.Cu *.Mask))
  376. )
  377. (module Capacitors_THT:CP_Radial_Tantal_D4.5mm_P2.50mm (layer F.Cu) (tedit 597C781B) (tstamp 59A6EB07)
  378. (at 157.52 91.44)
  379. (descr "CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf")
  380. (tags "CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor")
  381. (path /59A712A3/59A6D3E0)
  382. (fp_text reference C14 (at 1.25 -3.56) (layer F.SilkS)
  383. (effects (font (size 1 1) (thickness 0.15)))
  384. )
  385. (fp_text value 100nF (at 1.25 3.56) (layer F.Fab)
  386. (effects (font (size 1 1) (thickness 0.15)))
  387. )
  388. (fp_arc (start 1.25 0) (end -0.770693 -1.18) (angle 119.4) (layer F.SilkS) (width 0.12))
  389. (fp_arc (start 1.25 0) (end -0.770693 1.18) (angle -119.4) (layer F.SilkS) (width 0.12))
  390. (fp_arc (start 1.25 0) (end 3.270693 -1.18) (angle 60.6) (layer F.SilkS) (width 0.12))
  391. (fp_circle (center 1.25 0) (end 3.5 0) (layer F.Fab) (width 0.1))
  392. (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
  393. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
  394. (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
  395. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
  396. (fp_line (start -1.35 -2.6) (end -1.35 2.6) (layer F.CrtYd) (width 0.05))
  397. (fp_line (start -1.35 2.6) (end 3.85 2.6) (layer F.CrtYd) (width 0.05))
  398. (fp_line (start 3.85 2.6) (end 3.85 -2.6) (layer F.CrtYd) (width 0.05))
  399. (fp_line (start 3.85 -2.6) (end -1.35 -2.6) (layer F.CrtYd) (width 0.05))
  400. (fp_text user %R (at 1.25 0) (layer F.Fab)
  401. (effects (font (size 1 1) (thickness 0.15)))
  402. )
  403. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  404. (net 3 "Net-(C13-Pad1)"))
  405. (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  406. (net 30 GND_ISO_4))
  407. (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D4.5mm_P2.50mm.wrl
  408. (at (xyz 0 0 0))
  409. (scale (xyz 1 1 1))
  410. (rotate (xyz 0 0 0))
  411. )
  412. )
  413. (module Capacitors_THT:CP_Radial_D5.0mm_P2.50mm (layer F.Cu) (tedit 597BC7C2) (tstamp 59A6EB9F)
  414. (at 157.52 99.06)
  415. (descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor")
  416. (tags "CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor")
  417. (path /59A712A3/59498146)
  418. (fp_text reference C16 (at 1.25 -3.81) (layer F.SilkS)
  419. (effects (font (size 1 1) (thickness 0.15)))
  420. )
  421. (fp_text value 4.7uF (at 1.25 3.81) (layer F.Fab)
  422. (effects (font (size 1 1) (thickness 0.15)))
  423. )
  424. (fp_arc (start 1.25 0) (end -1.05558 -1.18) (angle 125.8) (layer F.SilkS) (width 0.12))
  425. (fp_arc (start 1.25 0) (end -1.05558 1.18) (angle -125.8) (layer F.SilkS) (width 0.12))
  426. (fp_arc (start 1.25 0) (end 3.55558 -1.18) (angle 54.2) (layer F.SilkS) (width 0.12))
  427. (fp_circle (center 1.25 0) (end 3.75 0) (layer F.Fab) (width 0.1))
  428. (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
  429. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
  430. (fp_line (start 1.25 -2.55) (end 1.25 2.55) (layer F.SilkS) (width 0.12))
  431. (fp_line (start 1.29 -2.55) (end 1.29 2.55) (layer F.SilkS) (width 0.12))
  432. (fp_line (start 1.33 -2.549) (end 1.33 2.549) (layer F.SilkS) (width 0.12))
  433. (fp_line (start 1.37 -2.548) (end 1.37 2.548) (layer F.SilkS) (width 0.12))
  434. (fp_line (start 1.41 -2.546) (end 1.41 2.546) (layer F.SilkS) (width 0.12))
  435. (fp_line (start 1.45 -2.543) (end 1.45 2.543) (layer F.SilkS) (width 0.12))
  436. (fp_line (start 1.49 -2.539) (end 1.49 2.539) (layer F.SilkS) (width 0.12))
  437. (fp_line (start 1.53 -2.535) (end 1.53 -0.98) (layer F.SilkS) (width 0.12))
  438. (fp_line (start 1.53 0.98) (end 1.53 2.535) (layer F.SilkS) (width 0.12))
  439. (fp_line (start 1.57 -2.531) (end 1.57 -0.98) (layer F.SilkS) (width 0.12))
  440. (fp_line (start 1.57 0.98) (end 1.57 2.531) (layer F.SilkS) (width 0.12))
  441. (fp_line (start 1.61 -2.525) (end 1.61 -0.98) (layer F.SilkS) (width 0.12))
  442. (fp_line (start 1.61 0.98) (end 1.61 2.525) (layer F.SilkS) (width 0.12))
  443. (fp_line (start 1.65 -2.519) (end 1.65 -0.98) (layer F.SilkS) (width 0.12))
  444. (fp_line (start 1.65 0.98) (end 1.65 2.519) (layer F.SilkS) (width 0.12))
  445. (fp_line (start 1.69 -2.513) (end 1.69 -0.98) (layer F.SilkS) (width 0.12))
  446. (fp_line (start 1.69 0.98) (end 1.69 2.513) (layer F.SilkS) (width 0.12))
  447. (fp_line (start 1.73 -2.506) (end 1.73 -0.98) (layer F.SilkS) (width 0.12))
  448. (fp_line (start 1.73 0.98) (end 1.73 2.506) (layer F.SilkS) (width 0.12))
  449. (fp_line (start 1.77 -2.498) (end 1.77 -0.98) (layer F.SilkS) (width 0.12))
  450. (fp_line (start 1.77 0.98) (end 1.77 2.498) (layer F.SilkS) (width 0.12))
  451. (fp_line (start 1.81 -2.489) (end 1.81 -0.98) (layer F.SilkS) (width 0.12))
  452. (fp_line (start 1.81 0.98) (end 1.81 2.489) (layer F.SilkS) (width 0.12))
  453. (fp_line (start 1.85 -2.48) (end 1.85 -0.98) (layer F.SilkS) (width 0.12))
  454. (fp_line (start 1.85 0.98) (end 1.85 2.48) (layer F.SilkS) (width 0.12))
  455. (fp_line (start 1.89 -2.47) (end 1.89 -0.98) (layer F.SilkS) (width 0.12))
  456. (fp_line (start 1.89 0.98) (end 1.89 2.47) (layer F.SilkS) (width 0.12))
  457. (fp_line (start 1.93 -2.46) (end 1.93 -0.98) (layer F.SilkS) (width 0.12))
  458. (fp_line (start 1.93 0.98) (end 1.93 2.46) (layer F.SilkS) (width 0.12))
  459. (fp_line (start 1.971 -2.448) (end 1.971 -0.98) (layer F.SilkS) (width 0.12))
  460. (fp_line (start 1.971 0.98) (end 1.971 2.448) (layer F.SilkS) (width 0.12))
  461. (fp_line (start 2.011 -2.436) (end 2.011 -0.98) (layer F.SilkS) (width 0.12))
  462. (fp_line (start 2.011 0.98) (end 2.011 2.436) (layer F.SilkS) (width 0.12))
  463. (fp_line (start 2.051 -2.424) (end 2.051 -0.98) (layer F.SilkS) (width 0.12))
  464. (fp_line (start 2.051 0.98) (end 2.051 2.424) (layer F.SilkS) (width 0.12))
  465. (fp_line (start 2.091 -2.41) (end 2.091 -0.98) (layer F.SilkS) (width 0.12))
  466. (fp_line (start 2.091 0.98) (end 2.091 2.41) (layer F.SilkS) (width 0.12))
  467. (fp_line (start 2.131 -2.396) (end 2.131 -0.98) (layer F.SilkS) (width 0.12))
  468. (fp_line (start 2.131 0.98) (end 2.131 2.396) (layer F.SilkS) (width 0.12))
  469. (fp_line (start 2.171 -2.382) (end 2.171 -0.98) (layer F.SilkS) (width 0.12))
  470. (fp_line (start 2.171 0.98) (end 2.171 2.382) (layer F.SilkS) (width 0.12))
  471. (fp_line (start 2.211 -2.366) (end 2.211 -0.98) (layer F.SilkS) (width 0.12))
  472. (fp_line (start 2.211 0.98) (end 2.211 2.366) (layer F.SilkS) (width 0.12))
  473. (fp_line (start 2.251 -2.35) (end 2.251 -0.98) (layer F.SilkS) (width 0.12))
  474. (fp_line (start 2.251 0.98) (end 2.251 2.35) (layer F.SilkS) (width 0.12))
  475. (fp_line (start 2.291 -2.333) (end 2.291 -0.98) (layer F.SilkS) (width 0.12))
  476. (fp_line (start 2.291 0.98) (end 2.291 2.333) (layer F.SilkS) (width 0.12))
  477. (fp_line (start 2.331 -2.315) (end 2.331 -0.98) (layer F.SilkS) (width 0.12))
  478. (fp_line (start 2.331 0.98) (end 2.331 2.315) (layer F.SilkS) (width 0.12))
  479. (fp_line (start 2.371 -2.296) (end 2.371 -0.98) (layer F.SilkS) (width 0.12))
  480. (fp_line (start 2.371 0.98) (end 2.371 2.296) (layer F.SilkS) (width 0.12))
  481. (fp_line (start 2.411 -2.276) (end 2.411 -0.98) (layer F.SilkS) (width 0.12))
  482. (fp_line (start 2.411 0.98) (end 2.411 2.276) (layer F.SilkS) (width 0.12))
  483. (fp_line (start 2.451 -2.256) (end 2.451 -0.98) (layer F.SilkS) (width 0.12))
  484. (fp_line (start 2.451 0.98) (end 2.451 2.256) (layer F.SilkS) (width 0.12))
  485. (fp_line (start 2.491 -2.234) (end 2.491 -0.98) (layer F.SilkS) (width 0.12))
  486. (fp_line (start 2.491 0.98) (end 2.491 2.234) (layer F.SilkS) (width 0.12))
  487. (fp_line (start 2.531 -2.212) (end 2.531 -0.98) (layer F.SilkS) (width 0.12))
  488. (fp_line (start 2.531 0.98) (end 2.531 2.212) (layer F.SilkS) (width 0.12))
  489. (fp_line (start 2.571 -2.189) (end 2.571 -0.98) (layer F.SilkS) (width 0.12))
  490. (fp_line (start 2.571 0.98) (end 2.571 2.189) (layer F.SilkS) (width 0.12))
  491. (fp_line (start 2.611 -2.165) (end 2.611 -0.98) (layer F.SilkS) (width 0.12))
  492. (fp_line (start 2.611 0.98) (end 2.611 2.165) (layer F.SilkS) (width 0.12))
  493. (fp_line (start 2.651 -2.14) (end 2.651 -0.98) (layer F.SilkS) (width 0.12))
  494. (fp_line (start 2.651 0.98) (end 2.651 2.14) (layer F.SilkS) (width 0.12))
  495. (fp_line (start 2.691 -2.113) (end 2.691 -0.98) (layer F.SilkS) (width 0.12))
  496. (fp_line (start 2.691 0.98) (end 2.691 2.113) (layer F.SilkS) (width 0.12))
  497. (fp_line (start 2.731 -2.086) (end 2.731 -0.98) (layer F.SilkS) (width 0.12))
  498. (fp_line (start 2.731 0.98) (end 2.731 2.086) (layer F.SilkS) (width 0.12))
  499. (fp_line (start 2.771 -2.058) (end 2.771 -0.98) (layer F.SilkS) (width 0.12))
  500. (fp_line (start 2.771 0.98) (end 2.771 2.058) (layer F.SilkS) (width 0.12))
  501. (fp_line (start 2.811 -2.028) (end 2.811 -0.98) (layer F.SilkS) (width 0.12))
  502. (fp_line (start 2.811 0.98) (end 2.811 2.028) (layer F.SilkS) (width 0.12))
  503. (fp_line (start 2.851 -1.997) (end 2.851 -0.98) (layer F.SilkS) (width 0.12))
  504. (fp_line (start 2.851 0.98) (end 2.851 1.997) (layer F.SilkS) (width 0.12))
  505. (fp_line (start 2.891 -1.965) (end 2.891 -0.98) (layer F.SilkS) (width 0.12))
  506. (fp_line (start 2.891 0.98) (end 2.891 1.965) (layer F.SilkS) (width 0.12))
  507. (fp_line (start 2.931 -1.932) (end 2.931 -0.98) (layer F.SilkS) (width 0.12))
  508. (fp_line (start 2.931 0.98) (end 2.931 1.932) (layer F.SilkS) (width 0.12))
  509. (fp_line (start 2.971 -1.897) (end 2.971 -0.98) (layer F.SilkS) (width 0.12))
  510. (fp_line (start 2.971 0.98) (end 2.971 1.897) (layer F.SilkS) (width 0.12))
  511. (fp_line (start 3.011 -1.861) (end 3.011 -0.98) (layer F.SilkS) (width 0.12))
  512. (fp_line (start 3.011 0.98) (end 3.011 1.861) (layer F.SilkS) (width 0.12))
  513. (fp_line (start 3.051 -1.823) (end 3.051 -0.98) (layer F.SilkS) (width 0.12))
  514. (fp_line (start 3.051 0.98) (end 3.051 1.823) (layer F.SilkS) (width 0.12))
  515. (fp_line (start 3.091 -1.783) (end 3.091 -0.98) (layer F.SilkS) (width 0.12))
  516. (fp_line (start 3.091 0.98) (end 3.091 1.783) (layer F.SilkS) (width 0.12))
  517. (fp_line (start 3.131 -1.742) (end 3.131 -0.98) (layer F.SilkS) (width 0.12))
  518. (fp_line (start 3.131 0.98) (end 3.131 1.742) (layer F.SilkS) (width 0.12))
  519. (fp_line (start 3.171 -1.699) (end 3.171 -0.98) (layer F.SilkS) (width 0.12))
  520. (fp_line (start 3.171 0.98) (end 3.171 1.699) (layer F.SilkS) (width 0.12))
  521. (fp_line (start 3.211 -1.654) (end 3.211 -0.98) (layer F.SilkS) (width 0.12))
  522. (fp_line (start 3.211 0.98) (end 3.211 1.654) (layer F.SilkS) (width 0.12))
  523. (fp_line (start 3.251 -1.606) (end 3.251 -0.98) (layer F.SilkS) (width 0.12))
  524. (fp_line (start 3.251 0.98) (end 3.251 1.606) (layer F.SilkS) (width 0.12))
  525. (fp_line (start 3.291 -1.556) (end 3.291 -0.98) (layer F.SilkS) (width 0.12))
  526. (fp_line (start 3.291 0.98) (end 3.291 1.556) (layer F.SilkS) (width 0.12))
  527. (fp_line (start 3.331 -1.504) (end 3.331 -0.98) (layer F.SilkS) (width 0.12))
  528. (fp_line (start 3.331 0.98) (end 3.331 1.504) (layer F.SilkS) (width 0.12))
  529. (fp_line (start 3.371 -1.448) (end 3.371 -0.98) (layer F.SilkS) (width 0.12))
  530. (fp_line (start 3.371 0.98) (end 3.371 1.448) (layer F.SilkS) (width 0.12))
  531. (fp_line (start 3.411 -1.39) (end 3.411 -0.98) (layer F.SilkS) (width 0.12))
  532. (fp_line (start 3.411 0.98) (end 3.411 1.39) (layer F.SilkS) (width 0.12))
  533. (fp_line (start 3.451 -1.327) (end 3.451 -0.98) (layer F.SilkS) (width 0.12))
  534. (fp_line (start 3.451 0.98) (end 3.451 1.327) (layer F.SilkS) (width 0.12))
  535. (fp_line (start 3.491 -1.261) (end 3.491 1.261) (layer F.SilkS) (width 0.12))
  536. (fp_line (start 3.531 -1.189) (end 3.531 1.189) (layer F.SilkS) (width 0.12))
  537. (fp_line (start 3.571 -1.112) (end 3.571 1.112) (layer F.SilkS) (width 0.12))
  538. (fp_line (start 3.611 -1.028) (end 3.611 1.028) (layer F.SilkS) (width 0.12))
  539. (fp_line (start 3.651 -0.934) (end 3.651 0.934) (layer F.SilkS) (width 0.12))
  540. (fp_line (start 3.691 -0.829) (end 3.691 0.829) (layer F.SilkS) (width 0.12))
  541. (fp_line (start 3.731 -0.707) (end 3.731 0.707) (layer F.SilkS) (width 0.12))
  542. (fp_line (start 3.771 -0.559) (end 3.771 0.559) (layer F.SilkS) (width 0.12))
  543. (fp_line (start 3.811 -0.354) (end 3.811 0.354) (layer F.SilkS) (width 0.12))
  544. (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
  545. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
  546. (fp_line (start -1.6 -2.85) (end -1.6 2.85) (layer F.CrtYd) (width 0.05))
  547. (fp_line (start -1.6 2.85) (end 4.1 2.85) (layer F.CrtYd) (width 0.05))
  548. (fp_line (start 4.1 2.85) (end 4.1 -2.85) (layer F.CrtYd) (width 0.05))
  549. (fp_line (start 4.1 -2.85) (end -1.6 -2.85) (layer F.CrtYd) (width 0.05))
  550. (fp_text user %R (at 1.25 0) (layer F.Fab)
  551. (effects (font (size 1 1) (thickness 0.15)))
  552. )
  553. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  554. (net 31 DRV_GATE_D))
  555. (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  556. (net 30 GND_ISO_4))
  557. (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_D5.0mm_P2.50mm.wrl
  558. (at (xyz 0 0 0))
  559. (scale (xyz 1 1 1))
  560. (rotate (xyz 0 0 0))
  561. )
  562. )
  563. (module Capacitors_THT:CP_Radial_Tantal_D4.5mm_P2.50mm (layer F.Cu) (tedit 597C781B) (tstamp 59EF6711)
  564. (at 163.83 99.06)
  565. (descr "CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf")
  566. (tags "CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor")
  567. (path /59A712A3/59EF0ED7)
  568. (fp_text reference C23 (at 1.25 -3.56) (layer F.SilkS)
  569. (effects (font (size 1 1) (thickness 0.15)))
  570. )
  571. (fp_text value 100nF (at 1.25 3.56) (layer F.Fab)
  572. (effects (font (size 1 1) (thickness 0.15)))
  573. )
  574. (fp_arc (start 1.25 0) (end -0.770693 -1.18) (angle 119.4) (layer F.SilkS) (width 0.12))
  575. (fp_arc (start 1.25 0) (end -0.770693 1.18) (angle -119.4) (layer F.SilkS) (width 0.12))
  576. (fp_arc (start 1.25 0) (end 3.270693 -1.18) (angle 60.6) (layer F.SilkS) (width 0.12))
  577. (fp_circle (center 1.25 0) (end 3.5 0) (layer F.Fab) (width 0.1))
  578. (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
  579. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
  580. (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
  581. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
  582. (fp_line (start -1.35 -2.6) (end -1.35 2.6) (layer F.CrtYd) (width 0.05))
  583. (fp_line (start -1.35 2.6) (end 3.85 2.6) (layer F.CrtYd) (width 0.05))
  584. (fp_line (start 3.85 2.6) (end 3.85 -2.6) (layer F.CrtYd) (width 0.05))
  585. (fp_line (start 3.85 -2.6) (end -1.35 -2.6) (layer F.CrtYd) (width 0.05))
  586. (fp_text user %R (at 1.25 0) (layer F.Fab)
  587. (effects (font (size 1 1) (thickness 0.15)))
  588. )
  589. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  590. (net 15 "Net-(C23-Pad1)"))
  591. (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  592. (net 30 GND_ISO_4))
  593. (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D4.5mm_P2.50mm.wrl
  594. (at (xyz 0 0 0))
  595. (scale (xyz 1 1 1))
  596. (rotate (xyz 0 0 0))
  597. )
  598. )
  599. (module Diodes_THT:D_T-1_P5.08mm_Horizontal (layer F.Cu) (tedit 5921392F) (tstamp 59F0CB68)
  600. (at 156.21 83.82)
  601. (descr "D, T-1 series, Axial, Horizontal, pin pitch=5.08mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf")
  602. (tags "D T-1 series Axial Horizontal pin pitch 5.08mm length 3.2mm diameter 2.6mm")
  603. (path /59A712A3/59EF0E59)
  604. (fp_text reference D4 (at 2.54 -2.36) (layer F.SilkS)
  605. (effects (font (size 1 1) (thickness 0.15)))
  606. )
  607. (fp_text value D_Zener (at 2.54 2.36) (layer F.Fab)
  608. (effects (font (size 1 1) (thickness 0.15)))
  609. )
  610. (fp_text user %R (at 2.54 0) (layer F.Fab)
  611. (effects (font (size 1 1) (thickness 0.15)))
  612. )
  613. (fp_line (start 0.94 -1.3) (end 0.94 1.3) (layer F.Fab) (width 0.1))
  614. (fp_line (start 0.94 1.3) (end 4.14 1.3) (layer F.Fab) (width 0.1))
  615. (fp_line (start 4.14 1.3) (end 4.14 -1.3) (layer F.Fab) (width 0.1))
  616. (fp_line (start 4.14 -1.3) (end 0.94 -1.3) (layer F.Fab) (width 0.1))
  617. (fp_line (start 0 0) (end 0.94 0) (layer F.Fab) (width 0.1))
  618. (fp_line (start 5.08 0) (end 4.14 0) (layer F.Fab) (width 0.1))
  619. (fp_line (start 1.42 -1.3) (end 1.42 1.3) (layer F.Fab) (width 0.1))
  620. (fp_line (start 0.88 -1.18) (end 0.88 -1.36) (layer F.SilkS) (width 0.12))
  621. (fp_line (start 0.88 -1.36) (end 4.2 -1.36) (layer F.SilkS) (width 0.12))
  622. (fp_line (start 4.2 -1.36) (end 4.2 -1.18) (layer F.SilkS) (width 0.12))
  623. (fp_line (start 0.88 1.18) (end 0.88 1.36) (layer F.SilkS) (width 0.12))
  624. (fp_line (start 0.88 1.36) (end 4.2 1.36) (layer F.SilkS) (width 0.12))
  625. (fp_line (start 4.2 1.36) (end 4.2 1.18) (layer F.SilkS) (width 0.12))
  626. (fp_line (start 1.42 -1.36) (end 1.42 1.36) (layer F.SilkS) (width 0.12))
  627. (fp_line (start -1.25 -1.65) (end -1.25 1.65) (layer F.CrtYd) (width 0.05))
  628. (fp_line (start -1.25 1.65) (end 6.35 1.65) (layer F.CrtYd) (width 0.05))
  629. (fp_line (start 6.35 1.65) (end 6.35 -1.65) (layer F.CrtYd) (width 0.05))
  630. (fp_line (start 6.35 -1.65) (end -1.25 -1.65) (layer F.CrtYd) (width 0.05))
  631. (pad 1 thru_hole rect (at 0 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)
  632. (net 15 "Net-(C23-Pad1)"))
  633. (pad 2 thru_hole oval (at 5.08 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)
  634. (net 30 GND_ISO_4))
  635. (model ${KISYS3DMOD}/Diodes_THT.3dshapes/D_T-1_P5.08mm_Horizontal.wrl
  636. (at (xyz 0 0 0))
  637. (scale (xyz 0.393701 0.393701 0.393701))
  638. (rotate (xyz 0 0 0))
  639. )
  640. )
  641. (module Housings_DIP:DIP-6_W7.62mm (layer F.Cu) (tedit 59C78D6B) (tstamp 59EF688C)
  642. (at 127 93.98)
  643. (descr "6-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils)")
  644. (tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil")
  645. (path /59A712A3/59A6DAA6)
  646. (fp_text reference U8 (at 3.81 -2.33) (layer F.SilkS)
  647. (effects (font (size 1 1) (thickness 0.15)))
  648. )
  649. (fp_text value H11N1M (at 3.81 7.41) (layer F.Fab)
  650. (effects (font (size 1 1) (thickness 0.15)))
  651. )
  652. (fp_arc (start 3.81 -1.33) (end 2.81 -1.33) (angle -180) (layer F.SilkS) (width 0.12))
  653. (fp_line (start 1.635 -1.27) (end 6.985 -1.27) (layer F.Fab) (width 0.1))
  654. (fp_line (start 6.985 -1.27) (end 6.985 6.35) (layer F.Fab) (width 0.1))
  655. (fp_line (start 6.985 6.35) (end 0.635 6.35) (layer F.Fab) (width 0.1))
  656. (fp_line (start 0.635 6.35) (end 0.635 -0.27) (layer F.Fab) (width 0.1))
  657. (fp_line (start 0.635 -0.27) (end 1.635 -1.27) (layer F.Fab) (width 0.1))
  658. (fp_line (start 2.81 -1.33) (end 1.16 -1.33) (layer F.SilkS) (width 0.12))
  659. (fp_line (start 1.16 -1.33) (end 1.16 6.41) (layer F.SilkS) (width 0.12))
  660. (fp_line (start 1.16 6.41) (end 6.46 6.41) (layer F.SilkS) (width 0.12))
  661. (fp_line (start 6.46 6.41) (end 6.46 -1.33) (layer F.SilkS) (width 0.12))
  662. (fp_line (start 6.46 -1.33) (end 4.81 -1.33) (layer F.SilkS) (width 0.12))
  663. (fp_line (start -1.1 -1.55) (end -1.1 6.6) (layer F.CrtYd) (width 0.05))
  664. (fp_line (start -1.1 6.6) (end 8.7 6.6) (layer F.CrtYd) (width 0.05))
  665. (fp_line (start 8.7 6.6) (end 8.7 -1.55) (layer F.CrtYd) (width 0.05))
  666. (fp_line (start 8.7 -1.55) (end -1.1 -1.55) (layer F.CrtYd) (width 0.05))
  667. (fp_text user %R (at 3.81 2.54) (layer F.Fab)
  668. (effects (font (size 1 1) (thickness 0.15)))
  669. )
  670. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  671. (net 23 "Net-(C28-Pad1)"))
  672. (pad 4 thru_hole oval (at 7.62 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  673. (net 7 "Net-(IC4-Pad2)"))
  674. (pad 2 thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  675. (net 10 ARD_GND))
  676. (pad 5 thru_hole oval (at 7.62 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  677. (net 30 GND_ISO_4))
  678. (pad 3 thru_hole oval (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask))
  679. (pad 6 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  680. (net 15 "Net-(C23-Pad1)"))
  681. (model ${KISYS3DMOD}/Housings_DIP.3dshapes/DIP-6_W7.62mm.wrl
  682. (at (xyz 0 0 0))
  683. (scale (xyz 1 1 1))
  684. (rotate (xyz 0 0 0))
  685. )
  686. )
  687. (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59A6EE04)
  688. (at 127 102.87)
  689. (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
  690. (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
  691. (path /59A712A3/59A6DA9F)
  692. (fp_text reference R8 (at 3.81 -2.31) (layer F.SilkS)
  693. (effects (font (size 1 1) (thickness 0.15)))
  694. )
  695. (fp_text value 180 (at 3.81 2.31) (layer F.Fab)
  696. (effects (font (size 1 1) (thickness 0.15)))
  697. )
  698. (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
  699. (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
  700. (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
  701. (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
  702. (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
  703. (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
  704. (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
  705. (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
  706. (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
  707. (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
  708. (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
  709. (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
  710. (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
  711. (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
  712. (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
  713. (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
  714. (pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  715. (net 19 ARD_PWM_D))
  716. (pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  717. (net 23 "Net-(C28-Pad1)"))
  718. (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
  719. (at (xyz 0 0 0))
  720. (scale (xyz 0.3937 0.3937 0.3937))
  721. (rotate (xyz 0 0 0))
  722. )
  723. )
  724. (module PartsLibraries:TC4422AVPA (layer F.Cu) (tedit 592E9A52) (tstamp 59A6EF40)
  725. (at 127 80.01)
  726. (descr DIP254P762X432-8)
  727. (tags "Integrated Circuit")
  728. (path /59A712A3/59A6D3EA)
  729. (fp_text reference U7 (at 3.81 -2.286) (layer F.SilkS)
  730. (effects (font (size 1.27 1.27) (thickness 0.254)))
  731. )
  732. (fp_text value NME1212DC (at 3.556 9.906) (layer F.SilkS) hide
  733. (effects (font (size 1.27 1.27) (thickness 0.254)))
  734. )
  735. (fp_line (start 0.508 8.7122) (end 0.508 -1.0922) (layer Dwgs.User) (width 0.1524))
  736. (fp_line (start 0.508 -1.1938) (end 7.112 -1.1938) (layer Dwgs.User) (width 0.1524))
  737. (fp_line (start -0.4826 3.048) (end 0.508 3.048) (layer Dwgs.User) (width 0.1524))
  738. (fp_line (start -0.4826 2.032) (end -0.4826 3.048) (layer Dwgs.User) (width 0.1524))
  739. (fp_line (start 0.508 2.032) (end -0.4826 2.032) (layer Dwgs.User) (width 0.1524))
  740. (fp_line (start 0.508 3.048) (end 0.508 2.032) (layer Dwgs.User) (width 0.1524))
  741. (fp_line (start 7.112 1.5748) (end 7.112 0.9652) (layer F.SilkS) (width 0.1524))
  742. (fp_line (start 7.112 4.1148) (end 7.112 3.5052) (layer F.SilkS) (width 0.1524))
  743. (fp_line (start 0.508 6.0452) (end 0.508 6.6548) (layer F.SilkS) (width 0.1524))
  744. (fp_line (start 0.508 3.5052) (end 0.508 4.1148) (layer F.SilkS) (width 0.1524))
  745. (fp_line (start 0.508 8.7122) (end 7.112 8.7122) (layer F.SilkS) (width 0.1524))
  746. (fp_line (start 7.112 6.6548) (end 7.112 6.0452) (layer F.SilkS) (width 0.1524))
  747. (fp_line (start 0.508 1.0922) (end 0.508 1.5748) (layer F.SilkS) (width 0.1524))
  748. (fp_line (start 0.508 0.508) (end 0.508 -0.508) (layer Dwgs.User) (width 0.1524))
  749. (fp_line (start 0.508 -0.508) (end -0.4826 -0.508) (layer Dwgs.User) (width 0.1524))
  750. (fp_line (start -0.4826 -0.508) (end -0.4826 0.508) (layer Dwgs.User) (width 0.1524))
  751. (fp_line (start -0.4826 0.508) (end 0.508 0.508) (layer Dwgs.User) (width 0.1524))
  752. (fp_line (start 0.508 5.588) (end 0.508 4.572) (layer Dwgs.User) (width 0.1524))
  753. (fp_line (start 0.508 4.572) (end -0.4826 4.572) (layer Dwgs.User) (width 0.1524))
  754. (fp_line (start -0.4826 4.572) (end -0.4826 5.588) (layer Dwgs.User) (width 0.1524))
  755. (fp_line (start -0.4826 5.588) (end 0.508 5.588) (layer Dwgs.User) (width 0.1524))
  756. (fp_line (start 0.508 8.128) (end 0.508 7.112) (layer Dwgs.User) (width 0.1524))
  757. (fp_line (start 0.508 7.112) (end -0.4826 7.1374) (layer Dwgs.User) (width 0.1524))
  758. (fp_line (start -0.4826 7.1374) (end -0.4826 8.128) (layer Dwgs.User) (width 0.1524))
  759. (fp_line (start -0.4826 8.128) (end 0.508 8.128) (layer Dwgs.User) (width 0.1524))
  760. (fp_line (start 7.112 7.112) (end 7.112 8.128) (layer Dwgs.User) (width 0.1524))
  761. (fp_line (start 7.112 8.128) (end 8.1026 8.1026) (layer Dwgs.User) (width 0.1524))
  762. (fp_line (start 8.1026 8.1026) (end 8.1026 7.112) (layer Dwgs.User) (width 0.1524))
  763. (fp_line (start 8.1026 7.112) (end 7.112 7.112) (layer Dwgs.User) (width 0.1524))
  764. (fp_line (start 7.112 4.572) (end 7.112 5.588) (layer Dwgs.User) (width 0.1524))
  765. (fp_line (start 7.112 5.588) (end 8.1026 5.5626) (layer Dwgs.User) (width 0.1524))
  766. (fp_line (start 8.1026 5.5626) (end 8.1026 4.572) (layer Dwgs.User) (width 0.1524))
  767. (fp_line (start 8.1026 4.572) (end 7.112 4.572) (layer Dwgs.User) (width 0.1524))
  768. (fp_line (start 7.112 2.032) (end 7.112 3.048) (layer Dwgs.User) (width 0.1524))
  769. (fp_line (start 7.112 3.048) (end 8.1026 3.048) (layer Dwgs.User) (width 0.1524))
  770. (fp_line (start 8.1026 3.048) (end 8.1026 2.032) (layer Dwgs.User) (width 0.1524))
  771. (fp_line (start 8.1026 2.032) (end 7.112 2.032) (layer Dwgs.User) (width 0.1524))
  772. (fp_line (start 7.112 -0.508) (end 7.112 0.508) (layer Dwgs.User) (width 0.1524))
  773. (fp_line (start 7.112 0.508) (end 8.1026 0.508) (layer Dwgs.User) (width 0.1524))
  774. (fp_line (start 8.1026 0.508) (end 8.1026 -0.508) (layer Dwgs.User) (width 0.1524))
  775. (fp_line (start 8.1026 -0.508) (end 7.112 -0.508) (layer Dwgs.User) (width 0.1524))
  776. (fp_line (start 0.508 8.7122) (end 7.112 8.7122) (layer Dwgs.User) (width 0.1524))
  777. (fp_line (start 7.112 8.7122) (end 7.112 -1.0922) (layer Dwgs.User) (width 0.1524))
  778. (pad 1 thru_hole rect (at 0 0 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  779. (net 9 DC_GND))
  780. (pad 2 thru_hole circle (at 0 2.54 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS))
  781. (pad 3 thru_hole circle (at 0 5.08 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS))
  782. (pad 4 thru_hole circle (at 0 7.62 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  783. (net 8 DC_IN))
  784. (pad 5 thru_hole circle (at 7.62 7.62 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  785. (net 3 "Net-(C13-Pad1)"))
  786. (pad 6 thru_hole circle (at 7.62 5.08 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS))
  787. (pad 7 thru_hole circle (at 7.62 2.54 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  788. (net 30 GND_ISO_4))
  789. (pad 8 thru_hole circle (at 7.62 0 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS))
  790. (model Housings_DIP.3dshapes/DIP-8_W7.62mm.wrl
  791. (at (xyz 0 0 0))
  792. (scale (xyz 1 1 1))
  793. (rotate (xyz 0 0 0))
  794. )
  795. )
  796. (module Capacitors_THT:CP_Radial_Tantal_D4.5mm_P2.50mm (layer F.Cu) (tedit 597C781B) (tstamp 5A16CB86)
  797. (at 132.04 107.95 180)
  798. (descr "CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf")
  799. (tags "CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor")
  800. (path /59A712A3/5A16CD08)
  801. (fp_text reference C28 (at 1.25 -3.56 180) (layer F.SilkS)
  802. (effects (font (size 1 1) (thickness 0.15)))
  803. )
  804. (fp_text value 100nF (at 1.25 3.56 180) (layer F.Fab)
  805. (effects (font (size 1 1) (thickness 0.15)))
  806. )
  807. (fp_arc (start 1.25 0) (end -0.770693 -1.18) (angle 119.4) (layer F.SilkS) (width 0.12))
  808. (fp_arc (start 1.25 0) (end -0.770693 1.18) (angle -119.4) (layer F.SilkS) (width 0.12))
  809. (fp_arc (start 1.25 0) (end 3.270693 -1.18) (angle 60.6) (layer F.SilkS) (width 0.12))
  810. (fp_circle (center 1.25 0) (end 3.5 0) (layer F.Fab) (width 0.1))
  811. (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
  812. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
  813. (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
  814. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
  815. (fp_line (start -1.35 -2.6) (end -1.35 2.6) (layer F.CrtYd) (width 0.05))
  816. (fp_line (start -1.35 2.6) (end 3.85 2.6) (layer F.CrtYd) (width 0.05))
  817. (fp_line (start 3.85 2.6) (end 3.85 -2.6) (layer F.CrtYd) (width 0.05))
  818. (fp_line (start 3.85 -2.6) (end -1.35 -2.6) (layer F.CrtYd) (width 0.05))
  819. (fp_text user %R (at 1.25 0 180) (layer F.Fab)
  820. (effects (font (size 1 1) (thickness 0.15)))
  821. )
  822. (pad 1 thru_hole rect (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  823. (net 23 "Net-(C28-Pad1)"))
  824. (pad 2 thru_hole circle (at 2.5 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  825. (net 19 ARD_PWM_D))
  826. (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D4.5mm_P2.50mm.wrl
  827. (at (xyz 0 0 0))
  828. (scale (xyz 1 1 1))
  829. (rotate (xyz 0 0 0))
  830. )
  831. )
  832. (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59F053CC)
  833. (at 138.43 84.074)
  834. (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
  835. (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
  836. (path /59A712A3/59A6DAAD)
  837. (fp_text reference R9 (at 3.81 -2.31) (layer F.SilkS)
  838. (effects (font (size 1 1) (thickness 0.15)))
  839. )
  840. (fp_text value 3K (at 3.81 2.31) (layer F.Fab)
  841. (effects (font (size 1 1) (thickness 0.15)))
  842. )
  843. (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
  844. (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
  845. (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
  846. (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
  847. (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
  848. (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
  849. (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
  850. (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
  851. (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
  852. (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
  853. (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
  854. (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
  855. (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
  856. (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
  857. (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
  858. (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
  859. (pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  860. (net 3 "Net-(C13-Pad1)"))
  861. (pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  862. (net 15 "Net-(C23-Pad1)"))
  863. (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
  864. (at (xyz 0 0 0))
  865. (scale (xyz 0.3937 0.3937 0.3937))
  866. (rotate (xyz 0 0 0))
  867. )
  868. )
  869. (module PartsLibraries:TC4422AVPA (layer F.Cu) (tedit 592E9A52) (tstamp 59A6EC7B)
  870. (at 138.43 91.44)
  871. (descr DIP254P762X432-8)
  872. (tags "Integrated Circuit")
  873. (path /59A712A3/59498139)
  874. (fp_text reference IC4 (at 3.81 -2.286) (layer F.SilkS)
  875. (effects (font (size 1.27 1.27) (thickness 0.254)))
  876. )
  877. (fp_text value TC4422AVPA (at 3.556 9.906) (layer F.SilkS) hide
  878. (effects (font (size 1.27 1.27) (thickness 0.254)))
  879. )
  880. (fp_line (start 0.508 8.7122) (end 0.508 -1.0922) (layer Dwgs.User) (width 0.1524))
  881. (fp_line (start 0.508 -1.1938) (end 7.112 -1.1938) (layer Dwgs.User) (width 0.1524))
  882. (fp_line (start -0.4826 3.048) (end 0.508 3.048) (layer Dwgs.User) (width 0.1524))
  883. (fp_line (start -0.4826 2.032) (end -0.4826 3.048) (layer Dwgs.User) (width 0.1524))
  884. (fp_line (start 0.508 2.032) (end -0.4826 2.032) (layer Dwgs.User) (width 0.1524))
  885. (fp_line (start 0.508 3.048) (end 0.508 2.032) (layer Dwgs.User) (width 0.1524))
  886. (fp_line (start 7.112 1.5748) (end 7.112 0.9652) (layer F.SilkS) (width 0.1524))
  887. (fp_line (start 7.112 4.1148) (end 7.112 3.5052) (layer F.SilkS) (width 0.1524))
  888. (fp_line (start 0.508 6.0452) (end 0.508 6.6548) (layer F.SilkS) (width 0.1524))
  889. (fp_line (start 0.508 3.5052) (end 0.508 4.1148) (layer F.SilkS) (width 0.1524))
  890. (fp_line (start 0.508 8.7122) (end 7.112 8.7122) (layer F.SilkS) (width 0.1524))
  891. (fp_line (start 7.112 6.6548) (end 7.112 6.0452) (layer F.SilkS) (width 0.1524))
  892. (fp_line (start 0.508 1.0922) (end 0.508 1.5748) (layer F.SilkS) (width 0.1524))
  893. (fp_line (start 0.508 0.508) (end 0.508 -0.508) (layer Dwgs.User) (width 0.1524))
  894. (fp_line (start 0.508 -0.508) (end -0.4826 -0.508) (layer Dwgs.User) (width 0.1524))
  895. (fp_line (start -0.4826 -0.508) (end -0.4826 0.508) (layer Dwgs.User) (width 0.1524))
  896. (fp_line (start -0.4826 0.508) (end 0.508 0.508) (layer Dwgs.User) (width 0.1524))
  897. (fp_line (start 0.508 5.588) (end 0.508 4.572) (layer Dwgs.User) (width 0.1524))
  898. (fp_line (start 0.508 4.572) (end -0.4826 4.572) (layer Dwgs.User) (width 0.1524))
  899. (fp_line (start -0.4826 4.572) (end -0.4826 5.588) (layer Dwgs.User) (width 0.1524))
  900. (fp_line (start -0.4826 5.588) (end 0.508 5.588) (layer Dwgs.User) (width 0.1524))
  901. (fp_line (start 0.508 8.128) (end 0.508 7.112) (layer Dwgs.User) (width 0.1524))
  902. (fp_line (start 0.508 7.112) (end -0.4826 7.1374) (layer Dwgs.User) (width 0.1524))
  903. (fp_line (start -0.4826 7.1374) (end -0.4826 8.128) (layer Dwgs.User) (width 0.1524))
  904. (fp_line (start -0.4826 8.128) (end 0.508 8.128) (layer Dwgs.User) (width 0.1524))
  905. (fp_line (start 7.112 7.112) (end 7.112 8.128) (layer Dwgs.User) (width 0.1524))
  906. (fp_line (start 7.112 8.128) (end 8.1026 8.1026) (layer Dwgs.User) (width 0.1524))
  907. (fp_line (start 8.1026 8.1026) (end 8.1026 7.112) (layer Dwgs.User) (width 0.1524))
  908. (fp_line (start 8.1026 7.112) (end 7.112 7.112) (layer Dwgs.User) (width 0.1524))
  909. (fp_line (start 7.112 4.572) (end 7.112 5.588) (layer Dwgs.User) (width 0.1524))
  910. (fp_line (start 7.112 5.588) (end 8.1026 5.5626) (layer Dwgs.User) (width 0.1524))
  911. (fp_line (start 8.1026 5.5626) (end 8.1026 4.572) (layer Dwgs.User) (width 0.1524))
  912. (fp_line (start 8.1026 4.572) (end 7.112 4.572) (layer Dwgs.User) (width 0.1524))
  913. (fp_line (start 7.112 2.032) (end 7.112 3.048) (layer Dwgs.User) (width 0.1524))
  914. (fp_line (start 7.112 3.048) (end 8.1026 3.048) (layer Dwgs.User) (width 0.1524))
  915. (fp_line (start 8.1026 3.048) (end 8.1026 2.032) (layer Dwgs.User) (width 0.1524))
  916. (fp_line (start 8.1026 2.032) (end 7.112 2.032) (layer Dwgs.User) (width 0.1524))
  917. (fp_line (start 7.112 -0.508) (end 7.112 0.508) (layer Dwgs.User) (width 0.1524))
  918. (fp_line (start 7.112 0.508) (end 8.1026 0.508) (layer Dwgs.User) (width 0.1524))
  919. (fp_line (start 8.1026 0.508) (end 8.1026 -0.508) (layer Dwgs.User) (width 0.1524))
  920. (fp_line (start 8.1026 -0.508) (end 7.112 -0.508) (layer Dwgs.User) (width 0.1524))
  921. (fp_line (start 0.508 8.7122) (end 7.112 8.7122) (layer Dwgs.User) (width 0.1524))
  922. (fp_line (start 7.112 8.7122) (end 7.112 -1.0922) (layer Dwgs.User) (width 0.1524))
  923. (pad 1 thru_hole rect (at 0 0 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  924. (net 3 "Net-(C13-Pad1)"))
  925. (pad 2 thru_hole circle (at 0 2.54 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  926. (net 7 "Net-(IC4-Pad2)"))
  927. (pad 3 thru_hole circle (at 0 5.08 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS))
  928. (pad 4 thru_hole circle (at 0 7.62 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  929. (net 30 GND_ISO_4))
  930. (pad 5 thru_hole circle (at 7.62 7.62 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  931. (net 30 GND_ISO_4))
  932. (pad 6 thru_hole circle (at 7.62 5.08 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  933. (net 31 DRV_GATE_D))
  934. (pad 7 thru_hole circle (at 7.62 2.54 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  935. (net 31 DRV_GATE_D))
  936. (pad 8 thru_hole circle (at 7.62 0 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  937. (net 3 "Net-(C13-Pad1)"))
  938. (model Housings_DIP.3dshapes/DIP-8_W7.62mm.wrl
  939. (at (xyz 0 0 0))
  940. (scale (xyz 1 1 1))
  941. (rotate (xyz 0 0 0))
  942. )
  943. )
  944. (module Capacitors_THT:CP_Radial_D5.0mm_P2.50mm (layer F.Cu) (tedit 597BC7C2) (tstamp 59A6EAF4)
  945. (at 151.17 91.44)
  946. (descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor")
  947. (tags "CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor")
  948. (path /59A712A3/59A6D3D9)
  949. (fp_text reference C13 (at 1.25 -3.81) (layer F.SilkS)
  950. (effects (font (size 1 1) (thickness 0.15)))
  951. )
  952. (fp_text value 4.7uF (at 1.25 3.81) (layer F.Fab)
  953. (effects (font (size 1 1) (thickness 0.15)))
  954. )
  955. (fp_arc (start 1.25 0) (end -1.05558 -1.18) (angle 125.8) (layer F.SilkS) (width 0.12))
  956. (fp_arc (start 1.25 0) (end -1.05558 1.18) (angle -125.8) (layer F.SilkS) (width 0.12))
  957. (fp_arc (start 1.25 0) (end 3.55558 -1.18) (angle 54.2) (layer F.SilkS) (width 0.12))
  958. (fp_circle (center 1.25 0) (end 3.75 0) (layer F.Fab) (width 0.1))
  959. (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
  960. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
  961. (fp_line (start 1.25 -2.55) (end 1.25 2.55) (layer F.SilkS) (width 0.12))
  962. (fp_line (start 1.29 -2.55) (end 1.29 2.55) (layer F.SilkS) (width 0.12))
  963. (fp_line (start 1.33 -2.549) (end 1.33 2.549) (layer F.SilkS) (width 0.12))
  964. (fp_line (start 1.37 -2.548) (end 1.37 2.548) (layer F.SilkS) (width 0.12))
  965. (fp_line (start 1.41 -2.546) (end 1.41 2.546) (layer F.SilkS) (width 0.12))
  966. (fp_line (start 1.45 -2.543) (end 1.45 2.543) (layer F.SilkS) (width 0.12))
  967. (fp_line (start 1.49 -2.539) (end 1.49 2.539) (layer F.SilkS) (width 0.12))
  968. (fp_line (start 1.53 -2.535) (end 1.53 -0.98) (layer F.SilkS) (width 0.12))
  969. (fp_line (start 1.53 0.98) (end 1.53 2.535) (layer F.SilkS) (width 0.12))
  970. (fp_line (start 1.57 -2.531) (end 1.57 -0.98) (layer F.SilkS) (width 0.12))
  971. (fp_line (start 1.57 0.98) (end 1.57 2.531) (layer F.SilkS) (width 0.12))
  972. (fp_line (start 1.61 -2.525) (end 1.61 -0.98) (layer F.SilkS) (width 0.12))
  973. (fp_line (start 1.61 0.98) (end 1.61 2.525) (layer F.SilkS) (width 0.12))
  974. (fp_line (start 1.65 -2.519) (end 1.65 -0.98) (layer F.SilkS) (width 0.12))
  975. (fp_line (start 1.65 0.98) (end 1.65 2.519) (layer F.SilkS) (width 0.12))
  976. (fp_line (start 1.69 -2.513) (end 1.69 -0.98) (layer F.SilkS) (width 0.12))
  977. (fp_line (start 1.69 0.98) (end 1.69 2.513) (layer F.SilkS) (width 0.12))
  978. (fp_line (start 1.73 -2.506) (end 1.73 -0.98) (layer F.SilkS) (width 0.12))
  979. (fp_line (start 1.73 0.98) (end 1.73 2.506) (layer F.SilkS) (width 0.12))
  980. (fp_line (start 1.77 -2.498) (end 1.77 -0.98) (layer F.SilkS) (width 0.12))
  981. (fp_line (start 1.77 0.98) (end 1.77 2.498) (layer F.SilkS) (width 0.12))
  982. (fp_line (start 1.81 -2.489) (end 1.81 -0.98) (layer F.SilkS) (width 0.12))
  983. (fp_line (start 1.81 0.98) (end 1.81 2.489) (layer F.SilkS) (width 0.12))
  984. (fp_line (start 1.85 -2.48) (end 1.85 -0.98) (layer F.SilkS) (width 0.12))
  985. (fp_line (start 1.85 0.98) (end 1.85 2.48) (layer F.SilkS) (width 0.12))
  986. (fp_line (start 1.89 -2.47) (end 1.89 -0.98) (layer F.SilkS) (width 0.12))
  987. (fp_line (start 1.89 0.98) (end 1.89 2.47) (layer F.SilkS) (width 0.12))
  988. (fp_line (start 1.93 -2.46) (end 1.93 -0.98) (layer F.SilkS) (width 0.12))
  989. (fp_line (start 1.93 0.98) (end 1.93 2.46) (layer F.SilkS) (width 0.12))
  990. (fp_line (start 1.971 -2.448) (end 1.971 -0.98) (layer F.SilkS) (width 0.12))
  991. (fp_line (start 1.971 0.98) (end 1.971 2.448) (layer F.SilkS) (width 0.12))
  992. (fp_line (start 2.011 -2.436) (end 2.011 -0.98) (layer F.SilkS) (width 0.12))
  993. (fp_line (start 2.011 0.98) (end 2.011 2.436) (layer F.SilkS) (width 0.12))
  994. (fp_line (start 2.051 -2.424) (end 2.051 -0.98) (layer F.SilkS) (width 0.12))
  995. (fp_line (start 2.051 0.98) (end 2.051 2.424) (layer F.SilkS) (width 0.12))
  996. (fp_line (start 2.091 -2.41) (end 2.091 -0.98) (layer F.SilkS) (width 0.12))
  997. (fp_line (start 2.091 0.98) (end 2.091 2.41) (layer F.SilkS) (width 0.12))
  998. (fp_line (start 2.131 -2.396) (end 2.131 -0.98) (layer F.SilkS) (width 0.12))
  999. (fp_line (start 2.131 0.98) (end 2.131 2.396) (layer F.SilkS) (width 0.12))
  1000. (fp_line (start 2.171 -2.382) (end 2.171 -0.98) (layer F.SilkS) (width 0.12))
  1001. (fp_line (start 2.171 0.98) (end 2.171 2.382) (layer F.SilkS) (width 0.12))
  1002. (fp_line (start 2.211 -2.366) (end 2.211 -0.98) (layer F.SilkS) (width 0.12))
  1003. (fp_line (start 2.211 0.98) (end 2.211 2.366) (layer F.SilkS) (width 0.12))
  1004. (fp_line (start 2.251 -2.35) (end 2.251 -0.98) (layer F.SilkS) (width 0.12))
  1005. (fp_line (start 2.251 0.98) (end 2.251 2.35) (layer F.SilkS) (width 0.12))
  1006. (fp_line (start 2.291 -2.333) (end 2.291 -0.98) (layer F.SilkS) (width 0.12))
  1007. (fp_line (start 2.291 0.98) (end 2.291 2.333) (layer F.SilkS) (width 0.12))
  1008. (fp_line (start 2.331 -2.315) (end 2.331 -0.98) (layer F.SilkS) (width 0.12))
  1009. (fp_line (start 2.331 0.98) (end 2.331 2.315) (layer F.SilkS) (width 0.12))
  1010. (fp_line (start 2.371 -2.296) (end 2.371 -0.98) (layer F.SilkS) (width 0.12))
  1011. (fp_line (start 2.371 0.98) (end 2.371 2.296) (layer F.SilkS) (width 0.12))
  1012. (fp_line (start 2.411 -2.276) (end 2.411 -0.98) (layer F.SilkS) (width 0.12))
  1013. (fp_line (start 2.411 0.98) (end 2.411 2.276) (layer F.SilkS) (width 0.12))
  1014. (fp_line (start 2.451 -2.256) (end 2.451 -0.98) (layer F.SilkS) (width 0.12))
  1015. (fp_line (start 2.451 0.98) (end 2.451 2.256) (layer F.SilkS) (width 0.12))
  1016. (fp_line (start 2.491 -2.234) (end 2.491 -0.98) (layer F.SilkS) (width 0.12))
  1017. (fp_line (start 2.491 0.98) (end 2.491 2.234) (layer F.SilkS) (width 0.12))
  1018. (fp_line (start 2.531 -2.212) (end 2.531 -0.98) (layer F.SilkS) (width 0.12))
  1019. (fp_line (start 2.531 0.98) (end 2.531 2.212) (layer F.SilkS) (width 0.12))
  1020. (fp_line (start 2.571 -2.189) (end 2.571 -0.98) (layer F.SilkS) (width 0.12))
  1021. (fp_line (start 2.571 0.98) (end 2.571 2.189) (layer F.SilkS) (width 0.12))
  1022. (fp_line (start 2.611 -2.165) (end 2.611 -0.98) (layer F.SilkS) (width 0.12))
  1023. (fp_line (start 2.611 0.98) (end 2.611 2.165) (layer F.SilkS) (width 0.12))
  1024. (fp_line (start 2.651 -2.14) (end 2.651 -0.98) (layer F.SilkS) (width 0.12))
  1025. (fp_line (start 2.651 0.98) (end 2.651 2.14) (layer F.SilkS) (width 0.12))
  1026. (fp_line (start 2.691 -2.113) (end 2.691 -0.98) (layer F.SilkS) (width 0.12))
  1027. (fp_line (start 2.691 0.98) (end 2.691 2.113) (layer F.SilkS) (width 0.12))
  1028. (fp_line (start 2.731 -2.086) (end 2.731 -0.98) (layer F.SilkS) (width 0.12))
  1029. (fp_line (start 2.731 0.98) (end 2.731 2.086) (layer F.SilkS) (width 0.12))
  1030. (fp_line (start 2.771 -2.058) (end 2.771 -0.98) (layer F.SilkS) (width 0.12))
  1031. (fp_line (start 2.771 0.98) (end 2.771 2.058) (layer F.SilkS) (width 0.12))
  1032. (fp_line (start 2.811 -2.028) (end 2.811 -0.98) (layer F.SilkS) (width 0.12))
  1033. (fp_line (start 2.811 0.98) (end 2.811 2.028) (layer F.SilkS) (width 0.12))
  1034. (fp_line (start 2.851 -1.997) (end 2.851 -0.98) (layer F.SilkS) (width 0.12))
  1035. (fp_line (start 2.851 0.98) (end 2.851 1.997) (layer F.SilkS) (width 0.12))
  1036. (fp_line (start 2.891 -1.965) (end 2.891 -0.98) (layer F.SilkS) (width 0.12))
  1037. (fp_line (start 2.891 0.98) (end 2.891 1.965) (layer F.SilkS) (width 0.12))
  1038. (fp_line (start 2.931 -1.932) (end 2.931 -0.98) (layer F.SilkS) (width 0.12))
  1039. (fp_line (start 2.931 0.98) (end 2.931 1.932) (layer F.SilkS) (width 0.12))
  1040. (fp_line (start 2.971 -1.897) (end 2.971 -0.98) (layer F.SilkS) (width 0.12))
  1041. (fp_line (start 2.971 0.98) (end 2.971 1.897) (layer F.SilkS) (width 0.12))
  1042. (fp_line (start 3.011 -1.861) (end 3.011 -0.98) (layer F.SilkS) (width 0.12))
  1043. (fp_line (start 3.011 0.98) (end 3.011 1.861) (layer F.SilkS) (width 0.12))
  1044. (fp_line (start 3.051 -1.823) (end 3.051 -0.98) (layer F.SilkS) (width 0.12))
  1045. (fp_line (start 3.051 0.98) (end 3.051 1.823) (layer F.SilkS) (width 0.12))
  1046. (fp_line (start 3.091 -1.783) (end 3.091 -0.98) (layer F.SilkS) (width 0.12))
  1047. (fp_line (start 3.091 0.98) (end 3.091 1.783) (layer F.SilkS) (width 0.12))
  1048. (fp_line (start 3.131 -1.742) (end 3.131 -0.98) (layer F.SilkS) (width 0.12))
  1049. (fp_line (start 3.131 0.98) (end 3.131 1.742) (layer F.SilkS) (width 0.12))
  1050. (fp_line (start 3.171 -1.699) (end 3.171 -0.98) (layer F.SilkS) (width 0.12))
  1051. (fp_line (start 3.171 0.98) (end 3.171 1.699) (layer F.SilkS) (width 0.12))
  1052. (fp_line (start 3.211 -1.654) (end 3.211 -0.98) (layer F.SilkS) (width 0.12))
  1053. (fp_line (start 3.211 0.98) (end 3.211 1.654) (layer F.SilkS) (width 0.12))
  1054. (fp_line (start 3.251 -1.606) (end 3.251 -0.98) (layer F.SilkS) (width 0.12))
  1055. (fp_line (start 3.251 0.98) (end 3.251 1.606) (layer F.SilkS) (width 0.12))
  1056. (fp_line (start 3.291 -1.556) (end 3.291 -0.98) (layer F.SilkS) (width 0.12))
  1057. (fp_line (start 3.291 0.98) (end 3.291 1.556) (layer F.SilkS) (width 0.12))
  1058. (fp_line (start 3.331 -1.504) (end 3.331 -0.98) (layer F.SilkS) (width 0.12))
  1059. (fp_line (start 3.331 0.98) (end 3.331 1.504) (layer F.SilkS) (width 0.12))
  1060. (fp_line (start 3.371 -1.448) (end 3.371 -0.98) (layer F.SilkS) (width 0.12))
  1061. (fp_line (start 3.371 0.98) (end 3.371 1.448) (layer F.SilkS) (width 0.12))
  1062. (fp_line (start 3.411 -1.39) (end 3.411 -0.98) (layer F.SilkS) (width 0.12))
  1063. (fp_line (start 3.411 0.98) (end 3.411 1.39) (layer F.SilkS) (width 0.12))
  1064. (fp_line (start 3.451 -1.327) (end 3.451 -0.98) (layer F.SilkS) (width 0.12))
  1065. (fp_line (start 3.451 0.98) (end 3.451 1.327) (layer F.SilkS) (width 0.12))
  1066. (fp_line (start 3.491 -1.261) (end 3.491 1.261) (layer F.SilkS) (width 0.12))
  1067. (fp_line (start 3.531 -1.189) (end 3.531 1.189) (layer F.SilkS) (width 0.12))
  1068. (fp_line (start 3.571 -1.112) (end 3.571 1.112) (layer F.SilkS) (width 0.12))
  1069. (fp_line (start 3.611 -1.028) (end 3.611 1.028) (layer F.SilkS) (width 0.12))
  1070. (fp_line (start 3.651 -0.934) (end 3.651 0.934) (layer F.SilkS) (width 0.12))
  1071. (fp_line (start 3.691 -0.829) (end 3.691 0.829) (layer F.SilkS) (width 0.12))
  1072. (fp_line (start 3.731 -0.707) (end 3.731 0.707) (layer F.SilkS) (width 0.12))
  1073. (fp_line (start 3.771 -0.559) (end 3.771 0.559) (layer F.SilkS) (width 0.12))
  1074. (fp_line (start 3.811 -0.354) (end 3.811 0.354) (layer F.SilkS) (width 0.12))
  1075. (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
  1076. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
  1077. (fp_line (start -1.6 -2.85) (end -1.6 2.85) (layer F.CrtYd) (width 0.05))
  1078. (fp_line (start -1.6 2.85) (end 4.1 2.85) (layer F.CrtYd) (width 0.05))
  1079. (fp_line (start 4.1 2.85) (end 4.1 -2.85) (layer F.CrtYd) (width 0.05))
  1080. (fp_line (start 4.1 -2.85) (end -1.6 -2.85) (layer F.CrtYd) (width 0.05))
  1081. (fp_text user %R (at 1.25 0) (layer F.Fab)
  1082. (effects (font (size 1 1) (thickness 0.15)))
  1083. )
  1084. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1085. (net 3 "Net-(C13-Pad1)"))
  1086. (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1087. (net 30 GND_ISO_4))
  1088. (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_D5.0mm_P2.50mm.wrl
  1089. (at (xyz 0 0 0))
  1090. (scale (xyz 1 1 1))
  1091. (rotate (xyz 0 0 0))
  1092. )
  1093. )
  1094. (module Capacitors_THT:CP_Radial_Tantal_D4.5mm_P2.50mm (layer F.Cu) (tedit 597C781B) (tstamp 59A6EB1A)
  1095. (at 151.17 99.06)
  1096. (descr "CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf")
  1097. (tags "CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor")
  1098. (path /59A712A3/5949814D)
  1099. (fp_text reference C15 (at 1.25 -3.56) (layer F.SilkS)
  1100. (effects (font (size 1 1) (thickness 0.15)))
  1101. )
  1102. (fp_text value C (at 1.25 3.56) (layer F.Fab)
  1103. (effects (font (size 1 1) (thickness 0.15)))
  1104. )
  1105. (fp_arc (start 1.25 0) (end -0.770693 -1.18) (angle 119.4) (layer F.SilkS) (width 0.12))
  1106. (fp_arc (start 1.25 0) (end -0.770693 1.18) (angle -119.4) (layer F.SilkS) (width 0.12))
  1107. (fp_arc (start 1.25 0) (end 3.270693 -1.18) (angle 60.6) (layer F.SilkS) (width 0.12))
  1108. (fp_circle (center 1.25 0) (end 3.5 0) (layer F.Fab) (width 0.1))
  1109. (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
  1110. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
  1111. (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
  1112. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
  1113. (fp_line (start -1.35 -2.6) (end -1.35 2.6) (layer F.CrtYd) (width 0.05))
  1114. (fp_line (start -1.35 2.6) (end 3.85 2.6) (layer F.CrtYd) (width 0.05))
  1115. (fp_line (start 3.85 2.6) (end 3.85 -2.6) (layer F.CrtYd) (width 0.05))
  1116. (fp_line (start 3.85 -2.6) (end -1.35 -2.6) (layer F.CrtYd) (width 0.05))
  1117. (fp_text user %R (at 1.25 0) (layer F.Fab)
  1118. (effects (font (size 1 1) (thickness 0.15)))
  1119. )
  1120. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1121. (net 30 GND_ISO_4))
  1122. (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1123. (net 31 DRV_GATE_D))
  1124. (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D4.5mm_P2.50mm.wrl
  1125. (at (xyz 0 0 0))
  1126. (scale (xyz 1 1 1))
  1127. (rotate (xyz 0 0 0))
  1128. )
  1129. )
  1130. (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59EF680E)
  1131. (at 147.066 105.41 180)
  1132. (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
  1133. (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
  1134. (path /59A712A3/59EF0FC7)
  1135. (fp_text reference R16 (at 3.81 -2.31 180) (layer F.SilkS)
  1136. (effects (font (size 1 1) (thickness 0.15)))
  1137. )
  1138. (fp_text value R (at 3.81 2.31 180) (layer F.Fab)
  1139. (effects (font (size 1 1) (thickness 0.15)))
  1140. )
  1141. (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
  1142. (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
  1143. (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
  1144. (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
  1145. (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
  1146. (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
  1147. (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
  1148. (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
  1149. (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
  1150. (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
  1151. (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
  1152. (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
  1153. (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
  1154. (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
  1155. (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
  1156. (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
  1157. (pad 1 thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1158. (net 15 "Net-(C23-Pad1)"))
  1159. (pad 2 thru_hole oval (at 7.62 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1160. (net 7 "Net-(IC4-Pad2)"))
  1161. (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
  1162. (at (xyz 0 0 0))
  1163. (scale (xyz 0.3937 0.3937 0.3937))
  1164. (rotate (xyz 0 0 0))
  1165. )
  1166. )
  1167. (module PartsLibraries:RJ45 (layer F.Cu) (tedit 5A16E9B9) (tstamp 59A6EC93)
  1168. (at 107.95 109.22)
  1169. (tags RJ45)
  1170. (path /59526541)
  1171. (fp_text reference J1 (at -5.08 3.81) (layer F.SilkS)
  1172. (effects (font (size 1 1) (thickness 0.15)))
  1173. )
  1174. (fp_text value Monitor (at -5.08 11.43 90) (layer F.SilkS)
  1175. (effects (font (size 1 1) (thickness 0.15)))
  1176. )
  1177. (fp_line (start -3.17 14.22) (end 12.07 14.22) (layer F.SilkS) (width 0.12))
  1178. (fp_line (start 12.07 -3.81) (end 12.06 5.18) (layer F.SilkS) (width 0.12))
  1179. (fp_line (start 12.07 -3.81) (end -3.17 -3.81) (layer F.SilkS) (width 0.12))
  1180. (fp_line (start -3.17 -3.81) (end -3.17 5.19) (layer F.SilkS) (width 0.12))
  1181. (fp_line (start 12.06 7.52) (end 12.07 14.22) (layer F.SilkS) (width 0.12))
  1182. (fp_line (start -3.17 7.51) (end -3.17 14.22) (layer F.SilkS) (width 0.12))
  1183. (fp_line (start -3.56 -4.06) (end 12.46 -4.06) (layer F.CrtYd) (width 0.05))
  1184. (fp_line (start -3.56 -4.06) (end -3.56 14.47) (layer F.CrtYd) (width 0.05))
  1185. (fp_line (start 12.46 14.47) (end 12.46 -4.06) (layer F.CrtYd) (width 0.05))
  1186. (fp_line (start 12.46 14.47) (end -3.56 14.47) (layer F.CrtYd) (width 0.05))
  1187. (pad "" np_thru_hole circle (at 10.16 6.35) (size 3.65 3.65) (drill 3.25) (layers *.Cu *.SilkS *.Mask))
  1188. (pad "" np_thru_hole circle (at -1.27 6.35) (size 3.65 3.65) (drill 3.25) (layers *.Cu *.SilkS *.Mask))
  1189. (pad 1 thru_hole rect (at 0 0) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
  1190. (net 32 ARD_CUR))
  1191. (pad 2 thru_hole circle (at 1.27 -2.54) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask))
  1192. (pad 3 thru_hole circle (at 2.54 0) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask))
  1193. (pad 4 thru_hole circle (at 3.81 -2.54) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask))
  1194. (pad 5 thru_hole circle (at 5.08 0) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask))
  1195. (pad 6 thru_hole circle (at 6.35 -2.54) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
  1196. (net 34 ARD_TEMP))
  1197. (pad 7 thru_hole circle (at 7.62 0) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
  1198. (net 33 ARD_VCC))
  1199. (pad 8 thru_hole circle (at 8.89 -2.54) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
  1200. (net 10 ARD_GND))
  1201. (model ../../../../../../Development/multilevelinverter/Hardware/3D/RJ45.wrl
  1202. (at (xyz 0.175 -0.667 0.3))
  1203. (scale (xyz 10 10 10))
  1204. (rotate (xyz 270 0 0))
  1205. )
  1206. )
  1207. (module PartsLibraries:RJ45 (layer F.Cu) (tedit 5A16E9AB) (tstamp 59A7E8CF)
  1208. (at 116.84 97.79 180)
  1209. (tags RJ45)
  1210. (path /59A7EBD8)
  1211. (fp_text reference J7 (at 11.43 19.05 180) (layer F.SilkS)
  1212. (effects (font (size 1 1) (thickness 0.15)))
  1213. )
  1214. (fp_text value Control (at 5.08 19.05 180) (layer F.SilkS)
  1215. (effects (font (size 1 1) (thickness 0.15)))
  1216. )
  1217. (fp_line (start -3.17 14.22) (end 12.07 14.22) (layer F.SilkS) (width 0.12))
  1218. (fp_line (start 12.07 -3.81) (end 12.06 5.18) (layer F.SilkS) (width 0.12))
  1219. (fp_line (start 12.07 -3.81) (end -3.17 -3.81) (layer F.SilkS) (width 0.12))
  1220. (fp_line (start -3.17 -3.81) (end -3.17 5.19) (layer F.SilkS) (width 0.12))
  1221. (fp_line (start 12.06 7.52) (end 12.07 14.22) (layer F.SilkS) (width 0.12))
  1222. (fp_line (start -3.17 7.51) (end -3.17 14.22) (layer F.SilkS) (width 0.12))
  1223. (fp_line (start -3.56 -4.06) (end 12.46 -4.06) (layer F.CrtYd) (width 0.05))
  1224. (fp_line (start -3.56 -4.06) (end -3.56 14.47) (layer F.CrtYd) (width 0.05))
  1225. (fp_line (start 12.46 14.47) (end 12.46 -4.06) (layer F.CrtYd) (width 0.05))
  1226. (fp_line (start 12.46 14.47) (end -3.56 14.47) (layer F.CrtYd) (width 0.05))
  1227. (pad "" np_thru_hole circle (at 10.16 6.35 180) (size 3.65 3.65) (drill 3.25) (layers *.Cu *.SilkS *.Mask))
  1228. (pad "" np_thru_hole circle (at -1.27 6.35 180) (size 3.65 3.65) (drill 3.25) (layers *.Cu *.SilkS *.Mask))
  1229. (pad 1 thru_hole rect (at 0 0 180) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
  1230. (net 8 DC_IN))
  1231. (pad 2 thru_hole circle (at 1.27 -2.54 180) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
  1232. (net 9 DC_GND))
  1233. (pad 3 thru_hole circle (at 2.54 0 180) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
  1234. (net 16 ARD_PWM_A))
  1235. (pad 4 thru_hole circle (at 3.81 -2.54 180) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
  1236. (net 17 ARD_PWM_B))
  1237. (pad 5 thru_hole circle (at 5.08 0 180) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
  1238. (net 18 ARD_PWM_C))
  1239. (pad 6 thru_hole circle (at 6.35 -2.54 180) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
  1240. (net 19 ARD_PWM_D))
  1241. (pad 7 thru_hole circle (at 7.62 0 180) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask))
  1242. (pad 8 thru_hole circle (at 8.89 -2.54 180) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask))
  1243. (model ../../../../../../Development/multilevelinverter/Hardware/3D/RJ45.wrl
  1244. (at (xyz 0.175 -0.667 0.3))
  1245. (scale (xyz 10 10 10))
  1246. (rotate (xyz 270 0 0))
  1247. )
  1248. )
  1249. (module PartsLibraries:RJ45 (layer F.Cu) (tedit 5A16E925) (tstamp 5A17795A)
  1250. (at 116.84 50.8 180)
  1251. (tags RJ45)
  1252. (path /5A16B56F)
  1253. (fp_text reference J3 (at 11.43 -5.08 360) (layer F.SilkS)
  1254. (effects (font (size 1 1) (thickness 0.15)))
  1255. )
  1256. (fp_text value SignalToPower (at 3.81 -5.08 360) (layer F.SilkS)
  1257. (effects (font (size 1 1) (thickness 0.15)))
  1258. )
  1259. (fp_line (start -3.17 14.22) (end 12.07 14.22) (layer F.SilkS) (width 0.12))
  1260. (fp_line (start 12.07 -3.81) (end 12.06 5.18) (layer F.SilkS) (width 0.12))
  1261. (fp_line (start 12.07 -3.81) (end -3.17 -3.81) (layer F.SilkS) (width 0.12))
  1262. (fp_line (start -3.17 -3.81) (end -3.17 5.19) (layer F.SilkS) (width 0.12))
  1263. (fp_line (start 12.06 7.52) (end 12.07 14.22) (layer F.SilkS) (width 0.12))
  1264. (fp_line (start -3.17 7.51) (end -3.17 14.22) (layer F.SilkS) (width 0.12))
  1265. (fp_line (start -3.56 -4.06) (end 12.46 -4.06) (layer F.CrtYd) (width 0.05))
  1266. (fp_line (start -3.56 -4.06) (end -3.56 14.47) (layer F.CrtYd) (width 0.05))
  1267. (fp_line (start 12.46 14.47) (end 12.46 -4.06) (layer F.CrtYd) (width 0.05))
  1268. (fp_line (start 12.46 14.47) (end -3.56 14.47) (layer F.CrtYd) (width 0.05))
  1269. (pad "" np_thru_hole circle (at 10.16 6.35 180) (size 3.65 3.65) (drill 3.25) (layers *.Cu *.SilkS *.Mask))
  1270. (pad "" np_thru_hole circle (at -1.27 6.35 180) (size 3.65 3.65) (drill 3.25) (layers *.Cu *.SilkS *.Mask))
  1271. (pad 1 thru_hole rect (at 0 0 180) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
  1272. (net 28 GND_ISO_3))
  1273. (pad 2 thru_hole circle (at 1.27 -2.54 180) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
  1274. (net 31 DRV_GATE_D))
  1275. (pad 3 thru_hole circle (at 2.54 0 180) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
  1276. (net 29 DRV_GATE_C))
  1277. (pad 4 thru_hole circle (at 3.81 -2.54 180) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
  1278. (net 30 GND_ISO_4))
  1279. (pad 5 thru_hole circle (at 5.08 0 180) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
  1280. (net 24 GND_ISO_1))
  1281. (pad 6 thru_hole circle (at 6.35 -2.54 180) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
  1282. (net 27 DRV_GATE_B))
  1283. (pad 7 thru_hole circle (at 7.62 0 180) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
  1284. (net 25 DRV_GATE_A))
  1285. (pad 8 thru_hole circle (at 8.89 -2.54 180) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
  1286. (net 26 GND_ISO_2))
  1287. (model ../../../../../../Development/multilevelinverter/Hardware/3D/RJ45.wrl
  1288. (at (xyz 0.175 -0.667 0.3))
  1289. (scale (xyz 10 10 10))
  1290. (rotate (xyz 270 0 0))
  1291. )
  1292. )
  1293. (module Housings_DIP:DIP-6_W7.62mm (layer F.Cu) (tedit 59C78D6B) (tstamp 59EF6872)
  1294. (at 126.238 56.642)
  1295. (descr "6-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils)")
  1296. (tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil")
  1297. (path /59A71299/59A6DAA6)
  1298. (fp_text reference U6 (at 3.81 -2.33) (layer F.SilkS)
  1299. (effects (font (size 1 1) (thickness 0.15)))
  1300. )
  1301. (fp_text value H11N1M (at 3.81 7.41) (layer F.Fab)
  1302. (effects (font (size 1 1) (thickness 0.15)))
  1303. )
  1304. (fp_arc (start 3.81 -1.33) (end 2.81 -1.33) (angle -180) (layer F.SilkS) (width 0.12))
  1305. (fp_line (start 1.635 -1.27) (end 6.985 -1.27) (layer F.Fab) (width 0.1))
  1306. (fp_line (start 6.985 -1.27) (end 6.985 6.35) (layer F.Fab) (width 0.1))
  1307. (fp_line (start 6.985 6.35) (end 0.635 6.35) (layer F.Fab) (width 0.1))
  1308. (fp_line (start 0.635 6.35) (end 0.635 -0.27) (layer F.Fab) (width 0.1))
  1309. (fp_line (start 0.635 -0.27) (end 1.635 -1.27) (layer F.Fab) (width 0.1))
  1310. (fp_line (start 2.81 -1.33) (end 1.16 -1.33) (layer F.SilkS) (width 0.12))
  1311. (fp_line (start 1.16 -1.33) (end 1.16 6.41) (layer F.SilkS) (width 0.12))
  1312. (fp_line (start 1.16 6.41) (end 6.46 6.41) (layer F.SilkS) (width 0.12))
  1313. (fp_line (start 6.46 6.41) (end 6.46 -1.33) (layer F.SilkS) (width 0.12))
  1314. (fp_line (start 6.46 -1.33) (end 4.81 -1.33) (layer F.SilkS) (width 0.12))
  1315. (fp_line (start -1.1 -1.55) (end -1.1 6.6) (layer F.CrtYd) (width 0.05))
  1316. (fp_line (start -1.1 6.6) (end 8.7 6.6) (layer F.CrtYd) (width 0.05))
  1317. (fp_line (start 8.7 6.6) (end 8.7 -1.55) (layer F.CrtYd) (width 0.05))
  1318. (fp_line (start 8.7 -1.55) (end -1.1 -1.55) (layer F.CrtYd) (width 0.05))
  1319. (fp_text user %R (at 3.81 2.54) (layer F.Fab)
  1320. (effects (font (size 1 1) (thickness 0.15)))
  1321. )
  1322. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1323. (net 22 "Net-(C27-Pad1)"))
  1324. (pad 4 thru_hole oval (at 7.62 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1325. (net 6 "Net-(IC3-Pad2)"))
  1326. (pad 2 thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1327. (net 10 ARD_GND))
  1328. (pad 5 thru_hole oval (at 7.62 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1329. (net 28 GND_ISO_3))
  1330. (pad 3 thru_hole oval (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask))
  1331. (pad 6 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1332. (net 14 "Net-(C21-Pad1)"))
  1333. (model ${KISYS3DMOD}/Housings_DIP.3dshapes/DIP-6_W7.62mm.wrl
  1334. (at (xyz 0 0 0))
  1335. (scale (xyz 1 1 1))
  1336. (rotate (xyz 0 0 0))
  1337. )
  1338. )
  1339. (module Mounting_Holes:MountingHole_4.3mm_M4 (layer F.Cu) (tedit 59A7ED15) (tstamp 59A7F116)
  1340. (at 54.61 107.95)
  1341. (descr "Mounting Hole 4.3mm, no annular, M4")
  1342. (tags "mounting hole 4.3mm no annular m4")
  1343. (fp_text reference "" (at 0 -5.3) (layer F.SilkS)
  1344. (effects (font (size 1 1) (thickness 0.15)))
  1345. )
  1346. (fp_text value MountingHole_4.3mm_M4 (at 0 5.3) (layer F.Fab)
  1347. (effects (font (size 1 1) (thickness 0.15)))
  1348. )
  1349. (fp_circle (center 0 0) (end 4.3 0) (layer Cmts.User) (width 0.15))
  1350. (fp_circle (center 0 0) (end 4.55 0) (layer F.CrtYd) (width 0.05))
  1351. (pad 1 np_thru_hole circle (at 0 0) (size 4.3 4.3) (drill 4.3) (layers *.Cu *.Mask))
  1352. )
  1353. (module Mounting_Holes:MountingHole_4.3mm_M4 (layer F.Cu) (tedit 59A7ED10) (tstamp 59A7F0FC)
  1354. (at 170.18 39.37)
  1355. (descr "Mounting Hole 4.3mm, no annular, M4")
  1356. (tags "mounting hole 4.3mm no annular m4")
  1357. (fp_text reference "" (at 0 -5.3) (layer F.SilkS)
  1358. (effects (font (size 1 1) (thickness 0.15)))
  1359. )
  1360. (fp_text value MountingHole_4.3mm_M4 (at 0 5.3) (layer F.Fab)
  1361. (effects (font (size 1 1) (thickness 0.15)))
  1362. )
  1363. (fp_circle (center 0 0) (end 4.3 0) (layer Cmts.User) (width 0.15))
  1364. (fp_circle (center 0 0) (end 4.55 0) (layer F.CrtYd) (width 0.05))
  1365. (pad 1 np_thru_hole circle (at 0 0) (size 4.3 4.3) (drill 4.3) (layers *.Cu *.Mask))
  1366. )
  1367. (module Capacitors_THT:CP_Radial_Tantal_D4.5mm_P2.50mm (layer F.Cu) (tedit 597C781B) (tstamp 59A6E9D7)
  1368. (at 156.21 53.34)
  1369. (descr "CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf")
  1370. (tags "CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor")
  1371. (path /59A71299/59A6D3E0)
  1372. (fp_text reference C10 (at 1.25 -3.56) (layer F.SilkS)
  1373. (effects (font (size 1 1) (thickness 0.15)))
  1374. )
  1375. (fp_text value 100nF (at 1.25 3.56) (layer F.Fab)
  1376. (effects (font (size 1 1) (thickness 0.15)))
  1377. )
  1378. (fp_arc (start 1.25 0) (end -0.770693 -1.18) (angle 119.4) (layer F.SilkS) (width 0.12))
  1379. (fp_arc (start 1.25 0) (end -0.770693 1.18) (angle -119.4) (layer F.SilkS) (width 0.12))
  1380. (fp_arc (start 1.25 0) (end 3.270693 -1.18) (angle 60.6) (layer F.SilkS) (width 0.12))
  1381. (fp_circle (center 1.25 0) (end 3.5 0) (layer F.Fab) (width 0.1))
  1382. (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
  1383. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
  1384. (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
  1385. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
  1386. (fp_line (start -1.35 -2.6) (end -1.35 2.6) (layer F.CrtYd) (width 0.05))
  1387. (fp_line (start -1.35 2.6) (end 3.85 2.6) (layer F.CrtYd) (width 0.05))
  1388. (fp_line (start 3.85 2.6) (end 3.85 -2.6) (layer F.CrtYd) (width 0.05))
  1389. (fp_line (start 3.85 -2.6) (end -1.35 -2.6) (layer F.CrtYd) (width 0.05))
  1390. (fp_text user %R (at 1.25 0) (layer F.Fab)
  1391. (effects (font (size 1 1) (thickness 0.15)))
  1392. )
  1393. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1394. (net 2 "Net-(C10-Pad1)"))
  1395. (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1396. (net 28 GND_ISO_3))
  1397. (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D4.5mm_P2.50mm.wrl
  1398. (at (xyz 0 0 0))
  1399. (scale (xyz 1 1 1))
  1400. (rotate (xyz 0 0 0))
  1401. )
  1402. )
  1403. (module PartsLibraries:TC4422AVPA (layer F.Cu) (tedit 592E9A52) (tstamp 59A6EE9E)
  1404. (at 58.42 80.01)
  1405. (descr DIP254P762X432-8)
  1406. (tags "Integrated Circuit")
  1407. (path /59A7109E/59A6D3EA)
  1408. (fp_text reference U3 (at 3.81 -2.286) (layer F.SilkS)
  1409. (effects (font (size 1.27 1.27) (thickness 0.254)))
  1410. )
  1411. (fp_text value NME1212DC (at 3.556 9.906) (layer F.SilkS) hide
  1412. (effects (font (size 1.27 1.27) (thickness 0.254)))
  1413. )
  1414. (fp_line (start 0.508 8.7122) (end 0.508 -1.0922) (layer Dwgs.User) (width 0.1524))
  1415. (fp_line (start 0.508 -1.1938) (end 7.112 -1.1938) (layer Dwgs.User) (width 0.1524))
  1416. (fp_line (start -0.4826 3.048) (end 0.508 3.048) (layer Dwgs.User) (width 0.1524))
  1417. (fp_line (start -0.4826 2.032) (end -0.4826 3.048) (layer Dwgs.User) (width 0.1524))
  1418. (fp_line (start 0.508 2.032) (end -0.4826 2.032) (layer Dwgs.User) (width 0.1524))
  1419. (fp_line (start 0.508 3.048) (end 0.508 2.032) (layer Dwgs.User) (width 0.1524))
  1420. (fp_line (start 7.112 1.5748) (end 7.112 0.9652) (layer F.SilkS) (width 0.1524))
  1421. (fp_line (start 7.112 4.1148) (end 7.112 3.5052) (layer F.SilkS) (width 0.1524))
  1422. (fp_line (start 0.508 6.0452) (end 0.508 6.6548) (layer F.SilkS) (width 0.1524))
  1423. (fp_line (start 0.508 3.5052) (end 0.508 4.1148) (layer F.SilkS) (width 0.1524))
  1424. (fp_line (start 0.508 8.7122) (end 7.112 8.7122) (layer F.SilkS) (width 0.1524))
  1425. (fp_line (start 7.112 6.6548) (end 7.112 6.0452) (layer F.SilkS) (width 0.1524))
  1426. (fp_line (start 0.508 1.0922) (end 0.508 1.5748) (layer F.SilkS) (width 0.1524))
  1427. (fp_line (start 0.508 0.508) (end 0.508 -0.508) (layer Dwgs.User) (width 0.1524))
  1428. (fp_line (start 0.508 -0.508) (end -0.4826 -0.508) (layer Dwgs.User) (width 0.1524))
  1429. (fp_line (start -0.4826 -0.508) (end -0.4826 0.508) (layer Dwgs.User) (width 0.1524))
  1430. (fp_line (start -0.4826 0.508) (end 0.508 0.508) (layer Dwgs.User) (width 0.1524))
  1431. (fp_line (start 0.508 5.588) (end 0.508 4.572) (layer Dwgs.User) (width 0.1524))
  1432. (fp_line (start 0.508 4.572) (end -0.4826 4.572) (layer Dwgs.User) (width 0.1524))
  1433. (fp_line (start -0.4826 4.572) (end -0.4826 5.588) (layer Dwgs.User) (width 0.1524))
  1434. (fp_line (start -0.4826 5.588) (end 0.508 5.588) (layer Dwgs.User) (width 0.1524))
  1435. (fp_line (start 0.508 8.128) (end 0.508 7.112) (layer Dwgs.User) (width 0.1524))
  1436. (fp_line (start 0.508 7.112) (end -0.4826 7.1374) (layer Dwgs.User) (width 0.1524))
  1437. (fp_line (start -0.4826 7.1374) (end -0.4826 8.128) (layer Dwgs.User) (width 0.1524))
  1438. (fp_line (start -0.4826 8.128) (end 0.508 8.128) (layer Dwgs.User) (width 0.1524))
  1439. (fp_line (start 7.112 7.112) (end 7.112 8.128) (layer Dwgs.User) (width 0.1524))
  1440. (fp_line (start 7.112 8.128) (end 8.1026 8.1026) (layer Dwgs.User) (width 0.1524))
  1441. (fp_line (start 8.1026 8.1026) (end 8.1026 7.112) (layer Dwgs.User) (width 0.1524))
  1442. (fp_line (start 8.1026 7.112) (end 7.112 7.112) (layer Dwgs.User) (width 0.1524))
  1443. (fp_line (start 7.112 4.572) (end 7.112 5.588) (layer Dwgs.User) (width 0.1524))
  1444. (fp_line (start 7.112 5.588) (end 8.1026 5.5626) (layer Dwgs.User) (width 0.1524))
  1445. (fp_line (start 8.1026 5.5626) (end 8.1026 4.572) (layer Dwgs.User) (width 0.1524))
  1446. (fp_line (start 8.1026 4.572) (end 7.112 4.572) (layer Dwgs.User) (width 0.1524))
  1447. (fp_line (start 7.112 2.032) (end 7.112 3.048) (layer Dwgs.User) (width 0.1524))
  1448. (fp_line (start 7.112 3.048) (end 8.1026 3.048) (layer Dwgs.User) (width 0.1524))
  1449. (fp_line (start 8.1026 3.048) (end 8.1026 2.032) (layer Dwgs.User) (width 0.1524))
  1450. (fp_line (start 8.1026 2.032) (end 7.112 2.032) (layer Dwgs.User) (width 0.1524))
  1451. (fp_line (start 7.112 -0.508) (end 7.112 0.508) (layer Dwgs.User) (width 0.1524))
  1452. (fp_line (start 7.112 0.508) (end 8.1026 0.508) (layer Dwgs.User) (width 0.1524))
  1453. (fp_line (start 8.1026 0.508) (end 8.1026 -0.508) (layer Dwgs.User) (width 0.1524))
  1454. (fp_line (start 8.1026 -0.508) (end 7.112 -0.508) (layer Dwgs.User) (width 0.1524))
  1455. (fp_line (start 0.508 8.7122) (end 7.112 8.7122) (layer Dwgs.User) (width 0.1524))
  1456. (fp_line (start 7.112 8.7122) (end 7.112 -1.0922) (layer Dwgs.User) (width 0.1524))
  1457. (pad 1 thru_hole rect (at 0 0 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  1458. (net 9 DC_GND))
  1459. (pad 2 thru_hole circle (at 0 2.54 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS))
  1460. (pad 3 thru_hole circle (at 0 5.08 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS))
  1461. (pad 4 thru_hole circle (at 0 7.62 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  1462. (net 8 DC_IN))
  1463. (pad 5 thru_hole circle (at 7.62 7.62 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  1464. (net 11 "Net-(C20-Pad1)"))
  1465. (pad 6 thru_hole circle (at 7.62 5.08 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS))
  1466. (pad 7 thru_hole circle (at 7.62 2.54 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  1467. (net 26 GND_ISO_2))
  1468. (pad 8 thru_hole circle (at 7.62 0 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS))
  1469. (model Housings_DIP.3dshapes/DIP-8_W7.62mm.wrl
  1470. (at (xyz 0 0 0))
  1471. (scale (xyz 1 1 1))
  1472. (rotate (xyz 0 0 0))
  1473. )
  1474. )
  1475. (module PartsLibraries:TC4422AVPA (layer F.Cu) (tedit 592E9A52) (tstamp 59A6EEEF)
  1476. (at 127 43.18)
  1477. (descr DIP254P762X432-8)
  1478. (tags "Integrated Circuit")
  1479. (path /59A71299/59A6D3EA)
  1480. (fp_text reference U5 (at 3.81 -2.286) (layer F.SilkS)
  1481. (effects (font (size 1.27 1.27) (thickness 0.254)))
  1482. )
  1483. (fp_text value NME1212DC (at 3.556 9.906) (layer F.SilkS) hide
  1484. (effects (font (size 1.27 1.27) (thickness 0.254)))
  1485. )
  1486. (fp_line (start 0.508 8.7122) (end 0.508 -1.0922) (layer Dwgs.User) (width 0.1524))
  1487. (fp_line (start 0.508 -1.1938) (end 7.112 -1.1938) (layer Dwgs.User) (width 0.1524))
  1488. (fp_line (start -0.4826 3.048) (end 0.508 3.048) (layer Dwgs.User) (width 0.1524))
  1489. (fp_line (start -0.4826 2.032) (end -0.4826 3.048) (layer Dwgs.User) (width 0.1524))
  1490. (fp_line (start 0.508 2.032) (end -0.4826 2.032) (layer Dwgs.User) (width 0.1524))
  1491. (fp_line (start 0.508 3.048) (end 0.508 2.032) (layer Dwgs.User) (width 0.1524))
  1492. (fp_line (start 7.112 1.5748) (end 7.112 0.9652) (layer F.SilkS) (width 0.1524))
  1493. (fp_line (start 7.112 4.1148) (end 7.112 3.5052) (layer F.SilkS) (width 0.1524))
  1494. (fp_line (start 0.508 6.0452) (end 0.508 6.6548) (layer F.SilkS) (width 0.1524))
  1495. (fp_line (start 0.508 3.5052) (end 0.508 4.1148) (layer F.SilkS) (width 0.1524))
  1496. (fp_line (start 0.508 8.7122) (end 7.112 8.7122) (layer F.SilkS) (width 0.1524))
  1497. (fp_line (start 7.112 6.6548) (end 7.112 6.0452) (layer F.SilkS) (width 0.1524))
  1498. (fp_line (start 0.508 1.0922) (end 0.508 1.5748) (layer F.SilkS) (width 0.1524))
  1499. (fp_line (start 0.508 0.508) (end 0.508 -0.508) (layer Dwgs.User) (width 0.1524))
  1500. (fp_line (start 0.508 -0.508) (end -0.4826 -0.508) (layer Dwgs.User) (width 0.1524))
  1501. (fp_line (start -0.4826 -0.508) (end -0.4826 0.508) (layer Dwgs.User) (width 0.1524))
  1502. (fp_line (start -0.4826 0.508) (end 0.508 0.508) (layer Dwgs.User) (width 0.1524))
  1503. (fp_line (start 0.508 5.588) (end 0.508 4.572) (layer Dwgs.User) (width 0.1524))
  1504. (fp_line (start 0.508 4.572) (end -0.4826 4.572) (layer Dwgs.User) (width 0.1524))
  1505. (fp_line (start -0.4826 4.572) (end -0.4826 5.588) (layer Dwgs.User) (width 0.1524))
  1506. (fp_line (start -0.4826 5.588) (end 0.508 5.588) (layer Dwgs.User) (width 0.1524))
  1507. (fp_line (start 0.508 8.128) (end 0.508 7.112) (layer Dwgs.User) (width 0.1524))
  1508. (fp_line (start 0.508 7.112) (end -0.4826 7.1374) (layer Dwgs.User) (width 0.1524))
  1509. (fp_line (start -0.4826 7.1374) (end -0.4826 8.128) (layer Dwgs.User) (width 0.1524))
  1510. (fp_line (start -0.4826 8.128) (end 0.508 8.128) (layer Dwgs.User) (width 0.1524))
  1511. (fp_line (start 7.112 7.112) (end 7.112 8.128) (layer Dwgs.User) (width 0.1524))
  1512. (fp_line (start 7.112 8.128) (end 8.1026 8.1026) (layer Dwgs.User) (width 0.1524))
  1513. (fp_line (start 8.1026 8.1026) (end 8.1026 7.112) (layer Dwgs.User) (width 0.1524))
  1514. (fp_line (start 8.1026 7.112) (end 7.112 7.112) (layer Dwgs.User) (width 0.1524))
  1515. (fp_line (start 7.112 4.572) (end 7.112 5.588) (layer Dwgs.User) (width 0.1524))
  1516. (fp_line (start 7.112 5.588) (end 8.1026 5.5626) (layer Dwgs.User) (width 0.1524))
  1517. (fp_line (start 8.1026 5.5626) (end 8.1026 4.572) (layer Dwgs.User) (width 0.1524))
  1518. (fp_line (start 8.1026 4.572) (end 7.112 4.572) (layer Dwgs.User) (width 0.1524))
  1519. (fp_line (start 7.112 2.032) (end 7.112 3.048) (layer Dwgs.User) (width 0.1524))
  1520. (fp_line (start 7.112 3.048) (end 8.1026 3.048) (layer Dwgs.User) (width 0.1524))
  1521. (fp_line (start 8.1026 3.048) (end 8.1026 2.032) (layer Dwgs.User) (width 0.1524))
  1522. (fp_line (start 8.1026 2.032) (end 7.112 2.032) (layer Dwgs.User) (width 0.1524))
  1523. (fp_line (start 7.112 -0.508) (end 7.112 0.508) (layer Dwgs.User) (width 0.1524))
  1524. (fp_line (start 7.112 0.508) (end 8.1026 0.508) (layer Dwgs.User) (width 0.1524))
  1525. (fp_line (start 8.1026 0.508) (end 8.1026 -0.508) (layer Dwgs.User) (width 0.1524))
  1526. (fp_line (start 8.1026 -0.508) (end 7.112 -0.508) (layer Dwgs.User) (width 0.1524))
  1527. (fp_line (start 0.508 8.7122) (end 7.112 8.7122) (layer Dwgs.User) (width 0.1524))
  1528. (fp_line (start 7.112 8.7122) (end 7.112 -1.0922) (layer Dwgs.User) (width 0.1524))
  1529. (pad 1 thru_hole rect (at 0 0 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  1530. (net 9 DC_GND))
  1531. (pad 2 thru_hole circle (at 0 2.54 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS))
  1532. (pad 3 thru_hole circle (at 0 5.08 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS))
  1533. (pad 4 thru_hole circle (at 0 7.62 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  1534. (net 8 DC_IN))
  1535. (pad 5 thru_hole circle (at 7.62 7.62 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  1536. (net 2 "Net-(C10-Pad1)"))
  1537. (pad 6 thru_hole circle (at 7.62 5.08 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS))
  1538. (pad 7 thru_hole circle (at 7.62 2.54 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  1539. (net 28 GND_ISO_3))
  1540. (pad 8 thru_hole circle (at 7.62 0 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS))
  1541. (model Housings_DIP.3dshapes/DIP-8_W7.62mm.wrl
  1542. (at (xyz 0 0 0))
  1543. (scale (xyz 1 1 1))
  1544. (rotate (xyz 0 0 0))
  1545. )
  1546. )
  1547. (module PartsLibraries:TC4422AVPA (layer F.Cu) (tedit 592E9A52) (tstamp 59A6EC0D)
  1548. (at 69.85 91.44)
  1549. (descr DIP254P762X432-8)
  1550. (tags "Integrated Circuit")
  1551. (path /59A7109E/59498139)
  1552. (fp_text reference IC2 (at 3.81 -2.286) (layer F.SilkS)
  1553. (effects (font (size 1.27 1.27) (thickness 0.254)))
  1554. )
  1555. (fp_text value TC4422AVPA (at 3.556 9.906) (layer F.SilkS) hide
  1556. (effects (font (size 1.27 1.27) (thickness 0.254)))
  1557. )
  1558. (fp_line (start 0.508 8.7122) (end 0.508 -1.0922) (layer Dwgs.User) (width 0.1524))
  1559. (fp_line (start 0.508 -1.1938) (end 7.112 -1.1938) (layer Dwgs.User) (width 0.1524))
  1560. (fp_line (start -0.4826 3.048) (end 0.508 3.048) (layer Dwgs.User) (width 0.1524))
  1561. (fp_line (start -0.4826 2.032) (end -0.4826 3.048) (layer Dwgs.User) (width 0.1524))
  1562. (fp_line (start 0.508 2.032) (end -0.4826 2.032) (layer Dwgs.User) (width 0.1524))
  1563. (fp_line (start 0.508 3.048) (end 0.508 2.032) (layer Dwgs.User) (width 0.1524))
  1564. (fp_line (start 7.112 1.5748) (end 7.112 0.9652) (layer F.SilkS) (width 0.1524))
  1565. (fp_line (start 7.112 4.1148) (end 7.112 3.5052) (layer F.SilkS) (width 0.1524))
  1566. (fp_line (start 0.508 6.0452) (end 0.508 6.6548) (layer F.SilkS) (width 0.1524))
  1567. (fp_line (start 0.508 3.5052) (end 0.508 4.1148) (layer F.SilkS) (width 0.1524))
  1568. (fp_line (start 0.508 8.7122) (end 7.112 8.7122) (layer F.SilkS) (width 0.1524))
  1569. (fp_line (start 7.112 6.6548) (end 7.112 6.0452) (layer F.SilkS) (width 0.1524))
  1570. (fp_line (start 0.508 1.0922) (end 0.508 1.5748) (layer F.SilkS) (width 0.1524))
  1571. (fp_line (start 0.508 0.508) (end 0.508 -0.508) (layer Dwgs.User) (width 0.1524))
  1572. (fp_line (start 0.508 -0.508) (end -0.4826 -0.508) (layer Dwgs.User) (width 0.1524))
  1573. (fp_line (start -0.4826 -0.508) (end -0.4826 0.508) (layer Dwgs.User) (width 0.1524))
  1574. (fp_line (start -0.4826 0.508) (end 0.508 0.508) (layer Dwgs.User) (width 0.1524))
  1575. (fp_line (start 0.508 5.588) (end 0.508 4.572) (layer Dwgs.User) (width 0.1524))
  1576. (fp_line (start 0.508 4.572) (end -0.4826 4.572) (layer Dwgs.User) (width 0.1524))
  1577. (fp_line (start -0.4826 4.572) (end -0.4826 5.588) (layer Dwgs.User) (width 0.1524))
  1578. (fp_line (start -0.4826 5.588) (end 0.508 5.588) (layer Dwgs.User) (width 0.1524))
  1579. (fp_line (start 0.508 8.128) (end 0.508 7.112) (layer Dwgs.User) (width 0.1524))
  1580. (fp_line (start 0.508 7.112) (end -0.4826 7.1374) (layer Dwgs.User) (width 0.1524))
  1581. (fp_line (start -0.4826 7.1374) (end -0.4826 8.128) (layer Dwgs.User) (width 0.1524))
  1582. (fp_line (start -0.4826 8.128) (end 0.508 8.128) (layer Dwgs.User) (width 0.1524))
  1583. (fp_line (start 7.112 7.112) (end 7.112 8.128) (layer Dwgs.User) (width 0.1524))
  1584. (fp_line (start 7.112 8.128) (end 8.1026 8.1026) (layer Dwgs.User) (width 0.1524))
  1585. (fp_line (start 8.1026 8.1026) (end 8.1026 7.112) (layer Dwgs.User) (width 0.1524))
  1586. (fp_line (start 8.1026 7.112) (end 7.112 7.112) (layer Dwgs.User) (width 0.1524))
  1587. (fp_line (start 7.112 4.572) (end 7.112 5.588) (layer Dwgs.User) (width 0.1524))
  1588. (fp_line (start 7.112 5.588) (end 8.1026 5.5626) (layer Dwgs.User) (width 0.1524))
  1589. (fp_line (start 8.1026 5.5626) (end 8.1026 4.572) (layer Dwgs.User) (width 0.1524))
  1590. (fp_line (start 8.1026 4.572) (end 7.112 4.572) (layer Dwgs.User) (width 0.1524))
  1591. (fp_line (start 7.112 2.032) (end 7.112 3.048) (layer Dwgs.User) (width 0.1524))
  1592. (fp_line (start 7.112 3.048) (end 8.1026 3.048) (layer Dwgs.User) (width 0.1524))
  1593. (fp_line (start 8.1026 3.048) (end 8.1026 2.032) (layer Dwgs.User) (width 0.1524))
  1594. (fp_line (start 8.1026 2.032) (end 7.112 2.032) (layer Dwgs.User) (width 0.1524))
  1595. (fp_line (start 7.112 -0.508) (end 7.112 0.508) (layer Dwgs.User) (width 0.1524))
  1596. (fp_line (start 7.112 0.508) (end 8.1026 0.508) (layer Dwgs.User) (width 0.1524))
  1597. (fp_line (start 8.1026 0.508) (end 8.1026 -0.508) (layer Dwgs.User) (width 0.1524))
  1598. (fp_line (start 8.1026 -0.508) (end 7.112 -0.508) (layer Dwgs.User) (width 0.1524))
  1599. (fp_line (start 0.508 8.7122) (end 7.112 8.7122) (layer Dwgs.User) (width 0.1524))
  1600. (fp_line (start 7.112 8.7122) (end 7.112 -1.0922) (layer Dwgs.User) (width 0.1524))
  1601. (pad 1 thru_hole rect (at 0 0 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  1602. (net 11 "Net-(C20-Pad1)"))
  1603. (pad 2 thru_hole circle (at 0 2.54 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  1604. (net 5 "Net-(IC2-Pad2)"))
  1605. (pad 3 thru_hole circle (at 0 5.08 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS))
  1606. (pad 4 thru_hole circle (at 0 7.62 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  1607. (net 26 GND_ISO_2))
  1608. (pad 5 thru_hole circle (at 7.62 7.62 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  1609. (net 26 GND_ISO_2))
  1610. (pad 6 thru_hole circle (at 7.62 5.08 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  1611. (net 27 DRV_GATE_B))
  1612. (pad 7 thru_hole circle (at 7.62 2.54 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  1613. (net 27 DRV_GATE_B))
  1614. (pad 8 thru_hole circle (at 7.62 0 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  1615. (net 11 "Net-(C20-Pad1)"))
  1616. (model Housings_DIP.3dshapes/DIP-8_W7.62mm.wrl
  1617. (at (xyz 0 0 0))
  1618. (scale (xyz 1 1 1))
  1619. (rotate (xyz 0 0 0))
  1620. )
  1621. )
  1622. (module PartsLibraries:TC4422AVPA (layer F.Cu) (tedit 592E9A52) (tstamp 59A6EC44)
  1623. (at 138.43 53.34)
  1624. (descr DIP254P762X432-8)
  1625. (tags "Integrated Circuit")
  1626. (path /59A71299/59498139)
  1627. (fp_text reference IC3 (at 3.81 -2.286) (layer F.SilkS)
  1628. (effects (font (size 1.27 1.27) (thickness 0.254)))
  1629. )
  1630. (fp_text value TC4422AVPA (at 3.556 9.906) (layer F.SilkS) hide
  1631. (effects (font (size 1.27 1.27) (thickness 0.254)))
  1632. )
  1633. (fp_line (start 0.508 8.7122) (end 0.508 -1.0922) (layer Dwgs.User) (width 0.1524))
  1634. (fp_line (start 0.508 -1.1938) (end 7.112 -1.1938) (layer Dwgs.User) (width 0.1524))
  1635. (fp_line (start -0.4826 3.048) (end 0.508 3.048) (layer Dwgs.User) (width 0.1524))
  1636. (fp_line (start -0.4826 2.032) (end -0.4826 3.048) (layer Dwgs.User) (width 0.1524))
  1637. (fp_line (start 0.508 2.032) (end -0.4826 2.032) (layer Dwgs.User) (width 0.1524))
  1638. (fp_line (start 0.508 3.048) (end 0.508 2.032) (layer Dwgs.User) (width 0.1524))
  1639. (fp_line (start 7.112 1.5748) (end 7.112 0.9652) (layer F.SilkS) (width 0.1524))
  1640. (fp_line (start 7.112 4.1148) (end 7.112 3.5052) (layer F.SilkS) (width 0.1524))
  1641. (fp_line (start 0.508 6.0452) (end 0.508 6.6548) (layer F.SilkS) (width 0.1524))
  1642. (fp_line (start 0.508 3.5052) (end 0.508 4.1148) (layer F.SilkS) (width 0.1524))
  1643. (fp_line (start 0.508 8.7122) (end 7.112 8.7122) (layer F.SilkS) (width 0.1524))
  1644. (fp_line (start 7.112 6.6548) (end 7.112 6.0452) (layer F.SilkS) (width 0.1524))
  1645. (fp_line (start 0.508 1.0922) (end 0.508 1.5748) (layer F.SilkS) (width 0.1524))
  1646. (fp_line (start 0.508 0.508) (end 0.508 -0.508) (layer Dwgs.User) (width 0.1524))
  1647. (fp_line (start 0.508 -0.508) (end -0.4826 -0.508) (layer Dwgs.User) (width 0.1524))
  1648. (fp_line (start -0.4826 -0.508) (end -0.4826 0.508) (layer Dwgs.User) (width 0.1524))
  1649. (fp_line (start -0.4826 0.508) (end 0.508 0.508) (layer Dwgs.User) (width 0.1524))
  1650. (fp_line (start 0.508 5.588) (end 0.508 4.572) (layer Dwgs.User) (width 0.1524))
  1651. (fp_line (start 0.508 4.572) (end -0.4826 4.572) (layer Dwgs.User) (width 0.1524))
  1652. (fp_line (start -0.4826 4.572) (end -0.4826 5.588) (layer Dwgs.User) (width 0.1524))
  1653. (fp_line (start -0.4826 5.588) (end 0.508 5.588) (layer Dwgs.User) (width 0.1524))
  1654. (fp_line (start 0.508 8.128) (end 0.508 7.112) (layer Dwgs.User) (width 0.1524))
  1655. (fp_line (start 0.508 7.112) (end -0.4826 7.1374) (layer Dwgs.User) (width 0.1524))
  1656. (fp_line (start -0.4826 7.1374) (end -0.4826 8.128) (layer Dwgs.User) (width 0.1524))
  1657. (fp_line (start -0.4826 8.128) (end 0.508 8.128) (layer Dwgs.User) (width 0.1524))
  1658. (fp_line (start 7.112 7.112) (end 7.112 8.128) (layer Dwgs.User) (width 0.1524))
  1659. (fp_line (start 7.112 8.128) (end 8.1026 8.1026) (layer Dwgs.User) (width 0.1524))
  1660. (fp_line (start 8.1026 8.1026) (end 8.1026 7.112) (layer Dwgs.User) (width 0.1524))
  1661. (fp_line (start 8.1026 7.112) (end 7.112 7.112) (layer Dwgs.User) (width 0.1524))
  1662. (fp_line (start 7.112 4.572) (end 7.112 5.588) (layer Dwgs.User) (width 0.1524))
  1663. (fp_line (start 7.112 5.588) (end 8.1026 5.5626) (layer Dwgs.User) (width 0.1524))
  1664. (fp_line (start 8.1026 5.5626) (end 8.1026 4.572) (layer Dwgs.User) (width 0.1524))
  1665. (fp_line (start 8.1026 4.572) (end 7.112 4.572) (layer Dwgs.User) (width 0.1524))
  1666. (fp_line (start 7.112 2.032) (end 7.112 3.048) (layer Dwgs.User) (width 0.1524))
  1667. (fp_line (start 7.112 3.048) (end 8.1026 3.048) (layer Dwgs.User) (width 0.1524))
  1668. (fp_line (start 8.1026 3.048) (end 8.1026 2.032) (layer Dwgs.User) (width 0.1524))
  1669. (fp_line (start 8.1026 2.032) (end 7.112 2.032) (layer Dwgs.User) (width 0.1524))
  1670. (fp_line (start 7.112 -0.508) (end 7.112 0.508) (layer Dwgs.User) (width 0.1524))
  1671. (fp_line (start 7.112 0.508) (end 8.1026 0.508) (layer Dwgs.User) (width 0.1524))
  1672. (fp_line (start 8.1026 0.508) (end 8.1026 -0.508) (layer Dwgs.User) (width 0.1524))
  1673. (fp_line (start 8.1026 -0.508) (end 7.112 -0.508) (layer Dwgs.User) (width 0.1524))
  1674. (fp_line (start 0.508 8.7122) (end 7.112 8.7122) (layer Dwgs.User) (width 0.1524))
  1675. (fp_line (start 7.112 8.7122) (end 7.112 -1.0922) (layer Dwgs.User) (width 0.1524))
  1676. (pad 1 thru_hole rect (at 0 0 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  1677. (net 2 "Net-(C10-Pad1)"))
  1678. (pad 2 thru_hole circle (at 0 2.54 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  1679. (net 6 "Net-(IC3-Pad2)"))
  1680. (pad 3 thru_hole circle (at 0 5.08 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS))
  1681. (pad 4 thru_hole circle (at 0 7.62 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  1682. (net 28 GND_ISO_3))
  1683. (pad 5 thru_hole circle (at 7.62 7.62 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  1684. (net 28 GND_ISO_3))
  1685. (pad 6 thru_hole circle (at 7.62 5.08 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  1686. (net 29 DRV_GATE_C))
  1687. (pad 7 thru_hole circle (at 7.62 2.54 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  1688. (net 29 DRV_GATE_C))
  1689. (pad 8 thru_hole circle (at 7.62 0 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  1690. (net 2 "Net-(C10-Pad1)"))
  1691. (model Housings_DIP.3dshapes/DIP-8_W7.62mm.wrl
  1692. (at (xyz 0 0 0))
  1693. (scale (xyz 1 1 1))
  1694. (rotate (xyz 0 0 0))
  1695. )
  1696. )
  1697. (module PartsLibraries:TC4422AVPA (layer F.Cu) (tedit 592E9A52) (tstamp 59A6EBD6)
  1698. (at 69.85 53.34)
  1699. (descr DIP254P762X432-8)
  1700. (tags "Integrated Circuit")
  1701. (path /59498AA5/59498139)
  1702. (fp_text reference IC1 (at 3.81 -2.286) (layer F.SilkS)
  1703. (effects (font (size 1.27 1.27) (thickness 0.254)))
  1704. )
  1705. (fp_text value TC4422AVPA (at 3.556 9.906) (layer F.SilkS) hide
  1706. (effects (font (size 1.27 1.27) (thickness 0.254)))
  1707. )
  1708. (fp_line (start 0.508 8.7122) (end 0.508 -1.0922) (layer Dwgs.User) (width 0.1524))
  1709. (fp_line (start 0.508 -1.1938) (end 7.112 -1.1938) (layer Dwgs.User) (width 0.1524))
  1710. (fp_line (start -0.4826 3.048) (end 0.508 3.048) (layer Dwgs.User) (width 0.1524))
  1711. (fp_line (start -0.4826 2.032) (end -0.4826 3.048) (layer Dwgs.User) (width 0.1524))
  1712. (fp_line (start 0.508 2.032) (end -0.4826 2.032) (layer Dwgs.User) (width 0.1524))
  1713. (fp_line (start 0.508 3.048) (end 0.508 2.032) (layer Dwgs.User) (width 0.1524))
  1714. (fp_line (start 7.112 1.5748) (end 7.112 0.9652) (layer F.SilkS) (width 0.1524))
  1715. (fp_line (start 7.112 4.1148) (end 7.112 3.5052) (layer F.SilkS) (width 0.1524))
  1716. (fp_line (start 0.508 6.0452) (end 0.508 6.6548) (layer F.SilkS) (width 0.1524))
  1717. (fp_line (start 0.508 3.5052) (end 0.508 4.1148) (layer F.SilkS) (width 0.1524))
  1718. (fp_line (start 0.508 8.7122) (end 7.112 8.7122) (layer F.SilkS) (width 0.1524))
  1719. (fp_line (start 7.112 6.6548) (end 7.112 6.0452) (layer F.SilkS) (width 0.1524))
  1720. (fp_line (start 0.508 1.0922) (end 0.508 1.5748) (layer F.SilkS) (width 0.1524))
  1721. (fp_line (start 0.508 0.508) (end 0.508 -0.508) (layer Dwgs.User) (width 0.1524))
  1722. (fp_line (start 0.508 -0.508) (end -0.4826 -0.508) (layer Dwgs.User) (width 0.1524))
  1723. (fp_line (start -0.4826 -0.508) (end -0.4826 0.508) (layer Dwgs.User) (width 0.1524))
  1724. (fp_line (start -0.4826 0.508) (end 0.508 0.508) (layer Dwgs.User) (width 0.1524))
  1725. (fp_line (start 0.508 5.588) (end 0.508 4.572) (layer Dwgs.User) (width 0.1524))
  1726. (fp_line (start 0.508 4.572) (end -0.4826 4.572) (layer Dwgs.User) (width 0.1524))
  1727. (fp_line (start -0.4826 4.572) (end -0.4826 5.588) (layer Dwgs.User) (width 0.1524))
  1728. (fp_line (start -0.4826 5.588) (end 0.508 5.588) (layer Dwgs.User) (width 0.1524))
  1729. (fp_line (start 0.508 8.128) (end 0.508 7.112) (layer Dwgs.User) (width 0.1524))
  1730. (fp_line (start 0.508 7.112) (end -0.4826 7.1374) (layer Dwgs.User) (width 0.1524))
  1731. (fp_line (start -0.4826 7.1374) (end -0.4826 8.128) (layer Dwgs.User) (width 0.1524))
  1732. (fp_line (start -0.4826 8.128) (end 0.508 8.128) (layer Dwgs.User) (width 0.1524))
  1733. (fp_line (start 7.112 7.112) (end 7.112 8.128) (layer Dwgs.User) (width 0.1524))
  1734. (fp_line (start 7.112 8.128) (end 8.1026 8.1026) (layer Dwgs.User) (width 0.1524))
  1735. (fp_line (start 8.1026 8.1026) (end 8.1026 7.112) (layer Dwgs.User) (width 0.1524))
  1736. (fp_line (start 8.1026 7.112) (end 7.112 7.112) (layer Dwgs.User) (width 0.1524))
  1737. (fp_line (start 7.112 4.572) (end 7.112 5.588) (layer Dwgs.User) (width 0.1524))
  1738. (fp_line (start 7.112 5.588) (end 8.1026 5.5626) (layer Dwgs.User) (width 0.1524))
  1739. (fp_line (start 8.1026 5.5626) (end 8.1026 4.572) (layer Dwgs.User) (width 0.1524))
  1740. (fp_line (start 8.1026 4.572) (end 7.112 4.572) (layer Dwgs.User) (width 0.1524))
  1741. (fp_line (start 7.112 2.032) (end 7.112 3.048) (layer Dwgs.User) (width 0.1524))
  1742. (fp_line (start 7.112 3.048) (end 8.1026 3.048) (layer Dwgs.User) (width 0.1524))
  1743. (fp_line (start 8.1026 3.048) (end 8.1026 2.032) (layer Dwgs.User) (width 0.1524))
  1744. (fp_line (start 8.1026 2.032) (end 7.112 2.032) (layer Dwgs.User) (width 0.1524))
  1745. (fp_line (start 7.112 -0.508) (end 7.112 0.508) (layer Dwgs.User) (width 0.1524))
  1746. (fp_line (start 7.112 0.508) (end 8.1026 0.508) (layer Dwgs.User) (width 0.1524))
  1747. (fp_line (start 8.1026 0.508) (end 8.1026 -0.508) (layer Dwgs.User) (width 0.1524))
  1748. (fp_line (start 8.1026 -0.508) (end 7.112 -0.508) (layer Dwgs.User) (width 0.1524))
  1749. (fp_line (start 0.508 8.7122) (end 7.112 8.7122) (layer Dwgs.User) (width 0.1524))
  1750. (fp_line (start 7.112 8.7122) (end 7.112 -1.0922) (layer Dwgs.User) (width 0.1524))
  1751. (pad 1 thru_hole rect (at 0 0 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  1752. (net 1 "Net-(C1-Pad1)"))
  1753. (pad 2 thru_hole circle (at 0 2.54 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  1754. (net 4 "Net-(IC1-Pad2)"))
  1755. (pad 3 thru_hole circle (at 0 5.08 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS))
  1756. (pad 4 thru_hole circle (at 0 7.62 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  1757. (net 24 GND_ISO_1))
  1758. (pad 5 thru_hole circle (at 7.62 7.62 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  1759. (net 24 GND_ISO_1))
  1760. (pad 6 thru_hole circle (at 7.62 5.08 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  1761. (net 25 DRV_GATE_A))
  1762. (pad 7 thru_hole circle (at 7.62 2.54 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  1763. (net 25 DRV_GATE_A))
  1764. (pad 8 thru_hole circle (at 7.62 0 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  1765. (net 1 "Net-(C1-Pad1)"))
  1766. (model Housings_DIP.3dshapes/DIP-8_W7.62mm.wrl
  1767. (at (xyz 0 0 0))
  1768. (scale (xyz 1 1 1))
  1769. (rotate (xyz 0 0 0))
  1770. )
  1771. )
  1772. (module PartsLibraries:TC4422AVPA (layer F.Cu) (tedit 592E9A52) (tstamp 59A6EE4D)
  1773. (at 59.69 41.91)
  1774. (descr DIP254P762X432-8)
  1775. (tags "Integrated Circuit")
  1776. (path /59498AA5/59A6D3EA)
  1777. (fp_text reference U1 (at 3.81 -2.286) (layer F.SilkS)
  1778. (effects (font (size 1.27 1.27) (thickness 0.254)))
  1779. )
  1780. (fp_text value NME1212DC (at 3.556 9.906) (layer F.SilkS) hide
  1781. (effects (font (size 1.27 1.27) (thickness 0.254)))
  1782. )
  1783. (fp_line (start 0.508 8.7122) (end 0.508 -1.0922) (layer Dwgs.User) (width 0.1524))
  1784. (fp_line (start 0.508 -1.1938) (end 7.112 -1.1938) (layer Dwgs.User) (width 0.1524))
  1785. (fp_line (start -0.4826 3.048) (end 0.508 3.048) (layer Dwgs.User) (width 0.1524))
  1786. (fp_line (start -0.4826 2.032) (end -0.4826 3.048) (layer Dwgs.User) (width 0.1524))
  1787. (fp_line (start 0.508 2.032) (end -0.4826 2.032) (layer Dwgs.User) (width 0.1524))
  1788. (fp_line (start 0.508 3.048) (end 0.508 2.032) (layer Dwgs.User) (width 0.1524))
  1789. (fp_line (start 7.112 1.5748) (end 7.112 0.9652) (layer F.SilkS) (width 0.1524))
  1790. (fp_line (start 7.112 4.1148) (end 7.112 3.5052) (layer F.SilkS) (width 0.1524))
  1791. (fp_line (start 0.508 6.0452) (end 0.508 6.6548) (layer F.SilkS) (width 0.1524))
  1792. (fp_line (start 0.508 3.5052) (end 0.508 4.1148) (layer F.SilkS) (width 0.1524))
  1793. (fp_line (start 0.508 8.7122) (end 7.112 8.7122) (layer F.SilkS) (width 0.1524))
  1794. (fp_line (start 7.112 6.6548) (end 7.112 6.0452) (layer F.SilkS) (width 0.1524))
  1795. (fp_line (start 0.508 1.0922) (end 0.508 1.5748) (layer F.SilkS) (width 0.1524))
  1796. (fp_line (start 0.508 0.508) (end 0.508 -0.508) (layer Dwgs.User) (width 0.1524))
  1797. (fp_line (start 0.508 -0.508) (end -0.4826 -0.508) (layer Dwgs.User) (width 0.1524))
  1798. (fp_line (start -0.4826 -0.508) (end -0.4826 0.508) (layer Dwgs.User) (width 0.1524))
  1799. (fp_line (start -0.4826 0.508) (end 0.508 0.508) (layer Dwgs.User) (width 0.1524))
  1800. (fp_line (start 0.508 5.588) (end 0.508 4.572) (layer Dwgs.User) (width 0.1524))
  1801. (fp_line (start 0.508 4.572) (end -0.4826 4.572) (layer Dwgs.User) (width 0.1524))
  1802. (fp_line (start -0.4826 4.572) (end -0.4826 5.588) (layer Dwgs.User) (width 0.1524))
  1803. (fp_line (start -0.4826 5.588) (end 0.508 5.588) (layer Dwgs.User) (width 0.1524))
  1804. (fp_line (start 0.508 8.128) (end 0.508 7.112) (layer Dwgs.User) (width 0.1524))
  1805. (fp_line (start 0.508 7.112) (end -0.4826 7.1374) (layer Dwgs.User) (width 0.1524))
  1806. (fp_line (start -0.4826 7.1374) (end -0.4826 8.128) (layer Dwgs.User) (width 0.1524))
  1807. (fp_line (start -0.4826 8.128) (end 0.508 8.128) (layer Dwgs.User) (width 0.1524))
  1808. (fp_line (start 7.112 7.112) (end 7.112 8.128) (layer Dwgs.User) (width 0.1524))
  1809. (fp_line (start 7.112 8.128) (end 8.1026 8.1026) (layer Dwgs.User) (width 0.1524))
  1810. (fp_line (start 8.1026 8.1026) (end 8.1026 7.112) (layer Dwgs.User) (width 0.1524))
  1811. (fp_line (start 8.1026 7.112) (end 7.112 7.112) (layer Dwgs.User) (width 0.1524))
  1812. (fp_line (start 7.112 4.572) (end 7.112 5.588) (layer Dwgs.User) (width 0.1524))
  1813. (fp_line (start 7.112 5.588) (end 8.1026 5.5626) (layer Dwgs.User) (width 0.1524))
  1814. (fp_line (start 8.1026 5.5626) (end 8.1026 4.572) (layer Dwgs.User) (width 0.1524))
  1815. (fp_line (start 8.1026 4.572) (end 7.112 4.572) (layer Dwgs.User) (width 0.1524))
  1816. (fp_line (start 7.112 2.032) (end 7.112 3.048) (layer Dwgs.User) (width 0.1524))
  1817. (fp_line (start 7.112 3.048) (end 8.1026 3.048) (layer Dwgs.User) (width 0.1524))
  1818. (fp_line (start 8.1026 3.048) (end 8.1026 2.032) (layer Dwgs.User) (width 0.1524))
  1819. (fp_line (start 8.1026 2.032) (end 7.112 2.032) (layer Dwgs.User) (width 0.1524))
  1820. (fp_line (start 7.112 -0.508) (end 7.112 0.508) (layer Dwgs.User) (width 0.1524))
  1821. (fp_line (start 7.112 0.508) (end 8.1026 0.508) (layer Dwgs.User) (width 0.1524))
  1822. (fp_line (start 8.1026 0.508) (end 8.1026 -0.508) (layer Dwgs.User) (width 0.1524))
  1823. (fp_line (start 8.1026 -0.508) (end 7.112 -0.508) (layer Dwgs.User) (width 0.1524))
  1824. (fp_line (start 0.508 8.7122) (end 7.112 8.7122) (layer Dwgs.User) (width 0.1524))
  1825. (fp_line (start 7.112 8.7122) (end 7.112 -1.0922) (layer Dwgs.User) (width 0.1524))
  1826. (pad 1 thru_hole rect (at 0 0 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  1827. (net 9 DC_GND))
  1828. (pad 2 thru_hole circle (at 0 2.54 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS))
  1829. (pad 3 thru_hole circle (at 0 5.08 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS))
  1830. (pad 4 thru_hole circle (at 0 7.62 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  1831. (net 8 DC_IN))
  1832. (pad 5 thru_hole circle (at 7.62 7.62 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  1833. (net 1 "Net-(C1-Pad1)"))
  1834. (pad 6 thru_hole circle (at 7.62 5.08 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS))
  1835. (pad 7 thru_hole circle (at 7.62 2.54 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  1836. (net 24 GND_ISO_1))
  1837. (pad 8 thru_hole circle (at 7.62 0 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS))
  1838. (model Housings_DIP.3dshapes/DIP-8_W7.62mm.wrl
  1839. (at (xyz 0 0 0))
  1840. (scale (xyz 1 1 1))
  1841. (rotate (xyz 0 0 0))
  1842. )
  1843. )
  1844. (module Capacitors_THT:CP_Radial_D5.0mm_P2.50mm (layer F.Cu) (tedit 597BC7C2) (tstamp 59A6E764)
  1845. (at 81.32 53.34)
  1846. (descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor")
  1847. (tags "CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor")
  1848. (path /59498AA5/59A6D3D9)
  1849. (fp_text reference C1 (at 1.25 -3.81) (layer F.SilkS)
  1850. (effects (font (size 1 1) (thickness 0.15)))
  1851. )
  1852. (fp_text value 4.7uF (at 1.25 3.81) (layer F.Fab)
  1853. (effects (font (size 1 1) (thickness 0.15)))
  1854. )
  1855. (fp_arc (start 1.25 0) (end -1.05558 -1.18) (angle 125.8) (layer F.SilkS) (width 0.12))
  1856. (fp_arc (start 1.25 0) (end -1.05558 1.18) (angle -125.8) (layer F.SilkS) (width 0.12))
  1857. (fp_arc (start 1.25 0) (end 3.55558 -1.18) (angle 54.2) (layer F.SilkS) (width 0.12))
  1858. (fp_circle (center 1.25 0) (end 3.75 0) (layer F.Fab) (width 0.1))
  1859. (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
  1860. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
  1861. (fp_line (start 1.25 -2.55) (end 1.25 2.55) (layer F.SilkS) (width 0.12))
  1862. (fp_line (start 1.29 -2.55) (end 1.29 2.55) (layer F.SilkS) (width 0.12))
  1863. (fp_line (start 1.33 -2.549) (end 1.33 2.549) (layer F.SilkS) (width 0.12))
  1864. (fp_line (start 1.37 -2.548) (end 1.37 2.548) (layer F.SilkS) (width 0.12))
  1865. (fp_line (start 1.41 -2.546) (end 1.41 2.546) (layer F.SilkS) (width 0.12))
  1866. (fp_line (start 1.45 -2.543) (end 1.45 2.543) (layer F.SilkS) (width 0.12))
  1867. (fp_line (start 1.49 -2.539) (end 1.49 2.539) (layer F.SilkS) (width 0.12))
  1868. (fp_line (start 1.53 -2.535) (end 1.53 -0.98) (layer F.SilkS) (width 0.12))
  1869. (fp_line (start 1.53 0.98) (end 1.53 2.535) (layer F.SilkS) (width 0.12))
  1870. (fp_line (start 1.57 -2.531) (end 1.57 -0.98) (layer F.SilkS) (width 0.12))
  1871. (fp_line (start 1.57 0.98) (end 1.57 2.531) (layer F.SilkS) (width 0.12))
  1872. (fp_line (start 1.61 -2.525) (end 1.61 -0.98) (layer F.SilkS) (width 0.12))
  1873. (fp_line (start 1.61 0.98) (end 1.61 2.525) (layer F.SilkS) (width 0.12))
  1874. (fp_line (start 1.65 -2.519) (end 1.65 -0.98) (layer F.SilkS) (width 0.12))
  1875. (fp_line (start 1.65 0.98) (end 1.65 2.519) (layer F.SilkS) (width 0.12))
  1876. (fp_line (start 1.69 -2.513) (end 1.69 -0.98) (layer F.SilkS) (width 0.12))
  1877. (fp_line (start 1.69 0.98) (end 1.69 2.513) (layer F.SilkS) (width 0.12))
  1878. (fp_line (start 1.73 -2.506) (end 1.73 -0.98) (layer F.SilkS) (width 0.12))
  1879. (fp_line (start 1.73 0.98) (end 1.73 2.506) (layer F.SilkS) (width 0.12))
  1880. (fp_line (start 1.77 -2.498) (end 1.77 -0.98) (layer F.SilkS) (width 0.12))
  1881. (fp_line (start 1.77 0.98) (end 1.77 2.498) (layer F.SilkS) (width 0.12))
  1882. (fp_line (start 1.81 -2.489) (end 1.81 -0.98) (layer F.SilkS) (width 0.12))
  1883. (fp_line (start 1.81 0.98) (end 1.81 2.489) (layer F.SilkS) (width 0.12))
  1884. (fp_line (start 1.85 -2.48) (end 1.85 -0.98) (layer F.SilkS) (width 0.12))
  1885. (fp_line (start 1.85 0.98) (end 1.85 2.48) (layer F.SilkS) (width 0.12))
  1886. (fp_line (start 1.89 -2.47) (end 1.89 -0.98) (layer F.SilkS) (width 0.12))
  1887. (fp_line (start 1.89 0.98) (end 1.89 2.47) (layer F.SilkS) (width 0.12))
  1888. (fp_line (start 1.93 -2.46) (end 1.93 -0.98) (layer F.SilkS) (width 0.12))
  1889. (fp_line (start 1.93 0.98) (end 1.93 2.46) (layer F.SilkS) (width 0.12))
  1890. (fp_line (start 1.971 -2.448) (end 1.971 -0.98) (layer F.SilkS) (width 0.12))
  1891. (fp_line (start 1.971 0.98) (end 1.971 2.448) (layer F.SilkS) (width 0.12))
  1892. (fp_line (start 2.011 -2.436) (end 2.011 -0.98) (layer F.SilkS) (width 0.12))
  1893. (fp_line (start 2.011 0.98) (end 2.011 2.436) (layer F.SilkS) (width 0.12))
  1894. (fp_line (start 2.051 -2.424) (end 2.051 -0.98) (layer F.SilkS) (width 0.12))
  1895. (fp_line (start 2.051 0.98) (end 2.051 2.424) (layer F.SilkS) (width 0.12))
  1896. (fp_line (start 2.091 -2.41) (end 2.091 -0.98) (layer F.SilkS) (width 0.12))
  1897. (fp_line (start 2.091 0.98) (end 2.091 2.41) (layer F.SilkS) (width 0.12))
  1898. (fp_line (start 2.131 -2.396) (end 2.131 -0.98) (layer F.SilkS) (width 0.12))
  1899. (fp_line (start 2.131 0.98) (end 2.131 2.396) (layer F.SilkS) (width 0.12))
  1900. (fp_line (start 2.171 -2.382) (end 2.171 -0.98) (layer F.SilkS) (width 0.12))
  1901. (fp_line (start 2.171 0.98) (end 2.171 2.382) (layer F.SilkS) (width 0.12))
  1902. (fp_line (start 2.211 -2.366) (end 2.211 -0.98) (layer F.SilkS) (width 0.12))
  1903. (fp_line (start 2.211 0.98) (end 2.211 2.366) (layer F.SilkS) (width 0.12))
  1904. (fp_line (start 2.251 -2.35) (end 2.251 -0.98) (layer F.SilkS) (width 0.12))
  1905. (fp_line (start 2.251 0.98) (end 2.251 2.35) (layer F.SilkS) (width 0.12))
  1906. (fp_line (start 2.291 -2.333) (end 2.291 -0.98) (layer F.SilkS) (width 0.12))
  1907. (fp_line (start 2.291 0.98) (end 2.291 2.333) (layer F.SilkS) (width 0.12))
  1908. (fp_line (start 2.331 -2.315) (end 2.331 -0.98) (layer F.SilkS) (width 0.12))
  1909. (fp_line (start 2.331 0.98) (end 2.331 2.315) (layer F.SilkS) (width 0.12))
  1910. (fp_line (start 2.371 -2.296) (end 2.371 -0.98) (layer F.SilkS) (width 0.12))
  1911. (fp_line (start 2.371 0.98) (end 2.371 2.296) (layer F.SilkS) (width 0.12))
  1912. (fp_line (start 2.411 -2.276) (end 2.411 -0.98) (layer F.SilkS) (width 0.12))
  1913. (fp_line (start 2.411 0.98) (end 2.411 2.276) (layer F.SilkS) (width 0.12))
  1914. (fp_line (start 2.451 -2.256) (end 2.451 -0.98) (layer F.SilkS) (width 0.12))
  1915. (fp_line (start 2.451 0.98) (end 2.451 2.256) (layer F.SilkS) (width 0.12))
  1916. (fp_line (start 2.491 -2.234) (end 2.491 -0.98) (layer F.SilkS) (width 0.12))
  1917. (fp_line (start 2.491 0.98) (end 2.491 2.234) (layer F.SilkS) (width 0.12))
  1918. (fp_line (start 2.531 -2.212) (end 2.531 -0.98) (layer F.SilkS) (width 0.12))
  1919. (fp_line (start 2.531 0.98) (end 2.531 2.212) (layer F.SilkS) (width 0.12))
  1920. (fp_line (start 2.571 -2.189) (end 2.571 -0.98) (layer F.SilkS) (width 0.12))
  1921. (fp_line (start 2.571 0.98) (end 2.571 2.189) (layer F.SilkS) (width 0.12))
  1922. (fp_line (start 2.611 -2.165) (end 2.611 -0.98) (layer F.SilkS) (width 0.12))
  1923. (fp_line (start 2.611 0.98) (end 2.611 2.165) (layer F.SilkS) (width 0.12))
  1924. (fp_line (start 2.651 -2.14) (end 2.651 -0.98) (layer F.SilkS) (width 0.12))
  1925. (fp_line (start 2.651 0.98) (end 2.651 2.14) (layer F.SilkS) (width 0.12))
  1926. (fp_line (start 2.691 -2.113) (end 2.691 -0.98) (layer F.SilkS) (width 0.12))
  1927. (fp_line (start 2.691 0.98) (end 2.691 2.113) (layer F.SilkS) (width 0.12))
  1928. (fp_line (start 2.731 -2.086) (end 2.731 -0.98) (layer F.SilkS) (width 0.12))
  1929. (fp_line (start 2.731 0.98) (end 2.731 2.086) (layer F.SilkS) (width 0.12))
  1930. (fp_line (start 2.771 -2.058) (end 2.771 -0.98) (layer F.SilkS) (width 0.12))
  1931. (fp_line (start 2.771 0.98) (end 2.771 2.058) (layer F.SilkS) (width 0.12))
  1932. (fp_line (start 2.811 -2.028) (end 2.811 -0.98) (layer F.SilkS) (width 0.12))
  1933. (fp_line (start 2.811 0.98) (end 2.811 2.028) (layer F.SilkS) (width 0.12))
  1934. (fp_line (start 2.851 -1.997) (end 2.851 -0.98) (layer F.SilkS) (width 0.12))
  1935. (fp_line (start 2.851 0.98) (end 2.851 1.997) (layer F.SilkS) (width 0.12))
  1936. (fp_line (start 2.891 -1.965) (end 2.891 -0.98) (layer F.SilkS) (width 0.12))
  1937. (fp_line (start 2.891 0.98) (end 2.891 1.965) (layer F.SilkS) (width 0.12))
  1938. (fp_line (start 2.931 -1.932) (end 2.931 -0.98) (layer F.SilkS) (width 0.12))
  1939. (fp_line (start 2.931 0.98) (end 2.931 1.932) (layer F.SilkS) (width 0.12))
  1940. (fp_line (start 2.971 -1.897) (end 2.971 -0.98) (layer F.SilkS) (width 0.12))
  1941. (fp_line (start 2.971 0.98) (end 2.971 1.897) (layer F.SilkS) (width 0.12))
  1942. (fp_line (start 3.011 -1.861) (end 3.011 -0.98) (layer F.SilkS) (width 0.12))
  1943. (fp_line (start 3.011 0.98) (end 3.011 1.861) (layer F.SilkS) (width 0.12))
  1944. (fp_line (start 3.051 -1.823) (end 3.051 -0.98) (layer F.SilkS) (width 0.12))
  1945. (fp_line (start 3.051 0.98) (end 3.051 1.823) (layer F.SilkS) (width 0.12))
  1946. (fp_line (start 3.091 -1.783) (end 3.091 -0.98) (layer F.SilkS) (width 0.12))
  1947. (fp_line (start 3.091 0.98) (end 3.091 1.783) (layer F.SilkS) (width 0.12))
  1948. (fp_line (start 3.131 -1.742) (end 3.131 -0.98) (layer F.SilkS) (width 0.12))
  1949. (fp_line (start 3.131 0.98) (end 3.131 1.742) (layer F.SilkS) (width 0.12))
  1950. (fp_line (start 3.171 -1.699) (end 3.171 -0.98) (layer F.SilkS) (width 0.12))
  1951. (fp_line (start 3.171 0.98) (end 3.171 1.699) (layer F.SilkS) (width 0.12))
  1952. (fp_line (start 3.211 -1.654) (end 3.211 -0.98) (layer F.SilkS) (width 0.12))
  1953. (fp_line (start 3.211 0.98) (end 3.211 1.654) (layer F.SilkS) (width 0.12))
  1954. (fp_line (start 3.251 -1.606) (end 3.251 -0.98) (layer F.SilkS) (width 0.12))
  1955. (fp_line (start 3.251 0.98) (end 3.251 1.606) (layer F.SilkS) (width 0.12))
  1956. (fp_line (start 3.291 -1.556) (end 3.291 -0.98) (layer F.SilkS) (width 0.12))
  1957. (fp_line (start 3.291 0.98) (end 3.291 1.556) (layer F.SilkS) (width 0.12))
  1958. (fp_line (start 3.331 -1.504) (end 3.331 -0.98) (layer F.SilkS) (width 0.12))
  1959. (fp_line (start 3.331 0.98) (end 3.331 1.504) (layer F.SilkS) (width 0.12))
  1960. (fp_line (start 3.371 -1.448) (end 3.371 -0.98) (layer F.SilkS) (width 0.12))
  1961. (fp_line (start 3.371 0.98) (end 3.371 1.448) (layer F.SilkS) (width 0.12))
  1962. (fp_line (start 3.411 -1.39) (end 3.411 -0.98) (layer F.SilkS) (width 0.12))
  1963. (fp_line (start 3.411 0.98) (end 3.411 1.39) (layer F.SilkS) (width 0.12))
  1964. (fp_line (start 3.451 -1.327) (end 3.451 -0.98) (layer F.SilkS) (width 0.12))
  1965. (fp_line (start 3.451 0.98) (end 3.451 1.327) (layer F.SilkS) (width 0.12))
  1966. (fp_line (start 3.491 -1.261) (end 3.491 1.261) (layer F.SilkS) (width 0.12))
  1967. (fp_line (start 3.531 -1.189) (end 3.531 1.189) (layer F.SilkS) (width 0.12))
  1968. (fp_line (start 3.571 -1.112) (end 3.571 1.112) (layer F.SilkS) (width 0.12))
  1969. (fp_line (start 3.611 -1.028) (end 3.611 1.028) (layer F.SilkS) (width 0.12))
  1970. (fp_line (start 3.651 -0.934) (end 3.651 0.934) (layer F.SilkS) (width 0.12))
  1971. (fp_line (start 3.691 -0.829) (end 3.691 0.829) (layer F.SilkS) (width 0.12))
  1972. (fp_line (start 3.731 -0.707) (end 3.731 0.707) (layer F.SilkS) (width 0.12))
  1973. (fp_line (start 3.771 -0.559) (end 3.771 0.559) (layer F.SilkS) (width 0.12))
  1974. (fp_line (start 3.811 -0.354) (end 3.811 0.354) (layer F.SilkS) (width 0.12))
  1975. (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
  1976. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
  1977. (fp_line (start -1.6 -2.85) (end -1.6 2.85) (layer F.CrtYd) (width 0.05))
  1978. (fp_line (start -1.6 2.85) (end 4.1 2.85) (layer F.CrtYd) (width 0.05))
  1979. (fp_line (start 4.1 2.85) (end 4.1 -2.85) (layer F.CrtYd) (width 0.05))
  1980. (fp_line (start 4.1 -2.85) (end -1.6 -2.85) (layer F.CrtYd) (width 0.05))
  1981. (fp_text user %R (at 1.25 0) (layer F.Fab)
  1982. (effects (font (size 1 1) (thickness 0.15)))
  1983. )
  1984. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1985. (net 1 "Net-(C1-Pad1)"))
  1986. (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1987. (net 24 GND_ISO_1))
  1988. (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_D5.0mm_P2.50mm.wrl
  1989. (at (xyz 0 0 0))
  1990. (scale (xyz 1 1 1))
  1991. (rotate (xyz 0 0 0))
  1992. )
  1993. )
  1994. (module Capacitors_THT:CP_Radial_Tantal_D4.5mm_P2.50mm (layer F.Cu) (tedit 597C781B) (tstamp 59A6E777)
  1995. (at 87.63 53.34)
  1996. (descr "CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf")
  1997. (tags "CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor")
  1998. (path /59498AA5/59A6D3E0)
  1999. (fp_text reference C2 (at 1.25 -3.56) (layer F.SilkS)
  2000. (effects (font (size 1 1) (thickness 0.15)))
  2001. )
  2002. (fp_text value 100nF (at 1.25 3.56) (layer F.Fab)
  2003. (effects (font (size 1 1) (thickness 0.15)))
  2004. )
  2005. (fp_arc (start 1.25 0) (end -0.770693 -1.18) (angle 119.4) (layer F.SilkS) (width 0.12))
  2006. (fp_arc (start 1.25 0) (end -0.770693 1.18) (angle -119.4) (layer F.SilkS) (width 0.12))
  2007. (fp_arc (start 1.25 0) (end 3.270693 -1.18) (angle 60.6) (layer F.SilkS) (width 0.12))
  2008. (fp_circle (center 1.25 0) (end 3.5 0) (layer F.Fab) (width 0.1))
  2009. (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
  2010. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
  2011. (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
  2012. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
  2013. (fp_line (start -1.35 -2.6) (end -1.35 2.6) (layer F.CrtYd) (width 0.05))
  2014. (fp_line (start -1.35 2.6) (end 3.85 2.6) (layer F.CrtYd) (width 0.05))
  2015. (fp_line (start 3.85 2.6) (end 3.85 -2.6) (layer F.CrtYd) (width 0.05))
  2016. (fp_line (start 3.85 -2.6) (end -1.35 -2.6) (layer F.CrtYd) (width 0.05))
  2017. (fp_text user %R (at 1.25 0) (layer F.Fab)
  2018. (effects (font (size 1 1) (thickness 0.15)))
  2019. )
  2020. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2021. (net 1 "Net-(C1-Pad1)"))
  2022. (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2023. (net 24 GND_ISO_1))
  2024. (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D4.5mm_P2.50mm.wrl
  2025. (at (xyz 0 0 0))
  2026. (scale (xyz 1 1 1))
  2027. (rotate (xyz 0 0 0))
  2028. )
  2029. )
  2030. (module Capacitors_THT:CP_Radial_Tantal_D4.5mm_P2.50mm (layer F.Cu) (tedit 597C781B) (tstamp 59A6E78A)
  2031. (at 81.32 60.96)
  2032. (descr "CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf")
  2033. (tags "CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor")
  2034. (path /59498AA5/5949814D)
  2035. (fp_text reference C3 (at 1.25 -3.56) (layer F.SilkS)
  2036. (effects (font (size 1 1) (thickness 0.15)))
  2037. )
  2038. (fp_text value C (at 1.25 3.56) (layer F.Fab)
  2039. (effects (font (size 1 1) (thickness 0.15)))
  2040. )
  2041. (fp_arc (start 1.25 0) (end -0.770693 -1.18) (angle 119.4) (layer F.SilkS) (width 0.12))
  2042. (fp_arc (start 1.25 0) (end -0.770693 1.18) (angle -119.4) (layer F.SilkS) (width 0.12))
  2043. (fp_arc (start 1.25 0) (end 3.270693 -1.18) (angle 60.6) (layer F.SilkS) (width 0.12))
  2044. (fp_circle (center 1.25 0) (end 3.5 0) (layer F.Fab) (width 0.1))
  2045. (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
  2046. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
  2047. (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
  2048. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
  2049. (fp_line (start -1.35 -2.6) (end -1.35 2.6) (layer F.CrtYd) (width 0.05))
  2050. (fp_line (start -1.35 2.6) (end 3.85 2.6) (layer F.CrtYd) (width 0.05))
  2051. (fp_line (start 3.85 2.6) (end 3.85 -2.6) (layer F.CrtYd) (width 0.05))
  2052. (fp_line (start 3.85 -2.6) (end -1.35 -2.6) (layer F.CrtYd) (width 0.05))
  2053. (fp_text user %R (at 1.25 0) (layer F.Fab)
  2054. (effects (font (size 1 1) (thickness 0.15)))
  2055. )
  2056. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2057. (net 24 GND_ISO_1))
  2058. (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2059. (net 25 DRV_GATE_A))
  2060. (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D4.5mm_P2.50mm.wrl
  2061. (at (xyz 0 0 0))
  2062. (scale (xyz 1 1 1))
  2063. (rotate (xyz 0 0 0))
  2064. )
  2065. )
  2066. (module Capacitors_THT:CP_Radial_D5.0mm_P2.50mm (layer F.Cu) (tedit 597BC7C2) (tstamp 59A6E80F)
  2067. (at 87.67 60.96)
  2068. (descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor")
  2069. (tags "CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor")
  2070. (path /59498AA5/59498146)
  2071. (fp_text reference C4 (at 1.25 -3.81) (layer F.SilkS)
  2072. (effects (font (size 1 1) (thickness 0.15)))
  2073. )
  2074. (fp_text value 4.7uF (at 1.25 3.81) (layer F.Fab)
  2075. (effects (font (size 1 1) (thickness 0.15)))
  2076. )
  2077. (fp_arc (start 1.25 0) (end -1.05558 -1.18) (angle 125.8) (layer F.SilkS) (width 0.12))
  2078. (fp_arc (start 1.25 0) (end -1.05558 1.18) (angle -125.8) (layer F.SilkS) (width 0.12))
  2079. (fp_arc (start 1.25 0) (end 3.55558 -1.18) (angle 54.2) (layer F.SilkS) (width 0.12))
  2080. (fp_circle (center 1.25 0) (end 3.75 0) (layer F.Fab) (width 0.1))
  2081. (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
  2082. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
  2083. (fp_line (start 1.25 -2.55) (end 1.25 2.55) (layer F.SilkS) (width 0.12))
  2084. (fp_line (start 1.29 -2.55) (end 1.29 2.55) (layer F.SilkS) (width 0.12))
  2085. (fp_line (start 1.33 -2.549) (end 1.33 2.549) (layer F.SilkS) (width 0.12))
  2086. (fp_line (start 1.37 -2.548) (end 1.37 2.548) (layer F.SilkS) (width 0.12))
  2087. (fp_line (start 1.41 -2.546) (end 1.41 2.546) (layer F.SilkS) (width 0.12))
  2088. (fp_line (start 1.45 -2.543) (end 1.45 2.543) (layer F.SilkS) (width 0.12))
  2089. (fp_line (start 1.49 -2.539) (end 1.49 2.539) (layer F.SilkS) (width 0.12))
  2090. (fp_line (start 1.53 -2.535) (end 1.53 -0.98) (layer F.SilkS) (width 0.12))
  2091. (fp_line (start 1.53 0.98) (end 1.53 2.535) (layer F.SilkS) (width 0.12))
  2092. (fp_line (start 1.57 -2.531) (end 1.57 -0.98) (layer F.SilkS) (width 0.12))
  2093. (fp_line (start 1.57 0.98) (end 1.57 2.531) (layer F.SilkS) (width 0.12))
  2094. (fp_line (start 1.61 -2.525) (end 1.61 -0.98) (layer F.SilkS) (width 0.12))
  2095. (fp_line (start 1.61 0.98) (end 1.61 2.525) (layer F.SilkS) (width 0.12))
  2096. (fp_line (start 1.65 -2.519) (end 1.65 -0.98) (layer F.SilkS) (width 0.12))
  2097. (fp_line (start 1.65 0.98) (end 1.65 2.519) (layer F.SilkS) (width 0.12))
  2098. (fp_line (start 1.69 -2.513) (end 1.69 -0.98) (layer F.SilkS) (width 0.12))
  2099. (fp_line (start 1.69 0.98) (end 1.69 2.513) (layer F.SilkS) (width 0.12))
  2100. (fp_line (start 1.73 -2.506) (end 1.73 -0.98) (layer F.SilkS) (width 0.12))
  2101. (fp_line (start 1.73 0.98) (end 1.73 2.506) (layer F.SilkS) (width 0.12))
  2102. (fp_line (start 1.77 -2.498) (end 1.77 -0.98) (layer F.SilkS) (width 0.12))
  2103. (fp_line (start 1.77 0.98) (end 1.77 2.498) (layer F.SilkS) (width 0.12))
  2104. (fp_line (start 1.81 -2.489) (end 1.81 -0.98) (layer F.SilkS) (width 0.12))
  2105. (fp_line (start 1.81 0.98) (end 1.81 2.489) (layer F.SilkS) (width 0.12))
  2106. (fp_line (start 1.85 -2.48) (end 1.85 -0.98) (layer F.SilkS) (width 0.12))
  2107. (fp_line (start 1.85 0.98) (end 1.85 2.48) (layer F.SilkS) (width 0.12))
  2108. (fp_line (start 1.89 -2.47) (end 1.89 -0.98) (layer F.SilkS) (width 0.12))
  2109. (fp_line (start 1.89 0.98) (end 1.89 2.47) (layer F.SilkS) (width 0.12))
  2110. (fp_line (start 1.93 -2.46) (end 1.93 -0.98) (layer F.SilkS) (width 0.12))
  2111. (fp_line (start 1.93 0.98) (end 1.93 2.46) (layer F.SilkS) (width 0.12))
  2112. (fp_line (start 1.971 -2.448) (end 1.971 -0.98) (layer F.SilkS) (width 0.12))
  2113. (fp_line (start 1.971 0.98) (end 1.971 2.448) (layer F.SilkS) (width 0.12))
  2114. (fp_line (start 2.011 -2.436) (end 2.011 -0.98) (layer F.SilkS) (width 0.12))
  2115. (fp_line (start 2.011 0.98) (end 2.011 2.436) (layer F.SilkS) (width 0.12))
  2116. (fp_line (start 2.051 -2.424) (end 2.051 -0.98) (layer F.SilkS) (width 0.12))
  2117. (fp_line (start 2.051 0.98) (end 2.051 2.424) (layer F.SilkS) (width 0.12))
  2118. (fp_line (start 2.091 -2.41) (end 2.091 -0.98) (layer F.SilkS) (width 0.12))
  2119. (fp_line (start 2.091 0.98) (end 2.091 2.41) (layer F.SilkS) (width 0.12))
  2120. (fp_line (start 2.131 -2.396) (end 2.131 -0.98) (layer F.SilkS) (width 0.12))
  2121. (fp_line (start 2.131 0.98) (end 2.131 2.396) (layer F.SilkS) (width 0.12))
  2122. (fp_line (start 2.171 -2.382) (end 2.171 -0.98) (layer F.SilkS) (width 0.12))
  2123. (fp_line (start 2.171 0.98) (end 2.171 2.382) (layer F.SilkS) (width 0.12))
  2124. (fp_line (start 2.211 -2.366) (end 2.211 -0.98) (layer F.SilkS) (width 0.12))
  2125. (fp_line (start 2.211 0.98) (end 2.211 2.366) (layer F.SilkS) (width 0.12))
  2126. (fp_line (start 2.251 -2.35) (end 2.251 -0.98) (layer F.SilkS) (width 0.12))
  2127. (fp_line (start 2.251 0.98) (end 2.251 2.35) (layer F.SilkS) (width 0.12))
  2128. (fp_line (start 2.291 -2.333) (end 2.291 -0.98) (layer F.SilkS) (width 0.12))
  2129. (fp_line (start 2.291 0.98) (end 2.291 2.333) (layer F.SilkS) (width 0.12))
  2130. (fp_line (start 2.331 -2.315) (end 2.331 -0.98) (layer F.SilkS) (width 0.12))
  2131. (fp_line (start 2.331 0.98) (end 2.331 2.315) (layer F.SilkS) (width 0.12))
  2132. (fp_line (start 2.371 -2.296) (end 2.371 -0.98) (layer F.SilkS) (width 0.12))
  2133. (fp_line (start 2.371 0.98) (end 2.371 2.296) (layer F.SilkS) (width 0.12))
  2134. (fp_line (start 2.411 -2.276) (end 2.411 -0.98) (layer F.SilkS) (width 0.12))
  2135. (fp_line (start 2.411 0.98) (end 2.411 2.276) (layer F.SilkS) (width 0.12))
  2136. (fp_line (start 2.451 -2.256) (end 2.451 -0.98) (layer F.SilkS) (width 0.12))
  2137. (fp_line (start 2.451 0.98) (end 2.451 2.256) (layer F.SilkS) (width 0.12))
  2138. (fp_line (start 2.491 -2.234) (end 2.491 -0.98) (layer F.SilkS) (width 0.12))
  2139. (fp_line (start 2.491 0.98) (end 2.491 2.234) (layer F.SilkS) (width 0.12))
  2140. (fp_line (start 2.531 -2.212) (end 2.531 -0.98) (layer F.SilkS) (width 0.12))
  2141. (fp_line (start 2.531 0.98) (end 2.531 2.212) (layer F.SilkS) (width 0.12))
  2142. (fp_line (start 2.571 -2.189) (end 2.571 -0.98) (layer F.SilkS) (width 0.12))
  2143. (fp_line (start 2.571 0.98) (end 2.571 2.189) (layer F.SilkS) (width 0.12))
  2144. (fp_line (start 2.611 -2.165) (end 2.611 -0.98) (layer F.SilkS) (width 0.12))
  2145. (fp_line (start 2.611 0.98) (end 2.611 2.165) (layer F.SilkS) (width 0.12))
  2146. (fp_line (start 2.651 -2.14) (end 2.651 -0.98) (layer F.SilkS) (width 0.12))
  2147. (fp_line (start 2.651 0.98) (end 2.651 2.14) (layer F.SilkS) (width 0.12))
  2148. (fp_line (start 2.691 -2.113) (end 2.691 -0.98) (layer F.SilkS) (width 0.12))
  2149. (fp_line (start 2.691 0.98) (end 2.691 2.113) (layer F.SilkS) (width 0.12))
  2150. (fp_line (start 2.731 -2.086) (end 2.731 -0.98) (layer F.SilkS) (width 0.12))
  2151. (fp_line (start 2.731 0.98) (end 2.731 2.086) (layer F.SilkS) (width 0.12))
  2152. (fp_line (start 2.771 -2.058) (end 2.771 -0.98) (layer F.SilkS) (width 0.12))
  2153. (fp_line (start 2.771 0.98) (end 2.771 2.058) (layer F.SilkS) (width 0.12))
  2154. (fp_line (start 2.811 -2.028) (end 2.811 -0.98) (layer F.SilkS) (width 0.12))
  2155. (fp_line (start 2.811 0.98) (end 2.811 2.028) (layer F.SilkS) (width 0.12))
  2156. (fp_line (start 2.851 -1.997) (end 2.851 -0.98) (layer F.SilkS) (width 0.12))
  2157. (fp_line (start 2.851 0.98) (end 2.851 1.997) (layer F.SilkS) (width 0.12))
  2158. (fp_line (start 2.891 -1.965) (end 2.891 -0.98) (layer F.SilkS) (width 0.12))
  2159. (fp_line (start 2.891 0.98) (end 2.891 1.965) (layer F.SilkS) (width 0.12))
  2160. (fp_line (start 2.931 -1.932) (end 2.931 -0.98) (layer F.SilkS) (width 0.12))
  2161. (fp_line (start 2.931 0.98) (end 2.931 1.932) (layer F.SilkS) (width 0.12))
  2162. (fp_line (start 2.971 -1.897) (end 2.971 -0.98) (layer F.SilkS) (width 0.12))
  2163. (fp_line (start 2.971 0.98) (end 2.971 1.897) (layer F.SilkS) (width 0.12))
  2164. (fp_line (start 3.011 -1.861) (end 3.011 -0.98) (layer F.SilkS) (width 0.12))
  2165. (fp_line (start 3.011 0.98) (end 3.011 1.861) (layer F.SilkS) (width 0.12))
  2166. (fp_line (start 3.051 -1.823) (end 3.051 -0.98) (layer F.SilkS) (width 0.12))
  2167. (fp_line (start 3.051 0.98) (end 3.051 1.823) (layer F.SilkS) (width 0.12))
  2168. (fp_line (start 3.091 -1.783) (end 3.091 -0.98) (layer F.SilkS) (width 0.12))
  2169. (fp_line (start 3.091 0.98) (end 3.091 1.783) (layer F.SilkS) (width 0.12))
  2170. (fp_line (start 3.131 -1.742) (end 3.131 -0.98) (layer F.SilkS) (width 0.12))
  2171. (fp_line (start 3.131 0.98) (end 3.131 1.742) (layer F.SilkS) (width 0.12))
  2172. (fp_line (start 3.171 -1.699) (end 3.171 -0.98) (layer F.SilkS) (width 0.12))
  2173. (fp_line (start 3.171 0.98) (end 3.171 1.699) (layer F.SilkS) (width 0.12))
  2174. (fp_line (start 3.211 -1.654) (end 3.211 -0.98) (layer F.SilkS) (width 0.12))
  2175. (fp_line (start 3.211 0.98) (end 3.211 1.654) (layer F.SilkS) (width 0.12))
  2176. (fp_line (start 3.251 -1.606) (end 3.251 -0.98) (layer F.SilkS) (width 0.12))
  2177. (fp_line (start 3.251 0.98) (end 3.251 1.606) (layer F.SilkS) (width 0.12))
  2178. (fp_line (start 3.291 -1.556) (end 3.291 -0.98) (layer F.SilkS) (width 0.12))
  2179. (fp_line (start 3.291 0.98) (end 3.291 1.556) (layer F.SilkS) (width 0.12))
  2180. (fp_line (start 3.331 -1.504) (end 3.331 -0.98) (layer F.SilkS) (width 0.12))
  2181. (fp_line (start 3.331 0.98) (end 3.331 1.504) (layer F.SilkS) (width 0.12))
  2182. (fp_line (start 3.371 -1.448) (end 3.371 -0.98) (layer F.SilkS) (width 0.12))
  2183. (fp_line (start 3.371 0.98) (end 3.371 1.448) (layer F.SilkS) (width 0.12))
  2184. (fp_line (start 3.411 -1.39) (end 3.411 -0.98) (layer F.SilkS) (width 0.12))
  2185. (fp_line (start 3.411 0.98) (end 3.411 1.39) (layer F.SilkS) (width 0.12))
  2186. (fp_line (start 3.451 -1.327) (end 3.451 -0.98) (layer F.SilkS) (width 0.12))
  2187. (fp_line (start 3.451 0.98) (end 3.451 1.327) (layer F.SilkS) (width 0.12))
  2188. (fp_line (start 3.491 -1.261) (end 3.491 1.261) (layer F.SilkS) (width 0.12))
  2189. (fp_line (start 3.531 -1.189) (end 3.531 1.189) (layer F.SilkS) (width 0.12))
  2190. (fp_line (start 3.571 -1.112) (end 3.571 1.112) (layer F.SilkS) (width 0.12))
  2191. (fp_line (start 3.611 -1.028) (end 3.611 1.028) (layer F.SilkS) (width 0.12))
  2192. (fp_line (start 3.651 -0.934) (end 3.651 0.934) (layer F.SilkS) (width 0.12))
  2193. (fp_line (start 3.691 -0.829) (end 3.691 0.829) (layer F.SilkS) (width 0.12))
  2194. (fp_line (start 3.731 -0.707) (end 3.731 0.707) (layer F.SilkS) (width 0.12))
  2195. (fp_line (start 3.771 -0.559) (end 3.771 0.559) (layer F.SilkS) (width 0.12))
  2196. (fp_line (start 3.811 -0.354) (end 3.811 0.354) (layer F.SilkS) (width 0.12))
  2197. (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
  2198. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
  2199. (fp_line (start -1.6 -2.85) (end -1.6 2.85) (layer F.CrtYd) (width 0.05))
  2200. (fp_line (start -1.6 2.85) (end 4.1 2.85) (layer F.CrtYd) (width 0.05))
  2201. (fp_line (start 4.1 2.85) (end 4.1 -2.85) (layer F.CrtYd) (width 0.05))
  2202. (fp_line (start 4.1 -2.85) (end -1.6 -2.85) (layer F.CrtYd) (width 0.05))
  2203. (fp_text user %R (at 1.25 0) (layer F.Fab)
  2204. (effects (font (size 1 1) (thickness 0.15)))
  2205. )
  2206. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2207. (net 25 DRV_GATE_A))
  2208. (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2209. (net 24 GND_ISO_1))
  2210. (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_D5.0mm_P2.50mm.wrl
  2211. (at (xyz 0 0 0))
  2212. (scale (xyz 1 1 1))
  2213. (rotate (xyz 0 0 0))
  2214. )
  2215. )
  2216. (module Capacitors_THT:CP_Radial_D5.0mm_P2.50mm (layer F.Cu) (tedit 597BC7C2) (tstamp 59A6E894)
  2217. (at 81.32 91.44)
  2218. (descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor")
  2219. (tags "CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor")
  2220. (path /59A7109E/59A6D3D9)
  2221. (fp_text reference C5 (at 1.25 -3.81) (layer F.SilkS)
  2222. (effects (font (size 1 1) (thickness 0.15)))
  2223. )
  2224. (fp_text value 4.7uF (at 1.25 3.81) (layer F.Fab)
  2225. (effects (font (size 1 1) (thickness 0.15)))
  2226. )
  2227. (fp_arc (start 1.25 0) (end -1.05558 -1.18) (angle 125.8) (layer F.SilkS) (width 0.12))
  2228. (fp_arc (start 1.25 0) (end -1.05558 1.18) (angle -125.8) (layer F.SilkS) (width 0.12))
  2229. (fp_arc (start 1.25 0) (end 3.55558 -1.18) (angle 54.2) (layer F.SilkS) (width 0.12))
  2230. (fp_circle (center 1.25 0) (end 3.75 0) (layer F.Fab) (width 0.1))
  2231. (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
  2232. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
  2233. (fp_line (start 1.25 -2.55) (end 1.25 2.55) (layer F.SilkS) (width 0.12))
  2234. (fp_line (start 1.29 -2.55) (end 1.29 2.55) (layer F.SilkS) (width 0.12))
  2235. (fp_line (start 1.33 -2.549) (end 1.33 2.549) (layer F.SilkS) (width 0.12))
  2236. (fp_line (start 1.37 -2.548) (end 1.37 2.548) (layer F.SilkS) (width 0.12))
  2237. (fp_line (start 1.41 -2.546) (end 1.41 2.546) (layer F.SilkS) (width 0.12))
  2238. (fp_line (start 1.45 -2.543) (end 1.45 2.543) (layer F.SilkS) (width 0.12))
  2239. (fp_line (start 1.49 -2.539) (end 1.49 2.539) (layer F.SilkS) (width 0.12))
  2240. (fp_line (start 1.53 -2.535) (end 1.53 -0.98) (layer F.SilkS) (width 0.12))
  2241. (fp_line (start 1.53 0.98) (end 1.53 2.535) (layer F.SilkS) (width 0.12))
  2242. (fp_line (start 1.57 -2.531) (end 1.57 -0.98) (layer F.SilkS) (width 0.12))
  2243. (fp_line (start 1.57 0.98) (end 1.57 2.531) (layer F.SilkS) (width 0.12))
  2244. (fp_line (start 1.61 -2.525) (end 1.61 -0.98) (layer F.SilkS) (width 0.12))
  2245. (fp_line (start 1.61 0.98) (end 1.61 2.525) (layer F.SilkS) (width 0.12))
  2246. (fp_line (start 1.65 -2.519) (end 1.65 -0.98) (layer F.SilkS) (width 0.12))
  2247. (fp_line (start 1.65 0.98) (end 1.65 2.519) (layer F.SilkS) (width 0.12))
  2248. (fp_line (start 1.69 -2.513) (end 1.69 -0.98) (layer F.SilkS) (width 0.12))
  2249. (fp_line (start 1.69 0.98) (end 1.69 2.513) (layer F.SilkS) (width 0.12))
  2250. (fp_line (start 1.73 -2.506) (end 1.73 -0.98) (layer F.SilkS) (width 0.12))
  2251. (fp_line (start 1.73 0.98) (end 1.73 2.506) (layer F.SilkS) (width 0.12))
  2252. (fp_line (start 1.77 -2.498) (end 1.77 -0.98) (layer F.SilkS) (width 0.12))
  2253. (fp_line (start 1.77 0.98) (end 1.77 2.498) (layer F.SilkS) (width 0.12))
  2254. (fp_line (start 1.81 -2.489) (end 1.81 -0.98) (layer F.SilkS) (width 0.12))
  2255. (fp_line (start 1.81 0.98) (end 1.81 2.489) (layer F.SilkS) (width 0.12))
  2256. (fp_line (start 1.85 -2.48) (end 1.85 -0.98) (layer F.SilkS) (width 0.12))
  2257. (fp_line (start 1.85 0.98) (end 1.85 2.48) (layer F.SilkS) (width 0.12))
  2258. (fp_line (start 1.89 -2.47) (end 1.89 -0.98) (layer F.SilkS) (width 0.12))
  2259. (fp_line (start 1.89 0.98) (end 1.89 2.47) (layer F.SilkS) (width 0.12))
  2260. (fp_line (start 1.93 -2.46) (end 1.93 -0.98) (layer F.SilkS) (width 0.12))
  2261. (fp_line (start 1.93 0.98) (end 1.93 2.46) (layer F.SilkS) (width 0.12))
  2262. (fp_line (start 1.971 -2.448) (end 1.971 -0.98) (layer F.SilkS) (width 0.12))
  2263. (fp_line (start 1.971 0.98) (end 1.971 2.448) (layer F.SilkS) (width 0.12))
  2264. (fp_line (start 2.011 -2.436) (end 2.011 -0.98) (layer F.SilkS) (width 0.12))
  2265. (fp_line (start 2.011 0.98) (end 2.011 2.436) (layer F.SilkS) (width 0.12))
  2266. (fp_line (start 2.051 -2.424) (end 2.051 -0.98) (layer F.SilkS) (width 0.12))
  2267. (fp_line (start 2.051 0.98) (end 2.051 2.424) (layer F.SilkS) (width 0.12))
  2268. (fp_line (start 2.091 -2.41) (end 2.091 -0.98) (layer F.SilkS) (width 0.12))
  2269. (fp_line (start 2.091 0.98) (end 2.091 2.41) (layer F.SilkS) (width 0.12))
  2270. (fp_line (start 2.131 -2.396) (end 2.131 -0.98) (layer F.SilkS) (width 0.12))
  2271. (fp_line (start 2.131 0.98) (end 2.131 2.396) (layer F.SilkS) (width 0.12))
  2272. (fp_line (start 2.171 -2.382) (end 2.171 -0.98) (layer F.SilkS) (width 0.12))
  2273. (fp_line (start 2.171 0.98) (end 2.171 2.382) (layer F.SilkS) (width 0.12))
  2274. (fp_line (start 2.211 -2.366) (end 2.211 -0.98) (layer F.SilkS) (width 0.12))
  2275. (fp_line (start 2.211 0.98) (end 2.211 2.366) (layer F.SilkS) (width 0.12))
  2276. (fp_line (start 2.251 -2.35) (end 2.251 -0.98) (layer F.SilkS) (width 0.12))
  2277. (fp_line (start 2.251 0.98) (end 2.251 2.35) (layer F.SilkS) (width 0.12))
  2278. (fp_line (start 2.291 -2.333) (end 2.291 -0.98) (layer F.SilkS) (width 0.12))
  2279. (fp_line (start 2.291 0.98) (end 2.291 2.333) (layer F.SilkS) (width 0.12))
  2280. (fp_line (start 2.331 -2.315) (end 2.331 -0.98) (layer F.SilkS) (width 0.12))
  2281. (fp_line (start 2.331 0.98) (end 2.331 2.315) (layer F.SilkS) (width 0.12))
  2282. (fp_line (start 2.371 -2.296) (end 2.371 -0.98) (layer F.SilkS) (width 0.12))
  2283. (fp_line (start 2.371 0.98) (end 2.371 2.296) (layer F.SilkS) (width 0.12))
  2284. (fp_line (start 2.411 -2.276) (end 2.411 -0.98) (layer F.SilkS) (width 0.12))
  2285. (fp_line (start 2.411 0.98) (end 2.411 2.276) (layer F.SilkS) (width 0.12))
  2286. (fp_line (start 2.451 -2.256) (end 2.451 -0.98) (layer F.SilkS) (width 0.12))
  2287. (fp_line (start 2.451 0.98) (end 2.451 2.256) (layer F.SilkS) (width 0.12))
  2288. (fp_line (start 2.491 -2.234) (end 2.491 -0.98) (layer F.SilkS) (width 0.12))
  2289. (fp_line (start 2.491 0.98) (end 2.491 2.234) (layer F.SilkS) (width 0.12))
  2290. (fp_line (start 2.531 -2.212) (end 2.531 -0.98) (layer F.SilkS) (width 0.12))
  2291. (fp_line (start 2.531 0.98) (end 2.531 2.212) (layer F.SilkS) (width 0.12))
  2292. (fp_line (start 2.571 -2.189) (end 2.571 -0.98) (layer F.SilkS) (width 0.12))
  2293. (fp_line (start 2.571 0.98) (end 2.571 2.189) (layer F.SilkS) (width 0.12))
  2294. (fp_line (start 2.611 -2.165) (end 2.611 -0.98) (layer F.SilkS) (width 0.12))
  2295. (fp_line (start 2.611 0.98) (end 2.611 2.165) (layer F.SilkS) (width 0.12))
  2296. (fp_line (start 2.651 -2.14) (end 2.651 -0.98) (layer F.SilkS) (width 0.12))
  2297. (fp_line (start 2.651 0.98) (end 2.651 2.14) (layer F.SilkS) (width 0.12))
  2298. (fp_line (start 2.691 -2.113) (end 2.691 -0.98) (layer F.SilkS) (width 0.12))
  2299. (fp_line (start 2.691 0.98) (end 2.691 2.113) (layer F.SilkS) (width 0.12))
  2300. (fp_line (start 2.731 -2.086) (end 2.731 -0.98) (layer F.SilkS) (width 0.12))
  2301. (fp_line (start 2.731 0.98) (end 2.731 2.086) (layer F.SilkS) (width 0.12))
  2302. (fp_line (start 2.771 -2.058) (end 2.771 -0.98) (layer F.SilkS) (width 0.12))
  2303. (fp_line (start 2.771 0.98) (end 2.771 2.058) (layer F.SilkS) (width 0.12))
  2304. (fp_line (start 2.811 -2.028) (end 2.811 -0.98) (layer F.SilkS) (width 0.12))
  2305. (fp_line (start 2.811 0.98) (end 2.811 2.028) (layer F.SilkS) (width 0.12))
  2306. (fp_line (start 2.851 -1.997) (end 2.851 -0.98) (layer F.SilkS) (width 0.12))
  2307. (fp_line (start 2.851 0.98) (end 2.851 1.997) (layer F.SilkS) (width 0.12))
  2308. (fp_line (start 2.891 -1.965) (end 2.891 -0.98) (layer F.SilkS) (width 0.12))
  2309. (fp_line (start 2.891 0.98) (end 2.891 1.965) (layer F.SilkS) (width 0.12))
  2310. (fp_line (start 2.931 -1.932) (end 2.931 -0.98) (layer F.SilkS) (width 0.12))
  2311. (fp_line (start 2.931 0.98) (end 2.931 1.932) (layer F.SilkS) (width 0.12))
  2312. (fp_line (start 2.971 -1.897) (end 2.971 -0.98) (layer F.SilkS) (width 0.12))
  2313. (fp_line (start 2.971 0.98) (end 2.971 1.897) (layer F.SilkS) (width 0.12))
  2314. (fp_line (start 3.011 -1.861) (end 3.011 -0.98) (layer F.SilkS) (width 0.12))
  2315. (fp_line (start 3.011 0.98) (end 3.011 1.861) (layer F.SilkS) (width 0.12))
  2316. (fp_line (start 3.051 -1.823) (end 3.051 -0.98) (layer F.SilkS) (width 0.12))
  2317. (fp_line (start 3.051 0.98) (end 3.051 1.823) (layer F.SilkS) (width 0.12))
  2318. (fp_line (start 3.091 -1.783) (end 3.091 -0.98) (layer F.SilkS) (width 0.12))
  2319. (fp_line (start 3.091 0.98) (end 3.091 1.783) (layer F.SilkS) (width 0.12))
  2320. (fp_line (start 3.131 -1.742) (end 3.131 -0.98) (layer F.SilkS) (width 0.12))
  2321. (fp_line (start 3.131 0.98) (end 3.131 1.742) (layer F.SilkS) (width 0.12))
  2322. (fp_line (start 3.171 -1.699) (end 3.171 -0.98) (layer F.SilkS) (width 0.12))
  2323. (fp_line (start 3.171 0.98) (end 3.171 1.699) (layer F.SilkS) (width 0.12))
  2324. (fp_line (start 3.211 -1.654) (end 3.211 -0.98) (layer F.SilkS) (width 0.12))
  2325. (fp_line (start 3.211 0.98) (end 3.211 1.654) (layer F.SilkS) (width 0.12))
  2326. (fp_line (start 3.251 -1.606) (end 3.251 -0.98) (layer F.SilkS) (width 0.12))
  2327. (fp_line (start 3.251 0.98) (end 3.251 1.606) (layer F.SilkS) (width 0.12))
  2328. (fp_line (start 3.291 -1.556) (end 3.291 -0.98) (layer F.SilkS) (width 0.12))
  2329. (fp_line (start 3.291 0.98) (end 3.291 1.556) (layer F.SilkS) (width 0.12))
  2330. (fp_line (start 3.331 -1.504) (end 3.331 -0.98) (layer F.SilkS) (width 0.12))
  2331. (fp_line (start 3.331 0.98) (end 3.331 1.504) (layer F.SilkS) (width 0.12))
  2332. (fp_line (start 3.371 -1.448) (end 3.371 -0.98) (layer F.SilkS) (width 0.12))
  2333. (fp_line (start 3.371 0.98) (end 3.371 1.448) (layer F.SilkS) (width 0.12))
  2334. (fp_line (start 3.411 -1.39) (end 3.411 -0.98) (layer F.SilkS) (width 0.12))
  2335. (fp_line (start 3.411 0.98) (end 3.411 1.39) (layer F.SilkS) (width 0.12))
  2336. (fp_line (start 3.451 -1.327) (end 3.451 -0.98) (layer F.SilkS) (width 0.12))
  2337. (fp_line (start 3.451 0.98) (end 3.451 1.327) (layer F.SilkS) (width 0.12))
  2338. (fp_line (start 3.491 -1.261) (end 3.491 1.261) (layer F.SilkS) (width 0.12))
  2339. (fp_line (start 3.531 -1.189) (end 3.531 1.189) (layer F.SilkS) (width 0.12))
  2340. (fp_line (start 3.571 -1.112) (end 3.571 1.112) (layer F.SilkS) (width 0.12))
  2341. (fp_line (start 3.611 -1.028) (end 3.611 1.028) (layer F.SilkS) (width 0.12))
  2342. (fp_line (start 3.651 -0.934) (end 3.651 0.934) (layer F.SilkS) (width 0.12))
  2343. (fp_line (start 3.691 -0.829) (end 3.691 0.829) (layer F.SilkS) (width 0.12))
  2344. (fp_line (start 3.731 -0.707) (end 3.731 0.707) (layer F.SilkS) (width 0.12))
  2345. (fp_line (start 3.771 -0.559) (end 3.771 0.559) (layer F.SilkS) (width 0.12))
  2346. (fp_line (start 3.811 -0.354) (end 3.811 0.354) (layer F.SilkS) (width 0.12))
  2347. (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
  2348. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
  2349. (fp_line (start -1.6 -2.85) (end -1.6 2.85) (layer F.CrtYd) (width 0.05))
  2350. (fp_line (start -1.6 2.85) (end 4.1 2.85) (layer F.CrtYd) (width 0.05))
  2351. (fp_line (start 4.1 2.85) (end 4.1 -2.85) (layer F.CrtYd) (width 0.05))
  2352. (fp_line (start 4.1 -2.85) (end -1.6 -2.85) (layer F.CrtYd) (width 0.05))
  2353. (fp_text user %R (at 1.25 0) (layer F.Fab)
  2354. (effects (font (size 1 1) (thickness 0.15)))
  2355. )
  2356. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2357. (net 11 "Net-(C20-Pad1)"))
  2358. (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2359. (net 26 GND_ISO_2))
  2360. (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_D5.0mm_P2.50mm.wrl
  2361. (at (xyz 0 0 0))
  2362. (scale (xyz 1 1 1))
  2363. (rotate (xyz 0 0 0))
  2364. )
  2365. )
  2366. (module Capacitors_THT:CP_Radial_Tantal_D4.5mm_P2.50mm (layer F.Cu) (tedit 597C781B) (tstamp 59A6E8A7)
  2367. (at 87.67 91.44)
  2368. (descr "CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf")
  2369. (tags "CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor")
  2370. (path /59A7109E/59A6D3E0)
  2371. (fp_text reference C6 (at 1.25 -3.56) (layer F.SilkS)
  2372. (effects (font (size 1 1) (thickness 0.15)))
  2373. )
  2374. (fp_text value 100nF (at 1.25 3.56) (layer F.Fab)
  2375. (effects (font (size 1 1) (thickness 0.15)))
  2376. )
  2377. (fp_arc (start 1.25 0) (end -0.770693 -1.18) (angle 119.4) (layer F.SilkS) (width 0.12))
  2378. (fp_arc (start 1.25 0) (end -0.770693 1.18) (angle -119.4) (layer F.SilkS) (width 0.12))
  2379. (fp_arc (start 1.25 0) (end 3.270693 -1.18) (angle 60.6) (layer F.SilkS) (width 0.12))
  2380. (fp_circle (center 1.25 0) (end 3.5 0) (layer F.Fab) (width 0.1))
  2381. (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
  2382. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
  2383. (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
  2384. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
  2385. (fp_line (start -1.35 -2.6) (end -1.35 2.6) (layer F.CrtYd) (width 0.05))
  2386. (fp_line (start -1.35 2.6) (end 3.85 2.6) (layer F.CrtYd) (width 0.05))
  2387. (fp_line (start 3.85 2.6) (end 3.85 -2.6) (layer F.CrtYd) (width 0.05))
  2388. (fp_line (start 3.85 -2.6) (end -1.35 -2.6) (layer F.CrtYd) (width 0.05))
  2389. (fp_text user %R (at 1.25 0) (layer F.Fab)
  2390. (effects (font (size 1 1) (thickness 0.15)))
  2391. )
  2392. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2393. (net 11 "Net-(C20-Pad1)"))
  2394. (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2395. (net 26 GND_ISO_2))
  2396. (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D4.5mm_P2.50mm.wrl
  2397. (at (xyz 0 0 0))
  2398. (scale (xyz 1 1 1))
  2399. (rotate (xyz 0 0 0))
  2400. )
  2401. )
  2402. (module Capacitors_THT:CP_Radial_Tantal_D4.5mm_P2.50mm (layer F.Cu) (tedit 597C781B) (tstamp 59A6E8BA)
  2403. (at 81.32 99.06)
  2404. (descr "CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf")
  2405. (tags "CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor")
  2406. (path /59A7109E/5949814D)
  2407. (fp_text reference C7 (at 1.25 -3.56) (layer F.SilkS)
  2408. (effects (font (size 1 1) (thickness 0.15)))
  2409. )
  2410. (fp_text value C (at 1.25 3.56) (layer F.Fab)
  2411. (effects (font (size 1 1) (thickness 0.15)))
  2412. )
  2413. (fp_arc (start 1.25 0) (end -0.770693 -1.18) (angle 119.4) (layer F.SilkS) (width 0.12))
  2414. (fp_arc (start 1.25 0) (end -0.770693 1.18) (angle -119.4) (layer F.SilkS) (width 0.12))
  2415. (fp_arc (start 1.25 0) (end 3.270693 -1.18) (angle 60.6) (layer F.SilkS) (width 0.12))
  2416. (fp_circle (center 1.25 0) (end 3.5 0) (layer F.Fab) (width 0.1))
  2417. (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
  2418. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
  2419. (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
  2420. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
  2421. (fp_line (start -1.35 -2.6) (end -1.35 2.6) (layer F.CrtYd) (width 0.05))
  2422. (fp_line (start -1.35 2.6) (end 3.85 2.6) (layer F.CrtYd) (width 0.05))
  2423. (fp_line (start 3.85 2.6) (end 3.85 -2.6) (layer F.CrtYd) (width 0.05))
  2424. (fp_line (start 3.85 -2.6) (end -1.35 -2.6) (layer F.CrtYd) (width 0.05))
  2425. (fp_text user %R (at 1.25 0) (layer F.Fab)
  2426. (effects (font (size 1 1) (thickness 0.15)))
  2427. )
  2428. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2429. (net 26 GND_ISO_2))
  2430. (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2431. (net 27 DRV_GATE_B))
  2432. (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D4.5mm_P2.50mm.wrl
  2433. (at (xyz 0 0 0))
  2434. (scale (xyz 1 1 1))
  2435. (rotate (xyz 0 0 0))
  2436. )
  2437. )
  2438. (module Capacitors_THT:CP_Radial_D5.0mm_P2.50mm (layer F.Cu) (tedit 597BC7C2) (tstamp 59A6E93F)
  2439. (at 87.67 99.06)
  2440. (descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor")
  2441. (tags "CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor")
  2442. (path /59A7109E/59498146)
  2443. (fp_text reference C8 (at 1.25 -3.81) (layer F.SilkS)
  2444. (effects (font (size 1 1) (thickness 0.15)))
  2445. )
  2446. (fp_text value 4.7uF (at 1.25 3.81) (layer F.Fab)
  2447. (effects (font (size 1 1) (thickness 0.15)))
  2448. )
  2449. (fp_arc (start 1.25 0) (end -1.05558 -1.18) (angle 125.8) (layer F.SilkS) (width 0.12))
  2450. (fp_arc (start 1.25 0) (end -1.05558 1.18) (angle -125.8) (layer F.SilkS) (width 0.12))
  2451. (fp_arc (start 1.25 0) (end 3.55558 -1.18) (angle 54.2) (layer F.SilkS) (width 0.12))
  2452. (fp_circle (center 1.25 0) (end 3.75 0) (layer F.Fab) (width 0.1))
  2453. (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
  2454. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
  2455. (fp_line (start 1.25 -2.55) (end 1.25 2.55) (layer F.SilkS) (width 0.12))
  2456. (fp_line (start 1.29 -2.55) (end 1.29 2.55) (layer F.SilkS) (width 0.12))
  2457. (fp_line (start 1.33 -2.549) (end 1.33 2.549) (layer F.SilkS) (width 0.12))
  2458. (fp_line (start 1.37 -2.548) (end 1.37 2.548) (layer F.SilkS) (width 0.12))
  2459. (fp_line (start 1.41 -2.546) (end 1.41 2.546) (layer F.SilkS) (width 0.12))
  2460. (fp_line (start 1.45 -2.543) (end 1.45 2.543) (layer F.SilkS) (width 0.12))
  2461. (fp_line (start 1.49 -2.539) (end 1.49 2.539) (layer F.SilkS) (width 0.12))
  2462. (fp_line (start 1.53 -2.535) (end 1.53 -0.98) (layer F.SilkS) (width 0.12))
  2463. (fp_line (start 1.53 0.98) (end 1.53 2.535) (layer F.SilkS) (width 0.12))
  2464. (fp_line (start 1.57 -2.531) (end 1.57 -0.98) (layer F.SilkS) (width 0.12))
  2465. (fp_line (start 1.57 0.98) (end 1.57 2.531) (layer F.SilkS) (width 0.12))
  2466. (fp_line (start 1.61 -2.525) (end 1.61 -0.98) (layer F.SilkS) (width 0.12))
  2467. (fp_line (start 1.61 0.98) (end 1.61 2.525) (layer F.SilkS) (width 0.12))
  2468. (fp_line (start 1.65 -2.519) (end 1.65 -0.98) (layer F.SilkS) (width 0.12))
  2469. (fp_line (start 1.65 0.98) (end 1.65 2.519) (layer F.SilkS) (width 0.12))
  2470. (fp_line (start 1.69 -2.513) (end 1.69 -0.98) (layer F.SilkS) (width 0.12))
  2471. (fp_line (start 1.69 0.98) (end 1.69 2.513) (layer F.SilkS) (width 0.12))
  2472. (fp_line (start 1.73 -2.506) (end 1.73 -0.98) (layer F.SilkS) (width 0.12))
  2473. (fp_line (start 1.73 0.98) (end 1.73 2.506) (layer F.SilkS) (width 0.12))
  2474. (fp_line (start 1.77 -2.498) (end 1.77 -0.98) (layer F.SilkS) (width 0.12))
  2475. (fp_line (start 1.77 0.98) (end 1.77 2.498) (layer F.SilkS) (width 0.12))
  2476. (fp_line (start 1.81 -2.489) (end 1.81 -0.98) (layer F.SilkS) (width 0.12))
  2477. (fp_line (start 1.81 0.98) (end 1.81 2.489) (layer F.SilkS) (width 0.12))
  2478. (fp_line (start 1.85 -2.48) (end 1.85 -0.98) (layer F.SilkS) (width 0.12))
  2479. (fp_line (start 1.85 0.98) (end 1.85 2.48) (layer F.SilkS) (width 0.12))
  2480. (fp_line (start 1.89 -2.47) (end 1.89 -0.98) (layer F.SilkS) (width 0.12))
  2481. (fp_line (start 1.89 0.98) (end 1.89 2.47) (layer F.SilkS) (width 0.12))
  2482. (fp_line (start 1.93 -2.46) (end 1.93 -0.98) (layer F.SilkS) (width 0.12))
  2483. (fp_line (start 1.93 0.98) (end 1.93 2.46) (layer F.SilkS) (width 0.12))
  2484. (fp_line (start 1.971 -2.448) (end 1.971 -0.98) (layer F.SilkS) (width 0.12))
  2485. (fp_line (start 1.971 0.98) (end 1.971 2.448) (layer F.SilkS) (width 0.12))
  2486. (fp_line (start 2.011 -2.436) (end 2.011 -0.98) (layer F.SilkS) (width 0.12))
  2487. (fp_line (start 2.011 0.98) (end 2.011 2.436) (layer F.SilkS) (width 0.12))
  2488. (fp_line (start 2.051 -2.424) (end 2.051 -0.98) (layer F.SilkS) (width 0.12))
  2489. (fp_line (start 2.051 0.98) (end 2.051 2.424) (layer F.SilkS) (width 0.12))
  2490. (fp_line (start 2.091 -2.41) (end 2.091 -0.98) (layer F.SilkS) (width 0.12))
  2491. (fp_line (start 2.091 0.98) (end 2.091 2.41) (layer F.SilkS) (width 0.12))
  2492. (fp_line (start 2.131 -2.396) (end 2.131 -0.98) (layer F.SilkS) (width 0.12))
  2493. (fp_line (start 2.131 0.98) (end 2.131 2.396) (layer F.SilkS) (width 0.12))
  2494. (fp_line (start 2.171 -2.382) (end 2.171 -0.98) (layer F.SilkS) (width 0.12))
  2495. (fp_line (start 2.171 0.98) (end 2.171 2.382) (layer F.SilkS) (width 0.12))
  2496. (fp_line (start 2.211 -2.366) (end 2.211 -0.98) (layer F.SilkS) (width 0.12))
  2497. (fp_line (start 2.211 0.98) (end 2.211 2.366) (layer F.SilkS) (width 0.12))
  2498. (fp_line (start 2.251 -2.35) (end 2.251 -0.98) (layer F.SilkS) (width 0.12))
  2499. (fp_line (start 2.251 0.98) (end 2.251 2.35) (layer F.SilkS) (width 0.12))
  2500. (fp_line (start 2.291 -2.333) (end 2.291 -0.98) (layer F.SilkS) (width 0.12))
  2501. (fp_line (start 2.291 0.98) (end 2.291 2.333) (layer F.SilkS) (width 0.12))
  2502. (fp_line (start 2.331 -2.315) (end 2.331 -0.98) (layer F.SilkS) (width 0.12))
  2503. (fp_line (start 2.331 0.98) (end 2.331 2.315) (layer F.SilkS) (width 0.12))
  2504. (fp_line (start 2.371 -2.296) (end 2.371 -0.98) (layer F.SilkS) (width 0.12))
  2505. (fp_line (start 2.371 0.98) (end 2.371 2.296) (layer F.SilkS) (width 0.12))
  2506. (fp_line (start 2.411 -2.276) (end 2.411 -0.98) (layer F.SilkS) (width 0.12))
  2507. (fp_line (start 2.411 0.98) (end 2.411 2.276) (layer F.SilkS) (width 0.12))
  2508. (fp_line (start 2.451 -2.256) (end 2.451 -0.98) (layer F.SilkS) (width 0.12))
  2509. (fp_line (start 2.451 0.98) (end 2.451 2.256) (layer F.SilkS) (width 0.12))
  2510. (fp_line (start 2.491 -2.234) (end 2.491 -0.98) (layer F.SilkS) (width 0.12))
  2511. (fp_line (start 2.491 0.98) (end 2.491 2.234) (layer F.SilkS) (width 0.12))
  2512. (fp_line (start 2.531 -2.212) (end 2.531 -0.98) (layer F.SilkS) (width 0.12))
  2513. (fp_line (start 2.531 0.98) (end 2.531 2.212) (layer F.SilkS) (width 0.12))
  2514. (fp_line (start 2.571 -2.189) (end 2.571 -0.98) (layer F.SilkS) (width 0.12))
  2515. (fp_line (start 2.571 0.98) (end 2.571 2.189) (layer F.SilkS) (width 0.12))
  2516. (fp_line (start 2.611 -2.165) (end 2.611 -0.98) (layer F.SilkS) (width 0.12))
  2517. (fp_line (start 2.611 0.98) (end 2.611 2.165) (layer F.SilkS) (width 0.12))
  2518. (fp_line (start 2.651 -2.14) (end 2.651 -0.98) (layer F.SilkS) (width 0.12))
  2519. (fp_line (start 2.651 0.98) (end 2.651 2.14) (layer F.SilkS) (width 0.12))
  2520. (fp_line (start 2.691 -2.113) (end 2.691 -0.98) (layer F.SilkS) (width 0.12))
  2521. (fp_line (start 2.691 0.98) (end 2.691 2.113) (layer F.SilkS) (width 0.12))
  2522. (fp_line (start 2.731 -2.086) (end 2.731 -0.98) (layer F.SilkS) (width 0.12))
  2523. (fp_line (start 2.731 0.98) (end 2.731 2.086) (layer F.SilkS) (width 0.12))
  2524. (fp_line (start 2.771 -2.058) (end 2.771 -0.98) (layer F.SilkS) (width 0.12))
  2525. (fp_line (start 2.771 0.98) (end 2.771 2.058) (layer F.SilkS) (width 0.12))
  2526. (fp_line (start 2.811 -2.028) (end 2.811 -0.98) (layer F.SilkS) (width 0.12))
  2527. (fp_line (start 2.811 0.98) (end 2.811 2.028) (layer F.SilkS) (width 0.12))
  2528. (fp_line (start 2.851 -1.997) (end 2.851 -0.98) (layer F.SilkS) (width 0.12))
  2529. (fp_line (start 2.851 0.98) (end 2.851 1.997) (layer F.SilkS) (width 0.12))
  2530. (fp_line (start 2.891 -1.965) (end 2.891 -0.98) (layer F.SilkS) (width 0.12))
  2531. (fp_line (start 2.891 0.98) (end 2.891 1.965) (layer F.SilkS) (width 0.12))
  2532. (fp_line (start 2.931 -1.932) (end 2.931 -0.98) (layer F.SilkS) (width 0.12))
  2533. (fp_line (start 2.931 0.98) (end 2.931 1.932) (layer F.SilkS) (width 0.12))
  2534. (fp_line (start 2.971 -1.897) (end 2.971 -0.98) (layer F.SilkS) (width 0.12))
  2535. (fp_line (start 2.971 0.98) (end 2.971 1.897) (layer F.SilkS) (width 0.12))
  2536. (fp_line (start 3.011 -1.861) (end 3.011 -0.98) (layer F.SilkS) (width 0.12))
  2537. (fp_line (start 3.011 0.98) (end 3.011 1.861) (layer F.SilkS) (width 0.12))
  2538. (fp_line (start 3.051 -1.823) (end 3.051 -0.98) (layer F.SilkS) (width 0.12))
  2539. (fp_line (start 3.051 0.98) (end 3.051 1.823) (layer F.SilkS) (width 0.12))
  2540. (fp_line (start 3.091 -1.783) (end 3.091 -0.98) (layer F.SilkS) (width 0.12))
  2541. (fp_line (start 3.091 0.98) (end 3.091 1.783) (layer F.SilkS) (width 0.12))
  2542. (fp_line (start 3.131 -1.742) (end 3.131 -0.98) (layer F.SilkS) (width 0.12))
  2543. (fp_line (start 3.131 0.98) (end 3.131 1.742) (layer F.SilkS) (width 0.12))
  2544. (fp_line (start 3.171 -1.699) (end 3.171 -0.98) (layer F.SilkS) (width 0.12))
  2545. (fp_line (start 3.171 0.98) (end 3.171 1.699) (layer F.SilkS) (width 0.12))
  2546. (fp_line (start 3.211 -1.654) (end 3.211 -0.98) (layer F.SilkS) (width 0.12))
  2547. (fp_line (start 3.211 0.98) (end 3.211 1.654) (layer F.SilkS) (width 0.12))
  2548. (fp_line (start 3.251 -1.606) (end 3.251 -0.98) (layer F.SilkS) (width 0.12))
  2549. (fp_line (start 3.251 0.98) (end 3.251 1.606) (layer F.SilkS) (width 0.12))
  2550. (fp_line (start 3.291 -1.556) (end 3.291 -0.98) (layer F.SilkS) (width 0.12))
  2551. (fp_line (start 3.291 0.98) (end 3.291 1.556) (layer F.SilkS) (width 0.12))
  2552. (fp_line (start 3.331 -1.504) (end 3.331 -0.98) (layer F.SilkS) (width 0.12))
  2553. (fp_line (start 3.331 0.98) (end 3.331 1.504) (layer F.SilkS) (width 0.12))
  2554. (fp_line (start 3.371 -1.448) (end 3.371 -0.98) (layer F.SilkS) (width 0.12))
  2555. (fp_line (start 3.371 0.98) (end 3.371 1.448) (layer F.SilkS) (width 0.12))
  2556. (fp_line (start 3.411 -1.39) (end 3.411 -0.98) (layer F.SilkS) (width 0.12))
  2557. (fp_line (start 3.411 0.98) (end 3.411 1.39) (layer F.SilkS) (width 0.12))
  2558. (fp_line (start 3.451 -1.327) (end 3.451 -0.98) (layer F.SilkS) (width 0.12))
  2559. (fp_line (start 3.451 0.98) (end 3.451 1.327) (layer F.SilkS) (width 0.12))
  2560. (fp_line (start 3.491 -1.261) (end 3.491 1.261) (layer F.SilkS) (width 0.12))
  2561. (fp_line (start 3.531 -1.189) (end 3.531 1.189) (layer F.SilkS) (width 0.12))
  2562. (fp_line (start 3.571 -1.112) (end 3.571 1.112) (layer F.SilkS) (width 0.12))
  2563. (fp_line (start 3.611 -1.028) (end 3.611 1.028) (layer F.SilkS) (width 0.12))
  2564. (fp_line (start 3.651 -0.934) (end 3.651 0.934) (layer F.SilkS) (width 0.12))
  2565. (fp_line (start 3.691 -0.829) (end 3.691 0.829) (layer F.SilkS) (width 0.12))
  2566. (fp_line (start 3.731 -0.707) (end 3.731 0.707) (layer F.SilkS) (width 0.12))
  2567. (fp_line (start 3.771 -0.559) (end 3.771 0.559) (layer F.SilkS) (width 0.12))
  2568. (fp_line (start 3.811 -0.354) (end 3.811 0.354) (layer F.SilkS) (width 0.12))
  2569. (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
  2570. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
  2571. (fp_line (start -1.6 -2.85) (end -1.6 2.85) (layer F.CrtYd) (width 0.05))
  2572. (fp_line (start -1.6 2.85) (end 4.1 2.85) (layer F.CrtYd) (width 0.05))
  2573. (fp_line (start 4.1 2.85) (end 4.1 -2.85) (layer F.CrtYd) (width 0.05))
  2574. (fp_line (start 4.1 -2.85) (end -1.6 -2.85) (layer F.CrtYd) (width 0.05))
  2575. (fp_text user %R (at 1.25 0) (layer F.Fab)
  2576. (effects (font (size 1 1) (thickness 0.15)))
  2577. )
  2578. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2579. (net 27 DRV_GATE_B))
  2580. (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2581. (net 26 GND_ISO_2))
  2582. (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_D5.0mm_P2.50mm.wrl
  2583. (at (xyz 0 0 0))
  2584. (scale (xyz 1 1 1))
  2585. (rotate (xyz 0 0 0))
  2586. )
  2587. )
  2588. (module Capacitors_THT:CP_Radial_D5.0mm_P2.50mm (layer F.Cu) (tedit 597BC7C2) (tstamp 59A6E9C4)
  2589. (at 149.86 53.34)
  2590. (descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor")
  2591. (tags "CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor")
  2592. (path /59A71299/59A6D3D9)
  2593. (fp_text reference C9 (at 1.25 -3.81) (layer F.SilkS)
  2594. (effects (font (size 1 1) (thickness 0.15)))
  2595. )
  2596. (fp_text value 4.7uF (at 1.25 3.81) (layer F.Fab)
  2597. (effects (font (size 1 1) (thickness 0.15)))
  2598. )
  2599. (fp_arc (start 1.25 0) (end -1.05558 -1.18) (angle 125.8) (layer F.SilkS) (width 0.12))
  2600. (fp_arc (start 1.25 0) (end -1.05558 1.18) (angle -125.8) (layer F.SilkS) (width 0.12))
  2601. (fp_arc (start 1.25 0) (end 3.55558 -1.18) (angle 54.2) (layer F.SilkS) (width 0.12))
  2602. (fp_circle (center 1.25 0) (end 3.75 0) (layer F.Fab) (width 0.1))
  2603. (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
  2604. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
  2605. (fp_line (start 1.25 -2.55) (end 1.25 2.55) (layer F.SilkS) (width 0.12))
  2606. (fp_line (start 1.29 -2.55) (end 1.29 2.55) (layer F.SilkS) (width 0.12))
  2607. (fp_line (start 1.33 -2.549) (end 1.33 2.549) (layer F.SilkS) (width 0.12))
  2608. (fp_line (start 1.37 -2.548) (end 1.37 2.548) (layer F.SilkS) (width 0.12))
  2609. (fp_line (start 1.41 -2.546) (end 1.41 2.546) (layer F.SilkS) (width 0.12))
  2610. (fp_line (start 1.45 -2.543) (end 1.45 2.543) (layer F.SilkS) (width 0.12))
  2611. (fp_line (start 1.49 -2.539) (end 1.49 2.539) (layer F.SilkS) (width 0.12))
  2612. (fp_line (start 1.53 -2.535) (end 1.53 -0.98) (layer F.SilkS) (width 0.12))
  2613. (fp_line (start 1.53 0.98) (end 1.53 2.535) (layer F.SilkS) (width 0.12))
  2614. (fp_line (start 1.57 -2.531) (end 1.57 -0.98) (layer F.SilkS) (width 0.12))
  2615. (fp_line (start 1.57 0.98) (end 1.57 2.531) (layer F.SilkS) (width 0.12))
  2616. (fp_line (start 1.61 -2.525) (end 1.61 -0.98) (layer F.SilkS) (width 0.12))
  2617. (fp_line (start 1.61 0.98) (end 1.61 2.525) (layer F.SilkS) (width 0.12))
  2618. (fp_line (start 1.65 -2.519) (end 1.65 -0.98) (layer F.SilkS) (width 0.12))
  2619. (fp_line (start 1.65 0.98) (end 1.65 2.519) (layer F.SilkS) (width 0.12))
  2620. (fp_line (start 1.69 -2.513) (end 1.69 -0.98) (layer F.SilkS) (width 0.12))
  2621. (fp_line (start 1.69 0.98) (end 1.69 2.513) (layer F.SilkS) (width 0.12))
  2622. (fp_line (start 1.73 -2.506) (end 1.73 -0.98) (layer F.SilkS) (width 0.12))
  2623. (fp_line (start 1.73 0.98) (end 1.73 2.506) (layer F.SilkS) (width 0.12))
  2624. (fp_line (start 1.77 -2.498) (end 1.77 -0.98) (layer F.SilkS) (width 0.12))
  2625. (fp_line (start 1.77 0.98) (end 1.77 2.498) (layer F.SilkS) (width 0.12))
  2626. (fp_line (start 1.81 -2.489) (end 1.81 -0.98) (layer F.SilkS) (width 0.12))
  2627. (fp_line (start 1.81 0.98) (end 1.81 2.489) (layer F.SilkS) (width 0.12))
  2628. (fp_line (start 1.85 -2.48) (end 1.85 -0.98) (layer F.SilkS) (width 0.12))
  2629. (fp_line (start 1.85 0.98) (end 1.85 2.48) (layer F.SilkS) (width 0.12))
  2630. (fp_line (start 1.89 -2.47) (end 1.89 -0.98) (layer F.SilkS) (width 0.12))
  2631. (fp_line (start 1.89 0.98) (end 1.89 2.47) (layer F.SilkS) (width 0.12))
  2632. (fp_line (start 1.93 -2.46) (end 1.93 -0.98) (layer F.SilkS) (width 0.12))
  2633. (fp_line (start 1.93 0.98) (end 1.93 2.46) (layer F.SilkS) (width 0.12))
  2634. (fp_line (start 1.971 -2.448) (end 1.971 -0.98) (layer F.SilkS) (width 0.12))
  2635. (fp_line (start 1.971 0.98) (end 1.971 2.448) (layer F.SilkS) (width 0.12))
  2636. (fp_line (start 2.011 -2.436) (end 2.011 -0.98) (layer F.SilkS) (width 0.12))
  2637. (fp_line (start 2.011 0.98) (end 2.011 2.436) (layer F.SilkS) (width 0.12))
  2638. (fp_line (start 2.051 -2.424) (end 2.051 -0.98) (layer F.SilkS) (width 0.12))
  2639. (fp_line (start 2.051 0.98) (end 2.051 2.424) (layer F.SilkS) (width 0.12))
  2640. (fp_line (start 2.091 -2.41) (end 2.091 -0.98) (layer F.SilkS) (width 0.12))
  2641. (fp_line (start 2.091 0.98) (end 2.091 2.41) (layer F.SilkS) (width 0.12))
  2642. (fp_line (start 2.131 -2.396) (end 2.131 -0.98) (layer F.SilkS) (width 0.12))
  2643. (fp_line (start 2.131 0.98) (end 2.131 2.396) (layer F.SilkS) (width 0.12))
  2644. (fp_line (start 2.171 -2.382) (end 2.171 -0.98) (layer F.SilkS) (width 0.12))
  2645. (fp_line (start 2.171 0.98) (end 2.171 2.382) (layer F.SilkS) (width 0.12))
  2646. (fp_line (start 2.211 -2.366) (end 2.211 -0.98) (layer F.SilkS) (width 0.12))
  2647. (fp_line (start 2.211 0.98) (end 2.211 2.366) (layer F.SilkS) (width 0.12))
  2648. (fp_line (start 2.251 -2.35) (end 2.251 -0.98) (layer F.SilkS) (width 0.12))
  2649. (fp_line (start 2.251 0.98) (end 2.251 2.35) (layer F.SilkS) (width 0.12))
  2650. (fp_line (start 2.291 -2.333) (end 2.291 -0.98) (layer F.SilkS) (width 0.12))
  2651. (fp_line (start 2.291 0.98) (end 2.291 2.333) (layer F.SilkS) (width 0.12))
  2652. (fp_line (start 2.331 -2.315) (end 2.331 -0.98) (layer F.SilkS) (width 0.12))
  2653. (fp_line (start 2.331 0.98) (end 2.331 2.315) (layer F.SilkS) (width 0.12))
  2654. (fp_line (start 2.371 -2.296) (end 2.371 -0.98) (layer F.SilkS) (width 0.12))
  2655. (fp_line (start 2.371 0.98) (end 2.371 2.296) (layer F.SilkS) (width 0.12))
  2656. (fp_line (start 2.411 -2.276) (end 2.411 -0.98) (layer F.SilkS) (width 0.12))
  2657. (fp_line (start 2.411 0.98) (end 2.411 2.276) (layer F.SilkS) (width 0.12))
  2658. (fp_line (start 2.451 -2.256) (end 2.451 -0.98) (layer F.SilkS) (width 0.12))
  2659. (fp_line (start 2.451 0.98) (end 2.451 2.256) (layer F.SilkS) (width 0.12))
  2660. (fp_line (start 2.491 -2.234) (end 2.491 -0.98) (layer F.SilkS) (width 0.12))
  2661. (fp_line (start 2.491 0.98) (end 2.491 2.234) (layer F.SilkS) (width 0.12))
  2662. (fp_line (start 2.531 -2.212) (end 2.531 -0.98) (layer F.SilkS) (width 0.12))
  2663. (fp_line (start 2.531 0.98) (end 2.531 2.212) (layer F.SilkS) (width 0.12))
  2664. (fp_line (start 2.571 -2.189) (end 2.571 -0.98) (layer F.SilkS) (width 0.12))
  2665. (fp_line (start 2.571 0.98) (end 2.571 2.189) (layer F.SilkS) (width 0.12))
  2666. (fp_line (start 2.611 -2.165) (end 2.611 -0.98) (layer F.SilkS) (width 0.12))
  2667. (fp_line (start 2.611 0.98) (end 2.611 2.165) (layer F.SilkS) (width 0.12))
  2668. (fp_line (start 2.651 -2.14) (end 2.651 -0.98) (layer F.SilkS) (width 0.12))
  2669. (fp_line (start 2.651 0.98) (end 2.651 2.14) (layer F.SilkS) (width 0.12))
  2670. (fp_line (start 2.691 -2.113) (end 2.691 -0.98) (layer F.SilkS) (width 0.12))
  2671. (fp_line (start 2.691 0.98) (end 2.691 2.113) (layer F.SilkS) (width 0.12))
  2672. (fp_line (start 2.731 -2.086) (end 2.731 -0.98) (layer F.SilkS) (width 0.12))
  2673. (fp_line (start 2.731 0.98) (end 2.731 2.086) (layer F.SilkS) (width 0.12))
  2674. (fp_line (start 2.771 -2.058) (end 2.771 -0.98) (layer F.SilkS) (width 0.12))
  2675. (fp_line (start 2.771 0.98) (end 2.771 2.058) (layer F.SilkS) (width 0.12))
  2676. (fp_line (start 2.811 -2.028) (end 2.811 -0.98) (layer F.SilkS) (width 0.12))
  2677. (fp_line (start 2.811 0.98) (end 2.811 2.028) (layer F.SilkS) (width 0.12))
  2678. (fp_line (start 2.851 -1.997) (end 2.851 -0.98) (layer F.SilkS) (width 0.12))
  2679. (fp_line (start 2.851 0.98) (end 2.851 1.997) (layer F.SilkS) (width 0.12))
  2680. (fp_line (start 2.891 -1.965) (end 2.891 -0.98) (layer F.SilkS) (width 0.12))
  2681. (fp_line (start 2.891 0.98) (end 2.891 1.965) (layer F.SilkS) (width 0.12))
  2682. (fp_line (start 2.931 -1.932) (end 2.931 -0.98) (layer F.SilkS) (width 0.12))
  2683. (fp_line (start 2.931 0.98) (end 2.931 1.932) (layer F.SilkS) (width 0.12))
  2684. (fp_line (start 2.971 -1.897) (end 2.971 -0.98) (layer F.SilkS) (width 0.12))
  2685. (fp_line (start 2.971 0.98) (end 2.971 1.897) (layer F.SilkS) (width 0.12))
  2686. (fp_line (start 3.011 -1.861) (end 3.011 -0.98) (layer F.SilkS) (width 0.12))
  2687. (fp_line (start 3.011 0.98) (end 3.011 1.861) (layer F.SilkS) (width 0.12))
  2688. (fp_line (start 3.051 -1.823) (end 3.051 -0.98) (layer F.SilkS) (width 0.12))
  2689. (fp_line (start 3.051 0.98) (end 3.051 1.823) (layer F.SilkS) (width 0.12))
  2690. (fp_line (start 3.091 -1.783) (end 3.091 -0.98) (layer F.SilkS) (width 0.12))
  2691. (fp_line (start 3.091 0.98) (end 3.091 1.783) (layer F.SilkS) (width 0.12))
  2692. (fp_line (start 3.131 -1.742) (end 3.131 -0.98) (layer F.SilkS) (width 0.12))
  2693. (fp_line (start 3.131 0.98) (end 3.131 1.742) (layer F.SilkS) (width 0.12))
  2694. (fp_line (start 3.171 -1.699) (end 3.171 -0.98) (layer F.SilkS) (width 0.12))
  2695. (fp_line (start 3.171 0.98) (end 3.171 1.699) (layer F.SilkS) (width 0.12))
  2696. (fp_line (start 3.211 -1.654) (end 3.211 -0.98) (layer F.SilkS) (width 0.12))
  2697. (fp_line (start 3.211 0.98) (end 3.211 1.654) (layer F.SilkS) (width 0.12))
  2698. (fp_line (start 3.251 -1.606) (end 3.251 -0.98) (layer F.SilkS) (width 0.12))
  2699. (fp_line (start 3.251 0.98) (end 3.251 1.606) (layer F.SilkS) (width 0.12))
  2700. (fp_line (start 3.291 -1.556) (end 3.291 -0.98) (layer F.SilkS) (width 0.12))
  2701. (fp_line (start 3.291 0.98) (end 3.291 1.556) (layer F.SilkS) (width 0.12))
  2702. (fp_line (start 3.331 -1.504) (end 3.331 -0.98) (layer F.SilkS) (width 0.12))
  2703. (fp_line (start 3.331 0.98) (end 3.331 1.504) (layer F.SilkS) (width 0.12))
  2704. (fp_line (start 3.371 -1.448) (end 3.371 -0.98) (layer F.SilkS) (width 0.12))
  2705. (fp_line (start 3.371 0.98) (end 3.371 1.448) (layer F.SilkS) (width 0.12))
  2706. (fp_line (start 3.411 -1.39) (end 3.411 -0.98) (layer F.SilkS) (width 0.12))
  2707. (fp_line (start 3.411 0.98) (end 3.411 1.39) (layer F.SilkS) (width 0.12))
  2708. (fp_line (start 3.451 -1.327) (end 3.451 -0.98) (layer F.SilkS) (width 0.12))
  2709. (fp_line (start 3.451 0.98) (end 3.451 1.327) (layer F.SilkS) (width 0.12))
  2710. (fp_line (start 3.491 -1.261) (end 3.491 1.261) (layer F.SilkS) (width 0.12))
  2711. (fp_line (start 3.531 -1.189) (end 3.531 1.189) (layer F.SilkS) (width 0.12))
  2712. (fp_line (start 3.571 -1.112) (end 3.571 1.112) (layer F.SilkS) (width 0.12))
  2713. (fp_line (start 3.611 -1.028) (end 3.611 1.028) (layer F.SilkS) (width 0.12))
  2714. (fp_line (start 3.651 -0.934) (end 3.651 0.934) (layer F.SilkS) (width 0.12))
  2715. (fp_line (start 3.691 -0.829) (end 3.691 0.829) (layer F.SilkS) (width 0.12))
  2716. (fp_line (start 3.731 -0.707) (end 3.731 0.707) (layer F.SilkS) (width 0.12))
  2717. (fp_line (start 3.771 -0.559) (end 3.771 0.559) (layer F.SilkS) (width 0.12))
  2718. (fp_line (start 3.811 -0.354) (end 3.811 0.354) (layer F.SilkS) (width 0.12))
  2719. (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
  2720. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
  2721. (fp_line (start -1.6 -2.85) (end -1.6 2.85) (layer F.CrtYd) (width 0.05))
  2722. (fp_line (start -1.6 2.85) (end 4.1 2.85) (layer F.CrtYd) (width 0.05))
  2723. (fp_line (start 4.1 2.85) (end 4.1 -2.85) (layer F.CrtYd) (width 0.05))
  2724. (fp_line (start 4.1 -2.85) (end -1.6 -2.85) (layer F.CrtYd) (width 0.05))
  2725. (fp_text user %R (at 1.25 0) (layer F.Fab)
  2726. (effects (font (size 1 1) (thickness 0.15)))
  2727. )
  2728. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2729. (net 2 "Net-(C10-Pad1)"))
  2730. (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2731. (net 28 GND_ISO_3))
  2732. (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_D5.0mm_P2.50mm.wrl
  2733. (at (xyz 0 0 0))
  2734. (scale (xyz 1 1 1))
  2735. (rotate (xyz 0 0 0))
  2736. )
  2737. )
  2738. (module Capacitors_THT:CP_Radial_Tantal_D4.5mm_P2.50mm (layer F.Cu) (tedit 597C781B) (tstamp 59A6E9EA)
  2739. (at 149.86 60.96)
  2740. (descr "CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf")
  2741. (tags "CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor")
  2742. (path /59A71299/5949814D)
  2743. (fp_text reference C11 (at 1.25 -3.56) (layer F.SilkS)
  2744. (effects (font (size 1 1) (thickness 0.15)))
  2745. )
  2746. (fp_text value C (at 1.25 3.56) (layer F.Fab)
  2747. (effects (font (size 1 1) (thickness 0.15)))
  2748. )
  2749. (fp_arc (start 1.25 0) (end -0.770693 -1.18) (angle 119.4) (layer F.SilkS) (width 0.12))
  2750. (fp_arc (start 1.25 0) (end -0.770693 1.18) (angle -119.4) (layer F.SilkS) (width 0.12))
  2751. (fp_arc (start 1.25 0) (end 3.270693 -1.18) (angle 60.6) (layer F.SilkS) (width 0.12))
  2752. (fp_circle (center 1.25 0) (end 3.5 0) (layer F.Fab) (width 0.1))
  2753. (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
  2754. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
  2755. (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
  2756. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
  2757. (fp_line (start -1.35 -2.6) (end -1.35 2.6) (layer F.CrtYd) (width 0.05))
  2758. (fp_line (start -1.35 2.6) (end 3.85 2.6) (layer F.CrtYd) (width 0.05))
  2759. (fp_line (start 3.85 2.6) (end 3.85 -2.6) (layer F.CrtYd) (width 0.05))
  2760. (fp_line (start 3.85 -2.6) (end -1.35 -2.6) (layer F.CrtYd) (width 0.05))
  2761. (fp_text user %R (at 1.25 0) (layer F.Fab)
  2762. (effects (font (size 1 1) (thickness 0.15)))
  2763. )
  2764. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2765. (net 28 GND_ISO_3))
  2766. (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2767. (net 29 DRV_GATE_C))
  2768. (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D4.5mm_P2.50mm.wrl
  2769. (at (xyz 0 0 0))
  2770. (scale (xyz 1 1 1))
  2771. (rotate (xyz 0 0 0))
  2772. )
  2773. )
  2774. (module Capacitors_THT:CP_Radial_D5.0mm_P2.50mm (layer F.Cu) (tedit 597BC7C2) (tstamp 59A6EA6F)
  2775. (at 156.21 60.96)
  2776. (descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor")
  2777. (tags "CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor")
  2778. (path /59A71299/59498146)
  2779. (fp_text reference C12 (at 1.25 -3.81) (layer F.SilkS)
  2780. (effects (font (size 1 1) (thickness 0.15)))
  2781. )
  2782. (fp_text value 4.7uF (at 1.25 3.81) (layer F.Fab)
  2783. (effects (font (size 1 1) (thickness 0.15)))
  2784. )
  2785. (fp_arc (start 1.25 0) (end -1.05558 -1.18) (angle 125.8) (layer F.SilkS) (width 0.12))
  2786. (fp_arc (start 1.25 0) (end -1.05558 1.18) (angle -125.8) (layer F.SilkS) (width 0.12))
  2787. (fp_arc (start 1.25 0) (end 3.55558 -1.18) (angle 54.2) (layer F.SilkS) (width 0.12))
  2788. (fp_circle (center 1.25 0) (end 3.75 0) (layer F.Fab) (width 0.1))
  2789. (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
  2790. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
  2791. (fp_line (start 1.25 -2.55) (end 1.25 2.55) (layer F.SilkS) (width 0.12))
  2792. (fp_line (start 1.29 -2.55) (end 1.29 2.55) (layer F.SilkS) (width 0.12))
  2793. (fp_line (start 1.33 -2.549) (end 1.33 2.549) (layer F.SilkS) (width 0.12))
  2794. (fp_line (start 1.37 -2.548) (end 1.37 2.548) (layer F.SilkS) (width 0.12))
  2795. (fp_line (start 1.41 -2.546) (end 1.41 2.546) (layer F.SilkS) (width 0.12))
  2796. (fp_line (start 1.45 -2.543) (end 1.45 2.543) (layer F.SilkS) (width 0.12))
  2797. (fp_line (start 1.49 -2.539) (end 1.49 2.539) (layer F.SilkS) (width 0.12))
  2798. (fp_line (start 1.53 -2.535) (end 1.53 -0.98) (layer F.SilkS) (width 0.12))
  2799. (fp_line (start 1.53 0.98) (end 1.53 2.535) (layer F.SilkS) (width 0.12))
  2800. (fp_line (start 1.57 -2.531) (end 1.57 -0.98) (layer F.SilkS) (width 0.12))
  2801. (fp_line (start 1.57 0.98) (end 1.57 2.531) (layer F.SilkS) (width 0.12))
  2802. (fp_line (start 1.61 -2.525) (end 1.61 -0.98) (layer F.SilkS) (width 0.12))
  2803. (fp_line (start 1.61 0.98) (end 1.61 2.525) (layer F.SilkS) (width 0.12))
  2804. (fp_line (start 1.65 -2.519) (end 1.65 -0.98) (layer F.SilkS) (width 0.12))
  2805. (fp_line (start 1.65 0.98) (end 1.65 2.519) (layer F.SilkS) (width 0.12))
  2806. (fp_line (start 1.69 -2.513) (end 1.69 -0.98) (layer F.SilkS) (width 0.12))
  2807. (fp_line (start 1.69 0.98) (end 1.69 2.513) (layer F.SilkS) (width 0.12))
  2808. (fp_line (start 1.73 -2.506) (end 1.73 -0.98) (layer F.SilkS) (width 0.12))
  2809. (fp_line (start 1.73 0.98) (end 1.73 2.506) (layer F.SilkS) (width 0.12))
  2810. (fp_line (start 1.77 -2.498) (end 1.77 -0.98) (layer F.SilkS) (width 0.12))
  2811. (fp_line (start 1.77 0.98) (end 1.77 2.498) (layer F.SilkS) (width 0.12))
  2812. (fp_line (start 1.81 -2.489) (end 1.81 -0.98) (layer F.SilkS) (width 0.12))
  2813. (fp_line (start 1.81 0.98) (end 1.81 2.489) (layer F.SilkS) (width 0.12))
  2814. (fp_line (start 1.85 -2.48) (end 1.85 -0.98) (layer F.SilkS) (width 0.12))
  2815. (fp_line (start 1.85 0.98) (end 1.85 2.48) (layer F.SilkS) (width 0.12))
  2816. (fp_line (start 1.89 -2.47) (end 1.89 -0.98) (layer F.SilkS) (width 0.12))
  2817. (fp_line (start 1.89 0.98) (end 1.89 2.47) (layer F.SilkS) (width 0.12))
  2818. (fp_line (start 1.93 -2.46) (end 1.93 -0.98) (layer F.SilkS) (width 0.12))
  2819. (fp_line (start 1.93 0.98) (end 1.93 2.46) (layer F.SilkS) (width 0.12))
  2820. (fp_line (start 1.971 -2.448) (end 1.971 -0.98) (layer F.SilkS) (width 0.12))
  2821. (fp_line (start 1.971 0.98) (end 1.971 2.448) (layer F.SilkS) (width 0.12))
  2822. (fp_line (start 2.011 -2.436) (end 2.011 -0.98) (layer F.SilkS) (width 0.12))
  2823. (fp_line (start 2.011 0.98) (end 2.011 2.436) (layer F.SilkS) (width 0.12))
  2824. (fp_line (start 2.051 -2.424) (end 2.051 -0.98) (layer F.SilkS) (width 0.12))
  2825. (fp_line (start 2.051 0.98) (end 2.051 2.424) (layer F.SilkS) (width 0.12))
  2826. (fp_line (start 2.091 -2.41) (end 2.091 -0.98) (layer F.SilkS) (width 0.12))
  2827. (fp_line (start 2.091 0.98) (end 2.091 2.41) (layer F.SilkS) (width 0.12))
  2828. (fp_line (start 2.131 -2.396) (end 2.131 -0.98) (layer F.SilkS) (width 0.12))
  2829. (fp_line (start 2.131 0.98) (end 2.131 2.396) (layer F.SilkS) (width 0.12))
  2830. (fp_line (start 2.171 -2.382) (end 2.171 -0.98) (layer F.SilkS) (width 0.12))
  2831. (fp_line (start 2.171 0.98) (end 2.171 2.382) (layer F.SilkS) (width 0.12))
  2832. (fp_line (start 2.211 -2.366) (end 2.211 -0.98) (layer F.SilkS) (width 0.12))
  2833. (fp_line (start 2.211 0.98) (end 2.211 2.366) (layer F.SilkS) (width 0.12))
  2834. (fp_line (start 2.251 -2.35) (end 2.251 -0.98) (layer F.SilkS) (width 0.12))
  2835. (fp_line (start 2.251 0.98) (end 2.251 2.35) (layer F.SilkS) (width 0.12))
  2836. (fp_line (start 2.291 -2.333) (end 2.291 -0.98) (layer F.SilkS) (width 0.12))
  2837. (fp_line (start 2.291 0.98) (end 2.291 2.333) (layer F.SilkS) (width 0.12))
  2838. (fp_line (start 2.331 -2.315) (end 2.331 -0.98) (layer F.SilkS) (width 0.12))
  2839. (fp_line (start 2.331 0.98) (end 2.331 2.315) (layer F.SilkS) (width 0.12))
  2840. (fp_line (start 2.371 -2.296) (end 2.371 -0.98) (layer F.SilkS) (width 0.12))
  2841. (fp_line (start 2.371 0.98) (end 2.371 2.296) (layer F.SilkS) (width 0.12))
  2842. (fp_line (start 2.411 -2.276) (end 2.411 -0.98) (layer F.SilkS) (width 0.12))
  2843. (fp_line (start 2.411 0.98) (end 2.411 2.276) (layer F.SilkS) (width 0.12))
  2844. (fp_line (start 2.451 -2.256) (end 2.451 -0.98) (layer F.SilkS) (width 0.12))
  2845. (fp_line (start 2.451 0.98) (end 2.451 2.256) (layer F.SilkS) (width 0.12))
  2846. (fp_line (start 2.491 -2.234) (end 2.491 -0.98) (layer F.SilkS) (width 0.12))
  2847. (fp_line (start 2.491 0.98) (end 2.491 2.234) (layer F.SilkS) (width 0.12))
  2848. (fp_line (start 2.531 -2.212) (end 2.531 -0.98) (layer F.SilkS) (width 0.12))
  2849. (fp_line (start 2.531 0.98) (end 2.531 2.212) (layer F.SilkS) (width 0.12))
  2850. (fp_line (start 2.571 -2.189) (end 2.571 -0.98) (layer F.SilkS) (width 0.12))
  2851. (fp_line (start 2.571 0.98) (end 2.571 2.189) (layer F.SilkS) (width 0.12))
  2852. (fp_line (start 2.611 -2.165) (end 2.611 -0.98) (layer F.SilkS) (width 0.12))
  2853. (fp_line (start 2.611 0.98) (end 2.611 2.165) (layer F.SilkS) (width 0.12))
  2854. (fp_line (start 2.651 -2.14) (end 2.651 -0.98) (layer F.SilkS) (width 0.12))
  2855. (fp_line (start 2.651 0.98) (end 2.651 2.14) (layer F.SilkS) (width 0.12))
  2856. (fp_line (start 2.691 -2.113) (end 2.691 -0.98) (layer F.SilkS) (width 0.12))
  2857. (fp_line (start 2.691 0.98) (end 2.691 2.113) (layer F.SilkS) (width 0.12))
  2858. (fp_line (start 2.731 -2.086) (end 2.731 -0.98) (layer F.SilkS) (width 0.12))
  2859. (fp_line (start 2.731 0.98) (end 2.731 2.086) (layer F.SilkS) (width 0.12))
  2860. (fp_line (start 2.771 -2.058) (end 2.771 -0.98) (layer F.SilkS) (width 0.12))
  2861. (fp_line (start 2.771 0.98) (end 2.771 2.058) (layer F.SilkS) (width 0.12))
  2862. (fp_line (start 2.811 -2.028) (end 2.811 -0.98) (layer F.SilkS) (width 0.12))
  2863. (fp_line (start 2.811 0.98) (end 2.811 2.028) (layer F.SilkS) (width 0.12))
  2864. (fp_line (start 2.851 -1.997) (end 2.851 -0.98) (layer F.SilkS) (width 0.12))
  2865. (fp_line (start 2.851 0.98) (end 2.851 1.997) (layer F.SilkS) (width 0.12))
  2866. (fp_line (start 2.891 -1.965) (end 2.891 -0.98) (layer F.SilkS) (width 0.12))
  2867. (fp_line (start 2.891 0.98) (end 2.891 1.965) (layer F.SilkS) (width 0.12))
  2868. (fp_line (start 2.931 -1.932) (end 2.931 -0.98) (layer F.SilkS) (width 0.12))
  2869. (fp_line (start 2.931 0.98) (end 2.931 1.932) (layer F.SilkS) (width 0.12))
  2870. (fp_line (start 2.971 -1.897) (end 2.971 -0.98) (layer F.SilkS) (width 0.12))
  2871. (fp_line (start 2.971 0.98) (end 2.971 1.897) (layer F.SilkS) (width 0.12))
  2872. (fp_line (start 3.011 -1.861) (end 3.011 -0.98) (layer F.SilkS) (width 0.12))
  2873. (fp_line (start 3.011 0.98) (end 3.011 1.861) (layer F.SilkS) (width 0.12))
  2874. (fp_line (start 3.051 -1.823) (end 3.051 -0.98) (layer F.SilkS) (width 0.12))
  2875. (fp_line (start 3.051 0.98) (end 3.051 1.823) (layer F.SilkS) (width 0.12))
  2876. (fp_line (start 3.091 -1.783) (end 3.091 -0.98) (layer F.SilkS) (width 0.12))
  2877. (fp_line (start 3.091 0.98) (end 3.091 1.783) (layer F.SilkS) (width 0.12))
  2878. (fp_line (start 3.131 -1.742) (end 3.131 -0.98) (layer F.SilkS) (width 0.12))
  2879. (fp_line (start 3.131 0.98) (end 3.131 1.742) (layer F.SilkS) (width 0.12))
  2880. (fp_line (start 3.171 -1.699) (end 3.171 -0.98) (layer F.SilkS) (width 0.12))
  2881. (fp_line (start 3.171 0.98) (end 3.171 1.699) (layer F.SilkS) (width 0.12))
  2882. (fp_line (start 3.211 -1.654) (end 3.211 -0.98) (layer F.SilkS) (width 0.12))
  2883. (fp_line (start 3.211 0.98) (end 3.211 1.654) (layer F.SilkS) (width 0.12))
  2884. (fp_line (start 3.251 -1.606) (end 3.251 -0.98) (layer F.SilkS) (width 0.12))
  2885. (fp_line (start 3.251 0.98) (end 3.251 1.606) (layer F.SilkS) (width 0.12))
  2886. (fp_line (start 3.291 -1.556) (end 3.291 -0.98) (layer F.SilkS) (width 0.12))
  2887. (fp_line (start 3.291 0.98) (end 3.291 1.556) (layer F.SilkS) (width 0.12))
  2888. (fp_line (start 3.331 -1.504) (end 3.331 -0.98) (layer F.SilkS) (width 0.12))
  2889. (fp_line (start 3.331 0.98) (end 3.331 1.504) (layer F.SilkS) (width 0.12))
  2890. (fp_line (start 3.371 -1.448) (end 3.371 -0.98) (layer F.SilkS) (width 0.12))
  2891. (fp_line (start 3.371 0.98) (end 3.371 1.448) (layer F.SilkS) (width 0.12))
  2892. (fp_line (start 3.411 -1.39) (end 3.411 -0.98) (layer F.SilkS) (width 0.12))
  2893. (fp_line (start 3.411 0.98) (end 3.411 1.39) (layer F.SilkS) (width 0.12))
  2894. (fp_line (start 3.451 -1.327) (end 3.451 -0.98) (layer F.SilkS) (width 0.12))
  2895. (fp_line (start 3.451 0.98) (end 3.451 1.327) (layer F.SilkS) (width 0.12))
  2896. (fp_line (start 3.491 -1.261) (end 3.491 1.261) (layer F.SilkS) (width 0.12))
  2897. (fp_line (start 3.531 -1.189) (end 3.531 1.189) (layer F.SilkS) (width 0.12))
  2898. (fp_line (start 3.571 -1.112) (end 3.571 1.112) (layer F.SilkS) (width 0.12))
  2899. (fp_line (start 3.611 -1.028) (end 3.611 1.028) (layer F.SilkS) (width 0.12))
  2900. (fp_line (start 3.651 -0.934) (end 3.651 0.934) (layer F.SilkS) (width 0.12))
  2901. (fp_line (start 3.691 -0.829) (end 3.691 0.829) (layer F.SilkS) (width 0.12))
  2902. (fp_line (start 3.731 -0.707) (end 3.731 0.707) (layer F.SilkS) (width 0.12))
  2903. (fp_line (start 3.771 -0.559) (end 3.771 0.559) (layer F.SilkS) (width 0.12))
  2904. (fp_line (start 3.811 -0.354) (end 3.811 0.354) (layer F.SilkS) (width 0.12))
  2905. (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
  2906. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
  2907. (fp_line (start -1.6 -2.85) (end -1.6 2.85) (layer F.CrtYd) (width 0.05))
  2908. (fp_line (start -1.6 2.85) (end 4.1 2.85) (layer F.CrtYd) (width 0.05))
  2909. (fp_line (start 4.1 2.85) (end 4.1 -2.85) (layer F.CrtYd) (width 0.05))
  2910. (fp_line (start 4.1 -2.85) (end -1.6 -2.85) (layer F.CrtYd) (width 0.05))
  2911. (fp_text user %R (at 1.25 0) (layer F.Fab)
  2912. (effects (font (size 1 1) (thickness 0.15)))
  2913. )
  2914. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2915. (net 29 DRV_GATE_C))
  2916. (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2917. (net 28 GND_ISO_3))
  2918. (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_D5.0mm_P2.50mm.wrl
  2919. (at (xyz 0 0 0))
  2920. (scale (xyz 1 1 1))
  2921. (rotate (xyz 0 0 0))
  2922. )
  2923. )
  2924. (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59A6ED76)
  2925. (at 143.51 121.92 90)
  2926. (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
  2927. (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
  2928. (path /599EAAF9)
  2929. (fp_text reference R1 (at 3.81 -2.31 90) (layer F.SilkS)
  2930. (effects (font (size 1 1) (thickness 0.15)))
  2931. )
  2932. (fp_text value 100 (at 3.81 2.31 90) (layer F.Fab)
  2933. (effects (font (size 1 1) (thickness 0.15)))
  2934. )
  2935. (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
  2936. (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
  2937. (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
  2938. (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
  2939. (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
  2940. (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
  2941. (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
  2942. (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
  2943. (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
  2944. (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
  2945. (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
  2946. (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
  2947. (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
  2948. (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
  2949. (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
  2950. (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
  2951. (pad 1 thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2952. (net 35 "Net-(J2-Pad3)"))
  2953. (pad 2 thru_hole oval (at 7.62 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2954. (net 10 ARD_GND))
  2955. (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
  2956. (at (xyz 0 0 0))
  2957. (scale (xyz 0.3937 0.3937 0.3937))
  2958. (rotate (xyz 0 0 0))
  2959. )
  2960. )
  2961. (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59A6ED8C)
  2962. (at 69.85 66.04 180)
  2963. (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
  2964. (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
  2965. (path /59498AA5/59A6DA9F)
  2966. (fp_text reference R2 (at 3.81 0 180) (layer F.SilkS)
  2967. (effects (font (size 1 1) (thickness 0.15)))
  2968. )
  2969. (fp_text value 180 (at 3.81 2.31 180) (layer F.Fab)
  2970. (effects (font (size 1 1) (thickness 0.15)))
  2971. )
  2972. (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
  2973. (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
  2974. (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
  2975. (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
  2976. (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
  2977. (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
  2978. (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
  2979. (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
  2980. (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
  2981. (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
  2982. (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
  2983. (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
  2984. (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
  2985. (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
  2986. (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
  2987. (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
  2988. (pad 1 thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2989. (net 16 ARD_PWM_A))
  2990. (pad 2 thru_hole oval (at 7.62 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2991. (net 20 "Net-(C25-Pad1)"))
  2992. (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
  2993. (at (xyz 0 0 0))
  2994. (scale (xyz 0.3937 0.3937 0.3937))
  2995. (rotate (xyz 0 0 0))
  2996. )
  2997. )
  2998. (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59A6EDB4)
  2999. (at 64.77 101.6 180)
  3000. (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
  3001. (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
  3002. (path /59A7109E/59A6DA9F)
  3003. (fp_text reference R4 (at 3.81 -2.31 180) (layer F.SilkS)
  3004. (effects (font (size 1 1) (thickness 0.15)))
  3005. )
  3006. (fp_text value 180 (at 3.81 2.31 180) (layer F.Fab)
  3007. (effects (font (size 1 1) (thickness 0.15)))
  3008. )
  3009. (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
  3010. (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
  3011. (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
  3012. (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
  3013. (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
  3014. (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
  3015. (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
  3016. (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
  3017. (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
  3018. (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
  3019. (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
  3020. (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
  3021. (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
  3022. (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
  3023. (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
  3024. (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
  3025. (pad 1 thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3026. (net 17 ARD_PWM_B))
  3027. (pad 2 thru_hole oval (at 7.62 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3028. (net 21 "Net-(C26-Pad1)"))
  3029. (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
  3030. (at (xyz 0 0 0))
  3031. (scale (xyz 0.3937 0.3937 0.3937))
  3032. (rotate (xyz 0 0 0))
  3033. )
  3034. )
  3035. (module Mounting_Holes:MountingHole_4.3mm_M4 (layer F.Cu) (tedit 59A7ED08) (tstamp 59A7F0E0)
  3036. (at 54.61 39.37)
  3037. (descr "Mounting Hole 4.3mm, no annular, M4")
  3038. (tags "mounting hole 4.3mm no annular m4")
  3039. (fp_text reference "" (at 0 -5.3) (layer F.SilkS)
  3040. (effects (font (size 1 1) (thickness 0.15)))
  3041. )
  3042. (fp_text value MountingHole_4.3mm_M4 (at 0 5.3) (layer F.Fab)
  3043. (effects (font (size 1 1) (thickness 0.15)))
  3044. )
  3045. (fp_circle (center 0 0) (end 4.3 0) (layer Cmts.User) (width 0.15))
  3046. (fp_circle (center 0 0) (end 4.55 0) (layer F.CrtYd) (width 0.05))
  3047. (pad 1 np_thru_hole circle (at 0 0) (size 4.3 4.3) (drill 4.3) (layers *.Cu *.Mask))
  3048. )
  3049. (module Capacitors_THT:CP_Radial_Tantal_D4.5mm_P2.50mm (layer F.Cu) (tedit 597C781B) (tstamp 59EF669F)
  3050. (at 94.02 60.96)
  3051. (descr "CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf")
  3052. (tags "CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor")
  3053. (path /59498AA5/59EF0ED7)
  3054. (fp_text reference C17 (at 1.25 -3.56) (layer F.SilkS)
  3055. (effects (font (size 1 1) (thickness 0.15)))
  3056. )
  3057. (fp_text value 100nF (at 1.25 3.56) (layer F.Fab)
  3058. (effects (font (size 1 1) (thickness 0.15)))
  3059. )
  3060. (fp_arc (start 1.25 0) (end -0.770693 -1.18) (angle 119.4) (layer F.SilkS) (width 0.12))
  3061. (fp_arc (start 1.25 0) (end -0.770693 1.18) (angle -119.4) (layer F.SilkS) (width 0.12))
  3062. (fp_arc (start 1.25 0) (end 3.270693 -1.18) (angle 60.6) (layer F.SilkS) (width 0.12))
  3063. (fp_circle (center 1.25 0) (end 3.5 0) (layer F.Fab) (width 0.1))
  3064. (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
  3065. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
  3066. (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
  3067. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
  3068. (fp_line (start -1.35 -2.6) (end -1.35 2.6) (layer F.CrtYd) (width 0.05))
  3069. (fp_line (start -1.35 2.6) (end 3.85 2.6) (layer F.CrtYd) (width 0.05))
  3070. (fp_line (start 3.85 2.6) (end 3.85 -2.6) (layer F.CrtYd) (width 0.05))
  3071. (fp_line (start 3.85 -2.6) (end -1.35 -2.6) (layer F.CrtYd) (width 0.05))
  3072. (fp_text user %R (at 1.25 0) (layer F.Fab)
  3073. (effects (font (size 1 1) (thickness 0.15)))
  3074. )
  3075. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3076. (net 12 "Net-(C17-Pad1)"))
  3077. (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3078. (net 24 GND_ISO_1))
  3079. (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D4.5mm_P2.50mm.wrl
  3080. (at (xyz 0 0 0))
  3081. (scale (xyz 1 1 1))
  3082. (rotate (xyz 0 0 0))
  3083. )
  3084. )
  3085. (module Capacitors_THT:CP_Radial_Tantal_D4.5mm_P2.50mm (layer F.Cu) (tedit 597C781B) (tstamp 59EF66B2)
  3086. (at 94.02 53.34)
  3087. (descr "CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf")
  3088. (tags "CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor")
  3089. (path /59498AA5/59EF1DD4)
  3090. (fp_text reference C18 (at 1.25 -3.56) (layer F.SilkS)
  3091. (effects (font (size 1 1) (thickness 0.15)))
  3092. )
  3093. (fp_text value 100nF (at 1.25 3.56) (layer F.Fab)
  3094. (effects (font (size 1 1) (thickness 0.15)))
  3095. )
  3096. (fp_arc (start 1.25 0) (end -0.770693 -1.18) (angle 119.4) (layer F.SilkS) (width 0.12))
  3097. (fp_arc (start 1.25 0) (end -0.770693 1.18) (angle -119.4) (layer F.SilkS) (width 0.12))
  3098. (fp_arc (start 1.25 0) (end 3.270693 -1.18) (angle 60.6) (layer F.SilkS) (width 0.12))
  3099. (fp_circle (center 1.25 0) (end 3.5 0) (layer F.Fab) (width 0.1))
  3100. (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
  3101. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
  3102. (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
  3103. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
  3104. (fp_line (start -1.35 -2.6) (end -1.35 2.6) (layer F.CrtYd) (width 0.05))
  3105. (fp_line (start -1.35 2.6) (end 3.85 2.6) (layer F.CrtYd) (width 0.05))
  3106. (fp_line (start 3.85 2.6) (end 3.85 -2.6) (layer F.CrtYd) (width 0.05))
  3107. (fp_line (start 3.85 -2.6) (end -1.35 -2.6) (layer F.CrtYd) (width 0.05))
  3108. (fp_text user %R (at 1.25 0) (layer F.Fab)
  3109. (effects (font (size 1 1) (thickness 0.15)))
  3110. )
  3111. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3112. (net 1 "Net-(C1-Pad1)"))
  3113. (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3114. (net 24 GND_ISO_1))
  3115. (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D4.5mm_P2.50mm.wrl
  3116. (at (xyz 0 0 0))
  3117. (scale (xyz 1 1 1))
  3118. (rotate (xyz 0 0 0))
  3119. )
  3120. )
  3121. (module Capacitors_THT:CP_Radial_Tantal_D4.5mm_P2.50mm (layer F.Cu) (tedit 597C781B) (tstamp 59EF66C5)
  3122. (at 94.02 99.06)
  3123. (descr "CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf")
  3124. (tags "CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor")
  3125. (path /59A7109E/59EF0ED7)
  3126. (fp_text reference C19 (at 1.25 -3.56) (layer F.SilkS)
  3127. (effects (font (size 1 1) (thickness 0.15)))
  3128. )
  3129. (fp_text value 100nF (at 1.25 3.56) (layer F.Fab)
  3130. (effects (font (size 1 1) (thickness 0.15)))
  3131. )
  3132. (fp_arc (start 1.25 0) (end -0.770693 -1.18) (angle 119.4) (layer F.SilkS) (width 0.12))
  3133. (fp_arc (start 1.25 0) (end -0.770693 1.18) (angle -119.4) (layer F.SilkS) (width 0.12))
  3134. (fp_arc (start 1.25 0) (end 3.270693 -1.18) (angle 60.6) (layer F.SilkS) (width 0.12))
  3135. (fp_circle (center 1.25 0) (end 3.5 0) (layer F.Fab) (width 0.1))
  3136. (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
  3137. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
  3138. (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
  3139. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
  3140. (fp_line (start -1.35 -2.6) (end -1.35 2.6) (layer F.CrtYd) (width 0.05))
  3141. (fp_line (start -1.35 2.6) (end 3.85 2.6) (layer F.CrtYd) (width 0.05))
  3142. (fp_line (start 3.85 2.6) (end 3.85 -2.6) (layer F.CrtYd) (width 0.05))
  3143. (fp_line (start 3.85 -2.6) (end -1.35 -2.6) (layer F.CrtYd) (width 0.05))
  3144. (fp_text user %R (at 1.25 0) (layer F.Fab)
  3145. (effects (font (size 1 1) (thickness 0.15)))
  3146. )
  3147. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3148. (net 13 "Net-(C19-Pad1)"))
  3149. (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3150. (net 26 GND_ISO_2))
  3151. (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D4.5mm_P2.50mm.wrl
  3152. (at (xyz 0 0 0))
  3153. (scale (xyz 1 1 1))
  3154. (rotate (xyz 0 0 0))
  3155. )
  3156. )
  3157. (module Capacitors_THT:CP_Radial_Tantal_D4.5mm_P2.50mm (layer F.Cu) (tedit 597C781B) (tstamp 59EF66D8)
  3158. (at 93.98 91.44)
  3159. (descr "CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf")
  3160. (tags "CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor")
  3161. (path /59A7109E/59EF1DD4)
  3162. (fp_text reference C20 (at 1.25 -3.56) (layer F.SilkS)
  3163. (effects (font (size 1 1) (thickness 0.15)))
  3164. )
  3165. (fp_text value 100nF (at 1.25 3.56) (layer F.Fab)
  3166. (effects (font (size 1 1) (thickness 0.15)))
  3167. )
  3168. (fp_arc (start 1.25 0) (end -0.770693 -1.18) (angle 119.4) (layer F.SilkS) (width 0.12))
  3169. (fp_arc (start 1.25 0) (end -0.770693 1.18) (angle -119.4) (layer F.SilkS) (width 0.12))
  3170. (fp_arc (start 1.25 0) (end 3.270693 -1.18) (angle 60.6) (layer F.SilkS) (width 0.12))
  3171. (fp_circle (center 1.25 0) (end 3.5 0) (layer F.Fab) (width 0.1))
  3172. (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
  3173. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
  3174. (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
  3175. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
  3176. (fp_line (start -1.35 -2.6) (end -1.35 2.6) (layer F.CrtYd) (width 0.05))
  3177. (fp_line (start -1.35 2.6) (end 3.85 2.6) (layer F.CrtYd) (width 0.05))
  3178. (fp_line (start 3.85 2.6) (end 3.85 -2.6) (layer F.CrtYd) (width 0.05))
  3179. (fp_line (start 3.85 -2.6) (end -1.35 -2.6) (layer F.CrtYd) (width 0.05))
  3180. (fp_text user %R (at 1.25 0) (layer F.Fab)
  3181. (effects (font (size 1 1) (thickness 0.15)))
  3182. )
  3183. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3184. (net 11 "Net-(C20-Pad1)"))
  3185. (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3186. (net 26 GND_ISO_2))
  3187. (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D4.5mm_P2.50mm.wrl
  3188. (at (xyz 0 0 0))
  3189. (scale (xyz 1 1 1))
  3190. (rotate (xyz 0 0 0))
  3191. )
  3192. )
  3193. (module Capacitors_THT:CP_Radial_Tantal_D4.5mm_P2.50mm (layer F.Cu) (tedit 597C781B) (tstamp 59EF66EB)
  3194. (at 162.56 60.96)
  3195. (descr "CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf")
  3196. (tags "CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor")
  3197. (path /59A71299/59EF0ED7)
  3198. (fp_text reference C21 (at 1.25 -3.56) (layer F.SilkS)
  3199. (effects (font (size 1 1) (thickness 0.15)))
  3200. )
  3201. (fp_text value 100nF (at 1.25 3.56) (layer F.Fab)
  3202. (effects (font (size 1 1) (thickness 0.15)))
  3203. )
  3204. (fp_arc (start 1.25 0) (end -0.770693 -1.18) (angle 119.4) (layer F.SilkS) (width 0.12))
  3205. (fp_arc (start 1.25 0) (end -0.770693 1.18) (angle -119.4) (layer F.SilkS) (width 0.12))
  3206. (fp_arc (start 1.25 0) (end 3.270693 -1.18) (angle 60.6) (layer F.SilkS) (width 0.12))
  3207. (fp_circle (center 1.25 0) (end 3.5 0) (layer F.Fab) (width 0.1))
  3208. (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
  3209. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
  3210. (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
  3211. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
  3212. (fp_line (start -1.35 -2.6) (end -1.35 2.6) (layer F.CrtYd) (width 0.05))
  3213. (fp_line (start -1.35 2.6) (end 3.85 2.6) (layer F.CrtYd) (width 0.05))
  3214. (fp_line (start 3.85 2.6) (end 3.85 -2.6) (layer F.CrtYd) (width 0.05))
  3215. (fp_line (start 3.85 -2.6) (end -1.35 -2.6) (layer F.CrtYd) (width 0.05))
  3216. (fp_text user %R (at 1.25 0) (layer F.Fab)
  3217. (effects (font (size 1 1) (thickness 0.15)))
  3218. )
  3219. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3220. (net 14 "Net-(C21-Pad1)"))
  3221. (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3222. (net 28 GND_ISO_3))
  3223. (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D4.5mm_P2.50mm.wrl
  3224. (at (xyz 0 0 0))
  3225. (scale (xyz 1 1 1))
  3226. (rotate (xyz 0 0 0))
  3227. )
  3228. )
  3229. (module Capacitors_THT:CP_Radial_Tantal_D4.5mm_P2.50mm (layer F.Cu) (tedit 597C781B) (tstamp 59EF66FE)
  3230. (at 162.56 53.34)
  3231. (descr "CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf")
  3232. (tags "CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor")
  3233. (path /59A71299/59EF1DD4)
  3234. (fp_text reference C22 (at 1.25 -3.56) (layer F.SilkS)
  3235. (effects (font (size 1 1) (thickness 0.15)))
  3236. )
  3237. (fp_text value 100nF (at 1.25 3.56) (layer F.Fab)
  3238. (effects (font (size 1 1) (thickness 0.15)))
  3239. )
  3240. (fp_arc (start 1.25 0) (end -0.770693 -1.18) (angle 119.4) (layer F.SilkS) (width 0.12))
  3241. (fp_arc (start 1.25 0) (end -0.770693 1.18) (angle -119.4) (layer F.SilkS) (width 0.12))
  3242. (fp_arc (start 1.25 0) (end 3.270693 -1.18) (angle 60.6) (layer F.SilkS) (width 0.12))
  3243. (fp_circle (center 1.25 0) (end 3.5 0) (layer F.Fab) (width 0.1))
  3244. (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
  3245. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
  3246. (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
  3247. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
  3248. (fp_line (start -1.35 -2.6) (end -1.35 2.6) (layer F.CrtYd) (width 0.05))
  3249. (fp_line (start -1.35 2.6) (end 3.85 2.6) (layer F.CrtYd) (width 0.05))
  3250. (fp_line (start 3.85 2.6) (end 3.85 -2.6) (layer F.CrtYd) (width 0.05))
  3251. (fp_line (start 3.85 -2.6) (end -1.35 -2.6) (layer F.CrtYd) (width 0.05))
  3252. (fp_text user %R (at 1.25 0) (layer F.Fab)
  3253. (effects (font (size 1 1) (thickness 0.15)))
  3254. )
  3255. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3256. (net 2 "Net-(C10-Pad1)"))
  3257. (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3258. (net 28 GND_ISO_3))
  3259. (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D4.5mm_P2.50mm.wrl
  3260. (at (xyz 0 0 0))
  3261. (scale (xyz 1 1 1))
  3262. (rotate (xyz 0 0 0))
  3263. )
  3264. )
  3265. (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59EF678A)
  3266. (at 82.804 67.31 180)
  3267. (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
  3268. (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
  3269. (path /59498AA5/59EF0FC7)
  3270. (fp_text reference R10 (at 3.81 -2.31 180) (layer F.SilkS)
  3271. (effects (font (size 1 1) (thickness 0.15)))
  3272. )
  3273. (fp_text value R (at 3.81 2.31 180) (layer F.Fab)
  3274. (effects (font (size 1 1) (thickness 0.15)))
  3275. )
  3276. (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
  3277. (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
  3278. (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
  3279. (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
  3280. (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
  3281. (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
  3282. (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
  3283. (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
  3284. (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
  3285. (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
  3286. (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
  3287. (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
  3288. (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
  3289. (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
  3290. (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
  3291. (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
  3292. (pad 1 thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3293. (net 12 "Net-(C17-Pad1)"))
  3294. (pad 2 thru_hole oval (at 7.62 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3295. (net 4 "Net-(IC1-Pad2)"))
  3296. (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
  3297. (at (xyz 0 0 0))
  3298. (scale (xyz 0.3937 0.3937 0.3937))
  3299. (rotate (xyz 0 0 0))
  3300. )
  3301. )
  3302. (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59EF67A0)
  3303. (at 87.63 67.31)
  3304. (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
  3305. (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
  3306. (path /59498AA5/59EF1A58)
  3307. (fp_text reference R11 (at 3.81 -2.31) (layer F.SilkS)
  3308. (effects (font (size 1 1) (thickness 0.15)))
  3309. )
  3310. (fp_text value R (at 3.81 2.31) (layer F.Fab)
  3311. (effects (font (size 1 1) (thickness 0.15)))
  3312. )
  3313. (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
  3314. (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
  3315. (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
  3316. (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
  3317. (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
  3318. (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
  3319. (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
  3320. (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
  3321. (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
  3322. (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
  3323. (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
  3324. (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
  3325. (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
  3326. (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
  3327. (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
  3328. (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
  3329. (pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3330. (net 25 DRV_GATE_A))
  3331. (pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3332. (net 24 GND_ISO_1))
  3333. (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
  3334. (at (xyz 0 0 0))
  3335. (scale (xyz 0.3937 0.3937 0.3937))
  3336. (rotate (xyz 0 0 0))
  3337. )
  3338. )
  3339. (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59EF67B6)
  3340. (at 80.772 105.41 180)
  3341. (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
  3342. (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
  3343. (path /59A7109E/59EF0FC7)
  3344. (fp_text reference R12 (at 3.81 -2.31 180) (layer F.SilkS)
  3345. (effects (font (size 1 1) (thickness 0.15)))
  3346. )
  3347. (fp_text value R (at 3.81 2.31 180) (layer F.Fab)
  3348. (effects (font (size 1 1) (thickness 0.15)))
  3349. )
  3350. (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
  3351. (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
  3352. (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
  3353. (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
  3354. (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
  3355. (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
  3356. (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
  3357. (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
  3358. (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
  3359. (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
  3360. (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
  3361. (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
  3362. (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
  3363. (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
  3364. (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
  3365. (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
  3366. (pad 1 thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3367. (net 13 "Net-(C19-Pad1)"))
  3368. (pad 2 thru_hole oval (at 7.62 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3369. (net 5 "Net-(IC2-Pad2)"))
  3370. (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
  3371. (at (xyz 0 0 0))
  3372. (scale (xyz 0.3937 0.3937 0.3937))
  3373. (rotate (xyz 0 0 0))
  3374. )
  3375. )
  3376. (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59EF67CC)
  3377. (at 86.36 105.41)
  3378. (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
  3379. (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
  3380. (path /59A7109E/59EF1A58)
  3381. (fp_text reference R13 (at 3.81 -2.31) (layer F.SilkS)
  3382. (effects (font (size 1 1) (thickness 0.15)))
  3383. )
  3384. (fp_text value R (at 3.81 2.31) (layer F.Fab)
  3385. (effects (font (size 1 1) (thickness 0.15)))
  3386. )
  3387. (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
  3388. (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
  3389. (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
  3390. (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
  3391. (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
  3392. (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
  3393. (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
  3394. (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
  3395. (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
  3396. (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
  3397. (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
  3398. (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
  3399. (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
  3400. (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
  3401. (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
  3402. (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
  3403. (pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3404. (net 27 DRV_GATE_B))
  3405. (pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3406. (net 26 GND_ISO_2))
  3407. (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
  3408. (at (xyz 0 0 0))
  3409. (scale (xyz 0.3937 0.3937 0.3937))
  3410. (rotate (xyz 0 0 0))
  3411. )
  3412. )
  3413. (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59EF67E2)
  3414. (at 151.13 67.31 180)
  3415. (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
  3416. (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
  3417. (path /59A71299/59EF0FC7)
  3418. (fp_text reference R14 (at 3.81 -2.31 180) (layer F.SilkS)
  3419. (effects (font (size 1 1) (thickness 0.15)))
  3420. )
  3421. (fp_text value R (at 3.81 2.31 180) (layer F.Fab)
  3422. (effects (font (size 1 1) (thickness 0.15)))
  3423. )
  3424. (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
  3425. (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
  3426. (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
  3427. (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
  3428. (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
  3429. (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
  3430. (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
  3431. (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
  3432. (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
  3433. (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
  3434. (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
  3435. (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
  3436. (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
  3437. (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
  3438. (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
  3439. (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
  3440. (pad 1 thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3441. (net 14 "Net-(C21-Pad1)"))
  3442. (pad 2 thru_hole oval (at 7.62 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3443. (net 6 "Net-(IC3-Pad2)"))
  3444. (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
  3445. (at (xyz 0 0 0))
  3446. (scale (xyz 0.3937 0.3937 0.3937))
  3447. (rotate (xyz 0 0 0))
  3448. )
  3449. )
  3450. (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59EF67F8)
  3451. (at 156.21 67.31)
  3452. (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
  3453. (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
  3454. (path /59A71299/59EF1A58)
  3455. (fp_text reference R15 (at 3.81 -2.31) (layer F.SilkS)
  3456. (effects (font (size 1 1) (thickness 0.15)))
  3457. )
  3458. (fp_text value R (at 3.81 2.31) (layer F.Fab)
  3459. (effects (font (size 1 1) (thickness 0.15)))
  3460. )
  3461. (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
  3462. (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
  3463. (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
  3464. (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
  3465. (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
  3466. (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
  3467. (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
  3468. (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
  3469. (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
  3470. (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
  3471. (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
  3472. (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
  3473. (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
  3474. (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
  3475. (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
  3476. (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
  3477. (pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3478. (net 29 DRV_GATE_C))
  3479. (pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3480. (net 28 GND_ISO_3))
  3481. (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
  3482. (at (xyz 0 0 0))
  3483. (scale (xyz 0.3937 0.3937 0.3937))
  3484. (rotate (xyz 0 0 0))
  3485. )
  3486. )
  3487. (module Housings_DIP:DIP-6_W7.62mm (layer F.Cu) (tedit 59C78D6B) (tstamp 59EF683E)
  3488. (at 57.658 57.15)
  3489. (descr "6-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils)")
  3490. (tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil")
  3491. (path /59498AA5/59A6DAA6)
  3492. (fp_text reference U2 (at 3.81 -2.33) (layer F.SilkS)
  3493. (effects (font (size 1 1) (thickness 0.15)))
  3494. )
  3495. (fp_text value H11N1M (at 3.81 7.41) (layer F.Fab)
  3496. (effects (font (size 1 1) (thickness 0.15)))
  3497. )
  3498. (fp_arc (start 3.81 -1.33) (end 2.81 -1.33) (angle -180) (layer F.SilkS) (width 0.12))
  3499. (fp_line (start 1.635 -1.27) (end 6.985 -1.27) (layer F.Fab) (width 0.1))
  3500. (fp_line (start 6.985 -1.27) (end 6.985 6.35) (layer F.Fab) (width 0.1))
  3501. (fp_line (start 6.985 6.35) (end 0.635 6.35) (layer F.Fab) (width 0.1))
  3502. (fp_line (start 0.635 6.35) (end 0.635 -0.27) (layer F.Fab) (width 0.1))
  3503. (fp_line (start 0.635 -0.27) (end 1.635 -1.27) (layer F.Fab) (width 0.1))
  3504. (fp_line (start 2.81 -1.33) (end 1.16 -1.33) (layer F.SilkS) (width 0.12))
  3505. (fp_line (start 1.16 -1.33) (end 1.16 6.41) (layer F.SilkS) (width 0.12))
  3506. (fp_line (start 1.16 6.41) (end 6.46 6.41) (layer F.SilkS) (width 0.12))
  3507. (fp_line (start 6.46 6.41) (end 6.46 -1.33) (layer F.SilkS) (width 0.12))
  3508. (fp_line (start 6.46 -1.33) (end 4.81 -1.33) (layer F.SilkS) (width 0.12))
  3509. (fp_line (start -1.1 -1.55) (end -1.1 6.6) (layer F.CrtYd) (width 0.05))
  3510. (fp_line (start -1.1 6.6) (end 8.7 6.6) (layer F.CrtYd) (width 0.05))
  3511. (fp_line (start 8.7 6.6) (end 8.7 -1.55) (layer F.CrtYd) (width 0.05))
  3512. (fp_line (start 8.7 -1.55) (end -1.1 -1.55) (layer F.CrtYd) (width 0.05))
  3513. (fp_text user %R (at 3.81 2.54) (layer F.Fab)
  3514. (effects (font (size 1 1) (thickness 0.15)))
  3515. )
  3516. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3517. (net 20 "Net-(C25-Pad1)"))
  3518. (pad 4 thru_hole oval (at 7.62 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3519. (net 4 "Net-(IC1-Pad2)"))
  3520. (pad 2 thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3521. (net 10 ARD_GND))
  3522. (pad 5 thru_hole oval (at 7.62 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3523. (net 24 GND_ISO_1))
  3524. (pad 3 thru_hole oval (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask))
  3525. (pad 6 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3526. (net 12 "Net-(C17-Pad1)"))
  3527. (model ${KISYS3DMOD}/Housings_DIP.3dshapes/DIP-6_W7.62mm.wrl
  3528. (at (xyz 0 0 0))
  3529. (scale (xyz 1 1 1))
  3530. (rotate (xyz 0 0 0))
  3531. )
  3532. )
  3533. (module Housings_DIP:DIP-6_W7.62mm (layer F.Cu) (tedit 59C78D6B) (tstamp 59EF6858)
  3534. (at 57.658 93.218)
  3535. (descr "6-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils)")
  3536. (tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil")
  3537. (path /59A7109E/59A6DAA6)
  3538. (fp_text reference U4 (at 3.81 -2.33) (layer F.SilkS)
  3539. (effects (font (size 1 1) (thickness 0.15)))
  3540. )
  3541. (fp_text value H11N1M (at 3.81 7.41) (layer F.Fab)
  3542. (effects (font (size 1 1) (thickness 0.15)))
  3543. )
  3544. (fp_arc (start 3.81 -1.33) (end 2.81 -1.33) (angle -180) (layer F.SilkS) (width 0.12))
  3545. (fp_line (start 1.635 -1.27) (end 6.985 -1.27) (layer F.Fab) (width 0.1))
  3546. (fp_line (start 6.985 -1.27) (end 6.985 6.35) (layer F.Fab) (width 0.1))
  3547. (fp_line (start 6.985 6.35) (end 0.635 6.35) (layer F.Fab) (width 0.1))
  3548. (fp_line (start 0.635 6.35) (end 0.635 -0.27) (layer F.Fab) (width 0.1))
  3549. (fp_line (start 0.635 -0.27) (end 1.635 -1.27) (layer F.Fab) (width 0.1))
  3550. (fp_line (start 2.81 -1.33) (end 1.16 -1.33) (layer F.SilkS) (width 0.12))
  3551. (fp_line (start 1.16 -1.33) (end 1.16 6.41) (layer F.SilkS) (width 0.12))
  3552. (fp_line (start 1.16 6.41) (end 6.46 6.41) (layer F.SilkS) (width 0.12))
  3553. (fp_line (start 6.46 6.41) (end 6.46 -1.33) (layer F.SilkS) (width 0.12))
  3554. (fp_line (start 6.46 -1.33) (end 4.81 -1.33) (layer F.SilkS) (width 0.12))
  3555. (fp_line (start -1.1 -1.55) (end -1.1 6.6) (layer F.CrtYd) (width 0.05))
  3556. (fp_line (start -1.1 6.6) (end 8.7 6.6) (layer F.CrtYd) (width 0.05))
  3557. (fp_line (start 8.7 6.6) (end 8.7 -1.55) (layer F.CrtYd) (width 0.05))
  3558. (fp_line (start 8.7 -1.55) (end -1.1 -1.55) (layer F.CrtYd) (width 0.05))
  3559. (fp_text user %R (at 3.81 2.54) (layer F.Fab)
  3560. (effects (font (size 1 1) (thickness 0.15)))
  3561. )
  3562. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3563. (net 21 "Net-(C26-Pad1)"))
  3564. (pad 4 thru_hole oval (at 7.62 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3565. (net 5 "Net-(IC2-Pad2)"))
  3566. (pad 2 thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3567. (net 10 ARD_GND))
  3568. (pad 5 thru_hole oval (at 7.62 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3569. (net 26 GND_ISO_2))
  3570. (pad 3 thru_hole oval (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask))
  3571. (pad 6 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3572. (net 13 "Net-(C19-Pad1)"))
  3573. (model ${KISYS3DMOD}/Housings_DIP.3dshapes/DIP-6_W7.62mm.wrl
  3574. (at (xyz 0 0 0))
  3575. (scale (xyz 1 1 1))
  3576. (rotate (xyz 0 0 0))
  3577. )
  3578. )
  3579. (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59F0538A)
  3580. (at 71.12 47.244)
  3581. (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
  3582. (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
  3583. (path /59498AA5/59A6DAAD)
  3584. (fp_text reference R3 (at 3.81 -2.31) (layer F.SilkS)
  3585. (effects (font (size 1 1) (thickness 0.15)))
  3586. )
  3587. (fp_text value 3K (at 3.81 2.31) (layer F.Fab)
  3588. (effects (font (size 1 1) (thickness 0.15)))
  3589. )
  3590. (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
  3591. (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
  3592. (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
  3593. (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
  3594. (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
  3595. (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
  3596. (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
  3597. (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
  3598. (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
  3599. (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
  3600. (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
  3601. (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
  3602. (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
  3603. (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
  3604. (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
  3605. (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
  3606. (pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3607. (net 1 "Net-(C1-Pad1)"))
  3608. (pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3609. (net 12 "Net-(C17-Pad1)"))
  3610. (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
  3611. (at (xyz 0 0 0))
  3612. (scale (xyz 0.3937 0.3937 0.3937))
  3613. (rotate (xyz 0 0 0))
  3614. )
  3615. )
  3616. (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59F053A0)
  3617. (at 69.85 85.598)
  3618. (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
  3619. (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
  3620. (path /59A7109E/59A6DAAD)
  3621. (fp_text reference R5 (at 3.81 -2.31) (layer F.SilkS)
  3622. (effects (font (size 1 1) (thickness 0.15)))
  3623. )
  3624. (fp_text value 3K (at 3.81 2.31) (layer F.Fab)
  3625. (effects (font (size 1 1) (thickness 0.15)))
  3626. )
  3627. (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
  3628. (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
  3629. (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
  3630. (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
  3631. (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
  3632. (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
  3633. (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
  3634. (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
  3635. (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
  3636. (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
  3637. (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
  3638. (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
  3639. (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
  3640. (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
  3641. (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
  3642. (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
  3643. (pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3644. (net 11 "Net-(C20-Pad1)"))
  3645. (pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3646. (net 13 "Net-(C19-Pad1)"))
  3647. (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
  3648. (at (xyz 0 0 0))
  3649. (scale (xyz 0.3937 0.3937 0.3937))
  3650. (rotate (xyz 0 0 0))
  3651. )
  3652. )
  3653. (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59F053B6)
  3654. (at 138.43 47.752)
  3655. (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
  3656. (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
  3657. (path /59A71299/59A6DAAD)
  3658. (fp_text reference R7 (at 3.81 -2.31) (layer F.SilkS)
  3659. (effects (font (size 1 1) (thickness 0.15)))
  3660. )
  3661. (fp_text value 3K (at 3.81 2.31) (layer F.Fab)
  3662. (effects (font (size 1 1) (thickness 0.15)))
  3663. )
  3664. (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
  3665. (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
  3666. (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
  3667. (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
  3668. (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
  3669. (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
  3670. (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
  3671. (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
  3672. (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
  3673. (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
  3674. (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
  3675. (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
  3676. (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
  3677. (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
  3678. (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
  3679. (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
  3680. (pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3681. (net 2 "Net-(C10-Pad1)"))
  3682. (pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3683. (net 14 "Net-(C21-Pad1)"))
  3684. (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
  3685. (at (xyz 0 0 0))
  3686. (scale (xyz 0.3937 0.3937 0.3937))
  3687. (rotate (xyz 0 0 0))
  3688. )
  3689. )
  3690. (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59F05D37)
  3691. (at 134.366 65.532 180)
  3692. (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
  3693. (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
  3694. (path /59A71299/59A6DA9F)
  3695. (fp_text reference R6 (at 3.81 -0.254 180) (layer F.SilkS)
  3696. (effects (font (size 1 1) (thickness 0.15)))
  3697. )
  3698. (fp_text value 180 (at 3.81 2.31 180) (layer F.Fab)
  3699. (effects (font (size 1 1) (thickness 0.15)))
  3700. )
  3701. (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
  3702. (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
  3703. (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
  3704. (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
  3705. (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
  3706. (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
  3707. (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
  3708. (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
  3709. (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
  3710. (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
  3711. (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
  3712. (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
  3713. (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
  3714. (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
  3715. (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
  3716. (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
  3717. (pad 1 thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3718. (net 18 ARD_PWM_C))
  3719. (pad 2 thru_hole oval (at 7.62 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3720. (net 22 "Net-(C27-Pad1)"))
  3721. (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
  3722. (at (xyz 0 0 0))
  3723. (scale (xyz 0.3937 0.3937 0.3937))
  3724. (rotate (xyz 0 0 0))
  3725. )
  3726. )
  3727. (module Diodes_THT:D_T-1_P5.08mm_Horizontal (layer F.Cu) (tedit 5921392F) (tstamp 59F0CB1D)
  3728. (at 86.36 45.72)
  3729. (descr "D, T-1 series, Axial, Horizontal, pin pitch=5.08mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf")
  3730. (tags "D T-1 series Axial Horizontal pin pitch 5.08mm length 3.2mm diameter 2.6mm")
  3731. (path /59498AA5/59EF0E59)
  3732. (fp_text reference D1 (at 2.54 -2.36) (layer F.SilkS)
  3733. (effects (font (size 1 1) (thickness 0.15)))
  3734. )
  3735. (fp_text value D_Zener (at 2.54 2.36) (layer F.Fab)
  3736. (effects (font (size 1 1) (thickness 0.15)))
  3737. )
  3738. (fp_text user %R (at 2.54 0) (layer F.Fab)
  3739. (effects (font (size 1 1) (thickness 0.15)))
  3740. )
  3741. (fp_line (start 0.94 -1.3) (end 0.94 1.3) (layer F.Fab) (width 0.1))
  3742. (fp_line (start 0.94 1.3) (end 4.14 1.3) (layer F.Fab) (width 0.1))
  3743. (fp_line (start 4.14 1.3) (end 4.14 -1.3) (layer F.Fab) (width 0.1))
  3744. (fp_line (start 4.14 -1.3) (end 0.94 -1.3) (layer F.Fab) (width 0.1))
  3745. (fp_line (start 0 0) (end 0.94 0) (layer F.Fab) (width 0.1))
  3746. (fp_line (start 5.08 0) (end 4.14 0) (layer F.Fab) (width 0.1))
  3747. (fp_line (start 1.42 -1.3) (end 1.42 1.3) (layer F.Fab) (width 0.1))
  3748. (fp_line (start 0.88 -1.18) (end 0.88 -1.36) (layer F.SilkS) (width 0.12))
  3749. (fp_line (start 0.88 -1.36) (end 4.2 -1.36) (layer F.SilkS) (width 0.12))
  3750. (fp_line (start 4.2 -1.36) (end 4.2 -1.18) (layer F.SilkS) (width 0.12))
  3751. (fp_line (start 0.88 1.18) (end 0.88 1.36) (layer F.SilkS) (width 0.12))
  3752. (fp_line (start 0.88 1.36) (end 4.2 1.36) (layer F.SilkS) (width 0.12))
  3753. (fp_line (start 4.2 1.36) (end 4.2 1.18) (layer F.SilkS) (width 0.12))
  3754. (fp_line (start 1.42 -1.36) (end 1.42 1.36) (layer F.SilkS) (width 0.12))
  3755. (fp_line (start -1.25 -1.65) (end -1.25 1.65) (layer F.CrtYd) (width 0.05))
  3756. (fp_line (start -1.25 1.65) (end 6.35 1.65) (layer F.CrtYd) (width 0.05))
  3757. (fp_line (start 6.35 1.65) (end 6.35 -1.65) (layer F.CrtYd) (width 0.05))
  3758. (fp_line (start 6.35 -1.65) (end -1.25 -1.65) (layer F.CrtYd) (width 0.05))
  3759. (pad 1 thru_hole rect (at 0 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)
  3760. (net 12 "Net-(C17-Pad1)"))
  3761. (pad 2 thru_hole oval (at 5.08 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)
  3762. (net 24 GND_ISO_1))
  3763. (model ${KISYS3DMOD}/Diodes_THT.3dshapes/D_T-1_P5.08mm_Horizontal.wrl
  3764. (at (xyz 0 0 0))
  3765. (scale (xyz 0.393701 0.393701 0.393701))
  3766. (rotate (xyz 0 0 0))
  3767. )
  3768. )
  3769. (module Diodes_THT:D_T-1_P5.08mm_Horizontal (layer F.Cu) (tedit 5921392F) (tstamp 59F0CB36)
  3770. (at 90.17 83.82)
  3771. (descr "D, T-1 series, Axial, Horizontal, pin pitch=5.08mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf")
  3772. (tags "D T-1 series Axial Horizontal pin pitch 5.08mm length 3.2mm diameter 2.6mm")
  3773. (path /59A7109E/59EF0E59)
  3774. (fp_text reference D2 (at 2.54 -2.36) (layer F.SilkS)
  3775. (effects (font (size 1 1) (thickness 0.15)))
  3776. )
  3777. (fp_text value D_Zener (at 2.54 2.36) (layer F.Fab)
  3778. (effects (font (size 1 1) (thickness 0.15)))
  3779. )
  3780. (fp_text user %R (at 2.54 0) (layer F.Fab)
  3781. (effects (font (size 1 1) (thickness 0.15)))
  3782. )
  3783. (fp_line (start 0.94 -1.3) (end 0.94 1.3) (layer F.Fab) (width 0.1))
  3784. (fp_line (start 0.94 1.3) (end 4.14 1.3) (layer F.Fab) (width 0.1))
  3785. (fp_line (start 4.14 1.3) (end 4.14 -1.3) (layer F.Fab) (width 0.1))
  3786. (fp_line (start 4.14 -1.3) (end 0.94 -1.3) (layer F.Fab) (width 0.1))
  3787. (fp_line (start 0 0) (end 0.94 0) (layer F.Fab) (width 0.1))
  3788. (fp_line (start 5.08 0) (end 4.14 0) (layer F.Fab) (width 0.1))
  3789. (fp_line (start 1.42 -1.3) (end 1.42 1.3) (layer F.Fab) (width 0.1))
  3790. (fp_line (start 0.88 -1.18) (end 0.88 -1.36) (layer F.SilkS) (width 0.12))
  3791. (fp_line (start 0.88 -1.36) (end 4.2 -1.36) (layer F.SilkS) (width 0.12))
  3792. (fp_line (start 4.2 -1.36) (end 4.2 -1.18) (layer F.SilkS) (width 0.12))
  3793. (fp_line (start 0.88 1.18) (end 0.88 1.36) (layer F.SilkS) (width 0.12))
  3794. (fp_line (start 0.88 1.36) (end 4.2 1.36) (layer F.SilkS) (width 0.12))
  3795. (fp_line (start 4.2 1.36) (end 4.2 1.18) (layer F.SilkS) (width 0.12))
  3796. (fp_line (start 1.42 -1.36) (end 1.42 1.36) (layer F.SilkS) (width 0.12))
  3797. (fp_line (start -1.25 -1.65) (end -1.25 1.65) (layer F.CrtYd) (width 0.05))
  3798. (fp_line (start -1.25 1.65) (end 6.35 1.65) (layer F.CrtYd) (width 0.05))
  3799. (fp_line (start 6.35 1.65) (end 6.35 -1.65) (layer F.CrtYd) (width 0.05))
  3800. (fp_line (start 6.35 -1.65) (end -1.25 -1.65) (layer F.CrtYd) (width 0.05))
  3801. (pad 1 thru_hole rect (at 0 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)
  3802. (net 13 "Net-(C19-Pad1)"))
  3803. (pad 2 thru_hole oval (at 5.08 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)
  3804. (net 26 GND_ISO_2))
  3805. (model ${KISYS3DMOD}/Diodes_THT.3dshapes/D_T-1_P5.08mm_Horizontal.wrl
  3806. (at (xyz 0 0 0))
  3807. (scale (xyz 0.393701 0.393701 0.393701))
  3808. (rotate (xyz 0 0 0))
  3809. )
  3810. )
  3811. (module Diodes_THT:D_T-1_P5.08mm_Horizontal (layer F.Cu) (tedit 5921392F) (tstamp 59F0CB4F)
  3812. (at 156.21 45.72)
  3813. (descr "D, T-1 series, Axial, Horizontal, pin pitch=5.08mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf")
  3814. (tags "D T-1 series Axial Horizontal pin pitch 5.08mm length 3.2mm diameter 2.6mm")
  3815. (path /59A71299/59EF0E59)
  3816. (fp_text reference D3 (at 2.54 -2.36) (layer F.SilkS)
  3817. (effects (font (size 1 1) (thickness 0.15)))
  3818. )
  3819. (fp_text value D_Zener (at 2.54 2.36) (layer F.Fab)
  3820. (effects (font (size 1 1) (thickness 0.15)))
  3821. )
  3822. (fp_text user %R (at 2.54 0) (layer F.Fab)
  3823. (effects (font (size 1 1) (thickness 0.15)))
  3824. )
  3825. (fp_line (start 0.94 -1.3) (end 0.94 1.3) (layer F.Fab) (width 0.1))
  3826. (fp_line (start 0.94 1.3) (end 4.14 1.3) (layer F.Fab) (width 0.1))
  3827. (fp_line (start 4.14 1.3) (end 4.14 -1.3) (layer F.Fab) (width 0.1))
  3828. (fp_line (start 4.14 -1.3) (end 0.94 -1.3) (layer F.Fab) (width 0.1))
  3829. (fp_line (start 0 0) (end 0.94 0) (layer F.Fab) (width 0.1))
  3830. (fp_line (start 5.08 0) (end 4.14 0) (layer F.Fab) (width 0.1))
  3831. (fp_line (start 1.42 -1.3) (end 1.42 1.3) (layer F.Fab) (width 0.1))
  3832. (fp_line (start 0.88 -1.18) (end 0.88 -1.36) (layer F.SilkS) (width 0.12))
  3833. (fp_line (start 0.88 -1.36) (end 4.2 -1.36) (layer F.SilkS) (width 0.12))
  3834. (fp_line (start 4.2 -1.36) (end 4.2 -1.18) (layer F.SilkS) (width 0.12))
  3835. (fp_line (start 0.88 1.18) (end 0.88 1.36) (layer F.SilkS) (width 0.12))
  3836. (fp_line (start 0.88 1.36) (end 4.2 1.36) (layer F.SilkS) (width 0.12))
  3837. (fp_line (start 4.2 1.36) (end 4.2 1.18) (layer F.SilkS) (width 0.12))
  3838. (fp_line (start 1.42 -1.36) (end 1.42 1.36) (layer F.SilkS) (width 0.12))
  3839. (fp_line (start -1.25 -1.65) (end -1.25 1.65) (layer F.CrtYd) (width 0.05))
  3840. (fp_line (start -1.25 1.65) (end 6.35 1.65) (layer F.CrtYd) (width 0.05))
  3841. (fp_line (start 6.35 1.65) (end 6.35 -1.65) (layer F.CrtYd) (width 0.05))
  3842. (fp_line (start 6.35 -1.65) (end -1.25 -1.65) (layer F.CrtYd) (width 0.05))
  3843. (pad 1 thru_hole rect (at 0 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)
  3844. (net 14 "Net-(C21-Pad1)"))
  3845. (pad 2 thru_hole oval (at 5.08 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)
  3846. (net 28 GND_ISO_3))
  3847. (model ${KISYS3DMOD}/Diodes_THT.3dshapes/D_T-1_P5.08mm_Horizontal.wrl
  3848. (at (xyz 0 0 0))
  3849. (scale (xyz 0.393701 0.393701 0.393701))
  3850. (rotate (xyz 0 0 0))
  3851. )
  3852. )
  3853. (module Capacitors_THT:CP_Radial_Tantal_D4.5mm_P2.50mm (layer F.Cu) (tedit 597C781B) (tstamp 5A16CB4D)
  3854. (at 64.81 69.85)
  3855. (descr "CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf")
  3856. (tags "CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor")
  3857. (path /59498AA5/5A16CD08)
  3858. (fp_text reference C25 (at 5.548 0.762) (layer F.SilkS)
  3859. (effects (font (size 1 1) (thickness 0.15)))
  3860. )
  3861. (fp_text value 100nF (at 1.25 3.56) (layer F.Fab)
  3862. (effects (font (size 1 1) (thickness 0.15)))
  3863. )
  3864. (fp_arc (start 1.25 0) (end -0.770693 -1.18) (angle 119.4) (layer F.SilkS) (width 0.12))
  3865. (fp_arc (start 1.25 0) (end -0.770693 1.18) (angle -119.4) (layer F.SilkS) (width 0.12))
  3866. (fp_arc (start 1.25 0) (end 3.270693 -1.18) (angle 60.6) (layer F.SilkS) (width 0.12))
  3867. (fp_circle (center 1.25 0) (end 3.5 0) (layer F.Fab) (width 0.1))
  3868. (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
  3869. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
  3870. (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
  3871. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
  3872. (fp_line (start -1.35 -2.6) (end -1.35 2.6) (layer F.CrtYd) (width 0.05))
  3873. (fp_line (start -1.35 2.6) (end 3.85 2.6) (layer F.CrtYd) (width 0.05))
  3874. (fp_line (start 3.85 2.6) (end 3.85 -2.6) (layer F.CrtYd) (width 0.05))
  3875. (fp_line (start 3.85 -2.6) (end -1.35 -2.6) (layer F.CrtYd) (width 0.05))
  3876. (fp_text user %R (at 1.25 0) (layer F.Fab)
  3877. (effects (font (size 1 1) (thickness 0.15)))
  3878. )
  3879. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3880. (net 20 "Net-(C25-Pad1)"))
  3881. (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3882. (net 16 ARD_PWM_A))
  3883. (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D4.5mm_P2.50mm.wrl
  3884. (at (xyz 0 0 0))
  3885. (scale (xyz 1 1 1))
  3886. (rotate (xyz 0 0 0))
  3887. )
  3888. )
  3889. (module Capacitors_THT:CP_Radial_Tantal_D4.5mm_P2.50mm (layer F.Cu) (tedit 597C781B) (tstamp 5A16CB60)
  3890. (at 59.73 106.68)
  3891. (descr "CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf")
  3892. (tags "CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor")
  3893. (path /59A7109E/5A16CD08)
  3894. (fp_text reference C26 (at 1.25 -3.56) (layer F.SilkS)
  3895. (effects (font (size 1 1) (thickness 0.15)))
  3896. )
  3897. (fp_text value 100nF (at 1.25 3.56) (layer F.Fab)
  3898. (effects (font (size 1 1) (thickness 0.15)))
  3899. )
  3900. (fp_arc (start 1.25 0) (end -0.770693 -1.18) (angle 119.4) (layer F.SilkS) (width 0.12))
  3901. (fp_arc (start 1.25 0) (end -0.770693 1.18) (angle -119.4) (layer F.SilkS) (width 0.12))
  3902. (fp_arc (start 1.25 0) (end 3.270693 -1.18) (angle 60.6) (layer F.SilkS) (width 0.12))
  3903. (fp_circle (center 1.25 0) (end 3.5 0) (layer F.Fab) (width 0.1))
  3904. (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
  3905. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
  3906. (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
  3907. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
  3908. (fp_line (start -1.35 -2.6) (end -1.35 2.6) (layer F.CrtYd) (width 0.05))
  3909. (fp_line (start -1.35 2.6) (end 3.85 2.6) (layer F.CrtYd) (width 0.05))
  3910. (fp_line (start 3.85 2.6) (end 3.85 -2.6) (layer F.CrtYd) (width 0.05))
  3911. (fp_line (start 3.85 -2.6) (end -1.35 -2.6) (layer F.CrtYd) (width 0.05))
  3912. (fp_text user %R (at 1.25 0) (layer F.Fab)
  3913. (effects (font (size 1 1) (thickness 0.15)))
  3914. )
  3915. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3916. (net 21 "Net-(C26-Pad1)"))
  3917. (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3918. (net 17 ARD_PWM_B))
  3919. (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D4.5mm_P2.50mm.wrl
  3920. (at (xyz 0 0 0))
  3921. (scale (xyz 1 1 1))
  3922. (rotate (xyz 0 0 0))
  3923. )
  3924. )
  3925. (module Capacitors_THT:CP_Radial_Tantal_D4.5mm_P2.50mm (layer F.Cu) (tedit 597C781B) (tstamp 5A16CB73)
  3926. (at 129.58 69.85)
  3927. (descr "CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf")
  3928. (tags "CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor")
  3929. (path /59A71299/5A16CD08)
  3930. (fp_text reference C27 (at 6.818 -0.508) (layer F.SilkS)
  3931. (effects (font (size 1 1) (thickness 0.15)))
  3932. )
  3933. (fp_text value 100nF (at 1.25 3.56) (layer F.Fab)
  3934. (effects (font (size 1 1) (thickness 0.15)))
  3935. )
  3936. (fp_arc (start 1.25 0) (end -0.770693 -1.18) (angle 119.4) (layer F.SilkS) (width 0.12))
  3937. (fp_arc (start 1.25 0) (end -0.770693 1.18) (angle -119.4) (layer F.SilkS) (width 0.12))
  3938. (fp_arc (start 1.25 0) (end 3.270693 -1.18) (angle 60.6) (layer F.SilkS) (width 0.12))
  3939. (fp_circle (center 1.25 0) (end 3.5 0) (layer F.Fab) (width 0.1))
  3940. (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
  3941. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
  3942. (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
  3943. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
  3944. (fp_line (start -1.35 -2.6) (end -1.35 2.6) (layer F.CrtYd) (width 0.05))
  3945. (fp_line (start -1.35 2.6) (end 3.85 2.6) (layer F.CrtYd) (width 0.05))
  3946. (fp_line (start 3.85 2.6) (end 3.85 -2.6) (layer F.CrtYd) (width 0.05))
  3947. (fp_line (start 3.85 -2.6) (end -1.35 -2.6) (layer F.CrtYd) (width 0.05))
  3948. (fp_text user %R (at 1.25 0) (layer F.Fab)
  3949. (effects (font (size 1 1) (thickness 0.15)))
  3950. )
  3951. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3952. (net 22 "Net-(C27-Pad1)"))
  3953. (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3954. (net 18 ARD_PWM_C))
  3955. (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D4.5mm_P2.50mm.wrl
  3956. (at (xyz 0 0 0))
  3957. (scale (xyz 1 1 1))
  3958. (rotate (xyz 0 0 0))
  3959. )
  3960. )
  3961. (module PartsLibraries:Enertechnos_Logo (layer F.Cu) (tedit 5A3293B3) (tstamp 5A32B665)
  3962. (at 113.03 73.66)
  3963. (fp_text reference "" (at 0 0) (layer F.SilkS) hide
  3964. (effects (font (thickness 0.3)))
  3965. )
  3966. (fp_text value "" (at 0.75 0) (layer F.SilkS) hide
  3967. (effects (font (thickness 0.3)))
  3968. )
  3969. (fp_poly (pts (xy -18.701504 -1.149541) (xy -18.371343 -0.982841) (xy -18.076027 -0.708343) (xy -17.827689 -0.334111)
  3970. (xy -17.661616 0.075536) (xy -17.611494 0.402166) (xy -17.610666 0.677333) (xy -20.816179 0.677333)
  3971. (xy -20.740354 0.941721) (xy -20.544952 1.369882) (xy -20.238595 1.67537) (xy -19.819798 1.858534)
  3972. (xy -19.287077 1.919723) (xy -18.638948 1.859286) (xy -17.873925 1.677572) (xy -17.758833 1.642913)
  3973. (xy -17.645242 1.648029) (xy -17.610831 1.783207) (xy -17.610666 1.800764) (xy -17.627955 1.91201)
  3974. (xy -17.703341 1.99161) (xy -17.872107 2.060382) (xy -18.169536 2.139147) (xy -18.194281 2.145137)
  3975. (xy -18.834293 2.258061) (xy -19.432172 2.284065) (xy -19.951375 2.223856) (xy -20.305753 2.104328)
  3976. (xy -20.702519 1.828249) (xy -20.972368 1.450728) (xy -21.121445 0.961377) (xy -21.152517 0.673254)
  3977. (xy -21.149043 0.254) (xy -20.823809 0.254) (xy -18.057482 0.254) (xy -18.099008 0.036768)
  3978. (xy -18.219786 -0.23124) (xy -18.452236 -0.499678) (xy -18.745868 -0.720216) (xy -19.009736 -0.834963)
  3979. (xy -19.471697 -0.87845) (xy -19.918364 -0.777599) (xy -20.312003 -0.551131) (xy -20.614876 -0.217765)
  3980. (xy -20.735598 0.021166) (xy -20.823809 0.254) (xy -21.149043 0.254) (xy -21.148278 0.161746)
  3981. (xy -21.060439 -0.237172) (xy -20.874931 -0.565311) (xy -20.658742 -0.794193) (xy -20.227252 -1.077947)
  3982. (xy -19.728363 -1.234135) (xy -19.205354 -1.25919) (xy -18.701504 -1.149541)) (layer F.SilkS) (width 0.01))
  3983. (fp_poly (pts (xy -14.393338 -1.15731) (xy -14.38218 -1.152122) (xy -14.184995 -1.044277) (xy -14.037764 -0.917187)
  3984. (xy -13.933336 -0.745854) (xy -13.864561 -0.505285) (xy -13.824292 -0.170483) (xy -13.805376 0.283548)
  3985. (xy -13.800666 0.880896) (xy -13.801593 1.398147) (xy -13.806295 1.769998) (xy -13.817656 2.02038)
  3986. (xy -13.83856 2.173225) (xy -13.871892 2.252464) (xy -13.920536 2.282028) (xy -13.97 2.286)
  3987. (xy -14.037523 2.277064) (xy -14.08425 2.232756) (xy -14.114009 2.126822) (xy -14.13063 1.933008)
  3988. (xy -14.137942 1.625062) (xy -14.139775 1.17673) (xy -14.139805 1.121833) (xy -14.147405 0.516127)
  3989. (xy -14.172797 0.056508) (xy -14.220704 -0.279764) (xy -14.295848 -0.515432) (xy -14.402954 -0.673235)
  3990. (xy -14.532397 -0.768457) (xy -14.861187 -0.86167) (xy -15.272416 -0.853887) (xy -15.715121 -0.748405)
  3991. (xy -15.886871 -0.680805) (xy -16.147451 -0.562952) (xy -16.334671 -0.456426) (xy -16.460654 -0.33194)
  3992. (xy -16.537524 -0.160207) (xy -16.577402 0.088058) (xy -16.592412 0.442144) (xy -16.594677 0.931337)
  3993. (xy -16.594666 1.029122) (xy -16.595797 1.51431) (xy -16.601459 1.855452) (xy -16.61506 2.077831)
  3994. (xy -16.640005 2.206731) (xy -16.679702 2.267436) (xy -16.737555 2.28523) (xy -16.764 2.286)
  3995. (xy -16.820904 2.279462) (xy -16.863392 2.245481) (xy -16.893564 2.162502) (xy -16.913525 2.008971)
  3996. (xy -16.925377 1.763333) (xy -16.931223 1.404035) (xy -16.933166 0.909523) (xy -16.933333 0.550333)
  3997. (xy -16.932695 -0.032939) (xy -16.92938 -0.468433) (xy -16.921285 -0.777703) (xy -16.906306 -0.982302)
  3998. (xy -16.882341 -1.103786) (xy -16.847288 -1.163708) (xy -16.799043 -1.183622) (xy -16.764 -1.185334)
  3999. (xy -16.631535 -1.1361) (xy -16.594666 -0.972241) (xy -16.594666 -0.759148) (xy -16.151816 -0.983557)
  4000. (xy -15.696398 -1.158533) (xy -15.215969 -1.249202) (xy -14.763845 -1.250488) (xy -14.393338 -1.15731)) (layer F.SilkS) (width 0.01))
  4001. (fp_poly (pts (xy -11.137428 -1.24931) (xy -10.588627 -1.130337) (xy -10.137011 -0.876578) (xy -9.795145 -0.499922)
  4002. (xy -9.575599 -0.012258) (xy -9.513097 0.287396) (xy -9.45965 0.677333) (xy -12.718357 0.677333)
  4003. (xy -12.661216 0.905002) (xy -12.477929 1.32522) (xy -12.172419 1.635756) (xy -11.754401 1.833067)
  4004. (xy -11.233594 1.913609) (xy -10.619714 1.873839) (xy -10.2235 1.793917) (xy -9.919192 1.726391)
  4005. (xy -9.689857 1.689949) (xy -9.574128 1.690237) (xy -9.567333 1.698052) (xy -9.539912 1.830039)
  4006. (xy -9.521578 1.883386) (xy -9.564818 1.975729) (xy -9.744458 2.062704) (xy -10.027571 2.140185)
  4007. (xy -10.381228 2.204042) (xy -10.772501 2.250148) (xy -11.168463 2.274373) (xy -11.536184 2.272591)
  4008. (xy -11.842737 2.240672) (xy -12.010376 2.195411) (xy -12.452869 1.932319) (xy -12.791471 1.555027)
  4009. (xy -13.011395 1.093329) (xy -13.097855 0.577019) (xy -13.06189 0.208293) (xy -12.7 0.208293)
  4010. (xy -12.619993 0.223527) (xy -12.398607 0.236608) (xy -12.063788 0.24662) (xy -11.643486 0.252645)
  4011. (xy -11.307404 0.254) (xy -9.914808 0.254) (xy -10.0043 -0.002717) (xy -10.222965 -0.401204)
  4012. (xy -10.545224 -0.681607) (xy -10.946285 -0.836255) (xy -11.401357 -0.857475) (xy -11.885646 -0.737596)
  4013. (xy -12.085336 -0.646688) (xy -12.261408 -0.506352) (xy -12.449527 -0.285983) (xy -12.607793 -0.043864)
  4014. (xy -12.694302 0.16172) (xy -12.7 0.208293) (xy -13.06189 0.208293) (xy -13.051164 0.098333)
  4015. (xy -12.863705 -0.401083) (xy -12.54632 -0.793584) (xy -12.125592 -1.071972) (xy -11.837588 -1.198475)
  4016. (xy -11.589847 -1.256116) (xy -11.297273 -1.260167) (xy -11.137428 -1.24931)) (layer F.SilkS) (width 0.01))
  4017. (fp_poly (pts (xy -6.553794 -1.133588) (xy -6.551929 -1.132705) (xy -6.303105 -0.993248) (xy -6.205092 -0.872902)
  4018. (xy -6.244197 -0.750638) (xy -6.278404 -0.712644) (xy -6.374717 -0.65024) (xy -6.504159 -0.662309)
  4019. (xy -6.720064 -0.75519) (xy -6.74678 -0.768333) (xy -6.996371 -0.873925) (xy -7.201427 -0.896704)
  4020. (xy -7.458769 -0.847092) (xy -7.464524 -0.845587) (xy -7.784711 -0.731074) (xy -8.100831 -0.572848)
  4021. (xy -8.149166 -0.542821) (xy -8.466666 -0.336265) (xy -8.466666 2.286) (xy -8.89 2.286)
  4022. (xy -8.89 -1.185334) (xy -8.678333 -1.185334) (xy -8.511599 -1.144932) (xy -8.466666 -1.019896)
  4023. (xy -8.457311 -0.931578) (xy -8.404987 -0.906504) (xy -8.273303 -0.948071) (xy -8.025871 -1.059677)
  4024. (xy -8.022166 -1.061402) (xy -7.503155 -1.230682) (xy -7.003107 -1.255258) (xy -6.553794 -1.133588)) (layer F.SilkS) (width 0.01))
  4025. (fp_poly (pts (xy -4.876411 -2.074861) (xy -4.83698 -1.928164) (xy -4.826 -1.651) (xy -4.826 -1.185334)
  4026. (xy -3.725333 -1.185334) (xy -3.275992 -1.183898) (xy -2.968992 -1.176821) (xy -2.777348 -1.159953)
  4027. (xy -2.674075 -1.129141) (xy -2.632186 -1.080235) (xy -2.624666 -1.016) (xy -2.633957 -0.947043)
  4028. (xy -2.679767 -0.899867) (xy -2.789002 -0.870356) (xy -2.988571 -0.854397) (xy -3.30538 -0.847873)
  4029. (xy -3.731893 -0.846667) (xy -4.83912 -0.846667) (xy -4.811393 0.287718) (xy -4.79231 0.810748)
  4030. (xy -4.757748 1.192574) (xy -4.697522 1.46124) (xy -4.60145 1.644793) (xy -4.459347 1.771278)
  4031. (xy -4.26103 1.868741) (xy -4.233333 1.879677) (xy -3.895391 1.951039) (xy -3.475098 1.955765)
  4032. (xy -3.043947 1.897964) (xy -2.694954 1.791284) (xy -2.458612 1.695789) (xy -2.330856 1.670688)
  4033. (xy -2.267892 1.712523) (xy -2.247586 1.755982) (xy -2.271015 1.897507) (xy -2.431464 2.026148)
  4034. (xy -2.696704 2.134422) (xy -3.034509 2.214846) (xy -3.412649 2.259936) (xy -3.798898 2.262211)
  4035. (xy -4.161027 2.214187) (xy -4.191 2.207223) (xy -4.501096 2.110645) (xy -4.731349 1.976064)
  4036. (xy -4.892967 1.779489) (xy -4.997159 1.496931) (xy -5.055133 1.104401) (xy -5.078097 0.577907)
  4037. (xy -5.08 0.304436) (xy -5.08 -0.846667) (xy -5.588 -0.846667) (xy -5.871728 -0.852846)
  4038. (xy -6.02504 -0.879987) (xy -6.086661 -0.941) (xy -6.096 -1.016) (xy -6.077464 -1.110577)
  4039. (xy -5.99604 -1.161681) (xy -5.813002 -1.182221) (xy -5.588 -1.185334) (xy -5.08 -1.185334)
  4040. (xy -5.08 -1.651) (xy -5.068598 -1.931825) (xy -5.02859 -2.076406) (xy -4.953 -2.116667)
  4041. (xy -4.876411 -2.074861)) (layer F.SilkS) (width 0.01))
  4042. (fp_poly (pts (xy -0.093144 -1.175694) (xy 0.243098 -1.080118) (xy 0.554682 -0.887901) (xy 0.709348 -0.759703)
  4043. (xy 1.003579 -0.395635) (xy 1.142087 -0.061331) (xy 1.210424 0.162978) (xy 1.25028 0.32932)
  4044. (xy 1.24214 0.446315) (xy 1.166489 0.522582) (xy 1.003812 0.56674) (xy 0.734593 0.587408)
  4045. (xy 0.339319 0.593204) (xy -0.201527 0.592749) (xy -0.338666 0.592666) (xy -0.915739 0.593037)
  4046. (xy -1.343021 0.598279) (xy -1.640049 0.614586) (xy -1.826361 0.64815) (xy -1.921493 0.705165)
  4047. (xy -1.944984 0.791824) (xy -1.916369 0.914321) (xy -1.857027 1.073988) (xy -1.63735 1.441354)
  4048. (xy -1.300088 1.747945) (xy -1.148901 1.838446) (xy -0.871752 1.920789) (xy -0.483625 1.955328)
  4049. (xy -0.035875 1.942444) (xy 0.420142 1.882517) (xy 0.673396 1.824945) (xy 0.968178 1.751933)
  4050. (xy 1.129384 1.736649) (xy 1.183945 1.782869) (xy 1.159289 1.893082) (xy 1.044628 1.987572)
  4051. (xy 0.800743 2.076047) (xy 0.467745 2.152778) (xy 0.085743 2.212031) (xy -0.305153 2.248076)
  4052. (xy -0.664832 2.255182) (xy -0.953186 2.227616) (xy -1.035977 2.206773) (xy -1.524684 1.968942)
  4053. (xy -1.894842 1.619647) (xy -2.136455 1.177387) (xy -2.239528 0.66066) (xy -2.213967 0.338666)
  4054. (xy -1.96569 0.338666) (xy 0.949691 0.338666) (xy 0.891587 0.105833) (xy 0.744487 -0.224578)
  4055. (xy 0.498046 -0.538054) (xy 0.20713 -0.769357) (xy 0.118559 -0.813317) (xy -0.331682 -0.921366)
  4056. (xy -0.785499 -0.891061) (xy -1.208049 -0.738289) (xy -1.564485 -0.47894) (xy -1.819963 -0.128901)
  4057. (xy -1.908549 0.110997) (xy -1.96569 0.338666) (xy -2.213967 0.338666) (xy -2.194065 0.087963)
  4058. (xy -2.190372 0.070437) (xy -2.008373 -0.408684) (xy -1.699217 -0.786076) (xy -1.279969 -1.048744)
  4059. (xy -0.767694 -1.183694) (xy -0.522988 -1.19922) (xy -0.093144 -1.175694)) (layer F.SilkS) (width 0.01))
  4060. (fp_poly (pts (xy 4.07908 -1.177756) (xy 4.242728 -1.142615) (xy 4.465791 -1.041961) (xy 4.697355 -0.889031)
  4061. (xy 4.888349 -0.722396) (xy 4.989701 -0.58063) (xy 4.995334 -0.551022) (xy 4.944992 -0.404507)
  4062. (xy 4.811802 -0.388074) (xy 4.622512 -0.502726) (xy 4.586287 -0.535699) (xy 4.191358 -0.801532)
  4063. (xy 3.733711 -0.924027) (xy 3.246568 -0.899377) (xy 2.79573 -0.740834) (xy 2.387123 -0.448967)
  4064. (xy 2.121201 -0.07193) (xy 2.005521 0.374291) (xy 2.042626 0.852005) (xy 2.218597 1.316144)
  4065. (xy 2.509578 1.656168) (xy 2.914715 1.871452) (xy 3.433156 1.961369) (xy 3.558969 1.964266)
  4066. (xy 3.970562 1.934905) (xy 4.290355 1.829254) (xy 4.588351 1.620962) (xy 4.672779 1.54499)
  4067. (xy 4.892535 1.396391) (xy 5.046056 1.388503) (xy 5.123383 1.438655) (xy 5.102919 1.5212)
  4068. (xy 4.97228 1.674834) (xy 4.945277 1.703393) (xy 4.72554 1.903758) (xy 4.500256 2.064889)
  4069. (xy 4.46378 2.0853) (xy 4.192972 2.174333) (xy 3.823045 2.230928) (xy 3.421905 2.250526)
  4070. (xy 3.057455 2.228564) (xy 2.878667 2.191764) (xy 2.408008 1.967673) (xy 2.045413 1.622206)
  4071. (xy 1.804502 1.174536) (xy 1.698897 0.64384) (xy 1.695193 0.525793) (xy 1.769178 -0.011076)
  4072. (xy 1.993236 -0.471369) (xy 2.363388 -0.8488) (xy 2.696303 -1.054812) (xy 2.962473 -1.138065)
  4073. (xy 3.327217 -1.188893) (xy 3.722198 -1.203417) (xy 4.07908 -1.177756)) (layer F.SilkS) (width 0.01))
  4074. (fp_poly (pts (xy 16.246908 -1.102118) (xy 16.67969 -0.891641) (xy 17.024874 -0.57034) (xy 17.082238 -0.490087)
  4075. (xy 17.255007 -0.105048) (xy 17.343691 0.36306) (xy 17.340872 0.846324) (xy 17.266931 1.200694)
  4076. (xy 17.052838 1.594151) (xy 16.714477 1.910148) (xy 16.283895 2.136331) (xy 15.793141 2.260345)
  4077. (xy 15.274264 2.269837) (xy 14.779229 2.159667) (xy 14.350031 1.959204) (xy 14.038379 1.689491)
  4078. (xy 13.81567 1.34971) (xy 13.705387 1.104872) (xy 13.653226 0.870546) (xy 13.647143 0.574644)
  4079. (xy 13.650544 0.510471) (xy 13.950462 0.510471) (xy 14.025395 1.010757) (xy 14.242427 1.425498)
  4080. (xy 14.589908 1.740104) (xy 15.056188 1.939985) (xy 15.100994 1.951233) (xy 15.330465 2.001647)
  4081. (xy 15.498231 2.015426) (xy 15.683587 1.991522) (xy 15.915636 1.940462) (xy 16.390602 1.75626)
  4082. (xy 16.751348 1.453332) (xy 16.978254 1.063342) (xy 17.077476 0.599681) (xy 17.029047 0.164685)
  4083. (xy 16.854356 -0.223015) (xy 16.574786 -0.544787) (xy 16.211726 -0.781999) (xy 15.78656 -0.916018)
  4084. (xy 15.320675 -0.928212) (xy 14.838213 -0.801105) (xy 14.405931 -0.548496) (xy 14.118679 -0.209615)
  4085. (xy 13.972366 0.221584) (xy 13.950462 0.510471) (xy 13.650544 0.510471) (xy 13.656538 0.397421)
  4086. (xy 13.692254 0.049008) (xy 13.758611 -0.196475) (xy 13.87686 -0.40517) (xy 13.942193 -0.491579)
  4087. (xy 14.310181 -0.835463) (xy 14.758165 -1.068443) (xy 15.252627 -1.190535) (xy 15.760048 -1.201755)
  4088. (xy 16.246908 -1.102118)) (layer F.SilkS) (width 0.01))
  4089. (fp_poly (pts (xy 20.045139 -1.16623) (xy 20.522367 -1.054586) (xy 20.853651 -0.863018) (xy 20.899835 -0.817993)
  4090. (xy 21.019257 -0.669694) (xy 21.021468 -0.575436) (xy 20.965358 -0.516597) (xy 20.845681 -0.459361)
  4091. (xy 20.782759 -0.512705) (xy 20.611826 -0.660414) (xy 20.318819 -0.788817) (xy 19.950942 -0.882894)
  4092. (xy 19.555401 -0.927625) (xy 19.473334 -0.929343) (xy 18.988444 -0.892429) (xy 18.621608 -0.782724)
  4093. (xy 18.387671 -0.60686) (xy 18.30401 -0.407008) (xy 18.322765 -0.24418) (xy 18.43345 -0.111209)
  4094. (xy 18.655043 0.001323) (xy 19.006522 0.102835) (xy 19.506862 0.202745) (xy 19.546555 0.20968)
  4095. (xy 20.035063 0.300946) (xy 20.390031 0.385956) (xy 20.646278 0.476595) (xy 20.838622 0.584752)
  4096. (xy 20.976167 0.697731) (xy 21.12512 0.942259) (xy 21.171081 1.258824) (xy 21.11311 1.584341)
  4097. (xy 20.992682 1.807016) (xy 20.732646 2.016416) (xy 20.350842 2.167458) (xy 19.886602 2.253945)
  4098. (xy 19.379255 2.26968) (xy 18.868135 2.208465) (xy 18.698517 2.168494) (xy 18.323883 2.038792)
  4099. (xy 18.047049 1.88526) (xy 17.887709 1.724315) (xy 17.865559 1.572377) (xy 17.907676 1.509213)
  4100. (xy 17.999328 1.521939) (xy 18.195845 1.597683) (xy 18.427607 1.706768) (xy 18.724548 1.840502)
  4101. (xy 18.994821 1.914036) (xy 19.314203 1.943608) (xy 19.548765 1.947016) (xy 19.946888 1.932859)
  4102. (xy 20.228294 1.884745) (xy 20.443774 1.793518) (xy 20.462763 1.782214) (xy 20.740761 1.551643)
  4103. (xy 20.872598 1.302311) (xy 20.854149 1.058101) (xy 20.681291 0.842897) (xy 20.631079 0.807535)
  4104. (xy 20.477716 0.745784) (xy 20.197621 0.666644) (xy 19.831109 0.580454) (xy 19.432304 0.500107)
  4105. (xy 18.98287 0.412194) (xy 18.666466 0.336259) (xy 18.448455 0.26059) (xy 18.294198 0.173474)
  4106. (xy 18.18347 0.077829) (xy 17.992138 -0.213506) (xy 17.956655 -0.530755) (xy 18.03153 -0.757385)
  4107. (xy 18.206453 -0.926119) (xy 18.514176 -1.063267) (xy 18.919396 -1.157614) (xy 19.38681 -1.197947)
  4108. (xy 19.420033 -1.198448) (xy 20.045139 -1.16623)) (layer F.SilkS) (width 0.01))
  4109. (fp_poly (pts (xy 5.836275 -2.273776) (xy 5.885992 -2.216088) (xy 5.913172 -2.081414) (xy 5.924499 -1.838231)
  4110. (xy 5.926667 -1.487627) (xy 5.926667 -0.689254) (xy 6.2865 -0.88864) (xy 6.730863 -1.07377)
  4111. (xy 7.227646 -1.184223) (xy 7.701374 -1.205876) (xy 7.872973 -1.185522) (xy 8.148845 -1.114458)
  4112. (xy 8.359016 -1.001131) (xy 8.511951 -0.824424) (xy 8.616117 -0.563223) (xy 8.679981 -0.196413)
  4113. (xy 8.712008 0.297123) (xy 8.720667 0.928613) (xy 8.719561 1.417313) (xy 8.714016 1.761811)
  4114. (xy 8.700688 1.987235) (xy 8.676234 2.118714) (xy 8.637311 2.181375) (xy 8.580574 2.200348)
  4115. (xy 8.551334 2.201333) (xy 8.48727 2.19325) (xy 8.441789 2.152536) (xy 8.411718 2.054491)
  4116. (xy 8.393883 1.874413) (xy 8.385111 1.587605) (xy 8.382226 1.169365) (xy 8.382 0.883433)
  4117. (xy 8.376939 0.417715) (xy 8.362986 0.003868) (xy 8.341987 -0.324792) (xy 8.315788 -0.534948)
  4118. (xy 8.300569 -0.586621) (xy 8.106164 -0.781302) (xy 7.800657 -0.88919) (xy 7.418565 -0.909919)
  4119. (xy 6.994401 -0.843124) (xy 6.562682 -0.688439) (xy 6.404132 -0.60671) (xy 5.969 -0.360993)
  4120. (xy 5.945628 0.92017) (xy 5.935452 1.411065) (xy 5.923295 1.757629) (xy 5.905439 1.984858)
  4121. (xy 5.878168 2.117745) (xy 5.837766 2.181284) (xy 5.780516 2.20047) (xy 5.755128 2.201333)
  4122. (xy 5.704941 2.195513) (xy 5.665955 2.165409) (xy 5.636756 2.092059) (xy 5.615934 1.956498)
  4123. (xy 5.602074 1.739763) (xy 5.593765 1.422889) (xy 5.589594 0.986913) (xy 5.588148 0.41287)
  4124. (xy 5.588 -0.042334) (xy 5.588408 -0.715992) (xy 5.590586 -1.239288) (xy 5.595967 -1.631195)
  4125. (xy 5.605981 -1.910684) (xy 5.622062 -2.096728) (xy 5.64564 -2.208297) (xy 5.678147 -2.264364)
  4126. (xy 5.721016 -2.283901) (xy 5.757334 -2.286) (xy 5.836275 -2.273776)) (layer F.SilkS) (width 0.01))
  4127. (fp_poly (pts (xy 12.241041 -1.107502) (xy 12.546528 -0.920472) (xy 12.635459 -0.818866) (xy 12.707654 -0.705847)
  4128. (xy 12.76015 -0.580921) (xy 12.79691 -0.414662) (xy 12.821894 -0.17764) (xy 12.839067 0.159571)
  4129. (xy 12.852389 0.626399) (xy 12.856868 0.8255) (xy 12.867227 1.33606) (xy 12.870895 1.701567)
  4130. (xy 12.865265 1.946248) (xy 12.847726 2.094333) (xy 12.815669 2.170053) (xy 12.766484 2.197636)
  4131. (xy 12.708702 2.201333) (xy 12.641414 2.194839) (xy 12.593646 2.158864) (xy 12.562056 2.068665)
  4132. (xy 12.543304 1.8995) (xy 12.534052 1.626628) (xy 12.530958 1.225305) (xy 12.530667 0.882487)
  4133. (xy 12.530667 -0.436359) (xy 12.271857 -0.69517) (xy 12.11325 -0.840145) (xy 11.970599 -0.911596)
  4134. (xy 11.780528 -0.927438) (xy 11.515831 -0.908894) (xy 10.946904 -0.785485) (xy 10.568141 -0.622404)
  4135. (xy 10.117667 -0.381) (xy 10.094295 0.910166) (xy 10.084166 1.403257) (xy 10.072094 1.751923)
  4136. (xy 10.054408 1.981063) (xy 10.027432 2.115577) (xy 9.987494 2.180364) (xy 9.930919 2.200323)
  4137. (xy 9.903795 2.201333) (xy 9.847015 2.194243) (xy 9.804795 2.158435) (xy 9.774982 2.072102)
  4138. (xy 9.755426 1.913435) (xy 9.743973 1.660629) (xy 9.738471 1.291875) (xy 9.736768 0.785366)
  4139. (xy 9.736667 0.508) (xy 9.737333 -0.067184) (xy 9.740786 -0.494856) (xy 9.749207 -0.796834)
  4140. (xy 9.764779 -0.99494) (xy 9.789684 -1.110992) (xy 9.826104 -1.166811) (xy 9.87622 -1.184217)
  4141. (xy 9.906 -1.185334) (xy 10.031094 -1.144246) (xy 10.074029 -0.99265) (xy 10.075334 -0.937294)
  4142. (xy 10.075334 -0.689254) (xy 10.451004 -0.89922) (xy 10.91295 -1.097355) (xy 11.388864 -1.197246)
  4143. (xy 11.843357 -1.200194) (xy 12.241041 -1.107502)) (layer F.SilkS) (width 0.01))
  4144. )
  4145. (gr_text "MLI Power Module (Control Board) Rev 3.3" (at 52.07 119.38) (layer F.SilkS)
  4146. (effects (font (size 1 1) (thickness 0.2)) (justify left))
  4147. )
  4148. (gr_text "© Enertechnos Ltd. 2017" (at 163.83 121.92) (layer B.Cu) (tstamp 5A2E98E7)
  4149. (effects (font (size 1 1) (thickness 0.25)) (justify mirror))
  4150. )
  4151. (gr_text "© Enertechnos Ltd. 2017" (at 163.83 120.65) (layer F.Cu) (tstamp 5A2E98DD)
  4152. (effects (font (size 1 1) (thickness 0.25)))
  4153. )
  4154. (gr_line (start 172.72 74.93) (end 172.72 110.49) (layer F.SilkS) (width 0.2) (tstamp 59F22E2A))
  4155. (gr_text "Switch 4" (at 145.034 77.216) (layer F.SilkS)
  4156. (effects (font (size 1.5 1.5) (thickness 0.3)))
  4157. )
  4158. (gr_line (start 121.92 74.93) (end 172.72 74.93) (layer F.SilkS) (width 0.2) (tstamp 59F22E27))
  4159. (gr_line (start 172.72 110.49) (end 121.92 110.49) (layer F.SilkS) (width 0.2) (tstamp 59F22E29))
  4160. (gr_line (start 121.92 110.49) (end 121.92 74.93) (layer F.SilkS) (width 0.2) (tstamp 59F22E28))
  4161. (dimension 125.73 (width 0.3) (layer Dwgs.User)
  4162. (gr_text "125.730 mm" (at 112.395 24.050001) (layer Dwgs.User)
  4163. (effects (font (size 1.5 1.5) (thickness 0.3)))
  4164. )
  4165. (feature1 (pts (xy 49.53 34.29) (xy 49.53 22.700001)))
  4166. (feature2 (pts (xy 175.26 34.29) (xy 175.26 22.700001)))
  4167. (crossbar (pts (xy 175.26 25.400001) (xy 49.53 25.400001)))
  4168. (arrow1a (pts (xy 49.53 25.400001) (xy 50.656504 24.81358)))
  4169. (arrow1b (pts (xy 49.53 25.400001) (xy 50.656504 25.986422)))
  4170. (arrow2a (pts (xy 175.26 25.400001) (xy 174.133496 24.81358)))
  4171. (arrow2b (pts (xy 175.26 25.400001) (xy 174.133496 25.986422)))
  4172. )
  4173. (dimension 90.17 (width 0.3) (layer Dwgs.User)
  4174. (gr_text "90.170 mm" (at 186.77 79.375 270) (layer Dwgs.User)
  4175. (effects (font (size 1.5 1.5) (thickness 0.3)))
  4176. )
  4177. (feature1 (pts (xy 175.26 124.46) (xy 188.12 124.46)))
  4178. (feature2 (pts (xy 175.26 34.29) (xy 188.12 34.29)))
  4179. (crossbar (pts (xy 185.42 34.29) (xy 185.42 124.46)))
  4180. (arrow1a (pts (xy 185.42 124.46) (xy 184.833579 123.333496)))
  4181. (arrow1b (pts (xy 185.42 124.46) (xy 186.006421 123.333496)))
  4182. (arrow2a (pts (xy 185.42 34.29) (xy 184.833579 35.416504)))
  4183. (arrow2b (pts (xy 185.42 34.29) (xy 186.006421 35.416504)))
  4184. )
  4185. (gr_line (start 102.87 74.93) (end 102.87 110.49) (layer F.SilkS) (width 0.2) (tstamp 59F22E26))
  4186. (gr_line (start 102.87 110.49) (end 52.07 110.49) (layer F.SilkS) (width 0.2) (tstamp 59F22E25))
  4187. (gr_line (start 52.07 110.49) (end 52.07 74.93) (layer F.SilkS) (width 0.2) (tstamp 59F22E24))
  4188. (gr_line (start 52.07 74.93) (end 102.87 74.93) (layer F.SilkS) (width 0.2) (tstamp 59F22E23))
  4189. (gr_line (start 172.72 36.83) (end 172.72 72.39) (layer F.SilkS) (width 0.2) (tstamp 59F22E22))
  4190. (gr_line (start 172.72 72.39) (end 121.92 72.39) (layer F.SilkS) (width 0.2) (tstamp 59F22E21))
  4191. (gr_line (start 121.92 72.39) (end 121.92 36.83) (layer F.SilkS) (width 0.2) (tstamp 59F22E20))
  4192. (gr_line (start 121.92 36.83) (end 172.72 36.83) (layer F.SilkS) (width 0.2) (tstamp 59F22E1F))
  4193. (gr_line (start 52.07 72.39) (end 52.07 36.83) (layer F.SilkS) (width 0.2))
  4194. (gr_line (start 102.87 72.39) (end 52.07 72.39) (layer F.SilkS) (width 0.2))
  4195. (gr_line (start 102.87 36.83) (end 102.87 72.39) (layer F.SilkS) (width 0.2))
  4196. (gr_line (start 52.07 36.83) (end 102.87 36.83) (layer F.SilkS) (width 0.2))
  4197. (gr_line (start 49.53 124.46) (end 175.26 124.46) (layer Edge.Cuts) (width 0.15))
  4198. (gr_line (start 49.53 34.29) (end 49.53 124.46) (layer Edge.Cuts) (width 0.15))
  4199. (gr_line (start 175.26 34.29) (end 49.53 34.29) (layer Edge.Cuts) (width 0.15))
  4200. (dimension 68.58 (width 0.3) (layer Dwgs.User)
  4201. (gr_text "68.580 mm" (at 177.846292 73.66 90) (layer Dwgs.User)
  4202. (effects (font (size 1.5 1.5) (thickness 0.3)))
  4203. )
  4204. (feature1 (pts (xy 170.18 39.37) (xy 179.196292 39.37)))
  4205. (feature2 (pts (xy 170.18 107.95) (xy 179.196292 107.95)))
  4206. (crossbar (pts (xy 176.496292 107.95) (xy 176.496292 39.37)))
  4207. (arrow1a (pts (xy 176.496292 39.37) (xy 177.082713 40.496504)))
  4208. (arrow1b (pts (xy 176.496292 39.37) (xy 175.909871 40.496504)))
  4209. (arrow2a (pts (xy 176.496292 107.95) (xy 177.082713 106.823496)))
  4210. (arrow2b (pts (xy 176.496292 107.95) (xy 175.909871 106.823496)))
  4211. )
  4212. (dimension 115.57 (width 0.3) (layer Dwgs.User)
  4213. (gr_text "115.570 mm" (at 112.395 30.495205) (layer Dwgs.User)
  4214. (effects (font (size 1.5 1.5) (thickness 0.3)))
  4215. )
  4216. (feature1 (pts (xy 170.18 39.37) (xy 170.18 29.145205)))
  4217. (feature2 (pts (xy 54.61 39.37) (xy 54.61 29.145205)))
  4218. (crossbar (pts (xy 54.61 31.845205) (xy 170.18 31.845205)))
  4219. (arrow1a (pts (xy 170.18 31.845205) (xy 169.053496 32.431626)))
  4220. (arrow1b (pts (xy 170.18 31.845205) (xy 169.053496 31.258784)))
  4221. (arrow2a (pts (xy 54.61 31.845205) (xy 55.736504 32.431626)))
  4222. (arrow2b (pts (xy 54.61 31.845205) (xy 55.736504 31.258784)))
  4223. )
  4224. (gr_text "© Enertechnos Ltd. 2017" (at 52.07 121.92) (layer F.SilkS)
  4225. (effects (font (size 1 1) (thickness 0.2)) (justify left))
  4226. )
  4227. (gr_line (start 175.26 34.29) (end 175.26 124.46) (layer Edge.Cuts) (width 0.15))
  4228. (gr_text "Switch 2" (at 78.74 77.47) (layer F.SilkS)
  4229. (effects (font (size 1.5 1.5) (thickness 0.3)))
  4230. )
  4231. (gr_text "Switch 3" (at 142.24 39.37) (layer F.SilkS)
  4232. (effects (font (size 1.5 1.5) (thickness 0.3)))
  4233. )
  4234. (gr_text "Switch 1" (at 72.39 39.37) (layer F.SilkS)
  4235. (effects (font (size 1.5 1.5) (thickness 0.3)))
  4236. )
  4237. (segment (start 81.32 53.34) (end 77.47 53.34) (width 1) (layer F.Cu) (net 1))
  4238. (segment (start 71.12 47.244) (end 75.224 47.244) (width 1) (layer B.Cu) (net 1))
  4239. (segment (start 75.224 47.244) (end 81.32 53.34) (width 1) (layer B.Cu) (net 1))
  4240. (segment (start 71.12 47.244) (end 69.596 47.244) (width 1) (layer B.Cu) (net 1))
  4241. (segment (start 69.596 47.244) (end 67.31 49.53) (width 1) (layer B.Cu) (net 1))
  4242. (segment (start 87.63 53.34) (end 85.929999 51.639999) (width 1) (layer B.Cu) (net 1))
  4243. (segment (start 85.929999 51.639999) (end 83.020001 51.639999) (width 1) (layer B.Cu) (net 1))
  4244. (segment (start 83.020001 51.639999) (end 81.32 53.34) (width 1) (layer B.Cu) (net 1))
  4245. (segment (start 94.02 53.34) (end 92.319999 51.639999) (width 1) (layer B.Cu) (net 1))
  4246. (segment (start 92.319999 51.639999) (end 89.330001 51.639999) (width 1) (layer B.Cu) (net 1))
  4247. (segment (start 89.330001 51.639999) (end 87.63 53.34) (width 1) (layer B.Cu) (net 1))
  4248. (segment (start 69.85 53.34) (end 77.47 53.34) (width 1) (layer F.Cu) (net 1))
  4249. (segment (start 146.05 53.34) (end 149.86 53.34) (width 1) (layer F.Cu) (net 2))
  4250. (segment (start 156.21 53.34) (end 157.910001 51.639999) (width 1) (layer B.Cu) (net 2))
  4251. (segment (start 157.910001 51.639999) (end 160.859999 51.639999) (width 1) (layer B.Cu) (net 2))
  4252. (segment (start 160.859999 51.639999) (end 162.56 53.34) (width 1) (layer B.Cu) (net 2))
  4253. (segment (start 149.86 53.34) (end 151.560001 51.639999) (width 1) (layer B.Cu) (net 2))
  4254. (segment (start 151.560001 51.639999) (end 154.509999 51.639999) (width 1) (layer B.Cu) (net 2))
  4255. (segment (start 154.509999 51.639999) (end 156.21 53.34) (width 1) (layer B.Cu) (net 2))
  4256. (segment (start 134.62 50.8) (end 137.668 47.752) (width 1) (layer B.Cu) (net 2))
  4257. (segment (start 137.668 47.752) (end 138.43 47.752) (width 1) (layer B.Cu) (net 2))
  4258. (segment (start 138.43 47.752) (end 142.893568 47.752) (width 1) (layer B.Cu) (net 2))
  4259. (segment (start 142.893568 47.752) (end 148.481568 53.34) (width 1) (layer B.Cu) (net 2))
  4260. (segment (start 148.481568 53.34) (end 149.86 53.34) (width 1) (layer B.Cu) (net 2))
  4261. (segment (start 138.43 53.34) (end 146.05 53.34) (width 1) (layer F.Cu) (net 2))
  4262. (segment (start 138.43 84.074) (end 138.176 84.074) (width 1) (layer F.Cu) (net 3))
  4263. (segment (start 146.05 91.44) (end 138.43 91.44) (width 1) (layer F.Cu) (net 3))
  4264. (segment (start 138.176 84.074) (end 134.62 87.63) (width 1) (layer F.Cu) (net 3))
  4265. (segment (start 157.52 91.44) (end 159.220001 93.140001) (width 1) (layer F.Cu) (net 3))
  4266. (segment (start 159.220001 93.140001) (end 162.129999 93.140001) (width 1) (layer F.Cu) (net 3))
  4267. (segment (start 162.129999 93.140001) (end 163.83 91.44) (width 1) (layer F.Cu) (net 3))
  4268. (segment (start 152.870001 93.140001) (end 155.819999 93.140001) (width 1) (layer F.Cu) (net 3))
  4269. (segment (start 155.819999 93.140001) (end 157.52 91.44) (width 1) (layer F.Cu) (net 3))
  4270. (segment (start 146.05 91.44) (end 151.17 91.44) (width 1) (layer F.Cu) (net 3))
  4271. (segment (start 151.17 91.44) (end 152.870001 93.140001) (width 1) (layer F.Cu) (net 3))
  4272. (segment (start 142.004 84.074) (end 139.56137 84.074) (width 1) (layer B.Cu) (net 3))
  4273. (segment (start 138.43 84.074) (end 138.176 84.074) (width 1) (layer B.Cu) (net 3))
  4274. (segment (start 139.56137 84.074) (end 138.43 84.074) (width 1) (layer B.Cu) (net 3))
  4275. (segment (start 151.17 91.44) (end 149.37 91.44) (width 1) (layer B.Cu) (net 3))
  4276. (segment (start 149.37 91.44) (end 142.004 84.074) (width 1) (layer B.Cu) (net 3))
  4277. (segment (start 65.278 62.23) (end 66.077999 63.029999) (width 1) (layer F.Cu) (net 4))
  4278. (segment (start 70.903999 63.029999) (end 74.384001 66.510001) (width 1) (layer F.Cu) (net 4))
  4279. (segment (start 66.077999 63.029999) (end 70.903999 63.029999) (width 1) (layer F.Cu) (net 4))
  4280. (segment (start 74.384001 66.510001) (end 75.184 67.31) (width 1) (layer F.Cu) (net 4))
  4281. (segment (start 69.85 55.88) (end 68.207049 57.522951) (width 1) (layer F.Cu) (net 4))
  4282. (segment (start 68.207049 57.522951) (end 68.207049 59.300951) (width 1) (layer F.Cu) (net 4))
  4283. (segment (start 68.207049 59.300951) (end 66.077999 61.430001) (width 1) (layer F.Cu) (net 4))
  4284. (segment (start 66.077999 61.430001) (end 65.278 62.23) (width 1) (layer F.Cu) (net 4))
  4285. (segment (start 65.278 98.298) (end 65.532 98.298) (width 1) (layer B.Cu) (net 5))
  4286. (segment (start 65.532 98.298) (end 69.85 93.98) (width 1) (layer B.Cu) (net 5))
  4287. (segment (start 72.39 105.41) (end 73.152 105.41) (width 1) (layer F.Cu) (net 5))
  4288. (segment (start 65.278 98.298) (end 72.39 105.41) (width 1) (layer F.Cu) (net 5))
  4289. (segment (start 133.858 61.722) (end 139.446 67.31) (width 1) (layer B.Cu) (net 6))
  4290. (segment (start 139.446 67.31) (end 143.51 67.31) (width 1) (layer B.Cu) (net 6))
  4291. (segment (start 133.858 61.722) (end 134.112 61.722) (width 1) (layer F.Cu) (net 6))
  4292. (segment (start 138.43 55.88) (end 136.787049 57.522951) (width 1) (layer F.Cu) (net 6))
  4293. (segment (start 136.787049 57.522951) (end 136.787049 58.792951) (width 1) (layer F.Cu) (net 6))
  4294. (segment (start 136.787049 58.792951) (end 134.657999 60.922001) (width 1) (layer F.Cu) (net 6))
  4295. (segment (start 134.657999 60.922001) (end 133.858 61.722) (width 1) (layer F.Cu) (net 6))
  4296. (segment (start 134.62 99.06) (end 139.446 103.886) (width 1) (layer F.Cu) (net 7))
  4297. (segment (start 136.787049 95.622951) (end 136.787049 96.892951) (width 1) (layer F.Cu) (net 7))
  4298. (segment (start 136.787049 96.892951) (end 135.419999 98.260001) (width 1) (layer F.Cu) (net 7))
  4299. (segment (start 139.446 103.886) (end 139.446 105.41) (width 1) (layer F.Cu) (net 7))
  4300. (segment (start 135.419999 98.260001) (end 134.62 99.06) (width 1) (layer F.Cu) (net 7))
  4301. (segment (start 138.43 93.98) (end 136.787049 95.622951) (width 1) (layer F.Cu) (net 7))
  4302. (segment (start 123.057027 86.289654) (end 122.307028 85.539655) (width 1) (layer B.Cu) (net 8))
  4303. (segment (start 122.307028 55.492972) (end 122.307028 84.478995) (width 1) (layer F.Cu) (net 8))
  4304. (segment (start 124.397373 87.63) (end 123.057027 86.289654) (width 1) (layer B.Cu) (net 8))
  4305. (segment (start 127 50.8) (end 122.307028 55.492972) (width 1) (layer F.Cu) (net 8))
  4306. (segment (start 122.307028 84.478995) (end 122.307028 85.539655) (width 1) (layer F.Cu) (net 8))
  4307. (segment (start 127 87.63) (end 124.397373 87.63) (width 1) (layer B.Cu) (net 8))
  4308. (via (at 122.307028 85.539655) (size 1.5) (drill 1) (layers F.Cu B.Cu) (net 8))
  4309. (segment (start 117.220001 101.122001) (end 117.220001 98.170001) (width 1) (layer B.Cu) (net 8))
  4310. (segment (start 106.519978 104.780022) (end 113.56198 104.780022) (width 1) (layer B.Cu) (net 8))
  4311. (segment (start 99.933737 111.366263) (end 106.519978 104.780022) (width 1) (layer B.Cu) (net 8))
  4312. (segment (start 70.040347 111.366263) (end 99.933737 111.366263) (width 1) (layer B.Cu) (net 8))
  4313. (segment (start 60.678052 102.003968) (end 70.040347 111.366263) (width 1) (layer B.Cu) (net 8))
  4314. (segment (start 60.678051 89.888051) (end 60.678052 102.003968) (width 1) (layer B.Cu) (net 8))
  4315. (segment (start 113.56198 104.780022) (end 117.220001 101.122001) (width 1) (layer B.Cu) (net 8))
  4316. (segment (start 58.42 87.63) (end 60.678051 89.888051) (width 1) (layer B.Cu) (net 8))
  4317. (segment (start 117.220001 98.170001) (end 116.84 97.79) (width 1) (layer B.Cu) (net 8))
  4318. (segment (start 116.84 97.79) (end 118.59 97.79) (width 1) (layer F.Cu) (net 8))
  4319. (segment (start 118.59 97.79) (end 119.99001 99.19001) (width 1) (layer F.Cu) (net 8))
  4320. (segment (start 119.99001 99.19001) (end 123.079881 99.19001) (width 1) (layer F.Cu) (net 8))
  4321. (segment (start 123.079881 99.19001) (end 123.134505 99.135386) (width 1) (layer F.Cu) (net 8))
  4322. (segment (start 123.134505 99.135386) (end 123.899989 99.135386) (width 1) (layer F.Cu) (net 8))
  4323. (segment (start 126.757059 90.879989) (end 124.900096 90.879989) (width 1) (layer F.Cu) (net 8))
  4324. (segment (start 124.900096 90.879989) (end 123.899989 91.880096) (width 1) (layer F.Cu) (net 8))
  4325. (segment (start 127 90.637047) (end 126.757059 90.879989) (width 1) (layer F.Cu) (net 8))
  4326. (segment (start 127 87.63) (end 127 90.637047) (width 1) (layer F.Cu) (net 8))
  4327. (segment (start 123.899989 91.880096) (end 123.899989 99.135386) (width 1) (layer F.Cu) (net 8))
  4328. (segment (start 55.957999 53.262001) (end 58.947051 50.272949) (width 1) (layer B.Cu) (net 8))
  4329. (segment (start 55.957999 85.167999) (end 55.957999 53.262001) (width 1) (layer B.Cu) (net 8))
  4330. (segment (start 58.42 87.63) (end 55.957999 85.167999) (width 1) (layer B.Cu) (net 8))
  4331. (segment (start 58.947051 50.272949) (end 59.69 49.53) (width 1) (layer B.Cu) (net 8))
  4332. (segment (start 128.642951 81.652951) (end 127 80.01) (width 1) (layer F.Cu) (net 9))
  4333. (segment (start 128.642951 91.186081) (end 128.642951 81.652951) (width 1) (layer F.Cu) (net 9))
  4334. (segment (start 127.549033 92.279999) (end 128.642951 91.186081) (width 1) (layer F.Cu) (net 9))
  4335. (segment (start 124.197364 100.817924) (end 125.299999 99.715289) (width 1) (layer F.Cu) (net 9))
  4336. (segment (start 116.63066 100.33) (end 117.118584 100.817924) (width 1) (layer F.Cu) (net 9))
  4337. (segment (start 115.57 100.33) (end 116.63066 100.33) (width 1) (layer F.Cu) (net 9))
  4338. (segment (start 125.299999 99.715289) (end 125.299999 92.46) (width 1) (layer F.Cu) (net 9))
  4339. (segment (start 125.299999 92.46) (end 125.479999 92.28) (width 1) (layer F.Cu) (net 9))
  4340. (segment (start 125.479999 92.28) (end 127.549033 92.279999) (width 1) (layer F.Cu) (net 9))
  4341. (segment (start 117.118584 100.817924) (end 124.197364 100.817924) (width 1) (layer F.Cu) (net 9))
  4342. (segment (start 112.519989 103.380011) (end 114.820001 101.079999) (width 1) (layer B.Cu) (net 9))
  4343. (segment (start 104.274045 103.380011) (end 112.519989 103.380011) (width 1) (layer B.Cu) (net 9))
  4344. (segment (start 97.687804 109.966252) (end 104.274045 103.380011) (width 1) (layer B.Cu) (net 9))
  4345. (segment (start 70.62025 109.966252) (end 97.687804 109.966252) (width 1) (layer B.Cu) (net 9))
  4346. (segment (start 58.42 80.01) (end 60.16295 80.01) (width 1) (layer B.Cu) (net 9))
  4347. (segment (start 62.078062 101.424064) (end 70.62025 109.966252) (width 1) (layer B.Cu) (net 9))
  4348. (segment (start 60.16295 80.01) (end 62.078062 81.925112) (width 1) (layer B.Cu) (net 9))
  4349. (segment (start 114.820001 101.079999) (end 115.57 100.33) (width 1) (layer B.Cu) (net 9))
  4350. (segment (start 62.078062 81.925112) (end 62.078062 101.424064) (width 1) (layer B.Cu) (net 9))
  4351. (segment (start 59.69 41.91) (end 61.43295 41.91) (width 1) (layer F.Cu) (net 9))
  4352. (segment (start 61.43295 41.91) (end 63.075901 40.267049) (width 1) (layer F.Cu) (net 9))
  4353. (segment (start 63.075901 40.267049) (end 122.344099 40.267049) (width 1) (layer F.Cu) (net 9))
  4354. (segment (start 122.344099 40.267049) (end 125.25705 43.18) (width 1) (layer F.Cu) (net 9))
  4355. (segment (start 125.25705 43.18) (end 127 43.18) (width 1) (layer F.Cu) (net 9))
  4356. (segment (start 57.652625 72.97099) (end 58.402624 73.720989) (width 1) (layer F.Cu) (net 9))
  4357. (segment (start 58.42 80.01) (end 58.42 73.738365) (width 1) (layer B.Cu) (net 9))
  4358. (segment (start 55.957999 71.276364) (end 57.652625 72.97099) (width 1) (layer F.Cu) (net 9))
  4359. (segment (start 55.957999 43.899051) (end 55.957999 71.276364) (width 1) (layer F.Cu) (net 9))
  4360. (segment (start 59.69 41.91) (end 57.94705 41.91) (width 1) (layer F.Cu) (net 9))
  4361. (segment (start 57.94705 41.91) (end 55.957999 43.899051) (width 1) (layer F.Cu) (net 9))
  4362. (segment (start 58.42 73.738365) (end 58.402624 73.720989) (width 1) (layer B.Cu) (net 9))
  4363. (via (at 58.402624 73.720989) (size 1.5) (drill 1) (layers F.Cu B.Cu) (net 9))
  4364. (segment (start 116.84 106.68) (end 117.589999 107.429999) (width 1) (layer F.Cu) (net 10))
  4365. (segment (start 117.589999 107.429999) (end 117.589999 109.642003) (width 1) (layer F.Cu) (net 10))
  4366. (segment (start 117.589999 109.642003) (end 114.387003 112.844999) (width 1) (layer F.Cu) (net 10))
  4367. (segment (start 94.02 116.905128) (end 94.02 118.142564) (width 1) (layer F.Cu) (net 10))
  4368. (segment (start 114.387003 112.844999) (end 98.080129 112.844999) (width 1) (layer F.Cu) (net 10))
  4369. (segment (start 98.080129 112.844999) (end 94.02 116.905128) (width 1) (layer F.Cu) (net 10))
  4370. (segment (start 124.46 110.49) (end 128.27 114.3) (width 1) (layer B.Cu) (net 10))
  4371. (segment (start 128.27 114.3) (end 143.51 114.3) (width 1) (layer B.Cu) (net 10))
  4372. (segment (start 124.46 106.68) (end 124.46 110.49) (width 1) (layer B.Cu) (net 10))
  4373. (segment (start 109.64894 87.685906) (end 110.398939 88.435905) (width 1) (layer B.Cu) (net 10))
  4374. (segment (start 85.586457 80.228459) (end 102.191493 80.228459) (width 1) (layer B.Cu) (net 10))
  4375. (segment (start 123.957038 87.863219) (end 123.384352 88.435905) (width 1) (layer F.Cu) (net 10))
  4376. (via (at 110.398939 88.435905) (size 1.5) (drill 1) (layers F.Cu B.Cu) (net 10))
  4377. (segment (start 72.820001 66.493999) (end 72.820001 67.462003) (width 1) (layer B.Cu) (net 10))
  4378. (segment (start 70.256003 63.930001) (end 72.820001 66.493999) (width 1) (layer B.Cu) (net 10))
  4379. (segment (start 61.898001 63.930001) (end 70.256003 63.930001) (width 1) (layer B.Cu) (net 10))
  4380. (segment (start 72.820001 67.462003) (end 85.586457 80.228459) (width 1) (layer B.Cu) (net 10))
  4381. (segment (start 111.148938 89.185904) (end 110.398939 88.435905) (width 1) (layer B.Cu) (net 10))
  4382. (segment (start 102.191493 80.228459) (end 109.64894 87.685906) (width 1) (layer B.Cu) (net 10))
  4383. (segment (start 118.483034 96.52) (end 111.148938 89.185904) (width 1) (layer B.Cu) (net 10))
  4384. (segment (start 123.957038 61.462962) (end 123.957038 87.863219) (width 1) (layer F.Cu) (net 10))
  4385. (segment (start 124.46 96.52) (end 118.483034 96.52) (width 1) (layer B.Cu) (net 10))
  4386. (segment (start 123.384352 88.435905) (end 111.459599 88.435905) (width 1) (layer F.Cu) (net 10))
  4387. (segment (start 126.238 59.182) (end 123.957038 61.462962) (width 1) (layer F.Cu) (net 10))
  4388. (segment (start 111.459599 88.435905) (end 110.398939 88.435905) (width 1) (layer F.Cu) (net 10))
  4389. (segment (start 57.658 59.69) (end 61.898001 63.930001) (width 1) (layer B.Cu) (net 10))
  4390. (segment (start 127 96.52) (end 124.46 96.52) (width 1) (layer B.Cu) (net 10))
  4391. (segment (start 124.46 106.68) (end 124.46 96.52) (width 1) (layer B.Cu) (net 10))
  4392. (segment (start 127 96.52) (end 126.855544 96.664456) (width 1) (layer B.Cu) (net 10))
  4393. (segment (start 116.84 106.68) (end 124.46 106.68) (width 1) (layer B.Cu) (net 10))
  4394. (segment (start 60.052625 74.51299) (end 55.957999 78.607616) (width 1) (layer F.Cu) (net 10))
  4395. (segment (start 57.658 59.69) (end 60.052625 62.084625) (width 1) (layer F.Cu) (net 10))
  4396. (segment (start 60.052625 62.084625) (end 60.052625 74.51299) (width 1) (layer F.Cu) (net 10))
  4397. (segment (start 56.52663 95.758) (end 57.658 95.758) (width 1) (layer F.Cu) (net 10))
  4398. (segment (start 55.957999 78.607616) (end 55.957999 95.189369) (width 1) (layer F.Cu) (net 10))
  4399. (segment (start 55.957999 95.189369) (end 56.52663 95.758) (width 1) (layer F.Cu) (net 10))
  4400. (segment (start 77.47 91.44) (end 81.32 91.44) (width 1) (layer F.Cu) (net 11))
  4401. (segment (start 69.85 91.44) (end 77.47 91.44) (width 1) (layer F.Cu) (net 11))
  4402. (segment (start 69.85 85.598) (end 74.059568 85.598) (width 1) (layer B.Cu) (net 11))
  4403. (segment (start 74.059568 85.598) (end 79.901568 91.44) (width 1) (layer B.Cu) (net 11))
  4404. (segment (start 79.901568 91.44) (end 81.32 91.44) (width 1) (layer B.Cu) (net 11))
  4405. (segment (start 93.98 91.44) (end 92.279999 89.739999) (width 1) (layer F.Cu) (net 11))
  4406. (segment (start 92.279999 89.739999) (end 89.370001 89.739999) (width 1) (layer F.Cu) (net 11))
  4407. (segment (start 89.370001 89.739999) (end 87.67 91.44) (width 1) (layer F.Cu) (net 11))
  4408. (segment (start 69.85 85.598) (end 68.072 85.598) (width 1) (layer F.Cu) (net 11))
  4409. (segment (start 68.072 85.598) (end 66.04 87.63) (width 1) (layer F.Cu) (net 11))
  4410. (segment (start 87.67 91.44) (end 85.969999 89.739999) (width 1) (layer F.Cu) (net 11))
  4411. (segment (start 85.969999 89.739999) (end 83.020001 89.739999) (width 1) (layer F.Cu) (net 11))
  4412. (segment (start 83.020001 89.739999) (end 81.32 91.44) (width 1) (layer F.Cu) (net 11))
  4413. (segment (start 65.278 57.15) (end 66.077999 56.350001) (width 1) (layer F.Cu) (net 12))
  4414. (segment (start 66.077999 56.350001) (end 66.077999 54.006099) (width 1) (layer F.Cu) (net 12))
  4415. (segment (start 66.077999 54.006099) (end 71.140097 48.944001) (width 1) (layer F.Cu) (net 12))
  4416. (segment (start 71.140097 48.944001) (end 77.039999 48.944001) (width 1) (layer F.Cu) (net 12))
  4417. (segment (start 77.039999 48.944001) (end 77.940001 48.043999) (width 1) (layer F.Cu) (net 12))
  4418. (segment (start 77.940001 48.043999) (end 78.74 47.244) (width 1) (layer F.Cu) (net 12))
  4419. (segment (start 86.36 45.72) (end 80.264 45.72) (width 1) (layer F.Cu) (net 12))
  4420. (segment (start 80.264 45.72) (end 78.74 47.244) (width 1) (layer F.Cu) (net 12))
  4421. (segment (start 82.804 67.31) (end 84.504001 69.010001) (width 1) (layer B.Cu) (net 12))
  4422. (segment (start 84.504001 69.010001) (end 88.446001 69.010001) (width 1) (layer B.Cu) (net 12))
  4423. (segment (start 94.02 62.76) (end 94.02 60.96) (width 1) (layer B.Cu) (net 12))
  4424. (segment (start 88.446001 69.010001) (end 94.02 63.436002) (width 1) (layer B.Cu) (net 12))
  4425. (segment (start 94.02 63.436002) (end 94.02 62.76) (width 1) (layer B.Cu) (net 12))
  4426. (segment (start 86.36 45.72) (end 88.36 45.72) (width 1) (layer F.Cu) (net 12))
  4427. (segment (start 88.36 45.72) (end 92.319999 49.679999) (width 1) (layer F.Cu) (net 12))
  4428. (segment (start 92.319999 49.679999) (end 92.319999 57.459999) (width 1) (layer F.Cu) (net 12))
  4429. (segment (start 92.319999 57.459999) (end 94.02 59.16) (width 1) (layer F.Cu) (net 12))
  4430. (segment (start 94.02 59.16) (end 94.02 60.96) (width 1) (layer F.Cu) (net 12))
  4431. (segment (start 80.772 105.41) (end 82.472001 107.110001) (width 1) (layer B.Cu) (net 13))
  4432. (segment (start 82.472001 107.110001) (end 87.769999 107.110001) (width 1) (layer B.Cu) (net 13))
  4433. (segment (start 87.769999 107.110001) (end 94.02 100.86) (width 1) (layer B.Cu) (net 13))
  4434. (segment (start 94.02 100.86) (end 94.02 99.06) (width 1) (layer B.Cu) (net 13))
  4435. (segment (start 65.278 93.218) (end 72.898 85.598) (width 1) (layer F.Cu) (net 13))
  4436. (segment (start 72.898 85.598) (end 77.47 85.598) (width 1) (layer F.Cu) (net 13))
  4437. (segment (start 90.17 83.82) (end 90.17 85.82) (width 1) (layer B.Cu) (net 13))
  4438. (segment (start 94.02 97.26) (end 94.02 99.06) (width 1) (layer B.Cu) (net 13))
  4439. (segment (start 90.17 85.82) (end 92.279999 87.929999) (width 1) (layer B.Cu) (net 13))
  4440. (segment (start 92.279999 87.929999) (end 92.279999 95.519999) (width 1) (layer B.Cu) (net 13))
  4441. (segment (start 92.279999 95.519999) (end 94.02 97.26) (width 1) (layer B.Cu) (net 13))
  4442. (segment (start 77.47 85.598) (end 88.392 85.598) (width 1) (layer F.Cu) (net 13))
  4443. (segment (start 88.392 85.598) (end 90.17 83.82) (width 1) (layer F.Cu) (net 13))
  4444. (segment (start 133.858 56.642) (end 133.858 54.806098) (width 1) (layer F.Cu) (net 14))
  4445. (segment (start 133.858 54.806098) (end 138.86028 49.803818) (width 1) (layer F.Cu) (net 14))
  4446. (segment (start 138.86028 49.803818) (end 142.866812 49.803818) (width 1) (layer F.Cu) (net 14))
  4447. (segment (start 144.91863 47.752) (end 146.05 47.752) (width 1) (layer F.Cu) (net 14))
  4448. (segment (start 142.866812 49.803818) (end 144.91863 47.752) (width 1) (layer F.Cu) (net 14))
  4449. (segment (start 151.13 67.31) (end 152.830001 69.010001) (width 1) (layer B.Cu) (net 14))
  4450. (segment (start 152.830001 69.010001) (end 157.026001 69.010001) (width 1) (layer B.Cu) (net 14))
  4451. (segment (start 162.56 62.76) (end 162.56 60.96) (width 1) (layer B.Cu) (net 14))
  4452. (segment (start 157.026001 69.010001) (end 162.56 63.476002) (width 1) (layer B.Cu) (net 14))
  4453. (segment (start 162.56 63.476002) (end 162.56 62.76) (width 1) (layer B.Cu) (net 14))
  4454. (segment (start 156.21 45.72) (end 158.21 45.72) (width 1) (layer F.Cu) (net 14))
  4455. (segment (start 158.21 45.72) (end 160.410001 47.920001) (width 1) (layer F.Cu) (net 14))
  4456. (segment (start 160.410001 47.920001) (end 160.410001 57.010001) (width 1) (layer F.Cu) (net 14))
  4457. (segment (start 162.56 59.16) (end 162.56 60.96) (width 1) (layer F.Cu) (net 14))
  4458. (segment (start 160.410001 57.010001) (end 162.56 59.16) (width 1) (layer F.Cu) (net 14))
  4459. (segment (start 156.21 45.72) (end 148.082 45.72) (width 1) (layer F.Cu) (net 14))
  4460. (segment (start 148.082 45.72) (end 146.05 47.752) (width 1) (layer F.Cu) (net 14))
  4461. (segment (start 134.62 93.98) (end 134.62 92.144098) (width 1) (layer F.Cu) (net 15))
  4462. (segment (start 144.91863 84.074) (end 146.05 84.074) (width 1) (layer F.Cu) (net 15))
  4463. (segment (start 134.62 92.144098) (end 142.690098 84.074) (width 1) (layer F.Cu) (net 15))
  4464. (segment (start 142.690098 84.074) (end 144.91863 84.074) (width 1) (layer F.Cu) (net 15))
  4465. (segment (start 155.956 84.074) (end 156.21 83.82) (width 1) (layer F.Cu) (net 15))
  4466. (segment (start 146.05 84.074) (end 155.956 84.074) (width 1) (layer F.Cu) (net 15))
  4467. (segment (start 156.21 83.82) (end 158.21 83.82) (width 1) (layer B.Cu) (net 15))
  4468. (segment (start 163.83 105.640002) (end 162.106001 107.364001) (width 1) (layer B.Cu) (net 15))
  4469. (segment (start 162.106001 107.364001) (end 149.020001 107.364001) (width 1) (layer B.Cu) (net 15))
  4470. (segment (start 149.020001 107.364001) (end 147.865999 106.209999) (width 1) (layer B.Cu) (net 15))
  4471. (segment (start 147.865999 106.209999) (end 147.066 105.41) (width 1) (layer B.Cu) (net 15))
  4472. (segment (start 163.83 97.26) (end 163.83 99.06) (width 1) (layer B.Cu) (net 15))
  4473. (segment (start 163.83 99.06) (end 163.83 105.640002) (width 1) (layer B.Cu) (net 15))
  4474. (segment (start 158.21 83.82) (end 162.129999 87.739999) (width 1) (layer B.Cu) (net 15))
  4475. (segment (start 162.129999 87.739999) (end 162.129999 95.559999) (width 1) (layer B.Cu) (net 15))
  4476. (segment (start 162.129999 95.559999) (end 163.83 97.26) (width 1) (layer B.Cu) (net 15))
  4477. (segment (start 114.3 97.79) (end 112.649999 96.139999) (width 1) (layer B.Cu) (net 16))
  4478. (segment (start 104.697082 96.139999) (end 92.070001 83.512918) (width 1) (layer B.Cu) (net 16))
  4479. (segment (start 91.890001 81.919999) (end 84.598629 81.919999) (width 1) (layer B.Cu) (net 16))
  4480. (segment (start 112.649999 96.139999) (end 104.697082 96.139999) (width 1) (layer B.Cu) (net 16))
  4481. (segment (start 92.070001 83.512918) (end 92.070001 82.099999) (width 1) (layer B.Cu) (net 16))
  4482. (segment (start 92.070001 82.099999) (end 91.890001 81.919999) (width 1) (layer B.Cu) (net 16))
  4483. (segment (start 84.598629 81.919999) (end 69.85 67.17137) (width 1) (layer B.Cu) (net 16))
  4484. (segment (start 69.85 67.17137) (end 69.85 66.04) (width 1) (layer B.Cu) (net 16))
  4485. (segment (start 69.85 66.04) (end 69.85 67.31) (width 1) (layer F.Cu) (net 16))
  4486. (segment (start 69.85 67.31) (end 67.31 69.85) (width 1) (layer F.Cu) (net 16))
  4487. (segment (start 103.390001 99.809999) (end 104.987997 99.809999) (width 1) (layer B.Cu) (net 17))
  4488. (segment (start 104.987997 99.809999) (end 107.157999 101.980001) (width 1) (layer B.Cu) (net 17))
  4489. (segment (start 107.157999 101.980001) (end 111.379999 101.980001) (width 1) (layer B.Cu) (net 17))
  4490. (segment (start 111.379999 101.980001) (end 112.280001 101.079999) (width 1) (layer B.Cu) (net 17))
  4491. (segment (start 112.280001 101.079999) (end 113.03 100.33) (width 1) (layer B.Cu) (net 17))
  4492. (segment (start 94.633759 108.566241) (end 103.390001 99.809999) (width 1) (layer B.Cu) (net 17))
  4493. (segment (start 64.77 101.6) (end 71.736241 108.566241) (width 1) (layer B.Cu) (net 17))
  4494. (segment (start 71.736241 108.566241) (end 94.633759 108.566241) (width 1) (layer B.Cu) (net 17))
  4495. (segment (start 64.77 101.6) (end 64.77 104.14) (width 1) (layer F.Cu) (net 17))
  4496. (segment (start 64.77 104.14) (end 62.23 106.68) (width 1) (layer F.Cu) (net 17))
  4497. (segment (start 113.410001 96.139999) (end 112.509999 97.040001) (width 1) (layer F.Cu) (net 18))
  4498. (segment (start 112.509999 97.040001) (end 111.76 97.79) (width 1) (layer F.Cu) (net 18))
  4499. (segment (start 117.660172 96.139999) (end 113.410001 96.139999) (width 1) (layer F.Cu) (net 18))
  4500. (segment (start 125.357048 88.443123) (end 117.660172 96.139999) (width 1) (layer F.Cu) (net 18))
  4501. (segment (start 125.357048 78.54705) (end 125.357048 88.443123) (width 1) (layer F.Cu) (net 18))
  4502. (segment (start 132.08 71.824098) (end 125.357048 78.54705) (width 1) (layer F.Cu) (net 18))
  4503. (segment (start 132.08 69.85) (end 132.08 71.824098) (width 1) (layer F.Cu) (net 18))
  4504. (segment (start 134.366 65.532) (end 134.366 67.564) (width 1) (layer F.Cu) (net 18))
  4505. (segment (start 134.366 67.564) (end 132.08 69.85) (width 1) (layer F.Cu) (net 18))
  4506. (segment (start 110.49 100.33) (end 112.377934 102.217934) (width 1) (layer F.Cu) (net 19))
  4507. (segment (start 125.86863 102.87) (end 127 102.87) (width 1) (layer F.Cu) (net 19))
  4508. (segment (start 125.216564 102.217934) (end 125.86863 102.87) (width 1) (layer F.Cu) (net 19))
  4509. (segment (start 112.377934 102.217934) (end 125.216564 102.217934) (width 1) (layer F.Cu) (net 19))
  4510. (segment (start 127 102.87) (end 127 105.41) (width 1) (layer F.Cu) (net 19))
  4511. (segment (start 127 105.41) (end 129.54 107.95) (width 1) (layer F.Cu) (net 19))
  4512. (segment (start 62.23 66.04) (end 62.23 67.27) (width 1) (layer F.Cu) (net 20))
  4513. (segment (start 62.23 67.27) (end 64.81 69.85) (width 1) (layer F.Cu) (net 20))
  4514. (segment (start 62.23 66.04) (end 62.23 59.922) (width 1) (layer F.Cu) (net 20))
  4515. (segment (start 62.23 59.922) (end 59.458 57.15) (width 1) (layer F.Cu) (net 20))
  4516. (segment (start 57.658 57.15) (end 59.458 57.15) (width 1) (layer F.Cu) (net 20))
  4517. (segment (start 57.15 101.6) (end 57.15 104.1) (width 1) (layer F.Cu) (net 21))
  4518. (segment (start 57.15 104.1) (end 59.73 106.68) (width 1) (layer F.Cu) (net 21))
  4519. (segment (start 59.906001 93.666001) (end 59.906001 98.843999) (width 1) (layer F.Cu) (net 21))
  4520. (segment (start 59.906001 98.843999) (end 57.15 101.6) (width 1) (layer F.Cu) (net 21))
  4521. (segment (start 59.458 93.218) (end 57.658 93.218) (width 1) (layer F.Cu) (net 21))
  4522. (segment (start 59.906001 93.666001) (end 59.458 93.218) (width 1) (layer F.Cu) (net 21))
  4523. (segment (start 129.58 68.366) (end 129.58 69.85) (width 1) (layer F.Cu) (net 22))
  4524. (segment (start 126.746 65.532) (end 129.58 68.366) (width 1) (layer F.Cu) (net 22))
  4525. (segment (start 126.238 56.642) (end 127.938001 58.342001) (width 1) (layer F.Cu) (net 22))
  4526. (segment (start 127.938001 58.342001) (end 127.938001 64.339999) (width 1) (layer F.Cu) (net 22))
  4527. (segment (start 127.938001 64.339999) (end 127.545999 64.732001) (width 1) (layer F.Cu) (net 22))
  4528. (segment (start 127.545999 64.732001) (end 126.746 65.532) (width 1) (layer F.Cu) (net 22))
  4529. (segment (start 134.62 102.87) (end 134.62 105.37) (width 1) (layer F.Cu) (net 23))
  4530. (segment (start 134.62 101.6) (end 134.62 102.87) (width 1) (layer F.Cu) (net 23))
  4531. (segment (start 127 93.98) (end 134.62 101.6) (width 1) (layer F.Cu) (net 23))
  4532. (segment (start 134.62 105.37) (end 132.04 107.95) (width 1) (layer F.Cu) (net 23))
  4533. (segment (start 111.76 50.8) (end 110.109999 49.149999) (width 1) (layer F.Cu) (net 24))
  4534. (segment (start 110.109999 49.149999) (end 100.710001 49.149999) (width 1) (layer F.Cu) (net 24))
  4535. (segment (start 100.710001 49.149999) (end 97.319999 52.540001) (width 1) (layer F.Cu) (net 24))
  4536. (segment (start 97.319999 52.540001) (end 96.52 53.34) (width 1) (layer F.Cu) (net 24))
  4537. (segment (start 65.278 59.69) (end 63.577999 57.989999) (width 1) (layer F.Cu) (net 24))
  4538. (segment (start 63.577999 57.989999) (end 63.577999 48.182001) (width 1) (layer F.Cu) (net 24))
  4539. (segment (start 63.577999 48.182001) (end 66.567051 45.192949) (width 1) (layer F.Cu) (net 24))
  4540. (segment (start 66.567051 45.192949) (end 67.31 44.45) (width 1) (layer F.Cu) (net 24))
  4541. (segment (start 69.85 60.96) (end 66.548 60.96) (width 1) (layer B.Cu) (net 24))
  4542. (segment (start 66.548 60.96) (end 65.278 59.69) (width 1) (layer B.Cu) (net 24))
  4543. (segment (start 95.25 67.31) (end 96.52 66.04) (width 1) (layer B.Cu) (net 24))
  4544. (segment (start 96.52 66.04) (end 96.52 60.96) (width 1) (layer B.Cu) (net 24))
  4545. (segment (start 77.47 60.96) (end 69.85 60.96) (width 1) (layer F.Cu) (net 24))
  4546. (segment (start 81.32 60.96) (end 77.47 60.96) (width 1) (layer F.Cu) (net 24))
  4547. (segment (start 83.82 53.34) (end 85.520001 55.040001) (width 1) (layer F.Cu) (net 24))
  4548. (segment (start 85.520001 55.040001) (end 89.561369 55.040001) (width 1) (layer F.Cu) (net 24))
  4549. (segment (start 89.561369 55.040001) (end 90.13 54.47137) (width 1) (layer F.Cu) (net 24))
  4550. (segment (start 90.13 54.47137) (end 90.13 53.34) (width 1) (layer F.Cu) (net 24))
  4551. (segment (start 81.32 60.96) (end 83.82 58.46) (width 1) (layer F.Cu) (net 24))
  4552. (segment (start 83.82 58.46) (end 83.82 53.34) (width 1) (layer F.Cu) (net 24))
  4553. (segment (start 90.17 60.96) (end 89.370001 61.759999) (width 1) (layer F.Cu) (net 24))
  4554. (segment (start 89.370001 61.759999) (end 89.370001 62.480001) (width 1) (layer F.Cu) (net 24))
  4555. (segment (start 89.370001 62.480001) (end 89.190001 62.660001) (width 1) (layer F.Cu) (net 24))
  4556. (segment (start 89.190001 62.660001) (end 83.020001 62.660001) (width 1) (layer F.Cu) (net 24))
  4557. (segment (start 83.020001 62.660001) (end 81.32 60.96) (width 1) (layer F.Cu) (net 24))
  4558. (segment (start 96.52 60.96) (end 96.52 62.09137) (width 1) (layer F.Cu) (net 24))
  4559. (segment (start 96.52 62.09137) (end 95.951369 62.660001) (width 1) (layer F.Cu) (net 24))
  4560. (segment (start 95.951369 62.660001) (end 91.870001 62.660001) (width 1) (layer F.Cu) (net 24))
  4561. (segment (start 91.870001 62.660001) (end 90.969999 61.759999) (width 1) (layer F.Cu) (net 24))
  4562. (segment (start 90.969999 61.759999) (end 90.17 60.96) (width 1) (layer F.Cu) (net 24))
  4563. (segment (start 91.44 45.72) (end 96.52 50.8) (width 1) (layer F.Cu) (net 24))
  4564. (segment (start 96.52 50.8) (end 96.52 53.34) (width 1) (layer F.Cu) (net 24))
  4565. (segment (start 96.52 53.34) (end 96.52 60.96) (width 1) (layer F.Cu) (net 24))
  4566. (segment (start 109.22 50.8) (end 101.576002 50.8) (width 1) (layer B.Cu) (net 25))
  4567. (segment (start 101.576002 50.8) (end 95.171369 57.204633) (width 1) (layer B.Cu) (net 25))
  4568. (segment (start 95.171369 57.204633) (end 91.425367 57.204633) (width 1) (layer B.Cu) (net 25))
  4569. (segment (start 91.425367 57.204633) (end 87.67 60.96) (width 1) (layer B.Cu) (net 25))
  4570. (segment (start 77.47 58.42) (end 77.47 55.88) (width 1) (layer B.Cu) (net 25))
  4571. (segment (start 83.82 60.96) (end 83.020001 60.160001) (width 1) (layer B.Cu) (net 25))
  4572. (segment (start 83.020001 60.160001) (end 83.020001 59.439999) (width 1) (layer B.Cu) (net 25))
  4573. (segment (start 83.020001 59.439999) (end 82.000002 58.42) (width 1) (layer B.Cu) (net 25))
  4574. (segment (start 82.000002 58.42) (end 78.520689 58.42) (width 1) (layer B.Cu) (net 25))
  4575. (segment (start 78.520689 58.42) (end 77.47 58.42) (width 1) (layer B.Cu) (net 25))
  4576. (segment (start 87.67 60.96) (end 83.82 60.96) (width 1) (layer B.Cu) (net 25))
  4577. (segment (start 87.63 67.31) (end 87.63 61) (width 1) (layer B.Cu) (net 25))
  4578. (segment (start 87.63 61) (end 87.67 60.96) (width 1) (layer B.Cu) (net 25))
  4579. (segment (start 95.25 83.82) (end 98.849495 80.220505) (width 1) (layer F.Cu) (net 26))
  4580. (segment (start 98.849495 80.220505) (end 98.849495 57.350083) (width 1) (layer F.Cu) (net 26))
  4581. (segment (start 98.849495 57.350083) (end 102.859578 53.34) (width 1) (layer F.Cu) (net 26))
  4582. (segment (start 102.859578 53.34) (end 107.95 53.34) (width 1) (layer F.Cu) (net 26))
  4583. (segment (start 90.17 91.44) (end 91.870001 93.140001) (width 1) (layer F.Cu) (net 26))
  4584. (segment (start 96.48 92.57137) (end 96.48 91.44) (width 1) (layer F.Cu) (net 26))
  4585. (segment (start 91.870001 93.140001) (end 95.911369 93.140001) (width 1) (layer F.Cu) (net 26))
  4586. (segment (start 95.911369 93.140001) (end 96.48 92.57137) (width 1) (layer F.Cu) (net 26))
  4587. (segment (start 66.40937 95.758) (end 65.278 95.758) (width 1) (layer F.Cu) (net 26))
  4588. (segment (start 66.548 95.758) (end 66.40937 95.758) (width 1) (layer F.Cu) (net 26))
  4589. (segment (start 69.85 99.06) (end 66.548 95.758) (width 1) (layer F.Cu) (net 26))
  4590. (segment (start 65.278 95.758) (end 64.14663 95.758) (width 1) (layer F.Cu) (net 26))
  4591. (segment (start 64.14663 95.758) (end 63.577999 95.189369) (width 1) (layer F.Cu) (net 26))
  4592. (segment (start 63.577999 85.012001) (end 65.297051 83.292949) (width 1) (layer F.Cu) (net 26))
  4593. (segment (start 63.577999 95.189369) (end 63.577999 85.012001) (width 1) (layer F.Cu) (net 26))
  4594. (segment (start 65.297051 83.292949) (end 66.04 82.55) (width 1) (layer F.Cu) (net 26))
  4595. (segment (start 83.82 91.44) (end 85.520001 93.140001) (width 1) (layer F.Cu) (net 26))
  4596. (segment (start 85.520001 93.140001) (end 89.601369 93.140001) (width 1) (layer F.Cu) (net 26))
  4597. (segment (start 89.601369 93.140001) (end 90.17 92.57137) (width 1) (layer F.Cu) (net 26))
  4598. (segment (start 90.17 92.57137) (end 90.17 91.44) (width 1) (layer F.Cu) (net 26))
  4599. (segment (start 83.82 91.44) (end 83.82 96.56) (width 1) (layer F.Cu) (net 26))
  4600. (segment (start 83.82 96.56) (end 81.32 99.06) (width 1) (layer F.Cu) (net 26))
  4601. (segment (start 96.48 91.44) (end 96.48 90.30863) (width 1) (layer F.Cu) (net 26))
  4602. (segment (start 90.17 99.06) (end 90.17 100.19137) (width 1) (layer F.Cu) (net 26))
  4603. (segment (start 90.17 100.19137) (end 89.601369 100.760001) (width 1) (layer F.Cu) (net 26))
  4604. (segment (start 89.601369 100.760001) (end 83.020001 100.760001) (width 1) (layer F.Cu) (net 26))
  4605. (segment (start 83.020001 100.760001) (end 81.32 99.06) (width 1) (layer F.Cu) (net 26))
  4606. (segment (start 90.17 99.06) (end 91.870001 100.760001) (width 1) (layer F.Cu) (net 26))
  4607. (segment (start 91.870001 100.760001) (end 95.951369 100.760001) (width 1) (layer F.Cu) (net 26))
  4608. (segment (start 95.951369 100.760001) (end 96.52 100.19137) (width 1) (layer F.Cu) (net 26))
  4609. (segment (start 96.52 100.19137) (end 96.52 99.06) (width 1) (layer F.Cu) (net 26))
  4610. (segment (start 96.52 99.06) (end 96.52 102.87) (width 1) (layer F.Cu) (net 26))
  4611. (segment (start 96.52 102.87) (end 93.98 105.41) (width 1) (layer F.Cu) (net 26))
  4612. (segment (start 96.48 91.44) (end 96.48 99.02) (width 1) (layer F.Cu) (net 26))
  4613. (segment (start 96.48 99.02) (end 96.52 99.06) (width 1) (layer F.Cu) (net 26))
  4614. (segment (start 77.47 99.06) (end 81.32 99.06) (width 1) (layer F.Cu) (net 26))
  4615. (segment (start 69.85 99.06) (end 77.47 99.06) (width 1) (layer F.Cu) (net 26))
  4616. (segment (start 95.25 83.82) (end 96.48 85.05) (width 1) (layer F.Cu) (net 26))
  4617. (segment (start 96.48 85.05) (end 96.48 91.44) (width 1) (layer F.Cu) (net 26))
  4618. (segment (start 110.49 53.34) (end 109.600001 53.34) (width 1) (layer F.Cu) (net 27))
  4619. (segment (start 109.600001 53.34) (end 109.600001 54.132001) (width 1) (layer F.Cu) (net 27))
  4620. (segment (start 109.600001 54.132001) (end 108.742001 54.990001) (width 1) (layer F.Cu) (net 27))
  4621. (segment (start 108.742001 54.990001) (end 107.157999 54.990001) (width 1) (layer F.Cu) (net 27))
  4622. (segment (start 107.157999 54.990001) (end 106.908008 54.74001) (width 1) (layer F.Cu) (net 27))
  4623. (segment (start 106.908008 54.74001) (end 103.43948 54.74001) (width 1) (layer F.Cu) (net 27))
  4624. (segment (start 100.291361 57.888129) (end 100.291361 101.977636) (width 1) (layer F.Cu) (net 27))
  4625. (segment (start 103.43948 54.74001) (end 100.291361 57.888129) (width 1) (layer F.Cu) (net 27))
  4626. (segment (start 88.422001 103.827262) (end 87.672002 103.077263) (width 1) (layer F.Cu) (net 27))
  4627. (segment (start 100.291361 101.977636) (end 95.134001 107.134996) (width 1) (layer F.Cu) (net 27))
  4628. (segment (start 95.134001 107.134996) (end 91.729735 107.134996) (width 1) (layer F.Cu) (net 27))
  4629. (segment (start 91.729735 107.134996) (end 88.422001 103.827262) (width 1) (layer F.Cu) (net 27))
  4630. (segment (start 86.36 105.41) (end 87.672002 104.097998) (width 1) (layer B.Cu) (net 27))
  4631. (segment (start 87.672002 104.097998) (end 87.672002 103.077263) (width 1) (layer B.Cu) (net 27))
  4632. (via (at 87.672002 103.077263) (size 1.5) (drill 1) (layers F.Cu B.Cu) (net 27))
  4633. (segment (start 87.67 99.06) (end 87.67 102.87) (width 1) (layer B.Cu) (net 27))
  4634. (segment (start 87.67 102.87) (end 87.67 104.1) (width 1) (layer B.Cu) (net 27))
  4635. (segment (start 77.47 96.52) (end 77.47 93.98) (width 1) (layer F.Cu) (net 27))
  4636. (segment (start 87.67 104.1) (end 86.36 105.41) (width 1) (layer B.Cu) (net 27))
  4637. (segment (start 83.82 99.06) (end 87.67 99.06) (width 1) (layer F.Cu) (net 27))
  4638. (segment (start 77.47 96.52) (end 78.212949 95.777051) (width 1) (layer B.Cu) (net 27))
  4639. (segment (start 78.212949 95.777051) (end 81.668421 95.777051) (width 1) (layer B.Cu) (net 27))
  4640. (segment (start 81.668421 95.777051) (end 83.82 97.92863) (width 1) (layer B.Cu) (net 27))
  4641. (segment (start 83.82 97.92863) (end 83.82 99.06) (width 1) (layer B.Cu) (net 27))
  4642. (segment (start 119.36474 50.8) (end 122.756114 54.191374) (width 1) (layer B.Cu) (net 28))
  4643. (segment (start 130.700639 54.191374) (end 131.761299 54.191374) (width 1) (layer B.Cu) (net 28))
  4644. (segment (start 122.756114 54.191374) (end 130.700639 54.191374) (width 1) (layer B.Cu) (net 28))
  4645. (segment (start 116.84 50.8) (end 119.36474 50.8) (width 1) (layer B.Cu) (net 28))
  4646. (segment (start 149.86 60.96) (end 151.560001 62.660001) (width 1) (layer F.Cu) (net 28))
  4647. (segment (start 151.560001 62.660001) (end 158.141369 62.660001) (width 1) (layer F.Cu) (net 28))
  4648. (segment (start 158.141369 62.660001) (end 158.71 62.09137) (width 1) (layer F.Cu) (net 28))
  4649. (segment (start 158.71 62.09137) (end 158.71 60.96) (width 1) (layer F.Cu) (net 28))
  4650. (segment (start 146.05 60.96) (end 149.86 60.96) (width 1) (layer F.Cu) (net 28))
  4651. (segment (start 138.43 60.96) (end 146.05 60.96) (width 1) (layer F.Cu) (net 28))
  4652. (segment (start 165.06 60.96) (end 165.06 66.08) (width 1) (layer B.Cu) (net 28))
  4653. (segment (start 165.06 66.08) (end 163.83 67.31) (width 1) (layer B.Cu) (net 28))
  4654. (segment (start 158.71 53.34) (end 158.71 54.47137) (width 1) (layer F.Cu) (net 28))
  4655. (segment (start 158.71 54.47137) (end 158.141369 55.040001) (width 1) (layer F.Cu) (net 28))
  4656. (segment (start 153.159999 54.139999) (end 152.36 53.34) (width 1) (layer F.Cu) (net 28))
  4657. (segment (start 158.141369 55.040001) (end 154.060001 55.040001) (width 1) (layer F.Cu) (net 28))
  4658. (segment (start 154.060001 55.040001) (end 153.159999 54.139999) (width 1) (layer F.Cu) (net 28))
  4659. (segment (start 165.06 53.34) (end 165.06 49.49) (width 1) (layer F.Cu) (net 28))
  4660. (segment (start 165.06 49.49) (end 161.29 45.72) (width 1) (layer F.Cu) (net 28))
  4661. (segment (start 131.761299 55.252034) (end 131.761299 54.191374) (width 1) (layer F.Cu) (net 28))
  4662. (segment (start 133.858 59.182) (end 131.761299 57.085299) (width 1) (layer F.Cu) (net 28))
  4663. (segment (start 131.761299 57.085299) (end 131.761299 55.252034) (width 1) (layer F.Cu) (net 28))
  4664. (segment (start 131.761299 53.130714) (end 131.761299 54.191374) (width 1) (layer F.Cu) (net 28))
  4665. (segment (start 134.62 45.72) (end 131.761299 48.578701) (width 1) (layer F.Cu) (net 28))
  4666. (segment (start 131.761299 48.578701) (end 131.761299 53.130714) (width 1) (layer F.Cu) (net 28))
  4667. (via (at 131.761299 54.191374) (size 1.5) (drill 1) (layers F.Cu B.Cu) (net 28))
  4668. (segment (start 138.43 60.96) (end 135.636 60.96) (width 1) (layer B.Cu) (net 28))
  4669. (segment (start 135.636 60.96) (end 133.858 59.182) (width 1) (layer B.Cu) (net 28))
  4670. (segment (start 149.86 58.674) (end 152.36 56.174) (width 1) (layer F.Cu) (net 28))
  4671. (segment (start 152.36 56.174) (end 152.36 53.34) (width 1) (layer F.Cu) (net 28))
  4672. (segment (start 149.86 60.96) (end 149.86 58.674) (width 1) (layer F.Cu) (net 28))
  4673. (segment (start 165.06 60.96) (end 165.06 62.09137) (width 1) (layer F.Cu) (net 28))
  4674. (segment (start 165.06 62.09137) (end 164.491369 62.660001) (width 1) (layer F.Cu) (net 28))
  4675. (segment (start 160.410001 62.660001) (end 159.509999 61.759999) (width 1) (layer F.Cu) (net 28))
  4676. (segment (start 164.491369 62.660001) (end 160.410001 62.660001) (width 1) (layer F.Cu) (net 28))
  4677. (segment (start 159.509999 61.759999) (end 158.71 60.96) (width 1) (layer F.Cu) (net 28))
  4678. (segment (start 165.06 53.34) (end 165.06 60.96) (width 1) (layer F.Cu) (net 28))
  4679. (segment (start 114.3 49.73934) (end 114.3 50.8) (width 1) (layer B.Cu) (net 29))
  4680. (segment (start 114.889341 49.149999) (end 114.3 49.73934) (width 1) (layer B.Cu) (net 29))
  4681. (segment (start 119.694653 49.149999) (end 114.889341 49.149999) (width 1) (layer B.Cu) (net 29))
  4682. (segment (start 122.987605 52.442951) (end 119.694653 49.149999) (width 1) (layer B.Cu) (net 29))
  4683. (segment (start 135.408617 52.442951) (end 122.987605 52.442951) (width 1) (layer B.Cu) (net 29))
  4684. (segment (start 136.154519 51.697049) (end 135.408617 52.442951) (width 1) (layer B.Cu) (net 29))
  4685. (segment (start 141.867049 51.697049) (end 136.154519 51.697049) (width 1) (layer B.Cu) (net 29))
  4686. (segment (start 146.05 55.88) (end 141.867049 51.697049) (width 1) (layer B.Cu) (net 29))
  4687. (segment (start 156.21 60.96) (end 156.21 67.31) (width 1) (layer B.Cu) (net 29))
  4688. (segment (start 152.36 60.96) (end 156.21 60.96) (width 1) (layer B.Cu) (net 29))
  4689. (segment (start 146.05 58.42) (end 150.95137 58.42) (width 1) (layer B.Cu) (net 29))
  4690. (segment (start 150.95137 58.42) (end 152.36 59.82863) (width 1) (layer B.Cu) (net 29))
  4691. (segment (start 152.36 59.82863) (end 152.36 60.96) (width 1) (layer B.Cu) (net 29))
  4692. (segment (start 146.05 55.88) (end 146.05 58.42) (width 1) (layer B.Cu) (net 29))
  4693. (segment (start 134.62 82.55) (end 113.03 60.96) (width 1) (layer B.Cu) (net 30))
  4694. (segment (start 113.03 60.96) (end 113.03 55.415738) (width 1) (layer B.Cu) (net 30))
  4695. (segment (start 113.03 55.415738) (end 113.03 53.34) (width 1) (layer B.Cu) (net 30))
  4696. (segment (start 132.919999 84.250001) (end 133.877051 83.292949) (width 1) (layer F.Cu) (net 30))
  4697. (segment (start 133.877051 83.292949) (end 134.62 82.55) (width 1) (layer F.Cu) (net 30))
  4698. (segment (start 134.62 96.52) (end 132.919999 94.819999) (width 1) (layer F.Cu) (net 30))
  4699. (segment (start 132.919999 94.819999) (end 132.919999 84.250001) (width 1) (layer F.Cu) (net 30))
  4700. (segment (start 161.29 90.17) (end 161.720001 89.739999) (width 1) (layer F.Cu) (net 30))
  4701. (segment (start 160.02 90.30863) (end 160.02 91.44) (width 1) (layer F.Cu) (net 30))
  4702. (segment (start 159.451369 89.739999) (end 160.02 90.30863) (width 1) (layer F.Cu) (net 30))
  4703. (segment (start 161.29 90.17) (end 160.02 91.44) (width 1) (layer F.Cu) (net 30))
  4704. (segment (start 166.33 90.30863) (end 166.33 91.44) (width 1) (layer F.Cu) (net 30))
  4705. (segment (start 161.720001 89.739999) (end 165.761369 89.739999) (width 1) (layer F.Cu) (net 30))
  4706. (segment (start 166.33 91.44) (end 166.33 99.06) (width 1) (layer F.Cu) (net 30))
  4707. (segment (start 165.761369 89.739999) (end 166.33 90.30863) (width 1) (layer F.Cu) (net 30))
  4708. (segment (start 153.67 91.44) (end 155.370001 89.739999) (width 1) (layer F.Cu) (net 30))
  4709. (segment (start 155.370001 89.739999) (end 159.451369 89.739999) (width 1) (layer F.Cu) (net 30))
  4710. (segment (start 161.29 83.82) (end 161.29 90.17) (width 1) (layer F.Cu) (net 30))
  4711. (segment (start 160.02 99.06) (end 160.02 100.19137) (width 1) (layer F.Cu) (net 30))
  4712. (segment (start 160.02 100.19137) (end 159.451369 100.760001) (width 1) (layer F.Cu) (net 30))
  4713. (segment (start 159.451369 100.760001) (end 152.870001 100.760001) (width 1) (layer F.Cu) (net 30))
  4714. (segment (start 152.870001 100.760001) (end 151.17 99.06) (width 1) (layer F.Cu) (net 30))
  4715. (segment (start 166.33 100.19137) (end 165.761369 100.760001) (width 1) (layer F.Cu) (net 30))
  4716. (segment (start 166.33 99.06) (end 166.33 100.624) (width 1) (layer F.Cu) (net 30))
  4717. (segment (start 166.33 100.624) (end 161.29 105.664) (width 1) (layer F.Cu) (net 30))
  4718. (segment (start 166.33 99.06) (end 166.33 100.19137) (width 1) (layer F.Cu) (net 30))
  4719. (segment (start 165.761369 100.760001) (end 161.720001 100.760001) (width 1) (layer F.Cu) (net 30))
  4720. (segment (start 161.720001 100.760001) (end 160.819999 99.859999) (width 1) (layer F.Cu) (net 30))
  4721. (segment (start 160.819999 99.859999) (end 160.02 99.06) (width 1) (layer F.Cu) (net 30))
  4722. (segment (start 146.05 99.06) (end 151.17 99.06) (width 1) (layer B.Cu) (net 30))
  4723. (segment (start 134.62 96.52) (end 135.89 96.52) (width 1) (layer B.Cu) (net 30))
  4724. (segment (start 138.43 99.06) (end 146.05 99.06) (width 1) (layer B.Cu) (net 30))
  4725. (segment (start 135.89 96.52) (end 138.43 99.06) (width 1) (layer B.Cu) (net 30))
  4726. (segment (start 115.57 53.34) (end 115.586729 53.356729) (width 1) (layer B.Cu) (net 31))
  4727. (segment (start 136.262951 79.221383) (end 136.262951 85.24364) (width 1) (layer B.Cu) (net 31))
  4728. (segment (start 115.586729 53.356729) (end 115.586729 59.572699) (width 1) (layer B.Cu) (net 31))
  4729. (segment (start 115.586729 59.572699) (end 134.381079 78.367049) (width 1) (layer B.Cu) (net 31))
  4730. (segment (start 134.381079 78.367049) (end 135.408617 78.367049) (width 1) (layer B.Cu) (net 31))
  4731. (segment (start 136.262951 85.24364) (end 144.999311 93.98) (width 1) (layer B.Cu) (net 31))
  4732. (segment (start 135.408617 78.367049) (end 136.262951 79.221383) (width 1) (layer B.Cu) (net 31))
  4733. (segment (start 144.999311 93.98) (end 146.05 93.98) (width 1) (layer B.Cu) (net 31))
  4734. (segment (start 153.67 97.92863) (end 152.26137 96.52) (width 1) (layer F.Cu) (net 31))
  4735. (segment (start 153.67 99.06) (end 153.67 97.92863) (width 1) (layer F.Cu) (net 31))
  4736. (segment (start 157.52 99.06) (end 153.67 99.06) (width 1) (layer F.Cu) (net 31))
  4737. (segment (start 152.26137 96.52) (end 147.100689 96.52) (width 1) (layer F.Cu) (net 31))
  4738. (segment (start 146.05 96.52) (end 146.05 93.98) (width 1) (layer F.Cu) (net 31))
  4739. (segment (start 147.100689 96.52) (end 146.05 96.52) (width 1) (layer F.Cu) (net 31))
  4740. (segment (start 153.67 99.06) (end 153.67 105.664) (width 1) (layer B.Cu) (net 31))
  4741. (segment (start 107.95 109.22) (end 98.567564 109.22) (width 1) (layer F.Cu) (net 32))
  4742. (segment (start 98.567564 109.22) (end 91.52 116.267564) (width 1) (layer F.Cu) (net 32))
  4743. (segment (start 91.52 116.267564) (end 91.52 118.142564) (width 1) (layer F.Cu) (net 32))
  4744. (segment (start 120.065 109.22) (end 116.63066 109.22) (width 1) (layer B.Cu) (net 33))
  4745. (segment (start 127.08 118.11) (end 127.08 116.235) (width 1) (layer B.Cu) (net 33))
  4746. (segment (start 127.08 116.235) (end 120.065 109.22) (width 1) (layer B.Cu) (net 33))
  4747. (segment (start 116.63066 109.22) (end 115.57 109.22) (width 1) (layer B.Cu) (net 33))
  4748. (segment (start 96.52 118.142564) (end 97.757436 118.142564) (width 1) (layer B.Cu) (net 33))
  4749. (segment (start 97.757436 118.142564) (end 103.055001 112.844999) (width 1) (layer B.Cu) (net 33))
  4750. (segment (start 103.055001 112.844999) (end 111.945001 112.844999) (width 1) (layer B.Cu) (net 33))
  4751. (segment (start 111.945001 112.844999) (end 114.820001 109.969999) (width 1) (layer B.Cu) (net 33))
  4752. (segment (start 114.820001 109.969999) (end 115.57 109.22) (width 1) (layer B.Cu) (net 33))
  4753. (segment (start 129.58 112.518461) (end 129.58 118.11) (width 1) (layer F.Cu) (net 34))
  4754. (segment (start 120.929475 103.867936) (end 129.58 112.518461) (width 1) (layer F.Cu) (net 34))
  4755. (segment (start 117.112064 103.867936) (end 119.868815 103.867936) (width 1) (layer B.Cu) (net 34))
  4756. (segment (start 114.3 106.68) (end 117.112064 103.867936) (width 1) (layer B.Cu) (net 34))
  4757. (segment (start 119.868815 103.867936) (end 120.929475 103.867936) (width 1) (layer B.Cu) (net 34))
  4758. (via (at 120.929475 103.867936) (size 1.5) (drill 1) (layers F.Cu B.Cu) (net 34))
  4759. (segment (start 132.08 118.11) (end 139.7 118.11) (width 1) (layer B.Cu) (net 35))
  4760. (segment (start 139.7 118.11) (end 143.51 121.92) (width 1) (layer B.Cu) (net 35))
  4761. )