PsuSwitchModule.kicad_pcb-bak 311 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683
  1. (kicad_pcb (version 4) (host pcbnew 4.0.7)
  2. (general
  3. (links 139)
  4. (no_connects 0)
  5. (area 49.454999 34.214999 175.335001 113.105001)
  6. (thickness 1.6)
  7. (drawings 29)
  8. (tracks 610)
  9. (zones 0)
  10. (modules 68)
  11. (nets 35)
  12. )
  13. (page A4)
  14. (layers
  15. (0 F.Cu signal)
  16. (31 B.Cu signal)
  17. (33 F.Adhes user hide)
  18. (35 F.Paste user hide)
  19. (37 F.SilkS user)
  20. (39 F.Mask user)
  21. (40 Dwgs.User user)
  22. (41 Cmts.User user hide)
  23. (42 Eco1.User user hide)
  24. (43 Eco2.User user hide)
  25. (44 Edge.Cuts user)
  26. (45 Margin user hide)
  27. (47 F.CrtYd user)
  28. (49 F.Fab user hide)
  29. )
  30. (setup
  31. (last_trace_width 1)
  32. (trace_clearance 0.4)
  33. (zone_clearance 0.35)
  34. (zone_45_only no)
  35. (trace_min 0.2)
  36. (segment_width 0.2)
  37. (edge_width 0.15)
  38. (via_size 1.5)
  39. (via_drill 1)
  40. (via_min_size 0.4)
  41. (via_min_drill 0.3)
  42. (uvia_size 1)
  43. (uvia_drill 0.5)
  44. (uvias_allowed no)
  45. (uvia_min_size 0.2)
  46. (uvia_min_drill 0.1)
  47. (pcb_text_width 0.3)
  48. (pcb_text_size 1.5 1.5)
  49. (mod_edge_width 0.15)
  50. (mod_text_size 1 1)
  51. (mod_text_width 0.15)
  52. (pad_size 1.524 1.524)
  53. (pad_drill 0.762)
  54. (pad_to_mask_clearance 0.2)
  55. (aux_axis_origin 0 0)
  56. (visible_elements 7FFFEFFF)
  57. (pcbplotparams
  58. (layerselection 0x00030_80000001)
  59. (usegerberextensions false)
  60. (excludeedgelayer true)
  61. (linewidth 0.100000)
  62. (plotframeref false)
  63. (viasonmask false)
  64. (mode 1)
  65. (useauxorigin false)
  66. (hpglpennumber 1)
  67. (hpglpenspeed 20)
  68. (hpglpendiameter 15)
  69. (hpglpenoverlay 2)
  70. (psnegative false)
  71. (psa4output false)
  72. (plotreference true)
  73. (plotvalue true)
  74. (plotinvisibletext false)
  75. (padsonsilk false)
  76. (subtractmaskfromsilk false)
  77. (outputformat 1)
  78. (mirror false)
  79. (drillshape 1)
  80. (scaleselection 1)
  81. (outputdirectory ""))
  82. )
  83. (net 0 "")
  84. (net 1 "Net-(C1-Pad1)")
  85. (net 2 Earth)
  86. (net 3 "Net-(C3-Pad2)")
  87. (net 4 "Net-(C7-Pad2)")
  88. (net 5 "Net-(C10-Pad1)")
  89. (net 6 "Net-(C11-Pad2)")
  90. (net 7 "Net-(C13-Pad1)")
  91. (net 8 "Net-(C15-Pad2)")
  92. (net 9 "Net-(IC1-Pad2)")
  93. (net 10 "Net-(IC2-Pad2)")
  94. (net 11 "Net-(IC3-Pad2)")
  95. (net 12 "Net-(IC4-Pad2)")
  96. (net 13 DC_IN)
  97. (net 14 DC_GND)
  98. (net 15 ARD_TEMP)
  99. (net 16 ARD_GND)
  100. (net 17 "Net-(R2-Pad2)")
  101. (net 18 "Net-(R4-Pad2)")
  102. (net 19 "Net-(R6-Pad2)")
  103. (net 20 "Net-(R8-Pad2)")
  104. (net 21 "Net-(C20-Pad1)")
  105. (net 22 "Net-(C17-Pad1)")
  106. (net 23 "Net-(C19-Pad1)")
  107. (net 24 "Net-(C21-Pad1)")
  108. (net 25 "Net-(C23-Pad1)")
  109. (net 26 "Net-(R3-Pad1)")
  110. (net 27 "Net-(R5-Pad1)")
  111. (net 28 "Net-(R7-Pad1)")
  112. (net 29 "Net-(R9-Pad1)")
  113. (net 30 ARD_PWM_A)
  114. (net 31 ARD_PWM_B)
  115. (net 32 ARD_PWM_C)
  116. (net 33 ARD_PWM_D)
  117. (net 34 ARD_5V)
  118. (net_class Default "This is the default net class."
  119. (clearance 0.4)
  120. (trace_width 1)
  121. (via_dia 1.5)
  122. (via_drill 1)
  123. (uvia_dia 1)
  124. (uvia_drill 0.5)
  125. (add_net ARD_5V)
  126. (add_net ARD_GND)
  127. (add_net ARD_PWM_A)
  128. (add_net ARD_PWM_B)
  129. (add_net ARD_PWM_C)
  130. (add_net ARD_PWM_D)
  131. (add_net ARD_TEMP)
  132. (add_net DC_GND)
  133. (add_net DC_IN)
  134. (add_net Earth)
  135. (add_net "Net-(C1-Pad1)")
  136. (add_net "Net-(C10-Pad1)")
  137. (add_net "Net-(C11-Pad2)")
  138. (add_net "Net-(C13-Pad1)")
  139. (add_net "Net-(C15-Pad2)")
  140. (add_net "Net-(C17-Pad1)")
  141. (add_net "Net-(C19-Pad1)")
  142. (add_net "Net-(C20-Pad1)")
  143. (add_net "Net-(C21-Pad1)")
  144. (add_net "Net-(C23-Pad1)")
  145. (add_net "Net-(C3-Pad2)")
  146. (add_net "Net-(C7-Pad2)")
  147. (add_net "Net-(IC1-Pad2)")
  148. (add_net "Net-(IC2-Pad2)")
  149. (add_net "Net-(IC3-Pad2)")
  150. (add_net "Net-(IC4-Pad2)")
  151. (add_net "Net-(R2-Pad2)")
  152. (add_net "Net-(R3-Pad1)")
  153. (add_net "Net-(R4-Pad2)")
  154. (add_net "Net-(R5-Pad1)")
  155. (add_net "Net-(R6-Pad2)")
  156. (add_net "Net-(R7-Pad1)")
  157. (add_net "Net-(R8-Pad2)")
  158. (add_net "Net-(R9-Pad1)")
  159. )
  160. (module Housings_DIP:DIP-6_W7.62mm (layer F.Cu) (tedit 59C78D6B) (tstamp 59EF6872)
  161. (at 127.635 56.515)
  162. (descr "6-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils)")
  163. (tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil")
  164. (path /59A71299/59A6DAA6)
  165. (fp_text reference U6 (at 3.81 -2.33) (layer F.SilkS)
  166. (effects (font (size 1 1) (thickness 0.15)))
  167. )
  168. (fp_text value H11N1M (at 3.81 7.41) (layer F.Fab)
  169. (effects (font (size 1 1) (thickness 0.15)))
  170. )
  171. (fp_arc (start 3.81 -1.33) (end 2.81 -1.33) (angle -180) (layer F.SilkS) (width 0.12))
  172. (fp_line (start 1.635 -1.27) (end 6.985 -1.27) (layer F.Fab) (width 0.1))
  173. (fp_line (start 6.985 -1.27) (end 6.985 6.35) (layer F.Fab) (width 0.1))
  174. (fp_line (start 6.985 6.35) (end 0.635 6.35) (layer F.Fab) (width 0.1))
  175. (fp_line (start 0.635 6.35) (end 0.635 -0.27) (layer F.Fab) (width 0.1))
  176. (fp_line (start 0.635 -0.27) (end 1.635 -1.27) (layer F.Fab) (width 0.1))
  177. (fp_line (start 2.81 -1.33) (end 1.16 -1.33) (layer F.SilkS) (width 0.12))
  178. (fp_line (start 1.16 -1.33) (end 1.16 6.41) (layer F.SilkS) (width 0.12))
  179. (fp_line (start 1.16 6.41) (end 6.46 6.41) (layer F.SilkS) (width 0.12))
  180. (fp_line (start 6.46 6.41) (end 6.46 -1.33) (layer F.SilkS) (width 0.12))
  181. (fp_line (start 6.46 -1.33) (end 4.81 -1.33) (layer F.SilkS) (width 0.12))
  182. (fp_line (start -1.1 -1.55) (end -1.1 6.6) (layer F.CrtYd) (width 0.05))
  183. (fp_line (start -1.1 6.6) (end 8.7 6.6) (layer F.CrtYd) (width 0.05))
  184. (fp_line (start 8.7 6.6) (end 8.7 -1.55) (layer F.CrtYd) (width 0.05))
  185. (fp_line (start 8.7 -1.55) (end -1.1 -1.55) (layer F.CrtYd) (width 0.05))
  186. (fp_text user %R (at 3.81 2.54) (layer F.Fab)
  187. (effects (font (size 1 1) (thickness 0.15)))
  188. )
  189. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  190. (net 19 "Net-(R6-Pad2)"))
  191. (pad 4 thru_hole oval (at 7.62 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  192. (net 11 "Net-(IC3-Pad2)"))
  193. (pad 2 thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  194. (net 16 ARD_GND))
  195. (pad 5 thru_hole oval (at 7.62 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  196. (net 2 Earth))
  197. (pad 3 thru_hole oval (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask))
  198. (pad 6 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  199. (net 24 "Net-(C21-Pad1)"))
  200. (model ${KISYS3DMOD}/Housings_DIP.3dshapes/DIP-6_W7.62mm.wrl
  201. (at (xyz 0 0 0))
  202. (scale (xyz 1 1 1))
  203. (rotate (xyz 0 0 0))
  204. )
  205. )
  206. (module Mounting_Holes:MountingHole_4.3mm_M4 (layer F.Cu) (tedit 59A7ED15) (tstamp 59A7F116)
  207. (at 54.61 107.95)
  208. (descr "Mounting Hole 4.3mm, no annular, M4")
  209. (tags "mounting hole 4.3mm no annular m4")
  210. (fp_text reference "" (at 0 -5.3) (layer F.SilkS)
  211. (effects (font (size 1 1) (thickness 0.15)))
  212. )
  213. (fp_text value MountingHole_4.3mm_M4 (at 0 5.3) (layer F.Fab)
  214. (effects (font (size 1 1) (thickness 0.15)))
  215. )
  216. (fp_circle (center 0 0) (end 4.3 0) (layer Cmts.User) (width 0.15))
  217. (fp_circle (center 0 0) (end 4.55 0) (layer F.CrtYd) (width 0.05))
  218. (pad 1 np_thru_hole circle (at 0 0) (size 4.3 4.3) (drill 4.3) (layers *.Cu *.Mask))
  219. )
  220. (module Mounting_Holes:MountingHole_4.3mm_M4 (layer F.Cu) (tedit 59A7ED1B) (tstamp 59A7F102)
  221. (at 170.18 107.95)
  222. (descr "Mounting Hole 4.3mm, no annular, M4")
  223. (tags "mounting hole 4.3mm no annular m4")
  224. (fp_text reference "" (at 0 -5.3) (layer F.SilkS)
  225. (effects (font (size 1 1) (thickness 0.15)))
  226. )
  227. (fp_text value MountingHole_4.3mm_M4 (at 0 5.3) (layer F.Fab)
  228. (effects (font (size 1 1) (thickness 0.15)))
  229. )
  230. (fp_circle (center 0 0) (end 4.3 0) (layer Cmts.User) (width 0.15))
  231. (fp_circle (center 0 0) (end 4.55 0) (layer F.CrtYd) (width 0.05))
  232. (pad 1 np_thru_hole circle (at 0 0) (size 4.3 4.3) (drill 4.3) (layers *.Cu *.Mask))
  233. )
  234. (module Mounting_Holes:MountingHole_4.3mm_M4 (layer F.Cu) (tedit 59A7ED10) (tstamp 59A7F0FC)
  235. (at 170.18 39.37)
  236. (descr "Mounting Hole 4.3mm, no annular, M4")
  237. (tags "mounting hole 4.3mm no annular m4")
  238. (fp_text reference "" (at 0 -5.3) (layer F.SilkS)
  239. (effects (font (size 1 1) (thickness 0.15)))
  240. )
  241. (fp_text value MountingHole_4.3mm_M4 (at 0 5.3) (layer F.Fab)
  242. (effects (font (size 1 1) (thickness 0.15)))
  243. )
  244. (fp_circle (center 0 0) (end 4.3 0) (layer Cmts.User) (width 0.15))
  245. (fp_circle (center 0 0) (end 4.55 0) (layer F.CrtYd) (width 0.05))
  246. (pad 1 np_thru_hole circle (at 0 0) (size 4.3 4.3) (drill 4.3) (layers *.Cu *.Mask))
  247. )
  248. (module Capacitors_THT:CP_Radial_Tantal_D4.5mm_P2.50mm (layer F.Cu) (tedit 597C781B) (tstamp 59A6E9D7)
  249. (at 156.21 53.34)
  250. (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")
  251. (tags "CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor")
  252. (path /59A71299/59A6D3E0)
  253. (fp_text reference C10 (at 1.25 -3.56) (layer F.SilkS)
  254. (effects (font (size 1 1) (thickness 0.15)))
  255. )
  256. (fp_text value 100nF (at 1.25 3.56) (layer F.Fab)
  257. (effects (font (size 1 1) (thickness 0.15)))
  258. )
  259. (fp_arc (start 1.25 0) (end -0.770693 -1.18) (angle 119.4) (layer F.SilkS) (width 0.12))
  260. (fp_arc (start 1.25 0) (end -0.770693 1.18) (angle -119.4) (layer F.SilkS) (width 0.12))
  261. (fp_arc (start 1.25 0) (end 3.270693 -1.18) (angle 60.6) (layer F.SilkS) (width 0.12))
  262. (fp_circle (center 1.25 0) (end 3.5 0) (layer F.Fab) (width 0.1))
  263. (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
  264. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
  265. (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
  266. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
  267. (fp_line (start -1.35 -2.6) (end -1.35 2.6) (layer F.CrtYd) (width 0.05))
  268. (fp_line (start -1.35 2.6) (end 3.85 2.6) (layer F.CrtYd) (width 0.05))
  269. (fp_line (start 3.85 2.6) (end 3.85 -2.6) (layer F.CrtYd) (width 0.05))
  270. (fp_line (start 3.85 -2.6) (end -1.35 -2.6) (layer F.CrtYd) (width 0.05))
  271. (fp_text user %R (at 1.25 0) (layer F.Fab)
  272. (effects (font (size 1 1) (thickness 0.15)))
  273. )
  274. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  275. (net 5 "Net-(C10-Pad1)"))
  276. (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  277. (net 2 Earth))
  278. (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D4.5mm_P2.50mm.wrl
  279. (at (xyz 0 0 0))
  280. (scale (xyz 1 1 1))
  281. (rotate (xyz 0 0 0))
  282. )
  283. )
  284. (module PartsLibraries:TC4422AVPA (layer F.Cu) (tedit 592E9A52) (tstamp 59A6EF40)
  285. (at 127 80.01)
  286. (descr DIP254P762X432-8)
  287. (tags "Integrated Circuit")
  288. (path /59A712A3/59A6D3EA)
  289. (fp_text reference U7 (at 3.81 -2.286) (layer F.SilkS)
  290. (effects (font (size 1.27 1.27) (thickness 0.254)))
  291. )
  292. (fp_text value NME1212DC (at 3.556 9.906) (layer F.SilkS) hide
  293. (effects (font (size 1.27 1.27) (thickness 0.254)))
  294. )
  295. (fp_line (start 0.508 8.7122) (end 0.508 -1.0922) (layer Dwgs.User) (width 0.1524))
  296. (fp_line (start 0.508 -1.1938) (end 7.112 -1.1938) (layer Dwgs.User) (width 0.1524))
  297. (fp_line (start -0.4826 3.048) (end 0.508 3.048) (layer Dwgs.User) (width 0.1524))
  298. (fp_line (start -0.4826 2.032) (end -0.4826 3.048) (layer Dwgs.User) (width 0.1524))
  299. (fp_line (start 0.508 2.032) (end -0.4826 2.032) (layer Dwgs.User) (width 0.1524))
  300. (fp_line (start 0.508 3.048) (end 0.508 2.032) (layer Dwgs.User) (width 0.1524))
  301. (fp_line (start 7.112 1.5748) (end 7.112 0.9652) (layer F.SilkS) (width 0.1524))
  302. (fp_line (start 7.112 4.1148) (end 7.112 3.5052) (layer F.SilkS) (width 0.1524))
  303. (fp_line (start 0.508 6.0452) (end 0.508 6.6548) (layer F.SilkS) (width 0.1524))
  304. (fp_line (start 0.508 3.5052) (end 0.508 4.1148) (layer F.SilkS) (width 0.1524))
  305. (fp_line (start 0.508 8.7122) (end 7.112 8.7122) (layer F.SilkS) (width 0.1524))
  306. (fp_line (start 7.112 6.6548) (end 7.112 6.0452) (layer F.SilkS) (width 0.1524))
  307. (fp_line (start 0.508 1.0922) (end 0.508 1.5748) (layer F.SilkS) (width 0.1524))
  308. (fp_line (start 0.508 0.508) (end 0.508 -0.508) (layer Dwgs.User) (width 0.1524))
  309. (fp_line (start 0.508 -0.508) (end -0.4826 -0.508) (layer Dwgs.User) (width 0.1524))
  310. (fp_line (start -0.4826 -0.508) (end -0.4826 0.508) (layer Dwgs.User) (width 0.1524))
  311. (fp_line (start -0.4826 0.508) (end 0.508 0.508) (layer Dwgs.User) (width 0.1524))
  312. (fp_line (start 0.508 5.588) (end 0.508 4.572) (layer Dwgs.User) (width 0.1524))
  313. (fp_line (start 0.508 4.572) (end -0.4826 4.572) (layer Dwgs.User) (width 0.1524))
  314. (fp_line (start -0.4826 4.572) (end -0.4826 5.588) (layer Dwgs.User) (width 0.1524))
  315. (fp_line (start -0.4826 5.588) (end 0.508 5.588) (layer Dwgs.User) (width 0.1524))
  316. (fp_line (start 0.508 8.128) (end 0.508 7.112) (layer Dwgs.User) (width 0.1524))
  317. (fp_line (start 0.508 7.112) (end -0.4826 7.1374) (layer Dwgs.User) (width 0.1524))
  318. (fp_line (start -0.4826 7.1374) (end -0.4826 8.128) (layer Dwgs.User) (width 0.1524))
  319. (fp_line (start -0.4826 8.128) (end 0.508 8.128) (layer Dwgs.User) (width 0.1524))
  320. (fp_line (start 7.112 7.112) (end 7.112 8.128) (layer Dwgs.User) (width 0.1524))
  321. (fp_line (start 7.112 8.128) (end 8.1026 8.1026) (layer Dwgs.User) (width 0.1524))
  322. (fp_line (start 8.1026 8.1026) (end 8.1026 7.112) (layer Dwgs.User) (width 0.1524))
  323. (fp_line (start 8.1026 7.112) (end 7.112 7.112) (layer Dwgs.User) (width 0.1524))
  324. (fp_line (start 7.112 4.572) (end 7.112 5.588) (layer Dwgs.User) (width 0.1524))
  325. (fp_line (start 7.112 5.588) (end 8.1026 5.5626) (layer Dwgs.User) (width 0.1524))
  326. (fp_line (start 8.1026 5.5626) (end 8.1026 4.572) (layer Dwgs.User) (width 0.1524))
  327. (fp_line (start 8.1026 4.572) (end 7.112 4.572) (layer Dwgs.User) (width 0.1524))
  328. (fp_line (start 7.112 2.032) (end 7.112 3.048) (layer Dwgs.User) (width 0.1524))
  329. (fp_line (start 7.112 3.048) (end 8.1026 3.048) (layer Dwgs.User) (width 0.1524))
  330. (fp_line (start 8.1026 3.048) (end 8.1026 2.032) (layer Dwgs.User) (width 0.1524))
  331. (fp_line (start 8.1026 2.032) (end 7.112 2.032) (layer Dwgs.User) (width 0.1524))
  332. (fp_line (start 7.112 -0.508) (end 7.112 0.508) (layer Dwgs.User) (width 0.1524))
  333. (fp_line (start 7.112 0.508) (end 8.1026 0.508) (layer Dwgs.User) (width 0.1524))
  334. (fp_line (start 8.1026 0.508) (end 8.1026 -0.508) (layer Dwgs.User) (width 0.1524))
  335. (fp_line (start 8.1026 -0.508) (end 7.112 -0.508) (layer Dwgs.User) (width 0.1524))
  336. (fp_line (start 0.508 8.7122) (end 7.112 8.7122) (layer Dwgs.User) (width 0.1524))
  337. (fp_line (start 7.112 8.7122) (end 7.112 -1.0922) (layer Dwgs.User) (width 0.1524))
  338. (pad 1 thru_hole rect (at 0 0 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  339. (net 14 DC_GND))
  340. (pad 2 thru_hole circle (at 0 2.54 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS))
  341. (pad 3 thru_hole circle (at 0 5.08 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS))
  342. (pad 4 thru_hole circle (at 0 7.62 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  343. (net 13 DC_IN))
  344. (pad 5 thru_hole circle (at 7.62 7.62 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  345. (net 7 "Net-(C13-Pad1)"))
  346. (pad 6 thru_hole circle (at 7.62 5.08 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS))
  347. (pad 7 thru_hole circle (at 7.62 2.54 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  348. (net 29 "Net-(R9-Pad1)"))
  349. (pad 8 thru_hole circle (at 7.62 0 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS))
  350. (model Housings_DIP.3dshapes/DIP-8_W7.62mm.wrl
  351. (at (xyz 0 0 0))
  352. (scale (xyz 1 1 1))
  353. (rotate (xyz 0 0 0))
  354. )
  355. )
  356. (module PartsLibraries:TC4422AVPA (layer F.Cu) (tedit 592E9A52) (tstamp 59A6EE9E)
  357. (at 58.42 80.01)
  358. (descr DIP254P762X432-8)
  359. (tags "Integrated Circuit")
  360. (path /59A7109E/59A6D3EA)
  361. (fp_text reference U3 (at 3.81 -2.286) (layer F.SilkS)
  362. (effects (font (size 1.27 1.27) (thickness 0.254)))
  363. )
  364. (fp_text value NME1212DC (at 3.556 9.906) (layer F.SilkS) hide
  365. (effects (font (size 1.27 1.27) (thickness 0.254)))
  366. )
  367. (fp_line (start 0.508 8.7122) (end 0.508 -1.0922) (layer Dwgs.User) (width 0.1524))
  368. (fp_line (start 0.508 -1.1938) (end 7.112 -1.1938) (layer Dwgs.User) (width 0.1524))
  369. (fp_line (start -0.4826 3.048) (end 0.508 3.048) (layer Dwgs.User) (width 0.1524))
  370. (fp_line (start -0.4826 2.032) (end -0.4826 3.048) (layer Dwgs.User) (width 0.1524))
  371. (fp_line (start 0.508 2.032) (end -0.4826 2.032) (layer Dwgs.User) (width 0.1524))
  372. (fp_line (start 0.508 3.048) (end 0.508 2.032) (layer Dwgs.User) (width 0.1524))
  373. (fp_line (start 7.112 1.5748) (end 7.112 0.9652) (layer F.SilkS) (width 0.1524))
  374. (fp_line (start 7.112 4.1148) (end 7.112 3.5052) (layer F.SilkS) (width 0.1524))
  375. (fp_line (start 0.508 6.0452) (end 0.508 6.6548) (layer F.SilkS) (width 0.1524))
  376. (fp_line (start 0.508 3.5052) (end 0.508 4.1148) (layer F.SilkS) (width 0.1524))
  377. (fp_line (start 0.508 8.7122) (end 7.112 8.7122) (layer F.SilkS) (width 0.1524))
  378. (fp_line (start 7.112 6.6548) (end 7.112 6.0452) (layer F.SilkS) (width 0.1524))
  379. (fp_line (start 0.508 1.0922) (end 0.508 1.5748) (layer F.SilkS) (width 0.1524))
  380. (fp_line (start 0.508 0.508) (end 0.508 -0.508) (layer Dwgs.User) (width 0.1524))
  381. (fp_line (start 0.508 -0.508) (end -0.4826 -0.508) (layer Dwgs.User) (width 0.1524))
  382. (fp_line (start -0.4826 -0.508) (end -0.4826 0.508) (layer Dwgs.User) (width 0.1524))
  383. (fp_line (start -0.4826 0.508) (end 0.508 0.508) (layer Dwgs.User) (width 0.1524))
  384. (fp_line (start 0.508 5.588) (end 0.508 4.572) (layer Dwgs.User) (width 0.1524))
  385. (fp_line (start 0.508 4.572) (end -0.4826 4.572) (layer Dwgs.User) (width 0.1524))
  386. (fp_line (start -0.4826 4.572) (end -0.4826 5.588) (layer Dwgs.User) (width 0.1524))
  387. (fp_line (start -0.4826 5.588) (end 0.508 5.588) (layer Dwgs.User) (width 0.1524))
  388. (fp_line (start 0.508 8.128) (end 0.508 7.112) (layer Dwgs.User) (width 0.1524))
  389. (fp_line (start 0.508 7.112) (end -0.4826 7.1374) (layer Dwgs.User) (width 0.1524))
  390. (fp_line (start -0.4826 7.1374) (end -0.4826 8.128) (layer Dwgs.User) (width 0.1524))
  391. (fp_line (start -0.4826 8.128) (end 0.508 8.128) (layer Dwgs.User) (width 0.1524))
  392. (fp_line (start 7.112 7.112) (end 7.112 8.128) (layer Dwgs.User) (width 0.1524))
  393. (fp_line (start 7.112 8.128) (end 8.1026 8.1026) (layer Dwgs.User) (width 0.1524))
  394. (fp_line (start 8.1026 8.1026) (end 8.1026 7.112) (layer Dwgs.User) (width 0.1524))
  395. (fp_line (start 8.1026 7.112) (end 7.112 7.112) (layer Dwgs.User) (width 0.1524))
  396. (fp_line (start 7.112 4.572) (end 7.112 5.588) (layer Dwgs.User) (width 0.1524))
  397. (fp_line (start 7.112 5.588) (end 8.1026 5.5626) (layer Dwgs.User) (width 0.1524))
  398. (fp_line (start 8.1026 5.5626) (end 8.1026 4.572) (layer Dwgs.User) (width 0.1524))
  399. (fp_line (start 8.1026 4.572) (end 7.112 4.572) (layer Dwgs.User) (width 0.1524))
  400. (fp_line (start 7.112 2.032) (end 7.112 3.048) (layer Dwgs.User) (width 0.1524))
  401. (fp_line (start 7.112 3.048) (end 8.1026 3.048) (layer Dwgs.User) (width 0.1524))
  402. (fp_line (start 8.1026 3.048) (end 8.1026 2.032) (layer Dwgs.User) (width 0.1524))
  403. (fp_line (start 8.1026 2.032) (end 7.112 2.032) (layer Dwgs.User) (width 0.1524))
  404. (fp_line (start 7.112 -0.508) (end 7.112 0.508) (layer Dwgs.User) (width 0.1524))
  405. (fp_line (start 7.112 0.508) (end 8.1026 0.508) (layer Dwgs.User) (width 0.1524))
  406. (fp_line (start 8.1026 0.508) (end 8.1026 -0.508) (layer Dwgs.User) (width 0.1524))
  407. (fp_line (start 8.1026 -0.508) (end 7.112 -0.508) (layer Dwgs.User) (width 0.1524))
  408. (fp_line (start 0.508 8.7122) (end 7.112 8.7122) (layer Dwgs.User) (width 0.1524))
  409. (fp_line (start 7.112 8.7122) (end 7.112 -1.0922) (layer Dwgs.User) (width 0.1524))
  410. (pad 1 thru_hole rect (at 0 0 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  411. (net 14 DC_GND))
  412. (pad 2 thru_hole circle (at 0 2.54 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS))
  413. (pad 3 thru_hole circle (at 0 5.08 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS))
  414. (pad 4 thru_hole circle (at 0 7.62 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  415. (net 13 DC_IN))
  416. (pad 5 thru_hole circle (at 7.62 7.62 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  417. (net 21 "Net-(C20-Pad1)"))
  418. (pad 6 thru_hole circle (at 7.62 5.08 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS))
  419. (pad 7 thru_hole circle (at 7.62 2.54 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  420. (net 27 "Net-(R5-Pad1)"))
  421. (pad 8 thru_hole circle (at 7.62 0 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS))
  422. (model Housings_DIP.3dshapes/DIP-8_W7.62mm.wrl
  423. (at (xyz 0 0 0))
  424. (scale (xyz 1 1 1))
  425. (rotate (xyz 0 0 0))
  426. )
  427. )
  428. (module PartsLibraries:TC4422AVPA (layer F.Cu) (tedit 592E9A52) (tstamp 59A6EEEF)
  429. (at 127 43.18)
  430. (descr DIP254P762X432-8)
  431. (tags "Integrated Circuit")
  432. (path /59A71299/59A6D3EA)
  433. (fp_text reference U5 (at 3.81 -2.286) (layer F.SilkS)
  434. (effects (font (size 1.27 1.27) (thickness 0.254)))
  435. )
  436. (fp_text value NME1212DC (at 3.556 9.906) (layer F.SilkS) hide
  437. (effects (font (size 1.27 1.27) (thickness 0.254)))
  438. )
  439. (fp_line (start 0.508 8.7122) (end 0.508 -1.0922) (layer Dwgs.User) (width 0.1524))
  440. (fp_line (start 0.508 -1.1938) (end 7.112 -1.1938) (layer Dwgs.User) (width 0.1524))
  441. (fp_line (start -0.4826 3.048) (end 0.508 3.048) (layer Dwgs.User) (width 0.1524))
  442. (fp_line (start -0.4826 2.032) (end -0.4826 3.048) (layer Dwgs.User) (width 0.1524))
  443. (fp_line (start 0.508 2.032) (end -0.4826 2.032) (layer Dwgs.User) (width 0.1524))
  444. (fp_line (start 0.508 3.048) (end 0.508 2.032) (layer Dwgs.User) (width 0.1524))
  445. (fp_line (start 7.112 1.5748) (end 7.112 0.9652) (layer F.SilkS) (width 0.1524))
  446. (fp_line (start 7.112 4.1148) (end 7.112 3.5052) (layer F.SilkS) (width 0.1524))
  447. (fp_line (start 0.508 6.0452) (end 0.508 6.6548) (layer F.SilkS) (width 0.1524))
  448. (fp_line (start 0.508 3.5052) (end 0.508 4.1148) (layer F.SilkS) (width 0.1524))
  449. (fp_line (start 0.508 8.7122) (end 7.112 8.7122) (layer F.SilkS) (width 0.1524))
  450. (fp_line (start 7.112 6.6548) (end 7.112 6.0452) (layer F.SilkS) (width 0.1524))
  451. (fp_line (start 0.508 1.0922) (end 0.508 1.5748) (layer F.SilkS) (width 0.1524))
  452. (fp_line (start 0.508 0.508) (end 0.508 -0.508) (layer Dwgs.User) (width 0.1524))
  453. (fp_line (start 0.508 -0.508) (end -0.4826 -0.508) (layer Dwgs.User) (width 0.1524))
  454. (fp_line (start -0.4826 -0.508) (end -0.4826 0.508) (layer Dwgs.User) (width 0.1524))
  455. (fp_line (start -0.4826 0.508) (end 0.508 0.508) (layer Dwgs.User) (width 0.1524))
  456. (fp_line (start 0.508 5.588) (end 0.508 4.572) (layer Dwgs.User) (width 0.1524))
  457. (fp_line (start 0.508 4.572) (end -0.4826 4.572) (layer Dwgs.User) (width 0.1524))
  458. (fp_line (start -0.4826 4.572) (end -0.4826 5.588) (layer Dwgs.User) (width 0.1524))
  459. (fp_line (start -0.4826 5.588) (end 0.508 5.588) (layer Dwgs.User) (width 0.1524))
  460. (fp_line (start 0.508 8.128) (end 0.508 7.112) (layer Dwgs.User) (width 0.1524))
  461. (fp_line (start 0.508 7.112) (end -0.4826 7.1374) (layer Dwgs.User) (width 0.1524))
  462. (fp_line (start -0.4826 7.1374) (end -0.4826 8.128) (layer Dwgs.User) (width 0.1524))
  463. (fp_line (start -0.4826 8.128) (end 0.508 8.128) (layer Dwgs.User) (width 0.1524))
  464. (fp_line (start 7.112 7.112) (end 7.112 8.128) (layer Dwgs.User) (width 0.1524))
  465. (fp_line (start 7.112 8.128) (end 8.1026 8.1026) (layer Dwgs.User) (width 0.1524))
  466. (fp_line (start 8.1026 8.1026) (end 8.1026 7.112) (layer Dwgs.User) (width 0.1524))
  467. (fp_line (start 8.1026 7.112) (end 7.112 7.112) (layer Dwgs.User) (width 0.1524))
  468. (fp_line (start 7.112 4.572) (end 7.112 5.588) (layer Dwgs.User) (width 0.1524))
  469. (fp_line (start 7.112 5.588) (end 8.1026 5.5626) (layer Dwgs.User) (width 0.1524))
  470. (fp_line (start 8.1026 5.5626) (end 8.1026 4.572) (layer Dwgs.User) (width 0.1524))
  471. (fp_line (start 8.1026 4.572) (end 7.112 4.572) (layer Dwgs.User) (width 0.1524))
  472. (fp_line (start 7.112 2.032) (end 7.112 3.048) (layer Dwgs.User) (width 0.1524))
  473. (fp_line (start 7.112 3.048) (end 8.1026 3.048) (layer Dwgs.User) (width 0.1524))
  474. (fp_line (start 8.1026 3.048) (end 8.1026 2.032) (layer Dwgs.User) (width 0.1524))
  475. (fp_line (start 8.1026 2.032) (end 7.112 2.032) (layer Dwgs.User) (width 0.1524))
  476. (fp_line (start 7.112 -0.508) (end 7.112 0.508) (layer Dwgs.User) (width 0.1524))
  477. (fp_line (start 7.112 0.508) (end 8.1026 0.508) (layer Dwgs.User) (width 0.1524))
  478. (fp_line (start 8.1026 0.508) (end 8.1026 -0.508) (layer Dwgs.User) (width 0.1524))
  479. (fp_line (start 8.1026 -0.508) (end 7.112 -0.508) (layer Dwgs.User) (width 0.1524))
  480. (fp_line (start 0.508 8.7122) (end 7.112 8.7122) (layer Dwgs.User) (width 0.1524))
  481. (fp_line (start 7.112 8.7122) (end 7.112 -1.0922) (layer Dwgs.User) (width 0.1524))
  482. (pad 1 thru_hole rect (at 0 0 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  483. (net 14 DC_GND))
  484. (pad 2 thru_hole circle (at 0 2.54 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS))
  485. (pad 3 thru_hole circle (at 0 5.08 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS))
  486. (pad 4 thru_hole circle (at 0 7.62 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  487. (net 13 DC_IN))
  488. (pad 5 thru_hole circle (at 7.62 7.62 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  489. (net 5 "Net-(C10-Pad1)"))
  490. (pad 6 thru_hole circle (at 7.62 5.08 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS))
  491. (pad 7 thru_hole circle (at 7.62 2.54 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  492. (net 28 "Net-(R7-Pad1)"))
  493. (pad 8 thru_hole circle (at 7.62 0 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS))
  494. (model Housings_DIP.3dshapes/DIP-8_W7.62mm.wrl
  495. (at (xyz 0 0 0))
  496. (scale (xyz 1 1 1))
  497. (rotate (xyz 0 0 0))
  498. )
  499. )
  500. (module PartsLibraries:TC4422AVPA (layer F.Cu) (tedit 592E9A52) (tstamp 59A6EC7B)
  501. (at 138.43 91.44)
  502. (descr DIP254P762X432-8)
  503. (tags "Integrated Circuit")
  504. (path /59A712A3/59498139)
  505. (fp_text reference IC4 (at 3.81 -2.286) (layer F.SilkS)
  506. (effects (font (size 1.27 1.27) (thickness 0.254)))
  507. )
  508. (fp_text value TC4422AVPA (at 3.556 9.906) (layer F.SilkS) hide
  509. (effects (font (size 1.27 1.27) (thickness 0.254)))
  510. )
  511. (fp_line (start 0.508 8.7122) (end 0.508 -1.0922) (layer Dwgs.User) (width 0.1524))
  512. (fp_line (start 0.508 -1.1938) (end 7.112 -1.1938) (layer Dwgs.User) (width 0.1524))
  513. (fp_line (start -0.4826 3.048) (end 0.508 3.048) (layer Dwgs.User) (width 0.1524))
  514. (fp_line (start -0.4826 2.032) (end -0.4826 3.048) (layer Dwgs.User) (width 0.1524))
  515. (fp_line (start 0.508 2.032) (end -0.4826 2.032) (layer Dwgs.User) (width 0.1524))
  516. (fp_line (start 0.508 3.048) (end 0.508 2.032) (layer Dwgs.User) (width 0.1524))
  517. (fp_line (start 7.112 1.5748) (end 7.112 0.9652) (layer F.SilkS) (width 0.1524))
  518. (fp_line (start 7.112 4.1148) (end 7.112 3.5052) (layer F.SilkS) (width 0.1524))
  519. (fp_line (start 0.508 6.0452) (end 0.508 6.6548) (layer F.SilkS) (width 0.1524))
  520. (fp_line (start 0.508 3.5052) (end 0.508 4.1148) (layer F.SilkS) (width 0.1524))
  521. (fp_line (start 0.508 8.7122) (end 7.112 8.7122) (layer F.SilkS) (width 0.1524))
  522. (fp_line (start 7.112 6.6548) (end 7.112 6.0452) (layer F.SilkS) (width 0.1524))
  523. (fp_line (start 0.508 1.0922) (end 0.508 1.5748) (layer F.SilkS) (width 0.1524))
  524. (fp_line (start 0.508 0.508) (end 0.508 -0.508) (layer Dwgs.User) (width 0.1524))
  525. (fp_line (start 0.508 -0.508) (end -0.4826 -0.508) (layer Dwgs.User) (width 0.1524))
  526. (fp_line (start -0.4826 -0.508) (end -0.4826 0.508) (layer Dwgs.User) (width 0.1524))
  527. (fp_line (start -0.4826 0.508) (end 0.508 0.508) (layer Dwgs.User) (width 0.1524))
  528. (fp_line (start 0.508 5.588) (end 0.508 4.572) (layer Dwgs.User) (width 0.1524))
  529. (fp_line (start 0.508 4.572) (end -0.4826 4.572) (layer Dwgs.User) (width 0.1524))
  530. (fp_line (start -0.4826 4.572) (end -0.4826 5.588) (layer Dwgs.User) (width 0.1524))
  531. (fp_line (start -0.4826 5.588) (end 0.508 5.588) (layer Dwgs.User) (width 0.1524))
  532. (fp_line (start 0.508 8.128) (end 0.508 7.112) (layer Dwgs.User) (width 0.1524))
  533. (fp_line (start 0.508 7.112) (end -0.4826 7.1374) (layer Dwgs.User) (width 0.1524))
  534. (fp_line (start -0.4826 7.1374) (end -0.4826 8.128) (layer Dwgs.User) (width 0.1524))
  535. (fp_line (start -0.4826 8.128) (end 0.508 8.128) (layer Dwgs.User) (width 0.1524))
  536. (fp_line (start 7.112 7.112) (end 7.112 8.128) (layer Dwgs.User) (width 0.1524))
  537. (fp_line (start 7.112 8.128) (end 8.1026 8.1026) (layer Dwgs.User) (width 0.1524))
  538. (fp_line (start 8.1026 8.1026) (end 8.1026 7.112) (layer Dwgs.User) (width 0.1524))
  539. (fp_line (start 8.1026 7.112) (end 7.112 7.112) (layer Dwgs.User) (width 0.1524))
  540. (fp_line (start 7.112 4.572) (end 7.112 5.588) (layer Dwgs.User) (width 0.1524))
  541. (fp_line (start 7.112 5.588) (end 8.1026 5.5626) (layer Dwgs.User) (width 0.1524))
  542. (fp_line (start 8.1026 5.5626) (end 8.1026 4.572) (layer Dwgs.User) (width 0.1524))
  543. (fp_line (start 8.1026 4.572) (end 7.112 4.572) (layer Dwgs.User) (width 0.1524))
  544. (fp_line (start 7.112 2.032) (end 7.112 3.048) (layer Dwgs.User) (width 0.1524))
  545. (fp_line (start 7.112 3.048) (end 8.1026 3.048) (layer Dwgs.User) (width 0.1524))
  546. (fp_line (start 8.1026 3.048) (end 8.1026 2.032) (layer Dwgs.User) (width 0.1524))
  547. (fp_line (start 8.1026 2.032) (end 7.112 2.032) (layer Dwgs.User) (width 0.1524))
  548. (fp_line (start 7.112 -0.508) (end 7.112 0.508) (layer Dwgs.User) (width 0.1524))
  549. (fp_line (start 7.112 0.508) (end 8.1026 0.508) (layer Dwgs.User) (width 0.1524))
  550. (fp_line (start 8.1026 0.508) (end 8.1026 -0.508) (layer Dwgs.User) (width 0.1524))
  551. (fp_line (start 8.1026 -0.508) (end 7.112 -0.508) (layer Dwgs.User) (width 0.1524))
  552. (fp_line (start 0.508 8.7122) (end 7.112 8.7122) (layer Dwgs.User) (width 0.1524))
  553. (fp_line (start 7.112 8.7122) (end 7.112 -1.0922) (layer Dwgs.User) (width 0.1524))
  554. (pad 1 thru_hole rect (at 0 0 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  555. (net 25 "Net-(C23-Pad1)"))
  556. (pad 2 thru_hole circle (at 0 2.54 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  557. (net 12 "Net-(IC4-Pad2)"))
  558. (pad 3 thru_hole circle (at 0 5.08 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS))
  559. (pad 4 thru_hole circle (at 0 7.62 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  560. (net 2 Earth))
  561. (pad 5 thru_hole circle (at 7.62 7.62 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  562. (net 2 Earth))
  563. (pad 6 thru_hole circle (at 7.62 5.08 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  564. (net 8 "Net-(C15-Pad2)"))
  565. (pad 7 thru_hole circle (at 7.62 2.54 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  566. (net 8 "Net-(C15-Pad2)"))
  567. (pad 8 thru_hole circle (at 7.62 0 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  568. (net 25 "Net-(C23-Pad1)"))
  569. (model Housings_DIP.3dshapes/DIP-8_W7.62mm.wrl
  570. (at (xyz 0 0 0))
  571. (scale (xyz 1 1 1))
  572. (rotate (xyz 0 0 0))
  573. )
  574. )
  575. (module PartsLibraries:TC4422AVPA (layer F.Cu) (tedit 592E9A52) (tstamp 59A6EC0D)
  576. (at 69.85 91.44)
  577. (descr DIP254P762X432-8)
  578. (tags "Integrated Circuit")
  579. (path /59A7109E/59498139)
  580. (fp_text reference IC2 (at 3.81 -2.286) (layer F.SilkS)
  581. (effects (font (size 1.27 1.27) (thickness 0.254)))
  582. )
  583. (fp_text value TC4422AVPA (at 3.556 9.906) (layer F.SilkS) hide
  584. (effects (font (size 1.27 1.27) (thickness 0.254)))
  585. )
  586. (fp_line (start 0.508 8.7122) (end 0.508 -1.0922) (layer Dwgs.User) (width 0.1524))
  587. (fp_line (start 0.508 -1.1938) (end 7.112 -1.1938) (layer Dwgs.User) (width 0.1524))
  588. (fp_line (start -0.4826 3.048) (end 0.508 3.048) (layer Dwgs.User) (width 0.1524))
  589. (fp_line (start -0.4826 2.032) (end -0.4826 3.048) (layer Dwgs.User) (width 0.1524))
  590. (fp_line (start 0.508 2.032) (end -0.4826 2.032) (layer Dwgs.User) (width 0.1524))
  591. (fp_line (start 0.508 3.048) (end 0.508 2.032) (layer Dwgs.User) (width 0.1524))
  592. (fp_line (start 7.112 1.5748) (end 7.112 0.9652) (layer F.SilkS) (width 0.1524))
  593. (fp_line (start 7.112 4.1148) (end 7.112 3.5052) (layer F.SilkS) (width 0.1524))
  594. (fp_line (start 0.508 6.0452) (end 0.508 6.6548) (layer F.SilkS) (width 0.1524))
  595. (fp_line (start 0.508 3.5052) (end 0.508 4.1148) (layer F.SilkS) (width 0.1524))
  596. (fp_line (start 0.508 8.7122) (end 7.112 8.7122) (layer F.SilkS) (width 0.1524))
  597. (fp_line (start 7.112 6.6548) (end 7.112 6.0452) (layer F.SilkS) (width 0.1524))
  598. (fp_line (start 0.508 1.0922) (end 0.508 1.5748) (layer F.SilkS) (width 0.1524))
  599. (fp_line (start 0.508 0.508) (end 0.508 -0.508) (layer Dwgs.User) (width 0.1524))
  600. (fp_line (start 0.508 -0.508) (end -0.4826 -0.508) (layer Dwgs.User) (width 0.1524))
  601. (fp_line (start -0.4826 -0.508) (end -0.4826 0.508) (layer Dwgs.User) (width 0.1524))
  602. (fp_line (start -0.4826 0.508) (end 0.508 0.508) (layer Dwgs.User) (width 0.1524))
  603. (fp_line (start 0.508 5.588) (end 0.508 4.572) (layer Dwgs.User) (width 0.1524))
  604. (fp_line (start 0.508 4.572) (end -0.4826 4.572) (layer Dwgs.User) (width 0.1524))
  605. (fp_line (start -0.4826 4.572) (end -0.4826 5.588) (layer Dwgs.User) (width 0.1524))
  606. (fp_line (start -0.4826 5.588) (end 0.508 5.588) (layer Dwgs.User) (width 0.1524))
  607. (fp_line (start 0.508 8.128) (end 0.508 7.112) (layer Dwgs.User) (width 0.1524))
  608. (fp_line (start 0.508 7.112) (end -0.4826 7.1374) (layer Dwgs.User) (width 0.1524))
  609. (fp_line (start -0.4826 7.1374) (end -0.4826 8.128) (layer Dwgs.User) (width 0.1524))
  610. (fp_line (start -0.4826 8.128) (end 0.508 8.128) (layer Dwgs.User) (width 0.1524))
  611. (fp_line (start 7.112 7.112) (end 7.112 8.128) (layer Dwgs.User) (width 0.1524))
  612. (fp_line (start 7.112 8.128) (end 8.1026 8.1026) (layer Dwgs.User) (width 0.1524))
  613. (fp_line (start 8.1026 8.1026) (end 8.1026 7.112) (layer Dwgs.User) (width 0.1524))
  614. (fp_line (start 8.1026 7.112) (end 7.112 7.112) (layer Dwgs.User) (width 0.1524))
  615. (fp_line (start 7.112 4.572) (end 7.112 5.588) (layer Dwgs.User) (width 0.1524))
  616. (fp_line (start 7.112 5.588) (end 8.1026 5.5626) (layer Dwgs.User) (width 0.1524))
  617. (fp_line (start 8.1026 5.5626) (end 8.1026 4.572) (layer Dwgs.User) (width 0.1524))
  618. (fp_line (start 8.1026 4.572) (end 7.112 4.572) (layer Dwgs.User) (width 0.1524))
  619. (fp_line (start 7.112 2.032) (end 7.112 3.048) (layer Dwgs.User) (width 0.1524))
  620. (fp_line (start 7.112 3.048) (end 8.1026 3.048) (layer Dwgs.User) (width 0.1524))
  621. (fp_line (start 8.1026 3.048) (end 8.1026 2.032) (layer Dwgs.User) (width 0.1524))
  622. (fp_line (start 8.1026 2.032) (end 7.112 2.032) (layer Dwgs.User) (width 0.1524))
  623. (fp_line (start 7.112 -0.508) (end 7.112 0.508) (layer Dwgs.User) (width 0.1524))
  624. (fp_line (start 7.112 0.508) (end 8.1026 0.508) (layer Dwgs.User) (width 0.1524))
  625. (fp_line (start 8.1026 0.508) (end 8.1026 -0.508) (layer Dwgs.User) (width 0.1524))
  626. (fp_line (start 8.1026 -0.508) (end 7.112 -0.508) (layer Dwgs.User) (width 0.1524))
  627. (fp_line (start 0.508 8.7122) (end 7.112 8.7122) (layer Dwgs.User) (width 0.1524))
  628. (fp_line (start 7.112 8.7122) (end 7.112 -1.0922) (layer Dwgs.User) (width 0.1524))
  629. (pad 1 thru_hole rect (at 0 0 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  630. (net 23 "Net-(C19-Pad1)"))
  631. (pad 2 thru_hole circle (at 0 2.54 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  632. (net 10 "Net-(IC2-Pad2)"))
  633. (pad 3 thru_hole circle (at 0 5.08 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS))
  634. (pad 4 thru_hole circle (at 0 7.62 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  635. (net 2 Earth))
  636. (pad 5 thru_hole circle (at 7.62 7.62 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  637. (net 2 Earth))
  638. (pad 6 thru_hole circle (at 7.62 5.08 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  639. (net 4 "Net-(C7-Pad2)"))
  640. (pad 7 thru_hole circle (at 7.62 2.54 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  641. (net 4 "Net-(C7-Pad2)"))
  642. (pad 8 thru_hole circle (at 7.62 0 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  643. (net 23 "Net-(C19-Pad1)"))
  644. (model Housings_DIP.3dshapes/DIP-8_W7.62mm.wrl
  645. (at (xyz 0 0 0))
  646. (scale (xyz 1 1 1))
  647. (rotate (xyz 0 0 0))
  648. )
  649. )
  650. (module PartsLibraries:TC4422AVPA (layer F.Cu) (tedit 592E9A52) (tstamp 59A6EC44)
  651. (at 138.43 53.34)
  652. (descr DIP254P762X432-8)
  653. (tags "Integrated Circuit")
  654. (path /59A71299/59498139)
  655. (fp_text reference IC3 (at 3.81 -2.286) (layer F.SilkS)
  656. (effects (font (size 1.27 1.27) (thickness 0.254)))
  657. )
  658. (fp_text value TC4422AVPA (at 3.556 9.906) (layer F.SilkS) hide
  659. (effects (font (size 1.27 1.27) (thickness 0.254)))
  660. )
  661. (fp_line (start 0.508 8.7122) (end 0.508 -1.0922) (layer Dwgs.User) (width 0.1524))
  662. (fp_line (start 0.508 -1.1938) (end 7.112 -1.1938) (layer Dwgs.User) (width 0.1524))
  663. (fp_line (start -0.4826 3.048) (end 0.508 3.048) (layer Dwgs.User) (width 0.1524))
  664. (fp_line (start -0.4826 2.032) (end -0.4826 3.048) (layer Dwgs.User) (width 0.1524))
  665. (fp_line (start 0.508 2.032) (end -0.4826 2.032) (layer Dwgs.User) (width 0.1524))
  666. (fp_line (start 0.508 3.048) (end 0.508 2.032) (layer Dwgs.User) (width 0.1524))
  667. (fp_line (start 7.112 1.5748) (end 7.112 0.9652) (layer F.SilkS) (width 0.1524))
  668. (fp_line (start 7.112 4.1148) (end 7.112 3.5052) (layer F.SilkS) (width 0.1524))
  669. (fp_line (start 0.508 6.0452) (end 0.508 6.6548) (layer F.SilkS) (width 0.1524))
  670. (fp_line (start 0.508 3.5052) (end 0.508 4.1148) (layer F.SilkS) (width 0.1524))
  671. (fp_line (start 0.508 8.7122) (end 7.112 8.7122) (layer F.SilkS) (width 0.1524))
  672. (fp_line (start 7.112 6.6548) (end 7.112 6.0452) (layer F.SilkS) (width 0.1524))
  673. (fp_line (start 0.508 1.0922) (end 0.508 1.5748) (layer F.SilkS) (width 0.1524))
  674. (fp_line (start 0.508 0.508) (end 0.508 -0.508) (layer Dwgs.User) (width 0.1524))
  675. (fp_line (start 0.508 -0.508) (end -0.4826 -0.508) (layer Dwgs.User) (width 0.1524))
  676. (fp_line (start -0.4826 -0.508) (end -0.4826 0.508) (layer Dwgs.User) (width 0.1524))
  677. (fp_line (start -0.4826 0.508) (end 0.508 0.508) (layer Dwgs.User) (width 0.1524))
  678. (fp_line (start 0.508 5.588) (end 0.508 4.572) (layer Dwgs.User) (width 0.1524))
  679. (fp_line (start 0.508 4.572) (end -0.4826 4.572) (layer Dwgs.User) (width 0.1524))
  680. (fp_line (start -0.4826 4.572) (end -0.4826 5.588) (layer Dwgs.User) (width 0.1524))
  681. (fp_line (start -0.4826 5.588) (end 0.508 5.588) (layer Dwgs.User) (width 0.1524))
  682. (fp_line (start 0.508 8.128) (end 0.508 7.112) (layer Dwgs.User) (width 0.1524))
  683. (fp_line (start 0.508 7.112) (end -0.4826 7.1374) (layer Dwgs.User) (width 0.1524))
  684. (fp_line (start -0.4826 7.1374) (end -0.4826 8.128) (layer Dwgs.User) (width 0.1524))
  685. (fp_line (start -0.4826 8.128) (end 0.508 8.128) (layer Dwgs.User) (width 0.1524))
  686. (fp_line (start 7.112 7.112) (end 7.112 8.128) (layer Dwgs.User) (width 0.1524))
  687. (fp_line (start 7.112 8.128) (end 8.1026 8.1026) (layer Dwgs.User) (width 0.1524))
  688. (fp_line (start 8.1026 8.1026) (end 8.1026 7.112) (layer Dwgs.User) (width 0.1524))
  689. (fp_line (start 8.1026 7.112) (end 7.112 7.112) (layer Dwgs.User) (width 0.1524))
  690. (fp_line (start 7.112 4.572) (end 7.112 5.588) (layer Dwgs.User) (width 0.1524))
  691. (fp_line (start 7.112 5.588) (end 8.1026 5.5626) (layer Dwgs.User) (width 0.1524))
  692. (fp_line (start 8.1026 5.5626) (end 8.1026 4.572) (layer Dwgs.User) (width 0.1524))
  693. (fp_line (start 8.1026 4.572) (end 7.112 4.572) (layer Dwgs.User) (width 0.1524))
  694. (fp_line (start 7.112 2.032) (end 7.112 3.048) (layer Dwgs.User) (width 0.1524))
  695. (fp_line (start 7.112 3.048) (end 8.1026 3.048) (layer Dwgs.User) (width 0.1524))
  696. (fp_line (start 8.1026 3.048) (end 8.1026 2.032) (layer Dwgs.User) (width 0.1524))
  697. (fp_line (start 8.1026 2.032) (end 7.112 2.032) (layer Dwgs.User) (width 0.1524))
  698. (fp_line (start 7.112 -0.508) (end 7.112 0.508) (layer Dwgs.User) (width 0.1524))
  699. (fp_line (start 7.112 0.508) (end 8.1026 0.508) (layer Dwgs.User) (width 0.1524))
  700. (fp_line (start 8.1026 0.508) (end 8.1026 -0.508) (layer Dwgs.User) (width 0.1524))
  701. (fp_line (start 8.1026 -0.508) (end 7.112 -0.508) (layer Dwgs.User) (width 0.1524))
  702. (fp_line (start 0.508 8.7122) (end 7.112 8.7122) (layer Dwgs.User) (width 0.1524))
  703. (fp_line (start 7.112 8.7122) (end 7.112 -1.0922) (layer Dwgs.User) (width 0.1524))
  704. (pad 1 thru_hole rect (at 0 0 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  705. (net 24 "Net-(C21-Pad1)"))
  706. (pad 2 thru_hole circle (at 0 2.54 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  707. (net 11 "Net-(IC3-Pad2)"))
  708. (pad 3 thru_hole circle (at 0 5.08 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS))
  709. (pad 4 thru_hole circle (at 0 7.62 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  710. (net 2 Earth))
  711. (pad 5 thru_hole circle (at 7.62 7.62 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  712. (net 2 Earth))
  713. (pad 6 thru_hole circle (at 7.62 5.08 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  714. (net 6 "Net-(C11-Pad2)"))
  715. (pad 7 thru_hole circle (at 7.62 2.54 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  716. (net 6 "Net-(C11-Pad2)"))
  717. (pad 8 thru_hole circle (at 7.62 0 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  718. (net 24 "Net-(C21-Pad1)"))
  719. (model Housings_DIP.3dshapes/DIP-8_W7.62mm.wrl
  720. (at (xyz 0 0 0))
  721. (scale (xyz 1 1 1))
  722. (rotate (xyz 0 0 0))
  723. )
  724. )
  725. (module PartsLibraries:TC4422AVPA (layer F.Cu) (tedit 592E9A52) (tstamp 59A6EBD6)
  726. (at 69.85 53.34)
  727. (descr DIP254P762X432-8)
  728. (tags "Integrated Circuit")
  729. (path /59498AA5/59498139)
  730. (fp_text reference IC1 (at 3.81 -2.286) (layer F.SilkS)
  731. (effects (font (size 1.27 1.27) (thickness 0.254)))
  732. )
  733. (fp_text value TC4422AVPA (at 3.556 9.906) (layer F.SilkS) hide
  734. (effects (font (size 1.27 1.27) (thickness 0.254)))
  735. )
  736. (fp_line (start 0.508 8.7122) (end 0.508 -1.0922) (layer Dwgs.User) (width 0.1524))
  737. (fp_line (start 0.508 -1.1938) (end 7.112 -1.1938) (layer Dwgs.User) (width 0.1524))
  738. (fp_line (start -0.4826 3.048) (end 0.508 3.048) (layer Dwgs.User) (width 0.1524))
  739. (fp_line (start -0.4826 2.032) (end -0.4826 3.048) (layer Dwgs.User) (width 0.1524))
  740. (fp_line (start 0.508 2.032) (end -0.4826 2.032) (layer Dwgs.User) (width 0.1524))
  741. (fp_line (start 0.508 3.048) (end 0.508 2.032) (layer Dwgs.User) (width 0.1524))
  742. (fp_line (start 7.112 1.5748) (end 7.112 0.9652) (layer F.SilkS) (width 0.1524))
  743. (fp_line (start 7.112 4.1148) (end 7.112 3.5052) (layer F.SilkS) (width 0.1524))
  744. (fp_line (start 0.508 6.0452) (end 0.508 6.6548) (layer F.SilkS) (width 0.1524))
  745. (fp_line (start 0.508 3.5052) (end 0.508 4.1148) (layer F.SilkS) (width 0.1524))
  746. (fp_line (start 0.508 8.7122) (end 7.112 8.7122) (layer F.SilkS) (width 0.1524))
  747. (fp_line (start 7.112 6.6548) (end 7.112 6.0452) (layer F.SilkS) (width 0.1524))
  748. (fp_line (start 0.508 1.0922) (end 0.508 1.5748) (layer F.SilkS) (width 0.1524))
  749. (fp_line (start 0.508 0.508) (end 0.508 -0.508) (layer Dwgs.User) (width 0.1524))
  750. (fp_line (start 0.508 -0.508) (end -0.4826 -0.508) (layer Dwgs.User) (width 0.1524))
  751. (fp_line (start -0.4826 -0.508) (end -0.4826 0.508) (layer Dwgs.User) (width 0.1524))
  752. (fp_line (start -0.4826 0.508) (end 0.508 0.508) (layer Dwgs.User) (width 0.1524))
  753. (fp_line (start 0.508 5.588) (end 0.508 4.572) (layer Dwgs.User) (width 0.1524))
  754. (fp_line (start 0.508 4.572) (end -0.4826 4.572) (layer Dwgs.User) (width 0.1524))
  755. (fp_line (start -0.4826 4.572) (end -0.4826 5.588) (layer Dwgs.User) (width 0.1524))
  756. (fp_line (start -0.4826 5.588) (end 0.508 5.588) (layer Dwgs.User) (width 0.1524))
  757. (fp_line (start 0.508 8.128) (end 0.508 7.112) (layer Dwgs.User) (width 0.1524))
  758. (fp_line (start 0.508 7.112) (end -0.4826 7.1374) (layer Dwgs.User) (width 0.1524))
  759. (fp_line (start -0.4826 7.1374) (end -0.4826 8.128) (layer Dwgs.User) (width 0.1524))
  760. (fp_line (start -0.4826 8.128) (end 0.508 8.128) (layer Dwgs.User) (width 0.1524))
  761. (fp_line (start 7.112 7.112) (end 7.112 8.128) (layer Dwgs.User) (width 0.1524))
  762. (fp_line (start 7.112 8.128) (end 8.1026 8.1026) (layer Dwgs.User) (width 0.1524))
  763. (fp_line (start 8.1026 8.1026) (end 8.1026 7.112) (layer Dwgs.User) (width 0.1524))
  764. (fp_line (start 8.1026 7.112) (end 7.112 7.112) (layer Dwgs.User) (width 0.1524))
  765. (fp_line (start 7.112 4.572) (end 7.112 5.588) (layer Dwgs.User) (width 0.1524))
  766. (fp_line (start 7.112 5.588) (end 8.1026 5.5626) (layer Dwgs.User) (width 0.1524))
  767. (fp_line (start 8.1026 5.5626) (end 8.1026 4.572) (layer Dwgs.User) (width 0.1524))
  768. (fp_line (start 8.1026 4.572) (end 7.112 4.572) (layer Dwgs.User) (width 0.1524))
  769. (fp_line (start 7.112 2.032) (end 7.112 3.048) (layer Dwgs.User) (width 0.1524))
  770. (fp_line (start 7.112 3.048) (end 8.1026 3.048) (layer Dwgs.User) (width 0.1524))
  771. (fp_line (start 8.1026 3.048) (end 8.1026 2.032) (layer Dwgs.User) (width 0.1524))
  772. (fp_line (start 8.1026 2.032) (end 7.112 2.032) (layer Dwgs.User) (width 0.1524))
  773. (fp_line (start 7.112 -0.508) (end 7.112 0.508) (layer Dwgs.User) (width 0.1524))
  774. (fp_line (start 7.112 0.508) (end 8.1026 0.508) (layer Dwgs.User) (width 0.1524))
  775. (fp_line (start 8.1026 0.508) (end 8.1026 -0.508) (layer Dwgs.User) (width 0.1524))
  776. (fp_line (start 8.1026 -0.508) (end 7.112 -0.508) (layer Dwgs.User) (width 0.1524))
  777. (fp_line (start 0.508 8.7122) (end 7.112 8.7122) (layer Dwgs.User) (width 0.1524))
  778. (fp_line (start 7.112 8.7122) (end 7.112 -1.0922) (layer Dwgs.User) (width 0.1524))
  779. (pad 1 thru_hole rect (at 0 0 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  780. (net 22 "Net-(C17-Pad1)"))
  781. (pad 2 thru_hole circle (at 0 2.54 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  782. (net 9 "Net-(IC1-Pad2)"))
  783. (pad 3 thru_hole circle (at 0 5.08 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS))
  784. (pad 4 thru_hole circle (at 0 7.62 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  785. (net 2 Earth))
  786. (pad 5 thru_hole circle (at 7.62 7.62 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  787. (net 2 Earth))
  788. (pad 6 thru_hole circle (at 7.62 5.08 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  789. (net 3 "Net-(C3-Pad2)"))
  790. (pad 7 thru_hole circle (at 7.62 2.54 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  791. (net 3 "Net-(C3-Pad2)"))
  792. (pad 8 thru_hole circle (at 7.62 0 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  793. (net 22 "Net-(C17-Pad1)"))
  794. (model Housings_DIP.3dshapes/DIP-8_W7.62mm.wrl
  795. (at (xyz 0 0 0))
  796. (scale (xyz 1 1 1))
  797. (rotate (xyz 0 0 0))
  798. )
  799. )
  800. (module PartsLibraries:TC4422AVPA (layer F.Cu) (tedit 592E9A52) (tstamp 59A6EE4D)
  801. (at 59.69 41.91)
  802. (descr DIP254P762X432-8)
  803. (tags "Integrated Circuit")
  804. (path /59498AA5/59A6D3EA)
  805. (fp_text reference U1 (at 3.81 -2.286) (layer F.SilkS)
  806. (effects (font (size 1.27 1.27) (thickness 0.254)))
  807. )
  808. (fp_text value NME1212DC (at 3.556 9.906) (layer F.SilkS) hide
  809. (effects (font (size 1.27 1.27) (thickness 0.254)))
  810. )
  811. (fp_line (start 0.508 8.7122) (end 0.508 -1.0922) (layer Dwgs.User) (width 0.1524))
  812. (fp_line (start 0.508 -1.1938) (end 7.112 -1.1938) (layer Dwgs.User) (width 0.1524))
  813. (fp_line (start -0.4826 3.048) (end 0.508 3.048) (layer Dwgs.User) (width 0.1524))
  814. (fp_line (start -0.4826 2.032) (end -0.4826 3.048) (layer Dwgs.User) (width 0.1524))
  815. (fp_line (start 0.508 2.032) (end -0.4826 2.032) (layer Dwgs.User) (width 0.1524))
  816. (fp_line (start 0.508 3.048) (end 0.508 2.032) (layer Dwgs.User) (width 0.1524))
  817. (fp_line (start 7.112 1.5748) (end 7.112 0.9652) (layer F.SilkS) (width 0.1524))
  818. (fp_line (start 7.112 4.1148) (end 7.112 3.5052) (layer F.SilkS) (width 0.1524))
  819. (fp_line (start 0.508 6.0452) (end 0.508 6.6548) (layer F.SilkS) (width 0.1524))
  820. (fp_line (start 0.508 3.5052) (end 0.508 4.1148) (layer F.SilkS) (width 0.1524))
  821. (fp_line (start 0.508 8.7122) (end 7.112 8.7122) (layer F.SilkS) (width 0.1524))
  822. (fp_line (start 7.112 6.6548) (end 7.112 6.0452) (layer F.SilkS) (width 0.1524))
  823. (fp_line (start 0.508 1.0922) (end 0.508 1.5748) (layer F.SilkS) (width 0.1524))
  824. (fp_line (start 0.508 0.508) (end 0.508 -0.508) (layer Dwgs.User) (width 0.1524))
  825. (fp_line (start 0.508 -0.508) (end -0.4826 -0.508) (layer Dwgs.User) (width 0.1524))
  826. (fp_line (start -0.4826 -0.508) (end -0.4826 0.508) (layer Dwgs.User) (width 0.1524))
  827. (fp_line (start -0.4826 0.508) (end 0.508 0.508) (layer Dwgs.User) (width 0.1524))
  828. (fp_line (start 0.508 5.588) (end 0.508 4.572) (layer Dwgs.User) (width 0.1524))
  829. (fp_line (start 0.508 4.572) (end -0.4826 4.572) (layer Dwgs.User) (width 0.1524))
  830. (fp_line (start -0.4826 4.572) (end -0.4826 5.588) (layer Dwgs.User) (width 0.1524))
  831. (fp_line (start -0.4826 5.588) (end 0.508 5.588) (layer Dwgs.User) (width 0.1524))
  832. (fp_line (start 0.508 8.128) (end 0.508 7.112) (layer Dwgs.User) (width 0.1524))
  833. (fp_line (start 0.508 7.112) (end -0.4826 7.1374) (layer Dwgs.User) (width 0.1524))
  834. (fp_line (start -0.4826 7.1374) (end -0.4826 8.128) (layer Dwgs.User) (width 0.1524))
  835. (fp_line (start -0.4826 8.128) (end 0.508 8.128) (layer Dwgs.User) (width 0.1524))
  836. (fp_line (start 7.112 7.112) (end 7.112 8.128) (layer Dwgs.User) (width 0.1524))
  837. (fp_line (start 7.112 8.128) (end 8.1026 8.1026) (layer Dwgs.User) (width 0.1524))
  838. (fp_line (start 8.1026 8.1026) (end 8.1026 7.112) (layer Dwgs.User) (width 0.1524))
  839. (fp_line (start 8.1026 7.112) (end 7.112 7.112) (layer Dwgs.User) (width 0.1524))
  840. (fp_line (start 7.112 4.572) (end 7.112 5.588) (layer Dwgs.User) (width 0.1524))
  841. (fp_line (start 7.112 5.588) (end 8.1026 5.5626) (layer Dwgs.User) (width 0.1524))
  842. (fp_line (start 8.1026 5.5626) (end 8.1026 4.572) (layer Dwgs.User) (width 0.1524))
  843. (fp_line (start 8.1026 4.572) (end 7.112 4.572) (layer Dwgs.User) (width 0.1524))
  844. (fp_line (start 7.112 2.032) (end 7.112 3.048) (layer Dwgs.User) (width 0.1524))
  845. (fp_line (start 7.112 3.048) (end 8.1026 3.048) (layer Dwgs.User) (width 0.1524))
  846. (fp_line (start 8.1026 3.048) (end 8.1026 2.032) (layer Dwgs.User) (width 0.1524))
  847. (fp_line (start 8.1026 2.032) (end 7.112 2.032) (layer Dwgs.User) (width 0.1524))
  848. (fp_line (start 7.112 -0.508) (end 7.112 0.508) (layer Dwgs.User) (width 0.1524))
  849. (fp_line (start 7.112 0.508) (end 8.1026 0.508) (layer Dwgs.User) (width 0.1524))
  850. (fp_line (start 8.1026 0.508) (end 8.1026 -0.508) (layer Dwgs.User) (width 0.1524))
  851. (fp_line (start 8.1026 -0.508) (end 7.112 -0.508) (layer Dwgs.User) (width 0.1524))
  852. (fp_line (start 0.508 8.7122) (end 7.112 8.7122) (layer Dwgs.User) (width 0.1524))
  853. (fp_line (start 7.112 8.7122) (end 7.112 -1.0922) (layer Dwgs.User) (width 0.1524))
  854. (pad 1 thru_hole rect (at 0 0 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  855. (net 14 DC_GND))
  856. (pad 2 thru_hole circle (at 0 2.54 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS))
  857. (pad 3 thru_hole circle (at 0 5.08 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS))
  858. (pad 4 thru_hole circle (at 0 7.62 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  859. (net 13 DC_IN))
  860. (pad 5 thru_hole circle (at 7.62 7.62 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  861. (net 1 "Net-(C1-Pad1)"))
  862. (pad 6 thru_hole circle (at 7.62 5.08 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS))
  863. (pad 7 thru_hole circle (at 7.62 2.54 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
  864. (net 26 "Net-(R3-Pad1)"))
  865. (pad 8 thru_hole circle (at 7.62 0 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS))
  866. (model Housings_DIP.3dshapes/DIP-8_W7.62mm.wrl
  867. (at (xyz 0 0 0))
  868. (scale (xyz 1 1 1))
  869. (rotate (xyz 0 0 0))
  870. )
  871. )
  872. (module Capacitors_THT:CP_Radial_D5.0mm_P2.50mm (layer F.Cu) (tedit 597BC7C2) (tstamp 59A6E764)
  873. (at 81.32 53.34)
  874. (descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor")
  875. (tags "CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor")
  876. (path /59498AA5/59A6D3D9)
  877. (fp_text reference C1 (at 1.25 -3.81) (layer F.SilkS)
  878. (effects (font (size 1 1) (thickness 0.15)))
  879. )
  880. (fp_text value 4.7uF (at 1.25 3.81) (layer F.Fab)
  881. (effects (font (size 1 1) (thickness 0.15)))
  882. )
  883. (fp_arc (start 1.25 0) (end -1.05558 -1.18) (angle 125.8) (layer F.SilkS) (width 0.12))
  884. (fp_arc (start 1.25 0) (end -1.05558 1.18) (angle -125.8) (layer F.SilkS) (width 0.12))
  885. (fp_arc (start 1.25 0) (end 3.55558 -1.18) (angle 54.2) (layer F.SilkS) (width 0.12))
  886. (fp_circle (center 1.25 0) (end 3.75 0) (layer F.Fab) (width 0.1))
  887. (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
  888. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
  889. (fp_line (start 1.25 -2.55) (end 1.25 2.55) (layer F.SilkS) (width 0.12))
  890. (fp_line (start 1.29 -2.55) (end 1.29 2.55) (layer F.SilkS) (width 0.12))
  891. (fp_line (start 1.33 -2.549) (end 1.33 2.549) (layer F.SilkS) (width 0.12))
  892. (fp_line (start 1.37 -2.548) (end 1.37 2.548) (layer F.SilkS) (width 0.12))
  893. (fp_line (start 1.41 -2.546) (end 1.41 2.546) (layer F.SilkS) (width 0.12))
  894. (fp_line (start 1.45 -2.543) (end 1.45 2.543) (layer F.SilkS) (width 0.12))
  895. (fp_line (start 1.49 -2.539) (end 1.49 2.539) (layer F.SilkS) (width 0.12))
  896. (fp_line (start 1.53 -2.535) (end 1.53 -0.98) (layer F.SilkS) (width 0.12))
  897. (fp_line (start 1.53 0.98) (end 1.53 2.535) (layer F.SilkS) (width 0.12))
  898. (fp_line (start 1.57 -2.531) (end 1.57 -0.98) (layer F.SilkS) (width 0.12))
  899. (fp_line (start 1.57 0.98) (end 1.57 2.531) (layer F.SilkS) (width 0.12))
  900. (fp_line (start 1.61 -2.525) (end 1.61 -0.98) (layer F.SilkS) (width 0.12))
  901. (fp_line (start 1.61 0.98) (end 1.61 2.525) (layer F.SilkS) (width 0.12))
  902. (fp_line (start 1.65 -2.519) (end 1.65 -0.98) (layer F.SilkS) (width 0.12))
  903. (fp_line (start 1.65 0.98) (end 1.65 2.519) (layer F.SilkS) (width 0.12))
  904. (fp_line (start 1.69 -2.513) (end 1.69 -0.98) (layer F.SilkS) (width 0.12))
  905. (fp_line (start 1.69 0.98) (end 1.69 2.513) (layer F.SilkS) (width 0.12))
  906. (fp_line (start 1.73 -2.506) (end 1.73 -0.98) (layer F.SilkS) (width 0.12))
  907. (fp_line (start 1.73 0.98) (end 1.73 2.506) (layer F.SilkS) (width 0.12))
  908. (fp_line (start 1.77 -2.498) (end 1.77 -0.98) (layer F.SilkS) (width 0.12))
  909. (fp_line (start 1.77 0.98) (end 1.77 2.498) (layer F.SilkS) (width 0.12))
  910. (fp_line (start 1.81 -2.489) (end 1.81 -0.98) (layer F.SilkS) (width 0.12))
  911. (fp_line (start 1.81 0.98) (end 1.81 2.489) (layer F.SilkS) (width 0.12))
  912. (fp_line (start 1.85 -2.48) (end 1.85 -0.98) (layer F.SilkS) (width 0.12))
  913. (fp_line (start 1.85 0.98) (end 1.85 2.48) (layer F.SilkS) (width 0.12))
  914. (fp_line (start 1.89 -2.47) (end 1.89 -0.98) (layer F.SilkS) (width 0.12))
  915. (fp_line (start 1.89 0.98) (end 1.89 2.47) (layer F.SilkS) (width 0.12))
  916. (fp_line (start 1.93 -2.46) (end 1.93 -0.98) (layer F.SilkS) (width 0.12))
  917. (fp_line (start 1.93 0.98) (end 1.93 2.46) (layer F.SilkS) (width 0.12))
  918. (fp_line (start 1.971 -2.448) (end 1.971 -0.98) (layer F.SilkS) (width 0.12))
  919. (fp_line (start 1.971 0.98) (end 1.971 2.448) (layer F.SilkS) (width 0.12))
  920. (fp_line (start 2.011 -2.436) (end 2.011 -0.98) (layer F.SilkS) (width 0.12))
  921. (fp_line (start 2.011 0.98) (end 2.011 2.436) (layer F.SilkS) (width 0.12))
  922. (fp_line (start 2.051 -2.424) (end 2.051 -0.98) (layer F.SilkS) (width 0.12))
  923. (fp_line (start 2.051 0.98) (end 2.051 2.424) (layer F.SilkS) (width 0.12))
  924. (fp_line (start 2.091 -2.41) (end 2.091 -0.98) (layer F.SilkS) (width 0.12))
  925. (fp_line (start 2.091 0.98) (end 2.091 2.41) (layer F.SilkS) (width 0.12))
  926. (fp_line (start 2.131 -2.396) (end 2.131 -0.98) (layer F.SilkS) (width 0.12))
  927. (fp_line (start 2.131 0.98) (end 2.131 2.396) (layer F.SilkS) (width 0.12))
  928. (fp_line (start 2.171 -2.382) (end 2.171 -0.98) (layer F.SilkS) (width 0.12))
  929. (fp_line (start 2.171 0.98) (end 2.171 2.382) (layer F.SilkS) (width 0.12))
  930. (fp_line (start 2.211 -2.366) (end 2.211 -0.98) (layer F.SilkS) (width 0.12))
  931. (fp_line (start 2.211 0.98) (end 2.211 2.366) (layer F.SilkS) (width 0.12))
  932. (fp_line (start 2.251 -2.35) (end 2.251 -0.98) (layer F.SilkS) (width 0.12))
  933. (fp_line (start 2.251 0.98) (end 2.251 2.35) (layer F.SilkS) (width 0.12))
  934. (fp_line (start 2.291 -2.333) (end 2.291 -0.98) (layer F.SilkS) (width 0.12))
  935. (fp_line (start 2.291 0.98) (end 2.291 2.333) (layer F.SilkS) (width 0.12))
  936. (fp_line (start 2.331 -2.315) (end 2.331 -0.98) (layer F.SilkS) (width 0.12))
  937. (fp_line (start 2.331 0.98) (end 2.331 2.315) (layer F.SilkS) (width 0.12))
  938. (fp_line (start 2.371 -2.296) (end 2.371 -0.98) (layer F.SilkS) (width 0.12))
  939. (fp_line (start 2.371 0.98) (end 2.371 2.296) (layer F.SilkS) (width 0.12))
  940. (fp_line (start 2.411 -2.276) (end 2.411 -0.98) (layer F.SilkS) (width 0.12))
  941. (fp_line (start 2.411 0.98) (end 2.411 2.276) (layer F.SilkS) (width 0.12))
  942. (fp_line (start 2.451 -2.256) (end 2.451 -0.98) (layer F.SilkS) (width 0.12))
  943. (fp_line (start 2.451 0.98) (end 2.451 2.256) (layer F.SilkS) (width 0.12))
  944. (fp_line (start 2.491 -2.234) (end 2.491 -0.98) (layer F.SilkS) (width 0.12))
  945. (fp_line (start 2.491 0.98) (end 2.491 2.234) (layer F.SilkS) (width 0.12))
  946. (fp_line (start 2.531 -2.212) (end 2.531 -0.98) (layer F.SilkS) (width 0.12))
  947. (fp_line (start 2.531 0.98) (end 2.531 2.212) (layer F.SilkS) (width 0.12))
  948. (fp_line (start 2.571 -2.189) (end 2.571 -0.98) (layer F.SilkS) (width 0.12))
  949. (fp_line (start 2.571 0.98) (end 2.571 2.189) (layer F.SilkS) (width 0.12))
  950. (fp_line (start 2.611 -2.165) (end 2.611 -0.98) (layer F.SilkS) (width 0.12))
  951. (fp_line (start 2.611 0.98) (end 2.611 2.165) (layer F.SilkS) (width 0.12))
  952. (fp_line (start 2.651 -2.14) (end 2.651 -0.98) (layer F.SilkS) (width 0.12))
  953. (fp_line (start 2.651 0.98) (end 2.651 2.14) (layer F.SilkS) (width 0.12))
  954. (fp_line (start 2.691 -2.113) (end 2.691 -0.98) (layer F.SilkS) (width 0.12))
  955. (fp_line (start 2.691 0.98) (end 2.691 2.113) (layer F.SilkS) (width 0.12))
  956. (fp_line (start 2.731 -2.086) (end 2.731 -0.98) (layer F.SilkS) (width 0.12))
  957. (fp_line (start 2.731 0.98) (end 2.731 2.086) (layer F.SilkS) (width 0.12))
  958. (fp_line (start 2.771 -2.058) (end 2.771 -0.98) (layer F.SilkS) (width 0.12))
  959. (fp_line (start 2.771 0.98) (end 2.771 2.058) (layer F.SilkS) (width 0.12))
  960. (fp_line (start 2.811 -2.028) (end 2.811 -0.98) (layer F.SilkS) (width 0.12))
  961. (fp_line (start 2.811 0.98) (end 2.811 2.028) (layer F.SilkS) (width 0.12))
  962. (fp_line (start 2.851 -1.997) (end 2.851 -0.98) (layer F.SilkS) (width 0.12))
  963. (fp_line (start 2.851 0.98) (end 2.851 1.997) (layer F.SilkS) (width 0.12))
  964. (fp_line (start 2.891 -1.965) (end 2.891 -0.98) (layer F.SilkS) (width 0.12))
  965. (fp_line (start 2.891 0.98) (end 2.891 1.965) (layer F.SilkS) (width 0.12))
  966. (fp_line (start 2.931 -1.932) (end 2.931 -0.98) (layer F.SilkS) (width 0.12))
  967. (fp_line (start 2.931 0.98) (end 2.931 1.932) (layer F.SilkS) (width 0.12))
  968. (fp_line (start 2.971 -1.897) (end 2.971 -0.98) (layer F.SilkS) (width 0.12))
  969. (fp_line (start 2.971 0.98) (end 2.971 1.897) (layer F.SilkS) (width 0.12))
  970. (fp_line (start 3.011 -1.861) (end 3.011 -0.98) (layer F.SilkS) (width 0.12))
  971. (fp_line (start 3.011 0.98) (end 3.011 1.861) (layer F.SilkS) (width 0.12))
  972. (fp_line (start 3.051 -1.823) (end 3.051 -0.98) (layer F.SilkS) (width 0.12))
  973. (fp_line (start 3.051 0.98) (end 3.051 1.823) (layer F.SilkS) (width 0.12))
  974. (fp_line (start 3.091 -1.783) (end 3.091 -0.98) (layer F.SilkS) (width 0.12))
  975. (fp_line (start 3.091 0.98) (end 3.091 1.783) (layer F.SilkS) (width 0.12))
  976. (fp_line (start 3.131 -1.742) (end 3.131 -0.98) (layer F.SilkS) (width 0.12))
  977. (fp_line (start 3.131 0.98) (end 3.131 1.742) (layer F.SilkS) (width 0.12))
  978. (fp_line (start 3.171 -1.699) (end 3.171 -0.98) (layer F.SilkS) (width 0.12))
  979. (fp_line (start 3.171 0.98) (end 3.171 1.699) (layer F.SilkS) (width 0.12))
  980. (fp_line (start 3.211 -1.654) (end 3.211 -0.98) (layer F.SilkS) (width 0.12))
  981. (fp_line (start 3.211 0.98) (end 3.211 1.654) (layer F.SilkS) (width 0.12))
  982. (fp_line (start 3.251 -1.606) (end 3.251 -0.98) (layer F.SilkS) (width 0.12))
  983. (fp_line (start 3.251 0.98) (end 3.251 1.606) (layer F.SilkS) (width 0.12))
  984. (fp_line (start 3.291 -1.556) (end 3.291 -0.98) (layer F.SilkS) (width 0.12))
  985. (fp_line (start 3.291 0.98) (end 3.291 1.556) (layer F.SilkS) (width 0.12))
  986. (fp_line (start 3.331 -1.504) (end 3.331 -0.98) (layer F.SilkS) (width 0.12))
  987. (fp_line (start 3.331 0.98) (end 3.331 1.504) (layer F.SilkS) (width 0.12))
  988. (fp_line (start 3.371 -1.448) (end 3.371 -0.98) (layer F.SilkS) (width 0.12))
  989. (fp_line (start 3.371 0.98) (end 3.371 1.448) (layer F.SilkS) (width 0.12))
  990. (fp_line (start 3.411 -1.39) (end 3.411 -0.98) (layer F.SilkS) (width 0.12))
  991. (fp_line (start 3.411 0.98) (end 3.411 1.39) (layer F.SilkS) (width 0.12))
  992. (fp_line (start 3.451 -1.327) (end 3.451 -0.98) (layer F.SilkS) (width 0.12))
  993. (fp_line (start 3.451 0.98) (end 3.451 1.327) (layer F.SilkS) (width 0.12))
  994. (fp_line (start 3.491 -1.261) (end 3.491 1.261) (layer F.SilkS) (width 0.12))
  995. (fp_line (start 3.531 -1.189) (end 3.531 1.189) (layer F.SilkS) (width 0.12))
  996. (fp_line (start 3.571 -1.112) (end 3.571 1.112) (layer F.SilkS) (width 0.12))
  997. (fp_line (start 3.611 -1.028) (end 3.611 1.028) (layer F.SilkS) (width 0.12))
  998. (fp_line (start 3.651 -0.934) (end 3.651 0.934) (layer F.SilkS) (width 0.12))
  999. (fp_line (start 3.691 -0.829) (end 3.691 0.829) (layer F.SilkS) (width 0.12))
  1000. (fp_line (start 3.731 -0.707) (end 3.731 0.707) (layer F.SilkS) (width 0.12))
  1001. (fp_line (start 3.771 -0.559) (end 3.771 0.559) (layer F.SilkS) (width 0.12))
  1002. (fp_line (start 3.811 -0.354) (end 3.811 0.354) (layer F.SilkS) (width 0.12))
  1003. (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
  1004. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
  1005. (fp_line (start -1.6 -2.85) (end -1.6 2.85) (layer F.CrtYd) (width 0.05))
  1006. (fp_line (start -1.6 2.85) (end 4.1 2.85) (layer F.CrtYd) (width 0.05))
  1007. (fp_line (start 4.1 2.85) (end 4.1 -2.85) (layer F.CrtYd) (width 0.05))
  1008. (fp_line (start 4.1 -2.85) (end -1.6 -2.85) (layer F.CrtYd) (width 0.05))
  1009. (fp_text user %R (at 1.25 0) (layer F.Fab)
  1010. (effects (font (size 1 1) (thickness 0.15)))
  1011. )
  1012. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1013. (net 1 "Net-(C1-Pad1)"))
  1014. (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1015. (net 2 Earth))
  1016. (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_D5.0mm_P2.50mm.wrl
  1017. (at (xyz 0 0 0))
  1018. (scale (xyz 1 1 1))
  1019. (rotate (xyz 0 0 0))
  1020. )
  1021. )
  1022. (module Capacitors_THT:CP_Radial_Tantal_D4.5mm_P2.50mm (layer F.Cu) (tedit 597C781B) (tstamp 59A6E777)
  1023. (at 87.63 53.34)
  1024. (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")
  1025. (tags "CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor")
  1026. (path /59498AA5/59A6D3E0)
  1027. (fp_text reference C2 (at 1.25 -3.56) (layer F.SilkS)
  1028. (effects (font (size 1 1) (thickness 0.15)))
  1029. )
  1030. (fp_text value 100nF (at 1.25 3.56) (layer F.Fab)
  1031. (effects (font (size 1 1) (thickness 0.15)))
  1032. )
  1033. (fp_arc (start 1.25 0) (end -0.770693 -1.18) (angle 119.4) (layer F.SilkS) (width 0.12))
  1034. (fp_arc (start 1.25 0) (end -0.770693 1.18) (angle -119.4) (layer F.SilkS) (width 0.12))
  1035. (fp_arc (start 1.25 0) (end 3.270693 -1.18) (angle 60.6) (layer F.SilkS) (width 0.12))
  1036. (fp_circle (center 1.25 0) (end 3.5 0) (layer F.Fab) (width 0.1))
  1037. (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
  1038. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
  1039. (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
  1040. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
  1041. (fp_line (start -1.35 -2.6) (end -1.35 2.6) (layer F.CrtYd) (width 0.05))
  1042. (fp_line (start -1.35 2.6) (end 3.85 2.6) (layer F.CrtYd) (width 0.05))
  1043. (fp_line (start 3.85 2.6) (end 3.85 -2.6) (layer F.CrtYd) (width 0.05))
  1044. (fp_line (start 3.85 -2.6) (end -1.35 -2.6) (layer F.CrtYd) (width 0.05))
  1045. (fp_text user %R (at 1.25 0) (layer F.Fab)
  1046. (effects (font (size 1 1) (thickness 0.15)))
  1047. )
  1048. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1049. (net 1 "Net-(C1-Pad1)"))
  1050. (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1051. (net 2 Earth))
  1052. (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D4.5mm_P2.50mm.wrl
  1053. (at (xyz 0 0 0))
  1054. (scale (xyz 1 1 1))
  1055. (rotate (xyz 0 0 0))
  1056. )
  1057. )
  1058. (module Capacitors_THT:CP_Radial_Tantal_D4.5mm_P2.50mm (layer F.Cu) (tedit 597C781B) (tstamp 59A6E78A)
  1059. (at 81.32 60.96)
  1060. (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")
  1061. (tags "CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor")
  1062. (path /59498AA5/5949814D)
  1063. (fp_text reference C3 (at 1.25 -3.56) (layer F.SilkS)
  1064. (effects (font (size 1 1) (thickness 0.15)))
  1065. )
  1066. (fp_text value C (at 1.25 3.56) (layer F.Fab)
  1067. (effects (font (size 1 1) (thickness 0.15)))
  1068. )
  1069. (fp_arc (start 1.25 0) (end -0.770693 -1.18) (angle 119.4) (layer F.SilkS) (width 0.12))
  1070. (fp_arc (start 1.25 0) (end -0.770693 1.18) (angle -119.4) (layer F.SilkS) (width 0.12))
  1071. (fp_arc (start 1.25 0) (end 3.270693 -1.18) (angle 60.6) (layer F.SilkS) (width 0.12))
  1072. (fp_circle (center 1.25 0) (end 3.5 0) (layer F.Fab) (width 0.1))
  1073. (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
  1074. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
  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.35 -2.6) (end -1.35 2.6) (layer F.CrtYd) (width 0.05))
  1078. (fp_line (start -1.35 2.6) (end 3.85 2.6) (layer F.CrtYd) (width 0.05))
  1079. (fp_line (start 3.85 2.6) (end 3.85 -2.6) (layer F.CrtYd) (width 0.05))
  1080. (fp_line (start 3.85 -2.6) (end -1.35 -2.6) (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 2 Earth))
  1086. (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1087. (net 3 "Net-(C3-Pad2)"))
  1088. (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D4.5mm_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_D5.0mm_P2.50mm (layer F.Cu) (tedit 597BC7C2) (tstamp 59A6E80F)
  1095. (at 87.67 60.96)
  1096. (descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor")
  1097. (tags "CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor")
  1098. (path /59498AA5/59498146)
  1099. (fp_text reference C4 (at 1.25 -3.81) (layer F.SilkS)
  1100. (effects (font (size 1 1) (thickness 0.15)))
  1101. )
  1102. (fp_text value 4.7uF (at 1.25 3.81) (layer F.Fab)
  1103. (effects (font (size 1 1) (thickness 0.15)))
  1104. )
  1105. (fp_arc (start 1.25 0) (end -1.05558 -1.18) (angle 125.8) (layer F.SilkS) (width 0.12))
  1106. (fp_arc (start 1.25 0) (end -1.05558 1.18) (angle -125.8) (layer F.SilkS) (width 0.12))
  1107. (fp_arc (start 1.25 0) (end 3.55558 -1.18) (angle 54.2) (layer F.SilkS) (width 0.12))
  1108. (fp_circle (center 1.25 0) (end 3.75 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 1.25 -2.55) (end 1.25 2.55) (layer F.SilkS) (width 0.12))
  1112. (fp_line (start 1.29 -2.55) (end 1.29 2.55) (layer F.SilkS) (width 0.12))
  1113. (fp_line (start 1.33 -2.549) (end 1.33 2.549) (layer F.SilkS) (width 0.12))
  1114. (fp_line (start 1.37 -2.548) (end 1.37 2.548) (layer F.SilkS) (width 0.12))
  1115. (fp_line (start 1.41 -2.546) (end 1.41 2.546) (layer F.SilkS) (width 0.12))
  1116. (fp_line (start 1.45 -2.543) (end 1.45 2.543) (layer F.SilkS) (width 0.12))
  1117. (fp_line (start 1.49 -2.539) (end 1.49 2.539) (layer F.SilkS) (width 0.12))
  1118. (fp_line (start 1.53 -2.535) (end 1.53 -0.98) (layer F.SilkS) (width 0.12))
  1119. (fp_line (start 1.53 0.98) (end 1.53 2.535) (layer F.SilkS) (width 0.12))
  1120. (fp_line (start 1.57 -2.531) (end 1.57 -0.98) (layer F.SilkS) (width 0.12))
  1121. (fp_line (start 1.57 0.98) (end 1.57 2.531) (layer F.SilkS) (width 0.12))
  1122. (fp_line (start 1.61 -2.525) (end 1.61 -0.98) (layer F.SilkS) (width 0.12))
  1123. (fp_line (start 1.61 0.98) (end 1.61 2.525) (layer F.SilkS) (width 0.12))
  1124. (fp_line (start 1.65 -2.519) (end 1.65 -0.98) (layer F.SilkS) (width 0.12))
  1125. (fp_line (start 1.65 0.98) (end 1.65 2.519) (layer F.SilkS) (width 0.12))
  1126. (fp_line (start 1.69 -2.513) (end 1.69 -0.98) (layer F.SilkS) (width 0.12))
  1127. (fp_line (start 1.69 0.98) (end 1.69 2.513) (layer F.SilkS) (width 0.12))
  1128. (fp_line (start 1.73 -2.506) (end 1.73 -0.98) (layer F.SilkS) (width 0.12))
  1129. (fp_line (start 1.73 0.98) (end 1.73 2.506) (layer F.SilkS) (width 0.12))
  1130. (fp_line (start 1.77 -2.498) (end 1.77 -0.98) (layer F.SilkS) (width 0.12))
  1131. (fp_line (start 1.77 0.98) (end 1.77 2.498) (layer F.SilkS) (width 0.12))
  1132. (fp_line (start 1.81 -2.489) (end 1.81 -0.98) (layer F.SilkS) (width 0.12))
  1133. (fp_line (start 1.81 0.98) (end 1.81 2.489) (layer F.SilkS) (width 0.12))
  1134. (fp_line (start 1.85 -2.48) (end 1.85 -0.98) (layer F.SilkS) (width 0.12))
  1135. (fp_line (start 1.85 0.98) (end 1.85 2.48) (layer F.SilkS) (width 0.12))
  1136. (fp_line (start 1.89 -2.47) (end 1.89 -0.98) (layer F.SilkS) (width 0.12))
  1137. (fp_line (start 1.89 0.98) (end 1.89 2.47) (layer F.SilkS) (width 0.12))
  1138. (fp_line (start 1.93 -2.46) (end 1.93 -0.98) (layer F.SilkS) (width 0.12))
  1139. (fp_line (start 1.93 0.98) (end 1.93 2.46) (layer F.SilkS) (width 0.12))
  1140. (fp_line (start 1.971 -2.448) (end 1.971 -0.98) (layer F.SilkS) (width 0.12))
  1141. (fp_line (start 1.971 0.98) (end 1.971 2.448) (layer F.SilkS) (width 0.12))
  1142. (fp_line (start 2.011 -2.436) (end 2.011 -0.98) (layer F.SilkS) (width 0.12))
  1143. (fp_line (start 2.011 0.98) (end 2.011 2.436) (layer F.SilkS) (width 0.12))
  1144. (fp_line (start 2.051 -2.424) (end 2.051 -0.98) (layer F.SilkS) (width 0.12))
  1145. (fp_line (start 2.051 0.98) (end 2.051 2.424) (layer F.SilkS) (width 0.12))
  1146. (fp_line (start 2.091 -2.41) (end 2.091 -0.98) (layer F.SilkS) (width 0.12))
  1147. (fp_line (start 2.091 0.98) (end 2.091 2.41) (layer F.SilkS) (width 0.12))
  1148. (fp_line (start 2.131 -2.396) (end 2.131 -0.98) (layer F.SilkS) (width 0.12))
  1149. (fp_line (start 2.131 0.98) (end 2.131 2.396) (layer F.SilkS) (width 0.12))
  1150. (fp_line (start 2.171 -2.382) (end 2.171 -0.98) (layer F.SilkS) (width 0.12))
  1151. (fp_line (start 2.171 0.98) (end 2.171 2.382) (layer F.SilkS) (width 0.12))
  1152. (fp_line (start 2.211 -2.366) (end 2.211 -0.98) (layer F.SilkS) (width 0.12))
  1153. (fp_line (start 2.211 0.98) (end 2.211 2.366) (layer F.SilkS) (width 0.12))
  1154. (fp_line (start 2.251 -2.35) (end 2.251 -0.98) (layer F.SilkS) (width 0.12))
  1155. (fp_line (start 2.251 0.98) (end 2.251 2.35) (layer F.SilkS) (width 0.12))
  1156. (fp_line (start 2.291 -2.333) (end 2.291 -0.98) (layer F.SilkS) (width 0.12))
  1157. (fp_line (start 2.291 0.98) (end 2.291 2.333) (layer F.SilkS) (width 0.12))
  1158. (fp_line (start 2.331 -2.315) (end 2.331 -0.98) (layer F.SilkS) (width 0.12))
  1159. (fp_line (start 2.331 0.98) (end 2.331 2.315) (layer F.SilkS) (width 0.12))
  1160. (fp_line (start 2.371 -2.296) (end 2.371 -0.98) (layer F.SilkS) (width 0.12))
  1161. (fp_line (start 2.371 0.98) (end 2.371 2.296) (layer F.SilkS) (width 0.12))
  1162. (fp_line (start 2.411 -2.276) (end 2.411 -0.98) (layer F.SilkS) (width 0.12))
  1163. (fp_line (start 2.411 0.98) (end 2.411 2.276) (layer F.SilkS) (width 0.12))
  1164. (fp_line (start 2.451 -2.256) (end 2.451 -0.98) (layer F.SilkS) (width 0.12))
  1165. (fp_line (start 2.451 0.98) (end 2.451 2.256) (layer F.SilkS) (width 0.12))
  1166. (fp_line (start 2.491 -2.234) (end 2.491 -0.98) (layer F.SilkS) (width 0.12))
  1167. (fp_line (start 2.491 0.98) (end 2.491 2.234) (layer F.SilkS) (width 0.12))
  1168. (fp_line (start 2.531 -2.212) (end 2.531 -0.98) (layer F.SilkS) (width 0.12))
  1169. (fp_line (start 2.531 0.98) (end 2.531 2.212) (layer F.SilkS) (width 0.12))
  1170. (fp_line (start 2.571 -2.189) (end 2.571 -0.98) (layer F.SilkS) (width 0.12))
  1171. (fp_line (start 2.571 0.98) (end 2.571 2.189) (layer F.SilkS) (width 0.12))
  1172. (fp_line (start 2.611 -2.165) (end 2.611 -0.98) (layer F.SilkS) (width 0.12))
  1173. (fp_line (start 2.611 0.98) (end 2.611 2.165) (layer F.SilkS) (width 0.12))
  1174. (fp_line (start 2.651 -2.14) (end 2.651 -0.98) (layer F.SilkS) (width 0.12))
  1175. (fp_line (start 2.651 0.98) (end 2.651 2.14) (layer F.SilkS) (width 0.12))
  1176. (fp_line (start 2.691 -2.113) (end 2.691 -0.98) (layer F.SilkS) (width 0.12))
  1177. (fp_line (start 2.691 0.98) (end 2.691 2.113) (layer F.SilkS) (width 0.12))
  1178. (fp_line (start 2.731 -2.086) (end 2.731 -0.98) (layer F.SilkS) (width 0.12))
  1179. (fp_line (start 2.731 0.98) (end 2.731 2.086) (layer F.SilkS) (width 0.12))
  1180. (fp_line (start 2.771 -2.058) (end 2.771 -0.98) (layer F.SilkS) (width 0.12))
  1181. (fp_line (start 2.771 0.98) (end 2.771 2.058) (layer F.SilkS) (width 0.12))
  1182. (fp_line (start 2.811 -2.028) (end 2.811 -0.98) (layer F.SilkS) (width 0.12))
  1183. (fp_line (start 2.811 0.98) (end 2.811 2.028) (layer F.SilkS) (width 0.12))
  1184. (fp_line (start 2.851 -1.997) (end 2.851 -0.98) (layer F.SilkS) (width 0.12))
  1185. (fp_line (start 2.851 0.98) (end 2.851 1.997) (layer F.SilkS) (width 0.12))
  1186. (fp_line (start 2.891 -1.965) (end 2.891 -0.98) (layer F.SilkS) (width 0.12))
  1187. (fp_line (start 2.891 0.98) (end 2.891 1.965) (layer F.SilkS) (width 0.12))
  1188. (fp_line (start 2.931 -1.932) (end 2.931 -0.98) (layer F.SilkS) (width 0.12))
  1189. (fp_line (start 2.931 0.98) (end 2.931 1.932) (layer F.SilkS) (width 0.12))
  1190. (fp_line (start 2.971 -1.897) (end 2.971 -0.98) (layer F.SilkS) (width 0.12))
  1191. (fp_line (start 2.971 0.98) (end 2.971 1.897) (layer F.SilkS) (width 0.12))
  1192. (fp_line (start 3.011 -1.861) (end 3.011 -0.98) (layer F.SilkS) (width 0.12))
  1193. (fp_line (start 3.011 0.98) (end 3.011 1.861) (layer F.SilkS) (width 0.12))
  1194. (fp_line (start 3.051 -1.823) (end 3.051 -0.98) (layer F.SilkS) (width 0.12))
  1195. (fp_line (start 3.051 0.98) (end 3.051 1.823) (layer F.SilkS) (width 0.12))
  1196. (fp_line (start 3.091 -1.783) (end 3.091 -0.98) (layer F.SilkS) (width 0.12))
  1197. (fp_line (start 3.091 0.98) (end 3.091 1.783) (layer F.SilkS) (width 0.12))
  1198. (fp_line (start 3.131 -1.742) (end 3.131 -0.98) (layer F.SilkS) (width 0.12))
  1199. (fp_line (start 3.131 0.98) (end 3.131 1.742) (layer F.SilkS) (width 0.12))
  1200. (fp_line (start 3.171 -1.699) (end 3.171 -0.98) (layer F.SilkS) (width 0.12))
  1201. (fp_line (start 3.171 0.98) (end 3.171 1.699) (layer F.SilkS) (width 0.12))
  1202. (fp_line (start 3.211 -1.654) (end 3.211 -0.98) (layer F.SilkS) (width 0.12))
  1203. (fp_line (start 3.211 0.98) (end 3.211 1.654) (layer F.SilkS) (width 0.12))
  1204. (fp_line (start 3.251 -1.606) (end 3.251 -0.98) (layer F.SilkS) (width 0.12))
  1205. (fp_line (start 3.251 0.98) (end 3.251 1.606) (layer F.SilkS) (width 0.12))
  1206. (fp_line (start 3.291 -1.556) (end 3.291 -0.98) (layer F.SilkS) (width 0.12))
  1207. (fp_line (start 3.291 0.98) (end 3.291 1.556) (layer F.SilkS) (width 0.12))
  1208. (fp_line (start 3.331 -1.504) (end 3.331 -0.98) (layer F.SilkS) (width 0.12))
  1209. (fp_line (start 3.331 0.98) (end 3.331 1.504) (layer F.SilkS) (width 0.12))
  1210. (fp_line (start 3.371 -1.448) (end 3.371 -0.98) (layer F.SilkS) (width 0.12))
  1211. (fp_line (start 3.371 0.98) (end 3.371 1.448) (layer F.SilkS) (width 0.12))
  1212. (fp_line (start 3.411 -1.39) (end 3.411 -0.98) (layer F.SilkS) (width 0.12))
  1213. (fp_line (start 3.411 0.98) (end 3.411 1.39) (layer F.SilkS) (width 0.12))
  1214. (fp_line (start 3.451 -1.327) (end 3.451 -0.98) (layer F.SilkS) (width 0.12))
  1215. (fp_line (start 3.451 0.98) (end 3.451 1.327) (layer F.SilkS) (width 0.12))
  1216. (fp_line (start 3.491 -1.261) (end 3.491 1.261) (layer F.SilkS) (width 0.12))
  1217. (fp_line (start 3.531 -1.189) (end 3.531 1.189) (layer F.SilkS) (width 0.12))
  1218. (fp_line (start 3.571 -1.112) (end 3.571 1.112) (layer F.SilkS) (width 0.12))
  1219. (fp_line (start 3.611 -1.028) (end 3.611 1.028) (layer F.SilkS) (width 0.12))
  1220. (fp_line (start 3.651 -0.934) (end 3.651 0.934) (layer F.SilkS) (width 0.12))
  1221. (fp_line (start 3.691 -0.829) (end 3.691 0.829) (layer F.SilkS) (width 0.12))
  1222. (fp_line (start 3.731 -0.707) (end 3.731 0.707) (layer F.SilkS) (width 0.12))
  1223. (fp_line (start 3.771 -0.559) (end 3.771 0.559) (layer F.SilkS) (width 0.12))
  1224. (fp_line (start 3.811 -0.354) (end 3.811 0.354) (layer F.SilkS) (width 0.12))
  1225. (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
  1226. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
  1227. (fp_line (start -1.6 -2.85) (end -1.6 2.85) (layer F.CrtYd) (width 0.05))
  1228. (fp_line (start -1.6 2.85) (end 4.1 2.85) (layer F.CrtYd) (width 0.05))
  1229. (fp_line (start 4.1 2.85) (end 4.1 -2.85) (layer F.CrtYd) (width 0.05))
  1230. (fp_line (start 4.1 -2.85) (end -1.6 -2.85) (layer F.CrtYd) (width 0.05))
  1231. (fp_text user %R (at 1.25 0) (layer F.Fab)
  1232. (effects (font (size 1 1) (thickness 0.15)))
  1233. )
  1234. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1235. (net 3 "Net-(C3-Pad2)"))
  1236. (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1237. (net 2 Earth))
  1238. (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_D5.0mm_P2.50mm.wrl
  1239. (at (xyz 0 0 0))
  1240. (scale (xyz 1 1 1))
  1241. (rotate (xyz 0 0 0))
  1242. )
  1243. )
  1244. (module Capacitors_THT:CP_Radial_D5.0mm_P2.50mm (layer F.Cu) (tedit 597BC7C2) (tstamp 59A6E894)
  1245. (at 81.32 91.44)
  1246. (descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor")
  1247. (tags "CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor")
  1248. (path /59A7109E/59A6D3D9)
  1249. (fp_text reference C5 (at 1.25 -3.81) (layer F.SilkS)
  1250. (effects (font (size 1 1) (thickness 0.15)))
  1251. )
  1252. (fp_text value 4.7uF (at 1.25 3.81) (layer F.Fab)
  1253. (effects (font (size 1 1) (thickness 0.15)))
  1254. )
  1255. (fp_arc (start 1.25 0) (end -1.05558 -1.18) (angle 125.8) (layer F.SilkS) (width 0.12))
  1256. (fp_arc (start 1.25 0) (end -1.05558 1.18) (angle -125.8) (layer F.SilkS) (width 0.12))
  1257. (fp_arc (start 1.25 0) (end 3.55558 -1.18) (angle 54.2) (layer F.SilkS) (width 0.12))
  1258. (fp_circle (center 1.25 0) (end 3.75 0) (layer F.Fab) (width 0.1))
  1259. (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
  1260. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
  1261. (fp_line (start 1.25 -2.55) (end 1.25 2.55) (layer F.SilkS) (width 0.12))
  1262. (fp_line (start 1.29 -2.55) (end 1.29 2.55) (layer F.SilkS) (width 0.12))
  1263. (fp_line (start 1.33 -2.549) (end 1.33 2.549) (layer F.SilkS) (width 0.12))
  1264. (fp_line (start 1.37 -2.548) (end 1.37 2.548) (layer F.SilkS) (width 0.12))
  1265. (fp_line (start 1.41 -2.546) (end 1.41 2.546) (layer F.SilkS) (width 0.12))
  1266. (fp_line (start 1.45 -2.543) (end 1.45 2.543) (layer F.SilkS) (width 0.12))
  1267. (fp_line (start 1.49 -2.539) (end 1.49 2.539) (layer F.SilkS) (width 0.12))
  1268. (fp_line (start 1.53 -2.535) (end 1.53 -0.98) (layer F.SilkS) (width 0.12))
  1269. (fp_line (start 1.53 0.98) (end 1.53 2.535) (layer F.SilkS) (width 0.12))
  1270. (fp_line (start 1.57 -2.531) (end 1.57 -0.98) (layer F.SilkS) (width 0.12))
  1271. (fp_line (start 1.57 0.98) (end 1.57 2.531) (layer F.SilkS) (width 0.12))
  1272. (fp_line (start 1.61 -2.525) (end 1.61 -0.98) (layer F.SilkS) (width 0.12))
  1273. (fp_line (start 1.61 0.98) (end 1.61 2.525) (layer F.SilkS) (width 0.12))
  1274. (fp_line (start 1.65 -2.519) (end 1.65 -0.98) (layer F.SilkS) (width 0.12))
  1275. (fp_line (start 1.65 0.98) (end 1.65 2.519) (layer F.SilkS) (width 0.12))
  1276. (fp_line (start 1.69 -2.513) (end 1.69 -0.98) (layer F.SilkS) (width 0.12))
  1277. (fp_line (start 1.69 0.98) (end 1.69 2.513) (layer F.SilkS) (width 0.12))
  1278. (fp_line (start 1.73 -2.506) (end 1.73 -0.98) (layer F.SilkS) (width 0.12))
  1279. (fp_line (start 1.73 0.98) (end 1.73 2.506) (layer F.SilkS) (width 0.12))
  1280. (fp_line (start 1.77 -2.498) (end 1.77 -0.98) (layer F.SilkS) (width 0.12))
  1281. (fp_line (start 1.77 0.98) (end 1.77 2.498) (layer F.SilkS) (width 0.12))
  1282. (fp_line (start 1.81 -2.489) (end 1.81 -0.98) (layer F.SilkS) (width 0.12))
  1283. (fp_line (start 1.81 0.98) (end 1.81 2.489) (layer F.SilkS) (width 0.12))
  1284. (fp_line (start 1.85 -2.48) (end 1.85 -0.98) (layer F.SilkS) (width 0.12))
  1285. (fp_line (start 1.85 0.98) (end 1.85 2.48) (layer F.SilkS) (width 0.12))
  1286. (fp_line (start 1.89 -2.47) (end 1.89 -0.98) (layer F.SilkS) (width 0.12))
  1287. (fp_line (start 1.89 0.98) (end 1.89 2.47) (layer F.SilkS) (width 0.12))
  1288. (fp_line (start 1.93 -2.46) (end 1.93 -0.98) (layer F.SilkS) (width 0.12))
  1289. (fp_line (start 1.93 0.98) (end 1.93 2.46) (layer F.SilkS) (width 0.12))
  1290. (fp_line (start 1.971 -2.448) (end 1.971 -0.98) (layer F.SilkS) (width 0.12))
  1291. (fp_line (start 1.971 0.98) (end 1.971 2.448) (layer F.SilkS) (width 0.12))
  1292. (fp_line (start 2.011 -2.436) (end 2.011 -0.98) (layer F.SilkS) (width 0.12))
  1293. (fp_line (start 2.011 0.98) (end 2.011 2.436) (layer F.SilkS) (width 0.12))
  1294. (fp_line (start 2.051 -2.424) (end 2.051 -0.98) (layer F.SilkS) (width 0.12))
  1295. (fp_line (start 2.051 0.98) (end 2.051 2.424) (layer F.SilkS) (width 0.12))
  1296. (fp_line (start 2.091 -2.41) (end 2.091 -0.98) (layer F.SilkS) (width 0.12))
  1297. (fp_line (start 2.091 0.98) (end 2.091 2.41) (layer F.SilkS) (width 0.12))
  1298. (fp_line (start 2.131 -2.396) (end 2.131 -0.98) (layer F.SilkS) (width 0.12))
  1299. (fp_line (start 2.131 0.98) (end 2.131 2.396) (layer F.SilkS) (width 0.12))
  1300. (fp_line (start 2.171 -2.382) (end 2.171 -0.98) (layer F.SilkS) (width 0.12))
  1301. (fp_line (start 2.171 0.98) (end 2.171 2.382) (layer F.SilkS) (width 0.12))
  1302. (fp_line (start 2.211 -2.366) (end 2.211 -0.98) (layer F.SilkS) (width 0.12))
  1303. (fp_line (start 2.211 0.98) (end 2.211 2.366) (layer F.SilkS) (width 0.12))
  1304. (fp_line (start 2.251 -2.35) (end 2.251 -0.98) (layer F.SilkS) (width 0.12))
  1305. (fp_line (start 2.251 0.98) (end 2.251 2.35) (layer F.SilkS) (width 0.12))
  1306. (fp_line (start 2.291 -2.333) (end 2.291 -0.98) (layer F.SilkS) (width 0.12))
  1307. (fp_line (start 2.291 0.98) (end 2.291 2.333) (layer F.SilkS) (width 0.12))
  1308. (fp_line (start 2.331 -2.315) (end 2.331 -0.98) (layer F.SilkS) (width 0.12))
  1309. (fp_line (start 2.331 0.98) (end 2.331 2.315) (layer F.SilkS) (width 0.12))
  1310. (fp_line (start 2.371 -2.296) (end 2.371 -0.98) (layer F.SilkS) (width 0.12))
  1311. (fp_line (start 2.371 0.98) (end 2.371 2.296) (layer F.SilkS) (width 0.12))
  1312. (fp_line (start 2.411 -2.276) (end 2.411 -0.98) (layer F.SilkS) (width 0.12))
  1313. (fp_line (start 2.411 0.98) (end 2.411 2.276) (layer F.SilkS) (width 0.12))
  1314. (fp_line (start 2.451 -2.256) (end 2.451 -0.98) (layer F.SilkS) (width 0.12))
  1315. (fp_line (start 2.451 0.98) (end 2.451 2.256) (layer F.SilkS) (width 0.12))
  1316. (fp_line (start 2.491 -2.234) (end 2.491 -0.98) (layer F.SilkS) (width 0.12))
  1317. (fp_line (start 2.491 0.98) (end 2.491 2.234) (layer F.SilkS) (width 0.12))
  1318. (fp_line (start 2.531 -2.212) (end 2.531 -0.98) (layer F.SilkS) (width 0.12))
  1319. (fp_line (start 2.531 0.98) (end 2.531 2.212) (layer F.SilkS) (width 0.12))
  1320. (fp_line (start 2.571 -2.189) (end 2.571 -0.98) (layer F.SilkS) (width 0.12))
  1321. (fp_line (start 2.571 0.98) (end 2.571 2.189) (layer F.SilkS) (width 0.12))
  1322. (fp_line (start 2.611 -2.165) (end 2.611 -0.98) (layer F.SilkS) (width 0.12))
  1323. (fp_line (start 2.611 0.98) (end 2.611 2.165) (layer F.SilkS) (width 0.12))
  1324. (fp_line (start 2.651 -2.14) (end 2.651 -0.98) (layer F.SilkS) (width 0.12))
  1325. (fp_line (start 2.651 0.98) (end 2.651 2.14) (layer F.SilkS) (width 0.12))
  1326. (fp_line (start 2.691 -2.113) (end 2.691 -0.98) (layer F.SilkS) (width 0.12))
  1327. (fp_line (start 2.691 0.98) (end 2.691 2.113) (layer F.SilkS) (width 0.12))
  1328. (fp_line (start 2.731 -2.086) (end 2.731 -0.98) (layer F.SilkS) (width 0.12))
  1329. (fp_line (start 2.731 0.98) (end 2.731 2.086) (layer F.SilkS) (width 0.12))
  1330. (fp_line (start 2.771 -2.058) (end 2.771 -0.98) (layer F.SilkS) (width 0.12))
  1331. (fp_line (start 2.771 0.98) (end 2.771 2.058) (layer F.SilkS) (width 0.12))
  1332. (fp_line (start 2.811 -2.028) (end 2.811 -0.98) (layer F.SilkS) (width 0.12))
  1333. (fp_line (start 2.811 0.98) (end 2.811 2.028) (layer F.SilkS) (width 0.12))
  1334. (fp_line (start 2.851 -1.997) (end 2.851 -0.98) (layer F.SilkS) (width 0.12))
  1335. (fp_line (start 2.851 0.98) (end 2.851 1.997) (layer F.SilkS) (width 0.12))
  1336. (fp_line (start 2.891 -1.965) (end 2.891 -0.98) (layer F.SilkS) (width 0.12))
  1337. (fp_line (start 2.891 0.98) (end 2.891 1.965) (layer F.SilkS) (width 0.12))
  1338. (fp_line (start 2.931 -1.932) (end 2.931 -0.98) (layer F.SilkS) (width 0.12))
  1339. (fp_line (start 2.931 0.98) (end 2.931 1.932) (layer F.SilkS) (width 0.12))
  1340. (fp_line (start 2.971 -1.897) (end 2.971 -0.98) (layer F.SilkS) (width 0.12))
  1341. (fp_line (start 2.971 0.98) (end 2.971 1.897) (layer F.SilkS) (width 0.12))
  1342. (fp_line (start 3.011 -1.861) (end 3.011 -0.98) (layer F.SilkS) (width 0.12))
  1343. (fp_line (start 3.011 0.98) (end 3.011 1.861) (layer F.SilkS) (width 0.12))
  1344. (fp_line (start 3.051 -1.823) (end 3.051 -0.98) (layer F.SilkS) (width 0.12))
  1345. (fp_line (start 3.051 0.98) (end 3.051 1.823) (layer F.SilkS) (width 0.12))
  1346. (fp_line (start 3.091 -1.783) (end 3.091 -0.98) (layer F.SilkS) (width 0.12))
  1347. (fp_line (start 3.091 0.98) (end 3.091 1.783) (layer F.SilkS) (width 0.12))
  1348. (fp_line (start 3.131 -1.742) (end 3.131 -0.98) (layer F.SilkS) (width 0.12))
  1349. (fp_line (start 3.131 0.98) (end 3.131 1.742) (layer F.SilkS) (width 0.12))
  1350. (fp_line (start 3.171 -1.699) (end 3.171 -0.98) (layer F.SilkS) (width 0.12))
  1351. (fp_line (start 3.171 0.98) (end 3.171 1.699) (layer F.SilkS) (width 0.12))
  1352. (fp_line (start 3.211 -1.654) (end 3.211 -0.98) (layer F.SilkS) (width 0.12))
  1353. (fp_line (start 3.211 0.98) (end 3.211 1.654) (layer F.SilkS) (width 0.12))
  1354. (fp_line (start 3.251 -1.606) (end 3.251 -0.98) (layer F.SilkS) (width 0.12))
  1355. (fp_line (start 3.251 0.98) (end 3.251 1.606) (layer F.SilkS) (width 0.12))
  1356. (fp_line (start 3.291 -1.556) (end 3.291 -0.98) (layer F.SilkS) (width 0.12))
  1357. (fp_line (start 3.291 0.98) (end 3.291 1.556) (layer F.SilkS) (width 0.12))
  1358. (fp_line (start 3.331 -1.504) (end 3.331 -0.98) (layer F.SilkS) (width 0.12))
  1359. (fp_line (start 3.331 0.98) (end 3.331 1.504) (layer F.SilkS) (width 0.12))
  1360. (fp_line (start 3.371 -1.448) (end 3.371 -0.98) (layer F.SilkS) (width 0.12))
  1361. (fp_line (start 3.371 0.98) (end 3.371 1.448) (layer F.SilkS) (width 0.12))
  1362. (fp_line (start 3.411 -1.39) (end 3.411 -0.98) (layer F.SilkS) (width 0.12))
  1363. (fp_line (start 3.411 0.98) (end 3.411 1.39) (layer F.SilkS) (width 0.12))
  1364. (fp_line (start 3.451 -1.327) (end 3.451 -0.98) (layer F.SilkS) (width 0.12))
  1365. (fp_line (start 3.451 0.98) (end 3.451 1.327) (layer F.SilkS) (width 0.12))
  1366. (fp_line (start 3.491 -1.261) (end 3.491 1.261) (layer F.SilkS) (width 0.12))
  1367. (fp_line (start 3.531 -1.189) (end 3.531 1.189) (layer F.SilkS) (width 0.12))
  1368. (fp_line (start 3.571 -1.112) (end 3.571 1.112) (layer F.SilkS) (width 0.12))
  1369. (fp_line (start 3.611 -1.028) (end 3.611 1.028) (layer F.SilkS) (width 0.12))
  1370. (fp_line (start 3.651 -0.934) (end 3.651 0.934) (layer F.SilkS) (width 0.12))
  1371. (fp_line (start 3.691 -0.829) (end 3.691 0.829) (layer F.SilkS) (width 0.12))
  1372. (fp_line (start 3.731 -0.707) (end 3.731 0.707) (layer F.SilkS) (width 0.12))
  1373. (fp_line (start 3.771 -0.559) (end 3.771 0.559) (layer F.SilkS) (width 0.12))
  1374. (fp_line (start 3.811 -0.354) (end 3.811 0.354) (layer F.SilkS) (width 0.12))
  1375. (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
  1376. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
  1377. (fp_line (start -1.6 -2.85) (end -1.6 2.85) (layer F.CrtYd) (width 0.05))
  1378. (fp_line (start -1.6 2.85) (end 4.1 2.85) (layer F.CrtYd) (width 0.05))
  1379. (fp_line (start 4.1 2.85) (end 4.1 -2.85) (layer F.CrtYd) (width 0.05))
  1380. (fp_line (start 4.1 -2.85) (end -1.6 -2.85) (layer F.CrtYd) (width 0.05))
  1381. (fp_text user %R (at 1.25 0) (layer F.Fab)
  1382. (effects (font (size 1 1) (thickness 0.15)))
  1383. )
  1384. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1385. (net 21 "Net-(C20-Pad1)"))
  1386. (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1387. (net 2 Earth))
  1388. (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_D5.0mm_P2.50mm.wrl
  1389. (at (xyz 0 0 0))
  1390. (scale (xyz 1 1 1))
  1391. (rotate (xyz 0 0 0))
  1392. )
  1393. )
  1394. (module Capacitors_THT:CP_Radial_Tantal_D4.5mm_P2.50mm (layer F.Cu) (tedit 597C781B) (tstamp 59A6E8A7)
  1395. (at 87.67 91.44)
  1396. (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")
  1397. (tags "CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor")
  1398. (path /59A7109E/59A6D3E0)
  1399. (fp_text reference C6 (at 1.25 -3.56) (layer F.SilkS)
  1400. (effects (font (size 1 1) (thickness 0.15)))
  1401. )
  1402. (fp_text value 100nF (at 1.25 3.56) (layer F.Fab)
  1403. (effects (font (size 1 1) (thickness 0.15)))
  1404. )
  1405. (fp_arc (start 1.25 0) (end -0.770693 -1.18) (angle 119.4) (layer F.SilkS) (width 0.12))
  1406. (fp_arc (start 1.25 0) (end -0.770693 1.18) (angle -119.4) (layer F.SilkS) (width 0.12))
  1407. (fp_arc (start 1.25 0) (end 3.270693 -1.18) (angle 60.6) (layer F.SilkS) (width 0.12))
  1408. (fp_circle (center 1.25 0) (end 3.5 0) (layer F.Fab) (width 0.1))
  1409. (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
  1410. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
  1411. (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
  1412. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
  1413. (fp_line (start -1.35 -2.6) (end -1.35 2.6) (layer F.CrtYd) (width 0.05))
  1414. (fp_line (start -1.35 2.6) (end 3.85 2.6) (layer F.CrtYd) (width 0.05))
  1415. (fp_line (start 3.85 2.6) (end 3.85 -2.6) (layer F.CrtYd) (width 0.05))
  1416. (fp_line (start 3.85 -2.6) (end -1.35 -2.6) (layer F.CrtYd) (width 0.05))
  1417. (fp_text user %R (at 1.25 0) (layer F.Fab)
  1418. (effects (font (size 1 1) (thickness 0.15)))
  1419. )
  1420. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1421. (net 21 "Net-(C20-Pad1)"))
  1422. (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1423. (net 2 Earth))
  1424. (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D4.5mm_P2.50mm.wrl
  1425. (at (xyz 0 0 0))
  1426. (scale (xyz 1 1 1))
  1427. (rotate (xyz 0 0 0))
  1428. )
  1429. )
  1430. (module Capacitors_THT:CP_Radial_Tantal_D4.5mm_P2.50mm (layer F.Cu) (tedit 597C781B) (tstamp 59A6E8BA)
  1431. (at 81.32 99.06)
  1432. (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")
  1433. (tags "CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor")
  1434. (path /59A7109E/5949814D)
  1435. (fp_text reference C7 (at 1.25 -3.56) (layer F.SilkS)
  1436. (effects (font (size 1 1) (thickness 0.15)))
  1437. )
  1438. (fp_text value C (at 1.25 3.56) (layer F.Fab)
  1439. (effects (font (size 1 1) (thickness 0.15)))
  1440. )
  1441. (fp_arc (start 1.25 0) (end -0.770693 -1.18) (angle 119.4) (layer F.SilkS) (width 0.12))
  1442. (fp_arc (start 1.25 0) (end -0.770693 1.18) (angle -119.4) (layer F.SilkS) (width 0.12))
  1443. (fp_arc (start 1.25 0) (end 3.270693 -1.18) (angle 60.6) (layer F.SilkS) (width 0.12))
  1444. (fp_circle (center 1.25 0) (end 3.5 0) (layer F.Fab) (width 0.1))
  1445. (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
  1446. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
  1447. (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
  1448. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
  1449. (fp_line (start -1.35 -2.6) (end -1.35 2.6) (layer F.CrtYd) (width 0.05))
  1450. (fp_line (start -1.35 2.6) (end 3.85 2.6) (layer F.CrtYd) (width 0.05))
  1451. (fp_line (start 3.85 2.6) (end 3.85 -2.6) (layer F.CrtYd) (width 0.05))
  1452. (fp_line (start 3.85 -2.6) (end -1.35 -2.6) (layer F.CrtYd) (width 0.05))
  1453. (fp_text user %R (at 1.25 0) (layer F.Fab)
  1454. (effects (font (size 1 1) (thickness 0.15)))
  1455. )
  1456. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1457. (net 2 Earth))
  1458. (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1459. (net 4 "Net-(C7-Pad2)"))
  1460. (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D4.5mm_P2.50mm.wrl
  1461. (at (xyz 0 0 0))
  1462. (scale (xyz 1 1 1))
  1463. (rotate (xyz 0 0 0))
  1464. )
  1465. )
  1466. (module Capacitors_THT:CP_Radial_D5.0mm_P2.50mm (layer F.Cu) (tedit 597BC7C2) (tstamp 59A6E93F)
  1467. (at 87.67 99.06)
  1468. (descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor")
  1469. (tags "CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor")
  1470. (path /59A7109E/59498146)
  1471. (fp_text reference C8 (at 1.25 -3.81) (layer F.SilkS)
  1472. (effects (font (size 1 1) (thickness 0.15)))
  1473. )
  1474. (fp_text value 4.7uF (at 1.25 3.81) (layer F.Fab)
  1475. (effects (font (size 1 1) (thickness 0.15)))
  1476. )
  1477. (fp_arc (start 1.25 0) (end -1.05558 -1.18) (angle 125.8) (layer F.SilkS) (width 0.12))
  1478. (fp_arc (start 1.25 0) (end -1.05558 1.18) (angle -125.8) (layer F.SilkS) (width 0.12))
  1479. (fp_arc (start 1.25 0) (end 3.55558 -1.18) (angle 54.2) (layer F.SilkS) (width 0.12))
  1480. (fp_circle (center 1.25 0) (end 3.75 0) (layer F.Fab) (width 0.1))
  1481. (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
  1482. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
  1483. (fp_line (start 1.25 -2.55) (end 1.25 2.55) (layer F.SilkS) (width 0.12))
  1484. (fp_line (start 1.29 -2.55) (end 1.29 2.55) (layer F.SilkS) (width 0.12))
  1485. (fp_line (start 1.33 -2.549) (end 1.33 2.549) (layer F.SilkS) (width 0.12))
  1486. (fp_line (start 1.37 -2.548) (end 1.37 2.548) (layer F.SilkS) (width 0.12))
  1487. (fp_line (start 1.41 -2.546) (end 1.41 2.546) (layer F.SilkS) (width 0.12))
  1488. (fp_line (start 1.45 -2.543) (end 1.45 2.543) (layer F.SilkS) (width 0.12))
  1489. (fp_line (start 1.49 -2.539) (end 1.49 2.539) (layer F.SilkS) (width 0.12))
  1490. (fp_line (start 1.53 -2.535) (end 1.53 -0.98) (layer F.SilkS) (width 0.12))
  1491. (fp_line (start 1.53 0.98) (end 1.53 2.535) (layer F.SilkS) (width 0.12))
  1492. (fp_line (start 1.57 -2.531) (end 1.57 -0.98) (layer F.SilkS) (width 0.12))
  1493. (fp_line (start 1.57 0.98) (end 1.57 2.531) (layer F.SilkS) (width 0.12))
  1494. (fp_line (start 1.61 -2.525) (end 1.61 -0.98) (layer F.SilkS) (width 0.12))
  1495. (fp_line (start 1.61 0.98) (end 1.61 2.525) (layer F.SilkS) (width 0.12))
  1496. (fp_line (start 1.65 -2.519) (end 1.65 -0.98) (layer F.SilkS) (width 0.12))
  1497. (fp_line (start 1.65 0.98) (end 1.65 2.519) (layer F.SilkS) (width 0.12))
  1498. (fp_line (start 1.69 -2.513) (end 1.69 -0.98) (layer F.SilkS) (width 0.12))
  1499. (fp_line (start 1.69 0.98) (end 1.69 2.513) (layer F.SilkS) (width 0.12))
  1500. (fp_line (start 1.73 -2.506) (end 1.73 -0.98) (layer F.SilkS) (width 0.12))
  1501. (fp_line (start 1.73 0.98) (end 1.73 2.506) (layer F.SilkS) (width 0.12))
  1502. (fp_line (start 1.77 -2.498) (end 1.77 -0.98) (layer F.SilkS) (width 0.12))
  1503. (fp_line (start 1.77 0.98) (end 1.77 2.498) (layer F.SilkS) (width 0.12))
  1504. (fp_line (start 1.81 -2.489) (end 1.81 -0.98) (layer F.SilkS) (width 0.12))
  1505. (fp_line (start 1.81 0.98) (end 1.81 2.489) (layer F.SilkS) (width 0.12))
  1506. (fp_line (start 1.85 -2.48) (end 1.85 -0.98) (layer F.SilkS) (width 0.12))
  1507. (fp_line (start 1.85 0.98) (end 1.85 2.48) (layer F.SilkS) (width 0.12))
  1508. (fp_line (start 1.89 -2.47) (end 1.89 -0.98) (layer F.SilkS) (width 0.12))
  1509. (fp_line (start 1.89 0.98) (end 1.89 2.47) (layer F.SilkS) (width 0.12))
  1510. (fp_line (start 1.93 -2.46) (end 1.93 -0.98) (layer F.SilkS) (width 0.12))
  1511. (fp_line (start 1.93 0.98) (end 1.93 2.46) (layer F.SilkS) (width 0.12))
  1512. (fp_line (start 1.971 -2.448) (end 1.971 -0.98) (layer F.SilkS) (width 0.12))
  1513. (fp_line (start 1.971 0.98) (end 1.971 2.448) (layer F.SilkS) (width 0.12))
  1514. (fp_line (start 2.011 -2.436) (end 2.011 -0.98) (layer F.SilkS) (width 0.12))
  1515. (fp_line (start 2.011 0.98) (end 2.011 2.436) (layer F.SilkS) (width 0.12))
  1516. (fp_line (start 2.051 -2.424) (end 2.051 -0.98) (layer F.SilkS) (width 0.12))
  1517. (fp_line (start 2.051 0.98) (end 2.051 2.424) (layer F.SilkS) (width 0.12))
  1518. (fp_line (start 2.091 -2.41) (end 2.091 -0.98) (layer F.SilkS) (width 0.12))
  1519. (fp_line (start 2.091 0.98) (end 2.091 2.41) (layer F.SilkS) (width 0.12))
  1520. (fp_line (start 2.131 -2.396) (end 2.131 -0.98) (layer F.SilkS) (width 0.12))
  1521. (fp_line (start 2.131 0.98) (end 2.131 2.396) (layer F.SilkS) (width 0.12))
  1522. (fp_line (start 2.171 -2.382) (end 2.171 -0.98) (layer F.SilkS) (width 0.12))
  1523. (fp_line (start 2.171 0.98) (end 2.171 2.382) (layer F.SilkS) (width 0.12))
  1524. (fp_line (start 2.211 -2.366) (end 2.211 -0.98) (layer F.SilkS) (width 0.12))
  1525. (fp_line (start 2.211 0.98) (end 2.211 2.366) (layer F.SilkS) (width 0.12))
  1526. (fp_line (start 2.251 -2.35) (end 2.251 -0.98) (layer F.SilkS) (width 0.12))
  1527. (fp_line (start 2.251 0.98) (end 2.251 2.35) (layer F.SilkS) (width 0.12))
  1528. (fp_line (start 2.291 -2.333) (end 2.291 -0.98) (layer F.SilkS) (width 0.12))
  1529. (fp_line (start 2.291 0.98) (end 2.291 2.333) (layer F.SilkS) (width 0.12))
  1530. (fp_line (start 2.331 -2.315) (end 2.331 -0.98) (layer F.SilkS) (width 0.12))
  1531. (fp_line (start 2.331 0.98) (end 2.331 2.315) (layer F.SilkS) (width 0.12))
  1532. (fp_line (start 2.371 -2.296) (end 2.371 -0.98) (layer F.SilkS) (width 0.12))
  1533. (fp_line (start 2.371 0.98) (end 2.371 2.296) (layer F.SilkS) (width 0.12))
  1534. (fp_line (start 2.411 -2.276) (end 2.411 -0.98) (layer F.SilkS) (width 0.12))
  1535. (fp_line (start 2.411 0.98) (end 2.411 2.276) (layer F.SilkS) (width 0.12))
  1536. (fp_line (start 2.451 -2.256) (end 2.451 -0.98) (layer F.SilkS) (width 0.12))
  1537. (fp_line (start 2.451 0.98) (end 2.451 2.256) (layer F.SilkS) (width 0.12))
  1538. (fp_line (start 2.491 -2.234) (end 2.491 -0.98) (layer F.SilkS) (width 0.12))
  1539. (fp_line (start 2.491 0.98) (end 2.491 2.234) (layer F.SilkS) (width 0.12))
  1540. (fp_line (start 2.531 -2.212) (end 2.531 -0.98) (layer F.SilkS) (width 0.12))
  1541. (fp_line (start 2.531 0.98) (end 2.531 2.212) (layer F.SilkS) (width 0.12))
  1542. (fp_line (start 2.571 -2.189) (end 2.571 -0.98) (layer F.SilkS) (width 0.12))
  1543. (fp_line (start 2.571 0.98) (end 2.571 2.189) (layer F.SilkS) (width 0.12))
  1544. (fp_line (start 2.611 -2.165) (end 2.611 -0.98) (layer F.SilkS) (width 0.12))
  1545. (fp_line (start 2.611 0.98) (end 2.611 2.165) (layer F.SilkS) (width 0.12))
  1546. (fp_line (start 2.651 -2.14) (end 2.651 -0.98) (layer F.SilkS) (width 0.12))
  1547. (fp_line (start 2.651 0.98) (end 2.651 2.14) (layer F.SilkS) (width 0.12))
  1548. (fp_line (start 2.691 -2.113) (end 2.691 -0.98) (layer F.SilkS) (width 0.12))
  1549. (fp_line (start 2.691 0.98) (end 2.691 2.113) (layer F.SilkS) (width 0.12))
  1550. (fp_line (start 2.731 -2.086) (end 2.731 -0.98) (layer F.SilkS) (width 0.12))
  1551. (fp_line (start 2.731 0.98) (end 2.731 2.086) (layer F.SilkS) (width 0.12))
  1552. (fp_line (start 2.771 -2.058) (end 2.771 -0.98) (layer F.SilkS) (width 0.12))
  1553. (fp_line (start 2.771 0.98) (end 2.771 2.058) (layer F.SilkS) (width 0.12))
  1554. (fp_line (start 2.811 -2.028) (end 2.811 -0.98) (layer F.SilkS) (width 0.12))
  1555. (fp_line (start 2.811 0.98) (end 2.811 2.028) (layer F.SilkS) (width 0.12))
  1556. (fp_line (start 2.851 -1.997) (end 2.851 -0.98) (layer F.SilkS) (width 0.12))
  1557. (fp_line (start 2.851 0.98) (end 2.851 1.997) (layer F.SilkS) (width 0.12))
  1558. (fp_line (start 2.891 -1.965) (end 2.891 -0.98) (layer F.SilkS) (width 0.12))
  1559. (fp_line (start 2.891 0.98) (end 2.891 1.965) (layer F.SilkS) (width 0.12))
  1560. (fp_line (start 2.931 -1.932) (end 2.931 -0.98) (layer F.SilkS) (width 0.12))
  1561. (fp_line (start 2.931 0.98) (end 2.931 1.932) (layer F.SilkS) (width 0.12))
  1562. (fp_line (start 2.971 -1.897) (end 2.971 -0.98) (layer F.SilkS) (width 0.12))
  1563. (fp_line (start 2.971 0.98) (end 2.971 1.897) (layer F.SilkS) (width 0.12))
  1564. (fp_line (start 3.011 -1.861) (end 3.011 -0.98) (layer F.SilkS) (width 0.12))
  1565. (fp_line (start 3.011 0.98) (end 3.011 1.861) (layer F.SilkS) (width 0.12))
  1566. (fp_line (start 3.051 -1.823) (end 3.051 -0.98) (layer F.SilkS) (width 0.12))
  1567. (fp_line (start 3.051 0.98) (end 3.051 1.823) (layer F.SilkS) (width 0.12))
  1568. (fp_line (start 3.091 -1.783) (end 3.091 -0.98) (layer F.SilkS) (width 0.12))
  1569. (fp_line (start 3.091 0.98) (end 3.091 1.783) (layer F.SilkS) (width 0.12))
  1570. (fp_line (start 3.131 -1.742) (end 3.131 -0.98) (layer F.SilkS) (width 0.12))
  1571. (fp_line (start 3.131 0.98) (end 3.131 1.742) (layer F.SilkS) (width 0.12))
  1572. (fp_line (start 3.171 -1.699) (end 3.171 -0.98) (layer F.SilkS) (width 0.12))
  1573. (fp_line (start 3.171 0.98) (end 3.171 1.699) (layer F.SilkS) (width 0.12))
  1574. (fp_line (start 3.211 -1.654) (end 3.211 -0.98) (layer F.SilkS) (width 0.12))
  1575. (fp_line (start 3.211 0.98) (end 3.211 1.654) (layer F.SilkS) (width 0.12))
  1576. (fp_line (start 3.251 -1.606) (end 3.251 -0.98) (layer F.SilkS) (width 0.12))
  1577. (fp_line (start 3.251 0.98) (end 3.251 1.606) (layer F.SilkS) (width 0.12))
  1578. (fp_line (start 3.291 -1.556) (end 3.291 -0.98) (layer F.SilkS) (width 0.12))
  1579. (fp_line (start 3.291 0.98) (end 3.291 1.556) (layer F.SilkS) (width 0.12))
  1580. (fp_line (start 3.331 -1.504) (end 3.331 -0.98) (layer F.SilkS) (width 0.12))
  1581. (fp_line (start 3.331 0.98) (end 3.331 1.504) (layer F.SilkS) (width 0.12))
  1582. (fp_line (start 3.371 -1.448) (end 3.371 -0.98) (layer F.SilkS) (width 0.12))
  1583. (fp_line (start 3.371 0.98) (end 3.371 1.448) (layer F.SilkS) (width 0.12))
  1584. (fp_line (start 3.411 -1.39) (end 3.411 -0.98) (layer F.SilkS) (width 0.12))
  1585. (fp_line (start 3.411 0.98) (end 3.411 1.39) (layer F.SilkS) (width 0.12))
  1586. (fp_line (start 3.451 -1.327) (end 3.451 -0.98) (layer F.SilkS) (width 0.12))
  1587. (fp_line (start 3.451 0.98) (end 3.451 1.327) (layer F.SilkS) (width 0.12))
  1588. (fp_line (start 3.491 -1.261) (end 3.491 1.261) (layer F.SilkS) (width 0.12))
  1589. (fp_line (start 3.531 -1.189) (end 3.531 1.189) (layer F.SilkS) (width 0.12))
  1590. (fp_line (start 3.571 -1.112) (end 3.571 1.112) (layer F.SilkS) (width 0.12))
  1591. (fp_line (start 3.611 -1.028) (end 3.611 1.028) (layer F.SilkS) (width 0.12))
  1592. (fp_line (start 3.651 -0.934) (end 3.651 0.934) (layer F.SilkS) (width 0.12))
  1593. (fp_line (start 3.691 -0.829) (end 3.691 0.829) (layer F.SilkS) (width 0.12))
  1594. (fp_line (start 3.731 -0.707) (end 3.731 0.707) (layer F.SilkS) (width 0.12))
  1595. (fp_line (start 3.771 -0.559) (end 3.771 0.559) (layer F.SilkS) (width 0.12))
  1596. (fp_line (start 3.811 -0.354) (end 3.811 0.354) (layer F.SilkS) (width 0.12))
  1597. (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
  1598. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
  1599. (fp_line (start -1.6 -2.85) (end -1.6 2.85) (layer F.CrtYd) (width 0.05))
  1600. (fp_line (start -1.6 2.85) (end 4.1 2.85) (layer F.CrtYd) (width 0.05))
  1601. (fp_line (start 4.1 2.85) (end 4.1 -2.85) (layer F.CrtYd) (width 0.05))
  1602. (fp_line (start 4.1 -2.85) (end -1.6 -2.85) (layer F.CrtYd) (width 0.05))
  1603. (fp_text user %R (at 1.25 0) (layer F.Fab)
  1604. (effects (font (size 1 1) (thickness 0.15)))
  1605. )
  1606. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1607. (net 4 "Net-(C7-Pad2)"))
  1608. (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1609. (net 2 Earth))
  1610. (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_D5.0mm_P2.50mm.wrl
  1611. (at (xyz 0 0 0))
  1612. (scale (xyz 1 1 1))
  1613. (rotate (xyz 0 0 0))
  1614. )
  1615. )
  1616. (module Capacitors_THT:CP_Radial_D5.0mm_P2.50mm (layer F.Cu) (tedit 597BC7C2) (tstamp 59A6E9C4)
  1617. (at 149.86 53.34)
  1618. (descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor")
  1619. (tags "CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor")
  1620. (path /59A71299/59A6D3D9)
  1621. (fp_text reference C9 (at 1.25 -3.81) (layer F.SilkS)
  1622. (effects (font (size 1 1) (thickness 0.15)))
  1623. )
  1624. (fp_text value 4.7uF (at 1.25 3.81) (layer F.Fab)
  1625. (effects (font (size 1 1) (thickness 0.15)))
  1626. )
  1627. (fp_arc (start 1.25 0) (end -1.05558 -1.18) (angle 125.8) (layer F.SilkS) (width 0.12))
  1628. (fp_arc (start 1.25 0) (end -1.05558 1.18) (angle -125.8) (layer F.SilkS) (width 0.12))
  1629. (fp_arc (start 1.25 0) (end 3.55558 -1.18) (angle 54.2) (layer F.SilkS) (width 0.12))
  1630. (fp_circle (center 1.25 0) (end 3.75 0) (layer F.Fab) (width 0.1))
  1631. (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
  1632. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
  1633. (fp_line (start 1.25 -2.55) (end 1.25 2.55) (layer F.SilkS) (width 0.12))
  1634. (fp_line (start 1.29 -2.55) (end 1.29 2.55) (layer F.SilkS) (width 0.12))
  1635. (fp_line (start 1.33 -2.549) (end 1.33 2.549) (layer F.SilkS) (width 0.12))
  1636. (fp_line (start 1.37 -2.548) (end 1.37 2.548) (layer F.SilkS) (width 0.12))
  1637. (fp_line (start 1.41 -2.546) (end 1.41 2.546) (layer F.SilkS) (width 0.12))
  1638. (fp_line (start 1.45 -2.543) (end 1.45 2.543) (layer F.SilkS) (width 0.12))
  1639. (fp_line (start 1.49 -2.539) (end 1.49 2.539) (layer F.SilkS) (width 0.12))
  1640. (fp_line (start 1.53 -2.535) (end 1.53 -0.98) (layer F.SilkS) (width 0.12))
  1641. (fp_line (start 1.53 0.98) (end 1.53 2.535) (layer F.SilkS) (width 0.12))
  1642. (fp_line (start 1.57 -2.531) (end 1.57 -0.98) (layer F.SilkS) (width 0.12))
  1643. (fp_line (start 1.57 0.98) (end 1.57 2.531) (layer F.SilkS) (width 0.12))
  1644. (fp_line (start 1.61 -2.525) (end 1.61 -0.98) (layer F.SilkS) (width 0.12))
  1645. (fp_line (start 1.61 0.98) (end 1.61 2.525) (layer F.SilkS) (width 0.12))
  1646. (fp_line (start 1.65 -2.519) (end 1.65 -0.98) (layer F.SilkS) (width 0.12))
  1647. (fp_line (start 1.65 0.98) (end 1.65 2.519) (layer F.SilkS) (width 0.12))
  1648. (fp_line (start 1.69 -2.513) (end 1.69 -0.98) (layer F.SilkS) (width 0.12))
  1649. (fp_line (start 1.69 0.98) (end 1.69 2.513) (layer F.SilkS) (width 0.12))
  1650. (fp_line (start 1.73 -2.506) (end 1.73 -0.98) (layer F.SilkS) (width 0.12))
  1651. (fp_line (start 1.73 0.98) (end 1.73 2.506) (layer F.SilkS) (width 0.12))
  1652. (fp_line (start 1.77 -2.498) (end 1.77 -0.98) (layer F.SilkS) (width 0.12))
  1653. (fp_line (start 1.77 0.98) (end 1.77 2.498) (layer F.SilkS) (width 0.12))
  1654. (fp_line (start 1.81 -2.489) (end 1.81 -0.98) (layer F.SilkS) (width 0.12))
  1655. (fp_line (start 1.81 0.98) (end 1.81 2.489) (layer F.SilkS) (width 0.12))
  1656. (fp_line (start 1.85 -2.48) (end 1.85 -0.98) (layer F.SilkS) (width 0.12))
  1657. (fp_line (start 1.85 0.98) (end 1.85 2.48) (layer F.SilkS) (width 0.12))
  1658. (fp_line (start 1.89 -2.47) (end 1.89 -0.98) (layer F.SilkS) (width 0.12))
  1659. (fp_line (start 1.89 0.98) (end 1.89 2.47) (layer F.SilkS) (width 0.12))
  1660. (fp_line (start 1.93 -2.46) (end 1.93 -0.98) (layer F.SilkS) (width 0.12))
  1661. (fp_line (start 1.93 0.98) (end 1.93 2.46) (layer F.SilkS) (width 0.12))
  1662. (fp_line (start 1.971 -2.448) (end 1.971 -0.98) (layer F.SilkS) (width 0.12))
  1663. (fp_line (start 1.971 0.98) (end 1.971 2.448) (layer F.SilkS) (width 0.12))
  1664. (fp_line (start 2.011 -2.436) (end 2.011 -0.98) (layer F.SilkS) (width 0.12))
  1665. (fp_line (start 2.011 0.98) (end 2.011 2.436) (layer F.SilkS) (width 0.12))
  1666. (fp_line (start 2.051 -2.424) (end 2.051 -0.98) (layer F.SilkS) (width 0.12))
  1667. (fp_line (start 2.051 0.98) (end 2.051 2.424) (layer F.SilkS) (width 0.12))
  1668. (fp_line (start 2.091 -2.41) (end 2.091 -0.98) (layer F.SilkS) (width 0.12))
  1669. (fp_line (start 2.091 0.98) (end 2.091 2.41) (layer F.SilkS) (width 0.12))
  1670. (fp_line (start 2.131 -2.396) (end 2.131 -0.98) (layer F.SilkS) (width 0.12))
  1671. (fp_line (start 2.131 0.98) (end 2.131 2.396) (layer F.SilkS) (width 0.12))
  1672. (fp_line (start 2.171 -2.382) (end 2.171 -0.98) (layer F.SilkS) (width 0.12))
  1673. (fp_line (start 2.171 0.98) (end 2.171 2.382) (layer F.SilkS) (width 0.12))
  1674. (fp_line (start 2.211 -2.366) (end 2.211 -0.98) (layer F.SilkS) (width 0.12))
  1675. (fp_line (start 2.211 0.98) (end 2.211 2.366) (layer F.SilkS) (width 0.12))
  1676. (fp_line (start 2.251 -2.35) (end 2.251 -0.98) (layer F.SilkS) (width 0.12))
  1677. (fp_line (start 2.251 0.98) (end 2.251 2.35) (layer F.SilkS) (width 0.12))
  1678. (fp_line (start 2.291 -2.333) (end 2.291 -0.98) (layer F.SilkS) (width 0.12))
  1679. (fp_line (start 2.291 0.98) (end 2.291 2.333) (layer F.SilkS) (width 0.12))
  1680. (fp_line (start 2.331 -2.315) (end 2.331 -0.98) (layer F.SilkS) (width 0.12))
  1681. (fp_line (start 2.331 0.98) (end 2.331 2.315) (layer F.SilkS) (width 0.12))
  1682. (fp_line (start 2.371 -2.296) (end 2.371 -0.98) (layer F.SilkS) (width 0.12))
  1683. (fp_line (start 2.371 0.98) (end 2.371 2.296) (layer F.SilkS) (width 0.12))
  1684. (fp_line (start 2.411 -2.276) (end 2.411 -0.98) (layer F.SilkS) (width 0.12))
  1685. (fp_line (start 2.411 0.98) (end 2.411 2.276) (layer F.SilkS) (width 0.12))
  1686. (fp_line (start 2.451 -2.256) (end 2.451 -0.98) (layer F.SilkS) (width 0.12))
  1687. (fp_line (start 2.451 0.98) (end 2.451 2.256) (layer F.SilkS) (width 0.12))
  1688. (fp_line (start 2.491 -2.234) (end 2.491 -0.98) (layer F.SilkS) (width 0.12))
  1689. (fp_line (start 2.491 0.98) (end 2.491 2.234) (layer F.SilkS) (width 0.12))
  1690. (fp_line (start 2.531 -2.212) (end 2.531 -0.98) (layer F.SilkS) (width 0.12))
  1691. (fp_line (start 2.531 0.98) (end 2.531 2.212) (layer F.SilkS) (width 0.12))
  1692. (fp_line (start 2.571 -2.189) (end 2.571 -0.98) (layer F.SilkS) (width 0.12))
  1693. (fp_line (start 2.571 0.98) (end 2.571 2.189) (layer F.SilkS) (width 0.12))
  1694. (fp_line (start 2.611 -2.165) (end 2.611 -0.98) (layer F.SilkS) (width 0.12))
  1695. (fp_line (start 2.611 0.98) (end 2.611 2.165) (layer F.SilkS) (width 0.12))
  1696. (fp_line (start 2.651 -2.14) (end 2.651 -0.98) (layer F.SilkS) (width 0.12))
  1697. (fp_line (start 2.651 0.98) (end 2.651 2.14) (layer F.SilkS) (width 0.12))
  1698. (fp_line (start 2.691 -2.113) (end 2.691 -0.98) (layer F.SilkS) (width 0.12))
  1699. (fp_line (start 2.691 0.98) (end 2.691 2.113) (layer F.SilkS) (width 0.12))
  1700. (fp_line (start 2.731 -2.086) (end 2.731 -0.98) (layer F.SilkS) (width 0.12))
  1701. (fp_line (start 2.731 0.98) (end 2.731 2.086) (layer F.SilkS) (width 0.12))
  1702. (fp_line (start 2.771 -2.058) (end 2.771 -0.98) (layer F.SilkS) (width 0.12))
  1703. (fp_line (start 2.771 0.98) (end 2.771 2.058) (layer F.SilkS) (width 0.12))
  1704. (fp_line (start 2.811 -2.028) (end 2.811 -0.98) (layer F.SilkS) (width 0.12))
  1705. (fp_line (start 2.811 0.98) (end 2.811 2.028) (layer F.SilkS) (width 0.12))
  1706. (fp_line (start 2.851 -1.997) (end 2.851 -0.98) (layer F.SilkS) (width 0.12))
  1707. (fp_line (start 2.851 0.98) (end 2.851 1.997) (layer F.SilkS) (width 0.12))
  1708. (fp_line (start 2.891 -1.965) (end 2.891 -0.98) (layer F.SilkS) (width 0.12))
  1709. (fp_line (start 2.891 0.98) (end 2.891 1.965) (layer F.SilkS) (width 0.12))
  1710. (fp_line (start 2.931 -1.932) (end 2.931 -0.98) (layer F.SilkS) (width 0.12))
  1711. (fp_line (start 2.931 0.98) (end 2.931 1.932) (layer F.SilkS) (width 0.12))
  1712. (fp_line (start 2.971 -1.897) (end 2.971 -0.98) (layer F.SilkS) (width 0.12))
  1713. (fp_line (start 2.971 0.98) (end 2.971 1.897) (layer F.SilkS) (width 0.12))
  1714. (fp_line (start 3.011 -1.861) (end 3.011 -0.98) (layer F.SilkS) (width 0.12))
  1715. (fp_line (start 3.011 0.98) (end 3.011 1.861) (layer F.SilkS) (width 0.12))
  1716. (fp_line (start 3.051 -1.823) (end 3.051 -0.98) (layer F.SilkS) (width 0.12))
  1717. (fp_line (start 3.051 0.98) (end 3.051 1.823) (layer F.SilkS) (width 0.12))
  1718. (fp_line (start 3.091 -1.783) (end 3.091 -0.98) (layer F.SilkS) (width 0.12))
  1719. (fp_line (start 3.091 0.98) (end 3.091 1.783) (layer F.SilkS) (width 0.12))
  1720. (fp_line (start 3.131 -1.742) (end 3.131 -0.98) (layer F.SilkS) (width 0.12))
  1721. (fp_line (start 3.131 0.98) (end 3.131 1.742) (layer F.SilkS) (width 0.12))
  1722. (fp_line (start 3.171 -1.699) (end 3.171 -0.98) (layer F.SilkS) (width 0.12))
  1723. (fp_line (start 3.171 0.98) (end 3.171 1.699) (layer F.SilkS) (width 0.12))
  1724. (fp_line (start 3.211 -1.654) (end 3.211 -0.98) (layer F.SilkS) (width 0.12))
  1725. (fp_line (start 3.211 0.98) (end 3.211 1.654) (layer F.SilkS) (width 0.12))
  1726. (fp_line (start 3.251 -1.606) (end 3.251 -0.98) (layer F.SilkS) (width 0.12))
  1727. (fp_line (start 3.251 0.98) (end 3.251 1.606) (layer F.SilkS) (width 0.12))
  1728. (fp_line (start 3.291 -1.556) (end 3.291 -0.98) (layer F.SilkS) (width 0.12))
  1729. (fp_line (start 3.291 0.98) (end 3.291 1.556) (layer F.SilkS) (width 0.12))
  1730. (fp_line (start 3.331 -1.504) (end 3.331 -0.98) (layer F.SilkS) (width 0.12))
  1731. (fp_line (start 3.331 0.98) (end 3.331 1.504) (layer F.SilkS) (width 0.12))
  1732. (fp_line (start 3.371 -1.448) (end 3.371 -0.98) (layer F.SilkS) (width 0.12))
  1733. (fp_line (start 3.371 0.98) (end 3.371 1.448) (layer F.SilkS) (width 0.12))
  1734. (fp_line (start 3.411 -1.39) (end 3.411 -0.98) (layer F.SilkS) (width 0.12))
  1735. (fp_line (start 3.411 0.98) (end 3.411 1.39) (layer F.SilkS) (width 0.12))
  1736. (fp_line (start 3.451 -1.327) (end 3.451 -0.98) (layer F.SilkS) (width 0.12))
  1737. (fp_line (start 3.451 0.98) (end 3.451 1.327) (layer F.SilkS) (width 0.12))
  1738. (fp_line (start 3.491 -1.261) (end 3.491 1.261) (layer F.SilkS) (width 0.12))
  1739. (fp_line (start 3.531 -1.189) (end 3.531 1.189) (layer F.SilkS) (width 0.12))
  1740. (fp_line (start 3.571 -1.112) (end 3.571 1.112) (layer F.SilkS) (width 0.12))
  1741. (fp_line (start 3.611 -1.028) (end 3.611 1.028) (layer F.SilkS) (width 0.12))
  1742. (fp_line (start 3.651 -0.934) (end 3.651 0.934) (layer F.SilkS) (width 0.12))
  1743. (fp_line (start 3.691 -0.829) (end 3.691 0.829) (layer F.SilkS) (width 0.12))
  1744. (fp_line (start 3.731 -0.707) (end 3.731 0.707) (layer F.SilkS) (width 0.12))
  1745. (fp_line (start 3.771 -0.559) (end 3.771 0.559) (layer F.SilkS) (width 0.12))
  1746. (fp_line (start 3.811 -0.354) (end 3.811 0.354) (layer F.SilkS) (width 0.12))
  1747. (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
  1748. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
  1749. (fp_line (start -1.6 -2.85) (end -1.6 2.85) (layer F.CrtYd) (width 0.05))
  1750. (fp_line (start -1.6 2.85) (end 4.1 2.85) (layer F.CrtYd) (width 0.05))
  1751. (fp_line (start 4.1 2.85) (end 4.1 -2.85) (layer F.CrtYd) (width 0.05))
  1752. (fp_line (start 4.1 -2.85) (end -1.6 -2.85) (layer F.CrtYd) (width 0.05))
  1753. (fp_text user %R (at 1.25 0) (layer F.Fab)
  1754. (effects (font (size 1 1) (thickness 0.15)))
  1755. )
  1756. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1757. (net 5 "Net-(C10-Pad1)"))
  1758. (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1759. (net 2 Earth))
  1760. (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_D5.0mm_P2.50mm.wrl
  1761. (at (xyz 0 0 0))
  1762. (scale (xyz 1 1 1))
  1763. (rotate (xyz 0 0 0))
  1764. )
  1765. )
  1766. (module Capacitors_THT:CP_Radial_Tantal_D4.5mm_P2.50mm (layer F.Cu) (tedit 597C781B) (tstamp 59A6E9EA)
  1767. (at 149.86 60.96)
  1768. (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")
  1769. (tags "CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor")
  1770. (path /59A71299/5949814D)
  1771. (fp_text reference C11 (at 1.25 -3.56) (layer F.SilkS)
  1772. (effects (font (size 1 1) (thickness 0.15)))
  1773. )
  1774. (fp_text value C (at 1.25 3.56) (layer F.Fab)
  1775. (effects (font (size 1 1) (thickness 0.15)))
  1776. )
  1777. (fp_arc (start 1.25 0) (end -0.770693 -1.18) (angle 119.4) (layer F.SilkS) (width 0.12))
  1778. (fp_arc (start 1.25 0) (end -0.770693 1.18) (angle -119.4) (layer F.SilkS) (width 0.12))
  1779. (fp_arc (start 1.25 0) (end 3.270693 -1.18) (angle 60.6) (layer F.SilkS) (width 0.12))
  1780. (fp_circle (center 1.25 0) (end 3.5 0) (layer F.Fab) (width 0.1))
  1781. (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
  1782. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
  1783. (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
  1784. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
  1785. (fp_line (start -1.35 -2.6) (end -1.35 2.6) (layer F.CrtYd) (width 0.05))
  1786. (fp_line (start -1.35 2.6) (end 3.85 2.6) (layer F.CrtYd) (width 0.05))
  1787. (fp_line (start 3.85 2.6) (end 3.85 -2.6) (layer F.CrtYd) (width 0.05))
  1788. (fp_line (start 3.85 -2.6) (end -1.35 -2.6) (layer F.CrtYd) (width 0.05))
  1789. (fp_text user %R (at 1.25 0) (layer F.Fab)
  1790. (effects (font (size 1 1) (thickness 0.15)))
  1791. )
  1792. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1793. (net 2 Earth))
  1794. (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1795. (net 6 "Net-(C11-Pad2)"))
  1796. (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D4.5mm_P2.50mm.wrl
  1797. (at (xyz 0 0 0))
  1798. (scale (xyz 1 1 1))
  1799. (rotate (xyz 0 0 0))
  1800. )
  1801. )
  1802. (module Capacitors_THT:CP_Radial_D5.0mm_P2.50mm (layer F.Cu) (tedit 597BC7C2) (tstamp 59A6EA6F)
  1803. (at 156.21 60.96)
  1804. (descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor")
  1805. (tags "CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor")
  1806. (path /59A71299/59498146)
  1807. (fp_text reference C12 (at 1.25 -3.81) (layer F.SilkS)
  1808. (effects (font (size 1 1) (thickness 0.15)))
  1809. )
  1810. (fp_text value 4.7uF (at 1.25 3.81) (layer F.Fab)
  1811. (effects (font (size 1 1) (thickness 0.15)))
  1812. )
  1813. (fp_arc (start 1.25 0) (end -1.05558 -1.18) (angle 125.8) (layer F.SilkS) (width 0.12))
  1814. (fp_arc (start 1.25 0) (end -1.05558 1.18) (angle -125.8) (layer F.SilkS) (width 0.12))
  1815. (fp_arc (start 1.25 0) (end 3.55558 -1.18) (angle 54.2) (layer F.SilkS) (width 0.12))
  1816. (fp_circle (center 1.25 0) (end 3.75 0) (layer F.Fab) (width 0.1))
  1817. (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
  1818. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
  1819. (fp_line (start 1.25 -2.55) (end 1.25 2.55) (layer F.SilkS) (width 0.12))
  1820. (fp_line (start 1.29 -2.55) (end 1.29 2.55) (layer F.SilkS) (width 0.12))
  1821. (fp_line (start 1.33 -2.549) (end 1.33 2.549) (layer F.SilkS) (width 0.12))
  1822. (fp_line (start 1.37 -2.548) (end 1.37 2.548) (layer F.SilkS) (width 0.12))
  1823. (fp_line (start 1.41 -2.546) (end 1.41 2.546) (layer F.SilkS) (width 0.12))
  1824. (fp_line (start 1.45 -2.543) (end 1.45 2.543) (layer F.SilkS) (width 0.12))
  1825. (fp_line (start 1.49 -2.539) (end 1.49 2.539) (layer F.SilkS) (width 0.12))
  1826. (fp_line (start 1.53 -2.535) (end 1.53 -0.98) (layer F.SilkS) (width 0.12))
  1827. (fp_line (start 1.53 0.98) (end 1.53 2.535) (layer F.SilkS) (width 0.12))
  1828. (fp_line (start 1.57 -2.531) (end 1.57 -0.98) (layer F.SilkS) (width 0.12))
  1829. (fp_line (start 1.57 0.98) (end 1.57 2.531) (layer F.SilkS) (width 0.12))
  1830. (fp_line (start 1.61 -2.525) (end 1.61 -0.98) (layer F.SilkS) (width 0.12))
  1831. (fp_line (start 1.61 0.98) (end 1.61 2.525) (layer F.SilkS) (width 0.12))
  1832. (fp_line (start 1.65 -2.519) (end 1.65 -0.98) (layer F.SilkS) (width 0.12))
  1833. (fp_line (start 1.65 0.98) (end 1.65 2.519) (layer F.SilkS) (width 0.12))
  1834. (fp_line (start 1.69 -2.513) (end 1.69 -0.98) (layer F.SilkS) (width 0.12))
  1835. (fp_line (start 1.69 0.98) (end 1.69 2.513) (layer F.SilkS) (width 0.12))
  1836. (fp_line (start 1.73 -2.506) (end 1.73 -0.98) (layer F.SilkS) (width 0.12))
  1837. (fp_line (start 1.73 0.98) (end 1.73 2.506) (layer F.SilkS) (width 0.12))
  1838. (fp_line (start 1.77 -2.498) (end 1.77 -0.98) (layer F.SilkS) (width 0.12))
  1839. (fp_line (start 1.77 0.98) (end 1.77 2.498) (layer F.SilkS) (width 0.12))
  1840. (fp_line (start 1.81 -2.489) (end 1.81 -0.98) (layer F.SilkS) (width 0.12))
  1841. (fp_line (start 1.81 0.98) (end 1.81 2.489) (layer F.SilkS) (width 0.12))
  1842. (fp_line (start 1.85 -2.48) (end 1.85 -0.98) (layer F.SilkS) (width 0.12))
  1843. (fp_line (start 1.85 0.98) (end 1.85 2.48) (layer F.SilkS) (width 0.12))
  1844. (fp_line (start 1.89 -2.47) (end 1.89 -0.98) (layer F.SilkS) (width 0.12))
  1845. (fp_line (start 1.89 0.98) (end 1.89 2.47) (layer F.SilkS) (width 0.12))
  1846. (fp_line (start 1.93 -2.46) (end 1.93 -0.98) (layer F.SilkS) (width 0.12))
  1847. (fp_line (start 1.93 0.98) (end 1.93 2.46) (layer F.SilkS) (width 0.12))
  1848. (fp_line (start 1.971 -2.448) (end 1.971 -0.98) (layer F.SilkS) (width 0.12))
  1849. (fp_line (start 1.971 0.98) (end 1.971 2.448) (layer F.SilkS) (width 0.12))
  1850. (fp_line (start 2.011 -2.436) (end 2.011 -0.98) (layer F.SilkS) (width 0.12))
  1851. (fp_line (start 2.011 0.98) (end 2.011 2.436) (layer F.SilkS) (width 0.12))
  1852. (fp_line (start 2.051 -2.424) (end 2.051 -0.98) (layer F.SilkS) (width 0.12))
  1853. (fp_line (start 2.051 0.98) (end 2.051 2.424) (layer F.SilkS) (width 0.12))
  1854. (fp_line (start 2.091 -2.41) (end 2.091 -0.98) (layer F.SilkS) (width 0.12))
  1855. (fp_line (start 2.091 0.98) (end 2.091 2.41) (layer F.SilkS) (width 0.12))
  1856. (fp_line (start 2.131 -2.396) (end 2.131 -0.98) (layer F.SilkS) (width 0.12))
  1857. (fp_line (start 2.131 0.98) (end 2.131 2.396) (layer F.SilkS) (width 0.12))
  1858. (fp_line (start 2.171 -2.382) (end 2.171 -0.98) (layer F.SilkS) (width 0.12))
  1859. (fp_line (start 2.171 0.98) (end 2.171 2.382) (layer F.SilkS) (width 0.12))
  1860. (fp_line (start 2.211 -2.366) (end 2.211 -0.98) (layer F.SilkS) (width 0.12))
  1861. (fp_line (start 2.211 0.98) (end 2.211 2.366) (layer F.SilkS) (width 0.12))
  1862. (fp_line (start 2.251 -2.35) (end 2.251 -0.98) (layer F.SilkS) (width 0.12))
  1863. (fp_line (start 2.251 0.98) (end 2.251 2.35) (layer F.SilkS) (width 0.12))
  1864. (fp_line (start 2.291 -2.333) (end 2.291 -0.98) (layer F.SilkS) (width 0.12))
  1865. (fp_line (start 2.291 0.98) (end 2.291 2.333) (layer F.SilkS) (width 0.12))
  1866. (fp_line (start 2.331 -2.315) (end 2.331 -0.98) (layer F.SilkS) (width 0.12))
  1867. (fp_line (start 2.331 0.98) (end 2.331 2.315) (layer F.SilkS) (width 0.12))
  1868. (fp_line (start 2.371 -2.296) (end 2.371 -0.98) (layer F.SilkS) (width 0.12))
  1869. (fp_line (start 2.371 0.98) (end 2.371 2.296) (layer F.SilkS) (width 0.12))
  1870. (fp_line (start 2.411 -2.276) (end 2.411 -0.98) (layer F.SilkS) (width 0.12))
  1871. (fp_line (start 2.411 0.98) (end 2.411 2.276) (layer F.SilkS) (width 0.12))
  1872. (fp_line (start 2.451 -2.256) (end 2.451 -0.98) (layer F.SilkS) (width 0.12))
  1873. (fp_line (start 2.451 0.98) (end 2.451 2.256) (layer F.SilkS) (width 0.12))
  1874. (fp_line (start 2.491 -2.234) (end 2.491 -0.98) (layer F.SilkS) (width 0.12))
  1875. (fp_line (start 2.491 0.98) (end 2.491 2.234) (layer F.SilkS) (width 0.12))
  1876. (fp_line (start 2.531 -2.212) (end 2.531 -0.98) (layer F.SilkS) (width 0.12))
  1877. (fp_line (start 2.531 0.98) (end 2.531 2.212) (layer F.SilkS) (width 0.12))
  1878. (fp_line (start 2.571 -2.189) (end 2.571 -0.98) (layer F.SilkS) (width 0.12))
  1879. (fp_line (start 2.571 0.98) (end 2.571 2.189) (layer F.SilkS) (width 0.12))
  1880. (fp_line (start 2.611 -2.165) (end 2.611 -0.98) (layer F.SilkS) (width 0.12))
  1881. (fp_line (start 2.611 0.98) (end 2.611 2.165) (layer F.SilkS) (width 0.12))
  1882. (fp_line (start 2.651 -2.14) (end 2.651 -0.98) (layer F.SilkS) (width 0.12))
  1883. (fp_line (start 2.651 0.98) (end 2.651 2.14) (layer F.SilkS) (width 0.12))
  1884. (fp_line (start 2.691 -2.113) (end 2.691 -0.98) (layer F.SilkS) (width 0.12))
  1885. (fp_line (start 2.691 0.98) (end 2.691 2.113) (layer F.SilkS) (width 0.12))
  1886. (fp_line (start 2.731 -2.086) (end 2.731 -0.98) (layer F.SilkS) (width 0.12))
  1887. (fp_line (start 2.731 0.98) (end 2.731 2.086) (layer F.SilkS) (width 0.12))
  1888. (fp_line (start 2.771 -2.058) (end 2.771 -0.98) (layer F.SilkS) (width 0.12))
  1889. (fp_line (start 2.771 0.98) (end 2.771 2.058) (layer F.SilkS) (width 0.12))
  1890. (fp_line (start 2.811 -2.028) (end 2.811 -0.98) (layer F.SilkS) (width 0.12))
  1891. (fp_line (start 2.811 0.98) (end 2.811 2.028) (layer F.SilkS) (width 0.12))
  1892. (fp_line (start 2.851 -1.997) (end 2.851 -0.98) (layer F.SilkS) (width 0.12))
  1893. (fp_line (start 2.851 0.98) (end 2.851 1.997) (layer F.SilkS) (width 0.12))
  1894. (fp_line (start 2.891 -1.965) (end 2.891 -0.98) (layer F.SilkS) (width 0.12))
  1895. (fp_line (start 2.891 0.98) (end 2.891 1.965) (layer F.SilkS) (width 0.12))
  1896. (fp_line (start 2.931 -1.932) (end 2.931 -0.98) (layer F.SilkS) (width 0.12))
  1897. (fp_line (start 2.931 0.98) (end 2.931 1.932) (layer F.SilkS) (width 0.12))
  1898. (fp_line (start 2.971 -1.897) (end 2.971 -0.98) (layer F.SilkS) (width 0.12))
  1899. (fp_line (start 2.971 0.98) (end 2.971 1.897) (layer F.SilkS) (width 0.12))
  1900. (fp_line (start 3.011 -1.861) (end 3.011 -0.98) (layer F.SilkS) (width 0.12))
  1901. (fp_line (start 3.011 0.98) (end 3.011 1.861) (layer F.SilkS) (width 0.12))
  1902. (fp_line (start 3.051 -1.823) (end 3.051 -0.98) (layer F.SilkS) (width 0.12))
  1903. (fp_line (start 3.051 0.98) (end 3.051 1.823) (layer F.SilkS) (width 0.12))
  1904. (fp_line (start 3.091 -1.783) (end 3.091 -0.98) (layer F.SilkS) (width 0.12))
  1905. (fp_line (start 3.091 0.98) (end 3.091 1.783) (layer F.SilkS) (width 0.12))
  1906. (fp_line (start 3.131 -1.742) (end 3.131 -0.98) (layer F.SilkS) (width 0.12))
  1907. (fp_line (start 3.131 0.98) (end 3.131 1.742) (layer F.SilkS) (width 0.12))
  1908. (fp_line (start 3.171 -1.699) (end 3.171 -0.98) (layer F.SilkS) (width 0.12))
  1909. (fp_line (start 3.171 0.98) (end 3.171 1.699) (layer F.SilkS) (width 0.12))
  1910. (fp_line (start 3.211 -1.654) (end 3.211 -0.98) (layer F.SilkS) (width 0.12))
  1911. (fp_line (start 3.211 0.98) (end 3.211 1.654) (layer F.SilkS) (width 0.12))
  1912. (fp_line (start 3.251 -1.606) (end 3.251 -0.98) (layer F.SilkS) (width 0.12))
  1913. (fp_line (start 3.251 0.98) (end 3.251 1.606) (layer F.SilkS) (width 0.12))
  1914. (fp_line (start 3.291 -1.556) (end 3.291 -0.98) (layer F.SilkS) (width 0.12))
  1915. (fp_line (start 3.291 0.98) (end 3.291 1.556) (layer F.SilkS) (width 0.12))
  1916. (fp_line (start 3.331 -1.504) (end 3.331 -0.98) (layer F.SilkS) (width 0.12))
  1917. (fp_line (start 3.331 0.98) (end 3.331 1.504) (layer F.SilkS) (width 0.12))
  1918. (fp_line (start 3.371 -1.448) (end 3.371 -0.98) (layer F.SilkS) (width 0.12))
  1919. (fp_line (start 3.371 0.98) (end 3.371 1.448) (layer F.SilkS) (width 0.12))
  1920. (fp_line (start 3.411 -1.39) (end 3.411 -0.98) (layer F.SilkS) (width 0.12))
  1921. (fp_line (start 3.411 0.98) (end 3.411 1.39) (layer F.SilkS) (width 0.12))
  1922. (fp_line (start 3.451 -1.327) (end 3.451 -0.98) (layer F.SilkS) (width 0.12))
  1923. (fp_line (start 3.451 0.98) (end 3.451 1.327) (layer F.SilkS) (width 0.12))
  1924. (fp_line (start 3.491 -1.261) (end 3.491 1.261) (layer F.SilkS) (width 0.12))
  1925. (fp_line (start 3.531 -1.189) (end 3.531 1.189) (layer F.SilkS) (width 0.12))
  1926. (fp_line (start 3.571 -1.112) (end 3.571 1.112) (layer F.SilkS) (width 0.12))
  1927. (fp_line (start 3.611 -1.028) (end 3.611 1.028) (layer F.SilkS) (width 0.12))
  1928. (fp_line (start 3.651 -0.934) (end 3.651 0.934) (layer F.SilkS) (width 0.12))
  1929. (fp_line (start 3.691 -0.829) (end 3.691 0.829) (layer F.SilkS) (width 0.12))
  1930. (fp_line (start 3.731 -0.707) (end 3.731 0.707) (layer F.SilkS) (width 0.12))
  1931. (fp_line (start 3.771 -0.559) (end 3.771 0.559) (layer F.SilkS) (width 0.12))
  1932. (fp_line (start 3.811 -0.354) (end 3.811 0.354) (layer F.SilkS) (width 0.12))
  1933. (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
  1934. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
  1935. (fp_line (start -1.6 -2.85) (end -1.6 2.85) (layer F.CrtYd) (width 0.05))
  1936. (fp_line (start -1.6 2.85) (end 4.1 2.85) (layer F.CrtYd) (width 0.05))
  1937. (fp_line (start 4.1 2.85) (end 4.1 -2.85) (layer F.CrtYd) (width 0.05))
  1938. (fp_line (start 4.1 -2.85) (end -1.6 -2.85) (layer F.CrtYd) (width 0.05))
  1939. (fp_text user %R (at 1.25 0) (layer F.Fab)
  1940. (effects (font (size 1 1) (thickness 0.15)))
  1941. )
  1942. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1943. (net 6 "Net-(C11-Pad2)"))
  1944. (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1945. (net 2 Earth))
  1946. (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_D5.0mm_P2.50mm.wrl
  1947. (at (xyz 0 0 0))
  1948. (scale (xyz 1 1 1))
  1949. (rotate (xyz 0 0 0))
  1950. )
  1951. )
  1952. (module Capacitors_THT:CP_Radial_D5.0mm_P2.50mm (layer F.Cu) (tedit 597BC7C2) (tstamp 59A6EAF4)
  1953. (at 151.17 91.44)
  1954. (descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor")
  1955. (tags "CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor")
  1956. (path /59A712A3/59A6D3D9)
  1957. (fp_text reference C13 (at 1.25 -3.81) (layer F.SilkS)
  1958. (effects (font (size 1 1) (thickness 0.15)))
  1959. )
  1960. (fp_text value 4.7uF (at 1.25 3.81) (layer F.Fab)
  1961. (effects (font (size 1 1) (thickness 0.15)))
  1962. )
  1963. (fp_arc (start 1.25 0) (end -1.05558 -1.18) (angle 125.8) (layer F.SilkS) (width 0.12))
  1964. (fp_arc (start 1.25 0) (end -1.05558 1.18) (angle -125.8) (layer F.SilkS) (width 0.12))
  1965. (fp_arc (start 1.25 0) (end 3.55558 -1.18) (angle 54.2) (layer F.SilkS) (width 0.12))
  1966. (fp_circle (center 1.25 0) (end 3.75 0) (layer F.Fab) (width 0.1))
  1967. (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
  1968. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
  1969. (fp_line (start 1.25 -2.55) (end 1.25 2.55) (layer F.SilkS) (width 0.12))
  1970. (fp_line (start 1.29 -2.55) (end 1.29 2.55) (layer F.SilkS) (width 0.12))
  1971. (fp_line (start 1.33 -2.549) (end 1.33 2.549) (layer F.SilkS) (width 0.12))
  1972. (fp_line (start 1.37 -2.548) (end 1.37 2.548) (layer F.SilkS) (width 0.12))
  1973. (fp_line (start 1.41 -2.546) (end 1.41 2.546) (layer F.SilkS) (width 0.12))
  1974. (fp_line (start 1.45 -2.543) (end 1.45 2.543) (layer F.SilkS) (width 0.12))
  1975. (fp_line (start 1.49 -2.539) (end 1.49 2.539) (layer F.SilkS) (width 0.12))
  1976. (fp_line (start 1.53 -2.535) (end 1.53 -0.98) (layer F.SilkS) (width 0.12))
  1977. (fp_line (start 1.53 0.98) (end 1.53 2.535) (layer F.SilkS) (width 0.12))
  1978. (fp_line (start 1.57 -2.531) (end 1.57 -0.98) (layer F.SilkS) (width 0.12))
  1979. (fp_line (start 1.57 0.98) (end 1.57 2.531) (layer F.SilkS) (width 0.12))
  1980. (fp_line (start 1.61 -2.525) (end 1.61 -0.98) (layer F.SilkS) (width 0.12))
  1981. (fp_line (start 1.61 0.98) (end 1.61 2.525) (layer F.SilkS) (width 0.12))
  1982. (fp_line (start 1.65 -2.519) (end 1.65 -0.98) (layer F.SilkS) (width 0.12))
  1983. (fp_line (start 1.65 0.98) (end 1.65 2.519) (layer F.SilkS) (width 0.12))
  1984. (fp_line (start 1.69 -2.513) (end 1.69 -0.98) (layer F.SilkS) (width 0.12))
  1985. (fp_line (start 1.69 0.98) (end 1.69 2.513) (layer F.SilkS) (width 0.12))
  1986. (fp_line (start 1.73 -2.506) (end 1.73 -0.98) (layer F.SilkS) (width 0.12))
  1987. (fp_line (start 1.73 0.98) (end 1.73 2.506) (layer F.SilkS) (width 0.12))
  1988. (fp_line (start 1.77 -2.498) (end 1.77 -0.98) (layer F.SilkS) (width 0.12))
  1989. (fp_line (start 1.77 0.98) (end 1.77 2.498) (layer F.SilkS) (width 0.12))
  1990. (fp_line (start 1.81 -2.489) (end 1.81 -0.98) (layer F.SilkS) (width 0.12))
  1991. (fp_line (start 1.81 0.98) (end 1.81 2.489) (layer F.SilkS) (width 0.12))
  1992. (fp_line (start 1.85 -2.48) (end 1.85 -0.98) (layer F.SilkS) (width 0.12))
  1993. (fp_line (start 1.85 0.98) (end 1.85 2.48) (layer F.SilkS) (width 0.12))
  1994. (fp_line (start 1.89 -2.47) (end 1.89 -0.98) (layer F.SilkS) (width 0.12))
  1995. (fp_line (start 1.89 0.98) (end 1.89 2.47) (layer F.SilkS) (width 0.12))
  1996. (fp_line (start 1.93 -2.46) (end 1.93 -0.98) (layer F.SilkS) (width 0.12))
  1997. (fp_line (start 1.93 0.98) (end 1.93 2.46) (layer F.SilkS) (width 0.12))
  1998. (fp_line (start 1.971 -2.448) (end 1.971 -0.98) (layer F.SilkS) (width 0.12))
  1999. (fp_line (start 1.971 0.98) (end 1.971 2.448) (layer F.SilkS) (width 0.12))
  2000. (fp_line (start 2.011 -2.436) (end 2.011 -0.98) (layer F.SilkS) (width 0.12))
  2001. (fp_line (start 2.011 0.98) (end 2.011 2.436) (layer F.SilkS) (width 0.12))
  2002. (fp_line (start 2.051 -2.424) (end 2.051 -0.98) (layer F.SilkS) (width 0.12))
  2003. (fp_line (start 2.051 0.98) (end 2.051 2.424) (layer F.SilkS) (width 0.12))
  2004. (fp_line (start 2.091 -2.41) (end 2.091 -0.98) (layer F.SilkS) (width 0.12))
  2005. (fp_line (start 2.091 0.98) (end 2.091 2.41) (layer F.SilkS) (width 0.12))
  2006. (fp_line (start 2.131 -2.396) (end 2.131 -0.98) (layer F.SilkS) (width 0.12))
  2007. (fp_line (start 2.131 0.98) (end 2.131 2.396) (layer F.SilkS) (width 0.12))
  2008. (fp_line (start 2.171 -2.382) (end 2.171 -0.98) (layer F.SilkS) (width 0.12))
  2009. (fp_line (start 2.171 0.98) (end 2.171 2.382) (layer F.SilkS) (width 0.12))
  2010. (fp_line (start 2.211 -2.366) (end 2.211 -0.98) (layer F.SilkS) (width 0.12))
  2011. (fp_line (start 2.211 0.98) (end 2.211 2.366) (layer F.SilkS) (width 0.12))
  2012. (fp_line (start 2.251 -2.35) (end 2.251 -0.98) (layer F.SilkS) (width 0.12))
  2013. (fp_line (start 2.251 0.98) (end 2.251 2.35) (layer F.SilkS) (width 0.12))
  2014. (fp_line (start 2.291 -2.333) (end 2.291 -0.98) (layer F.SilkS) (width 0.12))
  2015. (fp_line (start 2.291 0.98) (end 2.291 2.333) (layer F.SilkS) (width 0.12))
  2016. (fp_line (start 2.331 -2.315) (end 2.331 -0.98) (layer F.SilkS) (width 0.12))
  2017. (fp_line (start 2.331 0.98) (end 2.331 2.315) (layer F.SilkS) (width 0.12))
  2018. (fp_line (start 2.371 -2.296) (end 2.371 -0.98) (layer F.SilkS) (width 0.12))
  2019. (fp_line (start 2.371 0.98) (end 2.371 2.296) (layer F.SilkS) (width 0.12))
  2020. (fp_line (start 2.411 -2.276) (end 2.411 -0.98) (layer F.SilkS) (width 0.12))
  2021. (fp_line (start 2.411 0.98) (end 2.411 2.276) (layer F.SilkS) (width 0.12))
  2022. (fp_line (start 2.451 -2.256) (end 2.451 -0.98) (layer F.SilkS) (width 0.12))
  2023. (fp_line (start 2.451 0.98) (end 2.451 2.256) (layer F.SilkS) (width 0.12))
  2024. (fp_line (start 2.491 -2.234) (end 2.491 -0.98) (layer F.SilkS) (width 0.12))
  2025. (fp_line (start 2.491 0.98) (end 2.491 2.234) (layer F.SilkS) (width 0.12))
  2026. (fp_line (start 2.531 -2.212) (end 2.531 -0.98) (layer F.SilkS) (width 0.12))
  2027. (fp_line (start 2.531 0.98) (end 2.531 2.212) (layer F.SilkS) (width 0.12))
  2028. (fp_line (start 2.571 -2.189) (end 2.571 -0.98) (layer F.SilkS) (width 0.12))
  2029. (fp_line (start 2.571 0.98) (end 2.571 2.189) (layer F.SilkS) (width 0.12))
  2030. (fp_line (start 2.611 -2.165) (end 2.611 -0.98) (layer F.SilkS) (width 0.12))
  2031. (fp_line (start 2.611 0.98) (end 2.611 2.165) (layer F.SilkS) (width 0.12))
  2032. (fp_line (start 2.651 -2.14) (end 2.651 -0.98) (layer F.SilkS) (width 0.12))
  2033. (fp_line (start 2.651 0.98) (end 2.651 2.14) (layer F.SilkS) (width 0.12))
  2034. (fp_line (start 2.691 -2.113) (end 2.691 -0.98) (layer F.SilkS) (width 0.12))
  2035. (fp_line (start 2.691 0.98) (end 2.691 2.113) (layer F.SilkS) (width 0.12))
  2036. (fp_line (start 2.731 -2.086) (end 2.731 -0.98) (layer F.SilkS) (width 0.12))
  2037. (fp_line (start 2.731 0.98) (end 2.731 2.086) (layer F.SilkS) (width 0.12))
  2038. (fp_line (start 2.771 -2.058) (end 2.771 -0.98) (layer F.SilkS) (width 0.12))
  2039. (fp_line (start 2.771 0.98) (end 2.771 2.058) (layer F.SilkS) (width 0.12))
  2040. (fp_line (start 2.811 -2.028) (end 2.811 -0.98) (layer F.SilkS) (width 0.12))
  2041. (fp_line (start 2.811 0.98) (end 2.811 2.028) (layer F.SilkS) (width 0.12))
  2042. (fp_line (start 2.851 -1.997) (end 2.851 -0.98) (layer F.SilkS) (width 0.12))
  2043. (fp_line (start 2.851 0.98) (end 2.851 1.997) (layer F.SilkS) (width 0.12))
  2044. (fp_line (start 2.891 -1.965) (end 2.891 -0.98) (layer F.SilkS) (width 0.12))
  2045. (fp_line (start 2.891 0.98) (end 2.891 1.965) (layer F.SilkS) (width 0.12))
  2046. (fp_line (start 2.931 -1.932) (end 2.931 -0.98) (layer F.SilkS) (width 0.12))
  2047. (fp_line (start 2.931 0.98) (end 2.931 1.932) (layer F.SilkS) (width 0.12))
  2048. (fp_line (start 2.971 -1.897) (end 2.971 -0.98) (layer F.SilkS) (width 0.12))
  2049. (fp_line (start 2.971 0.98) (end 2.971 1.897) (layer F.SilkS) (width 0.12))
  2050. (fp_line (start 3.011 -1.861) (end 3.011 -0.98) (layer F.SilkS) (width 0.12))
  2051. (fp_line (start 3.011 0.98) (end 3.011 1.861) (layer F.SilkS) (width 0.12))
  2052. (fp_line (start 3.051 -1.823) (end 3.051 -0.98) (layer F.SilkS) (width 0.12))
  2053. (fp_line (start 3.051 0.98) (end 3.051 1.823) (layer F.SilkS) (width 0.12))
  2054. (fp_line (start 3.091 -1.783) (end 3.091 -0.98) (layer F.SilkS) (width 0.12))
  2055. (fp_line (start 3.091 0.98) (end 3.091 1.783) (layer F.SilkS) (width 0.12))
  2056. (fp_line (start 3.131 -1.742) (end 3.131 -0.98) (layer F.SilkS) (width 0.12))
  2057. (fp_line (start 3.131 0.98) (end 3.131 1.742) (layer F.SilkS) (width 0.12))
  2058. (fp_line (start 3.171 -1.699) (end 3.171 -0.98) (layer F.SilkS) (width 0.12))
  2059. (fp_line (start 3.171 0.98) (end 3.171 1.699) (layer F.SilkS) (width 0.12))
  2060. (fp_line (start 3.211 -1.654) (end 3.211 -0.98) (layer F.SilkS) (width 0.12))
  2061. (fp_line (start 3.211 0.98) (end 3.211 1.654) (layer F.SilkS) (width 0.12))
  2062. (fp_line (start 3.251 -1.606) (end 3.251 -0.98) (layer F.SilkS) (width 0.12))
  2063. (fp_line (start 3.251 0.98) (end 3.251 1.606) (layer F.SilkS) (width 0.12))
  2064. (fp_line (start 3.291 -1.556) (end 3.291 -0.98) (layer F.SilkS) (width 0.12))
  2065. (fp_line (start 3.291 0.98) (end 3.291 1.556) (layer F.SilkS) (width 0.12))
  2066. (fp_line (start 3.331 -1.504) (end 3.331 -0.98) (layer F.SilkS) (width 0.12))
  2067. (fp_line (start 3.331 0.98) (end 3.331 1.504) (layer F.SilkS) (width 0.12))
  2068. (fp_line (start 3.371 -1.448) (end 3.371 -0.98) (layer F.SilkS) (width 0.12))
  2069. (fp_line (start 3.371 0.98) (end 3.371 1.448) (layer F.SilkS) (width 0.12))
  2070. (fp_line (start 3.411 -1.39) (end 3.411 -0.98) (layer F.SilkS) (width 0.12))
  2071. (fp_line (start 3.411 0.98) (end 3.411 1.39) (layer F.SilkS) (width 0.12))
  2072. (fp_line (start 3.451 -1.327) (end 3.451 -0.98) (layer F.SilkS) (width 0.12))
  2073. (fp_line (start 3.451 0.98) (end 3.451 1.327) (layer F.SilkS) (width 0.12))
  2074. (fp_line (start 3.491 -1.261) (end 3.491 1.261) (layer F.SilkS) (width 0.12))
  2075. (fp_line (start 3.531 -1.189) (end 3.531 1.189) (layer F.SilkS) (width 0.12))
  2076. (fp_line (start 3.571 -1.112) (end 3.571 1.112) (layer F.SilkS) (width 0.12))
  2077. (fp_line (start 3.611 -1.028) (end 3.611 1.028) (layer F.SilkS) (width 0.12))
  2078. (fp_line (start 3.651 -0.934) (end 3.651 0.934) (layer F.SilkS) (width 0.12))
  2079. (fp_line (start 3.691 -0.829) (end 3.691 0.829) (layer F.SilkS) (width 0.12))
  2080. (fp_line (start 3.731 -0.707) (end 3.731 0.707) (layer F.SilkS) (width 0.12))
  2081. (fp_line (start 3.771 -0.559) (end 3.771 0.559) (layer F.SilkS) (width 0.12))
  2082. (fp_line (start 3.811 -0.354) (end 3.811 0.354) (layer F.SilkS) (width 0.12))
  2083. (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
  2084. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
  2085. (fp_line (start -1.6 -2.85) (end -1.6 2.85) (layer F.CrtYd) (width 0.05))
  2086. (fp_line (start -1.6 2.85) (end 4.1 2.85) (layer F.CrtYd) (width 0.05))
  2087. (fp_line (start 4.1 2.85) (end 4.1 -2.85) (layer F.CrtYd) (width 0.05))
  2088. (fp_line (start 4.1 -2.85) (end -1.6 -2.85) (layer F.CrtYd) (width 0.05))
  2089. (fp_text user %R (at 1.25 0) (layer F.Fab)
  2090. (effects (font (size 1 1) (thickness 0.15)))
  2091. )
  2092. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2093. (net 7 "Net-(C13-Pad1)"))
  2094. (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2095. (net 2 Earth))
  2096. (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_D5.0mm_P2.50mm.wrl
  2097. (at (xyz 0 0 0))
  2098. (scale (xyz 1 1 1))
  2099. (rotate (xyz 0 0 0))
  2100. )
  2101. )
  2102. (module Capacitors_THT:CP_Radial_Tantal_D4.5mm_P2.50mm (layer F.Cu) (tedit 597C781B) (tstamp 59A6EB07)
  2103. (at 157.52 91.44)
  2104. (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")
  2105. (tags "CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor")
  2106. (path /59A712A3/59A6D3E0)
  2107. (fp_text reference C14 (at 1.25 -3.56) (layer F.SilkS)
  2108. (effects (font (size 1 1) (thickness 0.15)))
  2109. )
  2110. (fp_text value 100nF (at 1.25 3.56) (layer F.Fab)
  2111. (effects (font (size 1 1) (thickness 0.15)))
  2112. )
  2113. (fp_arc (start 1.25 0) (end -0.770693 -1.18) (angle 119.4) (layer F.SilkS) (width 0.12))
  2114. (fp_arc (start 1.25 0) (end -0.770693 1.18) (angle -119.4) (layer F.SilkS) (width 0.12))
  2115. (fp_arc (start 1.25 0) (end 3.270693 -1.18) (angle 60.6) (layer F.SilkS) (width 0.12))
  2116. (fp_circle (center 1.25 0) (end 3.5 0) (layer F.Fab) (width 0.1))
  2117. (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
  2118. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
  2119. (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
  2120. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
  2121. (fp_line (start -1.35 -2.6) (end -1.35 2.6) (layer F.CrtYd) (width 0.05))
  2122. (fp_line (start -1.35 2.6) (end 3.85 2.6) (layer F.CrtYd) (width 0.05))
  2123. (fp_line (start 3.85 2.6) (end 3.85 -2.6) (layer F.CrtYd) (width 0.05))
  2124. (fp_line (start 3.85 -2.6) (end -1.35 -2.6) (layer F.CrtYd) (width 0.05))
  2125. (fp_text user %R (at 1.25 0) (layer F.Fab)
  2126. (effects (font (size 1 1) (thickness 0.15)))
  2127. )
  2128. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2129. (net 7 "Net-(C13-Pad1)"))
  2130. (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2131. (net 2 Earth))
  2132. (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D4.5mm_P2.50mm.wrl
  2133. (at (xyz 0 0 0))
  2134. (scale (xyz 1 1 1))
  2135. (rotate (xyz 0 0 0))
  2136. )
  2137. )
  2138. (module Capacitors_THT:CP_Radial_Tantal_D4.5mm_P2.50mm (layer F.Cu) (tedit 597C781B) (tstamp 59A6EB1A)
  2139. (at 151.17 99.06)
  2140. (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")
  2141. (tags "CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor")
  2142. (path /59A712A3/5949814D)
  2143. (fp_text reference C15 (at 1.25 -3.56) (layer F.SilkS)
  2144. (effects (font (size 1 1) (thickness 0.15)))
  2145. )
  2146. (fp_text value C (at 1.25 3.56) (layer F.Fab)
  2147. (effects (font (size 1 1) (thickness 0.15)))
  2148. )
  2149. (fp_arc (start 1.25 0) (end -0.770693 -1.18) (angle 119.4) (layer F.SilkS) (width 0.12))
  2150. (fp_arc (start 1.25 0) (end -0.770693 1.18) (angle -119.4) (layer F.SilkS) (width 0.12))
  2151. (fp_arc (start 1.25 0) (end 3.270693 -1.18) (angle 60.6) (layer F.SilkS) (width 0.12))
  2152. (fp_circle (center 1.25 0) (end 3.5 0) (layer F.Fab) (width 0.1))
  2153. (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
  2154. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
  2155. (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
  2156. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
  2157. (fp_line (start -1.35 -2.6) (end -1.35 2.6) (layer F.CrtYd) (width 0.05))
  2158. (fp_line (start -1.35 2.6) (end 3.85 2.6) (layer F.CrtYd) (width 0.05))
  2159. (fp_line (start 3.85 2.6) (end 3.85 -2.6) (layer F.CrtYd) (width 0.05))
  2160. (fp_line (start 3.85 -2.6) (end -1.35 -2.6) (layer F.CrtYd) (width 0.05))
  2161. (fp_text user %R (at 1.25 0) (layer F.Fab)
  2162. (effects (font (size 1 1) (thickness 0.15)))
  2163. )
  2164. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2165. (net 2 Earth))
  2166. (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2167. (net 8 "Net-(C15-Pad2)"))
  2168. (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D4.5mm_P2.50mm.wrl
  2169. (at (xyz 0 0 0))
  2170. (scale (xyz 1 1 1))
  2171. (rotate (xyz 0 0 0))
  2172. )
  2173. )
  2174. (module Capacitors_THT:CP_Radial_D5.0mm_P2.50mm (layer F.Cu) (tedit 597BC7C2) (tstamp 59A6EB9F)
  2175. (at 157.52 99.06)
  2176. (descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor")
  2177. (tags "CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor")
  2178. (path /59A712A3/59498146)
  2179. (fp_text reference C16 (at 1.25 -3.81) (layer F.SilkS)
  2180. (effects (font (size 1 1) (thickness 0.15)))
  2181. )
  2182. (fp_text value 4.7uF (at 1.25 3.81) (layer F.Fab)
  2183. (effects (font (size 1 1) (thickness 0.15)))
  2184. )
  2185. (fp_arc (start 1.25 0) (end -1.05558 -1.18) (angle 125.8) (layer F.SilkS) (width 0.12))
  2186. (fp_arc (start 1.25 0) (end -1.05558 1.18) (angle -125.8) (layer F.SilkS) (width 0.12))
  2187. (fp_arc (start 1.25 0) (end 3.55558 -1.18) (angle 54.2) (layer F.SilkS) (width 0.12))
  2188. (fp_circle (center 1.25 0) (end 3.75 0) (layer F.Fab) (width 0.1))
  2189. (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
  2190. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
  2191. (fp_line (start 1.25 -2.55) (end 1.25 2.55) (layer F.SilkS) (width 0.12))
  2192. (fp_line (start 1.29 -2.55) (end 1.29 2.55) (layer F.SilkS) (width 0.12))
  2193. (fp_line (start 1.33 -2.549) (end 1.33 2.549) (layer F.SilkS) (width 0.12))
  2194. (fp_line (start 1.37 -2.548) (end 1.37 2.548) (layer F.SilkS) (width 0.12))
  2195. (fp_line (start 1.41 -2.546) (end 1.41 2.546) (layer F.SilkS) (width 0.12))
  2196. (fp_line (start 1.45 -2.543) (end 1.45 2.543) (layer F.SilkS) (width 0.12))
  2197. (fp_line (start 1.49 -2.539) (end 1.49 2.539) (layer F.SilkS) (width 0.12))
  2198. (fp_line (start 1.53 -2.535) (end 1.53 -0.98) (layer F.SilkS) (width 0.12))
  2199. (fp_line (start 1.53 0.98) (end 1.53 2.535) (layer F.SilkS) (width 0.12))
  2200. (fp_line (start 1.57 -2.531) (end 1.57 -0.98) (layer F.SilkS) (width 0.12))
  2201. (fp_line (start 1.57 0.98) (end 1.57 2.531) (layer F.SilkS) (width 0.12))
  2202. (fp_line (start 1.61 -2.525) (end 1.61 -0.98) (layer F.SilkS) (width 0.12))
  2203. (fp_line (start 1.61 0.98) (end 1.61 2.525) (layer F.SilkS) (width 0.12))
  2204. (fp_line (start 1.65 -2.519) (end 1.65 -0.98) (layer F.SilkS) (width 0.12))
  2205. (fp_line (start 1.65 0.98) (end 1.65 2.519) (layer F.SilkS) (width 0.12))
  2206. (fp_line (start 1.69 -2.513) (end 1.69 -0.98) (layer F.SilkS) (width 0.12))
  2207. (fp_line (start 1.69 0.98) (end 1.69 2.513) (layer F.SilkS) (width 0.12))
  2208. (fp_line (start 1.73 -2.506) (end 1.73 -0.98) (layer F.SilkS) (width 0.12))
  2209. (fp_line (start 1.73 0.98) (end 1.73 2.506) (layer F.SilkS) (width 0.12))
  2210. (fp_line (start 1.77 -2.498) (end 1.77 -0.98) (layer F.SilkS) (width 0.12))
  2211. (fp_line (start 1.77 0.98) (end 1.77 2.498) (layer F.SilkS) (width 0.12))
  2212. (fp_line (start 1.81 -2.489) (end 1.81 -0.98) (layer F.SilkS) (width 0.12))
  2213. (fp_line (start 1.81 0.98) (end 1.81 2.489) (layer F.SilkS) (width 0.12))
  2214. (fp_line (start 1.85 -2.48) (end 1.85 -0.98) (layer F.SilkS) (width 0.12))
  2215. (fp_line (start 1.85 0.98) (end 1.85 2.48) (layer F.SilkS) (width 0.12))
  2216. (fp_line (start 1.89 -2.47) (end 1.89 -0.98) (layer F.SilkS) (width 0.12))
  2217. (fp_line (start 1.89 0.98) (end 1.89 2.47) (layer F.SilkS) (width 0.12))
  2218. (fp_line (start 1.93 -2.46) (end 1.93 -0.98) (layer F.SilkS) (width 0.12))
  2219. (fp_line (start 1.93 0.98) (end 1.93 2.46) (layer F.SilkS) (width 0.12))
  2220. (fp_line (start 1.971 -2.448) (end 1.971 -0.98) (layer F.SilkS) (width 0.12))
  2221. (fp_line (start 1.971 0.98) (end 1.971 2.448) (layer F.SilkS) (width 0.12))
  2222. (fp_line (start 2.011 -2.436) (end 2.011 -0.98) (layer F.SilkS) (width 0.12))
  2223. (fp_line (start 2.011 0.98) (end 2.011 2.436) (layer F.SilkS) (width 0.12))
  2224. (fp_line (start 2.051 -2.424) (end 2.051 -0.98) (layer F.SilkS) (width 0.12))
  2225. (fp_line (start 2.051 0.98) (end 2.051 2.424) (layer F.SilkS) (width 0.12))
  2226. (fp_line (start 2.091 -2.41) (end 2.091 -0.98) (layer F.SilkS) (width 0.12))
  2227. (fp_line (start 2.091 0.98) (end 2.091 2.41) (layer F.SilkS) (width 0.12))
  2228. (fp_line (start 2.131 -2.396) (end 2.131 -0.98) (layer F.SilkS) (width 0.12))
  2229. (fp_line (start 2.131 0.98) (end 2.131 2.396) (layer F.SilkS) (width 0.12))
  2230. (fp_line (start 2.171 -2.382) (end 2.171 -0.98) (layer F.SilkS) (width 0.12))
  2231. (fp_line (start 2.171 0.98) (end 2.171 2.382) (layer F.SilkS) (width 0.12))
  2232. (fp_line (start 2.211 -2.366) (end 2.211 -0.98) (layer F.SilkS) (width 0.12))
  2233. (fp_line (start 2.211 0.98) (end 2.211 2.366) (layer F.SilkS) (width 0.12))
  2234. (fp_line (start 2.251 -2.35) (end 2.251 -0.98) (layer F.SilkS) (width 0.12))
  2235. (fp_line (start 2.251 0.98) (end 2.251 2.35) (layer F.SilkS) (width 0.12))
  2236. (fp_line (start 2.291 -2.333) (end 2.291 -0.98) (layer F.SilkS) (width 0.12))
  2237. (fp_line (start 2.291 0.98) (end 2.291 2.333) (layer F.SilkS) (width 0.12))
  2238. (fp_line (start 2.331 -2.315) (end 2.331 -0.98) (layer F.SilkS) (width 0.12))
  2239. (fp_line (start 2.331 0.98) (end 2.331 2.315) (layer F.SilkS) (width 0.12))
  2240. (fp_line (start 2.371 -2.296) (end 2.371 -0.98) (layer F.SilkS) (width 0.12))
  2241. (fp_line (start 2.371 0.98) (end 2.371 2.296) (layer F.SilkS) (width 0.12))
  2242. (fp_line (start 2.411 -2.276) (end 2.411 -0.98) (layer F.SilkS) (width 0.12))
  2243. (fp_line (start 2.411 0.98) (end 2.411 2.276) (layer F.SilkS) (width 0.12))
  2244. (fp_line (start 2.451 -2.256) (end 2.451 -0.98) (layer F.SilkS) (width 0.12))
  2245. (fp_line (start 2.451 0.98) (end 2.451 2.256) (layer F.SilkS) (width 0.12))
  2246. (fp_line (start 2.491 -2.234) (end 2.491 -0.98) (layer F.SilkS) (width 0.12))
  2247. (fp_line (start 2.491 0.98) (end 2.491 2.234) (layer F.SilkS) (width 0.12))
  2248. (fp_line (start 2.531 -2.212) (end 2.531 -0.98) (layer F.SilkS) (width 0.12))
  2249. (fp_line (start 2.531 0.98) (end 2.531 2.212) (layer F.SilkS) (width 0.12))
  2250. (fp_line (start 2.571 -2.189) (end 2.571 -0.98) (layer F.SilkS) (width 0.12))
  2251. (fp_line (start 2.571 0.98) (end 2.571 2.189) (layer F.SilkS) (width 0.12))
  2252. (fp_line (start 2.611 -2.165) (end 2.611 -0.98) (layer F.SilkS) (width 0.12))
  2253. (fp_line (start 2.611 0.98) (end 2.611 2.165) (layer F.SilkS) (width 0.12))
  2254. (fp_line (start 2.651 -2.14) (end 2.651 -0.98) (layer F.SilkS) (width 0.12))
  2255. (fp_line (start 2.651 0.98) (end 2.651 2.14) (layer F.SilkS) (width 0.12))
  2256. (fp_line (start 2.691 -2.113) (end 2.691 -0.98) (layer F.SilkS) (width 0.12))
  2257. (fp_line (start 2.691 0.98) (end 2.691 2.113) (layer F.SilkS) (width 0.12))
  2258. (fp_line (start 2.731 -2.086) (end 2.731 -0.98) (layer F.SilkS) (width 0.12))
  2259. (fp_line (start 2.731 0.98) (end 2.731 2.086) (layer F.SilkS) (width 0.12))
  2260. (fp_line (start 2.771 -2.058) (end 2.771 -0.98) (layer F.SilkS) (width 0.12))
  2261. (fp_line (start 2.771 0.98) (end 2.771 2.058) (layer F.SilkS) (width 0.12))
  2262. (fp_line (start 2.811 -2.028) (end 2.811 -0.98) (layer F.SilkS) (width 0.12))
  2263. (fp_line (start 2.811 0.98) (end 2.811 2.028) (layer F.SilkS) (width 0.12))
  2264. (fp_line (start 2.851 -1.997) (end 2.851 -0.98) (layer F.SilkS) (width 0.12))
  2265. (fp_line (start 2.851 0.98) (end 2.851 1.997) (layer F.SilkS) (width 0.12))
  2266. (fp_line (start 2.891 -1.965) (end 2.891 -0.98) (layer F.SilkS) (width 0.12))
  2267. (fp_line (start 2.891 0.98) (end 2.891 1.965) (layer F.SilkS) (width 0.12))
  2268. (fp_line (start 2.931 -1.932) (end 2.931 -0.98) (layer F.SilkS) (width 0.12))
  2269. (fp_line (start 2.931 0.98) (end 2.931 1.932) (layer F.SilkS) (width 0.12))
  2270. (fp_line (start 2.971 -1.897) (end 2.971 -0.98) (layer F.SilkS) (width 0.12))
  2271. (fp_line (start 2.971 0.98) (end 2.971 1.897) (layer F.SilkS) (width 0.12))
  2272. (fp_line (start 3.011 -1.861) (end 3.011 -0.98) (layer F.SilkS) (width 0.12))
  2273. (fp_line (start 3.011 0.98) (end 3.011 1.861) (layer F.SilkS) (width 0.12))
  2274. (fp_line (start 3.051 -1.823) (end 3.051 -0.98) (layer F.SilkS) (width 0.12))
  2275. (fp_line (start 3.051 0.98) (end 3.051 1.823) (layer F.SilkS) (width 0.12))
  2276. (fp_line (start 3.091 -1.783) (end 3.091 -0.98) (layer F.SilkS) (width 0.12))
  2277. (fp_line (start 3.091 0.98) (end 3.091 1.783) (layer F.SilkS) (width 0.12))
  2278. (fp_line (start 3.131 -1.742) (end 3.131 -0.98) (layer F.SilkS) (width 0.12))
  2279. (fp_line (start 3.131 0.98) (end 3.131 1.742) (layer F.SilkS) (width 0.12))
  2280. (fp_line (start 3.171 -1.699) (end 3.171 -0.98) (layer F.SilkS) (width 0.12))
  2281. (fp_line (start 3.171 0.98) (end 3.171 1.699) (layer F.SilkS) (width 0.12))
  2282. (fp_line (start 3.211 -1.654) (end 3.211 -0.98) (layer F.SilkS) (width 0.12))
  2283. (fp_line (start 3.211 0.98) (end 3.211 1.654) (layer F.SilkS) (width 0.12))
  2284. (fp_line (start 3.251 -1.606) (end 3.251 -0.98) (layer F.SilkS) (width 0.12))
  2285. (fp_line (start 3.251 0.98) (end 3.251 1.606) (layer F.SilkS) (width 0.12))
  2286. (fp_line (start 3.291 -1.556) (end 3.291 -0.98) (layer F.SilkS) (width 0.12))
  2287. (fp_line (start 3.291 0.98) (end 3.291 1.556) (layer F.SilkS) (width 0.12))
  2288. (fp_line (start 3.331 -1.504) (end 3.331 -0.98) (layer F.SilkS) (width 0.12))
  2289. (fp_line (start 3.331 0.98) (end 3.331 1.504) (layer F.SilkS) (width 0.12))
  2290. (fp_line (start 3.371 -1.448) (end 3.371 -0.98) (layer F.SilkS) (width 0.12))
  2291. (fp_line (start 3.371 0.98) (end 3.371 1.448) (layer F.SilkS) (width 0.12))
  2292. (fp_line (start 3.411 -1.39) (end 3.411 -0.98) (layer F.SilkS) (width 0.12))
  2293. (fp_line (start 3.411 0.98) (end 3.411 1.39) (layer F.SilkS) (width 0.12))
  2294. (fp_line (start 3.451 -1.327) (end 3.451 -0.98) (layer F.SilkS) (width 0.12))
  2295. (fp_line (start 3.451 0.98) (end 3.451 1.327) (layer F.SilkS) (width 0.12))
  2296. (fp_line (start 3.491 -1.261) (end 3.491 1.261) (layer F.SilkS) (width 0.12))
  2297. (fp_line (start 3.531 -1.189) (end 3.531 1.189) (layer F.SilkS) (width 0.12))
  2298. (fp_line (start 3.571 -1.112) (end 3.571 1.112) (layer F.SilkS) (width 0.12))
  2299. (fp_line (start 3.611 -1.028) (end 3.611 1.028) (layer F.SilkS) (width 0.12))
  2300. (fp_line (start 3.651 -0.934) (end 3.651 0.934) (layer F.SilkS) (width 0.12))
  2301. (fp_line (start 3.691 -0.829) (end 3.691 0.829) (layer F.SilkS) (width 0.12))
  2302. (fp_line (start 3.731 -0.707) (end 3.731 0.707) (layer F.SilkS) (width 0.12))
  2303. (fp_line (start 3.771 -0.559) (end 3.771 0.559) (layer F.SilkS) (width 0.12))
  2304. (fp_line (start 3.811 -0.354) (end 3.811 0.354) (layer F.SilkS) (width 0.12))
  2305. (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
  2306. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
  2307. (fp_line (start -1.6 -2.85) (end -1.6 2.85) (layer F.CrtYd) (width 0.05))
  2308. (fp_line (start -1.6 2.85) (end 4.1 2.85) (layer F.CrtYd) (width 0.05))
  2309. (fp_line (start 4.1 2.85) (end 4.1 -2.85) (layer F.CrtYd) (width 0.05))
  2310. (fp_line (start 4.1 -2.85) (end -1.6 -2.85) (layer F.CrtYd) (width 0.05))
  2311. (fp_text user %R (at 1.25 0) (layer F.Fab)
  2312. (effects (font (size 1 1) (thickness 0.15)))
  2313. )
  2314. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2315. (net 8 "Net-(C15-Pad2)"))
  2316. (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2317. (net 2 Earth))
  2318. (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_D5.0mm_P2.50mm.wrl
  2319. (at (xyz 0 0 0))
  2320. (scale (xyz 1 1 1))
  2321. (rotate (xyz 0 0 0))
  2322. )
  2323. )
  2324. (module PartsLibraries:RJ45 (layer F.Cu) (tedit 59511D7C) (tstamp 59A6EC93)
  2325. (at 116.84 50.8 180)
  2326. (tags RJ45)
  2327. (path /59526541)
  2328. (fp_text reference J1 (at 4.7 11.18 180) (layer F.SilkS)
  2329. (effects (font (size 1 1) (thickness 0.15)))
  2330. )
  2331. (fp_text value RJ45 (at 4.59 6.25 180) (layer F.Fab)
  2332. (effects (font (size 1 1) (thickness 0.15)))
  2333. )
  2334. (fp_line (start -3.17 14.22) (end 12.07 14.22) (layer F.SilkS) (width 0.12))
  2335. (fp_line (start 12.07 -3.81) (end 12.06 5.18) (layer F.SilkS) (width 0.12))
  2336. (fp_line (start 12.07 -3.81) (end -3.17 -3.81) (layer F.SilkS) (width 0.12))
  2337. (fp_line (start -3.17 -3.81) (end -3.17 5.19) (layer F.SilkS) (width 0.12))
  2338. (fp_line (start 12.06 7.52) (end 12.07 14.22) (layer F.SilkS) (width 0.12))
  2339. (fp_line (start -3.17 7.51) (end -3.17 14.22) (layer F.SilkS) (width 0.12))
  2340. (fp_line (start -3.56 -4.06) (end 12.46 -4.06) (layer F.CrtYd) (width 0.05))
  2341. (fp_line (start -3.56 -4.06) (end -3.56 14.47) (layer F.CrtYd) (width 0.05))
  2342. (fp_line (start 12.46 14.47) (end 12.46 -4.06) (layer F.CrtYd) (width 0.05))
  2343. (fp_line (start 12.46 14.47) (end -3.56 14.47) (layer F.CrtYd) (width 0.05))
  2344. (pad "" np_thru_hole circle (at 10.16 6.35 180) (size 3.65 3.65) (drill 3.25) (layers *.Cu *.SilkS *.Mask))
  2345. (pad "" np_thru_hole circle (at -1.27 6.35 180) (size 3.65 3.65) (drill 3.25) (layers *.Cu *.SilkS *.Mask))
  2346. (pad 1 thru_hole rect (at 0 0 180) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask))
  2347. (pad 2 thru_hole circle (at 1.27 -2.54 180) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask))
  2348. (pad 3 thru_hole circle (at 2.54 0 180) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask))
  2349. (pad 4 thru_hole circle (at 3.81 -2.54 180) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask))
  2350. (pad 5 thru_hole circle (at 5.08 0 180) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask))
  2351. (pad 6 thru_hole circle (at 6.35 -2.54 180) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask))
  2352. (pad 7 thru_hole circle (at 7.62 0 180) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask))
  2353. (pad 8 thru_hole circle (at 8.89 -2.54 180) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
  2354. (net 15 ARD_TEMP))
  2355. (model ../../../../../../Development/multilevelinverter/Hardware/3D/RJ45.wrl
  2356. (at (xyz 0.175 -0.667 0.3))
  2357. (scale (xyz 10 10 10))
  2358. (rotate (xyz 270 0 0))
  2359. )
  2360. )
  2361. (module Connectors_JST:JST_XH_B02B-XH-A_02x2.50mm_Straight (layer F.Cu) (tedit 58EAE7F0) (tstamp 59A6ECBC)
  2362. (at 111.76 66.04 180)
  2363. (descr "JST XH series connector, B02B-XH-A, top entry type, through hole")
  2364. (tags "connector jst xh tht top vertical 2.50mm")
  2365. (path /599EAAF2)
  2366. (fp_text reference J2 (at 1.25 -3.5 180) (layer F.SilkS)
  2367. (effects (font (size 1 1) (thickness 0.15)))
  2368. )
  2369. (fp_text value "Temperature Probe" (at 1.25 4.5 180) (layer F.Fab)
  2370. (effects (font (size 1 1) (thickness 0.15)))
  2371. )
  2372. (fp_line (start -2.45 -2.35) (end -2.45 3.4) (layer F.Fab) (width 0.1))
  2373. (fp_line (start -2.45 3.4) (end 4.95 3.4) (layer F.Fab) (width 0.1))
  2374. (fp_line (start 4.95 3.4) (end 4.95 -2.35) (layer F.Fab) (width 0.1))
  2375. (fp_line (start 4.95 -2.35) (end -2.45 -2.35) (layer F.Fab) (width 0.1))
  2376. (fp_line (start -2.95 -2.85) (end -2.95 3.9) (layer F.CrtYd) (width 0.05))
  2377. (fp_line (start -2.95 3.9) (end 5.45 3.9) (layer F.CrtYd) (width 0.05))
  2378. (fp_line (start 5.45 3.9) (end 5.45 -2.85) (layer F.CrtYd) (width 0.05))
  2379. (fp_line (start 5.45 -2.85) (end -2.95 -2.85) (layer F.CrtYd) (width 0.05))
  2380. (fp_line (start -2.55 -2.45) (end -2.55 3.5) (layer F.SilkS) (width 0.12))
  2381. (fp_line (start -2.55 3.5) (end 5.05 3.5) (layer F.SilkS) (width 0.12))
  2382. (fp_line (start 5.05 3.5) (end 5.05 -2.45) (layer F.SilkS) (width 0.12))
  2383. (fp_line (start 5.05 -2.45) (end -2.55 -2.45) (layer F.SilkS) (width 0.12))
  2384. (fp_line (start 0.75 -2.45) (end 0.75 -1.7) (layer F.SilkS) (width 0.12))
  2385. (fp_line (start 0.75 -1.7) (end 1.75 -1.7) (layer F.SilkS) (width 0.12))
  2386. (fp_line (start 1.75 -1.7) (end 1.75 -2.45) (layer F.SilkS) (width 0.12))
  2387. (fp_line (start 1.75 -2.45) (end 0.75 -2.45) (layer F.SilkS) (width 0.12))
  2388. (fp_line (start -2.55 -2.45) (end -2.55 -1.7) (layer F.SilkS) (width 0.12))
  2389. (fp_line (start -2.55 -1.7) (end -0.75 -1.7) (layer F.SilkS) (width 0.12))
  2390. (fp_line (start -0.75 -1.7) (end -0.75 -2.45) (layer F.SilkS) (width 0.12))
  2391. (fp_line (start -0.75 -2.45) (end -2.55 -2.45) (layer F.SilkS) (width 0.12))
  2392. (fp_line (start 3.25 -2.45) (end 3.25 -1.7) (layer F.SilkS) (width 0.12))
  2393. (fp_line (start 3.25 -1.7) (end 5.05 -1.7) (layer F.SilkS) (width 0.12))
  2394. (fp_line (start 5.05 -1.7) (end 5.05 -2.45) (layer F.SilkS) (width 0.12))
  2395. (fp_line (start 5.05 -2.45) (end 3.25 -2.45) (layer F.SilkS) (width 0.12))
  2396. (fp_line (start -2.55 -0.2) (end -1.8 -0.2) (layer F.SilkS) (width 0.12))
  2397. (fp_line (start -1.8 -0.2) (end -1.8 2.75) (layer F.SilkS) (width 0.12))
  2398. (fp_line (start -1.8 2.75) (end 1.25 2.75) (layer F.SilkS) (width 0.12))
  2399. (fp_line (start 5.05 -0.2) (end 4.3 -0.2) (layer F.SilkS) (width 0.12))
  2400. (fp_line (start 4.3 -0.2) (end 4.3 2.75) (layer F.SilkS) (width 0.12))
  2401. (fp_line (start 4.3 2.75) (end 1.25 2.75) (layer F.SilkS) (width 0.12))
  2402. (fp_line (start -0.35 -2.75) (end -2.85 -2.75) (layer F.SilkS) (width 0.12))
  2403. (fp_line (start -2.85 -2.75) (end -2.85 -0.25) (layer F.SilkS) (width 0.12))
  2404. (fp_line (start -0.35 -2.75) (end -2.85 -2.75) (layer F.Fab) (width 0.1))
  2405. (fp_line (start -2.85 -2.75) (end -2.85 -0.25) (layer F.Fab) (width 0.1))
  2406. (fp_text user %R (at 1.25 2.5 180) (layer F.Fab)
  2407. (effects (font (size 1 1) (thickness 0.15)))
  2408. )
  2409. (pad 1 thru_hole rect (at 0 0 180) (size 1.75 1.75) (drill 1.05) (layers *.Cu *.Mask)
  2410. (net 34 ARD_5V))
  2411. (pad 2 thru_hole circle (at 2.5 0 180) (size 1.75 1.75) (drill 1.05) (layers *.Cu *.Mask)
  2412. (net 15 ARD_TEMP))
  2413. (model Connectors_JST.3dshapes/JST_XH_B02B-XH-A_02x2.50mm_Straight.wrl
  2414. (at (xyz 0 0 0))
  2415. (scale (xyz 1 1 1))
  2416. (rotate (xyz 0 0 0))
  2417. )
  2418. )
  2419. (module Connectors_JST:JST_XH_B02B-XH-A_02x2.50mm_Straight (layer F.Cu) (tedit 58EAE7F0) (tstamp 59A6ECE5)
  2420. (at 77.51 44.45)
  2421. (descr "JST XH series connector, B02B-XH-A, top entry type, through hole")
  2422. (tags "connector jst xh tht top vertical 2.50mm")
  2423. (path /59498AA5/595237FD)
  2424. (fp_text reference J3 (at 1.25 -3.5) (layer F.SilkS)
  2425. (effects (font (size 1 1) (thickness 0.15)))
  2426. )
  2427. (fp_text value "Drive Signal" (at 1.25 4.5) (layer F.Fab)
  2428. (effects (font (size 1 1) (thickness 0.15)))
  2429. )
  2430. (fp_line (start -2.45 -2.35) (end -2.45 3.4) (layer F.Fab) (width 0.1))
  2431. (fp_line (start -2.45 3.4) (end 4.95 3.4) (layer F.Fab) (width 0.1))
  2432. (fp_line (start 4.95 3.4) (end 4.95 -2.35) (layer F.Fab) (width 0.1))
  2433. (fp_line (start 4.95 -2.35) (end -2.45 -2.35) (layer F.Fab) (width 0.1))
  2434. (fp_line (start -2.95 -2.85) (end -2.95 3.9) (layer F.CrtYd) (width 0.05))
  2435. (fp_line (start -2.95 3.9) (end 5.45 3.9) (layer F.CrtYd) (width 0.05))
  2436. (fp_line (start 5.45 3.9) (end 5.45 -2.85) (layer F.CrtYd) (width 0.05))
  2437. (fp_line (start 5.45 -2.85) (end -2.95 -2.85) (layer F.CrtYd) (width 0.05))
  2438. (fp_line (start -2.55 -2.45) (end -2.55 3.5) (layer F.SilkS) (width 0.12))
  2439. (fp_line (start -2.55 3.5) (end 5.05 3.5) (layer F.SilkS) (width 0.12))
  2440. (fp_line (start 5.05 3.5) (end 5.05 -2.45) (layer F.SilkS) (width 0.12))
  2441. (fp_line (start 5.05 -2.45) (end -2.55 -2.45) (layer F.SilkS) (width 0.12))
  2442. (fp_line (start 0.75 -2.45) (end 0.75 -1.7) (layer F.SilkS) (width 0.12))
  2443. (fp_line (start 0.75 -1.7) (end 1.75 -1.7) (layer F.SilkS) (width 0.12))
  2444. (fp_line (start 1.75 -1.7) (end 1.75 -2.45) (layer F.SilkS) (width 0.12))
  2445. (fp_line (start 1.75 -2.45) (end 0.75 -2.45) (layer F.SilkS) (width 0.12))
  2446. (fp_line (start -2.55 -2.45) (end -2.55 -1.7) (layer F.SilkS) (width 0.12))
  2447. (fp_line (start -2.55 -1.7) (end -0.75 -1.7) (layer F.SilkS) (width 0.12))
  2448. (fp_line (start -0.75 -1.7) (end -0.75 -2.45) (layer F.SilkS) (width 0.12))
  2449. (fp_line (start -0.75 -2.45) (end -2.55 -2.45) (layer F.SilkS) (width 0.12))
  2450. (fp_line (start 3.25 -2.45) (end 3.25 -1.7) (layer F.SilkS) (width 0.12))
  2451. (fp_line (start 3.25 -1.7) (end 5.05 -1.7) (layer F.SilkS) (width 0.12))
  2452. (fp_line (start 5.05 -1.7) (end 5.05 -2.45) (layer F.SilkS) (width 0.12))
  2453. (fp_line (start 5.05 -2.45) (end 3.25 -2.45) (layer F.SilkS) (width 0.12))
  2454. (fp_line (start -2.55 -0.2) (end -1.8 -0.2) (layer F.SilkS) (width 0.12))
  2455. (fp_line (start -1.8 -0.2) (end -1.8 2.75) (layer F.SilkS) (width 0.12))
  2456. (fp_line (start -1.8 2.75) (end 1.25 2.75) (layer F.SilkS) (width 0.12))
  2457. (fp_line (start 5.05 -0.2) (end 4.3 -0.2) (layer F.SilkS) (width 0.12))
  2458. (fp_line (start 4.3 -0.2) (end 4.3 2.75) (layer F.SilkS) (width 0.12))
  2459. (fp_line (start 4.3 2.75) (end 1.25 2.75) (layer F.SilkS) (width 0.12))
  2460. (fp_line (start -0.35 -2.75) (end -2.85 -2.75) (layer F.SilkS) (width 0.12))
  2461. (fp_line (start -2.85 -2.75) (end -2.85 -0.25) (layer F.SilkS) (width 0.12))
  2462. (fp_line (start -0.35 -2.75) (end -2.85 -2.75) (layer F.Fab) (width 0.1))
  2463. (fp_line (start -2.85 -2.75) (end -2.85 -0.25) (layer F.Fab) (width 0.1))
  2464. (fp_text user %R (at 1.25 2.5) (layer F.Fab)
  2465. (effects (font (size 1 1) (thickness 0.15)))
  2466. )
  2467. (pad 1 thru_hole rect (at 0 0) (size 1.75 1.75) (drill 1.05) (layers *.Cu *.Mask)
  2468. (net 3 "Net-(C3-Pad2)"))
  2469. (pad 2 thru_hole circle (at 2.5 0) (size 1.75 1.75) (drill 1.05) (layers *.Cu *.Mask)
  2470. (net 2 Earth))
  2471. (model Connectors_JST.3dshapes/JST_XH_B02B-XH-A_02x2.50mm_Straight.wrl
  2472. (at (xyz 0 0 0))
  2473. (scale (xyz 1 1 1))
  2474. (rotate (xyz 0 0 0))
  2475. )
  2476. )
  2477. (module Connectors_JST:JST_XH_B02B-XH-A_02x2.50mm_Straight (layer F.Cu) (tedit 58EAE7F0) (tstamp 59A6ED0E)
  2478. (at 80.05 82.55)
  2479. (descr "JST XH series connector, B02B-XH-A, top entry type, through hole")
  2480. (tags "connector jst xh tht top vertical 2.50mm")
  2481. (path /59A7109E/595237FD)
  2482. (fp_text reference J4 (at 1.25 -3.5) (layer F.SilkS)
  2483. (effects (font (size 1 1) (thickness 0.15)))
  2484. )
  2485. (fp_text value "Drive Signal" (at 1.25 4.5) (layer F.Fab)
  2486. (effects (font (size 1 1) (thickness 0.15)))
  2487. )
  2488. (fp_line (start -2.45 -2.35) (end -2.45 3.4) (layer F.Fab) (width 0.1))
  2489. (fp_line (start -2.45 3.4) (end 4.95 3.4) (layer F.Fab) (width 0.1))
  2490. (fp_line (start 4.95 3.4) (end 4.95 -2.35) (layer F.Fab) (width 0.1))
  2491. (fp_line (start 4.95 -2.35) (end -2.45 -2.35) (layer F.Fab) (width 0.1))
  2492. (fp_line (start -2.95 -2.85) (end -2.95 3.9) (layer F.CrtYd) (width 0.05))
  2493. (fp_line (start -2.95 3.9) (end 5.45 3.9) (layer F.CrtYd) (width 0.05))
  2494. (fp_line (start 5.45 3.9) (end 5.45 -2.85) (layer F.CrtYd) (width 0.05))
  2495. (fp_line (start 5.45 -2.85) (end -2.95 -2.85) (layer F.CrtYd) (width 0.05))
  2496. (fp_line (start -2.55 -2.45) (end -2.55 3.5) (layer F.SilkS) (width 0.12))
  2497. (fp_line (start -2.55 3.5) (end 5.05 3.5) (layer F.SilkS) (width 0.12))
  2498. (fp_line (start 5.05 3.5) (end 5.05 -2.45) (layer F.SilkS) (width 0.12))
  2499. (fp_line (start 5.05 -2.45) (end -2.55 -2.45) (layer F.SilkS) (width 0.12))
  2500. (fp_line (start 0.75 -2.45) (end 0.75 -1.7) (layer F.SilkS) (width 0.12))
  2501. (fp_line (start 0.75 -1.7) (end 1.75 -1.7) (layer F.SilkS) (width 0.12))
  2502. (fp_line (start 1.75 -1.7) (end 1.75 -2.45) (layer F.SilkS) (width 0.12))
  2503. (fp_line (start 1.75 -2.45) (end 0.75 -2.45) (layer F.SilkS) (width 0.12))
  2504. (fp_line (start -2.55 -2.45) (end -2.55 -1.7) (layer F.SilkS) (width 0.12))
  2505. (fp_line (start -2.55 -1.7) (end -0.75 -1.7) (layer F.SilkS) (width 0.12))
  2506. (fp_line (start -0.75 -1.7) (end -0.75 -2.45) (layer F.SilkS) (width 0.12))
  2507. (fp_line (start -0.75 -2.45) (end -2.55 -2.45) (layer F.SilkS) (width 0.12))
  2508. (fp_line (start 3.25 -2.45) (end 3.25 -1.7) (layer F.SilkS) (width 0.12))
  2509. (fp_line (start 3.25 -1.7) (end 5.05 -1.7) (layer F.SilkS) (width 0.12))
  2510. (fp_line (start 5.05 -1.7) (end 5.05 -2.45) (layer F.SilkS) (width 0.12))
  2511. (fp_line (start 5.05 -2.45) (end 3.25 -2.45) (layer F.SilkS) (width 0.12))
  2512. (fp_line (start -2.55 -0.2) (end -1.8 -0.2) (layer F.SilkS) (width 0.12))
  2513. (fp_line (start -1.8 -0.2) (end -1.8 2.75) (layer F.SilkS) (width 0.12))
  2514. (fp_line (start -1.8 2.75) (end 1.25 2.75) (layer F.SilkS) (width 0.12))
  2515. (fp_line (start 5.05 -0.2) (end 4.3 -0.2) (layer F.SilkS) (width 0.12))
  2516. (fp_line (start 4.3 -0.2) (end 4.3 2.75) (layer F.SilkS) (width 0.12))
  2517. (fp_line (start 4.3 2.75) (end 1.25 2.75) (layer F.SilkS) (width 0.12))
  2518. (fp_line (start -0.35 -2.75) (end -2.85 -2.75) (layer F.SilkS) (width 0.12))
  2519. (fp_line (start -2.85 -2.75) (end -2.85 -0.25) (layer F.SilkS) (width 0.12))
  2520. (fp_line (start -0.35 -2.75) (end -2.85 -2.75) (layer F.Fab) (width 0.1))
  2521. (fp_line (start -2.85 -2.75) (end -2.85 -0.25) (layer F.Fab) (width 0.1))
  2522. (fp_text user %R (at 1.25 2.5) (layer F.Fab)
  2523. (effects (font (size 1 1) (thickness 0.15)))
  2524. )
  2525. (pad 1 thru_hole rect (at 0 0) (size 1.75 1.75) (drill 1.05) (layers *.Cu *.Mask)
  2526. (net 4 "Net-(C7-Pad2)"))
  2527. (pad 2 thru_hole circle (at 2.5 0) (size 1.75 1.75) (drill 1.05) (layers *.Cu *.Mask)
  2528. (net 2 Earth))
  2529. (model Connectors_JST.3dshapes/JST_XH_B02B-XH-A_02x2.50mm_Straight.wrl
  2530. (at (xyz 0 0 0))
  2531. (scale (xyz 1 1 1))
  2532. (rotate (xyz 0 0 0))
  2533. )
  2534. )
  2535. (module Connectors_JST:JST_XH_B02B-XH-A_02x2.50mm_Straight (layer F.Cu) (tedit 58EAE7F0) (tstamp 59A6ED37)
  2536. (at 146.09 44.45)
  2537. (descr "JST XH series connector, B02B-XH-A, top entry type, through hole")
  2538. (tags "connector jst xh tht top vertical 2.50mm")
  2539. (path /59A71299/595237FD)
  2540. (fp_text reference J5 (at 1.25 -3.5) (layer F.SilkS)
  2541. (effects (font (size 1 1) (thickness 0.15)))
  2542. )
  2543. (fp_text value "Drive Signal" (at 1.25 4.5) (layer F.Fab)
  2544. (effects (font (size 1 1) (thickness 0.15)))
  2545. )
  2546. (fp_line (start -2.45 -2.35) (end -2.45 3.4) (layer F.Fab) (width 0.1))
  2547. (fp_line (start -2.45 3.4) (end 4.95 3.4) (layer F.Fab) (width 0.1))
  2548. (fp_line (start 4.95 3.4) (end 4.95 -2.35) (layer F.Fab) (width 0.1))
  2549. (fp_line (start 4.95 -2.35) (end -2.45 -2.35) (layer F.Fab) (width 0.1))
  2550. (fp_line (start -2.95 -2.85) (end -2.95 3.9) (layer F.CrtYd) (width 0.05))
  2551. (fp_line (start -2.95 3.9) (end 5.45 3.9) (layer F.CrtYd) (width 0.05))
  2552. (fp_line (start 5.45 3.9) (end 5.45 -2.85) (layer F.CrtYd) (width 0.05))
  2553. (fp_line (start 5.45 -2.85) (end -2.95 -2.85) (layer F.CrtYd) (width 0.05))
  2554. (fp_line (start -2.55 -2.45) (end -2.55 3.5) (layer F.SilkS) (width 0.12))
  2555. (fp_line (start -2.55 3.5) (end 5.05 3.5) (layer F.SilkS) (width 0.12))
  2556. (fp_line (start 5.05 3.5) (end 5.05 -2.45) (layer F.SilkS) (width 0.12))
  2557. (fp_line (start 5.05 -2.45) (end -2.55 -2.45) (layer F.SilkS) (width 0.12))
  2558. (fp_line (start 0.75 -2.45) (end 0.75 -1.7) (layer F.SilkS) (width 0.12))
  2559. (fp_line (start 0.75 -1.7) (end 1.75 -1.7) (layer F.SilkS) (width 0.12))
  2560. (fp_line (start 1.75 -1.7) (end 1.75 -2.45) (layer F.SilkS) (width 0.12))
  2561. (fp_line (start 1.75 -2.45) (end 0.75 -2.45) (layer F.SilkS) (width 0.12))
  2562. (fp_line (start -2.55 -2.45) (end -2.55 -1.7) (layer F.SilkS) (width 0.12))
  2563. (fp_line (start -2.55 -1.7) (end -0.75 -1.7) (layer F.SilkS) (width 0.12))
  2564. (fp_line (start -0.75 -1.7) (end -0.75 -2.45) (layer F.SilkS) (width 0.12))
  2565. (fp_line (start -0.75 -2.45) (end -2.55 -2.45) (layer F.SilkS) (width 0.12))
  2566. (fp_line (start 3.25 -2.45) (end 3.25 -1.7) (layer F.SilkS) (width 0.12))
  2567. (fp_line (start 3.25 -1.7) (end 5.05 -1.7) (layer F.SilkS) (width 0.12))
  2568. (fp_line (start 5.05 -1.7) (end 5.05 -2.45) (layer F.SilkS) (width 0.12))
  2569. (fp_line (start 5.05 -2.45) (end 3.25 -2.45) (layer F.SilkS) (width 0.12))
  2570. (fp_line (start -2.55 -0.2) (end -1.8 -0.2) (layer F.SilkS) (width 0.12))
  2571. (fp_line (start -1.8 -0.2) (end -1.8 2.75) (layer F.SilkS) (width 0.12))
  2572. (fp_line (start -1.8 2.75) (end 1.25 2.75) (layer F.SilkS) (width 0.12))
  2573. (fp_line (start 5.05 -0.2) (end 4.3 -0.2) (layer F.SilkS) (width 0.12))
  2574. (fp_line (start 4.3 -0.2) (end 4.3 2.75) (layer F.SilkS) (width 0.12))
  2575. (fp_line (start 4.3 2.75) (end 1.25 2.75) (layer F.SilkS) (width 0.12))
  2576. (fp_line (start -0.35 -2.75) (end -2.85 -2.75) (layer F.SilkS) (width 0.12))
  2577. (fp_line (start -2.85 -2.75) (end -2.85 -0.25) (layer F.SilkS) (width 0.12))
  2578. (fp_line (start -0.35 -2.75) (end -2.85 -2.75) (layer F.Fab) (width 0.1))
  2579. (fp_line (start -2.85 -2.75) (end -2.85 -0.25) (layer F.Fab) (width 0.1))
  2580. (fp_text user %R (at 1.25 2.5) (layer F.Fab)
  2581. (effects (font (size 1 1) (thickness 0.15)))
  2582. )
  2583. (pad 1 thru_hole rect (at 0 0) (size 1.75 1.75) (drill 1.05) (layers *.Cu *.Mask)
  2584. (net 6 "Net-(C11-Pad2)"))
  2585. (pad 2 thru_hole circle (at 2.5 0) (size 1.75 1.75) (drill 1.05) (layers *.Cu *.Mask)
  2586. (net 2 Earth))
  2587. (model Connectors_JST.3dshapes/JST_XH_B02B-XH-A_02x2.50mm_Straight.wrl
  2588. (at (xyz 0 0 0))
  2589. (scale (xyz 1 1 1))
  2590. (rotate (xyz 0 0 0))
  2591. )
  2592. )
  2593. (module Connectors_JST:JST_XH_B02B-XH-A_02x2.50mm_Straight (layer F.Cu) (tedit 58EAE7F0) (tstamp 59A6ED60)
  2594. (at 146.09 82.55)
  2595. (descr "JST XH series connector, B02B-XH-A, top entry type, through hole")
  2596. (tags "connector jst xh tht top vertical 2.50mm")
  2597. (path /59A712A3/595237FD)
  2598. (fp_text reference J6 (at 1.25 -3.5) (layer F.SilkS)
  2599. (effects (font (size 1 1) (thickness 0.15)))
  2600. )
  2601. (fp_text value "Drive Signal" (at 1.25 4.5) (layer F.Fab)
  2602. (effects (font (size 1 1) (thickness 0.15)))
  2603. )
  2604. (fp_line (start -2.45 -2.35) (end -2.45 3.4) (layer F.Fab) (width 0.1))
  2605. (fp_line (start -2.45 3.4) (end 4.95 3.4) (layer F.Fab) (width 0.1))
  2606. (fp_line (start 4.95 3.4) (end 4.95 -2.35) (layer F.Fab) (width 0.1))
  2607. (fp_line (start 4.95 -2.35) (end -2.45 -2.35) (layer F.Fab) (width 0.1))
  2608. (fp_line (start -2.95 -2.85) (end -2.95 3.9) (layer F.CrtYd) (width 0.05))
  2609. (fp_line (start -2.95 3.9) (end 5.45 3.9) (layer F.CrtYd) (width 0.05))
  2610. (fp_line (start 5.45 3.9) (end 5.45 -2.85) (layer F.CrtYd) (width 0.05))
  2611. (fp_line (start 5.45 -2.85) (end -2.95 -2.85) (layer F.CrtYd) (width 0.05))
  2612. (fp_line (start -2.55 -2.45) (end -2.55 3.5) (layer F.SilkS) (width 0.12))
  2613. (fp_line (start -2.55 3.5) (end 5.05 3.5) (layer F.SilkS) (width 0.12))
  2614. (fp_line (start 5.05 3.5) (end 5.05 -2.45) (layer F.SilkS) (width 0.12))
  2615. (fp_line (start 5.05 -2.45) (end -2.55 -2.45) (layer F.SilkS) (width 0.12))
  2616. (fp_line (start 0.75 -2.45) (end 0.75 -1.7) (layer F.SilkS) (width 0.12))
  2617. (fp_line (start 0.75 -1.7) (end 1.75 -1.7) (layer F.SilkS) (width 0.12))
  2618. (fp_line (start 1.75 -1.7) (end 1.75 -2.45) (layer F.SilkS) (width 0.12))
  2619. (fp_line (start 1.75 -2.45) (end 0.75 -2.45) (layer F.SilkS) (width 0.12))
  2620. (fp_line (start -2.55 -2.45) (end -2.55 -1.7) (layer F.SilkS) (width 0.12))
  2621. (fp_line (start -2.55 -1.7) (end -0.75 -1.7) (layer F.SilkS) (width 0.12))
  2622. (fp_line (start -0.75 -1.7) (end -0.75 -2.45) (layer F.SilkS) (width 0.12))
  2623. (fp_line (start -0.75 -2.45) (end -2.55 -2.45) (layer F.SilkS) (width 0.12))
  2624. (fp_line (start 3.25 -2.45) (end 3.25 -1.7) (layer F.SilkS) (width 0.12))
  2625. (fp_line (start 3.25 -1.7) (end 5.05 -1.7) (layer F.SilkS) (width 0.12))
  2626. (fp_line (start 5.05 -1.7) (end 5.05 -2.45) (layer F.SilkS) (width 0.12))
  2627. (fp_line (start 5.05 -2.45) (end 3.25 -2.45) (layer F.SilkS) (width 0.12))
  2628. (fp_line (start -2.55 -0.2) (end -1.8 -0.2) (layer F.SilkS) (width 0.12))
  2629. (fp_line (start -1.8 -0.2) (end -1.8 2.75) (layer F.SilkS) (width 0.12))
  2630. (fp_line (start -1.8 2.75) (end 1.25 2.75) (layer F.SilkS) (width 0.12))
  2631. (fp_line (start 5.05 -0.2) (end 4.3 -0.2) (layer F.SilkS) (width 0.12))
  2632. (fp_line (start 4.3 -0.2) (end 4.3 2.75) (layer F.SilkS) (width 0.12))
  2633. (fp_line (start 4.3 2.75) (end 1.25 2.75) (layer F.SilkS) (width 0.12))
  2634. (fp_line (start -0.35 -2.75) (end -2.85 -2.75) (layer F.SilkS) (width 0.12))
  2635. (fp_line (start -2.85 -2.75) (end -2.85 -0.25) (layer F.SilkS) (width 0.12))
  2636. (fp_line (start -0.35 -2.75) (end -2.85 -2.75) (layer F.Fab) (width 0.1))
  2637. (fp_line (start -2.85 -2.75) (end -2.85 -0.25) (layer F.Fab) (width 0.1))
  2638. (fp_text user %R (at 1.25 2.5) (layer F.Fab)
  2639. (effects (font (size 1 1) (thickness 0.15)))
  2640. )
  2641. (pad 1 thru_hole rect (at 0 0) (size 1.75 1.75) (drill 1.05) (layers *.Cu *.Mask)
  2642. (net 8 "Net-(C15-Pad2)"))
  2643. (pad 2 thru_hole circle (at 2.5 0) (size 1.75 1.75) (drill 1.05) (layers *.Cu *.Mask)
  2644. (net 2 Earth))
  2645. (model Connectors_JST.3dshapes/JST_XH_B02B-XH-A_02x2.50mm_Straight.wrl
  2646. (at (xyz 0 0 0))
  2647. (scale (xyz 1 1 1))
  2648. (rotate (xyz 0 0 0))
  2649. )
  2650. )
  2651. (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59A6ED76)
  2652. (at 107.95 58.42)
  2653. (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")
  2654. (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
  2655. (path /599EAAF9)
  2656. (fp_text reference R1 (at 3.81 -2.31) (layer F.SilkS)
  2657. (effects (font (size 1 1) (thickness 0.15)))
  2658. )
  2659. (fp_text value 100 (at 3.81 2.31) (layer F.Fab)
  2660. (effects (font (size 1 1) (thickness 0.15)))
  2661. )
  2662. (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
  2663. (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
  2664. (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
  2665. (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
  2666. (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
  2667. (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
  2668. (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
  2669. (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
  2670. (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
  2671. (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
  2672. (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
  2673. (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
  2674. (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
  2675. (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
  2676. (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
  2677. (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
  2678. (pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2679. (net 15 ARD_TEMP))
  2680. (pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2681. (net 14 DC_GND))
  2682. (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
  2683. (at (xyz 0 0 0))
  2684. (scale (xyz 0.3937 0.3937 0.3937))
  2685. (rotate (xyz 0 0 0))
  2686. )
  2687. )
  2688. (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59A6ED8C)
  2689. (at 71.12 67.31 180)
  2690. (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")
  2691. (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
  2692. (path /59498AA5/59A6DA9F)
  2693. (fp_text reference R2 (at 3.81 -2.31 180) (layer F.SilkS)
  2694. (effects (font (size 1 1) (thickness 0.15)))
  2695. )
  2696. (fp_text value 180 (at 3.81 2.31 180) (layer F.Fab)
  2697. (effects (font (size 1 1) (thickness 0.15)))
  2698. )
  2699. (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
  2700. (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
  2701. (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
  2702. (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
  2703. (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
  2704. (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
  2705. (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
  2706. (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
  2707. (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
  2708. (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
  2709. (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
  2710. (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
  2711. (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
  2712. (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
  2713. (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
  2714. (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
  2715. (pad 1 thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2716. (net 30 ARD_PWM_A))
  2717. (pad 2 thru_hole oval (at 7.62 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2718. (net 17 "Net-(R2-Pad2)"))
  2719. (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
  2720. (at (xyz 0 0 0))
  2721. (scale (xyz 0.3937 0.3937 0.3937))
  2722. (rotate (xyz 0 0 0))
  2723. )
  2724. )
  2725. (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59A6EDB4)
  2726. (at 62.23 105.41)
  2727. (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")
  2728. (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
  2729. (path /59A7109E/59A6DA9F)
  2730. (fp_text reference R4 (at 3.81 -2.31) (layer F.SilkS)
  2731. (effects (font (size 1 1) (thickness 0.15)))
  2732. )
  2733. (fp_text value 180 (at 3.81 2.31) (layer F.Fab)
  2734. (effects (font (size 1 1) (thickness 0.15)))
  2735. )
  2736. (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
  2737. (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
  2738. (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
  2739. (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
  2740. (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
  2741. (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
  2742. (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
  2743. (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
  2744. (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
  2745. (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
  2746. (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
  2747. (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
  2748. (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
  2749. (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
  2750. (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
  2751. (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
  2752. (pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2753. (net 31 ARD_PWM_B))
  2754. (pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2755. (net 18 "Net-(R4-Pad2)"))
  2756. (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
  2757. (at (xyz 0 0 0))
  2758. (scale (xyz 0.3937 0.3937 0.3937))
  2759. (rotate (xyz 0 0 0))
  2760. )
  2761. )
  2762. (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59A6EE04)
  2763. (at 128.27 105.41)
  2764. (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")
  2765. (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
  2766. (path /59A712A3/59A6DA9F)
  2767. (fp_text reference R8 (at 3.81 -2.31) (layer F.SilkS)
  2768. (effects (font (size 1 1) (thickness 0.15)))
  2769. )
  2770. (fp_text value 180 (at 3.81 2.31) (layer F.Fab)
  2771. (effects (font (size 1 1) (thickness 0.15)))
  2772. )
  2773. (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
  2774. (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
  2775. (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
  2776. (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
  2777. (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
  2778. (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
  2779. (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
  2780. (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
  2781. (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
  2782. (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
  2783. (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
  2784. (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
  2785. (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
  2786. (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
  2787. (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
  2788. (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
  2789. (pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2790. (net 33 ARD_PWM_D))
  2791. (pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2792. (net 20 "Net-(R8-Pad2)"))
  2793. (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
  2794. (at (xyz 0 0 0))
  2795. (scale (xyz 0.3937 0.3937 0.3937))
  2796. (rotate (xyz 0 0 0))
  2797. )
  2798. )
  2799. (module PartsLibraries:RJ45 (layer F.Cu) (tedit 59511D7C) (tstamp 59A7E8CF)
  2800. (at 107.95 77.47)
  2801. (tags RJ45)
  2802. (path /59A7EBD8)
  2803. (fp_text reference J7 (at 4.7 11.18) (layer F.SilkS)
  2804. (effects (font (size 1 1) (thickness 0.15)))
  2805. )
  2806. (fp_text value RJ45 (at 4.59 6.25) (layer F.Fab)
  2807. (effects (font (size 1 1) (thickness 0.15)))
  2808. )
  2809. (fp_line (start -3.17 14.22) (end 12.07 14.22) (layer F.SilkS) (width 0.12))
  2810. (fp_line (start 12.07 -3.81) (end 12.06 5.18) (layer F.SilkS) (width 0.12))
  2811. (fp_line (start 12.07 -3.81) (end -3.17 -3.81) (layer F.SilkS) (width 0.12))
  2812. (fp_line (start -3.17 -3.81) (end -3.17 5.19) (layer F.SilkS) (width 0.12))
  2813. (fp_line (start 12.06 7.52) (end 12.07 14.22) (layer F.SilkS) (width 0.12))
  2814. (fp_line (start -3.17 7.51) (end -3.17 14.22) (layer F.SilkS) (width 0.12))
  2815. (fp_line (start -3.56 -4.06) (end 12.46 -4.06) (layer F.CrtYd) (width 0.05))
  2816. (fp_line (start -3.56 -4.06) (end -3.56 14.47) (layer F.CrtYd) (width 0.05))
  2817. (fp_line (start 12.46 14.47) (end 12.46 -4.06) (layer F.CrtYd) (width 0.05))
  2818. (fp_line (start 12.46 14.47) (end -3.56 14.47) (layer F.CrtYd) (width 0.05))
  2819. (pad "" np_thru_hole circle (at 10.16 6.35) (size 3.65 3.65) (drill 3.25) (layers *.Cu *.SilkS *.Mask))
  2820. (pad "" np_thru_hole circle (at -1.27 6.35) (size 3.65 3.65) (drill 3.25) (layers *.Cu *.SilkS *.Mask))
  2821. (pad 1 thru_hole rect (at 0 0) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
  2822. (net 13 DC_IN))
  2823. (pad 2 thru_hole circle (at 1.27 -2.54) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
  2824. (net 14 DC_GND))
  2825. (pad 3 thru_hole circle (at 2.54 0) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
  2826. (net 30 ARD_PWM_A))
  2827. (pad 4 thru_hole circle (at 3.81 -2.54) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
  2828. (net 31 ARD_PWM_B))
  2829. (pad 5 thru_hole circle (at 5.08 0) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
  2830. (net 32 ARD_PWM_C))
  2831. (pad 6 thru_hole circle (at 6.35 -2.54) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
  2832. (net 33 ARD_PWM_D))
  2833. (pad 7 thru_hole circle (at 7.62 0) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
  2834. (net 34 ARD_5V))
  2835. (pad 8 thru_hole circle (at 8.89 -2.54) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
  2836. (net 16 ARD_GND))
  2837. (model ../../../../../../Development/multilevelinverter/Hardware/3D/RJ45.wrl
  2838. (at (xyz 0.175 -0.667 0.3))
  2839. (scale (xyz 10 10 10))
  2840. (rotate (xyz 270 0 0))
  2841. )
  2842. )
  2843. (module Mounting_Holes:MountingHole_4.3mm_M4 (layer F.Cu) (tedit 59A7ED08) (tstamp 59A7F0E0)
  2844. (at 54.61 39.37)
  2845. (descr "Mounting Hole 4.3mm, no annular, M4")
  2846. (tags "mounting hole 4.3mm no annular m4")
  2847. (fp_text reference "" (at 0 -5.3) (layer F.SilkS)
  2848. (effects (font (size 1 1) (thickness 0.15)))
  2849. )
  2850. (fp_text value MountingHole_4.3mm_M4 (at 0 5.3) (layer F.Fab)
  2851. (effects (font (size 1 1) (thickness 0.15)))
  2852. )
  2853. (fp_circle (center 0 0) (end 4.3 0) (layer Cmts.User) (width 0.15))
  2854. (fp_circle (center 0 0) (end 4.55 0) (layer F.CrtYd) (width 0.05))
  2855. (pad 1 np_thru_hole circle (at 0 0) (size 4.3 4.3) (drill 4.3) (layers *.Cu *.Mask))
  2856. )
  2857. (module Capacitors_THT:CP_Radial_Tantal_D4.5mm_P2.50mm (layer F.Cu) (tedit 597C781B) (tstamp 59EF669F)
  2858. (at 94.02 60.96)
  2859. (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")
  2860. (tags "CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor")
  2861. (path /59498AA5/59EF0ED7)
  2862. (fp_text reference C17 (at 1.25 -3.56) (layer F.SilkS)
  2863. (effects (font (size 1 1) (thickness 0.15)))
  2864. )
  2865. (fp_text value 100nF (at 1.25 3.56) (layer F.Fab)
  2866. (effects (font (size 1 1) (thickness 0.15)))
  2867. )
  2868. (fp_arc (start 1.25 0) (end -0.770693 -1.18) (angle 119.4) (layer F.SilkS) (width 0.12))
  2869. (fp_arc (start 1.25 0) (end -0.770693 1.18) (angle -119.4) (layer F.SilkS) (width 0.12))
  2870. (fp_arc (start 1.25 0) (end 3.270693 -1.18) (angle 60.6) (layer F.SilkS) (width 0.12))
  2871. (fp_circle (center 1.25 0) (end 3.5 0) (layer F.Fab) (width 0.1))
  2872. (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
  2873. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
  2874. (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
  2875. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
  2876. (fp_line (start -1.35 -2.6) (end -1.35 2.6) (layer F.CrtYd) (width 0.05))
  2877. (fp_line (start -1.35 2.6) (end 3.85 2.6) (layer F.CrtYd) (width 0.05))
  2878. (fp_line (start 3.85 2.6) (end 3.85 -2.6) (layer F.CrtYd) (width 0.05))
  2879. (fp_line (start 3.85 -2.6) (end -1.35 -2.6) (layer F.CrtYd) (width 0.05))
  2880. (fp_text user %R (at 1.25 0) (layer F.Fab)
  2881. (effects (font (size 1 1) (thickness 0.15)))
  2882. )
  2883. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2884. (net 22 "Net-(C17-Pad1)"))
  2885. (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2886. (net 2 Earth))
  2887. (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D4.5mm_P2.50mm.wrl
  2888. (at (xyz 0 0 0))
  2889. (scale (xyz 1 1 1))
  2890. (rotate (xyz 0 0 0))
  2891. )
  2892. )
  2893. (module Capacitors_THT:CP_Radial_Tantal_D4.5mm_P2.50mm (layer F.Cu) (tedit 597C781B) (tstamp 59EF66B2)
  2894. (at 94.02 53.34)
  2895. (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")
  2896. (tags "CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor")
  2897. (path /59498AA5/59EF1DD4)
  2898. (fp_text reference C18 (at 1.25 -3.56) (layer F.SilkS)
  2899. (effects (font (size 1 1) (thickness 0.15)))
  2900. )
  2901. (fp_text value 100nF (at 1.25 3.56) (layer F.Fab)
  2902. (effects (font (size 1 1) (thickness 0.15)))
  2903. )
  2904. (fp_arc (start 1.25 0) (end -0.770693 -1.18) (angle 119.4) (layer F.SilkS) (width 0.12))
  2905. (fp_arc (start 1.25 0) (end -0.770693 1.18) (angle -119.4) (layer F.SilkS) (width 0.12))
  2906. (fp_arc (start 1.25 0) (end 3.270693 -1.18) (angle 60.6) (layer F.SilkS) (width 0.12))
  2907. (fp_circle (center 1.25 0) (end 3.5 0) (layer F.Fab) (width 0.1))
  2908. (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
  2909. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
  2910. (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
  2911. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
  2912. (fp_line (start -1.35 -2.6) (end -1.35 2.6) (layer F.CrtYd) (width 0.05))
  2913. (fp_line (start -1.35 2.6) (end 3.85 2.6) (layer F.CrtYd) (width 0.05))
  2914. (fp_line (start 3.85 2.6) (end 3.85 -2.6) (layer F.CrtYd) (width 0.05))
  2915. (fp_line (start 3.85 -2.6) (end -1.35 -2.6) (layer F.CrtYd) (width 0.05))
  2916. (fp_text user %R (at 1.25 0) (layer F.Fab)
  2917. (effects (font (size 1 1) (thickness 0.15)))
  2918. )
  2919. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2920. (net 1 "Net-(C1-Pad1)"))
  2921. (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2922. (net 2 Earth))
  2923. (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D4.5mm_P2.50mm.wrl
  2924. (at (xyz 0 0 0))
  2925. (scale (xyz 1 1 1))
  2926. (rotate (xyz 0 0 0))
  2927. )
  2928. )
  2929. (module Capacitors_THT:CP_Radial_Tantal_D4.5mm_P2.50mm (layer F.Cu) (tedit 597C781B) (tstamp 59EF66C5)
  2930. (at 94.02 99.06)
  2931. (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")
  2932. (tags "CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor")
  2933. (path /59A7109E/59EF0ED7)
  2934. (fp_text reference C19 (at 1.25 -3.56) (layer F.SilkS)
  2935. (effects (font (size 1 1) (thickness 0.15)))
  2936. )
  2937. (fp_text value 100nF (at 1.25 3.56) (layer F.Fab)
  2938. (effects (font (size 1 1) (thickness 0.15)))
  2939. )
  2940. (fp_arc (start 1.25 0) (end -0.770693 -1.18) (angle 119.4) (layer F.SilkS) (width 0.12))
  2941. (fp_arc (start 1.25 0) (end -0.770693 1.18) (angle -119.4) (layer F.SilkS) (width 0.12))
  2942. (fp_arc (start 1.25 0) (end 3.270693 -1.18) (angle 60.6) (layer F.SilkS) (width 0.12))
  2943. (fp_circle (center 1.25 0) (end 3.5 0) (layer F.Fab) (width 0.1))
  2944. (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
  2945. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
  2946. (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
  2947. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
  2948. (fp_line (start -1.35 -2.6) (end -1.35 2.6) (layer F.CrtYd) (width 0.05))
  2949. (fp_line (start -1.35 2.6) (end 3.85 2.6) (layer F.CrtYd) (width 0.05))
  2950. (fp_line (start 3.85 2.6) (end 3.85 -2.6) (layer F.CrtYd) (width 0.05))
  2951. (fp_line (start 3.85 -2.6) (end -1.35 -2.6) (layer F.CrtYd) (width 0.05))
  2952. (fp_text user %R (at 1.25 0) (layer F.Fab)
  2953. (effects (font (size 1 1) (thickness 0.15)))
  2954. )
  2955. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2956. (net 23 "Net-(C19-Pad1)"))
  2957. (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2958. (net 2 Earth))
  2959. (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D4.5mm_P2.50mm.wrl
  2960. (at (xyz 0 0 0))
  2961. (scale (xyz 1 1 1))
  2962. (rotate (xyz 0 0 0))
  2963. )
  2964. )
  2965. (module Capacitors_THT:CP_Radial_Tantal_D4.5mm_P2.50mm (layer F.Cu) (tedit 597C781B) (tstamp 59EF66D8)
  2966. (at 93.98 91.44)
  2967. (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")
  2968. (tags "CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor")
  2969. (path /59A7109E/59EF1DD4)
  2970. (fp_text reference C20 (at 1.25 -3.56) (layer F.SilkS)
  2971. (effects (font (size 1 1) (thickness 0.15)))
  2972. )
  2973. (fp_text value 100nF (at 1.25 3.56) (layer F.Fab)
  2974. (effects (font (size 1 1) (thickness 0.15)))
  2975. )
  2976. (fp_arc (start 1.25 0) (end -0.770693 -1.18) (angle 119.4) (layer F.SilkS) (width 0.12))
  2977. (fp_arc (start 1.25 0) (end -0.770693 1.18) (angle -119.4) (layer F.SilkS) (width 0.12))
  2978. (fp_arc (start 1.25 0) (end 3.270693 -1.18) (angle 60.6) (layer F.SilkS) (width 0.12))
  2979. (fp_circle (center 1.25 0) (end 3.5 0) (layer F.Fab) (width 0.1))
  2980. (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
  2981. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
  2982. (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
  2983. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
  2984. (fp_line (start -1.35 -2.6) (end -1.35 2.6) (layer F.CrtYd) (width 0.05))
  2985. (fp_line (start -1.35 2.6) (end 3.85 2.6) (layer F.CrtYd) (width 0.05))
  2986. (fp_line (start 3.85 2.6) (end 3.85 -2.6) (layer F.CrtYd) (width 0.05))
  2987. (fp_line (start 3.85 -2.6) (end -1.35 -2.6) (layer F.CrtYd) (width 0.05))
  2988. (fp_text user %R (at 1.25 0) (layer F.Fab)
  2989. (effects (font (size 1 1) (thickness 0.15)))
  2990. )
  2991. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2992. (net 21 "Net-(C20-Pad1)"))
  2993. (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2994. (net 2 Earth))
  2995. (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D4.5mm_P2.50mm.wrl
  2996. (at (xyz 0 0 0))
  2997. (scale (xyz 1 1 1))
  2998. (rotate (xyz 0 0 0))
  2999. )
  3000. )
  3001. (module Capacitors_THT:CP_Radial_Tantal_D4.5mm_P2.50mm (layer F.Cu) (tedit 597C781B) (tstamp 59EF66EB)
  3002. (at 162.56 60.96)
  3003. (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")
  3004. (tags "CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor")
  3005. (path /59A71299/59EF0ED7)
  3006. (fp_text reference C21 (at 1.25 -3.56) (layer F.SilkS)
  3007. (effects (font (size 1 1) (thickness 0.15)))
  3008. )
  3009. (fp_text value 100nF (at 1.25 3.56) (layer F.Fab)
  3010. (effects (font (size 1 1) (thickness 0.15)))
  3011. )
  3012. (fp_arc (start 1.25 0) (end -0.770693 -1.18) (angle 119.4) (layer F.SilkS) (width 0.12))
  3013. (fp_arc (start 1.25 0) (end -0.770693 1.18) (angle -119.4) (layer F.SilkS) (width 0.12))
  3014. (fp_arc (start 1.25 0) (end 3.270693 -1.18) (angle 60.6) (layer F.SilkS) (width 0.12))
  3015. (fp_circle (center 1.25 0) (end 3.5 0) (layer F.Fab) (width 0.1))
  3016. (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
  3017. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
  3018. (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
  3019. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
  3020. (fp_line (start -1.35 -2.6) (end -1.35 2.6) (layer F.CrtYd) (width 0.05))
  3021. (fp_line (start -1.35 2.6) (end 3.85 2.6) (layer F.CrtYd) (width 0.05))
  3022. (fp_line (start 3.85 2.6) (end 3.85 -2.6) (layer F.CrtYd) (width 0.05))
  3023. (fp_line (start 3.85 -2.6) (end -1.35 -2.6) (layer F.CrtYd) (width 0.05))
  3024. (fp_text user %R (at 1.25 0) (layer F.Fab)
  3025. (effects (font (size 1 1) (thickness 0.15)))
  3026. )
  3027. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3028. (net 24 "Net-(C21-Pad1)"))
  3029. (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3030. (net 2 Earth))
  3031. (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D4.5mm_P2.50mm.wrl
  3032. (at (xyz 0 0 0))
  3033. (scale (xyz 1 1 1))
  3034. (rotate (xyz 0 0 0))
  3035. )
  3036. )
  3037. (module Capacitors_THT:CP_Radial_Tantal_D4.5mm_P2.50mm (layer F.Cu) (tedit 597C781B) (tstamp 59EF66FE)
  3038. (at 162.56 53.34)
  3039. (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")
  3040. (tags "CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor")
  3041. (path /59A71299/59EF1DD4)
  3042. (fp_text reference C22 (at 1.25 -3.56) (layer F.SilkS)
  3043. (effects (font (size 1 1) (thickness 0.15)))
  3044. )
  3045. (fp_text value 100nF (at 1.25 3.56) (layer F.Fab)
  3046. (effects (font (size 1 1) (thickness 0.15)))
  3047. )
  3048. (fp_arc (start 1.25 0) (end -0.770693 -1.18) (angle 119.4) (layer F.SilkS) (width 0.12))
  3049. (fp_arc (start 1.25 0) (end -0.770693 1.18) (angle -119.4) (layer F.SilkS) (width 0.12))
  3050. (fp_arc (start 1.25 0) (end 3.270693 -1.18) (angle 60.6) (layer F.SilkS) (width 0.12))
  3051. (fp_circle (center 1.25 0) (end 3.5 0) (layer F.Fab) (width 0.1))
  3052. (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
  3053. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
  3054. (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
  3055. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
  3056. (fp_line (start -1.35 -2.6) (end -1.35 2.6) (layer F.CrtYd) (width 0.05))
  3057. (fp_line (start -1.35 2.6) (end 3.85 2.6) (layer F.CrtYd) (width 0.05))
  3058. (fp_line (start 3.85 2.6) (end 3.85 -2.6) (layer F.CrtYd) (width 0.05))
  3059. (fp_line (start 3.85 -2.6) (end -1.35 -2.6) (layer F.CrtYd) (width 0.05))
  3060. (fp_text user %R (at 1.25 0) (layer F.Fab)
  3061. (effects (font (size 1 1) (thickness 0.15)))
  3062. )
  3063. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3064. (net 5 "Net-(C10-Pad1)"))
  3065. (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3066. (net 2 Earth))
  3067. (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D4.5mm_P2.50mm.wrl
  3068. (at (xyz 0 0 0))
  3069. (scale (xyz 1 1 1))
  3070. (rotate (xyz 0 0 0))
  3071. )
  3072. )
  3073. (module Capacitors_THT:CP_Radial_Tantal_D4.5mm_P2.50mm (layer F.Cu) (tedit 597C781B) (tstamp 59EF6711)
  3074. (at 163.83 99.06)
  3075. (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")
  3076. (tags "CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor")
  3077. (path /59A712A3/59EF0ED7)
  3078. (fp_text reference C23 (at 1.25 -3.56) (layer F.SilkS)
  3079. (effects (font (size 1 1) (thickness 0.15)))
  3080. )
  3081. (fp_text value 100nF (at 1.25 3.56) (layer F.Fab)
  3082. (effects (font (size 1 1) (thickness 0.15)))
  3083. )
  3084. (fp_arc (start 1.25 0) (end -0.770693 -1.18) (angle 119.4) (layer F.SilkS) (width 0.12))
  3085. (fp_arc (start 1.25 0) (end -0.770693 1.18) (angle -119.4) (layer F.SilkS) (width 0.12))
  3086. (fp_arc (start 1.25 0) (end 3.270693 -1.18) (angle 60.6) (layer F.SilkS) (width 0.12))
  3087. (fp_circle (center 1.25 0) (end 3.5 0) (layer F.Fab) (width 0.1))
  3088. (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
  3089. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
  3090. (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
  3091. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
  3092. (fp_line (start -1.35 -2.6) (end -1.35 2.6) (layer F.CrtYd) (width 0.05))
  3093. (fp_line (start -1.35 2.6) (end 3.85 2.6) (layer F.CrtYd) (width 0.05))
  3094. (fp_line (start 3.85 2.6) (end 3.85 -2.6) (layer F.CrtYd) (width 0.05))
  3095. (fp_line (start 3.85 -2.6) (end -1.35 -2.6) (layer F.CrtYd) (width 0.05))
  3096. (fp_text user %R (at 1.25 0) (layer F.Fab)
  3097. (effects (font (size 1 1) (thickness 0.15)))
  3098. )
  3099. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3100. (net 25 "Net-(C23-Pad1)"))
  3101. (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3102. (net 2 Earth))
  3103. (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D4.5mm_P2.50mm.wrl
  3104. (at (xyz 0 0 0))
  3105. (scale (xyz 1 1 1))
  3106. (rotate (xyz 0 0 0))
  3107. )
  3108. )
  3109. (module Capacitors_THT:CP_Radial_Tantal_D4.5mm_P2.50mm (layer F.Cu) (tedit 597C781B) (tstamp 59EF6724)
  3110. (at 163.83 91.44)
  3111. (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")
  3112. (tags "CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor")
  3113. (path /59A712A3/59EF1DD4)
  3114. (fp_text reference C24 (at 1.25 -3.56) (layer F.SilkS)
  3115. (effects (font (size 1 1) (thickness 0.15)))
  3116. )
  3117. (fp_text value 100nF (at 1.25 3.56) (layer F.Fab)
  3118. (effects (font (size 1 1) (thickness 0.15)))
  3119. )
  3120. (fp_arc (start 1.25 0) (end -0.770693 -1.18) (angle 119.4) (layer F.SilkS) (width 0.12))
  3121. (fp_arc (start 1.25 0) (end -0.770693 1.18) (angle -119.4) (layer F.SilkS) (width 0.12))
  3122. (fp_arc (start 1.25 0) (end 3.270693 -1.18) (angle 60.6) (layer F.SilkS) (width 0.12))
  3123. (fp_circle (center 1.25 0) (end 3.5 0) (layer F.Fab) (width 0.1))
  3124. (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
  3125. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
  3126. (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
  3127. (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
  3128. (fp_line (start -1.35 -2.6) (end -1.35 2.6) (layer F.CrtYd) (width 0.05))
  3129. (fp_line (start -1.35 2.6) (end 3.85 2.6) (layer F.CrtYd) (width 0.05))
  3130. (fp_line (start 3.85 2.6) (end 3.85 -2.6) (layer F.CrtYd) (width 0.05))
  3131. (fp_line (start 3.85 -2.6) (end -1.35 -2.6) (layer F.CrtYd) (width 0.05))
  3132. (fp_text user %R (at 1.25 0) (layer F.Fab)
  3133. (effects (font (size 1 1) (thickness 0.15)))
  3134. )
  3135. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3136. (net 7 "Net-(C13-Pad1)"))
  3137. (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3138. (net 2 Earth))
  3139. (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D4.5mm_P2.50mm.wrl
  3140. (at (xyz 0 0 0))
  3141. (scale (xyz 1 1 1))
  3142. (rotate (xyz 0 0 0))
  3143. )
  3144. )
  3145. (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59EF678A)
  3146. (at 74.93 67.31)
  3147. (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")
  3148. (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
  3149. (path /59498AA5/59EF0FC7)
  3150. (fp_text reference R10 (at 3.81 -2.31) (layer F.SilkS)
  3151. (effects (font (size 1 1) (thickness 0.15)))
  3152. )
  3153. (fp_text value R (at 3.81 2.31) (layer F.Fab)
  3154. (effects (font (size 1 1) (thickness 0.15)))
  3155. )
  3156. (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
  3157. (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
  3158. (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
  3159. (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
  3160. (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
  3161. (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
  3162. (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
  3163. (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
  3164. (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
  3165. (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
  3166. (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
  3167. (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
  3168. (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
  3169. (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
  3170. (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
  3171. (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
  3172. (pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3173. (net 22 "Net-(C17-Pad1)"))
  3174. (pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3175. (net 9 "Net-(IC1-Pad2)"))
  3176. (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
  3177. (at (xyz 0 0 0))
  3178. (scale (xyz 0.3937 0.3937 0.3937))
  3179. (rotate (xyz 0 0 0))
  3180. )
  3181. )
  3182. (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59EF67A0)
  3183. (at 87.63 67.31)
  3184. (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")
  3185. (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
  3186. (path /59498AA5/59EF1A58)
  3187. (fp_text reference R11 (at 3.81 -2.31) (layer F.SilkS)
  3188. (effects (font (size 1 1) (thickness 0.15)))
  3189. )
  3190. (fp_text value R (at 3.81 2.31) (layer F.Fab)
  3191. (effects (font (size 1 1) (thickness 0.15)))
  3192. )
  3193. (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
  3194. (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
  3195. (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
  3196. (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
  3197. (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
  3198. (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
  3199. (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
  3200. (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
  3201. (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
  3202. (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
  3203. (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
  3204. (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
  3205. (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
  3206. (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
  3207. (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
  3208. (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
  3209. (pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3210. (net 3 "Net-(C3-Pad2)"))
  3211. (pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3212. (net 2 Earth))
  3213. (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
  3214. (at (xyz 0 0 0))
  3215. (scale (xyz 0.3937 0.3937 0.3937))
  3216. (rotate (xyz 0 0 0))
  3217. )
  3218. )
  3219. (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59EF67B6)
  3220. (at 73.66 105.41)
  3221. (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")
  3222. (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
  3223. (path /59A7109E/59EF0FC7)
  3224. (fp_text reference R12 (at 3.81 -2.31) (layer F.SilkS)
  3225. (effects (font (size 1 1) (thickness 0.15)))
  3226. )
  3227. (fp_text value R (at 3.81 2.31) (layer F.Fab)
  3228. (effects (font (size 1 1) (thickness 0.15)))
  3229. )
  3230. (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
  3231. (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
  3232. (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
  3233. (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
  3234. (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
  3235. (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
  3236. (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
  3237. (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
  3238. (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
  3239. (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
  3240. (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
  3241. (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
  3242. (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
  3243. (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
  3244. (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
  3245. (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
  3246. (pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3247. (net 23 "Net-(C19-Pad1)"))
  3248. (pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3249. (net 10 "Net-(IC2-Pad2)"))
  3250. (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
  3251. (at (xyz 0 0 0))
  3252. (scale (xyz 0.3937 0.3937 0.3937))
  3253. (rotate (xyz 0 0 0))
  3254. )
  3255. )
  3256. (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59EF67CC)
  3257. (at 86.36 105.41)
  3258. (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")
  3259. (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
  3260. (path /59A7109E/59EF1A58)
  3261. (fp_text reference R13 (at 3.81 -2.31) (layer F.SilkS)
  3262. (effects (font (size 1 1) (thickness 0.15)))
  3263. )
  3264. (fp_text value R (at 3.81 2.31) (layer F.Fab)
  3265. (effects (font (size 1 1) (thickness 0.15)))
  3266. )
  3267. (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
  3268. (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
  3269. (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
  3270. (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
  3271. (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
  3272. (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
  3273. (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
  3274. (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
  3275. (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
  3276. (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
  3277. (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
  3278. (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
  3279. (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
  3280. (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
  3281. (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
  3282. (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
  3283. (pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3284. (net 4 "Net-(C7-Pad2)"))
  3285. (pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3286. (net 2 Earth))
  3287. (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
  3288. (at (xyz 0 0 0))
  3289. (scale (xyz 0.3937 0.3937 0.3937))
  3290. (rotate (xyz 0 0 0))
  3291. )
  3292. )
  3293. (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59EF67E2)
  3294. (at 147.32 67.31 180)
  3295. (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")
  3296. (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
  3297. (path /59A71299/59EF0FC7)
  3298. (fp_text reference R14 (at 3.81 -2.31 180) (layer F.SilkS)
  3299. (effects (font (size 1 1) (thickness 0.15)))
  3300. )
  3301. (fp_text value R (at 3.81 2.31 180) (layer F.Fab)
  3302. (effects (font (size 1 1) (thickness 0.15)))
  3303. )
  3304. (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
  3305. (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
  3306. (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
  3307. (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
  3308. (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
  3309. (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
  3310. (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
  3311. (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
  3312. (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
  3313. (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
  3314. (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
  3315. (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
  3316. (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
  3317. (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
  3318. (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
  3319. (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
  3320. (pad 1 thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3321. (net 24 "Net-(C21-Pad1)"))
  3322. (pad 2 thru_hole oval (at 7.62 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3323. (net 11 "Net-(IC3-Pad2)"))
  3324. (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
  3325. (at (xyz 0 0 0))
  3326. (scale (xyz 0.3937 0.3937 0.3937))
  3327. (rotate (xyz 0 0 0))
  3328. )
  3329. )
  3330. (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59EF67F8)
  3331. (at 151.13 67.31)
  3332. (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")
  3333. (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
  3334. (path /59A71299/59EF1A58)
  3335. (fp_text reference R15 (at 3.81 -2.31) (layer F.SilkS)
  3336. (effects (font (size 1 1) (thickness 0.15)))
  3337. )
  3338. (fp_text value R (at 3.81 2.31) (layer F.Fab)
  3339. (effects (font (size 1 1) (thickness 0.15)))
  3340. )
  3341. (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
  3342. (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
  3343. (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
  3344. (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
  3345. (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
  3346. (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
  3347. (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
  3348. (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
  3349. (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
  3350. (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
  3351. (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
  3352. (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
  3353. (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
  3354. (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
  3355. (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
  3356. (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
  3357. (pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3358. (net 6 "Net-(C11-Pad2)"))
  3359. (pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3360. (net 2 Earth))
  3361. (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
  3362. (at (xyz 0 0 0))
  3363. (scale (xyz 0.3937 0.3937 0.3937))
  3364. (rotate (xyz 0 0 0))
  3365. )
  3366. )
  3367. (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59EF680E)
  3368. (at 139.7 105.41)
  3369. (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")
  3370. (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
  3371. (path /59A712A3/59EF0FC7)
  3372. (fp_text reference R16 (at 3.81 -2.31) (layer F.SilkS)
  3373. (effects (font (size 1 1) (thickness 0.15)))
  3374. )
  3375. (fp_text value R (at 3.81 2.31) (layer F.Fab)
  3376. (effects (font (size 1 1) (thickness 0.15)))
  3377. )
  3378. (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
  3379. (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
  3380. (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
  3381. (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
  3382. (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
  3383. (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
  3384. (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
  3385. (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
  3386. (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
  3387. (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
  3388. (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
  3389. (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
  3390. (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
  3391. (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
  3392. (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
  3393. (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
  3394. (pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3395. (net 25 "Net-(C23-Pad1)"))
  3396. (pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3397. (net 12 "Net-(IC4-Pad2)"))
  3398. (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
  3399. (at (xyz 0 0 0))
  3400. (scale (xyz 0.3937 0.3937 0.3937))
  3401. (rotate (xyz 0 0 0))
  3402. )
  3403. )
  3404. (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59EF6824)
  3405. (at 151.13 105.41)
  3406. (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")
  3407. (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
  3408. (path /59A712A3/59EF1A58)
  3409. (fp_text reference R17 (at 3.81 -2.31) (layer F.SilkS)
  3410. (effects (font (size 1 1) (thickness 0.15)))
  3411. )
  3412. (fp_text value R (at 3.81 2.31) (layer F.Fab)
  3413. (effects (font (size 1 1) (thickness 0.15)))
  3414. )
  3415. (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
  3416. (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
  3417. (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
  3418. (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
  3419. (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
  3420. (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
  3421. (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
  3422. (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
  3423. (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
  3424. (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
  3425. (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
  3426. (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
  3427. (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
  3428. (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
  3429. (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
  3430. (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
  3431. (pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3432. (net 8 "Net-(C15-Pad2)"))
  3433. (pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3434. (net 2 Earth))
  3435. (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
  3436. (at (xyz 0 0 0))
  3437. (scale (xyz 0.3937 0.3937 0.3937))
  3438. (rotate (xyz 0 0 0))
  3439. )
  3440. )
  3441. (module Housings_DIP:DIP-6_W7.62mm (layer F.Cu) (tedit 59C78D6B) (tstamp 59EF683E)
  3442. (at 59.055 57.15)
  3443. (descr "6-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils)")
  3444. (tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil")
  3445. (path /59498AA5/59A6DAA6)
  3446. (fp_text reference U2 (at 3.81 -2.33) (layer F.SilkS)
  3447. (effects (font (size 1 1) (thickness 0.15)))
  3448. )
  3449. (fp_text value H11N1M (at 3.81 7.41) (layer F.Fab)
  3450. (effects (font (size 1 1) (thickness 0.15)))
  3451. )
  3452. (fp_arc (start 3.81 -1.33) (end 2.81 -1.33) (angle -180) (layer F.SilkS) (width 0.12))
  3453. (fp_line (start 1.635 -1.27) (end 6.985 -1.27) (layer F.Fab) (width 0.1))
  3454. (fp_line (start 6.985 -1.27) (end 6.985 6.35) (layer F.Fab) (width 0.1))
  3455. (fp_line (start 6.985 6.35) (end 0.635 6.35) (layer F.Fab) (width 0.1))
  3456. (fp_line (start 0.635 6.35) (end 0.635 -0.27) (layer F.Fab) (width 0.1))
  3457. (fp_line (start 0.635 -0.27) (end 1.635 -1.27) (layer F.Fab) (width 0.1))
  3458. (fp_line (start 2.81 -1.33) (end 1.16 -1.33) (layer F.SilkS) (width 0.12))
  3459. (fp_line (start 1.16 -1.33) (end 1.16 6.41) (layer F.SilkS) (width 0.12))
  3460. (fp_line (start 1.16 6.41) (end 6.46 6.41) (layer F.SilkS) (width 0.12))
  3461. (fp_line (start 6.46 6.41) (end 6.46 -1.33) (layer F.SilkS) (width 0.12))
  3462. (fp_line (start 6.46 -1.33) (end 4.81 -1.33) (layer F.SilkS) (width 0.12))
  3463. (fp_line (start -1.1 -1.55) (end -1.1 6.6) (layer F.CrtYd) (width 0.05))
  3464. (fp_line (start -1.1 6.6) (end 8.7 6.6) (layer F.CrtYd) (width 0.05))
  3465. (fp_line (start 8.7 6.6) (end 8.7 -1.55) (layer F.CrtYd) (width 0.05))
  3466. (fp_line (start 8.7 -1.55) (end -1.1 -1.55) (layer F.CrtYd) (width 0.05))
  3467. (fp_text user %R (at 3.81 2.54) (layer F.Fab)
  3468. (effects (font (size 1 1) (thickness 0.15)))
  3469. )
  3470. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3471. (net 17 "Net-(R2-Pad2)"))
  3472. (pad 4 thru_hole oval (at 7.62 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3473. (net 9 "Net-(IC1-Pad2)"))
  3474. (pad 2 thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3475. (net 16 ARD_GND))
  3476. (pad 5 thru_hole oval (at 7.62 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3477. (net 2 Earth))
  3478. (pad 3 thru_hole oval (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask))
  3479. (pad 6 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3480. (net 22 "Net-(C17-Pad1)"))
  3481. (model ${KISYS3DMOD}/Housings_DIP.3dshapes/DIP-6_W7.62mm.wrl
  3482. (at (xyz 0 0 0))
  3483. (scale (xyz 1 1 1))
  3484. (rotate (xyz 0 0 0))
  3485. )
  3486. )
  3487. (module Housings_DIP:DIP-6_W7.62mm (layer F.Cu) (tedit 59C78D6B) (tstamp 59EF6858)
  3488. (at 59.055 93.345)
  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 /59A7109E/59A6DAA6)
  3492. (fp_text reference U4 (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 18 "Net-(R4-Pad2)"))
  3518. (pad 4 thru_hole oval (at 7.62 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3519. (net 10 "Net-(IC2-Pad2)"))
  3520. (pad 2 thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3521. (net 16 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 2 Earth))
  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 23 "Net-(C19-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 59EF688C)
  3534. (at 127.635 93.98)
  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 /59A712A3/59A6DAA6)
  3538. (fp_text reference U8 (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 20 "Net-(R8-Pad2)"))
  3564. (pad 4 thru_hole oval (at 7.62 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3565. (net 12 "Net-(IC4-Pad2)"))
  3566. (pad 2 thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3567. (net 16 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 2 Earth))
  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 25 "Net-(C23-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 41.91 270)
  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 270) (layer F.SilkS)
  3585. (effects (font (size 1 1) (thickness 0.15)))
  3586. )
  3587. (fp_text value 3K (at 3.81 2.31 270) (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 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3607. (net 26 "Net-(R3-Pad1)"))
  3608. (pad 2 thru_hole oval (at 7.62 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3609. (net 22 "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 72.39 80.01 270)
  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 270) (layer F.SilkS)
  3622. (effects (font (size 1 1) (thickness 0.15)))
  3623. )
  3624. (fp_text value 3K (at 3.81 2.31 270) (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 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3644. (net 27 "Net-(R5-Pad1)"))
  3645. (pad 2 thru_hole oval (at 7.62 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3646. (net 23 "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 139.7 43.18 270)
  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 270) (layer F.SilkS)
  3659. (effects (font (size 1 1) (thickness 0.15)))
  3660. )
  3661. (fp_text value 3K (at 3.81 2.31 270) (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 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3681. (net 28 "Net-(R7-Pad1)"))
  3682. (pad 2 thru_hole oval (at 7.62 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3683. (net 24 "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 59F053CC)
  3691. (at 139.7 80.01 270)
  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 /59A712A3/59A6DAAD)
  3695. (fp_text reference R9 (at 3.81 -2.31 270) (layer F.SilkS)
  3696. (effects (font (size 1 1) (thickness 0.15)))
  3697. )
  3698. (fp_text value 3K (at 3.81 2.31 270) (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 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3718. (net 29 "Net-(R9-Pad1)"))
  3719. (pad 2 thru_hole oval (at 7.62 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3720. (net 25 "Net-(C23-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 Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59F05D37)
  3728. (at 135.89 67.31 180)
  3729. (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")
  3730. (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
  3731. (path /59A71299/59A6DA9F)
  3732. (fp_text reference R6 (at 3.81 -2.31 180) (layer F.SilkS)
  3733. (effects (font (size 1 1) (thickness 0.15)))
  3734. )
  3735. (fp_text value 180 (at 3.81 2.31 180) (layer F.Fab)
  3736. (effects (font (size 1 1) (thickness 0.15)))
  3737. )
  3738. (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
  3739. (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
  3740. (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
  3741. (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
  3742. (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
  3743. (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
  3744. (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
  3745. (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
  3746. (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
  3747. (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
  3748. (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
  3749. (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
  3750. (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
  3751. (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
  3752. (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
  3753. (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
  3754. (pad 1 thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3755. (net 32 ARD_PWM_C))
  3756. (pad 2 thru_hole oval (at 7.62 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3757. (net 19 "Net-(R6-Pad2)"))
  3758. (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
  3759. (at (xyz 0 0 0))
  3760. (scale (xyz 0.3937 0.3937 0.3937))
  3761. (rotate (xyz 0 0 0))
  3762. )
  3763. )
  3764. (module Diodes_THT:D_T-1_P5.08mm_Horizontal (layer F.Cu) (tedit 5921392F) (tstamp 59F0CB1D)
  3765. (at 86.36 45.72)
  3766. (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")
  3767. (tags "D T-1 series Axial Horizontal pin pitch 5.08mm length 3.2mm diameter 2.6mm")
  3768. (path /59498AA5/59EF0E59)
  3769. (fp_text reference D1 (at 2.54 -2.36) (layer F.SilkS)
  3770. (effects (font (size 1 1) (thickness 0.15)))
  3771. )
  3772. (fp_text value D_Zener (at 2.54 2.36) (layer F.Fab)
  3773. (effects (font (size 1 1) (thickness 0.15)))
  3774. )
  3775. (fp_text user %R (at 2.54 0) (layer F.Fab)
  3776. (effects (font (size 1 1) (thickness 0.15)))
  3777. )
  3778. (fp_line (start 0.94 -1.3) (end 0.94 1.3) (layer F.Fab) (width 0.1))
  3779. (fp_line (start 0.94 1.3) (end 4.14 1.3) (layer F.Fab) (width 0.1))
  3780. (fp_line (start 4.14 1.3) (end 4.14 -1.3) (layer F.Fab) (width 0.1))
  3781. (fp_line (start 4.14 -1.3) (end 0.94 -1.3) (layer F.Fab) (width 0.1))
  3782. (fp_line (start 0 0) (end 0.94 0) (layer F.Fab) (width 0.1))
  3783. (fp_line (start 5.08 0) (end 4.14 0) (layer F.Fab) (width 0.1))
  3784. (fp_line (start 1.42 -1.3) (end 1.42 1.3) (layer F.Fab) (width 0.1))
  3785. (fp_line (start 0.88 -1.18) (end 0.88 -1.36) (layer F.SilkS) (width 0.12))
  3786. (fp_line (start 0.88 -1.36) (end 4.2 -1.36) (layer F.SilkS) (width 0.12))
  3787. (fp_line (start 4.2 -1.36) (end 4.2 -1.18) (layer F.SilkS) (width 0.12))
  3788. (fp_line (start 0.88 1.18) (end 0.88 1.36) (layer F.SilkS) (width 0.12))
  3789. (fp_line (start 0.88 1.36) (end 4.2 1.36) (layer F.SilkS) (width 0.12))
  3790. (fp_line (start 4.2 1.36) (end 4.2 1.18) (layer F.SilkS) (width 0.12))
  3791. (fp_line (start 1.42 -1.36) (end 1.42 1.36) (layer F.SilkS) (width 0.12))
  3792. (fp_line (start -1.25 -1.65) (end -1.25 1.65) (layer F.CrtYd) (width 0.05))
  3793. (fp_line (start -1.25 1.65) (end 6.35 1.65) (layer F.CrtYd) (width 0.05))
  3794. (fp_line (start 6.35 1.65) (end 6.35 -1.65) (layer F.CrtYd) (width 0.05))
  3795. (fp_line (start 6.35 -1.65) (end -1.25 -1.65) (layer F.CrtYd) (width 0.05))
  3796. (pad 1 thru_hole rect (at 0 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)
  3797. (net 22 "Net-(C17-Pad1)"))
  3798. (pad 2 thru_hole oval (at 5.08 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)
  3799. (net 2 Earth))
  3800. (model ${KISYS3DMOD}/Diodes_THT.3dshapes/D_T-1_P5.08mm_Horizontal.wrl
  3801. (at (xyz 0 0 0))
  3802. (scale (xyz 0.393701 0.393701 0.393701))
  3803. (rotate (xyz 0 0 0))
  3804. )
  3805. )
  3806. (module Diodes_THT:D_T-1_P5.08mm_Horizontal (layer F.Cu) (tedit 5921392F) (tstamp 59F0CB36)
  3807. (at 90.17 83.82)
  3808. (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")
  3809. (tags "D T-1 series Axial Horizontal pin pitch 5.08mm length 3.2mm diameter 2.6mm")
  3810. (path /59A7109E/59EF0E59)
  3811. (fp_text reference D2 (at 2.54 -2.36) (layer F.SilkS)
  3812. (effects (font (size 1 1) (thickness 0.15)))
  3813. )
  3814. (fp_text value D_Zener (at 2.54 2.36) (layer F.Fab)
  3815. (effects (font (size 1 1) (thickness 0.15)))
  3816. )
  3817. (fp_text user %R (at 2.54 0) (layer F.Fab)
  3818. (effects (font (size 1 1) (thickness 0.15)))
  3819. )
  3820. (fp_line (start 0.94 -1.3) (end 0.94 1.3) (layer F.Fab) (width 0.1))
  3821. (fp_line (start 0.94 1.3) (end 4.14 1.3) (layer F.Fab) (width 0.1))
  3822. (fp_line (start 4.14 1.3) (end 4.14 -1.3) (layer F.Fab) (width 0.1))
  3823. (fp_line (start 4.14 -1.3) (end 0.94 -1.3) (layer F.Fab) (width 0.1))
  3824. (fp_line (start 0 0) (end 0.94 0) (layer F.Fab) (width 0.1))
  3825. (fp_line (start 5.08 0) (end 4.14 0) (layer F.Fab) (width 0.1))
  3826. (fp_line (start 1.42 -1.3) (end 1.42 1.3) (layer F.Fab) (width 0.1))
  3827. (fp_line (start 0.88 -1.18) (end 0.88 -1.36) (layer F.SilkS) (width 0.12))
  3828. (fp_line (start 0.88 -1.36) (end 4.2 -1.36) (layer F.SilkS) (width 0.12))
  3829. (fp_line (start 4.2 -1.36) (end 4.2 -1.18) (layer F.SilkS) (width 0.12))
  3830. (fp_line (start 0.88 1.18) (end 0.88 1.36) (layer F.SilkS) (width 0.12))
  3831. (fp_line (start 0.88 1.36) (end 4.2 1.36) (layer F.SilkS) (width 0.12))
  3832. (fp_line (start 4.2 1.36) (end 4.2 1.18) (layer F.SilkS) (width 0.12))
  3833. (fp_line (start 1.42 -1.36) (end 1.42 1.36) (layer F.SilkS) (width 0.12))
  3834. (fp_line (start -1.25 -1.65) (end -1.25 1.65) (layer F.CrtYd) (width 0.05))
  3835. (fp_line (start -1.25 1.65) (end 6.35 1.65) (layer F.CrtYd) (width 0.05))
  3836. (fp_line (start 6.35 1.65) (end 6.35 -1.65) (layer F.CrtYd) (width 0.05))
  3837. (fp_line (start 6.35 -1.65) (end -1.25 -1.65) (layer F.CrtYd) (width 0.05))
  3838. (pad 1 thru_hole rect (at 0 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)
  3839. (net 23 "Net-(C19-Pad1)"))
  3840. (pad 2 thru_hole oval (at 5.08 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)
  3841. (net 2 Earth))
  3842. (model ${KISYS3DMOD}/Diodes_THT.3dshapes/D_T-1_P5.08mm_Horizontal.wrl
  3843. (at (xyz 0 0 0))
  3844. (scale (xyz 0.393701 0.393701 0.393701))
  3845. (rotate (xyz 0 0 0))
  3846. )
  3847. )
  3848. (module Diodes_THT:D_T-1_P5.08mm_Horizontal (layer F.Cu) (tedit 5921392F) (tstamp 59F0CB4F)
  3849. (at 156.21 45.72)
  3850. (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")
  3851. (tags "D T-1 series Axial Horizontal pin pitch 5.08mm length 3.2mm diameter 2.6mm")
  3852. (path /59A71299/59EF0E59)
  3853. (fp_text reference D3 (at 2.54 -2.36) (layer F.SilkS)
  3854. (effects (font (size 1 1) (thickness 0.15)))
  3855. )
  3856. (fp_text value D_Zener (at 2.54 2.36) (layer F.Fab)
  3857. (effects (font (size 1 1) (thickness 0.15)))
  3858. )
  3859. (fp_text user %R (at 2.54 0) (layer F.Fab)
  3860. (effects (font (size 1 1) (thickness 0.15)))
  3861. )
  3862. (fp_line (start 0.94 -1.3) (end 0.94 1.3) (layer F.Fab) (width 0.1))
  3863. (fp_line (start 0.94 1.3) (end 4.14 1.3) (layer F.Fab) (width 0.1))
  3864. (fp_line (start 4.14 1.3) (end 4.14 -1.3) (layer F.Fab) (width 0.1))
  3865. (fp_line (start 4.14 -1.3) (end 0.94 -1.3) (layer F.Fab) (width 0.1))
  3866. (fp_line (start 0 0) (end 0.94 0) (layer F.Fab) (width 0.1))
  3867. (fp_line (start 5.08 0) (end 4.14 0) (layer F.Fab) (width 0.1))
  3868. (fp_line (start 1.42 -1.3) (end 1.42 1.3) (layer F.Fab) (width 0.1))
  3869. (fp_line (start 0.88 -1.18) (end 0.88 -1.36) (layer F.SilkS) (width 0.12))
  3870. (fp_line (start 0.88 -1.36) (end 4.2 -1.36) (layer F.SilkS) (width 0.12))
  3871. (fp_line (start 4.2 -1.36) (end 4.2 -1.18) (layer F.SilkS) (width 0.12))
  3872. (fp_line (start 0.88 1.18) (end 0.88 1.36) (layer F.SilkS) (width 0.12))
  3873. (fp_line (start 0.88 1.36) (end 4.2 1.36) (layer F.SilkS) (width 0.12))
  3874. (fp_line (start 4.2 1.36) (end 4.2 1.18) (layer F.SilkS) (width 0.12))
  3875. (fp_line (start 1.42 -1.36) (end 1.42 1.36) (layer F.SilkS) (width 0.12))
  3876. (fp_line (start -1.25 -1.65) (end -1.25 1.65) (layer F.CrtYd) (width 0.05))
  3877. (fp_line (start -1.25 1.65) (end 6.35 1.65) (layer F.CrtYd) (width 0.05))
  3878. (fp_line (start 6.35 1.65) (end 6.35 -1.65) (layer F.CrtYd) (width 0.05))
  3879. (fp_line (start 6.35 -1.65) (end -1.25 -1.65) (layer F.CrtYd) (width 0.05))
  3880. (pad 1 thru_hole rect (at 0 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)
  3881. (net 24 "Net-(C21-Pad1)"))
  3882. (pad 2 thru_hole oval (at 5.08 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)
  3883. (net 2 Earth))
  3884. (model ${KISYS3DMOD}/Diodes_THT.3dshapes/D_T-1_P5.08mm_Horizontal.wrl
  3885. (at (xyz 0 0 0))
  3886. (scale (xyz 0.393701 0.393701 0.393701))
  3887. (rotate (xyz 0 0 0))
  3888. )
  3889. )
  3890. (module Diodes_THT:D_T-1_P5.08mm_Horizontal (layer F.Cu) (tedit 5921392F) (tstamp 59F0CB68)
  3891. (at 156.21 83.82)
  3892. (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")
  3893. (tags "D T-1 series Axial Horizontal pin pitch 5.08mm length 3.2mm diameter 2.6mm")
  3894. (path /59A712A3/59EF0E59)
  3895. (fp_text reference D4 (at 2.54 -2.36) (layer F.SilkS)
  3896. (effects (font (size 1 1) (thickness 0.15)))
  3897. )
  3898. (fp_text value D_Zener (at 2.54 2.36) (layer F.Fab)
  3899. (effects (font (size 1 1) (thickness 0.15)))
  3900. )
  3901. (fp_text user %R (at 2.54 0) (layer F.Fab)
  3902. (effects (font (size 1 1) (thickness 0.15)))
  3903. )
  3904. (fp_line (start 0.94 -1.3) (end 0.94 1.3) (layer F.Fab) (width 0.1))
  3905. (fp_line (start 0.94 1.3) (end 4.14 1.3) (layer F.Fab) (width 0.1))
  3906. (fp_line (start 4.14 1.3) (end 4.14 -1.3) (layer F.Fab) (width 0.1))
  3907. (fp_line (start 4.14 -1.3) (end 0.94 -1.3) (layer F.Fab) (width 0.1))
  3908. (fp_line (start 0 0) (end 0.94 0) (layer F.Fab) (width 0.1))
  3909. (fp_line (start 5.08 0) (end 4.14 0) (layer F.Fab) (width 0.1))
  3910. (fp_line (start 1.42 -1.3) (end 1.42 1.3) (layer F.Fab) (width 0.1))
  3911. (fp_line (start 0.88 -1.18) (end 0.88 -1.36) (layer F.SilkS) (width 0.12))
  3912. (fp_line (start 0.88 -1.36) (end 4.2 -1.36) (layer F.SilkS) (width 0.12))
  3913. (fp_line (start 4.2 -1.36) (end 4.2 -1.18) (layer F.SilkS) (width 0.12))
  3914. (fp_line (start 0.88 1.18) (end 0.88 1.36) (layer F.SilkS) (width 0.12))
  3915. (fp_line (start 0.88 1.36) (end 4.2 1.36) (layer F.SilkS) (width 0.12))
  3916. (fp_line (start 4.2 1.36) (end 4.2 1.18) (layer F.SilkS) (width 0.12))
  3917. (fp_line (start 1.42 -1.36) (end 1.42 1.36) (layer F.SilkS) (width 0.12))
  3918. (fp_line (start -1.25 -1.65) (end -1.25 1.65) (layer F.CrtYd) (width 0.05))
  3919. (fp_line (start -1.25 1.65) (end 6.35 1.65) (layer F.CrtYd) (width 0.05))
  3920. (fp_line (start 6.35 1.65) (end 6.35 -1.65) (layer F.CrtYd) (width 0.05))
  3921. (fp_line (start 6.35 -1.65) (end -1.25 -1.65) (layer F.CrtYd) (width 0.05))
  3922. (pad 1 thru_hole rect (at 0 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)
  3923. (net 25 "Net-(C23-Pad1)"))
  3924. (pad 2 thru_hole oval (at 5.08 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)
  3925. (net 2 Earth))
  3926. (model ${KISYS3DMOD}/Diodes_THT.3dshapes/D_T-1_P5.08mm_Horizontal.wrl
  3927. (at (xyz 0 0 0))
  3928. (scale (xyz 0.393701 0.393701 0.393701))
  3929. (rotate (xyz 0 0 0))
  3930. )
  3931. )
  3932. (gr_line (start 172.72 74.93) (end 172.72 110.49) (layer F.SilkS) (width 0.2) (tstamp 59F22E2A))
  3933. (gr_line (start 172.72 110.49) (end 121.92 110.49) (layer F.SilkS) (width 0.2) (tstamp 59F22E29))
  3934. (gr_line (start 121.92 110.49) (end 121.92 74.93) (layer F.SilkS) (width 0.2) (tstamp 59F22E28))
  3935. (gr_line (start 121.92 74.93) (end 172.72 74.93) (layer F.SilkS) (width 0.2) (tstamp 59F22E27))
  3936. (gr_line (start 102.87 74.93) (end 102.87 110.49) (layer F.SilkS) (width 0.2) (tstamp 59F22E26))
  3937. (gr_line (start 102.87 110.49) (end 52.07 110.49) (layer F.SilkS) (width 0.2) (tstamp 59F22E25))
  3938. (gr_line (start 52.07 110.49) (end 52.07 74.93) (layer F.SilkS) (width 0.2) (tstamp 59F22E24))
  3939. (gr_line (start 52.07 74.93) (end 102.87 74.93) (layer F.SilkS) (width 0.2) (tstamp 59F22E23))
  3940. (gr_line (start 172.72 36.83) (end 172.72 72.39) (layer F.SilkS) (width 0.2) (tstamp 59F22E22))
  3941. (gr_line (start 172.72 72.39) (end 121.92 72.39) (layer F.SilkS) (width 0.2) (tstamp 59F22E21))
  3942. (gr_line (start 121.92 72.39) (end 121.92 36.83) (layer F.SilkS) (width 0.2) (tstamp 59F22E20))
  3943. (gr_line (start 121.92 36.83) (end 172.72 36.83) (layer F.SilkS) (width 0.2) (tstamp 59F22E1F))
  3944. (gr_line (start 52.07 72.39) (end 52.07 36.83) (layer F.SilkS) (width 0.2))
  3945. (gr_line (start 102.87 72.39) (end 52.07 72.39) (layer F.SilkS) (width 0.2))
  3946. (gr_line (start 102.87 36.83) (end 102.87 72.39) (layer F.SilkS) (width 0.2))
  3947. (gr_line (start 52.07 36.83) (end 102.87 36.83) (layer F.SilkS) (width 0.2))
  3948. (gr_line (start 49.53 113.03) (end 175.26 113.03) (layer Edge.Cuts) (width 0.15))
  3949. (gr_line (start 49.53 34.29) (end 49.53 113.03) (layer Edge.Cuts) (width 0.15))
  3950. (gr_line (start 175.26 34.29) (end 49.53 34.29) (layer Edge.Cuts) (width 0.15))
  3951. (dimension 78.74 (width 0.3) (layer Dwgs.User)
  3952. (gr_text "78.740 mm" (at 182.96 73.66 90) (layer Dwgs.User)
  3953. (effects (font (size 1.5 1.5) (thickness 0.3)))
  3954. )
  3955. (feature1 (pts (xy 177.8 34.29) (xy 184.31 34.29)))
  3956. (feature2 (pts (xy 177.8 113.03) (xy 184.31 113.03)))
  3957. (crossbar (pts (xy 181.61 113.03) (xy 181.61 34.29)))
  3958. (arrow1a (pts (xy 181.61 34.29) (xy 182.196421 35.416504)))
  3959. (arrow1b (pts (xy 181.61 34.29) (xy 181.023579 35.416504)))
  3960. (arrow2a (pts (xy 181.61 113.03) (xy 182.196421 111.903496)))
  3961. (arrow2b (pts (xy 181.61 113.03) (xy 181.023579 111.903496)))
  3962. )
  3963. (dimension 125.73 (width 0.3) (layer Dwgs.User)
  3964. (gr_text "125.730 mm" (at 112.395 27.909839) (layer Dwgs.User)
  3965. (effects (font (size 1.5 1.5) (thickness 0.3)))
  3966. )
  3967. (feature1 (pts (xy 175.26 31.75) (xy 175.26 26.559839)))
  3968. (feature2 (pts (xy 49.53 31.75) (xy 49.53 26.559839)))
  3969. (crossbar (pts (xy 49.53 29.259839) (xy 175.26 29.259839)))
  3970. (arrow1a (pts (xy 175.26 29.259839) (xy 174.133496 29.84626)))
  3971. (arrow1b (pts (xy 175.26 29.259839) (xy 174.133496 28.673418)))
  3972. (arrow2a (pts (xy 49.53 29.259839) (xy 50.656504 29.84626)))
  3973. (arrow2b (pts (xy 49.53 29.259839) (xy 50.656504 28.673418)))
  3974. )
  3975. (gr_text "© Enertechnos Ltd. 2017" (at 171.45 60.96 90) (layer F.SilkS)
  3976. (effects (font (size 1 1) (thickness 0.2)))
  3977. )
  3978. (gr_text "Module Rev1" (at 111.680347 109.815299) (layer B.Cu)
  3979. (effects (font (size 1 1) (thickness 0.25)) (justify mirror))
  3980. )
  3981. (gr_text "Module Rev1" (at 111.680347 108.189699) (layer F.Cu)
  3982. (effects (font (size 1 1) (thickness 0.25)))
  3983. )
  3984. (gr_line (start 175.26 34.29) (end 175.26 113.03) (layer Edge.Cuts) (width 0.15))
  3985. (gr_text "Switch 4" (at 140.97 77.47) (layer F.SilkS)
  3986. (effects (font (size 1.5 1.5) (thickness 0.3)))
  3987. )
  3988. (gr_text "Switch 2" (at 78.74 77.47) (layer F.SilkS)
  3989. (effects (font (size 1.5 1.5) (thickness 0.3)))
  3990. )
  3991. (gr_text "Switch 3" (at 142.24 39.37) (layer F.SilkS)
  3992. (effects (font (size 1.5 1.5) (thickness 0.3)))
  3993. )
  3994. (gr_text "Switch 1" (at 72.39 39.37) (layer F.SilkS)
  3995. (effects (font (size 1.5 1.5) (thickness 0.3)))
  3996. )
  3997. (segment (start 81.32 53.34) (end 83.020001 55.040001) (width 1) (layer F.Cu) (net 1))
  3998. (segment (start 83.020001 55.040001) (end 85.929999 55.040001) (width 1) (layer F.Cu) (net 1))
  3999. (segment (start 85.929999 55.040001) (end 87.63 53.34) (width 1) (layer F.Cu) (net 1))
  4000. (segment (start 87.63 53.34) (end 87.63 54.61) (width 1) (layer F.Cu) (net 1) (status 80000))
  4001. (segment (start 87.63 54.61) (end 88.9 55.88) (width 1) (layer F.Cu) (net 1) (status 80000))
  4002. (segment (start 88.9 55.88) (end 92.71 55.88) (width 1) (layer F.Cu) (net 1) (status 80000))
  4003. (segment (start 92.71 55.88) (end 93.98 54.61) (width 1) (layer F.Cu) (net 1) (status 80000))
  4004. (segment (start 93.98 54.61) (end 93.98 53.34) (width 1) (layer F.Cu) (net 1) (status 80000))
  4005. (segment (start 93.98 53.34) (end 94.02 53.34) (width 1) (layer F.Cu) (net 1) (tstamp 59F3163F) (status 80000))
  4006. (segment (start 81.32 53.34) (end 81.28 53.34) (width 1) (layer F.Cu) (net 1) (status 80000))
  4007. (segment (start 67.31 49.53) (end 66.04 49.53) (width 1) (layer F.Cu) (net 1) (status 80000))
  4008. (segment (start 66.04 49.53) (end 64.77 48.26) (width 1) (layer F.Cu) (net 1) (status 80000))
  4009. (segment (start 64.77 48.26) (end 64.77 40.64) (width 1) (layer F.Cu) (net 1) (status 80000))
  4010. (segment (start 64.77 40.64) (end 66.04 39.37) (width 1) (layer F.Cu) (net 1) (status 80000))
  4011. (segment (start 66.04 39.37) (end 72.39 39.37) (width 1) (layer F.Cu) (net 1) (status 80000))
  4012. (segment (start 72.39 39.37) (end 74.93 41.91) (width 1) (layer F.Cu) (net 1) (status 80000))
  4013. (segment (start 74.93 41.91) (end 74.93 46.99) (width 1) (layer F.Cu) (net 1) (status 80000))
  4014. (segment (start 74.93 46.99) (end 81.28 53.34) (width 1) (layer F.Cu) (net 1) (status 80000))
  4015. (segment (start 81.28 53.34) (end 81.32 53.34) (width 1) (layer F.Cu) (net 1) (tstamp 59F2FD0D) (status 80000))
  4016. (segment (start 96.52 60.96) (end 101.6 55.88) (width 1) (layer B.Cu) (net 2))
  4017. (segment (start 101.6 55.88) (end 116.84 55.88) (width 1) (layer B.Cu) (net 2))
  4018. (segment (start 116.84 55.88) (end 118.11 54.61) (width 1) (layer B.Cu) (net 2))
  4019. (segment (start 118.11 54.61) (end 130.81 54.61) (width 1) (layer B.Cu) (net 2))
  4020. (segment (start 130.81 54.61) (end 134.455001 58.255001) (width 1) (layer B.Cu) (net 2))
  4021. (segment (start 134.455001 58.255001) (end 135.255 59.055) (width 1) (layer B.Cu) (net 2))
  4022. (segment (start 161.29 83.82) (end 161.29 87.63) (width 1) (layer F.Cu) (net 2))
  4023. (segment (start 161.29 87.63) (end 160.02 88.9) (width 1) (layer F.Cu) (net 2))
  4024. (segment (start 161.29 45.72) (end 161.29 47.134213) (width 1) (layer F.Cu) (net 2))
  4025. (segment (start 161.29 47.134213) (end 165.06 50.904213) (width 1) (layer F.Cu) (net 2))
  4026. (segment (start 165.06 50.904213) (end 165.06 52.20863) (width 1) (layer F.Cu) (net 2))
  4027. (segment (start 165.06 52.20863) (end 165.06 53.34) (width 1) (layer F.Cu) (net 2))
  4028. (segment (start 83.82 53.34) (end 83.82 48.26) (width 1) (layer F.Cu) (net 2))
  4029. (segment (start 83.82 48.26) (end 80.01 44.45) (width 1) (layer F.Cu) (net 2))
  4030. (segment (start 91.44 45.72) (end 91.44 50.8) (width 1) (layer F.Cu) (net 2))
  4031. (segment (start 158.75 67.31) (end 160.02 68.58) (width 1) (layer F.Cu) (net 2) (status 80000))
  4032. (segment (start 160.02 68.58) (end 160.02 69.85) (width 1) (layer F.Cu) (net 2) (status 80000))
  4033. (segment (start 160.02 69.85) (end 161.29 71.12) (width 1) (layer F.Cu) (net 2) (status 80000))
  4034. (segment (start 161.29 71.12) (end 161.29 83.82) (width 1) (layer F.Cu) (net 2) (status 80000))
  4035. (segment (start 152.36 53.34) (end 152.4 53.34) (width 1) (layer F.Cu) (net 2) (status 80000))
  4036. (segment (start 152.4 53.34) (end 152.4 50.8) (width 1) (layer F.Cu) (net 2) (status 80000))
  4037. (segment (start 152.4 50.8) (end 148.59 46.99) (width 1) (layer F.Cu) (net 2) (status 80000))
  4038. (segment (start 148.59 46.99) (end 148.59 44.45) (width 1) (layer F.Cu) (net 2) (status 80000))
  4039. (segment (start 161.29 83.82) (end 158.75 81.28) (width 1) (layer B.Cu) (net 2) (status 80000))
  4040. (segment (start 158.75 81.28) (end 153.67 81.28) (width 1) (layer B.Cu) (net 2) (status 80000))
  4041. (segment (start 153.67 81.28) (end 152.4 82.55) (width 1) (layer B.Cu) (net 2) (status 80000))
  4042. (segment (start 152.4 82.55) (end 148.59 82.55) (width 1) (layer B.Cu) (net 2) (status 80000))
  4043. (segment (start 95.25 83.82) (end 95.25 67.31) (width 1) (layer F.Cu) (net 2) (status 80000))
  4044. (segment (start 138.43 99.06) (end 138.43 101.6) (width 1) (layer B.Cu) (net 2) (status 80000))
  4045. (segment (start 138.43 101.6) (end 133.35 101.6) (width 1) (layer B.Cu) (net 2) (status 80000))
  4046. (segment (start 133.35 101.6) (end 133.35 96.52) (width 1) (layer B.Cu) (net 2) (status 80000))
  4047. (segment (start 133.35 96.52) (end 135.255 96.52) (width 1) (layer B.Cu) (net 2) (status 80000))
  4048. (segment (start 69.85 99.06) (end 69.85 101.6) (width 1) (layer B.Cu) (net 2) (status 80000))
  4049. (segment (start 69.85 101.6) (end 67.31 101.6) (width 1) (layer B.Cu) (net 2) (status 80000))
  4050. (segment (start 67.31 101.6) (end 66.04 100.33) (width 1) (layer B.Cu) (net 2) (status 80000))
  4051. (segment (start 66.04 100.33) (end 64.77 100.33) (width 1) (layer B.Cu) (net 2) (status 80000))
  4052. (segment (start 64.77 100.33) (end 64.77 96.52) (width 1) (layer B.Cu) (net 2) (status 80000))
  4053. (segment (start 64.77 96.52) (end 67.31 96.52) (width 1) (layer B.Cu) (net 2) (status 80000))
  4054. (segment (start 67.31 96.52) (end 66.675 95.885) (width 1) (layer B.Cu) (net 2) (tstamp 59F31652) (status 80000))
  4055. (segment (start 96.52 99.06) (end 96.52 101.6) (width 1) (layer F.Cu) (net 2) (status 80000))
  4056. (segment (start 96.52 101.6) (end 93.98 104.14) (width 1) (layer F.Cu) (net 2) (status 80000))
  4057. (segment (start 93.98 104.14) (end 93.98 105.41) (width 1) (layer F.Cu) (net 2) (status 80000))
  4058. (segment (start 82.55 82.55) (end 83.82 83.82) (width 1) (layer F.Cu) (net 2) (status 80000))
  4059. (segment (start 83.82 83.82) (end 83.82 91.44) (width 1) (layer F.Cu) (net 2) (status 80000))
  4060. (segment (start 96.48 91.44) (end 96.52 91.44) (width 1) (layer B.Cu) (net 2) (status 80000))
  4061. (segment (start 96.52 91.44) (end 96.52 85.09) (width 1) (layer B.Cu) (net 2) (status 80000))
  4062. (segment (start 96.52 85.09) (end 95.25 83.82) (width 1) (layer B.Cu) (net 2) (status 80000))
  4063. (segment (start 160.02 99.06) (end 160.02 101.6) (width 1) (layer F.Cu) (net 2) (status 80000))
  4064. (segment (start 160.02 101.6) (end 158.75 102.87) (width 1) (layer F.Cu) (net 2) (status 80000))
  4065. (segment (start 158.75 102.87) (end 158.75 105.41) (width 1) (layer F.Cu) (net 2) (status 80000))
  4066. (segment (start 95.25 67.31) (end 96.52 66.04) (width 1) (layer F.Cu) (net 2) (status 80000))
  4067. (segment (start 96.52 66.04) (end 96.52 60.96) (width 1) (layer F.Cu) (net 2) (status 80000))
  4068. (segment (start 160.02 99.06) (end 160.02 101.6) (width 1) (layer B.Cu) (net 2) (status 80000))
  4069. (segment (start 160.02 101.6) (end 152.4 101.6) (width 1) (layer B.Cu) (net 2) (status 80000))
  4070. (segment (start 152.4 101.6) (end 151.13 100.33) (width 1) (layer B.Cu) (net 2) (status 80000))
  4071. (segment (start 151.13 100.33) (end 151.13 99.06) (width 1) (layer B.Cu) (net 2) (status 80000))
  4072. (segment (start 151.13 99.06) (end 151.17 99.06) (width 1) (layer B.Cu) (net 2) (tstamp 59F31648) (status 80000))
  4073. (segment (start 90.17 60.96) (end 90.17 63.5) (width 1) (layer B.Cu) (net 2) (status 80000))
  4074. (segment (start 90.17 63.5) (end 82.55 63.5) (width 1) (layer B.Cu) (net 2) (status 80000))
  4075. (segment (start 82.55 63.5) (end 81.28 62.23) (width 1) (layer B.Cu) (net 2) (status 80000))
  4076. (segment (start 81.28 62.23) (end 81.28 60.96) (width 1) (layer B.Cu) (net 2) (status 80000))
  4077. (segment (start 81.28 60.96) (end 81.32 60.96) (width 1) (layer B.Cu) (net 2) (tstamp 59F31647) (status 80000))
  4078. (segment (start 149.86 60.96) (end 149.86 62.23) (width 1) (layer B.Cu) (net 2) (status 80000))
  4079. (segment (start 149.86 62.23) (end 151.13 63.5) (width 1) (layer B.Cu) (net 2) (status 80000))
  4080. (segment (start 151.13 63.5) (end 158.75 63.5) (width 1) (layer B.Cu) (net 2) (status 80000))
  4081. (segment (start 158.75 63.5) (end 158.75 60.96) (width 1) (layer B.Cu) (net 2) (status 80000))
  4082. (segment (start 158.75 60.96) (end 158.71 60.96) (width 1) (layer B.Cu) (net 2) (tstamp 59F31646) (status 80000))
  4083. (segment (start 90.17 99.06) (end 90.17 101.6) (width 1) (layer B.Cu) (net 2) (status 80000))
  4084. (segment (start 90.17 101.6) (end 82.55 101.6) (width 1) (layer B.Cu) (net 2) (status 80000))
  4085. (segment (start 82.55 101.6) (end 81.28 100.33) (width 1) (layer B.Cu) (net 2) (status 80000))
  4086. (segment (start 81.28 100.33) (end 81.28 99.06) (width 1) (layer B.Cu) (net 2) (status 80000))
  4087. (segment (start 81.28 99.06) (end 81.32 99.06) (width 1) (layer B.Cu) (net 2) (tstamp 59F31645) (status 80000))
  4088. (segment (start 77.47 99.06) (end 69.85 99.06) (width 1) (layer B.Cu) (net 2) (status 80000))
  4089. (segment (start 165.06 60.96) (end 165.1 60.96) (width 1) (layer F.Cu) (net 2) (status 80000))
  4090. (segment (start 165.1 60.96) (end 165.1 53.34) (width 1) (layer F.Cu) (net 2) (status 80000))
  4091. (segment (start 165.1 53.34) (end 165.06 53.34) (width 1) (layer F.Cu) (net 2) (tstamp 59F31644) (status 80000))
  4092. (segment (start 135.255 59.055) (end 135.89 59.69) (width 1) (layer F.Cu) (net 2) (status 80000))
  4093. (segment (start 135.89 59.69) (end 137.16 59.69) (width 1) (layer F.Cu) (net 2) (status 80000))
  4094. (segment (start 137.16 59.69) (end 137.16 60.96) (width 1) (layer F.Cu) (net 2) (status 80000))
  4095. (segment (start 137.16 60.96) (end 138.43 60.96) (width 1) (layer F.Cu) (net 2) (status 80000))
  4096. (segment (start 138.43 60.96) (end 146.05 60.96) (width 1) (layer B.Cu) (net 2) (status 80000))
  4097. (segment (start 146.05 99.06) (end 138.43 99.06) (width 1) (layer B.Cu) (net 2) (status 80000))
  4098. (segment (start 90.17 91.44) (end 90.17 99.06) (width 1) (layer F.Cu) (net 2) (status 80000))
  4099. (segment (start 160.02 91.44) (end 160.02 99.06) (width 1) (layer F.Cu) (net 2) (status 80000))
  4100. (segment (start 96.52 60.96) (end 96.52 53.34) (width 1) (layer F.Cu) (net 2) (status 80000))
  4101. (segment (start 160.02 91.44) (end 161.29 92.71) (width 1) (layer B.Cu) (net 2) (status 80000))
  4102. (segment (start 161.29 92.71) (end 161.29 93.98) (width 1) (layer B.Cu) (net 2) (status 80000))
  4103. (segment (start 161.29 93.98) (end 166.37 93.98) (width 1) (layer B.Cu) (net 2) (status 80000))
  4104. (segment (start 166.37 93.98) (end 166.37 91.44) (width 1) (layer B.Cu) (net 2) (status 80000))
  4105. (segment (start 166.37 91.44) (end 166.33 91.44) (width 1) (layer B.Cu) (net 2) (tstamp 59F31643) (status 80000))
  4106. (segment (start 160.02 99.06) (end 161.29 97.79) (width 1) (layer B.Cu) (net 2) (status 80000))
  4107. (segment (start 161.29 97.79) (end 161.29 96.52) (width 1) (layer B.Cu) (net 2) (status 80000))
  4108. (segment (start 161.29 96.52) (end 166.37 96.52) (width 1) (layer B.Cu) (net 2) (status 80000))
  4109. (segment (start 166.37 96.52) (end 166.37 99.06) (width 1) (layer B.Cu) (net 2) (status 80000))
  4110. (segment (start 166.37 99.06) (end 166.33 99.06) (width 1) (layer B.Cu) (net 2) (tstamp 59F31642) (status 80000))
  4111. (segment (start 158.71 60.96) (end 158.75 60.96) (width 1) (layer F.Cu) (net 2) (status 80000))
  4112. (segment (start 158.75 60.96) (end 158.75 67.31) (width 1) (layer F.Cu) (net 2) (status 80000))
  4113. (segment (start 90.17 99.06) (end 91.44 97.79) (width 1) (layer B.Cu) (net 2) (status 80000))
  4114. (segment (start 91.44 97.79) (end 91.44 96.52) (width 1) (layer B.Cu) (net 2) (status 80000))
  4115. (segment (start 91.44 96.52) (end 96.52 96.52) (width 1) (layer B.Cu) (net 2) (status 80000))
  4116. (segment (start 96.52 96.52) (end 96.52 99.06) (width 1) (layer B.Cu) (net 2) (status 80000))
  4117. (segment (start 158.71 60.96) (end 158.75 60.96) (width 1) (layer B.Cu) (net 2) (status 80000))
  4118. (segment (start 158.75 60.96) (end 160.02 59.69) (width 1) (layer B.Cu) (net 2) (status 80000))
  4119. (segment (start 160.02 59.69) (end 160.02 58.42) (width 1) (layer B.Cu) (net 2) (status 80000))
  4120. (segment (start 160.02 58.42) (end 165.1 58.42) (width 1) (layer B.Cu) (net 2) (status 80000))
  4121. (segment (start 165.1 58.42) (end 165.1 60.96) (width 1) (layer B.Cu) (net 2) (status 80000))
  4122. (segment (start 165.1 60.96) (end 165.06 60.96) (width 1) (layer B.Cu) (net 2) (tstamp 59F31641) (status 80000))
  4123. (segment (start 90.17 91.44) (end 91.44 90.17) (width 1) (layer F.Cu) (net 2) (status 80000))
  4124. (segment (start 91.44 90.17) (end 91.44 88.9) (width 1) (layer F.Cu) (net 2) (status 80000))
  4125. (segment (start 91.44 88.9) (end 96.52 88.9) (width 1) (layer F.Cu) (net 2) (status 80000))
  4126. (segment (start 96.52 88.9) (end 96.52 91.44) (width 1) (layer F.Cu) (net 2) (status 80000))
  4127. (segment (start 96.52 91.44) (end 96.48 91.44) (width 1) (layer F.Cu) (net 2) (tstamp 59F31640) (status 80000))
  4128. (segment (start 160.02 91.44) (end 160.02 88.9) (width 1) (layer F.Cu) (net 2) (status 80000))
  4129. (segment (start 160.02 88.9) (end 154.94 88.9) (width 1) (layer F.Cu) (net 2) (status 80000))
  4130. (segment (start 154.94 88.9) (end 153.67 90.17) (width 1) (layer F.Cu) (net 2) (status 80000))
  4131. (segment (start 153.67 90.17) (end 153.67 91.44) (width 1) (layer F.Cu) (net 2) (status 80000))
  4132. (segment (start 158.71 53.34) (end 158.75 53.34) (width 1) (layer B.Cu) (net 2) (status 80000))
  4133. (segment (start 158.75 53.34) (end 158.75 55.88) (width 1) (layer B.Cu) (net 2) (status 80000))
  4134. (segment (start 158.75 55.88) (end 153.67 55.88) (width 1) (layer B.Cu) (net 2) (status 80000))
  4135. (segment (start 153.67 55.88) (end 153.67 54.61) (width 1) (layer B.Cu) (net 2) (status 80000))
  4136. (segment (start 153.67 54.61) (end 152.4 53.34) (width 1) (layer B.Cu) (net 2) (status 80000))
  4137. (segment (start 152.4 53.34) (end 152.36 53.34) (width 1) (layer B.Cu) (net 2) (tstamp 59F3163C) (status 80000))
  4138. (segment (start 165.06 53.34) (end 165.1 53.34) (width 1) (layer B.Cu) (net 2) (status 80000))
  4139. (segment (start 165.1 53.34) (end 165.1 50.8) (width 1) (layer B.Cu) (net 2) (status 80000))
  4140. (segment (start 165.1 50.8) (end 160.02 50.8) (width 1) (layer B.Cu) (net 2) (status 80000))
  4141. (segment (start 160.02 50.8) (end 160.02 52.07) (width 1) (layer B.Cu) (net 2) (status 80000))
  4142. (segment (start 160.02 52.07) (end 158.75 53.34) (width 1) (layer B.Cu) (net 2) (status 80000))
  4143. (segment (start 158.75 53.34) (end 158.71 53.34) (width 1) (layer B.Cu) (net 2) (tstamp 59F3163B) (status 80000))
  4144. (segment (start 83.82 91.44) (end 85.09 92.71) (width 1) (layer B.Cu) (net 2) (status 80000))
  4145. (segment (start 85.09 92.71) (end 85.09 93.98) (width 1) (layer B.Cu) (net 2) (status 80000))
  4146. (segment (start 85.09 93.98) (end 90.17 93.98) (width 1) (layer B.Cu) (net 2) (status 80000))
  4147. (segment (start 90.17 93.98) (end 90.17 91.44) (width 1) (layer B.Cu) (net 2) (status 80000))
  4148. (segment (start 96.52 60.96) (end 96.52 58.42) (width 1) (layer B.Cu) (net 2) (status 80000))
  4149. (segment (start 96.52 58.42) (end 91.44 58.42) (width 1) (layer B.Cu) (net 2) (status 80000))
  4150. (segment (start 91.44 58.42) (end 91.44 59.69) (width 1) (layer B.Cu) (net 2) (status 80000))
  4151. (segment (start 91.44 59.69) (end 90.17 60.96) (width 1) (layer B.Cu) (net 2) (status 80000))
  4152. (segment (start 96.52 53.34) (end 96.52 50.8) (width 1) (layer F.Cu) (net 2) (status 80000))
  4153. (segment (start 96.52 50.8) (end 91.44 50.8) (width 1) (layer F.Cu) (net 2) (status 80000))
  4154. (segment (start 91.44 50.8) (end 90.17 52.07) (width 1) (layer F.Cu) (net 2) (status 80000))
  4155. (segment (start 90.17 52.07) (end 90.17 53.34) (width 1) (layer F.Cu) (net 2) (status 80000))
  4156. (segment (start 90.17 53.34) (end 90.13 53.34) (width 1) (layer F.Cu) (net 2) (tstamp 59F3163A) (status 80000))
  4157. (segment (start 90.13 53.34) (end 90.17 53.34) (width 1) (layer B.Cu) (net 2) (status 80000))
  4158. (segment (start 90.17 53.34) (end 90.17 50.8) (width 1) (layer B.Cu) (net 2) (status 80000))
  4159. (segment (start 90.17 50.8) (end 85.09 50.8) (width 1) (layer B.Cu) (net 2) (status 80000))
  4160. (segment (start 85.09 50.8) (end 85.09 52.07) (width 1) (layer B.Cu) (net 2) (status 80000))
  4161. (segment (start 85.09 52.07) (end 83.82 53.34) (width 1) (layer B.Cu) (net 2) (status 80000))
  4162. (segment (start 151.17 99.06) (end 146.05 99.06) (width 1) (layer B.Cu) (net 2) (status 80000))
  4163. (segment (start 146.05 60.96) (end 149.86 60.96) (width 1) (layer B.Cu) (net 2) (status 80000))
  4164. (segment (start 81.32 99.06) (end 77.47 99.06) (width 1) (layer B.Cu) (net 2) (status 80000))
  4165. (segment (start 77.47 60.96) (end 69.85 60.96) (width 1) (layer B.Cu) (net 2) (status 80000))
  4166. (segment (start 81.32 60.96) (end 77.47 60.96) (width 1) (layer B.Cu) (net 2) (status 80000))
  4167. (segment (start 69.85 60.96) (end 68.58 60.96) (width 1) (layer B.Cu) (net 2) (status 80000))
  4168. (segment (start 68.58 60.96) (end 68.58 59.69) (width 1) (layer B.Cu) (net 2) (status 80000))
  4169. (segment (start 68.58 59.69) (end 66.675 59.69) (width 1) (layer B.Cu) (net 2) (status 80000))
  4170. (segment (start 87.67 60.96) (end 87.63 60.96) (width 1) (layer F.Cu) (net 3) (status 80000))
  4171. (segment (start 87.63 60.96) (end 87.63 67.31) (width 1) (layer F.Cu) (net 3) (status 80000))
  4172. (segment (start 83.82 60.96) (end 87.67 60.96) (width 1) (layer B.Cu) (net 3) (status 80000))
  4173. (segment (start 77.47 58.42) (end 83.82 58.42) (width 1) (layer B.Cu) (net 3) (status 80000))
  4174. (segment (start 83.82 58.42) (end 83.82 60.96) (width 1) (layer B.Cu) (net 3) (status 80000))
  4175. (segment (start 77.47 55.88) (end 97.79 55.88) (width 1) (layer B.Cu) (net 3) (status 80000))
  4176. (segment (start 97.79 55.88) (end 99.06 54.61) (width 1) (layer B.Cu) (net 3) (status 80000))
  4177. (segment (start 99.06 54.61) (end 99.06 52.07) (width 1) (layer B.Cu) (net 3) (status 80000))
  4178. (segment (start 99.06 52.07) (end 95.25 48.26) (width 1) (layer B.Cu) (net 3) (status 80000))
  4179. (segment (start 95.25 48.26) (end 83.82 48.26) (width 1) (layer B.Cu) (net 3) (status 80000))
  4180. (segment (start 83.82 48.26) (end 82.55 46.99) (width 1) (layer B.Cu) (net 3) (status 80000))
  4181. (segment (start 82.55 46.99) (end 78.74 46.99) (width 1) (layer B.Cu) (net 3) (status 80000))
  4182. (segment (start 78.74 46.99) (end 77.47 45.72) (width 1) (layer B.Cu) (net 3) (status 80000))
  4183. (segment (start 77.47 45.72) (end 77.47 44.45) (width 1) (layer B.Cu) (net 3) (status 80000))
  4184. (segment (start 77.47 44.45) (end 77.51 44.45) (width 1) (layer B.Cu) (net 3) (tstamp 59F30DD5) (status 80000))
  4185. (segment (start 77.47 58.42) (end 77.47 55.88) (width 1) (layer F.Cu) (net 3) (status 80000))
  4186. (segment (start 78.175 82.55) (end 80.05 82.55) (width 1) (layer F.Cu) (net 4))
  4187. (segment (start 75.819998 92.329998) (end 75.819998 84.905002) (width 1) (layer F.Cu) (net 4))
  4188. (segment (start 77.47 93.98) (end 75.819998 92.329998) (width 1) (layer F.Cu) (net 4))
  4189. (segment (start 75.819998 84.905002) (end 78.175 82.55) (width 1) (layer F.Cu) (net 4))
  4190. (segment (start 83.82 99.06) (end 83.82 96.52) (width 1) (layer B.Cu) (net 4) (status 80000))
  4191. (segment (start 83.82 96.52) (end 77.47 96.52) (width 1) (layer B.Cu) (net 4) (status 80000))
  4192. (segment (start 86.36 105.41) (end 87.63 104.14) (width 1) (layer F.Cu) (net 4) (status 80000))
  4193. (segment (start 87.63 104.14) (end 87.63 99.06) (width 1) (layer F.Cu) (net 4) (status 80000))
  4194. (segment (start 87.63 99.06) (end 87.67 99.06) (width 1) (layer F.Cu) (net 4) (tstamp 59F3164A) (status 80000))
  4195. (segment (start 87.67 99.06) (end 83.82 99.06) (width 1) (layer B.Cu) (net 4) (status 80000))
  4196. (segment (start 77.47 96.52) (end 77.47 93.98) (width 1) (layer F.Cu) (net 4) (status 80000))
  4197. (segment (start 156.427012 49.66001) (end 156.21 49.442998) (width 1) (layer F.Cu) (net 5))
  4198. (segment (start 160.68001 49.66001) (end 156.427012 49.66001) (width 1) (layer F.Cu) (net 5))
  4199. (segment (start 162.56 51.54) (end 160.68001 49.66001) (width 1) (layer F.Cu) (net 5))
  4200. (segment (start 162.56 53.34) (end 162.56 51.54) (width 1) (layer F.Cu) (net 5))
  4201. (segment (start 134.62 50.8) (end 142.745001 42.674999) (width 1) (layer F.Cu) (net 5))
  4202. (segment (start 142.745001 42.674999) (end 149.442001 42.674999) (width 1) (layer F.Cu) (net 5))
  4203. (segment (start 149.442001 42.674999) (end 156.21 49.442998) (width 1) (layer F.Cu) (net 5))
  4204. (segment (start 156.21 49.442998) (end 156.21 51.54) (width 1) (layer F.Cu) (net 5))
  4205. (segment (start 156.21 51.54) (end 156.21 53.34) (width 1) (layer F.Cu) (net 5))
  4206. (segment (start 156.21 53.34) (end 153.67 55.88) (width 1) (layer F.Cu) (net 5) (status 80000))
  4207. (segment (start 153.67 55.88) (end 151.13 55.88) (width 1) (layer F.Cu) (net 5) (status 80000))
  4208. (segment (start 151.13 55.88) (end 149.86 54.61) (width 1) (layer F.Cu) (net 5) (status 80000))
  4209. (segment (start 149.86 54.61) (end 149.86 53.34) (width 1) (layer F.Cu) (net 5) (status 80000))
  4210. (segment (start 156.21 52.07) (end 156.21 53.34) (width 1) (layer F.Cu) (net 5) (status 80000))
  4211. (segment (start 146.05 58.42) (end 152.4 58.42) (width 1) (layer B.Cu) (net 6) (status 80000))
  4212. (segment (start 152.4 58.42) (end 152.4 60.96) (width 1) (layer B.Cu) (net 6) (status 80000))
  4213. (segment (start 152.4 60.96) (end 152.36 60.96) (width 1) (layer B.Cu) (net 6) (tstamp 59F31651) (status 80000))
  4214. (segment (start 146.05 55.88) (end 143.51 55.88) (width 1) (layer F.Cu) (net 6) (status 80000))
  4215. (segment (start 143.51 55.88) (end 143.51 52.07) (width 1) (layer F.Cu) (net 6) (status 80000))
  4216. (segment (start 143.51 52.07) (end 146.05 49.53) (width 1) (layer F.Cu) (net 6) (status 80000))
  4217. (segment (start 146.05 49.53) (end 146.05 44.45) (width 1) (layer F.Cu) (net 6) (status 80000))
  4218. (segment (start 146.05 44.45) (end 146.09 44.45) (width 1) (layer F.Cu) (net 6) (tstamp 59F3164D) (status 80000))
  4219. (segment (start 152.36 60.96) (end 152.4 60.96) (width 1) (layer F.Cu) (net 6) (status 80000))
  4220. (segment (start 152.4 60.96) (end 152.4 63.5) (width 1) (layer F.Cu) (net 6) (status 80000))
  4221. (segment (start 152.4 63.5) (end 151.13 64.77) (width 1) (layer F.Cu) (net 6) (status 80000))
  4222. (segment (start 151.13 64.77) (end 151.13 67.31) (width 1) (layer F.Cu) (net 6) (status 80000))
  4223. (segment (start 152.36 60.96) (end 156.21 60.96) (width 1) (layer B.Cu) (net 6) (status 80000))
  4224. (segment (start 146.05 58.42) (end 146.05 55.88) (width 1) (layer F.Cu) (net 6) (status 80000))
  4225. (segment (start 151.17 91.44) (end 151.13 91.44) (width 1) (layer B.Cu) (net 7) (status 80000))
  4226. (segment (start 151.13 91.44) (end 144.78 85.09) (width 1) (layer B.Cu) (net 7) (status 80000))
  4227. (segment (start 144.78 85.09) (end 137.16 85.09) (width 1) (layer B.Cu) (net 7) (status 80000))
  4228. (segment (start 137.16 85.09) (end 137.16 86.36) (width 1) (layer B.Cu) (net 7) (status 80000))
  4229. (segment (start 137.16 86.36) (end 135.89 87.63) (width 1) (layer B.Cu) (net 7) (status 80000))
  4230. (segment (start 135.89 87.63) (end 134.62 87.63) (width 1) (layer B.Cu) (net 7) (status 80000))
  4231. (segment (start 157.52 91.44) (end 157.48 91.44) (width 1) (layer B.Cu) (net 7) (status 80000))
  4232. (segment (start 157.48 91.44) (end 154.94 93.98) (width 1) (layer B.Cu) (net 7) (status 80000))
  4233. (segment (start 154.94 93.98) (end 152.4 93.98) (width 1) (layer B.Cu) (net 7) (status 80000))
  4234. (segment (start 152.4 93.98) (end 151.13 92.71) (width 1) (layer B.Cu) (net 7) (status 80000))
  4235. (segment (start 151.13 92.71) (end 151.13 91.44) (width 1) (layer B.Cu) (net 7) (status 80000))
  4236. (segment (start 151.13 91.44) (end 151.17 91.44) (width 1) (layer B.Cu) (net 7) (tstamp 59F3163E) (status 80000))
  4237. (segment (start 163.83 91.44) (end 161.29 88.9) (width 1) (layer B.Cu) (net 7) (status 80000))
  4238. (segment (start 161.29 88.9) (end 158.75 88.9) (width 1) (layer B.Cu) (net 7) (status 80000))
  4239. (segment (start 158.75 88.9) (end 157.48 90.17) (width 1) (layer B.Cu) (net 7) (status 80000))
  4240. (segment (start 157.48 90.17) (end 157.48 91.44) (width 1) (layer B.Cu) (net 7) (status 80000))
  4241. (segment (start 157.48 91.44) (end 157.52 91.44) (width 1) (layer B.Cu) (net 7) (tstamp 59F3163D) (status 80000))
  4242. (segment (start 153.67 99.06) (end 153.67 96.52) (width 1) (layer B.Cu) (net 8) (status 80000))
  4243. (segment (start 153.67 96.52) (end 146.05 96.52) (width 1) (layer B.Cu) (net 8) (status 80000))
  4244. (segment (start 153.67 99.06) (end 153.67 101.6) (width 1) (layer F.Cu) (net 8) (status 80000))
  4245. (segment (start 153.67 101.6) (end 151.13 104.14) (width 1) (layer F.Cu) (net 8) (status 80000))
  4246. (segment (start 151.13 104.14) (end 151.13 105.41) (width 1) (layer F.Cu) (net 8) (status 80000))
  4247. (segment (start 146.05 93.98) (end 143.51 93.98) (width 1) (layer F.Cu) (net 8) (status 80000))
  4248. (segment (start 143.51 93.98) (end 143.51 90.17) (width 1) (layer F.Cu) (net 8) (status 80000))
  4249. (segment (start 143.51 90.17) (end 146.05 87.63) (width 1) (layer F.Cu) (net 8) (status 80000))
  4250. (segment (start 146.05 87.63) (end 146.05 82.55) (width 1) (layer F.Cu) (net 8) (status 80000))
  4251. (segment (start 146.05 82.55) (end 146.09 82.55) (width 1) (layer F.Cu) (net 8) (tstamp 59F3164C) (status 80000))
  4252. (segment (start 157.52 99.06) (end 153.67 99.06) (width 1) (layer B.Cu) (net 8) (status 80000))
  4253. (segment (start 146.05 96.52) (end 146.05 93.98) (width 1) (layer F.Cu) (net 8) (status 80000))
  4254. (segment (start 66.675 62.23) (end 67.31 62.23) (width 1) (layer B.Cu) (net 9) (status 80000))
  4255. (segment (start 67.31 62.23) (end 67.31 63.5) (width 1) (layer B.Cu) (net 9) (status 80000))
  4256. (segment (start 67.31 63.5) (end 68.58 64.77) (width 1) (layer B.Cu) (net 9) (status 80000))
  4257. (segment (start 68.58 64.77) (end 76.2 64.77) (width 1) (layer B.Cu) (net 9) (status 80000))
  4258. (segment (start 76.2 64.77) (end 78.74 67.31) (width 1) (layer B.Cu) (net 9) (status 80000))
  4259. (segment (start 78.74 67.31) (end 82.55 67.31) (width 1) (layer B.Cu) (net 9) (status 80000))
  4260. (segment (start 69.85 55.88) (end 71.12 55.88) (width 1) (layer F.Cu) (net 9) (status 80000))
  4261. (segment (start 71.12 55.88) (end 72.39 57.15) (width 1) (layer F.Cu) (net 9) (status 80000))
  4262. (segment (start 72.39 57.15) (end 72.39 62.23) (width 1) (layer F.Cu) (net 9) (status 80000))
  4263. (segment (start 72.39 62.23) (end 71.12 63.5) (width 1) (layer F.Cu) (net 9) (status 80000))
  4264. (segment (start 71.12 63.5) (end 68.58 63.5) (width 1) (layer F.Cu) (net 9) (status 80000))
  4265. (segment (start 68.58 63.5) (end 67.31 62.23) (width 1) (layer F.Cu) (net 9) (status 80000))
  4266. (segment (start 67.31 62.23) (end 66.675 62.23) (width 1) (layer F.Cu) (net 9) (tstamp 59F30571) (status 80000))
  4267. (segment (start 81.28 105.41) (end 77.47 105.41) (width 1) (layer F.Cu) (net 10))
  4268. (segment (start 77.47 105.41) (end 72.39 100.33) (width 1) (layer F.Cu) (net 10))
  4269. (segment (start 66.675 98.425) (end 67.31 99.06) (width 1) (layer F.Cu) (net 10) (status 80000))
  4270. (segment (start 67.31 99.06) (end 67.31 100.33) (width 1) (layer F.Cu) (net 10) (status 80000))
  4271. (segment (start 67.31 100.33) (end 68.58 101.6) (width 1) (layer F.Cu) (net 10) (status 80000))
  4272. (segment (start 68.58 101.6) (end 71.12 101.6) (width 1) (layer F.Cu) (net 10) (status 80000))
  4273. (segment (start 71.12 101.6) (end 72.39 100.33) (width 1) (layer F.Cu) (net 10) (status 80000))
  4274. (segment (start 72.39 100.33) (end 72.39 95.25) (width 1) (layer F.Cu) (net 10) (status 80000))
  4275. (segment (start 72.39 95.25) (end 71.12 93.98) (width 1) (layer F.Cu) (net 10) (status 80000))
  4276. (segment (start 71.12 93.98) (end 69.85 93.98) (width 1) (layer F.Cu) (net 10) (status 80000))
  4277. (segment (start 139.7 67.31) (end 135.89 63.5) (width 1) (layer B.Cu) (net 11) (status 80000))
  4278. (segment (start 135.89 63.5) (end 135.89 62.23) (width 1) (layer B.Cu) (net 11) (status 80000))
  4279. (segment (start 135.89 62.23) (end 135.255 61.595) (width 1) (layer B.Cu) (net 11) (tstamp 59F31654) (status 80000))
  4280. (segment (start 135.255 61.595) (end 135.89 62.23) (width 1) (layer F.Cu) (net 11) (status 80000))
  4281. (segment (start 135.89 62.23) (end 135.89 63.5) (width 1) (layer F.Cu) (net 11) (status 80000))
  4282. (segment (start 135.89 63.5) (end 140.97 63.5) (width 1) (layer F.Cu) (net 11) (status 80000))
  4283. (segment (start 140.97 63.5) (end 140.97 57.15) (width 1) (layer F.Cu) (net 11) (status 80000))
  4284. (segment (start 140.97 57.15) (end 139.7 55.88) (width 1) (layer F.Cu) (net 11) (status 80000))
  4285. (segment (start 139.7 55.88) (end 138.43 55.88) (width 1) (layer F.Cu) (net 11) (status 80000))
  4286. (segment (start 135.255 99.06) (end 135.89 99.06) (width 1) (layer F.Cu) (net 12) (status 80000))
  4287. (segment (start 135.89 99.06) (end 134.62 100.33) (width 1) (layer F.Cu) (net 12) (status 80000))
  4288. (segment (start 134.62 100.33) (end 133.35 100.33) (width 1) (layer F.Cu) (net 12) (status 80000))
  4289. (segment (start 133.35 100.33) (end 133.35 107.95) (width 1) (layer F.Cu) (net 12) (status 80000))
  4290. (segment (start 133.35 107.95) (end 144.78 107.95) (width 1) (layer F.Cu) (net 12) (status 80000))
  4291. (segment (start 144.78 107.95) (end 147.32 105.41) (width 1) (layer F.Cu) (net 12) (status 80000))
  4292. (segment (start 138.43 93.98) (end 139.7 93.98) (width 1) (layer F.Cu) (net 12) (status 80000))
  4293. (segment (start 139.7 93.98) (end 140.97 95.25) (width 1) (layer F.Cu) (net 12) (status 80000))
  4294. (segment (start 140.97 95.25) (end 140.97 100.33) (width 1) (layer F.Cu) (net 12) (status 80000))
  4295. (segment (start 140.97 100.33) (end 139.7 101.6) (width 1) (layer F.Cu) (net 12) (status 80000))
  4296. (segment (start 139.7 101.6) (end 137.16 101.6) (width 1) (layer F.Cu) (net 12) (status 80000))
  4297. (segment (start 137.16 101.6) (end 135.89 100.33) (width 1) (layer F.Cu) (net 12) (status 80000))
  4298. (segment (start 135.89 100.33) (end 135.89 99.06) (width 1) (layer F.Cu) (net 12) (status 80000))
  4299. (segment (start 135.89 99.06) (end 135.255 99.06) (width 1) (layer F.Cu) (net 12) (tstamp 59F31650) (status 80000))
  4300. (segment (start 60.96 66.370067) (end 60.96 50.8) (width 1) (layer F.Cu) (net 13))
  4301. (segment (start 60.432949 50.272949) (end 59.69 49.53) (width 1) (layer F.Cu) (net 13))
  4302. (segment (start 61.071127 84.978873) (end 61.071127 66.481194) (width 1) (layer F.Cu) (net 13))
  4303. (segment (start 58.42 87.63) (end 61.071127 84.978873) (width 1) (layer F.Cu) (net 13))
  4304. (segment (start 61.071127 66.481194) (end 60.96 66.370067) (width 1) (layer F.Cu) (net 13))
  4305. (segment (start 60.96 50.8) (end 60.432949 50.272949) (width 1) (layer F.Cu) (net 13))
  4306. (segment (start 158.719384 76.169384) (end 122.958464 76.169384) (width 1) (layer B.Cu) (net 13))
  4307. (segment (start 123.710001 69.329999) (end 124.46 68.58) (width 1) (layer B.Cu) (net 13))
  4308. (segment (start 122.958464 76.169384) (end 121.290023 74.500943) (width 1) (layer B.Cu) (net 13))
  4309. (segment (start 121.290023 74.500943) (end 121.290023 71.749977) (width 1) (layer B.Cu) (net 13))
  4310. (segment (start 165.1 82.55) (end 158.719384 76.169384) (width 1) (layer B.Cu) (net 13))
  4311. (segment (start 121.290023 71.749977) (end 123.710001 69.329999) (width 1) (layer B.Cu) (net 13))
  4312. (segment (start 161.810001 107.429999) (end 162.56 106.68) (width 1) (layer B.Cu) (net 13))
  4313. (segment (start 124.534988 106.194902) (end 126.850098 108.510012) (width 1) (layer B.Cu) (net 13))
  4314. (segment (start 160.729988 108.510012) (end 161.810001 107.429999) (width 1) (layer B.Cu) (net 13))
  4315. (segment (start 124.534988 90.095012) (end 124.534988 106.194902) (width 1) (layer B.Cu) (net 13))
  4316. (segment (start 127 87.63) (end 124.534988 90.095012) (width 1) (layer B.Cu) (net 13))
  4317. (segment (start 126.850098 108.510012) (end 160.729988 108.510012) (width 1) (layer B.Cu) (net 13))
  4318. (via (at 162.56 106.68) (size 1.5) (layers F.Cu B.Cu) (net 13) (status 80000))
  4319. (segment (start 162.56 106.68) (end 168.91 100.33) (width 1) (layer F.Cu) (net 13) (status 80000))
  4320. (segment (start 168.91 100.33) (end 168.91 90.17) (width 1) (layer F.Cu) (net 13) (status 80000))
  4321. (segment (start 168.91 90.17) (end 165.1 86.36) (width 1) (layer F.Cu) (net 13) (status 80000))
  4322. (segment (start 165.1 86.36) (end 165.1 82.55) (width 1) (layer F.Cu) (net 13) (status 80000))
  4323. (via (at 165.1 82.55) (size 1.5) (layers F.Cu B.Cu) (net 13) (status 80000))
  4324. (via (at 124.46 68.58) (size 1.5) (layers F.Cu B.Cu) (net 13) (status 80000))
  4325. (segment (start 124.46 68.58) (end 125.73 67.31) (width 1) (layer F.Cu) (net 13) (status 80000))
  4326. (segment (start 125.73 67.31) (end 125.73 54.61) (width 1) (layer F.Cu) (net 13) (status 80000))
  4327. (segment (start 125.73 54.61) (end 127 53.34) (width 1) (layer F.Cu) (net 13) (status 80000))
  4328. (segment (start 127 53.34) (end 127 50.8) (width 1) (layer F.Cu) (net 13) (status 80000))
  4329. (segment (start 63.5 82.55) (end 59.162949 86.887051) (width 1) (layer B.Cu) (net 13))
  4330. (segment (start 63.930001 78.309999) (end 63.5 78.74) (width 1) (layer B.Cu) (net 13))
  4331. (segment (start 107.110001 78.309999) (end 63.930001 78.309999) (width 1) (layer B.Cu) (net 13))
  4332. (segment (start 63.5 78.74) (end 63.5 82.55) (width 1) (layer B.Cu) (net 13))
  4333. (segment (start 59.162949 86.887051) (end 58.42 87.63) (width 1) (layer B.Cu) (net 13))
  4334. (segment (start 107.95 77.47) (end 107.110001 78.309999) (width 1) (layer B.Cu) (net 13))
  4335. (segment (start 107.95 77.47) (end 107.95 78.74) (width 1) (layer B.Cu) (net 13) (status 80000))
  4336. (segment (start 107.95 78.74) (end 116.84 87.63) (width 1) (layer B.Cu) (net 13) (status 80000))
  4337. (segment (start 116.84 87.63) (end 127 87.63) (width 1) (layer B.Cu) (net 13) (status 80000))
  4338. (segment (start 59.671116 67.786944) (end 59.671116 77.015934) (width 1) (layer F.Cu) (net 14))
  4339. (segment (start 57.15 42.70705) (end 57.15 65.265828) (width 1) (layer F.Cu) (net 14))
  4340. (segment (start 57.94705 41.91) (end 57.15 42.70705) (width 1) (layer F.Cu) (net 14))
  4341. (segment (start 57.15 65.265828) (end 59.671116 67.786944) (width 1) (layer F.Cu) (net 14))
  4342. (segment (start 58.42 78.26705) (end 58.42 80.01) (width 1) (layer F.Cu) (net 14))
  4343. (segment (start 59.69 41.91) (end 57.94705 41.91) (width 1) (layer F.Cu) (net 14))
  4344. (segment (start 59.671116 77.015934) (end 58.42 78.26705) (width 1) (layer F.Cu) (net 14))
  4345. (segment (start 125.25705 80.01) (end 127 80.01) (width 1) (layer B.Cu) (net 14))
  4346. (segment (start 118.490001 75.660749) (end 122.335296 79.506044) (width 1) (layer B.Cu) (net 14))
  4347. (segment (start 122.335296 79.506044) (end 124.753094 79.506044) (width 1) (layer B.Cu) (net 14))
  4348. (segment (start 117.632001 73.279999) (end 118.490001 74.137999) (width 1) (layer B.Cu) (net 14))
  4349. (segment (start 110.870001 73.279999) (end 117.632001 73.279999) (width 1) (layer B.Cu) (net 14))
  4350. (segment (start 109.22 74.93) (end 110.870001 73.279999) (width 1) (layer B.Cu) (net 14))
  4351. (segment (start 118.490001 74.137999) (end 118.490001 75.660749) (width 1) (layer B.Cu) (net 14))
  4352. (segment (start 124.753094 79.506044) (end 125.25705 80.01) (width 1) (layer B.Cu) (net 14))
  4353. (segment (start 115.57 58.42) (end 124.46 49.53) (width 1) (layer F.Cu) (net 14) (status 80000))
  4354. (segment (start 124.46 49.53) (end 124.46 44.45) (width 1) (layer F.Cu) (net 14) (status 80000))
  4355. (segment (start 124.46 44.45) (end 125.73 43.18) (width 1) (layer F.Cu) (net 14) (status 80000))
  4356. (segment (start 125.73 43.18) (end 127 43.18) (width 1) (layer F.Cu) (net 14) (status 80000))
  4357. (segment (start 105.409926 76.909988) (end 107.389914 74.93) (width 1) (layer B.Cu) (net 14))
  4358. (segment (start 63.262962 76.909988) (end 105.409926 76.909988) (width 1) (layer B.Cu) (net 14))
  4359. (segment (start 108.15934 74.93) (end 109.22 74.93) (width 1) (layer B.Cu) (net 14))
  4360. (segment (start 58.42 80.01) (end 60.16295 80.01) (width 1) (layer B.Cu) (net 14))
  4361. (segment (start 107.389914 74.93) (end 108.15934 74.93) (width 1) (layer B.Cu) (net 14))
  4362. (segment (start 60.16295 80.01) (end 63.262962 76.909988) (width 1) (layer B.Cu) (net 14))
  4363. (segment (start 109.22 74.93) (end 106.68 72.39) (width 1) (layer F.Cu) (net 14) (status 80000))
  4364. (segment (start 106.68 72.39) (end 106.68 64.77) (width 1) (layer F.Cu) (net 14) (status 80000))
  4365. (segment (start 106.68 64.77) (end 107.95 63.5) (width 1) (layer F.Cu) (net 14) (status 80000))
  4366. (segment (start 107.95 63.5) (end 110.49 63.5) (width 1) (layer F.Cu) (net 14) (status 80000))
  4367. (segment (start 110.49 63.5) (end 115.57 58.42) (width 1) (layer F.Cu) (net 14) (status 80000))
  4368. (segment (start 107.95 58.42) (end 107.95 64.77) (width 1) (layer B.Cu) (net 15) (status 80000))
  4369. (segment (start 107.95 64.77) (end 109.22 66.04) (width 1) (layer B.Cu) (net 15) (status 80000))
  4370. (segment (start 109.22 66.04) (end 109.26 66.04) (width 1) (layer B.Cu) (net 15) (tstamp 59F3164B) (status 80000))
  4371. (segment (start 107.95 53.34) (end 107.95 58.42) (width 1) (layer F.Cu) (net 15) (status 80000))
  4372. (segment (start 57.125946 71.700046) (end 57.875945 70.950047) (width 1) (layer F.Cu) (net 16))
  4373. (segment (start 55.117725 93.079095) (end 55.117725 73.708267) (width 1) (layer F.Cu) (net 16))
  4374. (segment (start 59.055 95.885) (end 57.92363 95.885) (width 1) (layer F.Cu) (net 16))
  4375. (segment (start 57.125946 61.619054) (end 57.125946 70.200048) (width 1) (layer B.Cu) (net 16))
  4376. (segment (start 59.055 59.69) (end 57.125946 61.619054) (width 1) (layer B.Cu) (net 16))
  4377. (via (at 57.875945 70.950047) (size 1.5) (drill 1) (layers F.Cu B.Cu) (net 16))
  4378. (segment (start 57.92363 95.885) (end 55.117725 93.079095) (width 1) (layer F.Cu) (net 16))
  4379. (segment (start 55.117725 73.708267) (end 57.125946 71.700046) (width 1) (layer F.Cu) (net 16))
  4380. (segment (start 57.125946 70.200048) (end 57.875945 70.950047) (width 1) (layer B.Cu) (net 16))
  4381. (segment (start 123.47803 81.301906) (end 121.945124 82.834812) (width 1) (layer F.Cu) (net 16))
  4382. (segment (start 121.945124 82.834812) (end 121.945124 100.304876) (width 1) (layer F.Cu) (net 16))
  4383. (segment (start 121.945124 100.304876) (end 121.92 100.33) (width 1) (layer F.Cu) (net 16))
  4384. (segment (start 122.41737 81.301906) (end 123.47803 81.301906) (width 1) (layer B.Cu) (net 16))
  4385. (segment (start 116.84 75.99066) (end 122.151246 81.301906) (width 1) (layer B.Cu) (net 16))
  4386. (segment (start 123.47803 80.241246) (end 123.47803 81.301906) (width 1) (layer F.Cu) (net 16))
  4387. (segment (start 123.47803 79.150458) (end 123.47803 80.241246) (width 1) (layer F.Cu) (net 16))
  4388. (segment (start 122.151246 81.301906) (end 122.41737 81.301906) (width 1) (layer B.Cu) (net 16))
  4389. (via (at 123.47803 81.301906) (size 1.5) (drill 1) (layers F.Cu B.Cu) (net 16))
  4390. (segment (start 116.84 74.93) (end 116.84 75.99066) (width 1) (layer B.Cu) (net 16))
  4391. (segment (start 131.427438 71.20105) (end 123.47803 79.150458) (width 1) (layer F.Cu) (net 16))
  4392. (segment (start 131.427438 62.847438) (end 131.427438 70.14039) (width 1) (layer B.Cu) (net 16))
  4393. (segment (start 127.635 59.055) (end 131.427438 62.847438) (width 1) (layer B.Cu) (net 16))
  4394. (via (at 131.427438 71.20105) (size 1.5) (drill 1) (layers F.Cu B.Cu) (net 16))
  4395. (segment (start 131.427438 70.14039) (end 131.427438 71.20105) (width 1) (layer B.Cu) (net 16))
  4396. (segment (start 127.635 96.52) (end 125.73 96.52) (width 1) (layer F.Cu) (net 16))
  4397. (segment (start 125.73 96.52) (end 121.92 100.33) (width 1) (layer F.Cu) (net 16))
  4398. (segment (start 121.92 100.33) (end 102.903619 100.33) (width 1) (layer F.Cu) (net 16))
  4399. (segment (start 102.903619 100.33) (end 94.53738 108.696239) (width 1) (layer F.Cu) (net 16))
  4400. (segment (start 94.53738 108.696239) (end 61.706239 108.696239) (width 1) (layer F.Cu) (net 16))
  4401. (segment (start 59.69 106.68) (end 59.69 101.6) (width 1) (layer F.Cu) (net 16))
  4402. (segment (start 59.69 101.6) (end 60.96 100.33) (width 1) (layer F.Cu) (net 16))
  4403. (segment (start 61.706239 108.696239) (end 59.69 106.68) (width 1) (layer F.Cu) (net 16))
  4404. (segment (start 59.69 96.52) (end 59.055 95.885) (width 1) (layer F.Cu) (net 16))
  4405. (segment (start 60.96 100.33) (end 60.96 96.52) (width 1) (layer F.Cu) (net 16))
  4406. (segment (start 60.96 96.52) (end 59.69 96.52) (width 1) (layer F.Cu) (net 16))
  4407. (segment (start 59.055 57.15) (end 60.96 57.15) (width 1) (layer B.Cu) (net 17) (status 80000))
  4408. (segment (start 60.96 57.15) (end 60.96 64.77) (width 1) (layer B.Cu) (net 17) (status 80000))
  4409. (segment (start 60.96 64.77) (end 63.5 67.31) (width 1) (layer B.Cu) (net 17) (status 80000))
  4410. (segment (start 69.85 105.41) (end 68.58 104.14) (width 1) (layer B.Cu) (net 18))
  4411. (segment (start 68.58 104.14) (end 64.77 104.14) (width 1) (layer B.Cu) (net 18))
  4412. (segment (start 64.77 104.14) (end 63.5 102.87) (width 1) (layer B.Cu) (net 18))
  4413. (segment (start 63.5 102.87) (end 62.23 102.87) (width 1) (layer B.Cu) (net 18))
  4414. (segment (start 62.23 102.87) (end 62.23 95.240713) (width 1) (layer B.Cu) (net 18))
  4415. (segment (start 62.23 95.240713) (end 60.969287 93.98) (width 1) (layer B.Cu) (net 18))
  4416. (segment (start 60.969287 93.98) (end 59.69 93.98) (width 1) (layer B.Cu) (net 18))
  4417. (segment (start 59.69 93.98) (end 59.055 93.345) (width 1) (layer B.Cu) (net 18))
  4418. (segment (start 128.27 67.31) (end 129.54 66.04) (width 1) (layer F.Cu) (net 19) (status 80000))
  4419. (segment (start 129.54 66.04) (end 129.54 57.15) (width 1) (layer F.Cu) (net 19) (status 80000))
  4420. (segment (start 129.54 57.15) (end 128.27 57.15) (width 1) (layer F.Cu) (net 19) (status 80000))
  4421. (segment (start 128.27 57.15) (end 127.635 56.515) (width 1) (layer F.Cu) (net 19) (tstamp 59F31649) (status 80000))
  4422. (segment (start 125.934999 105.591001) (end 125.934999 95.680001) (width 1) (layer B.Cu) (net 20))
  4423. (segment (start 134.189999 107.110001) (end 127.453999 107.110001) (width 1) (layer B.Cu) (net 20))
  4424. (segment (start 135.89 105.41) (end 134.189999 107.110001) (width 1) (layer B.Cu) (net 20))
  4425. (segment (start 127.453999 107.110001) (end 125.934999 105.591001) (width 1) (layer B.Cu) (net 20))
  4426. (segment (start 125.934999 95.680001) (end 127.635 93.98) (width 1) (layer B.Cu) (net 20))
  4427. (segment (start 77.47 86.36) (end 76.720001 85.610001) (width 1) (layer B.Cu) (net 21))
  4428. (segment (start 76.720001 85.610001) (end 68.059999 85.610001) (width 1) (layer B.Cu) (net 21))
  4429. (segment (start 68.059999 85.610001) (end 66.782949 86.887051) (width 1) (layer B.Cu) (net 21))
  4430. (segment (start 66.782949 86.887051) (end 66.04 87.63) (width 1) (layer B.Cu) (net 21))
  4431. (segment (start 81.32 91.44) (end 81.32 90.21) (width 1) (layer F.Cu) (net 21))
  4432. (segment (start 81.32 90.21) (end 77.47 86.36) (width 1) (layer F.Cu) (net 21))
  4433. (via (at 77.47 86.36) (size 1.5) (drill 1) (layers F.Cu B.Cu) (net 21))
  4434. (segment (start 87.67 91.44) (end 87.63 91.44) (width 1) (layer B.Cu) (net 21) (status 80000))
  4435. (segment (start 87.63 91.44) (end 87.63 90.17) (width 1) (layer B.Cu) (net 21) (status 80000))
  4436. (segment (start 87.63 90.17) (end 88.9 88.9) (width 1) (layer B.Cu) (net 21) (status 80000))
  4437. (segment (start 88.9 88.9) (end 91.44 88.9) (width 1) (layer B.Cu) (net 21) (status 80000))
  4438. (segment (start 91.44 88.9) (end 93.98 91.44) (width 1) (layer B.Cu) (net 21) (status 80000))
  4439. (segment (start 81.32 91.44) (end 81.28 91.44) (width 1) (layer B.Cu) (net 21) (status 80000))
  4440. (segment (start 81.28 91.44) (end 81.28 90.17) (width 1) (layer B.Cu) (net 21) (status 80000))
  4441. (segment (start 81.28 90.17) (end 82.55 88.9) (width 1) (layer B.Cu) (net 21) (status 80000))
  4442. (segment (start 82.55 88.9) (end 85.09 88.9) (width 1) (layer B.Cu) (net 21) (status 80000))
  4443. (segment (start 85.09 88.9) (end 87.63 91.44) (width 1) (layer B.Cu) (net 21) (status 80000))
  4444. (segment (start 87.63 91.44) (end 87.67 91.44) (width 1) (layer B.Cu) (net 21) (tstamp 59F31639) (status 80000))
  4445. (segment (start 101.104182 59.917544) (end 101.854181 59.167545) (width 1) (layer B.Cu) (net 22))
  4446. (segment (start 95.748897 62.688897) (end 98.332829 62.688897) (width 1) (layer B.Cu) (net 22))
  4447. (segment (start 94.02 60.96) (end 95.748897 62.688897) (width 1) (layer B.Cu) (net 22))
  4448. (segment (start 95.25 44.45) (end 101.854181 51.054181) (width 1) (layer F.Cu) (net 22))
  4449. (segment (start 101.854181 51.054181) (end 101.854181 58.106885) (width 1) (layer F.Cu) (net 22))
  4450. (segment (start 98.332829 62.688897) (end 101.104182 59.917544) (width 1) (layer B.Cu) (net 22))
  4451. (segment (start 101.854181 58.106885) (end 101.854181 59.167545) (width 1) (layer F.Cu) (net 22))
  4452. (via (at 101.854181 59.167545) (size 1.5) (drill 1) (layers F.Cu B.Cu) (net 22))
  4453. (segment (start 86.36 45.72) (end 88.9 43.18) (width 1) (layer B.Cu) (net 22) (status 80000))
  4454. (segment (start 88.9 43.18) (end 93.98 43.18) (width 1) (layer B.Cu) (net 22) (status 80000))
  4455. (segment (start 93.98 43.18) (end 95.25 44.45) (width 1) (layer B.Cu) (net 22) (status 80000))
  4456. (via (at 95.25 44.45) (size 1.5) (layers F.Cu B.Cu) (net 22) (status 80000))
  4457. (segment (start 77.47 53.34) (end 77.47 50.8) (width 1) (layer B.Cu) (net 22) (status 80000))
  4458. (segment (start 77.47 50.8) (end 74.93 48.26) (width 1) (layer B.Cu) (net 22) (status 80000))
  4459. (segment (start 74.93 48.26) (end 74.93 41.91) (width 1) (layer B.Cu) (net 22) (status 80000))
  4460. (segment (start 74.93 41.91) (end 81.28 41.91) (width 1) (layer B.Cu) (net 22) (status 80000))
  4461. (segment (start 81.28 41.91) (end 83.82 44.45) (width 1) (layer B.Cu) (net 22) (status 80000))
  4462. (segment (start 83.82 44.45) (end 85.09 44.45) (width 1) (layer B.Cu) (net 22) (status 80000))
  4463. (segment (start 85.09 44.45) (end 86.36 45.72) (width 1) (layer B.Cu) (net 22) (status 80000))
  4464. (segment (start 77.47 53.34) (end 74.93 53.34) (width 1) (layer F.Cu) (net 22) (status 80000))
  4465. (segment (start 74.93 53.34) (end 74.93 67.31) (width 1) (layer F.Cu) (net 22) (status 80000))
  4466. (segment (start 69.85 53.34) (end 77.47 53.34) (width 1) (layer B.Cu) (net 22) (status 80000))
  4467. (segment (start 69.85 53.34) (end 71.12 52.07) (width 1) (layer F.Cu) (net 22) (status 80000))
  4468. (segment (start 71.12 52.07) (end 71.12 49.53) (width 1) (layer F.Cu) (net 22) (status 80000))
  4469. (segment (start 66.675 57.15) (end 67.31 57.15) (width 1) (layer B.Cu) (net 22) (status 80000))
  4470. (segment (start 67.31 57.15) (end 67.31 54.61) (width 1) (layer B.Cu) (net 22) (status 80000))
  4471. (segment (start 67.31 54.61) (end 68.58 53.34) (width 1) (layer B.Cu) (net 22) (status 80000))
  4472. (segment (start 68.58 53.34) (end 69.85 53.34) (width 1) (layer B.Cu) (net 22) (status 80000))
  4473. (segment (start 72.860001 106.209999) (end 73.66 105.41) (width 1) (layer F.Cu) (net 23))
  4474. (segment (start 66.675071 107.296228) (end 71.773772 107.296228) (width 1) (layer F.Cu) (net 23))
  4475. (segment (start 64.77 105.391157) (end 66.675071 107.296228) (width 1) (layer F.Cu) (net 23))
  4476. (segment (start 64.77 94.77705) (end 64.77 105.391157) (width 1) (layer F.Cu) (net 23))
  4477. (segment (start 68.10705 91.44) (end 64.77 94.77705) (width 1) (layer F.Cu) (net 23))
  4478. (segment (start 69.85 91.44) (end 68.10705 91.44) (width 1) (layer F.Cu) (net 23))
  4479. (segment (start 71.773772 107.296228) (end 72.860001 106.209999) (width 1) (layer F.Cu) (net 23))
  4480. (segment (start 77.47 91.44) (end 77.47 88.9) (width 1) (layer B.Cu) (net 23) (status 80000))
  4481. (segment (start 77.47 88.9) (end 81.28 85.09) (width 1) (layer B.Cu) (net 23) (status 80000))
  4482. (segment (start 81.28 85.09) (end 83.82 85.09) (width 1) (layer B.Cu) (net 23) (status 80000))
  4483. (segment (start 83.82 85.09) (end 85.09 83.82) (width 1) (layer B.Cu) (net 23) (status 80000))
  4484. (segment (start 85.09 83.82) (end 90.17 83.82) (width 1) (layer B.Cu) (net 23) (status 80000))
  4485. (segment (start 90.17 83.82) (end 92.71 86.36) (width 1) (layer F.Cu) (net 23) (status 80000))
  4486. (segment (start 92.71 86.36) (end 99.06 86.36) (width 1) (layer F.Cu) (net 23) (status 80000))
  4487. (segment (start 99.06 86.36) (end 99.06 93.98) (width 1) (layer F.Cu) (net 23) (status 80000))
  4488. (segment (start 99.06 93.98) (end 97.79 93.98) (width 1) (layer F.Cu) (net 23) (status 80000))
  4489. (segment (start 97.79 93.98) (end 93.98 97.79) (width 1) (layer F.Cu) (net 23) (status 80000))
  4490. (segment (start 93.98 97.79) (end 93.98 99.06) (width 1) (layer F.Cu) (net 23) (status 80000))
  4491. (segment (start 93.98 99.06) (end 94.02 99.06) (width 1) (layer F.Cu) (net 23) (tstamp 59F31655) (status 80000))
  4492. (segment (start 66.675 93.345) (end 67.31 93.98) (width 1) (layer B.Cu) (net 23) (status 80000))
  4493. (segment (start 67.31 93.98) (end 67.31 92.71) (width 1) (layer B.Cu) (net 23) (status 80000))
  4494. (segment (start 67.31 92.71) (end 68.58 91.44) (width 1) (layer B.Cu) (net 23) (status 80000))
  4495. (segment (start 68.58 91.44) (end 69.85 91.44) (width 1) (layer B.Cu) (net 23) (status 80000))
  4496. (segment (start 69.85 91.44) (end 72.39 88.9) (width 1) (layer F.Cu) (net 23) (status 80000))
  4497. (segment (start 72.39 88.9) (end 72.39 87.63) (width 1) (layer F.Cu) (net 23) (status 80000))
  4498. (segment (start 69.85 91.44) (end 77.47 91.44) (width 1) (layer B.Cu) (net 23) (status 80000))
  4499. (segment (start 156.21 45.72) (end 156.21 47.72) (width 1) (layer B.Cu) (net 24))
  4500. (segment (start 156.21 47.72) (end 156.75 48.26) (width 1) (layer B.Cu) (net 24))
  4501. (segment (start 156.75 48.26) (end 157.48 48.26) (width 1) (layer B.Cu) (net 24))
  4502. (segment (start 147.32 67.31) (end 147.32 72.39) (width 1) (layer B.Cu) (net 24) (status 80000))
  4503. (segment (start 147.32 72.39) (end 163.83 72.39) (width 1) (layer B.Cu) (net 24) (status 80000))
  4504. (segment (start 163.83 72.39) (end 163.83 71.12) (width 1) (layer B.Cu) (net 24) (status 80000))
  4505. (segment (start 163.83 71.12) (end 165.1 69.85) (width 1) (layer B.Cu) (net 24) (status 80000))
  4506. (segment (start 165.1 69.85) (end 165.1 64.77) (width 1) (layer B.Cu) (net 24) (status 80000))
  4507. (segment (start 165.1 64.77) (end 162.56 62.23) (width 1) (layer B.Cu) (net 24) (status 80000))
  4508. (segment (start 162.56 62.23) (end 162.56 60.96) (width 1) (layer B.Cu) (net 24) (status 80000))
  4509. (segment (start 147.32 67.31) (end 149.86 69.85) (width 1) (layer B.Cu) (net 24) (status 80000))
  4510. (segment (start 149.86 69.85) (end 161.29 69.85) (width 1) (layer B.Cu) (net 24) (status 80000))
  4511. (segment (start 161.29 69.85) (end 162.56 68.58) (width 1) (layer B.Cu) (net 24) (status 80000))
  4512. (via (at 162.56 68.58) (size 1.5) (layers F.Cu B.Cu) (net 24) (status 80000))
  4513. (segment (start 162.56 68.58) (end 167.64 63.5) (width 1) (layer F.Cu) (net 24) (status 80000))
  4514. (segment (start 167.64 63.5) (end 167.64 50.8) (width 1) (layer F.Cu) (net 24) (status 80000))
  4515. (segment (start 167.64 50.8) (end 165.1 48.26) (width 1) (layer F.Cu) (net 24) (status 80000))
  4516. (segment (start 165.1 48.26) (end 165.1 46.99) (width 1) (layer F.Cu) (net 24) (status 80000))
  4517. (via (at 165.1 46.99) (size 1.5) (layers F.Cu B.Cu) (net 24) (status 80000))
  4518. (segment (start 165.1 46.99) (end 163.83 48.26) (width 1) (layer B.Cu) (net 24) (status 80000))
  4519. (segment (start 163.83 48.26) (end 157.48 48.26) (width 1) (layer B.Cu) (net 24) (status 80000))
  4520. (segment (start 157.48 48.26) (end 154.94 50.8) (width 1) (layer B.Cu) (net 24) (status 80000))
  4521. (segment (start 154.94 50.8) (end 146.05 50.8) (width 1) (layer B.Cu) (net 24) (status 80000))
  4522. (segment (start 146.05 50.8) (end 146.05 53.34) (width 1) (layer B.Cu) (net 24) (status 80000))
  4523. (segment (start 138.43 53.34) (end 137.16 53.34) (width 1) (layer F.Cu) (net 24) (status 80000))
  4524. (segment (start 137.16 53.34) (end 135.89 54.61) (width 1) (layer F.Cu) (net 24) (status 80000))
  4525. (segment (start 135.89 54.61) (end 135.89 57.15) (width 1) (layer F.Cu) (net 24) (status 80000))
  4526. (segment (start 135.89 57.15) (end 135.255 56.515) (width 1) (layer F.Cu) (net 24) (tstamp 59F3164E) (status 80000))
  4527. (segment (start 146.05 53.34) (end 138.43 53.34) (width 1) (layer B.Cu) (net 24) (status 80000))
  4528. (segment (start 138.43 53.34) (end 139.7 52.07) (width 1) (layer F.Cu) (net 24) (status 80000))
  4529. (segment (start 139.7 52.07) (end 139.7 50.8) (width 1) (layer F.Cu) (net 24) (status 80000))
  4530. (segment (start 151.13 86.36) (end 151.13 83.82) (width 1) (layer F.Cu) (net 25))
  4531. (segment (start 151.13 83.82) (end 151.13 81.28) (width 1) (layer F.Cu) (net 25))
  4532. (segment (start 156.21 83.82) (end 151.13 83.82) (width 1) (layer F.Cu) (net 25))
  4533. (segment (start 156.21 83.82) (end 158.75 86.36) (width 1) (layer B.Cu) (net 25) (status 80000))
  4534. (segment (start 158.75 86.36) (end 163.83 86.36) (width 1) (layer B.Cu) (net 25) (status 80000))
  4535. (segment (start 163.83 86.36) (end 166.37 88.9) (width 1) (layer B.Cu) (net 25) (status 80000))
  4536. (segment (start 166.37 88.9) (end 168.91 88.9) (width 1) (layer B.Cu) (net 25) (status 80000))
  4537. (segment (start 168.91 88.9) (end 168.91 101.6) (width 1) (layer B.Cu) (net 25) (status 80000))
  4538. (segment (start 168.91 101.6) (end 165.1 101.6) (width 1) (layer B.Cu) (net 25) (status 80000))
  4539. (segment (start 165.1 101.6) (end 163.83 100.33) (width 1) (layer B.Cu) (net 25) (status 80000))
  4540. (segment (start 163.83 100.33) (end 163.83 99.06) (width 1) (layer B.Cu) (net 25) (status 80000))
  4541. (segment (start 139.7 105.41) (end 142.24 105.41) (width 1) (layer F.Cu) (net 25) (status 80000))
  4542. (segment (start 142.24 105.41) (end 144.78 102.87) (width 1) (layer F.Cu) (net 25) (status 80000))
  4543. (segment (start 144.78 102.87) (end 146.05 102.87) (width 1) (layer F.Cu) (net 25) (status 80000))
  4544. (segment (start 146.05 102.87) (end 148.59 100.33) (width 1) (layer F.Cu) (net 25) (status 80000))
  4545. (segment (start 148.59 100.33) (end 148.59 88.9) (width 1) (layer F.Cu) (net 25) (status 80000))
  4546. (segment (start 148.59 88.9) (end 151.13 86.36) (width 1) (layer F.Cu) (net 25) (status 80000))
  4547. (segment (start 151.13 81.28) (end 149.86 80.01) (width 1) (layer F.Cu) (net 25) (status 80000))
  4548. (segment (start 149.86 80.01) (end 143.51 80.01) (width 1) (layer F.Cu) (net 25) (status 80000))
  4549. (segment (start 143.51 80.01) (end 138.43 85.09) (width 1) (layer F.Cu) (net 25) (status 80000))
  4550. (segment (start 138.43 85.09) (end 137.16 85.09) (width 1) (layer F.Cu) (net 25) (status 80000))
  4551. (segment (start 137.16 85.09) (end 137.16 90.17) (width 1) (layer F.Cu) (net 25) (status 80000))
  4552. (segment (start 137.16 90.17) (end 138.43 91.44) (width 1) (layer F.Cu) (net 25) (status 80000))
  4553. (segment (start 138.43 91.44) (end 137.16 91.44) (width 1) (layer F.Cu) (net 25) (status 80000))
  4554. (segment (start 137.16 91.44) (end 135.89 92.71) (width 1) (layer F.Cu) (net 25) (status 80000))
  4555. (segment (start 135.89 92.71) (end 135.89 93.98) (width 1) (layer F.Cu) (net 25) (status 80000))
  4556. (segment (start 135.89 93.98) (end 135.255 93.98) (width 1) (layer F.Cu) (net 25) (tstamp 59F3164F) (status 80000))
  4557. (segment (start 138.43 91.44) (end 139.7 90.17) (width 1) (layer F.Cu) (net 25) (status 80000))
  4558. (segment (start 139.7 90.17) (end 139.7 87.63) (width 1) (layer F.Cu) (net 25) (status 80000))
  4559. (segment (start 138.43 91.44) (end 146.05 91.44) (width 1) (layer B.Cu) (net 25) (status 80000))
  4560. (segment (start 71.12 41.91) (end 68.58 44.45) (width 1) (layer B.Cu) (net 26) (status 80000))
  4561. (segment (start 68.58 44.45) (end 67.31 44.45) (width 1) (layer B.Cu) (net 26) (status 80000))
  4562. (segment (start 66.04 82.55) (end 67.31 82.55) (width 1) (layer B.Cu) (net 27) (status 80000))
  4563. (segment (start 67.31 82.55) (end 69.85 80.01) (width 1) (layer B.Cu) (net 27) (status 80000))
  4564. (segment (start 69.85 80.01) (end 72.39 80.01) (width 1) (layer B.Cu) (net 27) (status 80000))
  4565. (segment (start 139.7 43.18) (end 137.16 45.72) (width 1) (layer B.Cu) (net 28) (status 80000))
  4566. (segment (start 137.16 45.72) (end 134.62 45.72) (width 1) (layer B.Cu) (net 28) (status 80000))
  4567. (segment (start 139.7 80.01) (end 137.16 82.55) (width 1) (layer B.Cu) (net 29) (status 80000))
  4568. (segment (start 137.16 82.55) (end 134.62 82.55) (width 1) (layer B.Cu) (net 29) (status 80000))
  4569. (segment (start 97.99934 70.73999) (end 99.06 70.73999) (width 1) (layer B.Cu) (net 30))
  4570. (segment (start 109.01066 80.01) (end 107.26935 80.01) (width 1) (layer F.Cu) (net 30))
  4571. (segment (start 99.06 71.80065) (end 99.06 70.73999) (width 1) (layer F.Cu) (net 30))
  4572. (via (at 99.06 70.73999) (size 1.5) (drill 1) (layers F.Cu B.Cu) (net 30))
  4573. (segment (start 110.49 77.47) (end 110.49 78.53066) (width 1) (layer F.Cu) (net 30))
  4574. (segment (start 71.12 67.31) (end 74.54999 70.73999) (width 1) (layer B.Cu) (net 30))
  4575. (segment (start 74.54999 70.73999) (end 97.99934 70.73999) (width 1) (layer B.Cu) (net 30))
  4576. (segment (start 110.49 78.53066) (end 109.01066 80.01) (width 1) (layer F.Cu) (net 30))
  4577. (segment (start 107.26935 80.01) (end 99.06 71.80065) (width 1) (layer F.Cu) (net 30))
  4578. (segment (start 109.22 71.12) (end 104.830023 75.509977) (width 1) (layer B.Cu) (net 31))
  4579. (segment (start 104.830023 75.509977) (end 59.461524 75.509977) (width 1) (layer B.Cu) (net 31))
  4580. (segment (start 59.461524 75.509977) (end 56.777049 78.194452) (width 1) (layer B.Cu) (net 31))
  4581. (segment (start 56.777049 78.194452) (end 56.777049 99.957049) (width 1) (layer B.Cu) (net 31))
  4582. (segment (start 56.777049 99.957049) (end 61.430001 104.610001) (width 1) (layer B.Cu) (net 31))
  4583. (segment (start 61.430001 104.610001) (end 62.23 105.41) (width 1) (layer B.Cu) (net 31))
  4584. (segment (start 111.76 74.93) (end 111.76 73.66) (width 1) (layer F.Cu) (net 31))
  4585. (segment (start 111.76 73.66) (end 109.22 71.12) (width 1) (layer F.Cu) (net 31))
  4586. (via (at 109.22 71.12) (size 1.5) (drill 1) (layers F.Cu B.Cu) (net 31))
  4587. (segment (start 119.702439 80.01) (end 115.57 80.01) (width 1) (layer F.Cu) (net 32))
  4588. (segment (start 135.89 67.31) (end 132.402439 67.31) (width 1) (layer F.Cu) (net 32))
  4589. (segment (start 113.779999 78.219999) (end 113.03 77.47) (width 1) (layer F.Cu) (net 32))
  4590. (segment (start 132.402439 67.31) (end 119.702439 80.01) (width 1) (layer F.Cu) (net 32))
  4591. (segment (start 115.57 80.01) (end 113.779999 78.219999) (width 1) (layer F.Cu) (net 32))
  4592. (segment (start 122.378561 77.569395) (end 119.890012 75.080846) (width 1) (layer B.Cu) (net 33))
  4593. (segment (start 119.890012 73.558096) (end 117.451916 71.12) (width 1) (layer B.Cu) (net 33))
  4594. (segment (start 128.27 105.41) (end 129.335001 104.344999) (width 1) (layer B.Cu) (net 33))
  4595. (segment (start 115.36066 71.12) (end 114.3 71.12) (width 1) (layer B.Cu) (net 33))
  4596. (segment (start 119.890012 75.080846) (end 119.890012 73.558096) (width 1) (layer B.Cu) (net 33))
  4597. (segment (start 127.393576 77.569395) (end 122.378561 77.569395) (width 1) (layer B.Cu) (net 33))
  4598. (segment (start 117.451916 71.12) (end 115.36066 71.12) (width 1) (layer B.Cu) (net 33))
  4599. (segment (start 129.335001 104.344999) (end 129.335001 79.51082) (width 1) (layer B.Cu) (net 33))
  4600. (segment (start 129.335001 79.51082) (end 127.393576 77.569395) (width 1) (layer B.Cu) (net 33))
  4601. (segment (start 114.3 74.93) (end 114.3 71.12) (width 1) (layer F.Cu) (net 33))
  4602. (via (at 114.3 71.12) (size 1.5) (drill 1) (layers F.Cu B.Cu) (net 33))
  4603. (segment (start 115.57 77.47) (end 118.11 77.47) (width 1) (layer F.Cu) (net 34) (status 80000))
  4604. (segment (start 118.11 77.47) (end 119.38 76.2) (width 1) (layer F.Cu) (net 34) (status 80000))
  4605. (segment (start 119.38 76.2) (end 119.38 73.66) (width 1) (layer F.Cu) (net 34) (status 80000))
  4606. (segment (start 119.38 73.66) (end 111.76 66.04) (width 1) (layer F.Cu) (net 34) (status 80000))
  4607. )