Fuseboard.kicad_pcb 139 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619
  1. (kicad_pcb (version 4) (host pcbnew 4.0.7)
  2. (general
  3. (links 156)
  4. (no_connects 156)
  5. (area 67.31 50.8 231.91 143.345)
  6. (thickness 1.6)
  7. (drawings 0)
  8. (tracks 0)
  9. (zones 0)
  10. (modules 74)
  11. (nets 52)
  12. )
  13. (page A4)
  14. (layers
  15. (0 F.Cu signal)
  16. (31 B.Cu signal)
  17. (32 B.Adhes user)
  18. (33 F.Adhes user)
  19. (34 B.Paste user)
  20. (35 F.Paste user)
  21. (36 B.SilkS user)
  22. (37 F.SilkS user)
  23. (38 B.Mask user)
  24. (39 F.Mask user)
  25. (40 Dwgs.User user)
  26. (41 Cmts.User user)
  27. (42 Eco1.User user)
  28. (43 Eco2.User user)
  29. (44 Edge.Cuts user)
  30. (45 Margin user)
  31. (46 B.CrtYd user)
  32. (47 F.CrtYd user)
  33. (48 B.Fab user)
  34. (49 F.Fab user)
  35. )
  36. (setup
  37. (last_trace_width 1)
  38. (trace_clearance 0.5)
  39. (zone_clearance 0.508)
  40. (zone_45_only no)
  41. (trace_min 0.2)
  42. (segment_width 0.2)
  43. (edge_width 0.15)
  44. (via_size 1.5)
  45. (via_drill 1)
  46. (via_min_size 0.4)
  47. (via_min_drill 0.3)
  48. (uvia_size 1)
  49. (uvia_drill 0.5)
  50. (uvias_allowed no)
  51. (uvia_min_size 0.2)
  52. (uvia_min_drill 0.1)
  53. (pcb_text_width 0.3)
  54. (pcb_text_size 1.5 1.5)
  55. (mod_edge_width 0.15)
  56. (mod_text_size 1 1)
  57. (mod_text_width 0.15)
  58. (pad_size 1.524 1.524)
  59. (pad_drill 0.762)
  60. (pad_to_mask_clearance 0.2)
  61. (aux_axis_origin 0 0)
  62. (visible_elements 7FFFF7FF)
  63. (pcbplotparams
  64. (layerselection 0x00030_80000001)
  65. (usegerberextensions false)
  66. (excludeedgelayer true)
  67. (linewidth 0.100000)
  68. (plotframeref false)
  69. (viasonmask false)
  70. (mode 1)
  71. (useauxorigin false)
  72. (hpglpennumber 1)
  73. (hpglpenspeed 20)
  74. (hpglpendiameter 15)
  75. (hpglpenoverlay 2)
  76. (psnegative false)
  77. (psa4output false)
  78. (plotreference true)
  79. (plotvalue true)
  80. (plotinvisibletext false)
  81. (padsonsilk false)
  82. (subtractmaskfromsilk false)
  83. (outputformat 1)
  84. (mirror false)
  85. (drillshape 1)
  86. (scaleselection 1)
  87. (outputdirectory ""))
  88. )
  89. (net 0 "")
  90. (net 1 "Net-(F1-Pad2)")
  91. (net 2 GND)
  92. (net 3 "Net-(F2-Pad2)")
  93. (net 4 "Net-(F2-Pad1)")
  94. (net 5 "Net-(F3-Pad2)")
  95. (net 6 "Net-(F3-Pad1)")
  96. (net 7 "Net-(F4-Pad2)")
  97. (net 8 "Net-(F4-Pad1)")
  98. (net 9 "Net-(F5-Pad2)")
  99. (net 10 "Net-(F5-Pad1)")
  100. (net 11 "Net-(F6-Pad2)")
  101. (net 12 "Net-(F6-Pad1)")
  102. (net 13 "Net-(F7-Pad2)")
  103. (net 14 "Net-(F7-Pad1)")
  104. (net 15 "Net-(F8-Pad2)")
  105. (net 16 "Net-(F8-Pad1)")
  106. (net 17 "Net-(F9-Pad2)")
  107. (net 18 "Net-(F9-Pad1)")
  108. (net 19 "Net-(F10-Pad2)")
  109. (net 20 "Net-(F10-Pad1)")
  110. (net 21 "Net-(F11-Pad2)")
  111. (net 22 "Net-(F11-Pad1)")
  112. (net 23 "Net-(F12-Pad2)")
  113. (net 24 "Net-(F12-Pad1)")
  114. (net 25 "Net-(F13-Pad2)")
  115. (net 26 "Net-(F13-Pad1)")
  116. (net 27 "Net-(F14-Pad2)")
  117. (net 28 "Net-(F14-Pad1)")
  118. (net 29 "Net-(F15-Pad2)")
  119. (net 30 "Net-(F15-Pad1)")
  120. (net 31 "Net-(F16-Pad2)")
  121. (net 32 "Net-(F16-Pad1)")
  122. (net 33 "Net-(F17-Pad2)")
  123. (net 34 "Net-(F17-Pad1)")
  124. (net 35 CUR_9)
  125. (net 36 CUR_10)
  126. (net 37 CUR_11)
  127. (net 38 CUR_12)
  128. (net 39 CUR_13)
  129. (net 40 CUR_14)
  130. (net 41 CUR_15)
  131. (net 42 CUR_16)
  132. (net 43 CUR_1)
  133. (net 44 CUR_2)
  134. (net 45 CUR_3)
  135. (net 46 CUR_4)
  136. (net 47 CUR_5)
  137. (net 48 CUR_6)
  138. (net 49 CUR_7)
  139. (net 50 CUR_8)
  140. (net 51 ARD_5V)
  141. (net_class Default "This is the default net class."
  142. (clearance 0.5)
  143. (trace_width 1)
  144. (via_dia 1.5)
  145. (via_drill 1)
  146. (uvia_dia 1)
  147. (uvia_drill 0.5)
  148. (add_net ARD_5V)
  149. (add_net CUR_1)
  150. (add_net CUR_10)
  151. (add_net CUR_11)
  152. (add_net CUR_12)
  153. (add_net CUR_13)
  154. (add_net CUR_14)
  155. (add_net CUR_15)
  156. (add_net CUR_16)
  157. (add_net CUR_2)
  158. (add_net CUR_3)
  159. (add_net CUR_4)
  160. (add_net CUR_5)
  161. (add_net CUR_6)
  162. (add_net CUR_7)
  163. (add_net CUR_8)
  164. (add_net CUR_9)
  165. (add_net GND)
  166. (add_net "Net-(F1-Pad2)")
  167. (add_net "Net-(F10-Pad1)")
  168. (add_net "Net-(F10-Pad2)")
  169. (add_net "Net-(F11-Pad1)")
  170. (add_net "Net-(F11-Pad2)")
  171. (add_net "Net-(F12-Pad1)")
  172. (add_net "Net-(F12-Pad2)")
  173. (add_net "Net-(F13-Pad1)")
  174. (add_net "Net-(F13-Pad2)")
  175. (add_net "Net-(F14-Pad1)")
  176. (add_net "Net-(F14-Pad2)")
  177. (add_net "Net-(F15-Pad1)")
  178. (add_net "Net-(F15-Pad2)")
  179. (add_net "Net-(F16-Pad1)")
  180. (add_net "Net-(F16-Pad2)")
  181. (add_net "Net-(F17-Pad1)")
  182. (add_net "Net-(F17-Pad2)")
  183. (add_net "Net-(F2-Pad1)")
  184. (add_net "Net-(F2-Pad2)")
  185. (add_net "Net-(F3-Pad1)")
  186. (add_net "Net-(F3-Pad2)")
  187. (add_net "Net-(F4-Pad1)")
  188. (add_net "Net-(F4-Pad2)")
  189. (add_net "Net-(F5-Pad1)")
  190. (add_net "Net-(F5-Pad2)")
  191. (add_net "Net-(F6-Pad1)")
  192. (add_net "Net-(F6-Pad2)")
  193. (add_net "Net-(F7-Pad1)")
  194. (add_net "Net-(F7-Pad2)")
  195. (add_net "Net-(F8-Pad1)")
  196. (add_net "Net-(F8-Pad2)")
  197. (add_net "Net-(F9-Pad1)")
  198. (add_net "Net-(F9-Pad2)")
  199. )
  200. (net_class Power ""
  201. (clearance 0.5)
  202. (trace_width 5)
  203. (via_dia 1.5)
  204. (via_drill 1)
  205. (uvia_dia 1)
  206. (uvia_drill 0.5)
  207. )
  208. (module Fuse_Holders_and_Fuses:Fuseholder5x20_horiz_open_inline_Type-I (layer F.Cu) (tedit 5880C3AD) (tstamp 59C4D7DE)
  209. (at 25.48 22.86)
  210. (descr "Fuseholder, 5x20, open, horizontal, Type-I, Inline,")
  211. (tags "Fuseholder 5x20 open horizontal Type-I Inline Sicherungshalter offen ")
  212. (path /59A8067F)
  213. (fp_text reference F1 (at 10 -5.08) (layer F.SilkS)
  214. (effects (font (size 1 1) (thickness 0.15)))
  215. )
  216. (fp_text value Fuse (at 11.27 5.08) (layer F.Fab)
  217. (effects (font (size 1 1) (thickness 0.15)))
  218. )
  219. (fp_line (start 5 0) (end 15 0) (layer F.Fab) (width 0.1))
  220. (fp_line (start -2 -2.5) (end 22 -2.5) (layer F.Fab) (width 0.1))
  221. (fp_line (start 22 -2.5) (end 22 2.5) (layer F.Fab) (width 0.1))
  222. (fp_line (start 22 2.5) (end -2 2.5) (layer F.Fab) (width 0.1))
  223. (fp_line (start -2 2.5) (end -2 -2.5) (layer F.Fab) (width 0.1))
  224. (fp_line (start 13.35 -3.4) (end 13.35 3.4) (layer F.Fab) (width 0.1))
  225. (fp_line (start 13.35 3.4) (end 22.9 3.4) (layer F.Fab) (width 0.1))
  226. (fp_line (start 22.9 3.4) (end 22.9 -3.4) (layer F.Fab) (width 0.1))
  227. (fp_line (start 22.9 -3.4) (end 13.35 -3.4) (layer F.Fab) (width 0.1))
  228. (fp_line (start -2.95 -3.4) (end 6.65 -3.4) (layer F.Fab) (width 0.1))
  229. (fp_line (start 6.65 -3.4) (end 6.65 3.4) (layer F.Fab) (width 0.1))
  230. (fp_line (start 6.65 3.4) (end -2.9 3.4) (layer F.Fab) (width 0.1))
  231. (fp_line (start -2.9 3.4) (end -2.9 -3.4) (layer F.Fab) (width 0.1))
  232. (fp_line (start 13.25 0) (end 6.75 0) (layer F.SilkS) (width 0.12))
  233. (fp_line (start 13.25 -3.5) (end 13.25 3.5) (layer F.SilkS) (width 0.12))
  234. (fp_line (start 22 3.5) (end 13.25 3.5) (layer F.SilkS) (width 0.12))
  235. (fp_line (start 22 -3.5) (end 13.25 -3.5) (layer F.SilkS) (width 0.12))
  236. (fp_line (start -0.75 2.5) (end -2 2.5) (layer F.SilkS) (width 0.12))
  237. (fp_line (start -0.5 -2.5) (end -2 -2.5) (layer F.SilkS) (width 0.12))
  238. (fp_line (start 11.5 2.5) (end -0.75 2.5) (layer F.SilkS) (width 0.12))
  239. (fp_line (start 11.25 -2.5) (end -0.5 -2.5) (layer F.SilkS) (width 0.12))
  240. (fp_line (start 22 2.5) (end 11.5 2.5) (layer F.SilkS) (width 0.12))
  241. (fp_line (start 22 -2.5) (end 11.25 -2.5) (layer F.SilkS) (width 0.12))
  242. (fp_line (start 22 -2.5) (end 22 2.5) (layer F.SilkS) (width 0.12))
  243. (fp_line (start 23 -3.5) (end 22 -3.5) (layer F.SilkS) (width 0.12))
  244. (fp_line (start 23 -3.5) (end 23 3.5) (layer F.SilkS) (width 0.12))
  245. (fp_line (start 23 3.5) (end 22 3.5) (layer F.SilkS) (width 0.12))
  246. (fp_line (start -2 -2.5) (end -2 2.5) (layer F.SilkS) (width 0.12))
  247. (fp_line (start 6.75 -3.5) (end -3 -3.5) (layer F.SilkS) (width 0.12))
  248. (fp_line (start -3 -3.5) (end -3 3.5) (layer F.SilkS) (width 0.12))
  249. (fp_line (start 6.75 3.5) (end -3 3.5) (layer F.SilkS) (width 0.12))
  250. (fp_line (start 6.75 -3.5) (end 6.75 3.5) (layer F.SilkS) (width 0.12))
  251. (fp_line (start -3.2 -3.65) (end 23.15 -3.65) (layer F.CrtYd) (width 0.05))
  252. (fp_line (start -3.2 -3.65) (end -3.2 3.65) (layer F.CrtYd) (width 0.05))
  253. (fp_line (start 23.15 3.65) (end 23.15 -3.65) (layer F.CrtYd) (width 0.05))
  254. (fp_line (start 23.15 3.65) (end -3.2 3.65) (layer F.CrtYd) (width 0.05))
  255. (pad 2 thru_hole circle (at 15 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  256. (net 1 "Net-(F1-Pad2)"))
  257. (pad 2 thru_hole circle (at 20 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  258. (net 1 "Net-(F1-Pad2)"))
  259. (pad 1 thru_hole circle (at 5 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  260. (net 2 GND))
  261. (pad 1 thru_hole circle (at 0 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  262. (net 2 GND))
  263. )
  264. (module Fuse_Holders_and_Fuses:Fuseholder5x20_horiz_open_inline_Type-I (layer F.Cu) (tedit 5880C3AD) (tstamp 59C4D80A)
  265. (at 25.48 33.02)
  266. (descr "Fuseholder, 5x20, open, horizontal, Type-I, Inline,")
  267. (tags "Fuseholder 5x20 open horizontal Type-I Inline Sicherungshalter offen ")
  268. (path /59A7F37B)
  269. (fp_text reference F2 (at 10 -5.08) (layer F.SilkS)
  270. (effects (font (size 1 1) (thickness 0.15)))
  271. )
  272. (fp_text value Fuse (at 11.27 5.08) (layer F.Fab)
  273. (effects (font (size 1 1) (thickness 0.15)))
  274. )
  275. (fp_line (start 5 0) (end 15 0) (layer F.Fab) (width 0.1))
  276. (fp_line (start -2 -2.5) (end 22 -2.5) (layer F.Fab) (width 0.1))
  277. (fp_line (start 22 -2.5) (end 22 2.5) (layer F.Fab) (width 0.1))
  278. (fp_line (start 22 2.5) (end -2 2.5) (layer F.Fab) (width 0.1))
  279. (fp_line (start -2 2.5) (end -2 -2.5) (layer F.Fab) (width 0.1))
  280. (fp_line (start 13.35 -3.4) (end 13.35 3.4) (layer F.Fab) (width 0.1))
  281. (fp_line (start 13.35 3.4) (end 22.9 3.4) (layer F.Fab) (width 0.1))
  282. (fp_line (start 22.9 3.4) (end 22.9 -3.4) (layer F.Fab) (width 0.1))
  283. (fp_line (start 22.9 -3.4) (end 13.35 -3.4) (layer F.Fab) (width 0.1))
  284. (fp_line (start -2.95 -3.4) (end 6.65 -3.4) (layer F.Fab) (width 0.1))
  285. (fp_line (start 6.65 -3.4) (end 6.65 3.4) (layer F.Fab) (width 0.1))
  286. (fp_line (start 6.65 3.4) (end -2.9 3.4) (layer F.Fab) (width 0.1))
  287. (fp_line (start -2.9 3.4) (end -2.9 -3.4) (layer F.Fab) (width 0.1))
  288. (fp_line (start 13.25 0) (end 6.75 0) (layer F.SilkS) (width 0.12))
  289. (fp_line (start 13.25 -3.5) (end 13.25 3.5) (layer F.SilkS) (width 0.12))
  290. (fp_line (start 22 3.5) (end 13.25 3.5) (layer F.SilkS) (width 0.12))
  291. (fp_line (start 22 -3.5) (end 13.25 -3.5) (layer F.SilkS) (width 0.12))
  292. (fp_line (start -0.75 2.5) (end -2 2.5) (layer F.SilkS) (width 0.12))
  293. (fp_line (start -0.5 -2.5) (end -2 -2.5) (layer F.SilkS) (width 0.12))
  294. (fp_line (start 11.5 2.5) (end -0.75 2.5) (layer F.SilkS) (width 0.12))
  295. (fp_line (start 11.25 -2.5) (end -0.5 -2.5) (layer F.SilkS) (width 0.12))
  296. (fp_line (start 22 2.5) (end 11.5 2.5) (layer F.SilkS) (width 0.12))
  297. (fp_line (start 22 -2.5) (end 11.25 -2.5) (layer F.SilkS) (width 0.12))
  298. (fp_line (start 22 -2.5) (end 22 2.5) (layer F.SilkS) (width 0.12))
  299. (fp_line (start 23 -3.5) (end 22 -3.5) (layer F.SilkS) (width 0.12))
  300. (fp_line (start 23 -3.5) (end 23 3.5) (layer F.SilkS) (width 0.12))
  301. (fp_line (start 23 3.5) (end 22 3.5) (layer F.SilkS) (width 0.12))
  302. (fp_line (start -2 -2.5) (end -2 2.5) (layer F.SilkS) (width 0.12))
  303. (fp_line (start 6.75 -3.5) (end -3 -3.5) (layer F.SilkS) (width 0.12))
  304. (fp_line (start -3 -3.5) (end -3 3.5) (layer F.SilkS) (width 0.12))
  305. (fp_line (start 6.75 3.5) (end -3 3.5) (layer F.SilkS) (width 0.12))
  306. (fp_line (start 6.75 -3.5) (end 6.75 3.5) (layer F.SilkS) (width 0.12))
  307. (fp_line (start -3.2 -3.65) (end 23.15 -3.65) (layer F.CrtYd) (width 0.05))
  308. (fp_line (start -3.2 -3.65) (end -3.2 3.65) (layer F.CrtYd) (width 0.05))
  309. (fp_line (start 23.15 3.65) (end 23.15 -3.65) (layer F.CrtYd) (width 0.05))
  310. (fp_line (start 23.15 3.65) (end -3.2 3.65) (layer F.CrtYd) (width 0.05))
  311. (pad 2 thru_hole circle (at 15 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  312. (net 3 "Net-(F2-Pad2)"))
  313. (pad 2 thru_hole circle (at 20 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  314. (net 3 "Net-(F2-Pad2)"))
  315. (pad 1 thru_hole circle (at 5 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  316. (net 4 "Net-(F2-Pad1)"))
  317. (pad 1 thru_hole circle (at 0 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  318. (net 4 "Net-(F2-Pad1)"))
  319. )
  320. (module Fuse_Holders_and_Fuses:Fuseholder5x20_horiz_open_inline_Type-I (layer F.Cu) (tedit 5880C3AD) (tstamp 59C4D836)
  321. (at 98.435001 57.155)
  322. (descr "Fuseholder, 5x20, open, horizontal, Type-I, Inline,")
  323. (tags "Fuseholder 5x20 open horizontal Type-I Inline Sicherungshalter offen ")
  324. (path /59A81937)
  325. (fp_text reference F3 (at 10 -5.08) (layer F.SilkS)
  326. (effects (font (size 1 1) (thickness 0.15)))
  327. )
  328. (fp_text value Fuse (at 11.27 5.08) (layer F.Fab)
  329. (effects (font (size 1 1) (thickness 0.15)))
  330. )
  331. (fp_line (start 5 0) (end 15 0) (layer F.Fab) (width 0.1))
  332. (fp_line (start -2 -2.5) (end 22 -2.5) (layer F.Fab) (width 0.1))
  333. (fp_line (start 22 -2.5) (end 22 2.5) (layer F.Fab) (width 0.1))
  334. (fp_line (start 22 2.5) (end -2 2.5) (layer F.Fab) (width 0.1))
  335. (fp_line (start -2 2.5) (end -2 -2.5) (layer F.Fab) (width 0.1))
  336. (fp_line (start 13.35 -3.4) (end 13.35 3.4) (layer F.Fab) (width 0.1))
  337. (fp_line (start 13.35 3.4) (end 22.9 3.4) (layer F.Fab) (width 0.1))
  338. (fp_line (start 22.9 3.4) (end 22.9 -3.4) (layer F.Fab) (width 0.1))
  339. (fp_line (start 22.9 -3.4) (end 13.35 -3.4) (layer F.Fab) (width 0.1))
  340. (fp_line (start -2.95 -3.4) (end 6.65 -3.4) (layer F.Fab) (width 0.1))
  341. (fp_line (start 6.65 -3.4) (end 6.65 3.4) (layer F.Fab) (width 0.1))
  342. (fp_line (start 6.65 3.4) (end -2.9 3.4) (layer F.Fab) (width 0.1))
  343. (fp_line (start -2.9 3.4) (end -2.9 -3.4) (layer F.Fab) (width 0.1))
  344. (fp_line (start 13.25 0) (end 6.75 0) (layer F.SilkS) (width 0.12))
  345. (fp_line (start 13.25 -3.5) (end 13.25 3.5) (layer F.SilkS) (width 0.12))
  346. (fp_line (start 22 3.5) (end 13.25 3.5) (layer F.SilkS) (width 0.12))
  347. (fp_line (start 22 -3.5) (end 13.25 -3.5) (layer F.SilkS) (width 0.12))
  348. (fp_line (start -0.75 2.5) (end -2 2.5) (layer F.SilkS) (width 0.12))
  349. (fp_line (start -0.5 -2.5) (end -2 -2.5) (layer F.SilkS) (width 0.12))
  350. (fp_line (start 11.5 2.5) (end -0.75 2.5) (layer F.SilkS) (width 0.12))
  351. (fp_line (start 11.25 -2.5) (end -0.5 -2.5) (layer F.SilkS) (width 0.12))
  352. (fp_line (start 22 2.5) (end 11.5 2.5) (layer F.SilkS) (width 0.12))
  353. (fp_line (start 22 -2.5) (end 11.25 -2.5) (layer F.SilkS) (width 0.12))
  354. (fp_line (start 22 -2.5) (end 22 2.5) (layer F.SilkS) (width 0.12))
  355. (fp_line (start 23 -3.5) (end 22 -3.5) (layer F.SilkS) (width 0.12))
  356. (fp_line (start 23 -3.5) (end 23 3.5) (layer F.SilkS) (width 0.12))
  357. (fp_line (start 23 3.5) (end 22 3.5) (layer F.SilkS) (width 0.12))
  358. (fp_line (start -2 -2.5) (end -2 2.5) (layer F.SilkS) (width 0.12))
  359. (fp_line (start 6.75 -3.5) (end -3 -3.5) (layer F.SilkS) (width 0.12))
  360. (fp_line (start -3 -3.5) (end -3 3.5) (layer F.SilkS) (width 0.12))
  361. (fp_line (start 6.75 3.5) (end -3 3.5) (layer F.SilkS) (width 0.12))
  362. (fp_line (start 6.75 -3.5) (end 6.75 3.5) (layer F.SilkS) (width 0.12))
  363. (fp_line (start -3.2 -3.65) (end 23.15 -3.65) (layer F.CrtYd) (width 0.05))
  364. (fp_line (start -3.2 -3.65) (end -3.2 3.65) (layer F.CrtYd) (width 0.05))
  365. (fp_line (start 23.15 3.65) (end 23.15 -3.65) (layer F.CrtYd) (width 0.05))
  366. (fp_line (start 23.15 3.65) (end -3.2 3.65) (layer F.CrtYd) (width 0.05))
  367. (pad 2 thru_hole circle (at 15 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  368. (net 5 "Net-(F3-Pad2)"))
  369. (pad 2 thru_hole circle (at 20 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  370. (net 5 "Net-(F3-Pad2)"))
  371. (pad 1 thru_hole circle (at 5 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  372. (net 6 "Net-(F3-Pad1)"))
  373. (pad 1 thru_hole circle (at 0 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  374. (net 6 "Net-(F3-Pad1)"))
  375. )
  376. (module Fuse_Holders_and_Fuses:Fuseholder5x20_horiz_open_inline_Type-I (layer F.Cu) (tedit 5880C3AD) (tstamp 59C4D862)
  377. (at 71.035001 82.775)
  378. (descr "Fuseholder, 5x20, open, horizontal, Type-I, Inline,")
  379. (tags "Fuseholder 5x20 open horizontal Type-I Inline Sicherungshalter offen ")
  380. (path /59A8AF14)
  381. (fp_text reference F4 (at 10 -5.08) (layer F.SilkS)
  382. (effects (font (size 1 1) (thickness 0.15)))
  383. )
  384. (fp_text value Fuse (at 11.27 5.08) (layer F.Fab)
  385. (effects (font (size 1 1) (thickness 0.15)))
  386. )
  387. (fp_line (start 5 0) (end 15 0) (layer F.Fab) (width 0.1))
  388. (fp_line (start -2 -2.5) (end 22 -2.5) (layer F.Fab) (width 0.1))
  389. (fp_line (start 22 -2.5) (end 22 2.5) (layer F.Fab) (width 0.1))
  390. (fp_line (start 22 2.5) (end -2 2.5) (layer F.Fab) (width 0.1))
  391. (fp_line (start -2 2.5) (end -2 -2.5) (layer F.Fab) (width 0.1))
  392. (fp_line (start 13.35 -3.4) (end 13.35 3.4) (layer F.Fab) (width 0.1))
  393. (fp_line (start 13.35 3.4) (end 22.9 3.4) (layer F.Fab) (width 0.1))
  394. (fp_line (start 22.9 3.4) (end 22.9 -3.4) (layer F.Fab) (width 0.1))
  395. (fp_line (start 22.9 -3.4) (end 13.35 -3.4) (layer F.Fab) (width 0.1))
  396. (fp_line (start -2.95 -3.4) (end 6.65 -3.4) (layer F.Fab) (width 0.1))
  397. (fp_line (start 6.65 -3.4) (end 6.65 3.4) (layer F.Fab) (width 0.1))
  398. (fp_line (start 6.65 3.4) (end -2.9 3.4) (layer F.Fab) (width 0.1))
  399. (fp_line (start -2.9 3.4) (end -2.9 -3.4) (layer F.Fab) (width 0.1))
  400. (fp_line (start 13.25 0) (end 6.75 0) (layer F.SilkS) (width 0.12))
  401. (fp_line (start 13.25 -3.5) (end 13.25 3.5) (layer F.SilkS) (width 0.12))
  402. (fp_line (start 22 3.5) (end 13.25 3.5) (layer F.SilkS) (width 0.12))
  403. (fp_line (start 22 -3.5) (end 13.25 -3.5) (layer F.SilkS) (width 0.12))
  404. (fp_line (start -0.75 2.5) (end -2 2.5) (layer F.SilkS) (width 0.12))
  405. (fp_line (start -0.5 -2.5) (end -2 -2.5) (layer F.SilkS) (width 0.12))
  406. (fp_line (start 11.5 2.5) (end -0.75 2.5) (layer F.SilkS) (width 0.12))
  407. (fp_line (start 11.25 -2.5) (end -0.5 -2.5) (layer F.SilkS) (width 0.12))
  408. (fp_line (start 22 2.5) (end 11.5 2.5) (layer F.SilkS) (width 0.12))
  409. (fp_line (start 22 -2.5) (end 11.25 -2.5) (layer F.SilkS) (width 0.12))
  410. (fp_line (start 22 -2.5) (end 22 2.5) (layer F.SilkS) (width 0.12))
  411. (fp_line (start 23 -3.5) (end 22 -3.5) (layer F.SilkS) (width 0.12))
  412. (fp_line (start 23 -3.5) (end 23 3.5) (layer F.SilkS) (width 0.12))
  413. (fp_line (start 23 3.5) (end 22 3.5) (layer F.SilkS) (width 0.12))
  414. (fp_line (start -2 -2.5) (end -2 2.5) (layer F.SilkS) (width 0.12))
  415. (fp_line (start 6.75 -3.5) (end -3 -3.5) (layer F.SilkS) (width 0.12))
  416. (fp_line (start -3 -3.5) (end -3 3.5) (layer F.SilkS) (width 0.12))
  417. (fp_line (start 6.75 3.5) (end -3 3.5) (layer F.SilkS) (width 0.12))
  418. (fp_line (start 6.75 -3.5) (end 6.75 3.5) (layer F.SilkS) (width 0.12))
  419. (fp_line (start -3.2 -3.65) (end 23.15 -3.65) (layer F.CrtYd) (width 0.05))
  420. (fp_line (start -3.2 -3.65) (end -3.2 3.65) (layer F.CrtYd) (width 0.05))
  421. (fp_line (start 23.15 3.65) (end 23.15 -3.65) (layer F.CrtYd) (width 0.05))
  422. (fp_line (start 23.15 3.65) (end -3.2 3.65) (layer F.CrtYd) (width 0.05))
  423. (pad 2 thru_hole circle (at 15 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  424. (net 7 "Net-(F4-Pad2)"))
  425. (pad 2 thru_hole circle (at 20 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  426. (net 7 "Net-(F4-Pad2)"))
  427. (pad 1 thru_hole circle (at 5 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  428. (net 8 "Net-(F4-Pad1)"))
  429. (pad 1 thru_hole circle (at 0 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  430. (net 8 "Net-(F4-Pad1)"))
  431. )
  432. (module Fuse_Holders_and_Fuses:Fuseholder5x20_horiz_open_inline_Type-I (layer F.Cu) (tedit 5880C3AD) (tstamp 59C4D88E)
  433. (at 98.435001 69.965)
  434. (descr "Fuseholder, 5x20, open, horizontal, Type-I, Inline,")
  435. (tags "Fuseholder 5x20 open horizontal Type-I Inline Sicherungshalter offen ")
  436. (path /59A8AF47)
  437. (fp_text reference F5 (at 10 -5.08) (layer F.SilkS)
  438. (effects (font (size 1 1) (thickness 0.15)))
  439. )
  440. (fp_text value Fuse (at 11.27 5.08) (layer F.Fab)
  441. (effects (font (size 1 1) (thickness 0.15)))
  442. )
  443. (fp_line (start 5 0) (end 15 0) (layer F.Fab) (width 0.1))
  444. (fp_line (start -2 -2.5) (end 22 -2.5) (layer F.Fab) (width 0.1))
  445. (fp_line (start 22 -2.5) (end 22 2.5) (layer F.Fab) (width 0.1))
  446. (fp_line (start 22 2.5) (end -2 2.5) (layer F.Fab) (width 0.1))
  447. (fp_line (start -2 2.5) (end -2 -2.5) (layer F.Fab) (width 0.1))
  448. (fp_line (start 13.35 -3.4) (end 13.35 3.4) (layer F.Fab) (width 0.1))
  449. (fp_line (start 13.35 3.4) (end 22.9 3.4) (layer F.Fab) (width 0.1))
  450. (fp_line (start 22.9 3.4) (end 22.9 -3.4) (layer F.Fab) (width 0.1))
  451. (fp_line (start 22.9 -3.4) (end 13.35 -3.4) (layer F.Fab) (width 0.1))
  452. (fp_line (start -2.95 -3.4) (end 6.65 -3.4) (layer F.Fab) (width 0.1))
  453. (fp_line (start 6.65 -3.4) (end 6.65 3.4) (layer F.Fab) (width 0.1))
  454. (fp_line (start 6.65 3.4) (end -2.9 3.4) (layer F.Fab) (width 0.1))
  455. (fp_line (start -2.9 3.4) (end -2.9 -3.4) (layer F.Fab) (width 0.1))
  456. (fp_line (start 13.25 0) (end 6.75 0) (layer F.SilkS) (width 0.12))
  457. (fp_line (start 13.25 -3.5) (end 13.25 3.5) (layer F.SilkS) (width 0.12))
  458. (fp_line (start 22 3.5) (end 13.25 3.5) (layer F.SilkS) (width 0.12))
  459. (fp_line (start 22 -3.5) (end 13.25 -3.5) (layer F.SilkS) (width 0.12))
  460. (fp_line (start -0.75 2.5) (end -2 2.5) (layer F.SilkS) (width 0.12))
  461. (fp_line (start -0.5 -2.5) (end -2 -2.5) (layer F.SilkS) (width 0.12))
  462. (fp_line (start 11.5 2.5) (end -0.75 2.5) (layer F.SilkS) (width 0.12))
  463. (fp_line (start 11.25 -2.5) (end -0.5 -2.5) (layer F.SilkS) (width 0.12))
  464. (fp_line (start 22 2.5) (end 11.5 2.5) (layer F.SilkS) (width 0.12))
  465. (fp_line (start 22 -2.5) (end 11.25 -2.5) (layer F.SilkS) (width 0.12))
  466. (fp_line (start 22 -2.5) (end 22 2.5) (layer F.SilkS) (width 0.12))
  467. (fp_line (start 23 -3.5) (end 22 -3.5) (layer F.SilkS) (width 0.12))
  468. (fp_line (start 23 -3.5) (end 23 3.5) (layer F.SilkS) (width 0.12))
  469. (fp_line (start 23 3.5) (end 22 3.5) (layer F.SilkS) (width 0.12))
  470. (fp_line (start -2 -2.5) (end -2 2.5) (layer F.SilkS) (width 0.12))
  471. (fp_line (start 6.75 -3.5) (end -3 -3.5) (layer F.SilkS) (width 0.12))
  472. (fp_line (start -3 -3.5) (end -3 3.5) (layer F.SilkS) (width 0.12))
  473. (fp_line (start 6.75 3.5) (end -3 3.5) (layer F.SilkS) (width 0.12))
  474. (fp_line (start 6.75 -3.5) (end 6.75 3.5) (layer F.SilkS) (width 0.12))
  475. (fp_line (start -3.2 -3.65) (end 23.15 -3.65) (layer F.CrtYd) (width 0.05))
  476. (fp_line (start -3.2 -3.65) (end -3.2 3.65) (layer F.CrtYd) (width 0.05))
  477. (fp_line (start 23.15 3.65) (end 23.15 -3.65) (layer F.CrtYd) (width 0.05))
  478. (fp_line (start 23.15 3.65) (end -3.2 3.65) (layer F.CrtYd) (width 0.05))
  479. (pad 2 thru_hole circle (at 15 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  480. (net 9 "Net-(F5-Pad2)"))
  481. (pad 2 thru_hole circle (at 20 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  482. (net 9 "Net-(F5-Pad2)"))
  483. (pad 1 thru_hole circle (at 5 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  484. (net 10 "Net-(F5-Pad1)"))
  485. (pad 1 thru_hole circle (at 0 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  486. (net 10 "Net-(F5-Pad1)"))
  487. )
  488. (module Fuse_Holders_and_Fuses:Fuseholder5x20_horiz_open_inline_Type-I (layer F.Cu) (tedit 5880C3AD) (tstamp 59C4D8BA)
  489. (at 71.035001 95.585)
  490. (descr "Fuseholder, 5x20, open, horizontal, Type-I, Inline,")
  491. (tags "Fuseholder 5x20 open horizontal Type-I Inline Sicherungshalter offen ")
  492. (path /59A81E2A)
  493. (fp_text reference F6 (at 10 -5.08) (layer F.SilkS)
  494. (effects (font (size 1 1) (thickness 0.15)))
  495. )
  496. (fp_text value Fuse (at 11.27 5.08) (layer F.Fab)
  497. (effects (font (size 1 1) (thickness 0.15)))
  498. )
  499. (fp_line (start 5 0) (end 15 0) (layer F.Fab) (width 0.1))
  500. (fp_line (start -2 -2.5) (end 22 -2.5) (layer F.Fab) (width 0.1))
  501. (fp_line (start 22 -2.5) (end 22 2.5) (layer F.Fab) (width 0.1))
  502. (fp_line (start 22 2.5) (end -2 2.5) (layer F.Fab) (width 0.1))
  503. (fp_line (start -2 2.5) (end -2 -2.5) (layer F.Fab) (width 0.1))
  504. (fp_line (start 13.35 -3.4) (end 13.35 3.4) (layer F.Fab) (width 0.1))
  505. (fp_line (start 13.35 3.4) (end 22.9 3.4) (layer F.Fab) (width 0.1))
  506. (fp_line (start 22.9 3.4) (end 22.9 -3.4) (layer F.Fab) (width 0.1))
  507. (fp_line (start 22.9 -3.4) (end 13.35 -3.4) (layer F.Fab) (width 0.1))
  508. (fp_line (start -2.95 -3.4) (end 6.65 -3.4) (layer F.Fab) (width 0.1))
  509. (fp_line (start 6.65 -3.4) (end 6.65 3.4) (layer F.Fab) (width 0.1))
  510. (fp_line (start 6.65 3.4) (end -2.9 3.4) (layer F.Fab) (width 0.1))
  511. (fp_line (start -2.9 3.4) (end -2.9 -3.4) (layer F.Fab) (width 0.1))
  512. (fp_line (start 13.25 0) (end 6.75 0) (layer F.SilkS) (width 0.12))
  513. (fp_line (start 13.25 -3.5) (end 13.25 3.5) (layer F.SilkS) (width 0.12))
  514. (fp_line (start 22 3.5) (end 13.25 3.5) (layer F.SilkS) (width 0.12))
  515. (fp_line (start 22 -3.5) (end 13.25 -3.5) (layer F.SilkS) (width 0.12))
  516. (fp_line (start -0.75 2.5) (end -2 2.5) (layer F.SilkS) (width 0.12))
  517. (fp_line (start -0.5 -2.5) (end -2 -2.5) (layer F.SilkS) (width 0.12))
  518. (fp_line (start 11.5 2.5) (end -0.75 2.5) (layer F.SilkS) (width 0.12))
  519. (fp_line (start 11.25 -2.5) (end -0.5 -2.5) (layer F.SilkS) (width 0.12))
  520. (fp_line (start 22 2.5) (end 11.5 2.5) (layer F.SilkS) (width 0.12))
  521. (fp_line (start 22 -2.5) (end 11.25 -2.5) (layer F.SilkS) (width 0.12))
  522. (fp_line (start 22 -2.5) (end 22 2.5) (layer F.SilkS) (width 0.12))
  523. (fp_line (start 23 -3.5) (end 22 -3.5) (layer F.SilkS) (width 0.12))
  524. (fp_line (start 23 -3.5) (end 23 3.5) (layer F.SilkS) (width 0.12))
  525. (fp_line (start 23 3.5) (end 22 3.5) (layer F.SilkS) (width 0.12))
  526. (fp_line (start -2 -2.5) (end -2 2.5) (layer F.SilkS) (width 0.12))
  527. (fp_line (start 6.75 -3.5) (end -3 -3.5) (layer F.SilkS) (width 0.12))
  528. (fp_line (start -3 -3.5) (end -3 3.5) (layer F.SilkS) (width 0.12))
  529. (fp_line (start 6.75 3.5) (end -3 3.5) (layer F.SilkS) (width 0.12))
  530. (fp_line (start 6.75 -3.5) (end 6.75 3.5) (layer F.SilkS) (width 0.12))
  531. (fp_line (start -3.2 -3.65) (end 23.15 -3.65) (layer F.CrtYd) (width 0.05))
  532. (fp_line (start -3.2 -3.65) (end -3.2 3.65) (layer F.CrtYd) (width 0.05))
  533. (fp_line (start 23.15 3.65) (end 23.15 -3.65) (layer F.CrtYd) (width 0.05))
  534. (fp_line (start 23.15 3.65) (end -3.2 3.65) (layer F.CrtYd) (width 0.05))
  535. (pad 2 thru_hole circle (at 15 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  536. (net 11 "Net-(F6-Pad2)"))
  537. (pad 2 thru_hole circle (at 20 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  538. (net 11 "Net-(F6-Pad2)"))
  539. (pad 1 thru_hole circle (at 5 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  540. (net 12 "Net-(F6-Pad1)"))
  541. (pad 1 thru_hole circle (at 0 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  542. (net 12 "Net-(F6-Pad1)"))
  543. )
  544. (module Fuse_Holders_and_Fuses:Fuseholder5x20_horiz_open_inline_Type-I (layer F.Cu) (tedit 5880C3AD) (tstamp 59C4D8E6)
  545. (at 125.835001 57.155)
  546. (descr "Fuseholder, 5x20, open, horizontal, Type-I, Inline,")
  547. (tags "Fuseholder 5x20 open horizontal Type-I Inline Sicherungshalter offen ")
  548. (path /59A82012)
  549. (fp_text reference F7 (at 10 -5.08) (layer F.SilkS)
  550. (effects (font (size 1 1) (thickness 0.15)))
  551. )
  552. (fp_text value Fuse (at 11.27 5.08) (layer F.Fab)
  553. (effects (font (size 1 1) (thickness 0.15)))
  554. )
  555. (fp_line (start 5 0) (end 15 0) (layer F.Fab) (width 0.1))
  556. (fp_line (start -2 -2.5) (end 22 -2.5) (layer F.Fab) (width 0.1))
  557. (fp_line (start 22 -2.5) (end 22 2.5) (layer F.Fab) (width 0.1))
  558. (fp_line (start 22 2.5) (end -2 2.5) (layer F.Fab) (width 0.1))
  559. (fp_line (start -2 2.5) (end -2 -2.5) (layer F.Fab) (width 0.1))
  560. (fp_line (start 13.35 -3.4) (end 13.35 3.4) (layer F.Fab) (width 0.1))
  561. (fp_line (start 13.35 3.4) (end 22.9 3.4) (layer F.Fab) (width 0.1))
  562. (fp_line (start 22.9 3.4) (end 22.9 -3.4) (layer F.Fab) (width 0.1))
  563. (fp_line (start 22.9 -3.4) (end 13.35 -3.4) (layer F.Fab) (width 0.1))
  564. (fp_line (start -2.95 -3.4) (end 6.65 -3.4) (layer F.Fab) (width 0.1))
  565. (fp_line (start 6.65 -3.4) (end 6.65 3.4) (layer F.Fab) (width 0.1))
  566. (fp_line (start 6.65 3.4) (end -2.9 3.4) (layer F.Fab) (width 0.1))
  567. (fp_line (start -2.9 3.4) (end -2.9 -3.4) (layer F.Fab) (width 0.1))
  568. (fp_line (start 13.25 0) (end 6.75 0) (layer F.SilkS) (width 0.12))
  569. (fp_line (start 13.25 -3.5) (end 13.25 3.5) (layer F.SilkS) (width 0.12))
  570. (fp_line (start 22 3.5) (end 13.25 3.5) (layer F.SilkS) (width 0.12))
  571. (fp_line (start 22 -3.5) (end 13.25 -3.5) (layer F.SilkS) (width 0.12))
  572. (fp_line (start -0.75 2.5) (end -2 2.5) (layer F.SilkS) (width 0.12))
  573. (fp_line (start -0.5 -2.5) (end -2 -2.5) (layer F.SilkS) (width 0.12))
  574. (fp_line (start 11.5 2.5) (end -0.75 2.5) (layer F.SilkS) (width 0.12))
  575. (fp_line (start 11.25 -2.5) (end -0.5 -2.5) (layer F.SilkS) (width 0.12))
  576. (fp_line (start 22 2.5) (end 11.5 2.5) (layer F.SilkS) (width 0.12))
  577. (fp_line (start 22 -2.5) (end 11.25 -2.5) (layer F.SilkS) (width 0.12))
  578. (fp_line (start 22 -2.5) (end 22 2.5) (layer F.SilkS) (width 0.12))
  579. (fp_line (start 23 -3.5) (end 22 -3.5) (layer F.SilkS) (width 0.12))
  580. (fp_line (start 23 -3.5) (end 23 3.5) (layer F.SilkS) (width 0.12))
  581. (fp_line (start 23 3.5) (end 22 3.5) (layer F.SilkS) (width 0.12))
  582. (fp_line (start -2 -2.5) (end -2 2.5) (layer F.SilkS) (width 0.12))
  583. (fp_line (start 6.75 -3.5) (end -3 -3.5) (layer F.SilkS) (width 0.12))
  584. (fp_line (start -3 -3.5) (end -3 3.5) (layer F.SilkS) (width 0.12))
  585. (fp_line (start 6.75 3.5) (end -3 3.5) (layer F.SilkS) (width 0.12))
  586. (fp_line (start 6.75 -3.5) (end 6.75 3.5) (layer F.SilkS) (width 0.12))
  587. (fp_line (start -3.2 -3.65) (end 23.15 -3.65) (layer F.CrtYd) (width 0.05))
  588. (fp_line (start -3.2 -3.65) (end -3.2 3.65) (layer F.CrtYd) (width 0.05))
  589. (fp_line (start 23.15 3.65) (end 23.15 -3.65) (layer F.CrtYd) (width 0.05))
  590. (fp_line (start 23.15 3.65) (end -3.2 3.65) (layer F.CrtYd) (width 0.05))
  591. (pad 2 thru_hole circle (at 15 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  592. (net 13 "Net-(F7-Pad2)"))
  593. (pad 2 thru_hole circle (at 20 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  594. (net 13 "Net-(F7-Pad2)"))
  595. (pad 1 thru_hole circle (at 5 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  596. (net 14 "Net-(F7-Pad1)"))
  597. (pad 1 thru_hole circle (at 0 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  598. (net 14 "Net-(F7-Pad1)"))
  599. )
  600. (module Fuse_Holders_and_Fuses:Fuseholder5x20_horiz_open_inline_Type-I (layer F.Cu) (tedit 5880C3AD) (tstamp 59C4D912)
  601. (at 71.035001 108.395)
  602. (descr "Fuseholder, 5x20, open, horizontal, Type-I, Inline,")
  603. (tags "Fuseholder 5x20 open horizontal Type-I Inline Sicherungshalter offen ")
  604. (path /59A8AF7A)
  605. (fp_text reference F8 (at 10 -5.08) (layer F.SilkS)
  606. (effects (font (size 1 1) (thickness 0.15)))
  607. )
  608. (fp_text value Fuse (at 11.27 5.08) (layer F.Fab)
  609. (effects (font (size 1 1) (thickness 0.15)))
  610. )
  611. (fp_line (start 5 0) (end 15 0) (layer F.Fab) (width 0.1))
  612. (fp_line (start -2 -2.5) (end 22 -2.5) (layer F.Fab) (width 0.1))
  613. (fp_line (start 22 -2.5) (end 22 2.5) (layer F.Fab) (width 0.1))
  614. (fp_line (start 22 2.5) (end -2 2.5) (layer F.Fab) (width 0.1))
  615. (fp_line (start -2 2.5) (end -2 -2.5) (layer F.Fab) (width 0.1))
  616. (fp_line (start 13.35 -3.4) (end 13.35 3.4) (layer F.Fab) (width 0.1))
  617. (fp_line (start 13.35 3.4) (end 22.9 3.4) (layer F.Fab) (width 0.1))
  618. (fp_line (start 22.9 3.4) (end 22.9 -3.4) (layer F.Fab) (width 0.1))
  619. (fp_line (start 22.9 -3.4) (end 13.35 -3.4) (layer F.Fab) (width 0.1))
  620. (fp_line (start -2.95 -3.4) (end 6.65 -3.4) (layer F.Fab) (width 0.1))
  621. (fp_line (start 6.65 -3.4) (end 6.65 3.4) (layer F.Fab) (width 0.1))
  622. (fp_line (start 6.65 3.4) (end -2.9 3.4) (layer F.Fab) (width 0.1))
  623. (fp_line (start -2.9 3.4) (end -2.9 -3.4) (layer F.Fab) (width 0.1))
  624. (fp_line (start 13.25 0) (end 6.75 0) (layer F.SilkS) (width 0.12))
  625. (fp_line (start 13.25 -3.5) (end 13.25 3.5) (layer F.SilkS) (width 0.12))
  626. (fp_line (start 22 3.5) (end 13.25 3.5) (layer F.SilkS) (width 0.12))
  627. (fp_line (start 22 -3.5) (end 13.25 -3.5) (layer F.SilkS) (width 0.12))
  628. (fp_line (start -0.75 2.5) (end -2 2.5) (layer F.SilkS) (width 0.12))
  629. (fp_line (start -0.5 -2.5) (end -2 -2.5) (layer F.SilkS) (width 0.12))
  630. (fp_line (start 11.5 2.5) (end -0.75 2.5) (layer F.SilkS) (width 0.12))
  631. (fp_line (start 11.25 -2.5) (end -0.5 -2.5) (layer F.SilkS) (width 0.12))
  632. (fp_line (start 22 2.5) (end 11.5 2.5) (layer F.SilkS) (width 0.12))
  633. (fp_line (start 22 -2.5) (end 11.25 -2.5) (layer F.SilkS) (width 0.12))
  634. (fp_line (start 22 -2.5) (end 22 2.5) (layer F.SilkS) (width 0.12))
  635. (fp_line (start 23 -3.5) (end 22 -3.5) (layer F.SilkS) (width 0.12))
  636. (fp_line (start 23 -3.5) (end 23 3.5) (layer F.SilkS) (width 0.12))
  637. (fp_line (start 23 3.5) (end 22 3.5) (layer F.SilkS) (width 0.12))
  638. (fp_line (start -2 -2.5) (end -2 2.5) (layer F.SilkS) (width 0.12))
  639. (fp_line (start 6.75 -3.5) (end -3 -3.5) (layer F.SilkS) (width 0.12))
  640. (fp_line (start -3 -3.5) (end -3 3.5) (layer F.SilkS) (width 0.12))
  641. (fp_line (start 6.75 3.5) (end -3 3.5) (layer F.SilkS) (width 0.12))
  642. (fp_line (start 6.75 -3.5) (end 6.75 3.5) (layer F.SilkS) (width 0.12))
  643. (fp_line (start -3.2 -3.65) (end 23.15 -3.65) (layer F.CrtYd) (width 0.05))
  644. (fp_line (start -3.2 -3.65) (end -3.2 3.65) (layer F.CrtYd) (width 0.05))
  645. (fp_line (start 23.15 3.65) (end 23.15 -3.65) (layer F.CrtYd) (width 0.05))
  646. (fp_line (start 23.15 3.65) (end -3.2 3.65) (layer F.CrtYd) (width 0.05))
  647. (pad 2 thru_hole circle (at 15 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  648. (net 15 "Net-(F8-Pad2)"))
  649. (pad 2 thru_hole circle (at 20 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  650. (net 15 "Net-(F8-Pad2)"))
  651. (pad 1 thru_hole circle (at 5 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  652. (net 16 "Net-(F8-Pad1)"))
  653. (pad 1 thru_hole circle (at 0 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  654. (net 16 "Net-(F8-Pad1)"))
  655. )
  656. (module Fuse_Holders_and_Fuses:Fuseholder5x20_horiz_open_inline_Type-I (layer F.Cu) (tedit 5880C3AD) (tstamp 59C4D93E)
  657. (at 98.435001 82.775)
  658. (descr "Fuseholder, 5x20, open, horizontal, Type-I, Inline,")
  659. (tags "Fuseholder 5x20 open horizontal Type-I Inline Sicherungshalter offen ")
  660. (path /59A8AFA7)
  661. (fp_text reference F9 (at 10 -5.08) (layer F.SilkS)
  662. (effects (font (size 1 1) (thickness 0.15)))
  663. )
  664. (fp_text value Fuse (at 11.27 5.08) (layer F.Fab)
  665. (effects (font (size 1 1) (thickness 0.15)))
  666. )
  667. (fp_line (start 5 0) (end 15 0) (layer F.Fab) (width 0.1))
  668. (fp_line (start -2 -2.5) (end 22 -2.5) (layer F.Fab) (width 0.1))
  669. (fp_line (start 22 -2.5) (end 22 2.5) (layer F.Fab) (width 0.1))
  670. (fp_line (start 22 2.5) (end -2 2.5) (layer F.Fab) (width 0.1))
  671. (fp_line (start -2 2.5) (end -2 -2.5) (layer F.Fab) (width 0.1))
  672. (fp_line (start 13.35 -3.4) (end 13.35 3.4) (layer F.Fab) (width 0.1))
  673. (fp_line (start 13.35 3.4) (end 22.9 3.4) (layer F.Fab) (width 0.1))
  674. (fp_line (start 22.9 3.4) (end 22.9 -3.4) (layer F.Fab) (width 0.1))
  675. (fp_line (start 22.9 -3.4) (end 13.35 -3.4) (layer F.Fab) (width 0.1))
  676. (fp_line (start -2.95 -3.4) (end 6.65 -3.4) (layer F.Fab) (width 0.1))
  677. (fp_line (start 6.65 -3.4) (end 6.65 3.4) (layer F.Fab) (width 0.1))
  678. (fp_line (start 6.65 3.4) (end -2.9 3.4) (layer F.Fab) (width 0.1))
  679. (fp_line (start -2.9 3.4) (end -2.9 -3.4) (layer F.Fab) (width 0.1))
  680. (fp_line (start 13.25 0) (end 6.75 0) (layer F.SilkS) (width 0.12))
  681. (fp_line (start 13.25 -3.5) (end 13.25 3.5) (layer F.SilkS) (width 0.12))
  682. (fp_line (start 22 3.5) (end 13.25 3.5) (layer F.SilkS) (width 0.12))
  683. (fp_line (start 22 -3.5) (end 13.25 -3.5) (layer F.SilkS) (width 0.12))
  684. (fp_line (start -0.75 2.5) (end -2 2.5) (layer F.SilkS) (width 0.12))
  685. (fp_line (start -0.5 -2.5) (end -2 -2.5) (layer F.SilkS) (width 0.12))
  686. (fp_line (start 11.5 2.5) (end -0.75 2.5) (layer F.SilkS) (width 0.12))
  687. (fp_line (start 11.25 -2.5) (end -0.5 -2.5) (layer F.SilkS) (width 0.12))
  688. (fp_line (start 22 2.5) (end 11.5 2.5) (layer F.SilkS) (width 0.12))
  689. (fp_line (start 22 -2.5) (end 11.25 -2.5) (layer F.SilkS) (width 0.12))
  690. (fp_line (start 22 -2.5) (end 22 2.5) (layer F.SilkS) (width 0.12))
  691. (fp_line (start 23 -3.5) (end 22 -3.5) (layer F.SilkS) (width 0.12))
  692. (fp_line (start 23 -3.5) (end 23 3.5) (layer F.SilkS) (width 0.12))
  693. (fp_line (start 23 3.5) (end 22 3.5) (layer F.SilkS) (width 0.12))
  694. (fp_line (start -2 -2.5) (end -2 2.5) (layer F.SilkS) (width 0.12))
  695. (fp_line (start 6.75 -3.5) (end -3 -3.5) (layer F.SilkS) (width 0.12))
  696. (fp_line (start -3 -3.5) (end -3 3.5) (layer F.SilkS) (width 0.12))
  697. (fp_line (start 6.75 3.5) (end -3 3.5) (layer F.SilkS) (width 0.12))
  698. (fp_line (start 6.75 -3.5) (end 6.75 3.5) (layer F.SilkS) (width 0.12))
  699. (fp_line (start -3.2 -3.65) (end 23.15 -3.65) (layer F.CrtYd) (width 0.05))
  700. (fp_line (start -3.2 -3.65) (end -3.2 3.65) (layer F.CrtYd) (width 0.05))
  701. (fp_line (start 23.15 3.65) (end 23.15 -3.65) (layer F.CrtYd) (width 0.05))
  702. (fp_line (start 23.15 3.65) (end -3.2 3.65) (layer F.CrtYd) (width 0.05))
  703. (pad 2 thru_hole circle (at 15 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  704. (net 17 "Net-(F9-Pad2)"))
  705. (pad 2 thru_hole circle (at 20 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  706. (net 17 "Net-(F9-Pad2)"))
  707. (pad 1 thru_hole circle (at 5 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  708. (net 18 "Net-(F9-Pad1)"))
  709. (pad 1 thru_hole circle (at 0 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  710. (net 18 "Net-(F9-Pad1)"))
  711. )
  712. (module Fuse_Holders_and_Fuses:Fuseholder5x20_horiz_open_inline_Type-I (layer F.Cu) (tedit 5880C3AD) (tstamp 59C4D96A)
  713. (at 98.435001 108.395)
  714. (descr "Fuseholder, 5x20, open, horizontal, Type-I, Inline,")
  715. (tags "Fuseholder 5x20 open horizontal Type-I Inline Sicherungshalter offen ")
  716. (path /59A8A83E)
  717. (fp_text reference F10 (at 10 -5.08) (layer F.SilkS)
  718. (effects (font (size 1 1) (thickness 0.15)))
  719. )
  720. (fp_text value Fuse (at 11.27 5.08) (layer F.Fab)
  721. (effects (font (size 1 1) (thickness 0.15)))
  722. )
  723. (fp_line (start 5 0) (end 15 0) (layer F.Fab) (width 0.1))
  724. (fp_line (start -2 -2.5) (end 22 -2.5) (layer F.Fab) (width 0.1))
  725. (fp_line (start 22 -2.5) (end 22 2.5) (layer F.Fab) (width 0.1))
  726. (fp_line (start 22 2.5) (end -2 2.5) (layer F.Fab) (width 0.1))
  727. (fp_line (start -2 2.5) (end -2 -2.5) (layer F.Fab) (width 0.1))
  728. (fp_line (start 13.35 -3.4) (end 13.35 3.4) (layer F.Fab) (width 0.1))
  729. (fp_line (start 13.35 3.4) (end 22.9 3.4) (layer F.Fab) (width 0.1))
  730. (fp_line (start 22.9 3.4) (end 22.9 -3.4) (layer F.Fab) (width 0.1))
  731. (fp_line (start 22.9 -3.4) (end 13.35 -3.4) (layer F.Fab) (width 0.1))
  732. (fp_line (start -2.95 -3.4) (end 6.65 -3.4) (layer F.Fab) (width 0.1))
  733. (fp_line (start 6.65 -3.4) (end 6.65 3.4) (layer F.Fab) (width 0.1))
  734. (fp_line (start 6.65 3.4) (end -2.9 3.4) (layer F.Fab) (width 0.1))
  735. (fp_line (start -2.9 3.4) (end -2.9 -3.4) (layer F.Fab) (width 0.1))
  736. (fp_line (start 13.25 0) (end 6.75 0) (layer F.SilkS) (width 0.12))
  737. (fp_line (start 13.25 -3.5) (end 13.25 3.5) (layer F.SilkS) (width 0.12))
  738. (fp_line (start 22 3.5) (end 13.25 3.5) (layer F.SilkS) (width 0.12))
  739. (fp_line (start 22 -3.5) (end 13.25 -3.5) (layer F.SilkS) (width 0.12))
  740. (fp_line (start -0.75 2.5) (end -2 2.5) (layer F.SilkS) (width 0.12))
  741. (fp_line (start -0.5 -2.5) (end -2 -2.5) (layer F.SilkS) (width 0.12))
  742. (fp_line (start 11.5 2.5) (end -0.75 2.5) (layer F.SilkS) (width 0.12))
  743. (fp_line (start 11.25 -2.5) (end -0.5 -2.5) (layer F.SilkS) (width 0.12))
  744. (fp_line (start 22 2.5) (end 11.5 2.5) (layer F.SilkS) (width 0.12))
  745. (fp_line (start 22 -2.5) (end 11.25 -2.5) (layer F.SilkS) (width 0.12))
  746. (fp_line (start 22 -2.5) (end 22 2.5) (layer F.SilkS) (width 0.12))
  747. (fp_line (start 23 -3.5) (end 22 -3.5) (layer F.SilkS) (width 0.12))
  748. (fp_line (start 23 -3.5) (end 23 3.5) (layer F.SilkS) (width 0.12))
  749. (fp_line (start 23 3.5) (end 22 3.5) (layer F.SilkS) (width 0.12))
  750. (fp_line (start -2 -2.5) (end -2 2.5) (layer F.SilkS) (width 0.12))
  751. (fp_line (start 6.75 -3.5) (end -3 -3.5) (layer F.SilkS) (width 0.12))
  752. (fp_line (start -3 -3.5) (end -3 3.5) (layer F.SilkS) (width 0.12))
  753. (fp_line (start 6.75 3.5) (end -3 3.5) (layer F.SilkS) (width 0.12))
  754. (fp_line (start 6.75 -3.5) (end 6.75 3.5) (layer F.SilkS) (width 0.12))
  755. (fp_line (start -3.2 -3.65) (end 23.15 -3.65) (layer F.CrtYd) (width 0.05))
  756. (fp_line (start -3.2 -3.65) (end -3.2 3.65) (layer F.CrtYd) (width 0.05))
  757. (fp_line (start 23.15 3.65) (end 23.15 -3.65) (layer F.CrtYd) (width 0.05))
  758. (fp_line (start 23.15 3.65) (end -3.2 3.65) (layer F.CrtYd) (width 0.05))
  759. (pad 2 thru_hole circle (at 15 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  760. (net 19 "Net-(F10-Pad2)"))
  761. (pad 2 thru_hole circle (at 20 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  762. (net 19 "Net-(F10-Pad2)"))
  763. (pad 1 thru_hole circle (at 5 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  764. (net 20 "Net-(F10-Pad1)"))
  765. (pad 1 thru_hole circle (at 0 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  766. (net 20 "Net-(F10-Pad1)"))
  767. )
  768. (module Fuse_Holders_and_Fuses:Fuseholder5x20_horiz_open_inline_Type-I (layer F.Cu) (tedit 5880C3AD) (tstamp 59C4D996)
  769. (at 98.435001 95.585)
  770. (descr "Fuseholder, 5x20, open, horizontal, Type-I, Inline,")
  771. (tags "Fuseholder 5x20 open horizontal Type-I Inline Sicherungshalter offen ")
  772. (path /59A8A871)
  773. (fp_text reference F11 (at 10 -5.08) (layer F.SilkS)
  774. (effects (font (size 1 1) (thickness 0.15)))
  775. )
  776. (fp_text value Fuse (at 11.27 5.08) (layer F.Fab)
  777. (effects (font (size 1 1) (thickness 0.15)))
  778. )
  779. (fp_line (start 5 0) (end 15 0) (layer F.Fab) (width 0.1))
  780. (fp_line (start -2 -2.5) (end 22 -2.5) (layer F.Fab) (width 0.1))
  781. (fp_line (start 22 -2.5) (end 22 2.5) (layer F.Fab) (width 0.1))
  782. (fp_line (start 22 2.5) (end -2 2.5) (layer F.Fab) (width 0.1))
  783. (fp_line (start -2 2.5) (end -2 -2.5) (layer F.Fab) (width 0.1))
  784. (fp_line (start 13.35 -3.4) (end 13.35 3.4) (layer F.Fab) (width 0.1))
  785. (fp_line (start 13.35 3.4) (end 22.9 3.4) (layer F.Fab) (width 0.1))
  786. (fp_line (start 22.9 3.4) (end 22.9 -3.4) (layer F.Fab) (width 0.1))
  787. (fp_line (start 22.9 -3.4) (end 13.35 -3.4) (layer F.Fab) (width 0.1))
  788. (fp_line (start -2.95 -3.4) (end 6.65 -3.4) (layer F.Fab) (width 0.1))
  789. (fp_line (start 6.65 -3.4) (end 6.65 3.4) (layer F.Fab) (width 0.1))
  790. (fp_line (start 6.65 3.4) (end -2.9 3.4) (layer F.Fab) (width 0.1))
  791. (fp_line (start -2.9 3.4) (end -2.9 -3.4) (layer F.Fab) (width 0.1))
  792. (fp_line (start 13.25 0) (end 6.75 0) (layer F.SilkS) (width 0.12))
  793. (fp_line (start 13.25 -3.5) (end 13.25 3.5) (layer F.SilkS) (width 0.12))
  794. (fp_line (start 22 3.5) (end 13.25 3.5) (layer F.SilkS) (width 0.12))
  795. (fp_line (start 22 -3.5) (end 13.25 -3.5) (layer F.SilkS) (width 0.12))
  796. (fp_line (start -0.75 2.5) (end -2 2.5) (layer F.SilkS) (width 0.12))
  797. (fp_line (start -0.5 -2.5) (end -2 -2.5) (layer F.SilkS) (width 0.12))
  798. (fp_line (start 11.5 2.5) (end -0.75 2.5) (layer F.SilkS) (width 0.12))
  799. (fp_line (start 11.25 -2.5) (end -0.5 -2.5) (layer F.SilkS) (width 0.12))
  800. (fp_line (start 22 2.5) (end 11.5 2.5) (layer F.SilkS) (width 0.12))
  801. (fp_line (start 22 -2.5) (end 11.25 -2.5) (layer F.SilkS) (width 0.12))
  802. (fp_line (start 22 -2.5) (end 22 2.5) (layer F.SilkS) (width 0.12))
  803. (fp_line (start 23 -3.5) (end 22 -3.5) (layer F.SilkS) (width 0.12))
  804. (fp_line (start 23 -3.5) (end 23 3.5) (layer F.SilkS) (width 0.12))
  805. (fp_line (start 23 3.5) (end 22 3.5) (layer F.SilkS) (width 0.12))
  806. (fp_line (start -2 -2.5) (end -2 2.5) (layer F.SilkS) (width 0.12))
  807. (fp_line (start 6.75 -3.5) (end -3 -3.5) (layer F.SilkS) (width 0.12))
  808. (fp_line (start -3 -3.5) (end -3 3.5) (layer F.SilkS) (width 0.12))
  809. (fp_line (start 6.75 3.5) (end -3 3.5) (layer F.SilkS) (width 0.12))
  810. (fp_line (start 6.75 -3.5) (end 6.75 3.5) (layer F.SilkS) (width 0.12))
  811. (fp_line (start -3.2 -3.65) (end 23.15 -3.65) (layer F.CrtYd) (width 0.05))
  812. (fp_line (start -3.2 -3.65) (end -3.2 3.65) (layer F.CrtYd) (width 0.05))
  813. (fp_line (start 23.15 3.65) (end 23.15 -3.65) (layer F.CrtYd) (width 0.05))
  814. (fp_line (start 23.15 3.65) (end -3.2 3.65) (layer F.CrtYd) (width 0.05))
  815. (pad 2 thru_hole circle (at 15 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  816. (net 21 "Net-(F11-Pad2)"))
  817. (pad 2 thru_hole circle (at 20 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  818. (net 21 "Net-(F11-Pad2)"))
  819. (pad 1 thru_hole circle (at 5 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  820. (net 22 "Net-(F11-Pad1)"))
  821. (pad 1 thru_hole circle (at 0 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  822. (net 22 "Net-(F11-Pad1)"))
  823. )
  824. (module Fuse_Holders_and_Fuses:Fuseholder5x20_horiz_open_inline_Type-I (layer F.Cu) (tedit 5880C3AD) (tstamp 59C4D9C2)
  825. (at 71.035001 121.205)
  826. (descr "Fuseholder, 5x20, open, horizontal, Type-I, Inline,")
  827. (tags "Fuseholder 5x20 open horizontal Type-I Inline Sicherungshalter offen ")
  828. (path /59A8AFE0)
  829. (fp_text reference F12 (at 10 -5.08) (layer F.SilkS)
  830. (effects (font (size 1 1) (thickness 0.15)))
  831. )
  832. (fp_text value Fuse (at 11.27 5.08) (layer F.Fab)
  833. (effects (font (size 1 1) (thickness 0.15)))
  834. )
  835. (fp_line (start 5 0) (end 15 0) (layer F.Fab) (width 0.1))
  836. (fp_line (start -2 -2.5) (end 22 -2.5) (layer F.Fab) (width 0.1))
  837. (fp_line (start 22 -2.5) (end 22 2.5) (layer F.Fab) (width 0.1))
  838. (fp_line (start 22 2.5) (end -2 2.5) (layer F.Fab) (width 0.1))
  839. (fp_line (start -2 2.5) (end -2 -2.5) (layer F.Fab) (width 0.1))
  840. (fp_line (start 13.35 -3.4) (end 13.35 3.4) (layer F.Fab) (width 0.1))
  841. (fp_line (start 13.35 3.4) (end 22.9 3.4) (layer F.Fab) (width 0.1))
  842. (fp_line (start 22.9 3.4) (end 22.9 -3.4) (layer F.Fab) (width 0.1))
  843. (fp_line (start 22.9 -3.4) (end 13.35 -3.4) (layer F.Fab) (width 0.1))
  844. (fp_line (start -2.95 -3.4) (end 6.65 -3.4) (layer F.Fab) (width 0.1))
  845. (fp_line (start 6.65 -3.4) (end 6.65 3.4) (layer F.Fab) (width 0.1))
  846. (fp_line (start 6.65 3.4) (end -2.9 3.4) (layer F.Fab) (width 0.1))
  847. (fp_line (start -2.9 3.4) (end -2.9 -3.4) (layer F.Fab) (width 0.1))
  848. (fp_line (start 13.25 0) (end 6.75 0) (layer F.SilkS) (width 0.12))
  849. (fp_line (start 13.25 -3.5) (end 13.25 3.5) (layer F.SilkS) (width 0.12))
  850. (fp_line (start 22 3.5) (end 13.25 3.5) (layer F.SilkS) (width 0.12))
  851. (fp_line (start 22 -3.5) (end 13.25 -3.5) (layer F.SilkS) (width 0.12))
  852. (fp_line (start -0.75 2.5) (end -2 2.5) (layer F.SilkS) (width 0.12))
  853. (fp_line (start -0.5 -2.5) (end -2 -2.5) (layer F.SilkS) (width 0.12))
  854. (fp_line (start 11.5 2.5) (end -0.75 2.5) (layer F.SilkS) (width 0.12))
  855. (fp_line (start 11.25 -2.5) (end -0.5 -2.5) (layer F.SilkS) (width 0.12))
  856. (fp_line (start 22 2.5) (end 11.5 2.5) (layer F.SilkS) (width 0.12))
  857. (fp_line (start 22 -2.5) (end 11.25 -2.5) (layer F.SilkS) (width 0.12))
  858. (fp_line (start 22 -2.5) (end 22 2.5) (layer F.SilkS) (width 0.12))
  859. (fp_line (start 23 -3.5) (end 22 -3.5) (layer F.SilkS) (width 0.12))
  860. (fp_line (start 23 -3.5) (end 23 3.5) (layer F.SilkS) (width 0.12))
  861. (fp_line (start 23 3.5) (end 22 3.5) (layer F.SilkS) (width 0.12))
  862. (fp_line (start -2 -2.5) (end -2 2.5) (layer F.SilkS) (width 0.12))
  863. (fp_line (start 6.75 -3.5) (end -3 -3.5) (layer F.SilkS) (width 0.12))
  864. (fp_line (start -3 -3.5) (end -3 3.5) (layer F.SilkS) (width 0.12))
  865. (fp_line (start 6.75 3.5) (end -3 3.5) (layer F.SilkS) (width 0.12))
  866. (fp_line (start 6.75 -3.5) (end 6.75 3.5) (layer F.SilkS) (width 0.12))
  867. (fp_line (start -3.2 -3.65) (end 23.15 -3.65) (layer F.CrtYd) (width 0.05))
  868. (fp_line (start -3.2 -3.65) (end -3.2 3.65) (layer F.CrtYd) (width 0.05))
  869. (fp_line (start 23.15 3.65) (end 23.15 -3.65) (layer F.CrtYd) (width 0.05))
  870. (fp_line (start 23.15 3.65) (end -3.2 3.65) (layer F.CrtYd) (width 0.05))
  871. (pad 2 thru_hole circle (at 15 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  872. (net 23 "Net-(F12-Pad2)"))
  873. (pad 2 thru_hole circle (at 20 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  874. (net 23 "Net-(F12-Pad2)"))
  875. (pad 1 thru_hole circle (at 5 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  876. (net 24 "Net-(F12-Pad1)"))
  877. (pad 1 thru_hole circle (at 0 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  878. (net 24 "Net-(F12-Pad1)"))
  879. )
  880. (module Fuse_Holders_and_Fuses:Fuseholder5x20_horiz_open_inline_Type-I (layer F.Cu) (tedit 5880C3AD) (tstamp 59C4D9EE)
  881. (at 153.235001 57.155)
  882. (descr "Fuseholder, 5x20, open, horizontal, Type-I, Inline,")
  883. (tags "Fuseholder 5x20 open horizontal Type-I Inline Sicherungshalter offen ")
  884. (path /59A8B013)
  885. (fp_text reference F13 (at 10 -5.08) (layer F.SilkS)
  886. (effects (font (size 1 1) (thickness 0.15)))
  887. )
  888. (fp_text value Fuse (at 11.27 5.08) (layer F.Fab)
  889. (effects (font (size 1 1) (thickness 0.15)))
  890. )
  891. (fp_line (start 5 0) (end 15 0) (layer F.Fab) (width 0.1))
  892. (fp_line (start -2 -2.5) (end 22 -2.5) (layer F.Fab) (width 0.1))
  893. (fp_line (start 22 -2.5) (end 22 2.5) (layer F.Fab) (width 0.1))
  894. (fp_line (start 22 2.5) (end -2 2.5) (layer F.Fab) (width 0.1))
  895. (fp_line (start -2 2.5) (end -2 -2.5) (layer F.Fab) (width 0.1))
  896. (fp_line (start 13.35 -3.4) (end 13.35 3.4) (layer F.Fab) (width 0.1))
  897. (fp_line (start 13.35 3.4) (end 22.9 3.4) (layer F.Fab) (width 0.1))
  898. (fp_line (start 22.9 3.4) (end 22.9 -3.4) (layer F.Fab) (width 0.1))
  899. (fp_line (start 22.9 -3.4) (end 13.35 -3.4) (layer F.Fab) (width 0.1))
  900. (fp_line (start -2.95 -3.4) (end 6.65 -3.4) (layer F.Fab) (width 0.1))
  901. (fp_line (start 6.65 -3.4) (end 6.65 3.4) (layer F.Fab) (width 0.1))
  902. (fp_line (start 6.65 3.4) (end -2.9 3.4) (layer F.Fab) (width 0.1))
  903. (fp_line (start -2.9 3.4) (end -2.9 -3.4) (layer F.Fab) (width 0.1))
  904. (fp_line (start 13.25 0) (end 6.75 0) (layer F.SilkS) (width 0.12))
  905. (fp_line (start 13.25 -3.5) (end 13.25 3.5) (layer F.SilkS) (width 0.12))
  906. (fp_line (start 22 3.5) (end 13.25 3.5) (layer F.SilkS) (width 0.12))
  907. (fp_line (start 22 -3.5) (end 13.25 -3.5) (layer F.SilkS) (width 0.12))
  908. (fp_line (start -0.75 2.5) (end -2 2.5) (layer F.SilkS) (width 0.12))
  909. (fp_line (start -0.5 -2.5) (end -2 -2.5) (layer F.SilkS) (width 0.12))
  910. (fp_line (start 11.5 2.5) (end -0.75 2.5) (layer F.SilkS) (width 0.12))
  911. (fp_line (start 11.25 -2.5) (end -0.5 -2.5) (layer F.SilkS) (width 0.12))
  912. (fp_line (start 22 2.5) (end 11.5 2.5) (layer F.SilkS) (width 0.12))
  913. (fp_line (start 22 -2.5) (end 11.25 -2.5) (layer F.SilkS) (width 0.12))
  914. (fp_line (start 22 -2.5) (end 22 2.5) (layer F.SilkS) (width 0.12))
  915. (fp_line (start 23 -3.5) (end 22 -3.5) (layer F.SilkS) (width 0.12))
  916. (fp_line (start 23 -3.5) (end 23 3.5) (layer F.SilkS) (width 0.12))
  917. (fp_line (start 23 3.5) (end 22 3.5) (layer F.SilkS) (width 0.12))
  918. (fp_line (start -2 -2.5) (end -2 2.5) (layer F.SilkS) (width 0.12))
  919. (fp_line (start 6.75 -3.5) (end -3 -3.5) (layer F.SilkS) (width 0.12))
  920. (fp_line (start -3 -3.5) (end -3 3.5) (layer F.SilkS) (width 0.12))
  921. (fp_line (start 6.75 3.5) (end -3 3.5) (layer F.SilkS) (width 0.12))
  922. (fp_line (start 6.75 -3.5) (end 6.75 3.5) (layer F.SilkS) (width 0.12))
  923. (fp_line (start -3.2 -3.65) (end 23.15 -3.65) (layer F.CrtYd) (width 0.05))
  924. (fp_line (start -3.2 -3.65) (end -3.2 3.65) (layer F.CrtYd) (width 0.05))
  925. (fp_line (start 23.15 3.65) (end 23.15 -3.65) (layer F.CrtYd) (width 0.05))
  926. (fp_line (start 23.15 3.65) (end -3.2 3.65) (layer F.CrtYd) (width 0.05))
  927. (pad 2 thru_hole circle (at 15 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  928. (net 25 "Net-(F13-Pad2)"))
  929. (pad 2 thru_hole circle (at 20 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  930. (net 25 "Net-(F13-Pad2)"))
  931. (pad 1 thru_hole circle (at 5 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  932. (net 26 "Net-(F13-Pad1)"))
  933. (pad 1 thru_hole circle (at 0 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  934. (net 26 "Net-(F13-Pad1)"))
  935. )
  936. (module Fuse_Holders_and_Fuses:Fuseholder5x20_horiz_open_inline_Type-I (layer F.Cu) (tedit 5880C3AD) (tstamp 59C4DA1A)
  937. (at 71.035001 134.015)
  938. (descr "Fuseholder, 5x20, open, horizontal, Type-I, Inline,")
  939. (tags "Fuseholder 5x20 open horizontal Type-I Inline Sicherungshalter offen ")
  940. (path /59A8A8A4)
  941. (fp_text reference F14 (at 10 -5.08) (layer F.SilkS)
  942. (effects (font (size 1 1) (thickness 0.15)))
  943. )
  944. (fp_text value Fuse (at 11.27 5.08) (layer F.Fab)
  945. (effects (font (size 1 1) (thickness 0.15)))
  946. )
  947. (fp_line (start 5 0) (end 15 0) (layer F.Fab) (width 0.1))
  948. (fp_line (start -2 -2.5) (end 22 -2.5) (layer F.Fab) (width 0.1))
  949. (fp_line (start 22 -2.5) (end 22 2.5) (layer F.Fab) (width 0.1))
  950. (fp_line (start 22 2.5) (end -2 2.5) (layer F.Fab) (width 0.1))
  951. (fp_line (start -2 2.5) (end -2 -2.5) (layer F.Fab) (width 0.1))
  952. (fp_line (start 13.35 -3.4) (end 13.35 3.4) (layer F.Fab) (width 0.1))
  953. (fp_line (start 13.35 3.4) (end 22.9 3.4) (layer F.Fab) (width 0.1))
  954. (fp_line (start 22.9 3.4) (end 22.9 -3.4) (layer F.Fab) (width 0.1))
  955. (fp_line (start 22.9 -3.4) (end 13.35 -3.4) (layer F.Fab) (width 0.1))
  956. (fp_line (start -2.95 -3.4) (end 6.65 -3.4) (layer F.Fab) (width 0.1))
  957. (fp_line (start 6.65 -3.4) (end 6.65 3.4) (layer F.Fab) (width 0.1))
  958. (fp_line (start 6.65 3.4) (end -2.9 3.4) (layer F.Fab) (width 0.1))
  959. (fp_line (start -2.9 3.4) (end -2.9 -3.4) (layer F.Fab) (width 0.1))
  960. (fp_line (start 13.25 0) (end 6.75 0) (layer F.SilkS) (width 0.12))
  961. (fp_line (start 13.25 -3.5) (end 13.25 3.5) (layer F.SilkS) (width 0.12))
  962. (fp_line (start 22 3.5) (end 13.25 3.5) (layer F.SilkS) (width 0.12))
  963. (fp_line (start 22 -3.5) (end 13.25 -3.5) (layer F.SilkS) (width 0.12))
  964. (fp_line (start -0.75 2.5) (end -2 2.5) (layer F.SilkS) (width 0.12))
  965. (fp_line (start -0.5 -2.5) (end -2 -2.5) (layer F.SilkS) (width 0.12))
  966. (fp_line (start 11.5 2.5) (end -0.75 2.5) (layer F.SilkS) (width 0.12))
  967. (fp_line (start 11.25 -2.5) (end -0.5 -2.5) (layer F.SilkS) (width 0.12))
  968. (fp_line (start 22 2.5) (end 11.5 2.5) (layer F.SilkS) (width 0.12))
  969. (fp_line (start 22 -2.5) (end 11.25 -2.5) (layer F.SilkS) (width 0.12))
  970. (fp_line (start 22 -2.5) (end 22 2.5) (layer F.SilkS) (width 0.12))
  971. (fp_line (start 23 -3.5) (end 22 -3.5) (layer F.SilkS) (width 0.12))
  972. (fp_line (start 23 -3.5) (end 23 3.5) (layer F.SilkS) (width 0.12))
  973. (fp_line (start 23 3.5) (end 22 3.5) (layer F.SilkS) (width 0.12))
  974. (fp_line (start -2 -2.5) (end -2 2.5) (layer F.SilkS) (width 0.12))
  975. (fp_line (start 6.75 -3.5) (end -3 -3.5) (layer F.SilkS) (width 0.12))
  976. (fp_line (start -3 -3.5) (end -3 3.5) (layer F.SilkS) (width 0.12))
  977. (fp_line (start 6.75 3.5) (end -3 3.5) (layer F.SilkS) (width 0.12))
  978. (fp_line (start 6.75 -3.5) (end 6.75 3.5) (layer F.SilkS) (width 0.12))
  979. (fp_line (start -3.2 -3.65) (end 23.15 -3.65) (layer F.CrtYd) (width 0.05))
  980. (fp_line (start -3.2 -3.65) (end -3.2 3.65) (layer F.CrtYd) (width 0.05))
  981. (fp_line (start 23.15 3.65) (end 23.15 -3.65) (layer F.CrtYd) (width 0.05))
  982. (fp_line (start 23.15 3.65) (end -3.2 3.65) (layer F.CrtYd) (width 0.05))
  983. (pad 2 thru_hole circle (at 15 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  984. (net 27 "Net-(F14-Pad2)"))
  985. (pad 2 thru_hole circle (at 20 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  986. (net 27 "Net-(F14-Pad2)"))
  987. (pad 1 thru_hole circle (at 5 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  988. (net 28 "Net-(F14-Pad1)"))
  989. (pad 1 thru_hole circle (at 0 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  990. (net 28 "Net-(F14-Pad1)"))
  991. )
  992. (module Fuse_Holders_and_Fuses:Fuseholder5x20_horiz_open_inline_Type-I (layer F.Cu) (tedit 5880C3AD) (tstamp 59C4DA46)
  993. (at 125.835001 82.775)
  994. (descr "Fuseholder, 5x20, open, horizontal, Type-I, Inline,")
  995. (tags "Fuseholder 5x20 open horizontal Type-I Inline Sicherungshalter offen ")
  996. (path /59A8A8D1)
  997. (fp_text reference F15 (at 10 -5.08) (layer F.SilkS)
  998. (effects (font (size 1 1) (thickness 0.15)))
  999. )
  1000. (fp_text value Fuse (at 11.27 5.08) (layer F.Fab)
  1001. (effects (font (size 1 1) (thickness 0.15)))
  1002. )
  1003. (fp_line (start 5 0) (end 15 0) (layer F.Fab) (width 0.1))
  1004. (fp_line (start -2 -2.5) (end 22 -2.5) (layer F.Fab) (width 0.1))
  1005. (fp_line (start 22 -2.5) (end 22 2.5) (layer F.Fab) (width 0.1))
  1006. (fp_line (start 22 2.5) (end -2 2.5) (layer F.Fab) (width 0.1))
  1007. (fp_line (start -2 2.5) (end -2 -2.5) (layer F.Fab) (width 0.1))
  1008. (fp_line (start 13.35 -3.4) (end 13.35 3.4) (layer F.Fab) (width 0.1))
  1009. (fp_line (start 13.35 3.4) (end 22.9 3.4) (layer F.Fab) (width 0.1))
  1010. (fp_line (start 22.9 3.4) (end 22.9 -3.4) (layer F.Fab) (width 0.1))
  1011. (fp_line (start 22.9 -3.4) (end 13.35 -3.4) (layer F.Fab) (width 0.1))
  1012. (fp_line (start -2.95 -3.4) (end 6.65 -3.4) (layer F.Fab) (width 0.1))
  1013. (fp_line (start 6.65 -3.4) (end 6.65 3.4) (layer F.Fab) (width 0.1))
  1014. (fp_line (start 6.65 3.4) (end -2.9 3.4) (layer F.Fab) (width 0.1))
  1015. (fp_line (start -2.9 3.4) (end -2.9 -3.4) (layer F.Fab) (width 0.1))
  1016. (fp_line (start 13.25 0) (end 6.75 0) (layer F.SilkS) (width 0.12))
  1017. (fp_line (start 13.25 -3.5) (end 13.25 3.5) (layer F.SilkS) (width 0.12))
  1018. (fp_line (start 22 3.5) (end 13.25 3.5) (layer F.SilkS) (width 0.12))
  1019. (fp_line (start 22 -3.5) (end 13.25 -3.5) (layer F.SilkS) (width 0.12))
  1020. (fp_line (start -0.75 2.5) (end -2 2.5) (layer F.SilkS) (width 0.12))
  1021. (fp_line (start -0.5 -2.5) (end -2 -2.5) (layer F.SilkS) (width 0.12))
  1022. (fp_line (start 11.5 2.5) (end -0.75 2.5) (layer F.SilkS) (width 0.12))
  1023. (fp_line (start 11.25 -2.5) (end -0.5 -2.5) (layer F.SilkS) (width 0.12))
  1024. (fp_line (start 22 2.5) (end 11.5 2.5) (layer F.SilkS) (width 0.12))
  1025. (fp_line (start 22 -2.5) (end 11.25 -2.5) (layer F.SilkS) (width 0.12))
  1026. (fp_line (start 22 -2.5) (end 22 2.5) (layer F.SilkS) (width 0.12))
  1027. (fp_line (start 23 -3.5) (end 22 -3.5) (layer F.SilkS) (width 0.12))
  1028. (fp_line (start 23 -3.5) (end 23 3.5) (layer F.SilkS) (width 0.12))
  1029. (fp_line (start 23 3.5) (end 22 3.5) (layer F.SilkS) (width 0.12))
  1030. (fp_line (start -2 -2.5) (end -2 2.5) (layer F.SilkS) (width 0.12))
  1031. (fp_line (start 6.75 -3.5) (end -3 -3.5) (layer F.SilkS) (width 0.12))
  1032. (fp_line (start -3 -3.5) (end -3 3.5) (layer F.SilkS) (width 0.12))
  1033. (fp_line (start 6.75 3.5) (end -3 3.5) (layer F.SilkS) (width 0.12))
  1034. (fp_line (start 6.75 -3.5) (end 6.75 3.5) (layer F.SilkS) (width 0.12))
  1035. (fp_line (start -3.2 -3.65) (end 23.15 -3.65) (layer F.CrtYd) (width 0.05))
  1036. (fp_line (start -3.2 -3.65) (end -3.2 3.65) (layer F.CrtYd) (width 0.05))
  1037. (fp_line (start 23.15 3.65) (end 23.15 -3.65) (layer F.CrtYd) (width 0.05))
  1038. (fp_line (start 23.15 3.65) (end -3.2 3.65) (layer F.CrtYd) (width 0.05))
  1039. (pad 2 thru_hole circle (at 15 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  1040. (net 29 "Net-(F15-Pad2)"))
  1041. (pad 2 thru_hole circle (at 20 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  1042. (net 29 "Net-(F15-Pad2)"))
  1043. (pad 1 thru_hole circle (at 5 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  1044. (net 30 "Net-(F15-Pad1)"))
  1045. (pad 1 thru_hole circle (at 0 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  1046. (net 30 "Net-(F15-Pad1)"))
  1047. )
  1048. (module Fuse_Holders_and_Fuses:Fuseholder5x20_horiz_open_inline_Type-I (layer F.Cu) (tedit 5880C3AD) (tstamp 59C4DA72)
  1049. (at 153.235001 69.965)
  1050. (descr "Fuseholder, 5x20, open, horizontal, Type-I, Inline,")
  1051. (tags "Fuseholder 5x20 open horizontal Type-I Inline Sicherungshalter offen ")
  1052. (path /59A8B046)
  1053. (fp_text reference F16 (at 10 -5.08) (layer F.SilkS)
  1054. (effects (font (size 1 1) (thickness 0.15)))
  1055. )
  1056. (fp_text value Fuse (at 11.27 5.08) (layer F.Fab)
  1057. (effects (font (size 1 1) (thickness 0.15)))
  1058. )
  1059. (fp_line (start 5 0) (end 15 0) (layer F.Fab) (width 0.1))
  1060. (fp_line (start -2 -2.5) (end 22 -2.5) (layer F.Fab) (width 0.1))
  1061. (fp_line (start 22 -2.5) (end 22 2.5) (layer F.Fab) (width 0.1))
  1062. (fp_line (start 22 2.5) (end -2 2.5) (layer F.Fab) (width 0.1))
  1063. (fp_line (start -2 2.5) (end -2 -2.5) (layer F.Fab) (width 0.1))
  1064. (fp_line (start 13.35 -3.4) (end 13.35 3.4) (layer F.Fab) (width 0.1))
  1065. (fp_line (start 13.35 3.4) (end 22.9 3.4) (layer F.Fab) (width 0.1))
  1066. (fp_line (start 22.9 3.4) (end 22.9 -3.4) (layer F.Fab) (width 0.1))
  1067. (fp_line (start 22.9 -3.4) (end 13.35 -3.4) (layer F.Fab) (width 0.1))
  1068. (fp_line (start -2.95 -3.4) (end 6.65 -3.4) (layer F.Fab) (width 0.1))
  1069. (fp_line (start 6.65 -3.4) (end 6.65 3.4) (layer F.Fab) (width 0.1))
  1070. (fp_line (start 6.65 3.4) (end -2.9 3.4) (layer F.Fab) (width 0.1))
  1071. (fp_line (start -2.9 3.4) (end -2.9 -3.4) (layer F.Fab) (width 0.1))
  1072. (fp_line (start 13.25 0) (end 6.75 0) (layer F.SilkS) (width 0.12))
  1073. (fp_line (start 13.25 -3.5) (end 13.25 3.5) (layer F.SilkS) (width 0.12))
  1074. (fp_line (start 22 3.5) (end 13.25 3.5) (layer F.SilkS) (width 0.12))
  1075. (fp_line (start 22 -3.5) (end 13.25 -3.5) (layer F.SilkS) (width 0.12))
  1076. (fp_line (start -0.75 2.5) (end -2 2.5) (layer F.SilkS) (width 0.12))
  1077. (fp_line (start -0.5 -2.5) (end -2 -2.5) (layer F.SilkS) (width 0.12))
  1078. (fp_line (start 11.5 2.5) (end -0.75 2.5) (layer F.SilkS) (width 0.12))
  1079. (fp_line (start 11.25 -2.5) (end -0.5 -2.5) (layer F.SilkS) (width 0.12))
  1080. (fp_line (start 22 2.5) (end 11.5 2.5) (layer F.SilkS) (width 0.12))
  1081. (fp_line (start 22 -2.5) (end 11.25 -2.5) (layer F.SilkS) (width 0.12))
  1082. (fp_line (start 22 -2.5) (end 22 2.5) (layer F.SilkS) (width 0.12))
  1083. (fp_line (start 23 -3.5) (end 22 -3.5) (layer F.SilkS) (width 0.12))
  1084. (fp_line (start 23 -3.5) (end 23 3.5) (layer F.SilkS) (width 0.12))
  1085. (fp_line (start 23 3.5) (end 22 3.5) (layer F.SilkS) (width 0.12))
  1086. (fp_line (start -2 -2.5) (end -2 2.5) (layer F.SilkS) (width 0.12))
  1087. (fp_line (start 6.75 -3.5) (end -3 -3.5) (layer F.SilkS) (width 0.12))
  1088. (fp_line (start -3 -3.5) (end -3 3.5) (layer F.SilkS) (width 0.12))
  1089. (fp_line (start 6.75 3.5) (end -3 3.5) (layer F.SilkS) (width 0.12))
  1090. (fp_line (start 6.75 -3.5) (end 6.75 3.5) (layer F.SilkS) (width 0.12))
  1091. (fp_line (start -3.2 -3.65) (end 23.15 -3.65) (layer F.CrtYd) (width 0.05))
  1092. (fp_line (start -3.2 -3.65) (end -3.2 3.65) (layer F.CrtYd) (width 0.05))
  1093. (fp_line (start 23.15 3.65) (end 23.15 -3.65) (layer F.CrtYd) (width 0.05))
  1094. (fp_line (start 23.15 3.65) (end -3.2 3.65) (layer F.CrtYd) (width 0.05))
  1095. (pad 2 thru_hole circle (at 15 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  1096. (net 31 "Net-(F16-Pad2)"))
  1097. (pad 2 thru_hole circle (at 20 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  1098. (net 31 "Net-(F16-Pad2)"))
  1099. (pad 1 thru_hole circle (at 5 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  1100. (net 32 "Net-(F16-Pad1)"))
  1101. (pad 1 thru_hole circle (at 0 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  1102. (net 32 "Net-(F16-Pad1)"))
  1103. )
  1104. (module Fuse_Holders_and_Fuses:Fuseholder5x20_horiz_open_inline_Type-I (layer F.Cu) (tedit 5880C3AD) (tstamp 59C4DA9E)
  1105. (at 104.38 27.94)
  1106. (descr "Fuseholder, 5x20, open, horizontal, Type-I, Inline,")
  1107. (tags "Fuseholder 5x20 open horizontal Type-I Inline Sicherungshalter offen ")
  1108. (path /59A8B073)
  1109. (fp_text reference F17 (at 10 -5.08) (layer F.SilkS)
  1110. (effects (font (size 1 1) (thickness 0.15)))
  1111. )
  1112. (fp_text value Fuse (at 11.27 5.08) (layer F.Fab)
  1113. (effects (font (size 1 1) (thickness 0.15)))
  1114. )
  1115. (fp_line (start 5 0) (end 15 0) (layer F.Fab) (width 0.1))
  1116. (fp_line (start -2 -2.5) (end 22 -2.5) (layer F.Fab) (width 0.1))
  1117. (fp_line (start 22 -2.5) (end 22 2.5) (layer F.Fab) (width 0.1))
  1118. (fp_line (start 22 2.5) (end -2 2.5) (layer F.Fab) (width 0.1))
  1119. (fp_line (start -2 2.5) (end -2 -2.5) (layer F.Fab) (width 0.1))
  1120. (fp_line (start 13.35 -3.4) (end 13.35 3.4) (layer F.Fab) (width 0.1))
  1121. (fp_line (start 13.35 3.4) (end 22.9 3.4) (layer F.Fab) (width 0.1))
  1122. (fp_line (start 22.9 3.4) (end 22.9 -3.4) (layer F.Fab) (width 0.1))
  1123. (fp_line (start 22.9 -3.4) (end 13.35 -3.4) (layer F.Fab) (width 0.1))
  1124. (fp_line (start -2.95 -3.4) (end 6.65 -3.4) (layer F.Fab) (width 0.1))
  1125. (fp_line (start 6.65 -3.4) (end 6.65 3.4) (layer F.Fab) (width 0.1))
  1126. (fp_line (start 6.65 3.4) (end -2.9 3.4) (layer F.Fab) (width 0.1))
  1127. (fp_line (start -2.9 3.4) (end -2.9 -3.4) (layer F.Fab) (width 0.1))
  1128. (fp_line (start 13.25 0) (end 6.75 0) (layer F.SilkS) (width 0.12))
  1129. (fp_line (start 13.25 -3.5) (end 13.25 3.5) (layer F.SilkS) (width 0.12))
  1130. (fp_line (start 22 3.5) (end 13.25 3.5) (layer F.SilkS) (width 0.12))
  1131. (fp_line (start 22 -3.5) (end 13.25 -3.5) (layer F.SilkS) (width 0.12))
  1132. (fp_line (start -0.75 2.5) (end -2 2.5) (layer F.SilkS) (width 0.12))
  1133. (fp_line (start -0.5 -2.5) (end -2 -2.5) (layer F.SilkS) (width 0.12))
  1134. (fp_line (start 11.5 2.5) (end -0.75 2.5) (layer F.SilkS) (width 0.12))
  1135. (fp_line (start 11.25 -2.5) (end -0.5 -2.5) (layer F.SilkS) (width 0.12))
  1136. (fp_line (start 22 2.5) (end 11.5 2.5) (layer F.SilkS) (width 0.12))
  1137. (fp_line (start 22 -2.5) (end 11.25 -2.5) (layer F.SilkS) (width 0.12))
  1138. (fp_line (start 22 -2.5) (end 22 2.5) (layer F.SilkS) (width 0.12))
  1139. (fp_line (start 23 -3.5) (end 22 -3.5) (layer F.SilkS) (width 0.12))
  1140. (fp_line (start 23 -3.5) (end 23 3.5) (layer F.SilkS) (width 0.12))
  1141. (fp_line (start 23 3.5) (end 22 3.5) (layer F.SilkS) (width 0.12))
  1142. (fp_line (start -2 -2.5) (end -2 2.5) (layer F.SilkS) (width 0.12))
  1143. (fp_line (start 6.75 -3.5) (end -3 -3.5) (layer F.SilkS) (width 0.12))
  1144. (fp_line (start -3 -3.5) (end -3 3.5) (layer F.SilkS) (width 0.12))
  1145. (fp_line (start 6.75 3.5) (end -3 3.5) (layer F.SilkS) (width 0.12))
  1146. (fp_line (start 6.75 -3.5) (end 6.75 3.5) (layer F.SilkS) (width 0.12))
  1147. (fp_line (start -3.2 -3.65) (end 23.15 -3.65) (layer F.CrtYd) (width 0.05))
  1148. (fp_line (start -3.2 -3.65) (end -3.2 3.65) (layer F.CrtYd) (width 0.05))
  1149. (fp_line (start 23.15 3.65) (end 23.15 -3.65) (layer F.CrtYd) (width 0.05))
  1150. (fp_line (start 23.15 3.65) (end -3.2 3.65) (layer F.CrtYd) (width 0.05))
  1151. (pad 2 thru_hole circle (at 15 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  1152. (net 33 "Net-(F17-Pad2)"))
  1153. (pad 2 thru_hole circle (at 20 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  1154. (net 33 "Net-(F17-Pad2)"))
  1155. (pad 1 thru_hole circle (at 5 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  1156. (net 34 "Net-(F17-Pad1)"))
  1157. (pad 1 thru_hole circle (at 0 0) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
  1158. (net 34 "Net-(F17-Pad1)"))
  1159. )
  1160. (module PartsLibraries:PowerConnectorRound (layer F.Cu) (tedit 59AECA0D) (tstamp 59C4DAA3)
  1161. (at 182.98 135.62)
  1162. (path /59A80685)
  1163. (fp_text reference J1 (at 0.254 -2.794) (layer F.SilkS)
  1164. (effects (font (size 1 1) (thickness 0.15)))
  1165. )
  1166. (fp_text value IN (at 0 6.35) (layer F.Fab)
  1167. (effects (font (size 1 1) (thickness 0.15)))
  1168. )
  1169. (pad 1 thru_hole circle (at 0 0) (size 10 10) (drill 4.3) (layers *.Cu *.Mask)
  1170. (net 1 "Net-(F1-Pad2)"))
  1171. )
  1172. (module PartsLibraries:PowerConnectorRound (layer F.Cu) (tedit 59AECA0D) (tstamp 59C4DAA8)
  1173. (at 215.41 69.52)
  1174. (path /59A7F5EE)
  1175. (fp_text reference J2 (at 0.254 -2.794) (layer F.SilkS)
  1176. (effects (font (size 1 1) (thickness 0.15)))
  1177. )
  1178. (fp_text value IN (at 0 6.35) (layer F.Fab)
  1179. (effects (font (size 1 1) (thickness 0.15)))
  1180. )
  1181. (pad 1 thru_hole circle (at 0 0) (size 10 10) (drill 4.3) (layers *.Cu *.Mask)
  1182. (net 3 "Net-(F2-Pad2)"))
  1183. )
  1184. (module PartsLibraries:PowerConnectorRound (layer F.Cu) (tedit 59AECA0D) (tstamp 59C4DAAD)
  1185. (at 215.26 56.3)
  1186. (path /59A8193D)
  1187. (fp_text reference J3 (at 0.254 -2.794) (layer F.SilkS)
  1188. (effects (font (size 1 1) (thickness 0.15)))
  1189. )
  1190. (fp_text value IN (at 0 6.35) (layer F.Fab)
  1191. (effects (font (size 1 1) (thickness 0.15)))
  1192. )
  1193. (pad 1 thru_hole circle (at 0 0) (size 10 10) (drill 4.3) (layers *.Cu *.Mask)
  1194. (net 5 "Net-(F3-Pad2)"))
  1195. )
  1196. (module PartsLibraries:PowerConnectorRound (layer F.Cu) (tedit 59AECA0D) (tstamp 59C4DAB2)
  1197. (at 193.41 69.52)
  1198. (path /59A8AF1A)
  1199. (fp_text reference J4 (at 0.254 -2.794) (layer F.SilkS)
  1200. (effects (font (size 1 1) (thickness 0.15)))
  1201. )
  1202. (fp_text value IN (at 0 6.35) (layer F.Fab)
  1203. (effects (font (size 1 1) (thickness 0.15)))
  1204. )
  1205. (pad 1 thru_hole circle (at 0 0) (size 10 10) (drill 4.3) (layers *.Cu *.Mask)
  1206. (net 7 "Net-(F4-Pad2)"))
  1207. )
  1208. (module PartsLibraries:PowerConnectorRound (layer F.Cu) (tedit 59AECA0D) (tstamp 59C4DAB7)
  1209. (at 204.26 56.3)
  1210. (path /59A8AF4D)
  1211. (fp_text reference J5 (at 0.254 -2.794) (layer F.SilkS)
  1212. (effects (font (size 1 1) (thickness 0.15)))
  1213. )
  1214. (fp_text value IN (at 0 6.35) (layer F.Fab)
  1215. (effects (font (size 1 1) (thickness 0.15)))
  1216. )
  1217. (pad 1 thru_hole circle (at 0 0) (size 10 10) (drill 4.3) (layers *.Cu *.Mask)
  1218. (net 9 "Net-(F5-Pad2)"))
  1219. )
  1220. (module PartsLibraries:PowerConnectorRound (layer F.Cu) (tedit 59AECA0D) (tstamp 59C4DABC)
  1221. (at 138.98 114.31)
  1222. (path /59A8068B)
  1223. (fp_text reference J6 (at 0.254 -2.794) (layer F.SilkS)
  1224. (effects (font (size 1 1) (thickness 0.15)))
  1225. )
  1226. (fp_text value OUT (at 0 6.35) (layer F.Fab)
  1227. (effects (font (size 1 1) (thickness 0.15)))
  1228. )
  1229. (pad 1 thru_hole circle (at 0 0) (size 10 10) (drill 4.3) (layers *.Cu *.Mask)
  1230. (net 2 GND))
  1231. )
  1232. (module PartsLibraries:PowerConnectorRound (layer F.Cu) (tedit 59AECA0D) (tstamp 59C4DAC1)
  1233. (at 155.53 101.5)
  1234. (path /59A7F611)
  1235. (fp_text reference J7 (at 0.254 -2.794) (layer F.SilkS)
  1236. (effects (font (size 1 1) (thickness 0.15)))
  1237. )
  1238. (fp_text value OUT (at 0 6.35) (layer F.Fab)
  1239. (effects (font (size 1 1) (thickness 0.15)))
  1240. )
  1241. (pad 1 thru_hole circle (at 0 0) (size 10 10) (drill 4.3) (layers *.Cu *.Mask)
  1242. (net 4 "Net-(F2-Pad1)"))
  1243. )
  1244. (module PartsLibraries:PowerConnectorRound (layer F.Cu) (tedit 59AECA0D) (tstamp 59C4DAC6)
  1245. (at 172.6 92.19)
  1246. (path /59A81943)
  1247. (fp_text reference J8 (at 0.254 -2.794) (layer F.SilkS)
  1248. (effects (font (size 1 1) (thickness 0.15)))
  1249. )
  1250. (fp_text value OUT (at 0 6.35) (layer F.Fab)
  1251. (effects (font (size 1 1) (thickness 0.15)))
  1252. )
  1253. (pad 1 thru_hole circle (at 0 0) (size 10 10) (drill 4.3) (layers *.Cu *.Mask)
  1254. (net 6 "Net-(F3-Pad1)"))
  1255. )
  1256. (module PartsLibraries:PowerConnectorRound (layer F.Cu) (tedit 59AECA0D) (tstamp 59C4DACB)
  1257. (at 149.98 114.72)
  1258. (path /59A8AF20)
  1259. (fp_text reference J9 (at 0.254 -2.794) (layer F.SilkS)
  1260. (effects (font (size 1 1) (thickness 0.15)))
  1261. )
  1262. (fp_text value OUT (at 0 6.35) (layer F.Fab)
  1263. (effects (font (size 1 1) (thickness 0.15)))
  1264. )
  1265. (pad 1 thru_hole circle (at 0 0) (size 10 10) (drill 4.3) (layers *.Cu *.Mask)
  1266. (net 8 "Net-(F4-Pad1)"))
  1267. )
  1268. (module PartsLibraries:PowerConnectorRound (layer F.Cu) (tedit 59AECA0D) (tstamp 59C4DAD0)
  1269. (at 138.98 127.53)
  1270. (path /59A8AF53)
  1271. (fp_text reference J10 (at 0.254 -2.794) (layer F.SilkS)
  1272. (effects (font (size 1 1) (thickness 0.15)))
  1273. )
  1274. (fp_text value OUT (at 0 6.35) (layer F.Fab)
  1275. (effects (font (size 1 1) (thickness 0.15)))
  1276. )
  1277. (pad 1 thru_hole circle (at 0 0) (size 10 10) (drill 4.3) (layers *.Cu *.Mask)
  1278. (net 10 "Net-(F5-Pad1)"))
  1279. )
  1280. (module PartsLibraries:RJ45 (layer F.Cu) (tedit 59511D7C) (tstamp 59C4DAE8)
  1281. (at 120.495001 119.435001)
  1282. (tags RJ45)
  1283. (path /59C3DA36)
  1284. (fp_text reference J11 (at 4.7 11.18) (layer F.SilkS)
  1285. (effects (font (size 1 1) (thickness 0.15)))
  1286. )
  1287. (fp_text value RJ45 (at 4.59 6.25) (layer F.Fab)
  1288. (effects (font (size 1 1) (thickness 0.15)))
  1289. )
  1290. (fp_line (start -3.17 14.22) (end 12.07 14.22) (layer F.SilkS) (width 0.12))
  1291. (fp_line (start 12.07 -3.81) (end 12.06 5.18) (layer F.SilkS) (width 0.12))
  1292. (fp_line (start 12.07 -3.81) (end -3.17 -3.81) (layer F.SilkS) (width 0.12))
  1293. (fp_line (start -3.17 -3.81) (end -3.17 5.19) (layer F.SilkS) (width 0.12))
  1294. (fp_line (start 12.06 7.52) (end 12.07 14.22) (layer F.SilkS) (width 0.12))
  1295. (fp_line (start -3.17 7.51) (end -3.17 14.22) (layer F.SilkS) (width 0.12))
  1296. (fp_line (start -3.56 -4.06) (end 12.46 -4.06) (layer F.CrtYd) (width 0.05))
  1297. (fp_line (start -3.56 -4.06) (end -3.56 14.47) (layer F.CrtYd) (width 0.05))
  1298. (fp_line (start 12.46 14.47) (end 12.46 -4.06) (layer F.CrtYd) (width 0.05))
  1299. (fp_line (start 12.46 14.47) (end -3.56 14.47) (layer F.CrtYd) (width 0.05))
  1300. (pad "" np_thru_hole circle (at 10.16 6.35) (size 3.65 3.65) (drill 3.25) (layers *.Cu *.SilkS *.Mask))
  1301. (pad "" np_thru_hole circle (at -1.27 6.35) (size 3.65 3.65) (drill 3.25) (layers *.Cu *.SilkS *.Mask))
  1302. (pad 1 thru_hole rect (at 0 0) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
  1303. (net 35 CUR_9))
  1304. (pad 2 thru_hole circle (at 1.27 -2.54) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
  1305. (net 36 CUR_10))
  1306. (pad 3 thru_hole circle (at 2.54 0) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
  1307. (net 37 CUR_11))
  1308. (pad 4 thru_hole circle (at 3.81 -2.54) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
  1309. (net 38 CUR_12))
  1310. (pad 5 thru_hole circle (at 5.08 0) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
  1311. (net 39 CUR_13))
  1312. (pad 6 thru_hole circle (at 6.35 -2.54) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
  1313. (net 40 CUR_14))
  1314. (pad 7 thru_hole circle (at 7.62 0) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
  1315. (net 41 CUR_15))
  1316. (pad 8 thru_hole circle (at 8.89 -2.54) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
  1317. (net 42 CUR_16))
  1318. (model ../../../../../../Development/multilevelinverter/Hardware/3D/RJ45.wrl
  1319. (at (xyz 0.175 -0.667 0.3))
  1320. (scale (xyz 10 10 10))
  1321. (rotate (xyz 270 0 0))
  1322. )
  1323. )
  1324. (module PartsLibraries:PowerConnectorRound (layer F.Cu) (tedit 59AECA0D) (tstamp 59C4DAED)
  1325. (at 160.98 118.63)
  1326. (path /59A81E30)
  1327. (fp_text reference J12 (at 0.254 -2.794) (layer F.SilkS)
  1328. (effects (font (size 1 1) (thickness 0.15)))
  1329. )
  1330. (fp_text value IN (at 0 6.35) (layer F.Fab)
  1331. (effects (font (size 1 1) (thickness 0.15)))
  1332. )
  1333. (pad 1 thru_hole circle (at 0 0) (size 10 10) (drill 4.3) (layers *.Cu *.Mask)
  1334. (net 11 "Net-(F6-Pad2)"))
  1335. )
  1336. (module PartsLibraries:PowerConnectorRound (layer F.Cu) (tedit 59AECA0D) (tstamp 59C4DAF2)
  1337. (at 193.26 56.3)
  1338. (path /59A82018)
  1339. (fp_text reference J13 (at 0.254 -2.794) (layer F.SilkS)
  1340. (effects (font (size 1 1) (thickness 0.15)))
  1341. )
  1342. (fp_text value IN (at 0 6.35) (layer F.Fab)
  1343. (effects (font (size 1 1) (thickness 0.15)))
  1344. )
  1345. (pad 1 thru_hole circle (at 0 0) (size 10 10) (drill 4.3) (layers *.Cu *.Mask)
  1346. (net 13 "Net-(F7-Pad2)"))
  1347. )
  1348. (module PartsLibraries:PowerConnectorRound (layer F.Cu) (tedit 59AECA0D) (tstamp 59C4DAF7)
  1349. (at 166.53 105.41)
  1350. (path /59A8AF80)
  1351. (fp_text reference J14 (at 0.254 -2.794) (layer F.SilkS)
  1352. (effects (font (size 1 1) (thickness 0.15)))
  1353. )
  1354. (fp_text value IN (at 0 6.35) (layer F.Fab)
  1355. (effects (font (size 1 1) (thickness 0.15)))
  1356. )
  1357. (pad 1 thru_hole circle (at 0 0) (size 10 10) (drill 4.3) (layers *.Cu *.Mask)
  1358. (net 15 "Net-(F8-Pad2)"))
  1359. )
  1360. (module PartsLibraries:PowerConnectorRound (layer F.Cu) (tedit 59AECA0D) (tstamp 59C4DAFC)
  1361. (at 204.41 69.52)
  1362. (path /59A8AFAD)
  1363. (fp_text reference J15 (at 0.254 -2.794) (layer F.SilkS)
  1364. (effects (font (size 1 1) (thickness 0.15)))
  1365. )
  1366. (fp_text value IN (at 0 6.35) (layer F.Fab)
  1367. (effects (font (size 1 1) (thickness 0.15)))
  1368. )
  1369. (pad 1 thru_hole circle (at 0 0) (size 10 10) (drill 4.3) (layers *.Cu *.Mask)
  1370. (net 17 "Net-(F9-Pad2)"))
  1371. )
  1372. (module PartsLibraries:PowerConnectorRound (layer F.Cu) (tedit 59AECA0D) (tstamp 59C4DB01)
  1373. (at 193.41 82.74)
  1374. (path /59A81E36)
  1375. (fp_text reference J16 (at 0.254 -2.794) (layer F.SilkS)
  1376. (effects (font (size 1 1) (thickness 0.15)))
  1377. )
  1378. (fp_text value OUT (at 0 6.35) (layer F.Fab)
  1379. (effects (font (size 1 1) (thickness 0.15)))
  1380. )
  1381. (pad 1 thru_hole circle (at 0 0) (size 10 10) (drill 4.3) (layers *.Cu *.Mask)
  1382. (net 12 "Net-(F6-Pad1)"))
  1383. )
  1384. (module PartsLibraries:PowerConnectorRound (layer F.Cu) (tedit 59AECA0D) (tstamp 59C4DB06)
  1385. (at 149.98 127.94)
  1386. (path /59A8201E)
  1387. (fp_text reference J17 (at 0.254 -2.794) (layer F.SilkS)
  1388. (effects (font (size 1 1) (thickness 0.15)))
  1389. )
  1390. (fp_text value OUT (at 0 6.35) (layer F.Fab)
  1391. (effects (font (size 1 1) (thickness 0.15)))
  1392. )
  1393. (pad 1 thru_hole circle (at 0 0) (size 10 10) (drill 4.3) (layers *.Cu *.Mask)
  1394. (net 14 "Net-(F7-Pad1)"))
  1395. )
  1396. (module PartsLibraries:PowerConnectorRound (layer F.Cu) (tedit 59AECA0D) (tstamp 59C4DB0B)
  1397. (at 177.53 105.41)
  1398. (path /59A8AF86)
  1399. (fp_text reference J18 (at 0.254 -2.794) (layer F.SilkS)
  1400. (effects (font (size 1 1) (thickness 0.15)))
  1401. )
  1402. (fp_text value OUT (at 0 6.35) (layer F.Fab)
  1403. (effects (font (size 1 1) (thickness 0.15)))
  1404. )
  1405. (pad 1 thru_hole circle (at 0 0) (size 10 10) (drill 4.3) (layers *.Cu *.Mask)
  1406. (net 16 "Net-(F8-Pad1)"))
  1407. )
  1408. (module PartsLibraries:PowerConnectorRound (layer F.Cu) (tedit 59AECA0D) (tstamp 59C4DB10)
  1409. (at 226.26 56.3)
  1410. (path /59A8AFB3)
  1411. (fp_text reference J19 (at 0.254 -2.794) (layer F.SilkS)
  1412. (effects (font (size 1 1) (thickness 0.15)))
  1413. )
  1414. (fp_text value OUT (at 0 6.35) (layer F.Fab)
  1415. (effects (font (size 1 1) (thickness 0.15)))
  1416. )
  1417. (pad 1 thru_hole circle (at 0 0) (size 10 10) (drill 4.3) (layers *.Cu *.Mask)
  1418. (net 18 "Net-(F9-Pad1)"))
  1419. )
  1420. (module PartsLibraries:RJ45 (layer F.Cu) (tedit 59511D7C) (tstamp 59C4DB28)
  1421. (at 137.045001 93.815001)
  1422. (tags RJ45)
  1423. (path /59C3C803)
  1424. (fp_text reference J20 (at 4.7 11.18) (layer F.SilkS)
  1425. (effects (font (size 1 1) (thickness 0.15)))
  1426. )
  1427. (fp_text value RJ45 (at 4.59 6.25) (layer F.Fab)
  1428. (effects (font (size 1 1) (thickness 0.15)))
  1429. )
  1430. (fp_line (start -3.17 14.22) (end 12.07 14.22) (layer F.SilkS) (width 0.12))
  1431. (fp_line (start 12.07 -3.81) (end 12.06 5.18) (layer F.SilkS) (width 0.12))
  1432. (fp_line (start 12.07 -3.81) (end -3.17 -3.81) (layer F.SilkS) (width 0.12))
  1433. (fp_line (start -3.17 -3.81) (end -3.17 5.19) (layer F.SilkS) (width 0.12))
  1434. (fp_line (start 12.06 7.52) (end 12.07 14.22) (layer F.SilkS) (width 0.12))
  1435. (fp_line (start -3.17 7.51) (end -3.17 14.22) (layer F.SilkS) (width 0.12))
  1436. (fp_line (start -3.56 -4.06) (end 12.46 -4.06) (layer F.CrtYd) (width 0.05))
  1437. (fp_line (start -3.56 -4.06) (end -3.56 14.47) (layer F.CrtYd) (width 0.05))
  1438. (fp_line (start 12.46 14.47) (end 12.46 -4.06) (layer F.CrtYd) (width 0.05))
  1439. (fp_line (start 12.46 14.47) (end -3.56 14.47) (layer F.CrtYd) (width 0.05))
  1440. (pad "" np_thru_hole circle (at 10.16 6.35) (size 3.65 3.65) (drill 3.25) (layers *.Cu *.SilkS *.Mask))
  1441. (pad "" np_thru_hole circle (at -1.27 6.35) (size 3.65 3.65) (drill 3.25) (layers *.Cu *.SilkS *.Mask))
  1442. (pad 1 thru_hole rect (at 0 0) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
  1443. (net 43 CUR_1))
  1444. (pad 2 thru_hole circle (at 1.27 -2.54) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
  1445. (net 44 CUR_2))
  1446. (pad 3 thru_hole circle (at 2.54 0) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
  1447. (net 45 CUR_3))
  1448. (pad 4 thru_hole circle (at 3.81 -2.54) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
  1449. (net 46 CUR_4))
  1450. (pad 5 thru_hole circle (at 5.08 0) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
  1451. (net 47 CUR_5))
  1452. (pad 6 thru_hole circle (at 6.35 -2.54) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
  1453. (net 48 CUR_6))
  1454. (pad 7 thru_hole circle (at 7.62 0) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
  1455. (net 49 CUR_7))
  1456. (pad 8 thru_hole circle (at 8.89 -2.54) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
  1457. (net 50 CUR_8))
  1458. (model ../../../../../../Development/multilevelinverter/Hardware/3D/RJ45.wrl
  1459. (at (xyz 0.175 -0.667 0.3))
  1460. (scale (xyz 10 10 10))
  1461. (rotate (xyz 270 0 0))
  1462. )
  1463. )
  1464. (module PartsLibraries:RJ45 (layer F.Cu) (tedit 59511D7C) (tstamp 59C4DB40)
  1465. (at 154.115001 81.005001)
  1466. (tags RJ45)
  1467. (path /59A7FB58)
  1468. (fp_text reference J21 (at 4.7 11.18) (layer F.SilkS)
  1469. (effects (font (size 1 1) (thickness 0.15)))
  1470. )
  1471. (fp_text value RJ45 (at 4.59 6.25) (layer F.Fab)
  1472. (effects (font (size 1 1) (thickness 0.15)))
  1473. )
  1474. (fp_line (start -3.17 14.22) (end 12.07 14.22) (layer F.SilkS) (width 0.12))
  1475. (fp_line (start 12.07 -3.81) (end 12.06 5.18) (layer F.SilkS) (width 0.12))
  1476. (fp_line (start 12.07 -3.81) (end -3.17 -3.81) (layer F.SilkS) (width 0.12))
  1477. (fp_line (start -3.17 -3.81) (end -3.17 5.19) (layer F.SilkS) (width 0.12))
  1478. (fp_line (start 12.06 7.52) (end 12.07 14.22) (layer F.SilkS) (width 0.12))
  1479. (fp_line (start -3.17 7.51) (end -3.17 14.22) (layer F.SilkS) (width 0.12))
  1480. (fp_line (start -3.56 -4.06) (end 12.46 -4.06) (layer F.CrtYd) (width 0.05))
  1481. (fp_line (start -3.56 -4.06) (end -3.56 14.47) (layer F.CrtYd) (width 0.05))
  1482. (fp_line (start 12.46 14.47) (end 12.46 -4.06) (layer F.CrtYd) (width 0.05))
  1483. (fp_line (start 12.46 14.47) (end -3.56 14.47) (layer F.CrtYd) (width 0.05))
  1484. (pad "" np_thru_hole circle (at 10.16 6.35) (size 3.65 3.65) (drill 3.25) (layers *.Cu *.SilkS *.Mask))
  1485. (pad "" np_thru_hole circle (at -1.27 6.35) (size 3.65 3.65) (drill 3.25) (layers *.Cu *.SilkS *.Mask))
  1486. (pad 1 thru_hole rect (at 0 0) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask))
  1487. (pad 2 thru_hole circle (at 1.27 -2.54) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
  1488. (net 51 ARD_5V))
  1489. (pad 3 thru_hole circle (at 2.54 0) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask))
  1490. (pad 4 thru_hole circle (at 3.81 -2.54) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask))
  1491. (pad 5 thru_hole circle (at 5.08 0) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask))
  1492. (pad 6 thru_hole circle (at 6.35 -2.54) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask))
  1493. (pad 7 thru_hole circle (at 7.62 0) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask))
  1494. (pad 8 thru_hole circle (at 8.89 -2.54) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask))
  1495. (model ../../../../../../Development/multilevelinverter/Hardware/3D/RJ45.wrl
  1496. (at (xyz 0.175 -0.667 0.3))
  1497. (scale (xyz 10 10 10))
  1498. (rotate (xyz 270 0 0))
  1499. )
  1500. )
  1501. (module PartsLibraries:PowerConnectorRound (layer F.Cu) (tedit 59AECA0D) (tstamp 59C4DB45)
  1502. (at 221.53 95.96)
  1503. (path /59A8A844)
  1504. (fp_text reference J22 (at 0.254 -2.794) (layer F.SilkS)
  1505. (effects (font (size 1 1) (thickness 0.15)))
  1506. )
  1507. (fp_text value IN (at 0 6.35) (layer F.Fab)
  1508. (effects (font (size 1 1) (thickness 0.15)))
  1509. )
  1510. (pad 1 thru_hole circle (at 0 0) (size 10 10) (drill 4.3) (layers *.Cu *.Mask)
  1511. (net 19 "Net-(F10-Pad2)"))
  1512. )
  1513. (module PartsLibraries:PowerConnectorRound (layer F.Cu) (tedit 59AECA0D) (tstamp 59C4DB4A)
  1514. (at 193.98 122.4)
  1515. (path /59A8A877)
  1516. (fp_text reference J23 (at 0.254 -2.794) (layer F.SilkS)
  1517. (effects (font (size 1 1) (thickness 0.15)))
  1518. )
  1519. (fp_text value IN (at 0 6.35) (layer F.Fab)
  1520. (effects (font (size 1 1) (thickness 0.15)))
  1521. )
  1522. (pad 1 thru_hole circle (at 0 0) (size 10 10) (drill 4.3) (layers *.Cu *.Mask)
  1523. (net 21 "Net-(F11-Pad2)"))
  1524. )
  1525. (module PartsLibraries:PowerConnectorRound (layer F.Cu) (tedit 59AECA0D) (tstamp 59C4DB4F)
  1526. (at 182.98 122.4)
  1527. (path /59A8AFE6)
  1528. (fp_text reference J24 (at 0.254 -2.794) (layer F.SilkS)
  1529. (effects (font (size 1 1) (thickness 0.15)))
  1530. )
  1531. (fp_text value IN (at 0 6.35) (layer F.Fab)
  1532. (effects (font (size 1 1) (thickness 0.15)))
  1533. )
  1534. (pad 1 thru_hole circle (at 0 0) (size 10 10) (drill 4.3) (layers *.Cu *.Mask)
  1535. (net 23 "Net-(F12-Pad2)"))
  1536. )
  1537. (module PartsLibraries:PowerConnectorRound (layer F.Cu) (tedit 59AECA0D) (tstamp 59C4DB54)
  1538. (at 226.41 82.74)
  1539. (path /59A8B019)
  1540. (fp_text reference J25 (at 0.254 -2.794) (layer F.SilkS)
  1541. (effects (font (size 1 1) (thickness 0.15)))
  1542. )
  1543. (fp_text value IN (at 0 6.35) (layer F.Fab)
  1544. (effects (font (size 1 1) (thickness 0.15)))
  1545. )
  1546. (pad 1 thru_hole circle (at 0 0) (size 10 10) (drill 4.3) (layers *.Cu *.Mask)
  1547. (net 25 "Net-(F13-Pad2)"))
  1548. )
  1549. (module PartsLibraries:PowerConnectorRound (layer F.Cu) (tedit 59AECA0D) (tstamp 59C4DB59)
  1550. (at 210.53 95.96)
  1551. (path /59A8A84A)
  1552. (fp_text reference J26 (at 0.254 -2.794) (layer F.SilkS)
  1553. (effects (font (size 1 1) (thickness 0.15)))
  1554. )
  1555. (fp_text value OUT (at 0 6.35) (layer F.Fab)
  1556. (effects (font (size 1 1) (thickness 0.15)))
  1557. )
  1558. (pad 1 thru_hole circle (at 0 0) (size 10 10) (drill 4.3) (layers *.Cu *.Mask)
  1559. (net 20 "Net-(F10-Pad1)"))
  1560. )
  1561. (module PartsLibraries:PowerConnectorRound (layer F.Cu) (tedit 59AECA0D) (tstamp 59C4DB5E)
  1562. (at 199.53 109.18)
  1563. (path /59A8A87D)
  1564. (fp_text reference J27 (at 0.254 -2.794) (layer F.SilkS)
  1565. (effects (font (size 1 1) (thickness 0.15)))
  1566. )
  1567. (fp_text value OUT (at 0 6.35) (layer F.Fab)
  1568. (effects (font (size 1 1) (thickness 0.15)))
  1569. )
  1570. (pad 1 thru_hole circle (at 0 0) (size 10 10) (drill 4.3) (layers *.Cu *.Mask)
  1571. (net 22 "Net-(F11-Pad1)"))
  1572. )
  1573. (module PartsLibraries:PowerConnectorRound (layer F.Cu) (tedit 59AECA0D) (tstamp 59C4DB63)
  1574. (at 171.98 131.85)
  1575. (path /59A8AFEC)
  1576. (fp_text reference J28 (at 0.254 -2.794) (layer F.SilkS)
  1577. (effects (font (size 1 1) (thickness 0.15)))
  1578. )
  1579. (fp_text value OUT (at 0 6.35) (layer F.Fab)
  1580. (effects (font (size 1 1) (thickness 0.15)))
  1581. )
  1582. (pad 1 thru_hole circle (at 0 0) (size 10 10) (drill 4.3) (layers *.Cu *.Mask)
  1583. (net 24 "Net-(F12-Pad1)"))
  1584. )
  1585. (module PartsLibraries:PowerConnectorRound (layer F.Cu) (tedit 59AECA0D) (tstamp 59C4DB68)
  1586. (at 188.53 109.18)
  1587. (path /59A8B01F)
  1588. (fp_text reference J29 (at 0.254 -2.794) (layer F.SilkS)
  1589. (effects (font (size 1 1) (thickness 0.15)))
  1590. )
  1591. (fp_text value OUT (at 0 6.35) (layer F.Fab)
  1592. (effects (font (size 1 1) (thickness 0.15)))
  1593. )
  1594. (pad 1 thru_hole circle (at 0 0) (size 10 10) (drill 4.3) (layers *.Cu *.Mask)
  1595. (net 26 "Net-(F13-Pad1)"))
  1596. )
  1597. (module PartsLibraries:PowerConnectorRound (layer F.Cu) (tedit 59AECA0D) (tstamp 59C4DB6D)
  1598. (at 182.41 78.97)
  1599. (path /59A8A8AA)
  1600. (fp_text reference J30 (at 0.254 -2.794) (layer F.SilkS)
  1601. (effects (font (size 1 1) (thickness 0.15)))
  1602. )
  1603. (fp_text value IN (at 0 6.35) (layer F.Fab)
  1604. (effects (font (size 1 1) (thickness 0.15)))
  1605. )
  1606. (pad 1 thru_hole circle (at 0 0) (size 10 10) (drill 4.3) (layers *.Cu *.Mask)
  1607. (net 27 "Net-(F14-Pad2)"))
  1608. )
  1609. (module PartsLibraries:PowerConnectorRound (layer F.Cu) (tedit 59AECA0D) (tstamp 59C4DB72)
  1610. (at 215.41 82.74)
  1611. (path /59A8A8D7)
  1612. (fp_text reference J31 (at 0.254 -2.794) (layer F.SilkS)
  1613. (effects (font (size 1 1) (thickness 0.15)))
  1614. )
  1615. (fp_text value IN (at 0 6.35) (layer F.Fab)
  1616. (effects (font (size 1 1) (thickness 0.15)))
  1617. )
  1618. (pad 1 thru_hole circle (at 0 0) (size 10 10) (drill 4.3) (layers *.Cu *.Mask)
  1619. (net 29 "Net-(F15-Pad2)"))
  1620. )
  1621. (module PartsLibraries:PowerConnectorRound (layer F.Cu) (tedit 59AECA0D) (tstamp 59C4DB77)
  1622. (at 160.98 131.85)
  1623. (path /59A8B04C)
  1624. (fp_text reference J32 (at 0.254 -2.794) (layer F.SilkS)
  1625. (effects (font (size 1 1) (thickness 0.15)))
  1626. )
  1627. (fp_text value IN (at 0 6.35) (layer F.Fab)
  1628. (effects (font (size 1 1) (thickness 0.15)))
  1629. )
  1630. (pad 1 thru_hole circle (at 0 0) (size 10 10) (drill 4.3) (layers *.Cu *.Mask)
  1631. (net 31 "Net-(F16-Pad2)"))
  1632. )
  1633. (module PartsLibraries:PowerConnectorRound (layer F.Cu) (tedit 59AECA0D) (tstamp 59C4DB7C)
  1634. (at 226.41 69.52)
  1635. (path /59A8B079)
  1636. (fp_text reference J33 (at 0.254 -2.794) (layer F.SilkS)
  1637. (effects (font (size 1 1) (thickness 0.15)))
  1638. )
  1639. (fp_text value IN (at 0 6.35) (layer F.Fab)
  1640. (effects (font (size 1 1) (thickness 0.15)))
  1641. )
  1642. (pad 1 thru_hole circle (at 0 0) (size 10 10) (drill 4.3) (layers *.Cu *.Mask)
  1643. (net 33 "Net-(F17-Pad2)"))
  1644. )
  1645. (module PartsLibraries:PowerConnectorRound (layer F.Cu) (tedit 59AECA0D) (tstamp 59C4DB81)
  1646. (at 199.53 95.96)
  1647. (path /59A8A8B0)
  1648. (fp_text reference J34 (at 0.254 -2.794) (layer F.SilkS)
  1649. (effects (font (size 1 1) (thickness 0.15)))
  1650. )
  1651. (fp_text value OUT (at 0 6.35) (layer F.Fab)
  1652. (effects (font (size 1 1) (thickness 0.15)))
  1653. )
  1654. (pad 1 thru_hole circle (at 0 0) (size 10 10) (drill 4.3) (layers *.Cu *.Mask)
  1655. (net 28 "Net-(F14-Pad1)"))
  1656. )
  1657. (module PartsLibraries:PowerConnectorRound (layer F.Cu) (tedit 59AECA0D) (tstamp 59C4DB86)
  1658. (at 171.98 118.63)
  1659. (path /59A8A8DD)
  1660. (fp_text reference J35 (at 0.254 -2.794) (layer F.SilkS)
  1661. (effects (font (size 1 1) (thickness 0.15)))
  1662. )
  1663. (fp_text value OUT (at 0 6.35) (layer F.Fab)
  1664. (effects (font (size 1 1) (thickness 0.15)))
  1665. )
  1666. (pad 1 thru_hole circle (at 0 0) (size 10 10) (drill 4.3) (layers *.Cu *.Mask)
  1667. (net 30 "Net-(F15-Pad1)"))
  1668. )
  1669. (module PartsLibraries:PowerConnectorRound (layer F.Cu) (tedit 59AECA0D) (tstamp 59C4DB8B)
  1670. (at 188.53 95.96)
  1671. (path /59A8B052)
  1672. (fp_text reference J36 (at 0.254 -2.794) (layer F.SilkS)
  1673. (effects (font (size 1 1) (thickness 0.15)))
  1674. )
  1675. (fp_text value OUT (at 0 6.35) (layer F.Fab)
  1676. (effects (font (size 1 1) (thickness 0.15)))
  1677. )
  1678. (pad 1 thru_hole circle (at 0 0) (size 10 10) (drill 4.3) (layers *.Cu *.Mask)
  1679. (net 32 "Net-(F16-Pad1)"))
  1680. )
  1681. (module PartsLibraries:PowerConnectorRound (layer F.Cu) (tedit 59AECA0D) (tstamp 59C4DB90)
  1682. (at 204.41 82.74)
  1683. (path /59A8B07F)
  1684. (fp_text reference J37 (at 0.254 -2.794) (layer F.SilkS)
  1685. (effects (font (size 1 1) (thickness 0.15)))
  1686. )
  1687. (fp_text value OUT (at 0 6.35) (layer F.Fab)
  1688. (effects (font (size 1 1) (thickness 0.15)))
  1689. )
  1690. (pad 1 thru_hole circle (at 0 0) (size 10 10) (drill 4.3) (layers *.Cu *.Mask)
  1691. (net 34 "Net-(F17-Pad1)"))
  1692. )
  1693. (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59C4DBA6)
  1694. (at 139.585001 139.245)
  1695. (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")
  1696. (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
  1697. (path /59A80E6E)
  1698. (fp_text reference R1 (at 3.81 -2.31) (layer F.SilkS)
  1699. (effects (font (size 1 1) (thickness 0.15)))
  1700. )
  1701. (fp_text value R (at 3.81 2.31) (layer F.Fab)
  1702. (effects (font (size 1 1) (thickness 0.15)))
  1703. )
  1704. (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
  1705. (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
  1706. (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
  1707. (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
  1708. (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
  1709. (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
  1710. (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
  1711. (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
  1712. (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
  1713. (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
  1714. (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
  1715. (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
  1716. (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
  1717. (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
  1718. (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
  1719. (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
  1720. (pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1721. (net 4 "Net-(F2-Pad1)"))
  1722. (pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1723. (net 2 GND))
  1724. (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
  1725. (at (xyz 0 0 0))
  1726. (scale (xyz 0.393701 0.393701 0.393701))
  1727. (rotate (xyz 0 0 0))
  1728. )
  1729. )
  1730. (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59C4DBBC)
  1731. (at 128.785001 138.835)
  1732. (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")
  1733. (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
  1734. (path /59A81956)
  1735. (fp_text reference R2 (at 3.81 -2.31) (layer F.SilkS)
  1736. (effects (font (size 1 1) (thickness 0.15)))
  1737. )
  1738. (fp_text value R (at 3.81 2.31) (layer F.Fab)
  1739. (effects (font (size 1 1) (thickness 0.15)))
  1740. )
  1741. (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
  1742. (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
  1743. (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
  1744. (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
  1745. (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
  1746. (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
  1747. (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
  1748. (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
  1749. (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
  1750. (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
  1751. (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
  1752. (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
  1753. (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
  1754. (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
  1755. (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
  1756. (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
  1757. (pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1758. (net 6 "Net-(F3-Pad1)"))
  1759. (pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1760. (net 2 GND))
  1761. (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
  1762. (at (xyz 0 0 0))
  1763. (scale (xyz 0.393701 0.393701 0.393701))
  1764. (rotate (xyz 0 0 0))
  1765. )
  1766. )
  1767. (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59C4DBD2)
  1768. (at 201.055001 129.075)
  1769. (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")
  1770. (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
  1771. (path /59A8AF33)
  1772. (fp_text reference R3 (at 3.81 -2.31) (layer F.SilkS)
  1773. (effects (font (size 1 1) (thickness 0.15)))
  1774. )
  1775. (fp_text value R (at 3.81 2.31) (layer F.Fab)
  1776. (effects (font (size 1 1) (thickness 0.15)))
  1777. )
  1778. (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
  1779. (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
  1780. (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
  1781. (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
  1782. (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
  1783. (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
  1784. (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
  1785. (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
  1786. (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
  1787. (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
  1788. (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
  1789. (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
  1790. (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
  1791. (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
  1792. (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
  1793. (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
  1794. (pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1795. (net 8 "Net-(F4-Pad1)"))
  1796. (pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1797. (net 2 GND))
  1798. (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
  1799. (at (xyz 0 0 0))
  1800. (scale (xyz 0.393701 0.393701 0.393701))
  1801. (rotate (xyz 0 0 0))
  1802. )
  1803. )
  1804. (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59C4DBE8)
  1805. (at 206.605001 107.265)
  1806. (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")
  1807. (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
  1808. (path /59A8AF60)
  1809. (fp_text reference R4 (at 3.81 -2.31) (layer F.SilkS)
  1810. (effects (font (size 1 1) (thickness 0.15)))
  1811. )
  1812. (fp_text value R (at 3.81 2.31) (layer F.Fab)
  1813. (effects (font (size 1 1) (thickness 0.15)))
  1814. )
  1815. (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
  1816. (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
  1817. (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
  1818. (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
  1819. (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
  1820. (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
  1821. (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
  1822. (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
  1823. (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
  1824. (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
  1825. (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
  1826. (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
  1827. (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
  1828. (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
  1829. (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
  1830. (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
  1831. (pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1832. (net 10 "Net-(F5-Pad1)"))
  1833. (pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1834. (net 2 GND))
  1835. (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
  1836. (at (xyz 0 0 0))
  1837. (scale (xyz 0.393701 0.393701 0.393701))
  1838. (rotate (xyz 0 0 0))
  1839. )
  1840. )
  1841. (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59C4DBFE)
  1842. (at 190.055001 133.705)
  1843. (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")
  1844. (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
  1845. (path /59A81E43)
  1846. (fp_text reference R5 (at 3.81 -2.31) (layer F.SilkS)
  1847. (effects (font (size 1 1) (thickness 0.15)))
  1848. )
  1849. (fp_text value R (at 3.81 2.31) (layer F.Fab)
  1850. (effects (font (size 1 1) (thickness 0.15)))
  1851. )
  1852. (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
  1853. (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
  1854. (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
  1855. (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
  1856. (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
  1857. (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
  1858. (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
  1859. (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
  1860. (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
  1861. (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
  1862. (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
  1863. (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
  1864. (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
  1865. (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
  1866. (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
  1867. (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
  1868. (pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1869. (net 12 "Net-(F6-Pad1)"))
  1870. (pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1871. (net 2 GND))
  1872. (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
  1873. (at (xyz 0 0 0))
  1874. (scale (xyz 0.393701 0.393701 0.393701))
  1875. (rotate (xyz 0 0 0))
  1876. )
  1877. )
  1878. (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59C4DC14)
  1879. (at 206.605001 114.535)
  1880. (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")
  1881. (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
  1882. (path /59A8202B)
  1883. (fp_text reference R6 (at 3.81 -2.31) (layer F.SilkS)
  1884. (effects (font (size 1 1) (thickness 0.15)))
  1885. )
  1886. (fp_text value R (at 3.81 2.31) (layer F.Fab)
  1887. (effects (font (size 1 1) (thickness 0.15)))
  1888. )
  1889. (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
  1890. (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
  1891. (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
  1892. (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
  1893. (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
  1894. (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
  1895. (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
  1896. (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
  1897. (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
  1898. (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
  1899. (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
  1900. (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
  1901. (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
  1902. (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
  1903. (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
  1904. (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
  1905. (pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1906. (net 14 "Net-(F7-Pad1)"))
  1907. (pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1908. (net 2 GND))
  1909. (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
  1910. (at (xyz 0 0 0))
  1911. (scale (xyz 0.393701 0.393701 0.393701))
  1912. (rotate (xyz 0 0 0))
  1913. )
  1914. )
  1915. (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59C4DC2A)
  1916. (at 217.405001 107.265)
  1917. (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")
  1918. (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
  1919. (path /59A8AF93)
  1920. (fp_text reference R7 (at 3.81 -2.31) (layer F.SilkS)
  1921. (effects (font (size 1 1) (thickness 0.15)))
  1922. )
  1923. (fp_text value R (at 3.81 2.31) (layer F.Fab)
  1924. (effects (font (size 1 1) (thickness 0.15)))
  1925. )
  1926. (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
  1927. (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
  1928. (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
  1929. (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
  1930. (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
  1931. (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
  1932. (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
  1933. (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
  1934. (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
  1935. (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
  1936. (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
  1937. (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
  1938. (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
  1939. (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
  1940. (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
  1941. (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
  1942. (pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1943. (net 16 "Net-(F8-Pad1)"))
  1944. (pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1945. (net 2 GND))
  1946. (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
  1947. (at (xyz 0 0 0))
  1948. (scale (xyz 0.393701 0.393701 0.393701))
  1949. (rotate (xyz 0 0 0))
  1950. )
  1951. )
  1952. (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59C4DC40)
  1953. (at 201.055001 121.805)
  1954. (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")
  1955. (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
  1956. (path /59A8AFC0)
  1957. (fp_text reference R8 (at 3.81 -2.31) (layer F.SilkS)
  1958. (effects (font (size 1 1) (thickness 0.15)))
  1959. )
  1960. (fp_text value R (at 3.81 2.31) (layer F.Fab)
  1961. (effects (font (size 1 1) (thickness 0.15)))
  1962. )
  1963. (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
  1964. (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
  1965. (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
  1966. (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
  1967. (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
  1968. (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
  1969. (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
  1970. (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
  1971. (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
  1972. (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
  1973. (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
  1974. (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
  1975. (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
  1976. (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
  1977. (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
  1978. (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
  1979. (pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1980. (net 18 "Net-(F9-Pad1)"))
  1981. (pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1982. (net 2 GND))
  1983. (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
  1984. (at (xyz 0 0 0))
  1985. (scale (xyz 0.393701 0.393701 0.393701))
  1986. (rotate (xyz 0 0 0))
  1987. )
  1988. )
  1989. (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59C4DC56)
  1990. (at 117.985001 138.015)
  1991. (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")
  1992. (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
  1993. (path /59A8A85D)
  1994. (fp_text reference R9 (at 3.81 -2.31) (layer F.SilkS)
  1995. (effects (font (size 1 1) (thickness 0.15)))
  1996. )
  1997. (fp_text value R (at 3.81 2.31) (layer F.Fab)
  1998. (effects (font (size 1 1) (thickness 0.15)))
  1999. )
  2000. (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
  2001. (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
  2002. (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
  2003. (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
  2004. (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
  2005. (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
  2006. (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
  2007. (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
  2008. (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
  2009. (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
  2010. (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
  2011. (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
  2012. (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
  2013. (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
  2014. (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
  2015. (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
  2016. (pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2017. (net 20 "Net-(F10-Pad1)"))
  2018. (pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2019. (net 2 GND))
  2020. (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
  2021. (at (xyz 0 0 0))
  2022. (scale (xyz 0.393701 0.393701 0.393701))
  2023. (rotate (xyz 0 0 0))
  2024. )
  2025. )
  2026. (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59C4DC6C)
  2027. (at 211.855001 121.805)
  2028. (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")
  2029. (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
  2030. (path /59A8A88A)
  2031. (fp_text reference R10 (at 3.81 -2.31) (layer F.SilkS)
  2032. (effects (font (size 1 1) (thickness 0.15)))
  2033. )
  2034. (fp_text value R (at 3.81 2.31) (layer F.Fab)
  2035. (effects (font (size 1 1) (thickness 0.15)))
  2036. )
  2037. (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
  2038. (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
  2039. (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
  2040. (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
  2041. (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
  2042. (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
  2043. (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
  2044. (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
  2045. (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
  2046. (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
  2047. (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
  2048. (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
  2049. (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
  2050. (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
  2051. (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
  2052. (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
  2053. (pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2054. (net 22 "Net-(F11-Pad1)"))
  2055. (pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2056. (net 2 GND))
  2057. (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
  2058. (at (xyz 0 0 0))
  2059. (scale (xyz 0.393701 0.393701 0.393701))
  2060. (rotate (xyz 0 0 0))
  2061. )
  2062. )
  2063. (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59C4DC82)
  2064. (at 217.405001 114.535)
  2065. (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")
  2066. (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
  2067. (path /59A8AFFF)
  2068. (fp_text reference R11 (at 3.81 -2.31) (layer F.SilkS)
  2069. (effects (font (size 1 1) (thickness 0.15)))
  2070. )
  2071. (fp_text value R (at 3.81 2.31) (layer F.Fab)
  2072. (effects (font (size 1 1) (thickness 0.15)))
  2073. )
  2074. (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
  2075. (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
  2076. (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
  2077. (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
  2078. (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
  2079. (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
  2080. (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
  2081. (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
  2082. (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
  2083. (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
  2084. (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
  2085. (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
  2086. (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
  2087. (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
  2088. (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
  2089. (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
  2090. (pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2091. (net 24 "Net-(F12-Pad1)"))
  2092. (pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2093. (net 2 GND))
  2094. (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
  2095. (at (xyz 0 0 0))
  2096. (scale (xyz 0.393701 0.393701 0.393701))
  2097. (rotate (xyz 0 0 0))
  2098. )
  2099. )
  2100. (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59C4DC98)
  2101. (at 222.655001 129.075)
  2102. (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")
  2103. (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
  2104. (path /59A8B02C)
  2105. (fp_text reference R12 (at 3.81 -2.31) (layer F.SilkS)
  2106. (effects (font (size 1 1) (thickness 0.15)))
  2107. )
  2108. (fp_text value R (at 3.81 2.31) (layer F.Fab)
  2109. (effects (font (size 1 1) (thickness 0.15)))
  2110. )
  2111. (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
  2112. (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
  2113. (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
  2114. (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
  2115. (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
  2116. (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
  2117. (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
  2118. (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
  2119. (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
  2120. (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
  2121. (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
  2122. (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
  2123. (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
  2124. (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
  2125. (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
  2126. (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
  2127. (pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2128. (net 26 "Net-(F13-Pad1)"))
  2129. (pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2130. (net 2 GND))
  2131. (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
  2132. (at (xyz 0 0 0))
  2133. (scale (xyz 0.393701 0.393701 0.393701))
  2134. (rotate (xyz 0 0 0))
  2135. )
  2136. )
  2137. (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59C4DCAE)
  2138. (at 200.855001 136.345)
  2139. (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")
  2140. (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
  2141. (path /59A8A8BD)
  2142. (fp_text reference R13 (at 3.81 -2.31) (layer F.SilkS)
  2143. (effects (font (size 1 1) (thickness 0.15)))
  2144. )
  2145. (fp_text value R (at 3.81 2.31) (layer F.Fab)
  2146. (effects (font (size 1 1) (thickness 0.15)))
  2147. )
  2148. (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
  2149. (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
  2150. (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
  2151. (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
  2152. (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
  2153. (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
  2154. (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
  2155. (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
  2156. (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
  2157. (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
  2158. (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
  2159. (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
  2160. (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
  2161. (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
  2162. (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
  2163. (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
  2164. (pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2165. (net 28 "Net-(F14-Pad1)"))
  2166. (pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2167. (net 2 GND))
  2168. (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
  2169. (at (xyz 0 0 0))
  2170. (scale (xyz 0.393701 0.393701 0.393701))
  2171. (rotate (xyz 0 0 0))
  2172. )
  2173. )
  2174. (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59C4DCC4)
  2175. (at 211.855001 129.075)
  2176. (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")
  2177. (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
  2178. (path /59A8A8EA)
  2179. (fp_text reference R14 (at 3.81 -2.31) (layer F.SilkS)
  2180. (effects (font (size 1 1) (thickness 0.15)))
  2181. )
  2182. (fp_text value R (at 3.81 2.31) (layer F.Fab)
  2183. (effects (font (size 1 1) (thickness 0.15)))
  2184. )
  2185. (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
  2186. (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
  2187. (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
  2188. (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
  2189. (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
  2190. (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
  2191. (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
  2192. (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
  2193. (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
  2194. (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
  2195. (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
  2196. (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
  2197. (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
  2198. (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
  2199. (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
  2200. (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
  2201. (pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2202. (net 30 "Net-(F15-Pad1)"))
  2203. (pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2204. (net 2 GND))
  2205. (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
  2206. (at (xyz 0 0 0))
  2207. (scale (xyz 0.393701 0.393701 0.393701))
  2208. (rotate (xyz 0 0 0))
  2209. )
  2210. )
  2211. (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59C4DCDA)
  2212. (at 222.655001 121.805)
  2213. (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")
  2214. (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
  2215. (path /59A8B05F)
  2216. (fp_text reference R15 (at 3.81 -2.31) (layer F.SilkS)
  2217. (effects (font (size 1 1) (thickness 0.15)))
  2218. )
  2219. (fp_text value R (at 3.81 2.31) (layer F.Fab)
  2220. (effects (font (size 1 1) (thickness 0.15)))
  2221. )
  2222. (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
  2223. (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
  2224. (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
  2225. (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
  2226. (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
  2227. (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
  2228. (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
  2229. (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
  2230. (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
  2231. (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
  2232. (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
  2233. (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
  2234. (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
  2235. (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
  2236. (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
  2237. (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
  2238. (pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2239. (net 32 "Net-(F16-Pad1)"))
  2240. (pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2241. (net 2 GND))
  2242. (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
  2243. (at (xyz 0 0 0))
  2244. (scale (xyz 0.393701 0.393701 0.393701))
  2245. (rotate (xyz 0 0 0))
  2246. )
  2247. )
  2248. (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59C4DCF0)
  2249. (at 211.655001 136.345)
  2250. (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")
  2251. (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
  2252. (path /59A8B08C)
  2253. (fp_text reference R16 (at 3.81 -2.31) (layer F.SilkS)
  2254. (effects (font (size 1 1) (thickness 0.15)))
  2255. )
  2256. (fp_text value R (at 3.81 2.31) (layer F.Fab)
  2257. (effects (font (size 1 1) (thickness 0.15)))
  2258. )
  2259. (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
  2260. (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
  2261. (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
  2262. (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
  2263. (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
  2264. (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
  2265. (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
  2266. (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
  2267. (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
  2268. (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
  2269. (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
  2270. (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
  2271. (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
  2272. (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
  2273. (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
  2274. (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
  2275. (pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2276. (net 34 "Net-(F17-Pad1)"))
  2277. (pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2278. (net 2 GND))
  2279. (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
  2280. (at (xyz 0 0 0))
  2281. (scale (xyz 0.393701 0.393701 0.393701))
  2282. (rotate (xyz 0 0 0))
  2283. )
  2284. )
  2285. (module Housings_DIP:DIP-14_W7.62mm (layer F.Cu) (tedit 58CC8E2C) (tstamp 59C4DD12)
  2286. (at 123.735001 92.895)
  2287. (descr "14-lead dip package, row spacing 7.62 mm (300 mils)")
  2288. (tags "DIL DIP PDIP 2.54mm 7.62mm 300mil")
  2289. (path /59A802DA)
  2290. (fp_text reference U1 (at 3.81 -2.39) (layer F.SilkS)
  2291. (effects (font (size 1 1) (thickness 0.15)))
  2292. )
  2293. (fp_text value MCP604 (at 3.81 17.63) (layer F.Fab)
  2294. (effects (font (size 1 1) (thickness 0.15)))
  2295. )
  2296. (fp_text user %R (at 3.81 7.62) (layer F.Fab)
  2297. (effects (font (size 1 1) (thickness 0.15)))
  2298. )
  2299. (fp_line (start 1.635 -1.27) (end 6.985 -1.27) (layer F.Fab) (width 0.1))
  2300. (fp_line (start 6.985 -1.27) (end 6.985 16.51) (layer F.Fab) (width 0.1))
  2301. (fp_line (start 6.985 16.51) (end 0.635 16.51) (layer F.Fab) (width 0.1))
  2302. (fp_line (start 0.635 16.51) (end 0.635 -0.27) (layer F.Fab) (width 0.1))
  2303. (fp_line (start 0.635 -0.27) (end 1.635 -1.27) (layer F.Fab) (width 0.1))
  2304. (fp_line (start 2.81 -1.39) (end 1.04 -1.39) (layer F.SilkS) (width 0.12))
  2305. (fp_line (start 1.04 -1.39) (end 1.04 16.63) (layer F.SilkS) (width 0.12))
  2306. (fp_line (start 1.04 16.63) (end 6.58 16.63) (layer F.SilkS) (width 0.12))
  2307. (fp_line (start 6.58 16.63) (end 6.58 -1.39) (layer F.SilkS) (width 0.12))
  2308. (fp_line (start 6.58 -1.39) (end 4.81 -1.39) (layer F.SilkS) (width 0.12))
  2309. (fp_line (start -1.1 -1.6) (end -1.1 16.8) (layer F.CrtYd) (width 0.05))
  2310. (fp_line (start -1.1 16.8) (end 8.7 16.8) (layer F.CrtYd) (width 0.05))
  2311. (fp_line (start 8.7 16.8) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
  2312. (fp_line (start 8.7 -1.6) (end -1.1 -1.6) (layer F.CrtYd) (width 0.05))
  2313. (fp_arc (start 3.81 -1.39) (end 2.81 -1.39) (angle -180) (layer F.SilkS) (width 0.12))
  2314. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2315. (net 43 CUR_1))
  2316. (pad 8 thru_hole oval (at 7.62 15.24) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2317. (net 35 CUR_9))
  2318. (pad 2 thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2319. (net 43 CUR_1))
  2320. (pad 9 thru_hole oval (at 7.62 12.7) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2321. (net 35 CUR_9))
  2322. (pad 3 thru_hole oval (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2323. (net 4 "Net-(F2-Pad1)"))
  2324. (pad 10 thru_hole oval (at 7.62 10.16) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2325. (net 8 "Net-(F4-Pad1)"))
  2326. (pad 4 thru_hole oval (at 0 7.62) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2327. (net 51 ARD_5V))
  2328. (pad 11 thru_hole oval (at 7.62 7.62) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2329. (net 2 GND))
  2330. (pad 5 thru_hole oval (at 0 10.16) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2331. (net 6 "Net-(F3-Pad1)"))
  2332. (pad 12 thru_hole oval (at 7.62 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2333. (net 10 "Net-(F5-Pad1)"))
  2334. (pad 6 thru_hole oval (at 0 12.7) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2335. (net 44 CUR_2))
  2336. (pad 13 thru_hole oval (at 7.62 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2337. (net 36 CUR_10))
  2338. (pad 7 thru_hole oval (at 0 15.24) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2339. (net 44 CUR_2))
  2340. (pad 14 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2341. (net 36 CUR_10))
  2342. (model ${KISYS3DMOD}/Housings_DIP.3dshapes/DIP-14_W7.62mm.wrl
  2343. (at (xyz 0 0 0))
  2344. (scale (xyz 1 1 1))
  2345. (rotate (xyz 0 0 0))
  2346. )
  2347. )
  2348. (module Housings_DIP:DIP-14_W7.62mm (layer F.Cu) (tedit 58CC8E2C) (tstamp 59C4DD34)
  2349. (at 96.335001 118.515)
  2350. (descr "14-lead dip package, row spacing 7.62 mm (300 mils)")
  2351. (tags "DIL DIP PDIP 2.54mm 7.62mm 300mil")
  2352. (path /59A8265A)
  2353. (fp_text reference U2 (at 3.81 -2.39) (layer F.SilkS)
  2354. (effects (font (size 1 1) (thickness 0.15)))
  2355. )
  2356. (fp_text value MCP604 (at 3.81 17.63) (layer F.Fab)
  2357. (effects (font (size 1 1) (thickness 0.15)))
  2358. )
  2359. (fp_text user %R (at 3.81 7.62) (layer F.Fab)
  2360. (effects (font (size 1 1) (thickness 0.15)))
  2361. )
  2362. (fp_line (start 1.635 -1.27) (end 6.985 -1.27) (layer F.Fab) (width 0.1))
  2363. (fp_line (start 6.985 -1.27) (end 6.985 16.51) (layer F.Fab) (width 0.1))
  2364. (fp_line (start 6.985 16.51) (end 0.635 16.51) (layer F.Fab) (width 0.1))
  2365. (fp_line (start 0.635 16.51) (end 0.635 -0.27) (layer F.Fab) (width 0.1))
  2366. (fp_line (start 0.635 -0.27) (end 1.635 -1.27) (layer F.Fab) (width 0.1))
  2367. (fp_line (start 2.81 -1.39) (end 1.04 -1.39) (layer F.SilkS) (width 0.12))
  2368. (fp_line (start 1.04 -1.39) (end 1.04 16.63) (layer F.SilkS) (width 0.12))
  2369. (fp_line (start 1.04 16.63) (end 6.58 16.63) (layer F.SilkS) (width 0.12))
  2370. (fp_line (start 6.58 16.63) (end 6.58 -1.39) (layer F.SilkS) (width 0.12))
  2371. (fp_line (start 6.58 -1.39) (end 4.81 -1.39) (layer F.SilkS) (width 0.12))
  2372. (fp_line (start -1.1 -1.6) (end -1.1 16.8) (layer F.CrtYd) (width 0.05))
  2373. (fp_line (start -1.1 16.8) (end 8.7 16.8) (layer F.CrtYd) (width 0.05))
  2374. (fp_line (start 8.7 16.8) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
  2375. (fp_line (start 8.7 -1.6) (end -1.1 -1.6) (layer F.CrtYd) (width 0.05))
  2376. (fp_arc (start 3.81 -1.39) (end 2.81 -1.39) (angle -180) (layer F.SilkS) (width 0.12))
  2377. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2378. (net 45 CUR_3))
  2379. (pad 8 thru_hole oval (at 7.62 15.24) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2380. (net 37 CUR_11))
  2381. (pad 2 thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2382. (net 45 CUR_3))
  2383. (pad 9 thru_hole oval (at 7.62 12.7) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2384. (net 37 CUR_11))
  2385. (pad 3 thru_hole oval (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2386. (net 12 "Net-(F6-Pad1)"))
  2387. (pad 10 thru_hole oval (at 7.62 10.16) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2388. (net 16 "Net-(F8-Pad1)"))
  2389. (pad 4 thru_hole oval (at 0 7.62) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2390. (net 51 ARD_5V))
  2391. (pad 11 thru_hole oval (at 7.62 7.62) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2392. (net 2 GND))
  2393. (pad 5 thru_hole oval (at 0 10.16) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2394. (net 14 "Net-(F7-Pad1)"))
  2395. (pad 12 thru_hole oval (at 7.62 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2396. (net 18 "Net-(F9-Pad1)"))
  2397. (pad 6 thru_hole oval (at 0 12.7) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2398. (net 46 CUR_4))
  2399. (pad 13 thru_hole oval (at 7.62 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2400. (net 38 CUR_12))
  2401. (pad 7 thru_hole oval (at 0 15.24) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2402. (net 46 CUR_4))
  2403. (pad 14 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2404. (net 38 CUR_12))
  2405. (model ${KISYS3DMOD}/Housings_DIP.3dshapes/DIP-14_W7.62mm.wrl
  2406. (at (xyz 0 0 0))
  2407. (scale (xyz 1 1 1))
  2408. (rotate (xyz 0 0 0))
  2409. )
  2410. )
  2411. (module Housings_DIP:DIP-14_W7.62mm (layer F.Cu) (tedit 58CC8E2C) (tstamp 59C4DD56)
  2412. (at 107.185001 118.515)
  2413. (descr "14-lead dip package, row spacing 7.62 mm (300 mils)")
  2414. (tags "DIL DIP PDIP 2.54mm 7.62mm 300mil")
  2415. (path /59A8A850)
  2416. (fp_text reference U3 (at 3.81 -2.39) (layer F.SilkS)
  2417. (effects (font (size 1 1) (thickness 0.15)))
  2418. )
  2419. (fp_text value MCP604 (at 3.81 17.63) (layer F.Fab)
  2420. (effects (font (size 1 1) (thickness 0.15)))
  2421. )
  2422. (fp_text user %R (at 3.81 7.62) (layer F.Fab)
  2423. (effects (font (size 1 1) (thickness 0.15)))
  2424. )
  2425. (fp_line (start 1.635 -1.27) (end 6.985 -1.27) (layer F.Fab) (width 0.1))
  2426. (fp_line (start 6.985 -1.27) (end 6.985 16.51) (layer F.Fab) (width 0.1))
  2427. (fp_line (start 6.985 16.51) (end 0.635 16.51) (layer F.Fab) (width 0.1))
  2428. (fp_line (start 0.635 16.51) (end 0.635 -0.27) (layer F.Fab) (width 0.1))
  2429. (fp_line (start 0.635 -0.27) (end 1.635 -1.27) (layer F.Fab) (width 0.1))
  2430. (fp_line (start 2.81 -1.39) (end 1.04 -1.39) (layer F.SilkS) (width 0.12))
  2431. (fp_line (start 1.04 -1.39) (end 1.04 16.63) (layer F.SilkS) (width 0.12))
  2432. (fp_line (start 1.04 16.63) (end 6.58 16.63) (layer F.SilkS) (width 0.12))
  2433. (fp_line (start 6.58 16.63) (end 6.58 -1.39) (layer F.SilkS) (width 0.12))
  2434. (fp_line (start 6.58 -1.39) (end 4.81 -1.39) (layer F.SilkS) (width 0.12))
  2435. (fp_line (start -1.1 -1.6) (end -1.1 16.8) (layer F.CrtYd) (width 0.05))
  2436. (fp_line (start -1.1 16.8) (end 8.7 16.8) (layer F.CrtYd) (width 0.05))
  2437. (fp_line (start 8.7 16.8) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
  2438. (fp_line (start 8.7 -1.6) (end -1.1 -1.6) (layer F.CrtYd) (width 0.05))
  2439. (fp_arc (start 3.81 -1.39) (end 2.81 -1.39) (angle -180) (layer F.SilkS) (width 0.12))
  2440. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2441. (net 47 CUR_5))
  2442. (pad 8 thru_hole oval (at 7.62 15.24) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2443. (net 39 CUR_13))
  2444. (pad 2 thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2445. (net 47 CUR_5))
  2446. (pad 9 thru_hole oval (at 7.62 12.7) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2447. (net 39 CUR_13))
  2448. (pad 3 thru_hole oval (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2449. (net 20 "Net-(F10-Pad1)"))
  2450. (pad 10 thru_hole oval (at 7.62 10.16) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2451. (net 24 "Net-(F12-Pad1)"))
  2452. (pad 4 thru_hole oval (at 0 7.62) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2453. (net 51 ARD_5V))
  2454. (pad 11 thru_hole oval (at 7.62 7.62) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2455. (net 2 GND))
  2456. (pad 5 thru_hole oval (at 0 10.16) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2457. (net 22 "Net-(F11-Pad1)"))
  2458. (pad 12 thru_hole oval (at 7.62 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2459. (net 26 "Net-(F13-Pad1)"))
  2460. (pad 6 thru_hole oval (at 0 12.7) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2461. (net 48 CUR_6))
  2462. (pad 13 thru_hole oval (at 7.62 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2463. (net 40 CUR_14))
  2464. (pad 7 thru_hole oval (at 0 15.24) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2465. (net 48 CUR_6))
  2466. (pad 14 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2467. (net 40 CUR_14))
  2468. (model ${KISYS3DMOD}/Housings_DIP.3dshapes/DIP-14_W7.62mm.wrl
  2469. (at (xyz 0 0 0))
  2470. (scale (xyz 1 1 1))
  2471. (rotate (xyz 0 0 0))
  2472. )
  2473. )
  2474. (module Housings_DIP:DIP-14_W7.62mm (layer F.Cu) (tedit 58CC8E2C) (tstamp 59C4DD78)
  2475. (at 178.535001 54.465)
  2476. (descr "14-lead dip package, row spacing 7.62 mm (300 mils)")
  2477. (tags "DIL DIP PDIP 2.54mm 7.62mm 300mil")
  2478. (path /59A8A8FE)
  2479. (fp_text reference U4 (at 3.81 -2.39) (layer F.SilkS)
  2480. (effects (font (size 1 1) (thickness 0.15)))
  2481. )
  2482. (fp_text value MCP604 (at 3.81 17.63) (layer F.Fab)
  2483. (effects (font (size 1 1) (thickness 0.15)))
  2484. )
  2485. (fp_text user %R (at 3.81 7.62) (layer F.Fab)
  2486. (effects (font (size 1 1) (thickness 0.15)))
  2487. )
  2488. (fp_line (start 1.635 -1.27) (end 6.985 -1.27) (layer F.Fab) (width 0.1))
  2489. (fp_line (start 6.985 -1.27) (end 6.985 16.51) (layer F.Fab) (width 0.1))
  2490. (fp_line (start 6.985 16.51) (end 0.635 16.51) (layer F.Fab) (width 0.1))
  2491. (fp_line (start 0.635 16.51) (end 0.635 -0.27) (layer F.Fab) (width 0.1))
  2492. (fp_line (start 0.635 -0.27) (end 1.635 -1.27) (layer F.Fab) (width 0.1))
  2493. (fp_line (start 2.81 -1.39) (end 1.04 -1.39) (layer F.SilkS) (width 0.12))
  2494. (fp_line (start 1.04 -1.39) (end 1.04 16.63) (layer F.SilkS) (width 0.12))
  2495. (fp_line (start 1.04 16.63) (end 6.58 16.63) (layer F.SilkS) (width 0.12))
  2496. (fp_line (start 6.58 16.63) (end 6.58 -1.39) (layer F.SilkS) (width 0.12))
  2497. (fp_line (start 6.58 -1.39) (end 4.81 -1.39) (layer F.SilkS) (width 0.12))
  2498. (fp_line (start -1.1 -1.6) (end -1.1 16.8) (layer F.CrtYd) (width 0.05))
  2499. (fp_line (start -1.1 16.8) (end 8.7 16.8) (layer F.CrtYd) (width 0.05))
  2500. (fp_line (start 8.7 16.8) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
  2501. (fp_line (start 8.7 -1.6) (end -1.1 -1.6) (layer F.CrtYd) (width 0.05))
  2502. (fp_arc (start 3.81 -1.39) (end 2.81 -1.39) (angle -180) (layer F.SilkS) (width 0.12))
  2503. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2504. (net 49 CUR_7))
  2505. (pad 8 thru_hole oval (at 7.62 15.24) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2506. (net 41 CUR_15))
  2507. (pad 2 thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2508. (net 49 CUR_7))
  2509. (pad 9 thru_hole oval (at 7.62 12.7) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2510. (net 41 CUR_15))
  2511. (pad 3 thru_hole oval (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2512. (net 28 "Net-(F14-Pad1)"))
  2513. (pad 10 thru_hole oval (at 7.62 10.16) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2514. (net 32 "Net-(F16-Pad1)"))
  2515. (pad 4 thru_hole oval (at 0 7.62) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2516. (net 51 ARD_5V))
  2517. (pad 11 thru_hole oval (at 7.62 7.62) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2518. (net 2 GND))
  2519. (pad 5 thru_hole oval (at 0 10.16) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2520. (net 30 "Net-(F15-Pad1)"))
  2521. (pad 12 thru_hole oval (at 7.62 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2522. (net 34 "Net-(F17-Pad1)"))
  2523. (pad 6 thru_hole oval (at 0 12.7) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2524. (net 50 CUR_8))
  2525. (pad 13 thru_hole oval (at 7.62 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2526. (net 42 CUR_16))
  2527. (pad 7 thru_hole oval (at 0 15.24) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2528. (net 50 CUR_8))
  2529. (pad 14 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2530. (net 42 CUR_16))
  2531. (model ${KISYS3DMOD}/Housings_DIP.3dshapes/DIP-14_W7.62mm.wrl
  2532. (at (xyz 0 0 0))
  2533. (scale (xyz 1 1 1))
  2534. (rotate (xyz 0 0 0))
  2535. )
  2536. )
  2537. )