floppyconverter.kicad_sch 115 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120
  1. (kicad_sch (version 20211123) (generator eeschema)
  2. (uuid 7c18b937-ca7b-4a8e-814f-b4e20058c69b)
  3. (paper "A4")
  4. (lib_symbols
  5. (symbol "74xx:74LS02" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  6. (property "Reference" "U" (id 0) (at 0 1.27 0)
  7. (effects (font (size 1.27 1.27)))
  8. )
  9. (property "Value" "74LS02" (id 1) (at 0 -1.27 0)
  10. (effects (font (size 1.27 1.27)))
  11. )
  12. (property "Footprint" "" (id 2) (at 0 0 0)
  13. (effects (font (size 1.27 1.27)) hide)
  14. )
  15. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74ls02" (id 3) (at 0 0 0)
  16. (effects (font (size 1.27 1.27)) hide)
  17. )
  18. (property "ki_locked" "" (id 4) (at 0 0 0)
  19. (effects (font (size 1.27 1.27)))
  20. )
  21. (property "ki_keywords" "TTL Nor2" (id 5) (at 0 0 0)
  22. (effects (font (size 1.27 1.27)) hide)
  23. )
  24. (property "ki_description" "quad 2-input NOR gate" (id 6) (at 0 0 0)
  25. (effects (font (size 1.27 1.27)) hide)
  26. )
  27. (property "ki_fp_filters" "SO14* DIP*W7.62mm*" (id 7) (at 0 0 0)
  28. (effects (font (size 1.27 1.27)) hide)
  29. )
  30. (symbol "74LS02_1_1"
  31. (arc (start -3.81 -3.81) (mid -2.589 0) (end -3.81 3.81)
  32. (stroke (width 0.254) (type default) (color 0 0 0 0))
  33. (fill (type none))
  34. )
  35. (arc (start -0.6096 -3.81) (mid 2.1855 -2.584) (end 3.81 0)
  36. (stroke (width 0.254) (type default) (color 0 0 0 0))
  37. (fill (type background))
  38. )
  39. (polyline
  40. (pts
  41. (xy -3.81 -3.81)
  42. (xy -0.635 -3.81)
  43. )
  44. (stroke (width 0.254) (type default) (color 0 0 0 0))
  45. (fill (type background))
  46. )
  47. (polyline
  48. (pts
  49. (xy -3.81 3.81)
  50. (xy -0.635 3.81)
  51. )
  52. (stroke (width 0.254) (type default) (color 0 0 0 0))
  53. (fill (type background))
  54. )
  55. (polyline
  56. (pts
  57. (xy -0.635 3.81)
  58. (xy -3.81 3.81)
  59. (xy -3.81 3.81)
  60. (xy -3.556 3.4036)
  61. (xy -3.0226 2.2606)
  62. (xy -2.6924 1.0414)
  63. (xy -2.6162 -0.254)
  64. (xy -2.7686 -1.4986)
  65. (xy -3.175 -2.7178)
  66. (xy -3.81 -3.81)
  67. (xy -3.81 -3.81)
  68. (xy -0.635 -3.81)
  69. )
  70. (stroke (width -25.4) (type default) (color 0 0 0 0))
  71. (fill (type background))
  72. )
  73. (arc (start 3.81 0) (mid 2.1928 2.5925) (end -0.6096 3.81)
  74. (stroke (width 0.254) (type default) (color 0 0 0 0))
  75. (fill (type background))
  76. )
  77. (pin output inverted (at 7.62 0 180) (length 3.81)
  78. (name "~" (effects (font (size 1.27 1.27))))
  79. (number "1" (effects (font (size 1.27 1.27))))
  80. )
  81. (pin input line (at -7.62 2.54 0) (length 4.318)
  82. (name "~" (effects (font (size 1.27 1.27))))
  83. (number "2" (effects (font (size 1.27 1.27))))
  84. )
  85. (pin input line (at -7.62 -2.54 0) (length 4.318)
  86. (name "~" (effects (font (size 1.27 1.27))))
  87. (number "3" (effects (font (size 1.27 1.27))))
  88. )
  89. )
  90. (symbol "74LS02_1_2"
  91. (arc (start 0 -3.81) (mid 3.81 0) (end 0 3.81)
  92. (stroke (width 0.254) (type default) (color 0 0 0 0))
  93. (fill (type background))
  94. )
  95. (polyline
  96. (pts
  97. (xy 0 3.81)
  98. (xy -3.81 3.81)
  99. (xy -3.81 -3.81)
  100. (xy 0 -3.81)
  101. )
  102. (stroke (width 0.254) (type default) (color 0 0 0 0))
  103. (fill (type background))
  104. )
  105. (pin output line (at 7.62 0 180) (length 3.81)
  106. (name "~" (effects (font (size 1.27 1.27))))
  107. (number "1" (effects (font (size 1.27 1.27))))
  108. )
  109. (pin input inverted (at -7.62 2.54 0) (length 3.81)
  110. (name "~" (effects (font (size 1.27 1.27))))
  111. (number "2" (effects (font (size 1.27 1.27))))
  112. )
  113. (pin input inverted (at -7.62 -2.54 0) (length 3.81)
  114. (name "~" (effects (font (size 1.27 1.27))))
  115. (number "3" (effects (font (size 1.27 1.27))))
  116. )
  117. )
  118. (symbol "74LS02_2_1"
  119. (arc (start -3.81 -3.81) (mid -2.589 0) (end -3.81 3.81)
  120. (stroke (width 0.254) (type default) (color 0 0 0 0))
  121. (fill (type none))
  122. )
  123. (arc (start -0.6096 -3.81) (mid 2.1855 -2.584) (end 3.81 0)
  124. (stroke (width 0.254) (type default) (color 0 0 0 0))
  125. (fill (type background))
  126. )
  127. (polyline
  128. (pts
  129. (xy -3.81 -3.81)
  130. (xy -0.635 -3.81)
  131. )
  132. (stroke (width 0.254) (type default) (color 0 0 0 0))
  133. (fill (type background))
  134. )
  135. (polyline
  136. (pts
  137. (xy -3.81 3.81)
  138. (xy -0.635 3.81)
  139. )
  140. (stroke (width 0.254) (type default) (color 0 0 0 0))
  141. (fill (type background))
  142. )
  143. (polyline
  144. (pts
  145. (xy -0.635 3.81)
  146. (xy -3.81 3.81)
  147. (xy -3.81 3.81)
  148. (xy -3.556 3.4036)
  149. (xy -3.0226 2.2606)
  150. (xy -2.6924 1.0414)
  151. (xy -2.6162 -0.254)
  152. (xy -2.7686 -1.4986)
  153. (xy -3.175 -2.7178)
  154. (xy -3.81 -3.81)
  155. (xy -3.81 -3.81)
  156. (xy -0.635 -3.81)
  157. )
  158. (stroke (width -25.4) (type default) (color 0 0 0 0))
  159. (fill (type background))
  160. )
  161. (arc (start 3.81 0) (mid 2.1928 2.5925) (end -0.6096 3.81)
  162. (stroke (width 0.254) (type default) (color 0 0 0 0))
  163. (fill (type background))
  164. )
  165. (pin output inverted (at 7.62 0 180) (length 3.81)
  166. (name "~" (effects (font (size 1.27 1.27))))
  167. (number "4" (effects (font (size 1.27 1.27))))
  168. )
  169. (pin input line (at -7.62 2.54 0) (length 4.318)
  170. (name "~" (effects (font (size 1.27 1.27))))
  171. (number "5" (effects (font (size 1.27 1.27))))
  172. )
  173. (pin input line (at -7.62 -2.54 0) (length 4.318)
  174. (name "~" (effects (font (size 1.27 1.27))))
  175. (number "6" (effects (font (size 1.27 1.27))))
  176. )
  177. )
  178. (symbol "74LS02_2_2"
  179. (arc (start 0 -3.81) (mid 3.81 0) (end 0 3.81)
  180. (stroke (width 0.254) (type default) (color 0 0 0 0))
  181. (fill (type background))
  182. )
  183. (polyline
  184. (pts
  185. (xy 0 3.81)
  186. (xy -3.81 3.81)
  187. (xy -3.81 -3.81)
  188. (xy 0 -3.81)
  189. )
  190. (stroke (width 0.254) (type default) (color 0 0 0 0))
  191. (fill (type background))
  192. )
  193. (pin output line (at 7.62 0 180) (length 3.81)
  194. (name "~" (effects (font (size 1.27 1.27))))
  195. (number "4" (effects (font (size 1.27 1.27))))
  196. )
  197. (pin input inverted (at -7.62 2.54 0) (length 3.81)
  198. (name "~" (effects (font (size 1.27 1.27))))
  199. (number "5" (effects (font (size 1.27 1.27))))
  200. )
  201. (pin input inverted (at -7.62 -2.54 0) (length 3.81)
  202. (name "~" (effects (font (size 1.27 1.27))))
  203. (number "6" (effects (font (size 1.27 1.27))))
  204. )
  205. )
  206. (symbol "74LS02_3_1"
  207. (arc (start -3.81 -3.81) (mid -2.589 0) (end -3.81 3.81)
  208. (stroke (width 0.254) (type default) (color 0 0 0 0))
  209. (fill (type none))
  210. )
  211. (arc (start -0.6096 -3.81) (mid 2.1855 -2.584) (end 3.81 0)
  212. (stroke (width 0.254) (type default) (color 0 0 0 0))
  213. (fill (type background))
  214. )
  215. (polyline
  216. (pts
  217. (xy -3.81 -3.81)
  218. (xy -0.635 -3.81)
  219. )
  220. (stroke (width 0.254) (type default) (color 0 0 0 0))
  221. (fill (type background))
  222. )
  223. (polyline
  224. (pts
  225. (xy -3.81 3.81)
  226. (xy -0.635 3.81)
  227. )
  228. (stroke (width 0.254) (type default) (color 0 0 0 0))
  229. (fill (type background))
  230. )
  231. (polyline
  232. (pts
  233. (xy -0.635 3.81)
  234. (xy -3.81 3.81)
  235. (xy -3.81 3.81)
  236. (xy -3.556 3.4036)
  237. (xy -3.0226 2.2606)
  238. (xy -2.6924 1.0414)
  239. (xy -2.6162 -0.254)
  240. (xy -2.7686 -1.4986)
  241. (xy -3.175 -2.7178)
  242. (xy -3.81 -3.81)
  243. (xy -3.81 -3.81)
  244. (xy -0.635 -3.81)
  245. )
  246. (stroke (width -25.4) (type default) (color 0 0 0 0))
  247. (fill (type background))
  248. )
  249. (arc (start 3.81 0) (mid 2.1928 2.5925) (end -0.6096 3.81)
  250. (stroke (width 0.254) (type default) (color 0 0 0 0))
  251. (fill (type background))
  252. )
  253. (pin output inverted (at 7.62 0 180) (length 3.81)
  254. (name "~" (effects (font (size 1.27 1.27))))
  255. (number "10" (effects (font (size 1.27 1.27))))
  256. )
  257. (pin input line (at -7.62 2.54 0) (length 4.318)
  258. (name "~" (effects (font (size 1.27 1.27))))
  259. (number "8" (effects (font (size 1.27 1.27))))
  260. )
  261. (pin input line (at -7.62 -2.54 0) (length 4.318)
  262. (name "~" (effects (font (size 1.27 1.27))))
  263. (number "9" (effects (font (size 1.27 1.27))))
  264. )
  265. )
  266. (symbol "74LS02_3_2"
  267. (arc (start 0 -3.81) (mid 3.81 0) (end 0 3.81)
  268. (stroke (width 0.254) (type default) (color 0 0 0 0))
  269. (fill (type background))
  270. )
  271. (polyline
  272. (pts
  273. (xy 0 3.81)
  274. (xy -3.81 3.81)
  275. (xy -3.81 -3.81)
  276. (xy 0 -3.81)
  277. )
  278. (stroke (width 0.254) (type default) (color 0 0 0 0))
  279. (fill (type background))
  280. )
  281. (pin output line (at 7.62 0 180) (length 3.81)
  282. (name "~" (effects (font (size 1.27 1.27))))
  283. (number "10" (effects (font (size 1.27 1.27))))
  284. )
  285. (pin input inverted (at -7.62 2.54 0) (length 3.81)
  286. (name "~" (effects (font (size 1.27 1.27))))
  287. (number "8" (effects (font (size 1.27 1.27))))
  288. )
  289. (pin input inverted (at -7.62 -2.54 0) (length 3.81)
  290. (name "~" (effects (font (size 1.27 1.27))))
  291. (number "9" (effects (font (size 1.27 1.27))))
  292. )
  293. )
  294. (symbol "74LS02_4_1"
  295. (arc (start -3.81 -3.81) (mid -2.589 0) (end -3.81 3.81)
  296. (stroke (width 0.254) (type default) (color 0 0 0 0))
  297. (fill (type none))
  298. )
  299. (arc (start -0.6096 -3.81) (mid 2.1855 -2.584) (end 3.81 0)
  300. (stroke (width 0.254) (type default) (color 0 0 0 0))
  301. (fill (type background))
  302. )
  303. (polyline
  304. (pts
  305. (xy -3.81 -3.81)
  306. (xy -0.635 -3.81)
  307. )
  308. (stroke (width 0.254) (type default) (color 0 0 0 0))
  309. (fill (type background))
  310. )
  311. (polyline
  312. (pts
  313. (xy -3.81 3.81)
  314. (xy -0.635 3.81)
  315. )
  316. (stroke (width 0.254) (type default) (color 0 0 0 0))
  317. (fill (type background))
  318. )
  319. (polyline
  320. (pts
  321. (xy -0.635 3.81)
  322. (xy -3.81 3.81)
  323. (xy -3.81 3.81)
  324. (xy -3.556 3.4036)
  325. (xy -3.0226 2.2606)
  326. (xy -2.6924 1.0414)
  327. (xy -2.6162 -0.254)
  328. (xy -2.7686 -1.4986)
  329. (xy -3.175 -2.7178)
  330. (xy -3.81 -3.81)
  331. (xy -3.81 -3.81)
  332. (xy -0.635 -3.81)
  333. )
  334. (stroke (width -25.4) (type default) (color 0 0 0 0))
  335. (fill (type background))
  336. )
  337. (arc (start 3.81 0) (mid 2.1928 2.5925) (end -0.6096 3.81)
  338. (stroke (width 0.254) (type default) (color 0 0 0 0))
  339. (fill (type background))
  340. )
  341. (pin input line (at -7.62 2.54 0) (length 4.318)
  342. (name "~" (effects (font (size 1.27 1.27))))
  343. (number "11" (effects (font (size 1.27 1.27))))
  344. )
  345. (pin input line (at -7.62 -2.54 0) (length 4.318)
  346. (name "~" (effects (font (size 1.27 1.27))))
  347. (number "12" (effects (font (size 1.27 1.27))))
  348. )
  349. (pin output inverted (at 7.62 0 180) (length 3.81)
  350. (name "~" (effects (font (size 1.27 1.27))))
  351. (number "13" (effects (font (size 1.27 1.27))))
  352. )
  353. )
  354. (symbol "74LS02_4_2"
  355. (arc (start 0 -3.81) (mid 3.81 0) (end 0 3.81)
  356. (stroke (width 0.254) (type default) (color 0 0 0 0))
  357. (fill (type background))
  358. )
  359. (polyline
  360. (pts
  361. (xy 0 3.81)
  362. (xy -3.81 3.81)
  363. (xy -3.81 -3.81)
  364. (xy 0 -3.81)
  365. )
  366. (stroke (width 0.254) (type default) (color 0 0 0 0))
  367. (fill (type background))
  368. )
  369. (pin input inverted (at -7.62 2.54 0) (length 3.81)
  370. (name "~" (effects (font (size 1.27 1.27))))
  371. (number "11" (effects (font (size 1.27 1.27))))
  372. )
  373. (pin input inverted (at -7.62 -2.54 0) (length 3.81)
  374. (name "~" (effects (font (size 1.27 1.27))))
  375. (number "12" (effects (font (size 1.27 1.27))))
  376. )
  377. (pin output line (at 7.62 0 180) (length 3.81)
  378. (name "~" (effects (font (size 1.27 1.27))))
  379. (number "13" (effects (font (size 1.27 1.27))))
  380. )
  381. )
  382. (symbol "74LS02_5_0"
  383. (pin power_in line (at 0 12.7 270) (length 5.08)
  384. (name "VCC" (effects (font (size 1.27 1.27))))
  385. (number "14" (effects (font (size 1.27 1.27))))
  386. )
  387. (pin power_in line (at 0 -12.7 90) (length 5.08)
  388. (name "GND" (effects (font (size 1.27 1.27))))
  389. (number "7" (effects (font (size 1.27 1.27))))
  390. )
  391. )
  392. (symbol "74LS02_5_1"
  393. (rectangle (start -5.08 7.62) (end 5.08 -7.62)
  394. (stroke (width 0.254) (type default) (color 0 0 0 0))
  395. (fill (type background))
  396. )
  397. )
  398. )
  399. (symbol "Connector:Conn_01x03_Male" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  400. (property "Reference" "J" (id 0) (at 0 5.08 0)
  401. (effects (font (size 1.27 1.27)))
  402. )
  403. (property "Value" "Conn_01x03_Male" (id 1) (at 0 -5.08 0)
  404. (effects (font (size 1.27 1.27)))
  405. )
  406. (property "Footprint" "" (id 2) (at 0 0 0)
  407. (effects (font (size 1.27 1.27)) hide)
  408. )
  409. (property "Datasheet" "~" (id 3) (at 0 0 0)
  410. (effects (font (size 1.27 1.27)) hide)
  411. )
  412. (property "ki_keywords" "connector" (id 4) (at 0 0 0)
  413. (effects (font (size 1.27 1.27)) hide)
  414. )
  415. (property "ki_description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
  416. (effects (font (size 1.27 1.27)) hide)
  417. )
  418. (property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
  419. (effects (font (size 1.27 1.27)) hide)
  420. )
  421. (symbol "Conn_01x03_Male_1_1"
  422. (polyline
  423. (pts
  424. (xy 1.27 -2.54)
  425. (xy 0.8636 -2.54)
  426. )
  427. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  428. (fill (type none))
  429. )
  430. (polyline
  431. (pts
  432. (xy 1.27 0)
  433. (xy 0.8636 0)
  434. )
  435. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  436. (fill (type none))
  437. )
  438. (polyline
  439. (pts
  440. (xy 1.27 2.54)
  441. (xy 0.8636 2.54)
  442. )
  443. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  444. (fill (type none))
  445. )
  446. (rectangle (start 0.8636 -2.413) (end 0 -2.667)
  447. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  448. (fill (type outline))
  449. )
  450. (rectangle (start 0.8636 0.127) (end 0 -0.127)
  451. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  452. (fill (type outline))
  453. )
  454. (rectangle (start 0.8636 2.667) (end 0 2.413)
  455. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  456. (fill (type outline))
  457. )
  458. (pin passive line (at 5.08 2.54 180) (length 3.81)
  459. (name "Pin_1" (effects (font (size 1.27 1.27))))
  460. (number "1" (effects (font (size 1.27 1.27))))
  461. )
  462. (pin passive line (at 5.08 0 180) (length 3.81)
  463. (name "Pin_2" (effects (font (size 1.27 1.27))))
  464. (number "2" (effects (font (size 1.27 1.27))))
  465. )
  466. (pin passive line (at 5.08 -2.54 180) (length 3.81)
  467. (name "Pin_3" (effects (font (size 1.27 1.27))))
  468. (number "3" (effects (font (size 1.27 1.27))))
  469. )
  470. )
  471. )
  472. (symbol "Connector:DB25_Female_MountingHoles" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  473. (property "Reference" "J" (id 0) (at 0 36.83 0)
  474. (effects (font (size 1.27 1.27)))
  475. )
  476. (property "Value" "DB25_Female_MountingHoles" (id 1) (at 0 34.925 0)
  477. (effects (font (size 1.27 1.27)))
  478. )
  479. (property "Footprint" "" (id 2) (at 0 0 0)
  480. (effects (font (size 1.27 1.27)) hide)
  481. )
  482. (property "Datasheet" " ~" (id 3) (at 0 0 0)
  483. (effects (font (size 1.27 1.27)) hide)
  484. )
  485. (property "ki_keywords" "female D-SUB connector" (id 4) (at 0 0 0)
  486. (effects (font (size 1.27 1.27)) hide)
  487. )
  488. (property "ki_description" "25-pin female D-SUB connector, Mounting Hole" (id 5) (at 0 0 0)
  489. (effects (font (size 1.27 1.27)) hide)
  490. )
  491. (property "ki_fp_filters" "DSUB*Female*" (id 6) (at 0 0 0)
  492. (effects (font (size 1.27 1.27)) hide)
  493. )
  494. (symbol "DB25_Female_MountingHoles_0_1"
  495. (circle (center -1.778 -30.48) (radius 0.762)
  496. (stroke (width 0) (type default) (color 0 0 0 0))
  497. (fill (type none))
  498. )
  499. (circle (center -1.778 -25.4) (radius 0.762)
  500. (stroke (width 0) (type default) (color 0 0 0 0))
  501. (fill (type none))
  502. )
  503. (circle (center -1.778 -20.32) (radius 0.762)
  504. (stroke (width 0) (type default) (color 0 0 0 0))
  505. (fill (type none))
  506. )
  507. (circle (center -1.778 -15.24) (radius 0.762)
  508. (stroke (width 0) (type default) (color 0 0 0 0))
  509. (fill (type none))
  510. )
  511. (circle (center -1.778 -10.16) (radius 0.762)
  512. (stroke (width 0) (type default) (color 0 0 0 0))
  513. (fill (type none))
  514. )
  515. (circle (center -1.778 -5.08) (radius 0.762)
  516. (stroke (width 0) (type default) (color 0 0 0 0))
  517. (fill (type none))
  518. )
  519. (circle (center -1.778 0) (radius 0.762)
  520. (stroke (width 0) (type default) (color 0 0 0 0))
  521. (fill (type none))
  522. )
  523. (circle (center -1.778 5.08) (radius 0.762)
  524. (stroke (width 0) (type default) (color 0 0 0 0))
  525. (fill (type none))
  526. )
  527. (circle (center -1.778 10.16) (radius 0.762)
  528. (stroke (width 0) (type default) (color 0 0 0 0))
  529. (fill (type none))
  530. )
  531. (circle (center -1.778 15.24) (radius 0.762)
  532. (stroke (width 0) (type default) (color 0 0 0 0))
  533. (fill (type none))
  534. )
  535. (circle (center -1.778 20.32) (radius 0.762)
  536. (stroke (width 0) (type default) (color 0 0 0 0))
  537. (fill (type none))
  538. )
  539. (circle (center -1.778 25.4) (radius 0.762)
  540. (stroke (width 0) (type default) (color 0 0 0 0))
  541. (fill (type none))
  542. )
  543. (circle (center -1.778 30.48) (radius 0.762)
  544. (stroke (width 0) (type default) (color 0 0 0 0))
  545. (fill (type none))
  546. )
  547. (polyline
  548. (pts
  549. (xy -3.81 -30.48)
  550. (xy -2.54 -30.48)
  551. )
  552. (stroke (width 0) (type default) (color 0 0 0 0))
  553. (fill (type none))
  554. )
  555. (polyline
  556. (pts
  557. (xy -3.81 -27.94)
  558. (xy 0.508 -27.94)
  559. )
  560. (stroke (width 0) (type default) (color 0 0 0 0))
  561. (fill (type none))
  562. )
  563. (polyline
  564. (pts
  565. (xy -3.81 -25.4)
  566. (xy -2.54 -25.4)
  567. )
  568. (stroke (width 0) (type default) (color 0 0 0 0))
  569. (fill (type none))
  570. )
  571. (polyline
  572. (pts
  573. (xy -3.81 -22.86)
  574. (xy 0.508 -22.86)
  575. )
  576. (stroke (width 0) (type default) (color 0 0 0 0))
  577. (fill (type none))
  578. )
  579. (polyline
  580. (pts
  581. (xy -3.81 -20.32)
  582. (xy -2.54 -20.32)
  583. )
  584. (stroke (width 0) (type default) (color 0 0 0 0))
  585. (fill (type none))
  586. )
  587. (polyline
  588. (pts
  589. (xy -3.81 -17.78)
  590. (xy 0.508 -17.78)
  591. )
  592. (stroke (width 0) (type default) (color 0 0 0 0))
  593. (fill (type none))
  594. )
  595. (polyline
  596. (pts
  597. (xy -3.81 -15.24)
  598. (xy -2.54 -15.24)
  599. )
  600. (stroke (width 0) (type default) (color 0 0 0 0))
  601. (fill (type none))
  602. )
  603. (polyline
  604. (pts
  605. (xy -3.81 -12.7)
  606. (xy 0.508 -12.7)
  607. )
  608. (stroke (width 0) (type default) (color 0 0 0 0))
  609. (fill (type none))
  610. )
  611. (polyline
  612. (pts
  613. (xy -3.81 -10.16)
  614. (xy -2.54 -10.16)
  615. )
  616. (stroke (width 0) (type default) (color 0 0 0 0))
  617. (fill (type none))
  618. )
  619. (polyline
  620. (pts
  621. (xy -3.81 -7.62)
  622. (xy 0.508 -7.62)
  623. )
  624. (stroke (width 0) (type default) (color 0 0 0 0))
  625. (fill (type none))
  626. )
  627. (polyline
  628. (pts
  629. (xy -3.81 -5.08)
  630. (xy -2.54 -5.08)
  631. )
  632. (stroke (width 0) (type default) (color 0 0 0 0))
  633. (fill (type none))
  634. )
  635. (polyline
  636. (pts
  637. (xy -3.81 -2.54)
  638. (xy 0.508 -2.54)
  639. )
  640. (stroke (width 0) (type default) (color 0 0 0 0))
  641. (fill (type none))
  642. )
  643. (polyline
  644. (pts
  645. (xy -3.81 0)
  646. (xy -2.54 0)
  647. )
  648. (stroke (width 0) (type default) (color 0 0 0 0))
  649. (fill (type none))
  650. )
  651. (polyline
  652. (pts
  653. (xy -3.81 2.54)
  654. (xy 0.508 2.54)
  655. )
  656. (stroke (width 0) (type default) (color 0 0 0 0))
  657. (fill (type none))
  658. )
  659. (polyline
  660. (pts
  661. (xy -3.81 5.08)
  662. (xy -2.54 5.08)
  663. )
  664. (stroke (width 0) (type default) (color 0 0 0 0))
  665. (fill (type none))
  666. )
  667. (polyline
  668. (pts
  669. (xy -3.81 7.62)
  670. (xy 0.508 7.62)
  671. )
  672. (stroke (width 0) (type default) (color 0 0 0 0))
  673. (fill (type none))
  674. )
  675. (polyline
  676. (pts
  677. (xy -3.81 10.16)
  678. (xy -2.54 10.16)
  679. )
  680. (stroke (width 0) (type default) (color 0 0 0 0))
  681. (fill (type none))
  682. )
  683. (polyline
  684. (pts
  685. (xy -3.81 12.7)
  686. (xy 0.508 12.7)
  687. )
  688. (stroke (width 0) (type default) (color 0 0 0 0))
  689. (fill (type none))
  690. )
  691. (polyline
  692. (pts
  693. (xy -3.81 15.24)
  694. (xy -2.54 15.24)
  695. )
  696. (stroke (width 0) (type default) (color 0 0 0 0))
  697. (fill (type none))
  698. )
  699. (polyline
  700. (pts
  701. (xy -3.81 17.78)
  702. (xy 0.508 17.78)
  703. )
  704. (stroke (width 0) (type default) (color 0 0 0 0))
  705. (fill (type none))
  706. )
  707. (polyline
  708. (pts
  709. (xy -3.81 20.32)
  710. (xy -2.54 20.32)
  711. )
  712. (stroke (width 0) (type default) (color 0 0 0 0))
  713. (fill (type none))
  714. )
  715. (polyline
  716. (pts
  717. (xy -3.81 22.86)
  718. (xy 0.508 22.86)
  719. )
  720. (stroke (width 0) (type default) (color 0 0 0 0))
  721. (fill (type none))
  722. )
  723. (polyline
  724. (pts
  725. (xy -3.81 25.4)
  726. (xy -2.54 25.4)
  727. )
  728. (stroke (width 0) (type default) (color 0 0 0 0))
  729. (fill (type none))
  730. )
  731. (polyline
  732. (pts
  733. (xy -3.81 27.94)
  734. (xy 0.508 27.94)
  735. )
  736. (stroke (width 0) (type default) (color 0 0 0 0))
  737. (fill (type none))
  738. )
  739. (polyline
  740. (pts
  741. (xy -3.81 30.48)
  742. (xy -2.54 30.48)
  743. )
  744. (stroke (width 0) (type default) (color 0 0 0 0))
  745. (fill (type none))
  746. )
  747. (polyline
  748. (pts
  749. (xy -3.81 33.655)
  750. (xy 3.81 29.845)
  751. (xy 3.81 -29.845)
  752. (xy -3.81 -33.655)
  753. (xy -3.81 33.655)
  754. )
  755. (stroke (width 0.254) (type default) (color 0 0 0 0))
  756. (fill (type background))
  757. )
  758. (circle (center 1.27 -27.94) (radius 0.762)
  759. (stroke (width 0) (type default) (color 0 0 0 0))
  760. (fill (type none))
  761. )
  762. (circle (center 1.27 -22.86) (radius 0.762)
  763. (stroke (width 0) (type default) (color 0 0 0 0))
  764. (fill (type none))
  765. )
  766. (circle (center 1.27 -17.78) (radius 0.762)
  767. (stroke (width 0) (type default) (color 0 0 0 0))
  768. (fill (type none))
  769. )
  770. (circle (center 1.27 -12.7) (radius 0.762)
  771. (stroke (width 0) (type default) (color 0 0 0 0))
  772. (fill (type none))
  773. )
  774. (circle (center 1.27 -7.62) (radius 0.762)
  775. (stroke (width 0) (type default) (color 0 0 0 0))
  776. (fill (type none))
  777. )
  778. (circle (center 1.27 -2.54) (radius 0.762)
  779. (stroke (width 0) (type default) (color 0 0 0 0))
  780. (fill (type none))
  781. )
  782. (circle (center 1.27 2.54) (radius 0.762)
  783. (stroke (width 0) (type default) (color 0 0 0 0))
  784. (fill (type none))
  785. )
  786. (circle (center 1.27 7.62) (radius 0.762)
  787. (stroke (width 0) (type default) (color 0 0 0 0))
  788. (fill (type none))
  789. )
  790. (circle (center 1.27 12.7) (radius 0.762)
  791. (stroke (width 0) (type default) (color 0 0 0 0))
  792. (fill (type none))
  793. )
  794. (circle (center 1.27 17.78) (radius 0.762)
  795. (stroke (width 0) (type default) (color 0 0 0 0))
  796. (fill (type none))
  797. )
  798. (circle (center 1.27 22.86) (radius 0.762)
  799. (stroke (width 0) (type default) (color 0 0 0 0))
  800. (fill (type none))
  801. )
  802. (circle (center 1.27 27.94) (radius 0.762)
  803. (stroke (width 0) (type default) (color 0 0 0 0))
  804. (fill (type none))
  805. )
  806. )
  807. (symbol "DB25_Female_MountingHoles_1_1"
  808. (pin passive line (at 0 -35.56 90) (length 3.81)
  809. (name "PAD" (effects (font (size 1.27 1.27))))
  810. (number "0" (effects (font (size 1.27 1.27))))
  811. )
  812. (pin passive line (at -7.62 30.48 0) (length 3.81)
  813. (name "1" (effects (font (size 1.27 1.27))))
  814. (number "1" (effects (font (size 1.27 1.27))))
  815. )
  816. (pin passive line (at -7.62 -15.24 0) (length 3.81)
  817. (name "10" (effects (font (size 1.27 1.27))))
  818. (number "10" (effects (font (size 1.27 1.27))))
  819. )
  820. (pin passive line (at -7.62 -20.32 0) (length 3.81)
  821. (name "11" (effects (font (size 1.27 1.27))))
  822. (number "11" (effects (font (size 1.27 1.27))))
  823. )
  824. (pin passive line (at -7.62 -25.4 0) (length 3.81)
  825. (name "12" (effects (font (size 1.27 1.27))))
  826. (number "12" (effects (font (size 1.27 1.27))))
  827. )
  828. (pin passive line (at -7.62 -30.48 0) (length 3.81)
  829. (name "13" (effects (font (size 1.27 1.27))))
  830. (number "13" (effects (font (size 1.27 1.27))))
  831. )
  832. (pin passive line (at -7.62 27.94 0) (length 3.81)
  833. (name "P14" (effects (font (size 1.27 1.27))))
  834. (number "14" (effects (font (size 1.27 1.27))))
  835. )
  836. (pin passive line (at -7.62 22.86 0) (length 3.81)
  837. (name "P15" (effects (font (size 1.27 1.27))))
  838. (number "15" (effects (font (size 1.27 1.27))))
  839. )
  840. (pin passive line (at -7.62 17.78 0) (length 3.81)
  841. (name "P16" (effects (font (size 1.27 1.27))))
  842. (number "16" (effects (font (size 1.27 1.27))))
  843. )
  844. (pin passive line (at -7.62 12.7 0) (length 3.81)
  845. (name "P17" (effects (font (size 1.27 1.27))))
  846. (number "17" (effects (font (size 1.27 1.27))))
  847. )
  848. (pin passive line (at -7.62 7.62 0) (length 3.81)
  849. (name "P18" (effects (font (size 1.27 1.27))))
  850. (number "18" (effects (font (size 1.27 1.27))))
  851. )
  852. (pin passive line (at -7.62 2.54 0) (length 3.81)
  853. (name "P19" (effects (font (size 1.27 1.27))))
  854. (number "19" (effects (font (size 1.27 1.27))))
  855. )
  856. (pin passive line (at -7.62 25.4 0) (length 3.81)
  857. (name "2" (effects (font (size 1.27 1.27))))
  858. (number "2" (effects (font (size 1.27 1.27))))
  859. )
  860. (pin passive line (at -7.62 -2.54 0) (length 3.81)
  861. (name "P20" (effects (font (size 1.27 1.27))))
  862. (number "20" (effects (font (size 1.27 1.27))))
  863. )
  864. (pin passive line (at -7.62 -7.62 0) (length 3.81)
  865. (name "P21" (effects (font (size 1.27 1.27))))
  866. (number "21" (effects (font (size 1.27 1.27))))
  867. )
  868. (pin passive line (at -7.62 -12.7 0) (length 3.81)
  869. (name "P22" (effects (font (size 1.27 1.27))))
  870. (number "22" (effects (font (size 1.27 1.27))))
  871. )
  872. (pin passive line (at -7.62 -17.78 0) (length 3.81)
  873. (name "P23" (effects (font (size 1.27 1.27))))
  874. (number "23" (effects (font (size 1.27 1.27))))
  875. )
  876. (pin passive line (at -7.62 -22.86 0) (length 3.81)
  877. (name "P24" (effects (font (size 1.27 1.27))))
  878. (number "24" (effects (font (size 1.27 1.27))))
  879. )
  880. (pin passive line (at -7.62 -27.94 0) (length 3.81)
  881. (name "P25" (effects (font (size 1.27 1.27))))
  882. (number "25" (effects (font (size 1.27 1.27))))
  883. )
  884. (pin passive line (at -7.62 20.32 0) (length 3.81)
  885. (name "3" (effects (font (size 1.27 1.27))))
  886. (number "3" (effects (font (size 1.27 1.27))))
  887. )
  888. (pin passive line (at -7.62 15.24 0) (length 3.81)
  889. (name "4" (effects (font (size 1.27 1.27))))
  890. (number "4" (effects (font (size 1.27 1.27))))
  891. )
  892. (pin passive line (at -7.62 10.16 0) (length 3.81)
  893. (name "5" (effects (font (size 1.27 1.27))))
  894. (number "5" (effects (font (size 1.27 1.27))))
  895. )
  896. (pin passive line (at -7.62 5.08 0) (length 3.81)
  897. (name "6" (effects (font (size 1.27 1.27))))
  898. (number "6" (effects (font (size 1.27 1.27))))
  899. )
  900. (pin passive line (at -7.62 0 0) (length 3.81)
  901. (name "7" (effects (font (size 1.27 1.27))))
  902. (number "7" (effects (font (size 1.27 1.27))))
  903. )
  904. (pin passive line (at -7.62 -5.08 0) (length 3.81)
  905. (name "8" (effects (font (size 1.27 1.27))))
  906. (number "8" (effects (font (size 1.27 1.27))))
  907. )
  908. (pin passive line (at -7.62 -10.16 0) (length 3.81)
  909. (name "9" (effects (font (size 1.27 1.27))))
  910. (number "9" (effects (font (size 1.27 1.27))))
  911. )
  912. )
  913. )
  914. (symbol "Connector_Generic:Conn_02x17_Odd_Even" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  915. (property "Reference" "J" (id 0) (at 1.27 22.86 0)
  916. (effects (font (size 1.27 1.27)))
  917. )
  918. (property "Value" "Conn_02x17_Odd_Even" (id 1) (at 1.27 -22.86 0)
  919. (effects (font (size 1.27 1.27)))
  920. )
  921. (property "Footprint" "" (id 2) (at 0 0 0)
  922. (effects (font (size 1.27 1.27)) hide)
  923. )
  924. (property "Datasheet" "~" (id 3) (at 0 0 0)
  925. (effects (font (size 1.27 1.27)) hide)
  926. )
  927. (property "ki_keywords" "connector" (id 4) (at 0 0 0)
  928. (effects (font (size 1.27 1.27)) hide)
  929. )
  930. (property "ki_description" "Generic connector, double row, 02x17, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
  931. (effects (font (size 1.27 1.27)) hide)
  932. )
  933. (property "ki_fp_filters" "Connector*:*_2x??_*" (id 6) (at 0 0 0)
  934. (effects (font (size 1.27 1.27)) hide)
  935. )
  936. (symbol "Conn_02x17_Odd_Even_1_1"
  937. (rectangle (start -1.27 -20.193) (end 0 -20.447)
  938. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  939. (fill (type none))
  940. )
  941. (rectangle (start -1.27 -17.653) (end 0 -17.907)
  942. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  943. (fill (type none))
  944. )
  945. (rectangle (start -1.27 -15.113) (end 0 -15.367)
  946. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  947. (fill (type none))
  948. )
  949. (rectangle (start -1.27 -12.573) (end 0 -12.827)
  950. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  951. (fill (type none))
  952. )
  953. (rectangle (start -1.27 -10.033) (end 0 -10.287)
  954. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  955. (fill (type none))
  956. )
  957. (rectangle (start -1.27 -7.493) (end 0 -7.747)
  958. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  959. (fill (type none))
  960. )
  961. (rectangle (start -1.27 -4.953) (end 0 -5.207)
  962. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  963. (fill (type none))
  964. )
  965. (rectangle (start -1.27 -2.413) (end 0 -2.667)
  966. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  967. (fill (type none))
  968. )
  969. (rectangle (start -1.27 0.127) (end 0 -0.127)
  970. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  971. (fill (type none))
  972. )
  973. (rectangle (start -1.27 2.667) (end 0 2.413)
  974. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  975. (fill (type none))
  976. )
  977. (rectangle (start -1.27 5.207) (end 0 4.953)
  978. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  979. (fill (type none))
  980. )
  981. (rectangle (start -1.27 7.747) (end 0 7.493)
  982. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  983. (fill (type none))
  984. )
  985. (rectangle (start -1.27 10.287) (end 0 10.033)
  986. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  987. (fill (type none))
  988. )
  989. (rectangle (start -1.27 12.827) (end 0 12.573)
  990. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  991. (fill (type none))
  992. )
  993. (rectangle (start -1.27 15.367) (end 0 15.113)
  994. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  995. (fill (type none))
  996. )
  997. (rectangle (start -1.27 17.907) (end 0 17.653)
  998. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  999. (fill (type none))
  1000. )
  1001. (rectangle (start -1.27 20.447) (end 0 20.193)
  1002. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1003. (fill (type none))
  1004. )
  1005. (rectangle (start -1.27 21.59) (end 3.81 -21.59)
  1006. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1007. (fill (type background))
  1008. )
  1009. (rectangle (start 3.81 -20.193) (end 2.54 -20.447)
  1010. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1011. (fill (type none))
  1012. )
  1013. (rectangle (start 3.81 -17.653) (end 2.54 -17.907)
  1014. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1015. (fill (type none))
  1016. )
  1017. (rectangle (start 3.81 -15.113) (end 2.54 -15.367)
  1018. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1019. (fill (type none))
  1020. )
  1021. (rectangle (start 3.81 -12.573) (end 2.54 -12.827)
  1022. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1023. (fill (type none))
  1024. )
  1025. (rectangle (start 3.81 -10.033) (end 2.54 -10.287)
  1026. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1027. (fill (type none))
  1028. )
  1029. (rectangle (start 3.81 -7.493) (end 2.54 -7.747)
  1030. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1031. (fill (type none))
  1032. )
  1033. (rectangle (start 3.81 -4.953) (end 2.54 -5.207)
  1034. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1035. (fill (type none))
  1036. )
  1037. (rectangle (start 3.81 -2.413) (end 2.54 -2.667)
  1038. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1039. (fill (type none))
  1040. )
  1041. (rectangle (start 3.81 0.127) (end 2.54 -0.127)
  1042. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1043. (fill (type none))
  1044. )
  1045. (rectangle (start 3.81 2.667) (end 2.54 2.413)
  1046. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1047. (fill (type none))
  1048. )
  1049. (rectangle (start 3.81 5.207) (end 2.54 4.953)
  1050. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1051. (fill (type none))
  1052. )
  1053. (rectangle (start 3.81 7.747) (end 2.54 7.493)
  1054. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1055. (fill (type none))
  1056. )
  1057. (rectangle (start 3.81 10.287) (end 2.54 10.033)
  1058. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1059. (fill (type none))
  1060. )
  1061. (rectangle (start 3.81 12.827) (end 2.54 12.573)
  1062. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1063. (fill (type none))
  1064. )
  1065. (rectangle (start 3.81 15.367) (end 2.54 15.113)
  1066. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1067. (fill (type none))
  1068. )
  1069. (rectangle (start 3.81 17.907) (end 2.54 17.653)
  1070. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1071. (fill (type none))
  1072. )
  1073. (rectangle (start 3.81 20.447) (end 2.54 20.193)
  1074. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1075. (fill (type none))
  1076. )
  1077. (pin passive line (at -5.08 20.32 0) (length 3.81)
  1078. (name "Pin_1" (effects (font (size 1.27 1.27))))
  1079. (number "1" (effects (font (size 1.27 1.27))))
  1080. )
  1081. (pin passive line (at 7.62 10.16 180) (length 3.81)
  1082. (name "Pin_10" (effects (font (size 1.27 1.27))))
  1083. (number "10" (effects (font (size 1.27 1.27))))
  1084. )
  1085. (pin passive line (at -5.08 7.62 0) (length 3.81)
  1086. (name "Pin_11" (effects (font (size 1.27 1.27))))
  1087. (number "11" (effects (font (size 1.27 1.27))))
  1088. )
  1089. (pin passive line (at 7.62 7.62 180) (length 3.81)
  1090. (name "Pin_12" (effects (font (size 1.27 1.27))))
  1091. (number "12" (effects (font (size 1.27 1.27))))
  1092. )
  1093. (pin passive line (at -5.08 5.08 0) (length 3.81)
  1094. (name "Pin_13" (effects (font (size 1.27 1.27))))
  1095. (number "13" (effects (font (size 1.27 1.27))))
  1096. )
  1097. (pin passive line (at 7.62 5.08 180) (length 3.81)
  1098. (name "Pin_14" (effects (font (size 1.27 1.27))))
  1099. (number "14" (effects (font (size 1.27 1.27))))
  1100. )
  1101. (pin passive line (at -5.08 2.54 0) (length 3.81)
  1102. (name "Pin_15" (effects (font (size 1.27 1.27))))
  1103. (number "15" (effects (font (size 1.27 1.27))))
  1104. )
  1105. (pin passive line (at 7.62 2.54 180) (length 3.81)
  1106. (name "Pin_16" (effects (font (size 1.27 1.27))))
  1107. (number "16" (effects (font (size 1.27 1.27))))
  1108. )
  1109. (pin passive line (at -5.08 0 0) (length 3.81)
  1110. (name "Pin_17" (effects (font (size 1.27 1.27))))
  1111. (number "17" (effects (font (size 1.27 1.27))))
  1112. )
  1113. (pin passive line (at 7.62 0 180) (length 3.81)
  1114. (name "Pin_18" (effects (font (size 1.27 1.27))))
  1115. (number "18" (effects (font (size 1.27 1.27))))
  1116. )
  1117. (pin passive line (at -5.08 -2.54 0) (length 3.81)
  1118. (name "Pin_19" (effects (font (size 1.27 1.27))))
  1119. (number "19" (effects (font (size 1.27 1.27))))
  1120. )
  1121. (pin passive line (at 7.62 20.32 180) (length 3.81)
  1122. (name "Pin_2" (effects (font (size 1.27 1.27))))
  1123. (number "2" (effects (font (size 1.27 1.27))))
  1124. )
  1125. (pin passive line (at 7.62 -2.54 180) (length 3.81)
  1126. (name "Pin_20" (effects (font (size 1.27 1.27))))
  1127. (number "20" (effects (font (size 1.27 1.27))))
  1128. )
  1129. (pin passive line (at -5.08 -5.08 0) (length 3.81)
  1130. (name "Pin_21" (effects (font (size 1.27 1.27))))
  1131. (number "21" (effects (font (size 1.27 1.27))))
  1132. )
  1133. (pin passive line (at 7.62 -5.08 180) (length 3.81)
  1134. (name "Pin_22" (effects (font (size 1.27 1.27))))
  1135. (number "22" (effects (font (size 1.27 1.27))))
  1136. )
  1137. (pin passive line (at -5.08 -7.62 0) (length 3.81)
  1138. (name "Pin_23" (effects (font (size 1.27 1.27))))
  1139. (number "23" (effects (font (size 1.27 1.27))))
  1140. )
  1141. (pin passive line (at 7.62 -7.62 180) (length 3.81)
  1142. (name "Pin_24" (effects (font (size 1.27 1.27))))
  1143. (number "24" (effects (font (size 1.27 1.27))))
  1144. )
  1145. (pin passive line (at -5.08 -10.16 0) (length 3.81)
  1146. (name "Pin_25" (effects (font (size 1.27 1.27))))
  1147. (number "25" (effects (font (size 1.27 1.27))))
  1148. )
  1149. (pin passive line (at 7.62 -10.16 180) (length 3.81)
  1150. (name "Pin_26" (effects (font (size 1.27 1.27))))
  1151. (number "26" (effects (font (size 1.27 1.27))))
  1152. )
  1153. (pin passive line (at -5.08 -12.7 0) (length 3.81)
  1154. (name "Pin_27" (effects (font (size 1.27 1.27))))
  1155. (number "27" (effects (font (size 1.27 1.27))))
  1156. )
  1157. (pin passive line (at 7.62 -12.7 180) (length 3.81)
  1158. (name "Pin_28" (effects (font (size 1.27 1.27))))
  1159. (number "28" (effects (font (size 1.27 1.27))))
  1160. )
  1161. (pin passive line (at -5.08 -15.24 0) (length 3.81)
  1162. (name "Pin_29" (effects (font (size 1.27 1.27))))
  1163. (number "29" (effects (font (size 1.27 1.27))))
  1164. )
  1165. (pin passive line (at -5.08 17.78 0) (length 3.81)
  1166. (name "Pin_3" (effects (font (size 1.27 1.27))))
  1167. (number "3" (effects (font (size 1.27 1.27))))
  1168. )
  1169. (pin passive line (at 7.62 -15.24 180) (length 3.81)
  1170. (name "Pin_30" (effects (font (size 1.27 1.27))))
  1171. (number "30" (effects (font (size 1.27 1.27))))
  1172. )
  1173. (pin passive line (at -5.08 -17.78 0) (length 3.81)
  1174. (name "Pin_31" (effects (font (size 1.27 1.27))))
  1175. (number "31" (effects (font (size 1.27 1.27))))
  1176. )
  1177. (pin passive line (at 7.62 -17.78 180) (length 3.81)
  1178. (name "Pin_32" (effects (font (size 1.27 1.27))))
  1179. (number "32" (effects (font (size 1.27 1.27))))
  1180. )
  1181. (pin passive line (at -5.08 -20.32 0) (length 3.81)
  1182. (name "Pin_33" (effects (font (size 1.27 1.27))))
  1183. (number "33" (effects (font (size 1.27 1.27))))
  1184. )
  1185. (pin passive line (at 7.62 -20.32 180) (length 3.81)
  1186. (name "Pin_34" (effects (font (size 1.27 1.27))))
  1187. (number "34" (effects (font (size 1.27 1.27))))
  1188. )
  1189. (pin passive line (at 7.62 17.78 180) (length 3.81)
  1190. (name "Pin_4" (effects (font (size 1.27 1.27))))
  1191. (number "4" (effects (font (size 1.27 1.27))))
  1192. )
  1193. (pin passive line (at -5.08 15.24 0) (length 3.81)
  1194. (name "Pin_5" (effects (font (size 1.27 1.27))))
  1195. (number "5" (effects (font (size 1.27 1.27))))
  1196. )
  1197. (pin passive line (at 7.62 15.24 180) (length 3.81)
  1198. (name "Pin_6" (effects (font (size 1.27 1.27))))
  1199. (number "6" (effects (font (size 1.27 1.27))))
  1200. )
  1201. (pin passive line (at -5.08 12.7 0) (length 3.81)
  1202. (name "Pin_7" (effects (font (size 1.27 1.27))))
  1203. (number "7" (effects (font (size 1.27 1.27))))
  1204. )
  1205. (pin passive line (at 7.62 12.7 180) (length 3.81)
  1206. (name "Pin_8" (effects (font (size 1.27 1.27))))
  1207. (number "8" (effects (font (size 1.27 1.27))))
  1208. )
  1209. (pin passive line (at -5.08 10.16 0) (length 3.81)
  1210. (name "Pin_9" (effects (font (size 1.27 1.27))))
  1211. (number "9" (effects (font (size 1.27 1.27))))
  1212. )
  1213. )
  1214. )
  1215. (symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
  1216. (property "Reference" "C" (id 0) (at 0.254 1.778 0)
  1217. (effects (font (size 1.27 1.27)) (justify left))
  1218. )
  1219. (property "Value" "C_Small" (id 1) (at 0.254 -2.032 0)
  1220. (effects (font (size 1.27 1.27)) (justify left))
  1221. )
  1222. (property "Footprint" "" (id 2) (at 0 0 0)
  1223. (effects (font (size 1.27 1.27)) hide)
  1224. )
  1225. (property "Datasheet" "~" (id 3) (at 0 0 0)
  1226. (effects (font (size 1.27 1.27)) hide)
  1227. )
  1228. (property "ki_keywords" "capacitor cap" (id 4) (at 0 0 0)
  1229. (effects (font (size 1.27 1.27)) hide)
  1230. )
  1231. (property "ki_description" "Unpolarized capacitor, small symbol" (id 5) (at 0 0 0)
  1232. (effects (font (size 1.27 1.27)) hide)
  1233. )
  1234. (property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
  1235. (effects (font (size 1.27 1.27)) hide)
  1236. )
  1237. (symbol "C_Small_0_1"
  1238. (polyline
  1239. (pts
  1240. (xy -1.524 -0.508)
  1241. (xy 1.524 -0.508)
  1242. )
  1243. (stroke (width 0.3302) (type default) (color 0 0 0 0))
  1244. (fill (type none))
  1245. )
  1246. (polyline
  1247. (pts
  1248. (xy -1.524 0.508)
  1249. (xy 1.524 0.508)
  1250. )
  1251. (stroke (width 0.3048) (type default) (color 0 0 0 0))
  1252. (fill (type none))
  1253. )
  1254. )
  1255. (symbol "C_Small_1_1"
  1256. (pin passive line (at 0 2.54 270) (length 2.032)
  1257. (name "~" (effects (font (size 1.27 1.27))))
  1258. (number "1" (effects (font (size 1.27 1.27))))
  1259. )
  1260. (pin passive line (at 0 -2.54 90) (length 2.032)
  1261. (name "~" (effects (font (size 1.27 1.27))))
  1262. (number "2" (effects (font (size 1.27 1.27))))
  1263. )
  1264. )
  1265. )
  1266. (symbol "power:+5V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1267. (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
  1268. (effects (font (size 1.27 1.27)) hide)
  1269. )
  1270. (property "Value" "+5V" (id 1) (at 0 3.556 0)
  1271. (effects (font (size 1.27 1.27)))
  1272. )
  1273. (property "Footprint" "" (id 2) (at 0 0 0)
  1274. (effects (font (size 1.27 1.27)) hide)
  1275. )
  1276. (property "Datasheet" "" (id 3) (at 0 0 0)
  1277. (effects (font (size 1.27 1.27)) hide)
  1278. )
  1279. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  1280. (effects (font (size 1.27 1.27)) hide)
  1281. )
  1282. (property "ki_description" "Power symbol creates a global label with name \"+5V\"" (id 5) (at 0 0 0)
  1283. (effects (font (size 1.27 1.27)) hide)
  1284. )
  1285. (symbol "+5V_0_1"
  1286. (polyline
  1287. (pts
  1288. (xy -0.762 1.27)
  1289. (xy 0 2.54)
  1290. )
  1291. (stroke (width 0) (type default) (color 0 0 0 0))
  1292. (fill (type none))
  1293. )
  1294. (polyline
  1295. (pts
  1296. (xy 0 0)
  1297. (xy 0 2.54)
  1298. )
  1299. (stroke (width 0) (type default) (color 0 0 0 0))
  1300. (fill (type none))
  1301. )
  1302. (polyline
  1303. (pts
  1304. (xy 0 2.54)
  1305. (xy 0.762 1.27)
  1306. )
  1307. (stroke (width 0) (type default) (color 0 0 0 0))
  1308. (fill (type none))
  1309. )
  1310. )
  1311. (symbol "+5V_1_1"
  1312. (pin power_in line (at 0 0 90) (length 0) hide
  1313. (name "+5V" (effects (font (size 1.27 1.27))))
  1314. (number "1" (effects (font (size 1.27 1.27))))
  1315. )
  1316. )
  1317. )
  1318. (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1319. (property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
  1320. (effects (font (size 1.27 1.27)) hide)
  1321. )
  1322. (property "Value" "GND" (id 1) (at 0 -3.81 0)
  1323. (effects (font (size 1.27 1.27)))
  1324. )
  1325. (property "Footprint" "" (id 2) (at 0 0 0)
  1326. (effects (font (size 1.27 1.27)) hide)
  1327. )
  1328. (property "Datasheet" "" (id 3) (at 0 0 0)
  1329. (effects (font (size 1.27 1.27)) hide)
  1330. )
  1331. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  1332. (effects (font (size 1.27 1.27)) hide)
  1333. )
  1334. (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
  1335. (effects (font (size 1.27 1.27)) hide)
  1336. )
  1337. (symbol "GND_0_1"
  1338. (polyline
  1339. (pts
  1340. (xy 0 0)
  1341. (xy 0 -1.27)
  1342. (xy 1.27 -1.27)
  1343. (xy 0 -2.54)
  1344. (xy -1.27 -1.27)
  1345. (xy 0 -1.27)
  1346. )
  1347. (stroke (width 0) (type default) (color 0 0 0 0))
  1348. (fill (type none))
  1349. )
  1350. )
  1351. (symbol "GND_1_1"
  1352. (pin power_in line (at 0 0 270) (length 0) hide
  1353. (name "GND" (effects (font (size 1.27 1.27))))
  1354. (number "1" (effects (font (size 1.27 1.27))))
  1355. )
  1356. )
  1357. )
  1358. )
  1359. (junction (at 101.6 109.22) (diameter 0) (color 0 0 0 0)
  1360. (uuid 260a9fd0-89f0-44cf-859b-ca4a762b5bf8)
  1361. )
  1362. (junction (at 165.1 44.45) (diameter 0) (color 0 0 0 0)
  1363. (uuid 2f6e5a59-a9cc-40e3-8c29-d1b22c122513)
  1364. )
  1365. (junction (at 127 44.45) (diameter 0) (color 0 0 0 0)
  1366. (uuid 4c464ba4-24ad-477f-b9dd-914ee513a149)
  1367. )
  1368. (junction (at 233.68 115.57) (diameter 0) (color 0 0 0 0)
  1369. (uuid 649ca652-8d38-4899-bb25-afef13b6d5e9)
  1370. )
  1371. (junction (at 233.68 132.08) (diameter 0) (color 0 0 0 0)
  1372. (uuid 66ddad46-33c9-4abd-9c24-c7e1b28436ab)
  1373. )
  1374. (junction (at 133.35 80.01) (diameter 0) (color 0 0 0 0)
  1375. (uuid 7c5fd3bf-43ff-42a7-9b54-5ea1011fe08f)
  1376. )
  1377. (junction (at 181.61 44.45) (diameter 0) (color 0 0 0 0)
  1378. (uuid a3fd0929-2c35-4543-8b1d-923e513878e1)
  1379. )
  1380. (junction (at 233.68 127) (diameter 0) (color 0 0 0 0)
  1381. (uuid e0a8b8a8-cbed-4f30-8a05-eb6974d9b295)
  1382. )
  1383. (no_connect (at 254 113.03) (uuid 08b7464b-23fe-48e8-8161-5eee65fe644c))
  1384. (no_connect (at 254 129.54) (uuid b9f02c5b-fec6-4913-8ee5-85b52eb4f4a5))
  1385. (bus_entry (at 222.25 92.71) (size 2.54 -2.54)
  1386. (stroke (width 0) (type default) (color 0 0 0 0))
  1387. (uuid 03b95464-0559-417d-8a3d-b0c830577beb)
  1388. )
  1389. (bus_entry (at 106.68 63.5) (size 2.54 -2.54)
  1390. (stroke (width 0) (type default) (color 0 0 0 0))
  1391. (uuid 0431ac3e-edb5-4e6f-a277-df14a973c91a)
  1392. )
  1393. (bus_entry (at 106.68 91.44) (size 2.54 -2.54)
  1394. (stroke (width 0) (type default) (color 0 0 0 0))
  1395. (uuid 0ae2fa50-f67a-4245-a821-3cff1aae7b7d)
  1396. )
  1397. (bus_entry (at 222.25 64.77) (size 2.54 -2.54)
  1398. (stroke (width 0) (type default) (color 0 0 0 0))
  1399. (uuid 15caa72e-db37-4bd1-ac2d-98bcf751ed1a)
  1400. )
  1401. (bus_entry (at 106.68 96.52) (size 2.54 -2.54)
  1402. (stroke (width 0) (type default) (color 0 0 0 0))
  1403. (uuid 20c96139-a3ed-48cc-b549-4f242118f800)
  1404. )
  1405. (bus_entry (at 222.25 77.47) (size 2.54 -2.54)
  1406. (stroke (width 0) (type default) (color 0 0 0 0))
  1407. (uuid 22f2f80b-b665-4184-85cf-e9e8e0d0b803)
  1408. )
  1409. (bus_entry (at 106.68 109.22) (size 2.54 -2.54)
  1410. (stroke (width 0) (type default) (color 0 0 0 0))
  1411. (uuid 23640ff2-6163-4154-aafd-f0585f1f62c5)
  1412. )
  1413. (bus_entry (at 106.68 73.66) (size 2.54 -2.54)
  1414. (stroke (width 0) (type default) (color 0 0 0 0))
  1415. (uuid 24ac5030-999b-4968-8639-194173fe7939)
  1416. )
  1417. (bus_entry (at 222.25 62.23) (size 2.54 -2.54)
  1418. (stroke (width 0) (type default) (color 0 0 0 0))
  1419. (uuid 26b577a7-b183-405f-96fb-d4ebdf21a867)
  1420. )
  1421. (bus_entry (at 106.68 68.58) (size 2.54 -2.54)
  1422. (stroke (width 0) (type default) (color 0 0 0 0))
  1423. (uuid 28df9c38-3187-4bc6-aa2f-1cc43c2b3b96)
  1424. )
  1425. (bus_entry (at 106.68 104.14) (size 2.54 -2.54)
  1426. (stroke (width 0) (type default) (color 0 0 0 0))
  1427. (uuid 2c8a6197-c8f2-4731-a9bd-21ee0dc98785)
  1428. )
  1429. (bus_entry (at 184.15 77.47) (size -2.54 -2.54)
  1430. (stroke (width 0) (type default) (color 0 0 0 0))
  1431. (uuid 2d97d51a-842e-4bdc-9430-875527da13c6)
  1432. )
  1433. (bus_entry (at 106.68 93.98) (size 2.54 -2.54)
  1434. (stroke (width 0) (type default) (color 0 0 0 0))
  1435. (uuid 30fbc67d-beb3-434d-8670-b95bee0f1f07)
  1436. )
  1437. (bus_entry (at 124.46 54.61) (size 2.54 2.54)
  1438. (stroke (width 0) (type default) (color 0 0 0 0))
  1439. (uuid 340c1ec5-0e4b-4edb-b0b0-3178ea1dba3f)
  1440. )
  1441. (bus_entry (at 184.15 72.39) (size -2.54 -2.54)
  1442. (stroke (width 0) (type default) (color 0 0 0 0))
  1443. (uuid 3454d743-6bc4-42f1-bdfb-c5de037c9c86)
  1444. )
  1445. (bus_entry (at 106.68 71.12) (size 2.54 -2.54)
  1446. (stroke (width 0) (type default) (color 0 0 0 0))
  1447. (uuid 3a787d03-b44f-44ff-80b1-ccb716f1fb6a)
  1448. )
  1449. (bus_entry (at 129.54 96.52) (size -2.54 -2.54)
  1450. (stroke (width 0) (type default) (color 0 0 0 0))
  1451. (uuid 3bd99169-9908-40ce-bda4-3822e47a9180)
  1452. )
  1453. (bus_entry (at 162.56 82.55) (size 2.54 -2.54)
  1454. (stroke (width 0) (type default) (color 0 0 0 0))
  1455. (uuid 3d3fb291-54bd-4d40-bfa2-d49d4c392d9c)
  1456. )
  1457. (bus_entry (at 129.54 102.87) (size -2.54 -2.54)
  1458. (stroke (width 0) (type default) (color 0 0 0 0))
  1459. (uuid 495c030d-99cb-4fae-8038-03ff51b463f0)
  1460. )
  1461. (bus_entry (at 106.68 76.2) (size 2.54 -2.54)
  1462. (stroke (width 0) (type default) (color 0 0 0 0))
  1463. (uuid 49d8c6ac-67f6-40f5-8fd4-7a25b2cb36e4)
  1464. )
  1465. (bus_entry (at 106.68 60.96) (size 2.54 -2.54)
  1466. (stroke (width 0) (type default) (color 0 0 0 0))
  1467. (uuid 540c44a5-c657-4185-835a-c4416e49852f)
  1468. )
  1469. (bus_entry (at 184.15 85.09) (size -2.54 -2.54)
  1470. (stroke (width 0) (type default) (color 0 0 0 0))
  1471. (uuid 611f7c62-2cf2-46d1-b23d-b1702d89b18f)
  1472. )
  1473. (bus_entry (at 129.54 99.06) (size -2.54 -2.54)
  1474. (stroke (width 0) (type default) (color 0 0 0 0))
  1475. (uuid 625ee8ab-d416-45d0-9270-36e5bc3eeb20)
  1476. )
  1477. (bus_entry (at 184.15 62.23) (size -2.54 -2.54)
  1478. (stroke (width 0) (type default) (color 0 0 0 0))
  1479. (uuid 65631b55-3b0e-4bdd-aade-f5daab5fa1d4)
  1480. )
  1481. (bus_entry (at 184.15 57.15) (size -2.54 -2.54)
  1482. (stroke (width 0) (type default) (color 0 0 0 0))
  1483. (uuid 67292c2a-4b81-404a-acf5-ceb7e1670d86)
  1484. )
  1485. (bus_entry (at 129.54 60.96) (size -2.54 -2.54)
  1486. (stroke (width 0) (type default) (color 0 0 0 0))
  1487. (uuid 697b9bc5-8ded-46c1-80f5-88c1d8802dd7)
  1488. )
  1489. (bus_entry (at 184.15 69.85) (size -2.54 -2.54)
  1490. (stroke (width 0) (type default) (color 0 0 0 0))
  1491. (uuid 6b610199-442c-4227-865f-89f007472b76)
  1492. )
  1493. (bus_entry (at 129.54 93.98) (size -2.54 -2.54)
  1494. (stroke (width 0) (type default) (color 0 0 0 0))
  1495. (uuid 6be28c81-297a-4ea2-b266-d40c4ed32c04)
  1496. )
  1497. (bus_entry (at 129.54 66.04) (size -2.54 -2.54)
  1498. (stroke (width 0) (type default) (color 0 0 0 0))
  1499. (uuid 6c97397d-dd75-4a32-8300-89cff63bde56)
  1500. )
  1501. (bus_entry (at 184.15 87.63) (size -2.54 -2.54)
  1502. (stroke (width 0) (type default) (color 0 0 0 0))
  1503. (uuid 7847e806-7e06-4653-a19e-a5bb4381303d)
  1504. )
  1505. (bus_entry (at 184.15 80.01) (size -2.54 -2.54)
  1506. (stroke (width 0) (type default) (color 0 0 0 0))
  1507. (uuid 79554059-e832-4101-af64-8d8c27a4698e)
  1508. )
  1509. (bus_entry (at 222.25 87.63) (size 2.54 -2.54)
  1510. (stroke (width 0) (type default) (color 0 0 0 0))
  1511. (uuid 7b42cf3f-7bad-48f6-b352-b4eeddb40fc0)
  1512. )
  1513. (bus_entry (at 184.15 95.25) (size -2.54 -2.54)
  1514. (stroke (width 0) (type default) (color 0 0 0 0))
  1515. (uuid 7ed8eba7-12a0-4f7a-8ca4-3f7e22d9475f)
  1516. )
  1517. (bus_entry (at 222.25 95.25) (size 2.54 -2.54)
  1518. (stroke (width 0) (type default) (color 0 0 0 0))
  1519. (uuid 8b0018fd-c0ed-4d39-a5c7-5e9739c5f7b9)
  1520. )
  1521. (bus_entry (at 222.25 85.09) (size 2.54 -2.54)
  1522. (stroke (width 0) (type default) (color 0 0 0 0))
  1523. (uuid 91f88320-5539-4baa-8e62-eb7ccabcada9)
  1524. )
  1525. (bus_entry (at 106.68 48.26) (size 2.54 -2.54)
  1526. (stroke (width 0) (type default) (color 0 0 0 0))
  1527. (uuid 93b4a0eb-9565-4676-9d89-1c75460c01a6)
  1528. )
  1529. (bus_entry (at 222.25 59.69) (size 2.54 -2.54)
  1530. (stroke (width 0) (type default) (color 0 0 0 0))
  1531. (uuid 96d1f162-86f4-4879-9aad-65a57bbf17c5)
  1532. )
  1533. (bus_entry (at 106.68 78.74) (size 2.54 -2.54)
  1534. (stroke (width 0) (type default) (color 0 0 0 0))
  1535. (uuid 9ba3778a-d088-4ceb-85a7-b16f69dba020)
  1536. )
  1537. (bus_entry (at 184.15 74.93) (size -2.54 -2.54)
  1538. (stroke (width 0) (type default) (color 0 0 0 0))
  1539. (uuid 9c887c68-80bd-4eb6-af00-70ca8ea07ba2)
  1540. )
  1541. (bus_entry (at 222.25 69.85) (size 2.54 -2.54)
  1542. (stroke (width 0) (type default) (color 0 0 0 0))
  1543. (uuid 9e1971c5-eb98-4d86-8ef7-e062def55de1)
  1544. )
  1545. (bus_entry (at 184.15 82.55) (size -2.54 -2.54)
  1546. (stroke (width 0) (type default) (color 0 0 0 0))
  1547. (uuid a0a30112-d48a-4721-b113-d91a917cdbea)
  1548. )
  1549. (bus_entry (at 184.15 90.17) (size -2.54 -2.54)
  1550. (stroke (width 0) (type default) (color 0 0 0 0))
  1551. (uuid aef03213-fa09-46b8-ab23-784908a8d6db)
  1552. )
  1553. (bus_entry (at 222.25 97.79) (size 2.54 -2.54)
  1554. (stroke (width 0) (type default) (color 0 0 0 0))
  1555. (uuid b0e83874-593c-4280-a149-b9524f9046f0)
  1556. )
  1557. (bus_entry (at 184.15 64.77) (size -2.54 -2.54)
  1558. (stroke (width 0) (type default) (color 0 0 0 0))
  1559. (uuid b13a4cb6-da68-4818-b9bb-4a1aff77bc1e)
  1560. )
  1561. (bus_entry (at 222.25 74.93) (size 2.54 -2.54)
  1562. (stroke (width 0) (type default) (color 0 0 0 0))
  1563. (uuid b1b3a29a-43fc-43aa-aed2-5f8fb2425dfe)
  1564. )
  1565. (bus_entry (at 106.68 81.28) (size 2.54 -2.54)
  1566. (stroke (width 0) (type default) (color 0 0 0 0))
  1567. (uuid b4ca0671-d317-4d9a-a31c-b178108074c7)
  1568. )
  1569. (bus_entry (at 222.25 80.01) (size 2.54 -2.54)
  1570. (stroke (width 0) (type default) (color 0 0 0 0))
  1571. (uuid b4ca0de9-41ba-4185-b563-b76d54f1ece8)
  1572. )
  1573. (bus_entry (at 106.68 50.8) (size 2.54 -2.54)
  1574. (stroke (width 0) (type default) (color 0 0 0 0))
  1575. (uuid bb380b0b-5919-4785-b30f-150b7e4abf68)
  1576. )
  1577. (bus_entry (at 106.68 83.82) (size 2.54 -2.54)
  1578. (stroke (width 0) (type default) (color 0 0 0 0))
  1579. (uuid bce46af1-4658-4b28-8554-fcaa8c2a9487)
  1580. )
  1581. (bus_entry (at 129.54 119.38) (size -2.54 -2.54)
  1582. (stroke (width 0) (type default) (color 0 0 0 0))
  1583. (uuid bd18f403-c67b-4c51-9100-dfeb2b4687ef)
  1584. )
  1585. (bus_entry (at 184.15 59.69) (size -2.54 -2.54)
  1586. (stroke (width 0) (type default) (color 0 0 0 0))
  1587. (uuid bed37867-55a7-4838-9a1e-2d9b0d432632)
  1588. )
  1589. (bus_entry (at 222.25 57.15) (size 2.54 -2.54)
  1590. (stroke (width 0) (type default) (color 0 0 0 0))
  1591. (uuid c1848ce2-d791-4eb0-b1dd-d883aa3d150a)
  1592. )
  1593. (bus_entry (at 184.15 92.71) (size -2.54 -2.54)
  1594. (stroke (width 0) (type default) (color 0 0 0 0))
  1595. (uuid c202174c-b7f1-490a-8ed2-7380359b7be2)
  1596. )
  1597. (bus_entry (at 106.68 88.9) (size 2.54 -2.54)
  1598. (stroke (width 0) (type default) (color 0 0 0 0))
  1599. (uuid c4f78af6-ff2a-4837-b6fc-6d9d220900fb)
  1600. )
  1601. (bus_entry (at 106.68 58.42) (size 2.54 -2.54)
  1602. (stroke (width 0) (type default) (color 0 0 0 0))
  1603. (uuid c988c327-de8d-4c4f-9867-6c04b0429a52)
  1604. )
  1605. (bus_entry (at 129.54 105.41) (size -2.54 -2.54)
  1606. (stroke (width 0) (type default) (color 0 0 0 0))
  1607. (uuid cf2c1b33-0fef-4932-8352-bb1e1f0b104f)
  1608. )
  1609. (bus_entry (at 106.68 53.34) (size 2.54 -2.54)
  1610. (stroke (width 0) (type default) (color 0 0 0 0))
  1611. (uuid db1e10ea-aa70-4721-ac8c-45223406c64b)
  1612. )
  1613. (bus_entry (at 106.68 66.04) (size 2.54 -2.54)
  1614. (stroke (width 0) (type default) (color 0 0 0 0))
  1615. (uuid df0ae6f7-0907-4585-8391-c454862d2b48)
  1616. )
  1617. (bus_entry (at 106.68 101.6) (size 2.54 -2.54)
  1618. (stroke (width 0) (type default) (color 0 0 0 0))
  1619. (uuid e2f6c7f3-2895-451a-ad6a-8618ce393cdc)
  1620. )
  1621. (bus_entry (at 184.15 97.79) (size -2.54 -2.54)
  1622. (stroke (width 0) (type default) (color 0 0 0 0))
  1623. (uuid e9d6ab5f-aa44-453a-957b-457b486d0b37)
  1624. )
  1625. (bus_entry (at 129.54 121.92) (size -2.54 -2.54)
  1626. (stroke (width 0) (type default) (color 0 0 0 0))
  1627. (uuid e9e6ad59-ad8d-4c36-b548-70d451cccb7f)
  1628. )
  1629. (bus_entry (at 106.68 99.06) (size 2.54 -2.54)
  1630. (stroke (width 0) (type default) (color 0 0 0 0))
  1631. (uuid ea8af513-7ae4-42b9-a98c-a95fb3f1f88b)
  1632. )
  1633. (bus_entry (at 184.15 67.31) (size -2.54 -2.54)
  1634. (stroke (width 0) (type default) (color 0 0 0 0))
  1635. (uuid ebb02f8d-8795-41a1-920b-ae5f12026301)
  1636. )
  1637. (bus_entry (at 129.54 116.84) (size -2.54 -2.54)
  1638. (stroke (width 0) (type default) (color 0 0 0 0))
  1639. (uuid ec7adcc5-cfdf-4084-a70c-b9cbb909541f)
  1640. )
  1641. (bus_entry (at 106.68 86.36) (size 2.54 -2.54)
  1642. (stroke (width 0) (type default) (color 0 0 0 0))
  1643. (uuid ed45b694-391d-45d7-877a-1ca25a062f8d)
  1644. )
  1645. (bus_entry (at 222.25 72.39) (size 2.54 -2.54)
  1646. (stroke (width 0) (type default) (color 0 0 0 0))
  1647. (uuid ef66b3f1-14c0-4dfc-8098-939364bfa00f)
  1648. )
  1649. (bus_entry (at 222.25 67.31) (size 2.54 -2.54)
  1650. (stroke (width 0) (type default) (color 0 0 0 0))
  1651. (uuid f1d4c380-4ece-41da-b7c2-670d396b852b)
  1652. )
  1653. (bus_entry (at 222.25 82.55) (size 2.54 -2.54)
  1654. (stroke (width 0) (type default) (color 0 0 0 0))
  1655. (uuid fce53304-8f24-4666-b545-26be4860a0a8)
  1656. )
  1657. (bus_entry (at 106.68 55.88) (size 2.54 -2.54)
  1658. (stroke (width 0) (type default) (color 0 0 0 0))
  1659. (uuid fd53b105-3732-4d6a-bc96-086073757f4d)
  1660. )
  1661. (bus_entry (at 222.25 90.17) (size 2.54 -2.54)
  1662. (stroke (width 0) (type default) (color 0 0 0 0))
  1663. (uuid fefa5e27-fb03-44e3-bf0b-b73c467ad696)
  1664. )
  1665. (bus_entry (at 106.68 106.68) (size 2.54 -2.54)
  1666. (stroke (width 0) (type default) (color 0 0 0 0))
  1667. (uuid ffa50837-1c92-47b8-9fb7-8cf7a14befd4)
  1668. )
  1669. (wire (pts (xy 196.85 97.79) (xy 184.15 97.79))
  1670. (stroke (width 0) (type default) (color 0 0 0 0))
  1671. (uuid 0404c8ef-b4df-4336-888d-d386f6a42f8d)
  1672. )
  1673. (wire (pts (xy 233.68 127) (xy 233.68 115.57))
  1674. (stroke (width 0) (type default) (color 0 0 0 0))
  1675. (uuid 04b3dee7-22af-4ead-8cda-473320bd268d)
  1676. )
  1677. (bus (pts (xy 127 102.87) (xy 127 114.3))
  1678. (stroke (width 0) (type default) (color 0 0 0 0))
  1679. (uuid 06c20961-edb1-4233-9544-d5a7a21eb537)
  1680. )
  1681. (wire (pts (xy 93.98 60.96) (xy 106.68 60.96))
  1682. (stroke (width 0) (type default) (color 0 0 0 0))
  1683. (uuid 06db1e0b-c20b-4b1a-811c-588c609b28e7)
  1684. )
  1685. (bus (pts (xy 181.61 67.31) (xy 181.61 69.85))
  1686. (stroke (width 0) (type default) (color 0 0 0 0))
  1687. (uuid 08ec55cd-316b-430c-b2a1-74b828ff6b90)
  1688. )
  1689. (wire (pts (xy 156.21 71.12) (xy 133.35 71.12))
  1690. (stroke (width 0) (type default) (color 0 0 0 0))
  1691. (uuid 0ca9619a-595f-4aa2-afdf-5e9f9fbf396c)
  1692. )
  1693. (bus (pts (xy 109.22 96.52) (xy 109.22 99.06))
  1694. (stroke (width 0) (type default) (color 0 0 0 0))
  1695. (uuid 0ce7f80a-c33c-41da-b4ad-c94fec0bd914)
  1696. )
  1697. (bus (pts (xy 181.61 95.25) (xy 181.61 100.33))
  1698. (stroke (width 0) (type default) (color 0 0 0 0))
  1699. (uuid 0d5d04c1-69b8-4550-851d-64d203d3c425)
  1700. )
  1701. (bus (pts (xy 181.61 74.93) (xy 181.61 77.47))
  1702. (stroke (width 0) (type default) (color 0 0 0 0))
  1703. (uuid 0de61301-8edd-4481-99e6-4e46c1849827)
  1704. )
  1705. (wire (pts (xy 196.85 77.47) (xy 184.15 77.47))
  1706. (stroke (width 0) (type default) (color 0 0 0 0))
  1707. (uuid 1a0e64bd-feb0-4f37-a8fa-d07c4192cf84)
  1708. )
  1709. (bus (pts (xy 109.22 63.5) (xy 109.22 66.04))
  1710. (stroke (width 0) (type default) (color 0 0 0 0))
  1711. (uuid 1c3627f9-1535-4f55-a7b1-ecb389a7d580)
  1712. )
  1713. (wire (pts (xy 93.98 58.42) (xy 106.68 58.42))
  1714. (stroke (width 0) (type default) (color 0 0 0 0))
  1715. (uuid 1fdf6e5a-2618-4109-94de-8c4585771a60)
  1716. )
  1717. (wire (pts (xy 209.55 59.69) (xy 222.25 59.69))
  1718. (stroke (width 0) (type default) (color 0 0 0 0))
  1719. (uuid 20a156b7-dc3b-477a-9e71-8055fde1a2c2)
  1720. )
  1721. (wire (pts (xy 236.22 21.59) (xy 236.22 22.86))
  1722. (stroke (width 0) (type default) (color 0 0 0 0))
  1723. (uuid 212d7b60-165c-4b29-8704-fc7874817647)
  1724. )
  1725. (wire (pts (xy 93.98 91.44) (xy 106.68 91.44))
  1726. (stroke (width 0) (type default) (color 0 0 0 0))
  1727. (uuid 22524859-92a0-42b6-b197-ced7b8e89746)
  1728. )
  1729. (wire (pts (xy 93.98 96.52) (xy 106.68 96.52))
  1730. (stroke (width 0) (type default) (color 0 0 0 0))
  1731. (uuid 225e0505-8ac4-42b4-adfd-5d437cbc95fb)
  1732. )
  1733. (bus (pts (xy 109.22 53.34) (xy 109.22 55.88))
  1734. (stroke (width 0) (type default) (color 0 0 0 0))
  1735. (uuid 22d8fbae-3f19-4c72-b7ba-40c65389d188)
  1736. )
  1737. (bus (pts (xy 224.79 74.93) (xy 224.79 77.47))
  1738. (stroke (width 0) (type default) (color 0 0 0 0))
  1739. (uuid 24397cfe-49c3-4caf-9619-a3fc63cf7e38)
  1740. )
  1741. (wire (pts (xy 93.98 88.9) (xy 106.68 88.9))
  1742. (stroke (width 0) (type default) (color 0 0 0 0))
  1743. (uuid 250d3187-b786-4a03-bb0c-df361334552f)
  1744. )
  1745. (wire (pts (xy 129.54 99.06) (xy 138.43 99.06))
  1746. (stroke (width 0) (type default) (color 0 0 0 0))
  1747. (uuid 2516a496-4231-475e-a04f-d876d16fbdb8)
  1748. )
  1749. (wire (pts (xy 93.98 99.06) (xy 106.68 99.06))
  1750. (stroke (width 0) (type default) (color 0 0 0 0))
  1751. (uuid 2536b97c-896e-4cee-aab1-a80750ff263b)
  1752. )
  1753. (wire (pts (xy 233.68 127) (xy 233.68 132.08))
  1754. (stroke (width 0) (type default) (color 0 0 0 0))
  1755. (uuid 284ce763-a753-4d64-a74c-ef3193fe10c5)
  1756. )
  1757. (wire (pts (xy 233.68 132.08) (xy 233.68 135.89))
  1758. (stroke (width 0) (type default) (color 0 0 0 0))
  1759. (uuid 2e1b67fb-9017-4ac0-b114-da9c7887b418)
  1760. )
  1761. (wire (pts (xy 196.85 82.55) (xy 184.15 82.55))
  1762. (stroke (width 0) (type default) (color 0 0 0 0))
  1763. (uuid 2e5118ad-27c1-49eb-8ec3-1423e6ec1486)
  1764. )
  1765. (wire (pts (xy 129.54 66.04) (xy 138.43 66.04))
  1766. (stroke (width 0) (type default) (color 0 0 0 0))
  1767. (uuid 3076123b-4ef2-4b38-af03-58a79e31f9d6)
  1768. )
  1769. (wire (pts (xy 93.98 93.98) (xy 106.68 93.98))
  1770. (stroke (width 0) (type default) (color 0 0 0 0))
  1771. (uuid 32fe9496-eaf0-4ec8-9584-6d155e41491f)
  1772. )
  1773. (wire (pts (xy 209.55 72.39) (xy 222.25 72.39))
  1774. (stroke (width 0) (type default) (color 0 0 0 0))
  1775. (uuid 33a88774-5e72-48ee-84cb-7e2cbf43589d)
  1776. )
  1777. (wire (pts (xy 133.35 71.12) (xy 133.35 80.01))
  1778. (stroke (width 0) (type default) (color 0 0 0 0))
  1779. (uuid 3439f457-ebc6-4c92-9807-5ef66615deb0)
  1780. )
  1781. (wire (pts (xy 209.55 82.55) (xy 222.25 82.55))
  1782. (stroke (width 0) (type default) (color 0 0 0 0))
  1783. (uuid 3a235b29-fce8-4c39-aa90-1a1ae76f845d)
  1784. )
  1785. (wire (pts (xy 209.55 90.17) (xy 222.25 90.17))
  1786. (stroke (width 0) (type default) (color 0 0 0 0))
  1787. (uuid 3ae41ae1-d2dc-4130-8480-5344d751e61f)
  1788. )
  1789. (wire (pts (xy 196.85 95.25) (xy 184.15 95.25))
  1790. (stroke (width 0) (type default) (color 0 0 0 0))
  1791. (uuid 3bb67d73-57a0-4065-9bb0-ce16d16539b0)
  1792. )
  1793. (bus (pts (xy 181.61 62.23) (xy 181.61 64.77))
  1794. (stroke (width 0) (type default) (color 0 0 0 0))
  1795. (uuid 3ccbe71d-67ed-4f78-b3a0-7f6b816f7f0d)
  1796. )
  1797. (bus (pts (xy 109.22 73.66) (xy 109.22 76.2))
  1798. (stroke (width 0) (type default) (color 0 0 0 0))
  1799. (uuid 3fffdda7-2cb2-4ca6-863e-97949f232ff4)
  1800. )
  1801. (bus (pts (xy 109.22 78.74) (xy 109.22 81.28))
  1802. (stroke (width 0) (type default) (color 0 0 0 0))
  1803. (uuid 42a0dd2f-213e-4ba5-9282-5f1a2486f4da)
  1804. )
  1805. (bus (pts (xy 181.61 59.69) (xy 181.61 62.23))
  1806. (stroke (width 0) (type default) (color 0 0 0 0))
  1807. (uuid 43b2e77b-af66-47e7-bad4-cea5919d05ee)
  1808. )
  1809. (wire (pts (xy 233.68 127) (xy 238.76 127))
  1810. (stroke (width 0) (type default) (color 0 0 0 0))
  1811. (uuid 43e6d9d9-3346-4609-b526-7a5b0ba5f6d9)
  1812. )
  1813. (bus (pts (xy 181.61 44.45) (xy 181.61 54.61))
  1814. (stroke (width 0) (type default) (color 0 0 0 0))
  1815. (uuid 44ea8a36-3c58-4603-bbdf-c0447523e14d)
  1816. )
  1817. (bus (pts (xy 109.22 58.42) (xy 109.22 60.96))
  1818. (stroke (width 0) (type default) (color 0 0 0 0))
  1819. (uuid 45fc168c-fe8c-4371-bf03-83fcf7692c08)
  1820. )
  1821. (wire (pts (xy 86.36 114.3) (xy 86.36 115.57))
  1822. (stroke (width 0) (type default) (color 0 0 0 0))
  1823. (uuid 46e3e050-e019-4450-90a4-0331c90b8051)
  1824. )
  1825. (bus (pts (xy 181.61 87.63) (xy 181.61 90.17))
  1826. (stroke (width 0) (type default) (color 0 0 0 0))
  1827. (uuid 4866403a-7bec-40dc-aac9-aa444f2a4d2a)
  1828. )
  1829. (wire (pts (xy 209.55 69.85) (xy 222.25 69.85))
  1830. (stroke (width 0) (type default) (color 0 0 0 0))
  1831. (uuid 496d4266-27d0-4200-a0c6-dd899eda8e82)
  1832. )
  1833. (bus (pts (xy 181.61 80.01) (xy 181.61 82.55))
  1834. (stroke (width 0) (type default) (color 0 0 0 0))
  1835. (uuid 497e91ee-b438-4f4e-b55c-667ab2020d3f)
  1836. )
  1837. (wire (pts (xy 256.54 30.48) (xy 256.54 31.75))
  1838. (stroke (width 0) (type default) (color 0 0 0 0))
  1839. (uuid 4c16387e-bfa9-4872-81cc-cc6904606ccb)
  1840. )
  1841. (bus (pts (xy 127 44.45) (xy 127 57.15))
  1842. (stroke (width 0) (type default) (color 0 0 0 0))
  1843. (uuid 4c62a392-b881-4f70-b48c-ad001e299314)
  1844. )
  1845. (wire (pts (xy 238.76 132.08) (xy 233.68 132.08))
  1846. (stroke (width 0) (type default) (color 0 0 0 0))
  1847. (uuid 4cb2dd75-70d6-44c5-9ce2-05ad9d4183a2)
  1848. )
  1849. (wire (pts (xy 93.98 83.82) (xy 106.68 83.82))
  1850. (stroke (width 0) (type default) (color 0 0 0 0))
  1851. (uuid 528a092b-a6a7-4bb5-ace9-d3dedd3b458e)
  1852. )
  1853. (wire (pts (xy 129.54 102.87) (xy 138.43 102.87))
  1854. (stroke (width 0) (type default) (color 0 0 0 0))
  1855. (uuid 55665864-0835-4290-bc49-b8bf719a58a8)
  1856. )
  1857. (wire (pts (xy 121.92 53.34) (xy 121.92 54.61))
  1858. (stroke (width 0) (type default) (color 0 0 0 0))
  1859. (uuid 55fc343f-38eb-45d4-96e6-892acc7e1786)
  1860. )
  1861. (bus (pts (xy 109.22 71.12) (xy 109.22 73.66))
  1862. (stroke (width 0) (type default) (color 0 0 0 0))
  1863. (uuid 5727a7c1-f49b-4049-83a9-c38ae4150771)
  1864. )
  1865. (bus (pts (xy 127 57.15) (xy 127 58.42))
  1866. (stroke (width 0) (type default) (color 0 0 0 0))
  1867. (uuid 5b0d1f17-95bf-4bec-80a0-1036c840c5d4)
  1868. )
  1869. (bus (pts (xy 224.79 44.45) (xy 224.79 54.61))
  1870. (stroke (width 0) (type default) (color 0 0 0 0))
  1871. (uuid 5b3ba91e-6067-406b-a216-3fc6bef43678)
  1872. )
  1873. (wire (pts (xy 256.54 36.83) (xy 256.54 38.1))
  1874. (stroke (width 0) (type default) (color 0 0 0 0))
  1875. (uuid 5c545248-25ab-4ade-aece-bd390782a507)
  1876. )
  1877. (wire (pts (xy 93.98 104.14) (xy 106.68 104.14))
  1878. (stroke (width 0) (type default) (color 0 0 0 0))
  1879. (uuid 5cba0826-55f8-4138-b9cd-7759acb86180)
  1880. )
  1881. (bus (pts (xy 224.79 77.47) (xy 224.79 80.01))
  1882. (stroke (width 0) (type default) (color 0 0 0 0))
  1883. (uuid 5ce4c761-bb40-48f3-8ea0-123b56b2029c)
  1884. )
  1885. (bus (pts (xy 181.61 92.71) (xy 181.61 95.25))
  1886. (stroke (width 0) (type default) (color 0 0 0 0))
  1887. (uuid 5d80208a-30e0-403f-a30d-04177fdfca66)
  1888. )
  1889. (bus (pts (xy 224.79 90.17) (xy 224.79 92.71))
  1890. (stroke (width 0) (type default) (color 0 0 0 0))
  1891. (uuid 5db0a087-bbe7-4d5b-8fe6-a9e9cf784faa)
  1892. )
  1893. (wire (pts (xy 209.55 92.71) (xy 222.25 92.71))
  1894. (stroke (width 0) (type default) (color 0 0 0 0))
  1895. (uuid 5ee9c6f6-5b76-4c75-8708-c5a37f9ca1b2)
  1896. )
  1897. (bus (pts (xy 109.22 76.2) (xy 109.22 78.74))
  1898. (stroke (width 0) (type default) (color 0 0 0 0))
  1899. (uuid 5f9a39a2-3789-457c-91c4-665cafe3b515)
  1900. )
  1901. (wire (pts (xy 93.98 55.88) (xy 106.68 55.88))
  1902. (stroke (width 0) (type default) (color 0 0 0 0))
  1903. (uuid 60ecae3f-2c75-4c7e-9e18-f686bb3a2db6)
  1904. )
  1905. (bus (pts (xy 224.79 62.23) (xy 224.79 64.77))
  1906. (stroke (width 0) (type default) (color 0 0 0 0))
  1907. (uuid 6159ee8f-0142-40f0-9b87-f7bec106aabd)
  1908. )
  1909. (wire (pts (xy 133.35 80.01) (xy 133.35 85.09))
  1910. (stroke (width 0) (type default) (color 0 0 0 0))
  1911. (uuid 61c1b0df-4de5-49d9-8ae8-cdd40b3d883b)
  1912. )
  1913. (bus (pts (xy 109.22 106.68) (xy 109.22 109.22))
  1914. (stroke (width 0) (type default) (color 0 0 0 0))
  1915. (uuid 63689dde-1eec-4557-ab57-023610aedfd5)
  1916. )
  1917. (bus (pts (xy 181.61 64.77) (xy 181.61 67.31))
  1918. (stroke (width 0) (type default) (color 0 0 0 0))
  1919. (uuid 65568dcc-88c6-4995-8d91-b287d60d0ab6)
  1920. )
  1921. (bus (pts (xy 109.22 91.44) (xy 109.22 93.98))
  1922. (stroke (width 0) (type default) (color 0 0 0 0))
  1923. (uuid 66ae9f71-6157-4c5d-a73c-098667f4227b)
  1924. )
  1925. (wire (pts (xy 129.54 121.92) (xy 138.43 121.92))
  1926. (stroke (width 0) (type default) (color 0 0 0 0))
  1927. (uuid 6713a8f4-866e-4006-8819-971db1861e6e)
  1928. )
  1929. (bus (pts (xy 109.22 44.45) (xy 127 44.45))
  1930. (stroke (width 0) (type default) (color 0 0 0 0))
  1931. (uuid 673c2f4a-5211-403f-b5b6-b12b466a3de0)
  1932. )
  1933. (bus (pts (xy 127 116.84) (xy 127 119.38))
  1934. (stroke (width 0) (type default) (color 0 0 0 0))
  1935. (uuid 676c2d54-07b5-4f0c-b7d5-71b05a2cda49)
  1936. )
  1937. (wire (pts (xy 196.85 85.09) (xy 184.15 85.09))
  1938. (stroke (width 0) (type default) (color 0 0 0 0))
  1939. (uuid 682c93b9-2746-4dc9-be7b-235cfedc9566)
  1940. )
  1941. (bus (pts (xy 224.79 80.01) (xy 224.79 82.55))
  1942. (stroke (width 0) (type default) (color 0 0 0 0))
  1943. (uuid 698d9803-7721-4144-8ae0-b9f9052c373d)
  1944. )
  1945. (bus (pts (xy 224.79 59.69) (xy 224.79 62.23))
  1946. (stroke (width 0) (type default) (color 0 0 0 0))
  1947. (uuid 6a93178b-a710-4103-805d-0da603fb69bc)
  1948. )
  1949. (bus (pts (xy 127 114.3) (xy 127 116.84))
  1950. (stroke (width 0) (type default) (color 0 0 0 0))
  1951. (uuid 6c798313-cb34-47b2-8da8-d2de24b63450)
  1952. )
  1953. (wire (pts (xy 156.21 63.5) (xy 156.21 71.12))
  1954. (stroke (width 0) (type default) (color 0 0 0 0))
  1955. (uuid 6c84e03e-cd1e-4ca8-bc34-bb0c74c7e6a7)
  1956. )
  1957. (wire (pts (xy 209.55 77.47) (xy 222.25 77.47))
  1958. (stroke (width 0) (type default) (color 0 0 0 0))
  1959. (uuid 6ead7b5c-9efd-4c4c-bdd6-b354b7021b79)
  1960. )
  1961. (bus (pts (xy 109.22 55.88) (xy 109.22 58.42))
  1962. (stroke (width 0) (type default) (color 0 0 0 0))
  1963. (uuid 704d6d8b-92bf-4f28-bcf6-9d0f3e13d0e4)
  1964. )
  1965. (wire (pts (xy 133.35 85.09) (xy 138.43 85.09))
  1966. (stroke (width 0) (type default) (color 0 0 0 0))
  1967. (uuid 70861582-e050-47e2-a284-2b9e4c48d2ac)
  1968. )
  1969. (bus (pts (xy 181.61 82.55) (xy 181.61 85.09))
  1970. (stroke (width 0) (type default) (color 0 0 0 0))
  1971. (uuid 719312df-71fd-4ce0-a43f-6c5bb7026a40)
  1972. )
  1973. (bus (pts (xy 181.61 77.47) (xy 181.61 80.01))
  1974. (stroke (width 0) (type default) (color 0 0 0 0))
  1975. (uuid 71972c23-1877-4707-a8b9-b0f5b832a4a6)
  1976. )
  1977. (wire (pts (xy 93.98 73.66) (xy 106.68 73.66))
  1978. (stroke (width 0) (type default) (color 0 0 0 0))
  1979. (uuid 71d21195-db76-4c6e-9c03-298dfa1cf1be)
  1980. )
  1981. (wire (pts (xy 209.55 64.77) (xy 222.25 64.77))
  1982. (stroke (width 0) (type default) (color 0 0 0 0))
  1983. (uuid 722e37e5-7ab4-4acb-846d-463ab9d155c6)
  1984. )
  1985. (bus (pts (xy 127 63.5) (xy 127 91.44))
  1986. (stroke (width 0) (type default) (color 0 0 0 0))
  1987. (uuid 73e1bbd1-ddf1-474f-954d-82f436933041)
  1988. )
  1989. (wire (pts (xy 209.55 87.63) (xy 222.25 87.63))
  1990. (stroke (width 0) (type default) (color 0 0 0 0))
  1991. (uuid 7617e6b7-d615-44b0-95c4-0e6339e17d33)
  1992. )
  1993. (bus (pts (xy 109.22 50.8) (xy 109.22 53.34))
  1994. (stroke (width 0) (type default) (color 0 0 0 0))
  1995. (uuid 7ae41af7-1d2a-4afb-b4ef-e7fae6033543)
  1996. )
  1997. (bus (pts (xy 109.22 104.14) (xy 109.22 106.68))
  1998. (stroke (width 0) (type default) (color 0 0 0 0))
  1999. (uuid 7b5fc003-35db-420f-b25d-63168474a732)
  2000. )
  2001. (wire (pts (xy 196.85 92.71) (xy 184.15 92.71))
  2002. (stroke (width 0) (type default) (color 0 0 0 0))
  2003. (uuid 7c667b90-41cd-4e2a-9850-b6f11e7f3d28)
  2004. )
  2005. (bus (pts (xy 109.22 66.04) (xy 109.22 68.58))
  2006. (stroke (width 0) (type default) (color 0 0 0 0))
  2007. (uuid 7f3ec87c-d4d9-4b56-b196-bf3063352aa2)
  2008. )
  2009. (bus (pts (xy 109.22 88.9) (xy 109.22 91.44))
  2010. (stroke (width 0) (type default) (color 0 0 0 0))
  2011. (uuid 7f61998d-e04d-4388-b7dc-a68602295164)
  2012. )
  2013. (wire (pts (xy 93.98 68.58) (xy 106.68 68.58))
  2014. (stroke (width 0) (type default) (color 0 0 0 0))
  2015. (uuid 800ef11c-827c-4208-bec1-fc7406058f27)
  2016. )
  2017. (wire (pts (xy 133.35 107.95) (xy 138.43 107.95))
  2018. (stroke (width 0) (type default) (color 0 0 0 0))
  2019. (uuid 80b23df8-8f1c-4d71-9110-7887e1f51a27)
  2020. )
  2021. (wire (pts (xy 93.98 63.5) (xy 106.68 63.5))
  2022. (stroke (width 0) (type default) (color 0 0 0 0))
  2023. (uuid 8148f71b-2d67-4145-9365-3586a912bf1f)
  2024. )
  2025. (wire (pts (xy 93.98 50.8) (xy 106.68 50.8))
  2026. (stroke (width 0) (type default) (color 0 0 0 0))
  2027. (uuid 8646b797-4049-4f33-b154-41a33c15ea9a)
  2028. )
  2029. (bus (pts (xy 224.79 67.31) (xy 224.79 69.85))
  2030. (stroke (width 0) (type default) (color 0 0 0 0))
  2031. (uuid 87a758df-6989-47fc-9eaa-412759d2afb5)
  2032. )
  2033. (bus (pts (xy 181.61 72.39) (xy 181.61 74.93))
  2034. (stroke (width 0) (type default) (color 0 0 0 0))
  2035. (uuid 897dc05c-1795-4274-85e0-9dd68f82c909)
  2036. )
  2037. (wire (pts (xy 133.35 80.01) (xy 138.43 80.01))
  2038. (stroke (width 0) (type default) (color 0 0 0 0))
  2039. (uuid 89ce6dc4-e08b-44e0-af02-f95da5118168)
  2040. )
  2041. (bus (pts (xy 109.22 99.06) (xy 109.22 101.6))
  2042. (stroke (width 0) (type default) (color 0 0 0 0))
  2043. (uuid 8cc76379-50b0-4db6-920b-fcae05b66004)
  2044. )
  2045. (bus (pts (xy 109.22 48.26) (xy 109.22 50.8))
  2046. (stroke (width 0) (type default) (color 0 0 0 0))
  2047. (uuid 8de83d44-c65a-4252-8004-35a1e5d32cb9)
  2048. )
  2049. (bus (pts (xy 224.79 64.77) (xy 224.79 67.31))
  2050. (stroke (width 0) (type default) (color 0 0 0 0))
  2051. (uuid 8f6620e0-bccf-4e91-b746-fccfcd938771)
  2052. )
  2053. (wire (pts (xy 93.98 101.6) (xy 106.68 101.6))
  2054. (stroke (width 0) (type default) (color 0 0 0 0))
  2055. (uuid 906e29c1-da84-454f-b8b2-da520a1360b8)
  2056. )
  2057. (wire (pts (xy 129.54 96.52) (xy 138.43 96.52))
  2058. (stroke (width 0) (type default) (color 0 0 0 0))
  2059. (uuid 90cf1b20-eb8d-426a-9779-df5f8ef286aa)
  2060. )
  2061. (wire (pts (xy 196.85 80.01) (xy 184.15 80.01))
  2062. (stroke (width 0) (type default) (color 0 0 0 0))
  2063. (uuid 913a8477-60d9-4126-b068-62ad94590f37)
  2064. )
  2065. (bus (pts (xy 181.61 57.15) (xy 181.61 54.61))
  2066. (stroke (width 0) (type default) (color 0 0 0 0))
  2067. (uuid 91731142-a9d3-44a8-91a6-3290133282f0)
  2068. )
  2069. (wire (pts (xy 196.85 69.85) (xy 184.15 69.85))
  2070. (stroke (width 0) (type default) (color 0 0 0 0))
  2071. (uuid 924ee7f2-b7e0-4153-98d3-efc2eb7c02bf)
  2072. )
  2073. (wire (pts (xy 196.85 87.63) (xy 184.15 87.63))
  2074. (stroke (width 0) (type default) (color 0 0 0 0))
  2075. (uuid 925bf84b-6150-48eb-b981-81e473261ece)
  2076. )
  2077. (bus (pts (xy 127 58.42) (xy 127 63.5))
  2078. (stroke (width 0) (type default) (color 0 0 0 0))
  2079. (uuid 9366e57b-6200-44f5-b9fb-762b6bd08d6a)
  2080. )
  2081. (wire (pts (xy 236.22 48.26) (xy 236.22 49.53))
  2082. (stroke (width 0) (type default) (color 0 0 0 0))
  2083. (uuid 93dcb944-46cd-4028-8253-22c1af3dfbaf)
  2084. )
  2085. (bus (pts (xy 109.22 45.72) (xy 109.22 44.45))
  2086. (stroke (width 0) (type default) (color 0 0 0 0))
  2087. (uuid 96c0a2c5-3ffd-47d7-bbaa-3fcbb1b1539b)
  2088. )
  2089. (wire (pts (xy 209.55 95.25) (xy 222.25 95.25))
  2090. (stroke (width 0) (type default) (color 0 0 0 0))
  2091. (uuid 9ae242b8-a776-49dd-90c1-86a3d5ffa518)
  2092. )
  2093. (wire (pts (xy 93.98 66.04) (xy 106.68 66.04))
  2094. (stroke (width 0) (type default) (color 0 0 0 0))
  2095. (uuid a0b08724-2887-44ad-b9cd-00a82ba2c0e5)
  2096. )
  2097. (wire (pts (xy 209.55 67.31) (xy 222.25 67.31))
  2098. (stroke (width 0) (type default) (color 0 0 0 0))
  2099. (uuid a0ff9b33-8447-43db-8ed4-cbd4e8dec3cc)
  2100. )
  2101. (bus (pts (xy 109.22 60.96) (xy 109.22 63.5))
  2102. (stroke (width 0) (type default) (color 0 0 0 0))
  2103. (uuid a12d8c7c-622f-4ba4-bfb2-65cbd2da79cd)
  2104. )
  2105. (wire (pts (xy 93.98 86.36) (xy 106.68 86.36))
  2106. (stroke (width 0) (type default) (color 0 0 0 0))
  2107. (uuid a30e0029-c3f8-4e8c-a169-c298d3262cf0)
  2108. )
  2109. (wire (pts (xy 209.55 57.15) (xy 222.25 57.15))
  2110. (stroke (width 0) (type default) (color 0 0 0 0))
  2111. (uuid a319df8e-b54a-4cf6-b60f-af33d57c7ad6)
  2112. )
  2113. (wire (pts (xy 233.68 115.57) (xy 233.68 110.49))
  2114. (stroke (width 0) (type default) (color 0 0 0 0))
  2115. (uuid a3d5ed02-3e4b-4740-972b-0c9da5556028)
  2116. )
  2117. (wire (pts (xy 196.85 57.15) (xy 184.15 57.15))
  2118. (stroke (width 0) (type default) (color 0 0 0 0))
  2119. (uuid a4fca215-c0f4-49fd-b743-e6014df0b23e)
  2120. )
  2121. (bus (pts (xy 127 100.33) (xy 127 102.87))
  2122. (stroke (width 0) (type default) (color 0 0 0 0))
  2123. (uuid a5e1cad8-fa72-4b1e-92e4-4427b1feb84d)
  2124. )
  2125. (wire (pts (xy 196.85 62.23) (xy 184.15 62.23))
  2126. (stroke (width 0) (type default) (color 0 0 0 0))
  2127. (uuid a6b22d89-39f5-4a82-a874-57e1a7f0dbd6)
  2128. )
  2129. (bus (pts (xy 127 93.98) (xy 127 96.52))
  2130. (stroke (width 0) (type default) (color 0 0 0 0))
  2131. (uuid a79b11fc-ea17-4058-9d1a-e03925386d6a)
  2132. )
  2133. (bus (pts (xy 109.22 48.26) (xy 109.22 45.72))
  2134. (stroke (width 0) (type default) (color 0 0 0 0))
  2135. (uuid a9458e96-f930-418c-b123-0ae8458de3c8)
  2136. )
  2137. (wire (pts (xy 101.6 109.22) (xy 106.68 109.22))
  2138. (stroke (width 0) (type default) (color 0 0 0 0))
  2139. (uuid a9be653a-b313-43be-8930-c27f5e0820ab)
  2140. )
  2141. (wire (pts (xy 93.98 53.34) (xy 106.68 53.34))
  2142. (stroke (width 0) (type default) (color 0 0 0 0))
  2143. (uuid afa8d13b-8daf-42a0-af71-47acad988704)
  2144. )
  2145. (wire (pts (xy 153.67 63.5) (xy 156.21 63.5))
  2146. (stroke (width 0) (type default) (color 0 0 0 0))
  2147. (uuid aff390b9-3307-4353-a6be-611b418981ec)
  2148. )
  2149. (wire (pts (xy 196.85 67.31) (xy 184.15 67.31))
  2150. (stroke (width 0) (type default) (color 0 0 0 0))
  2151. (uuid b0079898-dbe0-4604-b07f-2cdbfdcc2e9b)
  2152. )
  2153. (bus (pts (xy 165.1 44.45) (xy 181.61 44.45))
  2154. (stroke (width 0) (type default) (color 0 0 0 0))
  2155. (uuid b1edcf52-330e-45a1-bc55-15514d5e65d3)
  2156. )
  2157. (bus (pts (xy 181.61 44.45) (xy 224.79 44.45))
  2158. (stroke (width 0) (type default) (color 0 0 0 0))
  2159. (uuid b1fd283a-c1d9-4eb7-bb33-f317f25cab9f)
  2160. )
  2161. (wire (pts (xy 129.54 93.98) (xy 138.43 93.98))
  2162. (stroke (width 0) (type default) (color 0 0 0 0))
  2163. (uuid b4a97045-97da-4250-a8b2-31bb050a219d)
  2164. )
  2165. (bus (pts (xy 165.1 80.01) (xy 165.1 88.9))
  2166. (stroke (width 0) (type default) (color 0 0 0 0))
  2167. (uuid b60a1626-f3b5-4fc0-b29e-9fab1db7bc07)
  2168. )
  2169. (bus (pts (xy 224.79 69.85) (xy 224.79 72.39))
  2170. (stroke (width 0) (type default) (color 0 0 0 0))
  2171. (uuid b7b504f6-347c-4da2-85d1-7113e847fd56)
  2172. )
  2173. (bus (pts (xy 109.22 101.6) (xy 109.22 104.14))
  2174. (stroke (width 0) (type default) (color 0 0 0 0))
  2175. (uuid b8c81b2d-2762-45f6-87a5-bf7fe91502ea)
  2176. )
  2177. (wire (pts (xy 129.54 60.96) (xy 138.43 60.96))
  2178. (stroke (width 0) (type default) (color 0 0 0 0))
  2179. (uuid b98d3f3c-06c9-4acf-9bf5-ecec32956042)
  2180. )
  2181. (bus (pts (xy 109.22 83.82) (xy 109.22 86.36))
  2182. (stroke (width 0) (type default) (color 0 0 0 0))
  2183. (uuid b9b067ce-38ac-4b8a-b54c-132dbd63e06a)
  2184. )
  2185. (wire (pts (xy 209.55 97.79) (xy 222.25 97.79))
  2186. (stroke (width 0) (type default) (color 0 0 0 0))
  2187. (uuid bdc7ffbc-905a-4144-a3a7-81f06d39036a)
  2188. )
  2189. (bus (pts (xy 109.22 86.36) (xy 109.22 88.9))
  2190. (stroke (width 0) (type default) (color 0 0 0 0))
  2191. (uuid bf057173-9741-4001-b5ef-8295ad203027)
  2192. )
  2193. (wire (pts (xy 129.54 119.38) (xy 138.43 119.38))
  2194. (stroke (width 0) (type default) (color 0 0 0 0))
  2195. (uuid bf6b7bd6-f2d3-4dd4-87b8-8ab4355e27e5)
  2196. )
  2197. (bus (pts (xy 109.22 81.28) (xy 109.22 83.82))
  2198. (stroke (width 0) (type default) (color 0 0 0 0))
  2199. (uuid c23a006f-46af-4d13-b89e-ff6253c4c7c4)
  2200. )
  2201. (wire (pts (xy 209.55 80.01) (xy 222.25 80.01))
  2202. (stroke (width 0) (type default) (color 0 0 0 0))
  2203. (uuid c589b1db-9f9e-4457-a6d9-8cb218c8bdde)
  2204. )
  2205. (bus (pts (xy 224.79 92.71) (xy 224.79 95.25))
  2206. (stroke (width 0) (type default) (color 0 0 0 0))
  2207. (uuid c6efe3b2-481c-42eb-9976-3476a62a4fc1)
  2208. )
  2209. (wire (pts (xy 209.55 74.93) (xy 222.25 74.93))
  2210. (stroke (width 0) (type default) (color 0 0 0 0))
  2211. (uuid c915f386-3746-4d81-9dd8-3f7c09c1d89f)
  2212. )
  2213. (wire (pts (xy 233.68 115.57) (xy 238.76 115.57))
  2214. (stroke (width 0) (type default) (color 0 0 0 0))
  2215. (uuid c9b5463b-65d7-4314-94fa-a545e6e44fc6)
  2216. )
  2217. (wire (pts (xy 196.85 90.17) (xy 184.15 90.17))
  2218. (stroke (width 0) (type default) (color 0 0 0 0))
  2219. (uuid cb450706-835e-43dd-9fb9-611491712f4e)
  2220. )
  2221. (bus (pts (xy 224.79 87.63) (xy 224.79 90.17))
  2222. (stroke (width 0) (type default) (color 0 0 0 0))
  2223. (uuid cbdd47d7-faf9-4618-b824-11fd11765317)
  2224. )
  2225. (wire (pts (xy 101.6 109.22) (xy 101.6 111.76))
  2226. (stroke (width 0) (type default) (color 0 0 0 0))
  2227. (uuid cbe99002-3f5a-4663-ba43-f903bf583048)
  2228. )
  2229. (wire (pts (xy 233.68 110.49) (xy 238.76 110.49))
  2230. (stroke (width 0) (type default) (color 0 0 0 0))
  2231. (uuid cc42064e-12f0-42cd-98e7-bec88aef8979)
  2232. )
  2233. (bus (pts (xy 127 91.44) (xy 127 93.98))
  2234. (stroke (width 0) (type default) (color 0 0 0 0))
  2235. (uuid cc91e019-3c51-4bbb-a448-19240637f234)
  2236. )
  2237. (bus (pts (xy 224.79 72.39) (xy 224.79 74.93))
  2238. (stroke (width 0) (type default) (color 0 0 0 0))
  2239. (uuid cda037e7-389e-41d1-92e3-ae63dcb55333)
  2240. )
  2241. (bus (pts (xy 165.1 44.45) (xy 165.1 80.01))
  2242. (stroke (width 0) (type default) (color 0 0 0 0))
  2243. (uuid d0a64220-28a6-4d65-b2dc-7436fe60d710)
  2244. )
  2245. (bus (pts (xy 109.22 93.98) (xy 109.22 96.52))
  2246. (stroke (width 0) (type default) (color 0 0 0 0))
  2247. (uuid d1ae81b4-e945-4c98-aae2-7c5c5aca713c)
  2248. )
  2249. (bus (pts (xy 181.61 69.85) (xy 181.61 72.39))
  2250. (stroke (width 0) (type default) (color 0 0 0 0))
  2251. (uuid d539630b-fc90-48c9-831c-bd7c9e8ba881)
  2252. )
  2253. (wire (pts (xy 121.92 54.61) (xy 124.46 54.61))
  2254. (stroke (width 0) (type default) (color 0 0 0 0))
  2255. (uuid d5a745c0-0693-4bf0-8cca-e2551304aac2)
  2256. )
  2257. (bus (pts (xy 127 96.52) (xy 127 100.33))
  2258. (stroke (width 0) (type default) (color 0 0 0 0))
  2259. (uuid d5b3d156-0497-424d-b0cc-131360f08767)
  2260. )
  2261. (wire (pts (xy 93.98 78.74) (xy 106.68 78.74))
  2262. (stroke (width 0) (type default) (color 0 0 0 0))
  2263. (uuid d6a1359f-407a-4021-a784-1516807acfe1)
  2264. )
  2265. (bus (pts (xy 181.61 90.17) (xy 181.61 92.71))
  2266. (stroke (width 0) (type default) (color 0 0 0 0))
  2267. (uuid d761bc34-a5e7-4f32-ad68-4127cda34bc9)
  2268. )
  2269. (bus (pts (xy 181.61 57.15) (xy 181.61 59.69))
  2270. (stroke (width 0) (type default) (color 0 0 0 0))
  2271. (uuid d7b299c0-28b7-4fb5-83c1-9b1079653c5b)
  2272. )
  2273. (wire (pts (xy 196.85 74.93) (xy 184.15 74.93))
  2274. (stroke (width 0) (type default) (color 0 0 0 0))
  2275. (uuid dcc16b35-462e-4f64-89f1-a64680b8127d)
  2276. )
  2277. (wire (pts (xy 93.98 76.2) (xy 106.68 76.2))
  2278. (stroke (width 0) (type default) (color 0 0 0 0))
  2279. (uuid dcd7595c-9cc2-4768-beef-c60cc703fb3a)
  2280. )
  2281. (wire (pts (xy 162.56 82.55) (xy 153.67 82.55))
  2282. (stroke (width 0) (type default) (color 0 0 0 0))
  2283. (uuid e03a76e4-1023-4c6f-b309-de61ea1c0db7)
  2284. )
  2285. (wire (pts (xy 93.98 81.28) (xy 106.68 81.28))
  2286. (stroke (width 0) (type default) (color 0 0 0 0))
  2287. (uuid e1adccda-0b4c-4549-ab79-6a181db277a9)
  2288. )
  2289. (wire (pts (xy 93.98 106.68) (xy 106.68 106.68))
  2290. (stroke (width 0) (type default) (color 0 0 0 0))
  2291. (uuid e5c58c48-e50d-499e-a3e0-36493a8c2489)
  2292. )
  2293. (bus (pts (xy 224.79 57.15) (xy 224.79 59.69))
  2294. (stroke (width 0) (type default) (color 0 0 0 0))
  2295. (uuid e884f87d-966b-4269-a754-b71beff952c4)
  2296. )
  2297. (wire (pts (xy 93.98 48.26) (xy 106.68 48.26))
  2298. (stroke (width 0) (type default) (color 0 0 0 0))
  2299. (uuid eba80735-76d6-4c13-bf60-27cb0a255bb1)
  2300. )
  2301. (wire (pts (xy 129.54 105.41) (xy 138.43 105.41))
  2302. (stroke (width 0) (type default) (color 0 0 0 0))
  2303. (uuid ec2c022e-5f95-493e-9778-9e7a085d2378)
  2304. )
  2305. (bus (pts (xy 224.79 95.25) (xy 224.79 100.33))
  2306. (stroke (width 0) (type default) (color 0 0 0 0))
  2307. (uuid ed5c0917-1951-4bbd-a5e6-18ea92b53a38)
  2308. )
  2309. (wire (pts (xy 196.85 72.39) (xy 184.15 72.39))
  2310. (stroke (width 0) (type default) (color 0 0 0 0))
  2311. (uuid ee628f00-b935-48ef-b00c-9a294d065504)
  2312. )
  2313. (bus (pts (xy 224.79 85.09) (xy 224.79 87.63))
  2314. (stroke (width 0) (type default) (color 0 0 0 0))
  2315. (uuid f054f6d1-3fc0-4385-93d9-0cbde22bf8af)
  2316. )
  2317. (wire (pts (xy 196.85 59.69) (xy 184.15 59.69))
  2318. (stroke (width 0) (type default) (color 0 0 0 0))
  2319. (uuid f08bd421-a84f-45e2-b110-e496c7be66a7)
  2320. )
  2321. (bus (pts (xy 127 44.45) (xy 165.1 44.45))
  2322. (stroke (width 0) (type default) (color 0 0 0 0))
  2323. (uuid f197fdc7-a209-4afc-9501-c921dd31eab4)
  2324. )
  2325. (bus (pts (xy 224.79 82.55) (xy 224.79 85.09))
  2326. (stroke (width 0) (type default) (color 0 0 0 0))
  2327. (uuid f1b20d84-dfb4-4e02-991b-aacdec1074dd)
  2328. )
  2329. (wire (pts (xy 93.98 71.12) (xy 106.68 71.12))
  2330. (stroke (width 0) (type default) (color 0 0 0 0))
  2331. (uuid f20f0aeb-bbf2-47ff-908c-f155d12a9d5b)
  2332. )
  2333. (bus (pts (xy 224.79 57.15) (xy 224.79 54.61))
  2334. (stroke (width 0) (type default) (color 0 0 0 0))
  2335. (uuid f31871f3-bf99-4a0d-b0d1-efca59d7e525)
  2336. )
  2337. (wire (pts (xy 209.55 85.09) (xy 222.25 85.09))
  2338. (stroke (width 0) (type default) (color 0 0 0 0))
  2339. (uuid f64738d9-19c4-4510-8623-3d6a42a0dee1)
  2340. )
  2341. (bus (pts (xy 181.61 85.09) (xy 181.61 87.63))
  2342. (stroke (width 0) (type default) (color 0 0 0 0))
  2343. (uuid f67b8373-acb9-4344-bd07-65522daffce3)
  2344. )
  2345. (wire (pts (xy 93.98 109.22) (xy 101.6 109.22))
  2346. (stroke (width 0) (type default) (color 0 0 0 0))
  2347. (uuid f68c7e62-d90f-400a-8740-9dcd90323fce)
  2348. )
  2349. (wire (pts (xy 129.54 116.84) (xy 138.43 116.84))
  2350. (stroke (width 0) (type default) (color 0 0 0 0))
  2351. (uuid fb63c558-b634-411c-844c-75ffdcbe3546)
  2352. )
  2353. (wire (pts (xy 209.55 62.23) (xy 222.25 62.23))
  2354. (stroke (width 0) (type default) (color 0 0 0 0))
  2355. (uuid fb7c4143-1577-4531-b740-1fd4dc6e2cbc)
  2356. )
  2357. (wire (pts (xy 196.85 64.77) (xy 184.15 64.77))
  2358. (stroke (width 0) (type default) (color 0 0 0 0))
  2359. (uuid fdbd1e28-db29-4a8f-b988-7433cd42b720)
  2360. )
  2361. (bus (pts (xy 109.22 68.58) (xy 109.22 71.12))
  2362. (stroke (width 0) (type default) (color 0 0 0 0))
  2363. (uuid fe98f590-74ff-4a1b-97e4-6871b434549d)
  2364. )
  2365. (label "GND" (at 93.98 78.74 0)
  2366. (effects (font (size 1.27 1.27)) (justify left bottom))
  2367. (uuid 03e47f6b-1baa-4a02-a490-5288a93f03d7)
  2368. )
  2369. (label "Tr00" (at 93.98 55.88 0)
  2370. (effects (font (size 1.27 1.27)) (justify left bottom))
  2371. (uuid 044e60fb-da14-4b3f-b1e9-7c8812529026)
  2372. )
  2373. (label "Motor" (at 129.54 102.87 0)
  2374. (effects (font (size 1.27 1.27)) (justify left bottom))
  2375. (uuid 04d121d8-e551-487b-9bbf-63bc76ec0e5d)
  2376. )
  2377. (label "Wpr" (at 93.98 53.34 0)
  2378. (effects (font (size 1.27 1.27)) (justify left bottom))
  2379. (uuid 07eb77d5-2261-447b-8337-dd4e9e28359c)
  2380. )
  2381. (label "Wg" (at 209.55 85.09 0)
  2382. (effects (font (size 1.27 1.27)) (justify left bottom))
  2383. (uuid 08a95a24-44a1-4333-8e10-643219506f16)
  2384. )
  2385. (label "Index" (at 93.98 96.52 0)
  2386. (effects (font (size 1.27 1.27)) (justify left bottom))
  2387. (uuid 09ddd339-86e0-4167-9e67-6513769a8304)
  2388. )
  2389. (label "Rd" (at 209.55 92.71 0)
  2390. (effects (font (size 1.27 1.27)) (justify left bottom))
  2391. (uuid 0cb9cb32-3de1-41f5-9b45-0be9b99c411c)
  2392. )
  2393. (label "Rdy2out" (at 129.54 96.52 0)
  2394. (effects (font (size 1.27 1.27)) (justify left bottom))
  2395. (uuid 1564c84f-db50-4db9-a070-5788924ed9d5)
  2396. )
  2397. (label "GND" (at 196.85 87.63 180)
  2398. (effects (font (size 1.27 1.27)) (justify right bottom))
  2399. (uuid 18f16ec2-feef-4127-a4a7-c5b39363af30)
  2400. )
  2401. (label "5v" (at 123.19 54.61 0)
  2402. (effects (font (size 1.27 1.27)) (justify left bottom))
  2403. (uuid 198ae106-35ab-4f7e-adf9-41db06f73964)
  2404. )
  2405. (label "GND" (at 93.98 63.5 0)
  2406. (effects (font (size 1.27 1.27)) (justify left bottom))
  2407. (uuid 19daa621-78d2-4808-bd49-0945d8507aee)
  2408. )
  2409. (label "Dir" (at 93.98 76.2 0)
  2410. (effects (font (size 1.27 1.27)) (justify left bottom))
  2411. (uuid 26634530-22c2-4841-9bb9-39f7818f537f)
  2412. )
  2413. (label "Side" (at 209.55 95.25 0)
  2414. (effects (font (size 1.27 1.27)) (justify left bottom))
  2415. (uuid 27f7ad66-c73e-46f9-ab14-5bd97a304334)
  2416. )
  2417. (label "Hld" (at 93.98 106.68 0)
  2418. (effects (font (size 1.27 1.27)) (justify left bottom))
  2419. (uuid 2e6c20c7-5985-43a2-90e8-e34e91e2fcc2)
  2420. )
  2421. (label "Index" (at 209.55 64.77 0)
  2422. (effects (font (size 1.27 1.27)) (justify left bottom))
  2423. (uuid 30bfdc02-f464-4457-b5c2-66e8e688ccd9)
  2424. )
  2425. (label "Wd" (at 209.55 82.55 0)
  2426. (effects (font (size 1.27 1.27)) (justify left bottom))
  2427. (uuid 36c21b24-839b-4302-bc16-405646243958)
  2428. )
  2429. (label "GND" (at 196.85 90.17 180)
  2430. (effects (font (size 1.27 1.27)) (justify right bottom))
  2431. (uuid 38a14706-f5d2-4fe7-88fb-154dac2db6dd)
  2432. )
  2433. (label "Wpr" (at 209.55 90.17 0)
  2434. (effects (font (size 1.27 1.27)) (justify left bottom))
  2435. (uuid 3a3619e4-4147-4ad8-89bf-7178d7f2ca4c)
  2436. )
  2437. (label "GND" (at 196.85 85.09 180)
  2438. (effects (font (size 1.27 1.27)) (justify right bottom))
  2439. (uuid 3cf78696-420c-4a92-ae9b-a631d1a587ed)
  2440. )
  2441. (label "GND" (at 196.85 80.01 180)
  2442. (effects (font (size 1.27 1.27)) (justify right bottom))
  2443. (uuid 440a4f64-4d84-464e-9049-5e62db4f0c04)
  2444. )
  2445. (label "Motor" (at 209.55 74.93 0)
  2446. (effects (font (size 1.27 1.27)) (justify left bottom))
  2447. (uuid 44475545-1d14-4435-9d00-5dd22a27985c)
  2448. )
  2449. (label "Step" (at 93.98 71.12 0)
  2450. (effects (font (size 1.27 1.27)) (justify left bottom))
  2451. (uuid 47a2438b-9b43-4da0-99f7-4cae1aff7e0d)
  2452. )
  2453. (label "Lc{slash}Pc" (at 93.98 104.14 0)
  2454. (effects (font (size 1.27 1.27)) (justify left bottom))
  2455. (uuid 50e4524d-d37f-4bc8-a5db-e12dd2f582b8)
  2456. )
  2457. (label "GND" (at 93.98 58.42 0)
  2458. (effects (font (size 1.27 1.27)) (justify left bottom))
  2459. (uuid 5803d8f1-4d50-44d8-b27d-ec0141d5b590)
  2460. )
  2461. (label "Rdy2a" (at 209.55 62.23 0)
  2462. (effects (font (size 1.27 1.27)) (justify left bottom))
  2463. (uuid 5a79b86c-fc8c-4ee2-b7d9-254411fc8e2c)
  2464. )
  2465. (label "Motorout" (at 129.54 66.04 0)
  2466. (effects (font (size 1.27 1.27)) (justify left bottom))
  2467. (uuid 6118d1cd-bf7f-435a-acb9-61e9657fc6df)
  2468. )
  2469. (label "Sel 3a" (at 129.54 121.92 0)
  2470. (effects (font (size 1.27 1.27)) (justify left bottom))
  2471. (uuid 666ff621-7ab5-4be2-bb24-b577787f55dc)
  2472. )
  2473. (label "Rdy2b" (at 129.54 99.06 0)
  2474. (effects (font (size 1.27 1.27)) (justify left bottom))
  2475. (uuid 66e75741-3283-4054-a81f-43b18d709b92)
  2476. )
  2477. (label "Motor" (at 93.98 81.28 0)
  2478. (effects (font (size 1.27 1.27)) (justify left bottom))
  2479. (uuid 6a58a72f-9a62-474e-a67e-7c7cd4db4b69)
  2480. )
  2481. (label "Sel 3b" (at 93.98 88.9 0)
  2482. (effects (font (size 1.27 1.27)) (justify left bottom))
  2483. (uuid 6e2c327f-1adb-487c-bc2f-8ed064fbd7b4)
  2484. )
  2485. (label "GND" (at 93.98 83.82 0)
  2486. (effects (font (size 1.27 1.27)) (justify left bottom))
  2487. (uuid 71af3e33-de26-4e88-98dd-686d85ddd366)
  2488. )
  2489. (label "GND" (at 196.85 92.71 180)
  2490. (effects (font (size 1.27 1.27)) (justify right bottom))
  2491. (uuid 729a54f6-adfc-4232-9fa5-372ae6629f8e)
  2492. )
  2493. (label "Sel 3" (at 129.54 119.38 0)
  2494. (effects (font (size 1.27 1.27)) (justify left bottom))
  2495. (uuid 76ab6ec2-6ae1-4197-b0f9-0ea644a1a582)
  2496. )
  2497. (label "GND" (at 93.98 109.22 0)
  2498. (effects (font (size 1.27 1.27)) (justify left bottom))
  2499. (uuid 78dec16b-b34e-481e-ae00-dbcbb735baae)
  2500. )
  2501. (label "Motorout" (at 129.54 105.41 0)
  2502. (effects (font (size 1.27 1.27)) (justify left bottom))
  2503. (uuid 791008a5-66f8-43dd-921e-6f2659d82cdd)
  2504. )
  2505. (label "Sel 2" (at 209.55 69.85 0)
  2506. (effects (font (size 1.27 1.27)) (justify left bottom))
  2507. (uuid 791355bf-3560-4eae-849c-5edab9c3c927)
  2508. )
  2509. (label "Rd" (at 93.98 50.8 0)
  2510. (effects (font (size 1.27 1.27)) (justify left bottom))
  2511. (uuid 7947fd3b-a303-4ccf-9b1f-d4dfcb36b5ef)
  2512. )
  2513. (label "5v" (at 93.98 99.06 0)
  2514. (effects (font (size 1.27 1.27)) (justify left bottom))
  2515. (uuid 794ce8bd-8f7c-4299-b775-bd6df9bda246)
  2516. )
  2517. (label "Sel 1" (at 209.55 67.31 0)
  2518. (effects (font (size 1.27 1.27)) (justify left bottom))
  2519. (uuid 7e3f5e0b-31bb-4d46-a448-06a7131b6131)
  2520. )
  2521. (label "Tr00" (at 209.55 87.63 0)
  2522. (effects (font (size 1.27 1.27)) (justify left bottom))
  2523. (uuid 7e72a88d-34cc-4dc3-bea4-3d26ff6e4dcc)
  2524. )
  2525. (label "GND" (at 196.85 82.55 180)
  2526. (effects (font (size 1.27 1.27)) (justify right bottom))
  2527. (uuid 8a53d94a-2a00-4c08-8640-99bca67f6f2d)
  2528. )
  2529. (label "Rdy1" (at 162.56 82.55 180)
  2530. (effects (font (size 1.27 1.27)) (justify right bottom))
  2531. (uuid 92ff09a4-8cf5-4956-a9b8-5fc8a61b5a86)
  2532. )
  2533. (label "GND" (at 196.85 64.77 180)
  2534. (effects (font (size 1.27 1.27)) (justify right bottom))
  2535. (uuid a053a649-2d98-44f7-bbf6-161cd868f469)
  2536. )
  2537. (label "Rdy2b" (at 209.55 97.79 0)
  2538. (effects (font (size 1.27 1.27)) (justify left bottom))
  2539. (uuid a56bae29-6452-479a-b3c4-3aa0cbbf55bb)
  2540. )
  2541. (label "Wg" (at 93.98 60.96 0)
  2542. (effects (font (size 1.27 1.27)) (justify left bottom))
  2543. (uuid a622a20e-d939-45b6-96dd-438c2648fd91)
  2544. )
  2545. (label "Rdy1" (at 93.98 101.6 0)
  2546. (effects (font (size 1.27 1.27)) (justify left bottom))
  2547. (uuid a6816404-bc49-484b-9ef4-95f6f9eed4d3)
  2548. )
  2549. (label "Step" (at 209.55 80.01 0)
  2550. (effects (font (size 1.27 1.27)) (justify left bottom))
  2551. (uuid b31d76a6-f00d-4968-8000-663356fe8cf7)
  2552. )
  2553. (label "Rdy2a" (at 129.54 93.98 0)
  2554. (effects (font (size 1.27 1.27)) (justify left bottom))
  2555. (uuid b3c6a672-c49a-49ef-99a1-6d68a810959d)
  2556. )
  2557. (label "Sel 2" (at 93.98 91.44 0)
  2558. (effects (font (size 1.27 1.27)) (justify left bottom))
  2559. (uuid b8e30bc3-16b0-4b43-a983-ee60c4d8df20)
  2560. )
  2561. (label "Side" (at 93.98 48.26 0)
  2562. (effects (font (size 1.27 1.27)) (justify left bottom))
  2563. (uuid be0de962-e741-4c3d-8280-5ec9c61905b3)
  2564. )
  2565. (label "Sel 1" (at 93.98 93.98 0)
  2566. (effects (font (size 1.27 1.27)) (justify left bottom))
  2567. (uuid c68446b1-2766-4dc3-9a41-c563a4674bf1)
  2568. )
  2569. (label "Sel 3b" (at 129.54 116.84 0)
  2570. (effects (font (size 1.27 1.27)) (justify left bottom))
  2571. (uuid c685b7cd-8df4-4db0-a7db-06c90e3eb9ce)
  2572. )
  2573. (label "GND" (at 93.98 73.66 0)
  2574. (effects (font (size 1.27 1.27)) (justify left bottom))
  2575. (uuid d045ca0d-68e3-435b-9ac1-e4e1e2271907)
  2576. )
  2577. (label "Dir" (at 209.55 77.47 0)
  2578. (effects (font (size 1.27 1.27)) (justify left bottom))
  2579. (uuid d72e2568-7745-485d-8a61-868888b47b7e)
  2580. )
  2581. (label "Wd" (at 93.98 66.04 0)
  2582. (effects (font (size 1.27 1.27)) (justify left bottom))
  2583. (uuid dbe8564c-66f2-4224-9b11-bad0283fbb96)
  2584. )
  2585. (label "Sel 3" (at 209.55 72.39 0)
  2586. (effects (font (size 1.27 1.27)) (justify left bottom))
  2587. (uuid dbff1415-2e8b-4519-b9df-083ddc3b4079)
  2588. )
  2589. (label "GND" (at 93.98 68.58 0)
  2590. (effects (font (size 1.27 1.27)) (justify left bottom))
  2591. (uuid dde822d8-2592-4cca-a915-a568cf56f416)
  2592. )
  2593. (label "Sel 3a" (at 93.98 86.36 0)
  2594. (effects (font (size 1.27 1.27)) (justify left bottom))
  2595. (uuid e591d14f-5377-42f4-8800-0229dfa6ad6f)
  2596. )
  2597. (label "Lc{slash}Pc" (at 196.85 67.31 180)
  2598. (effects (font (size 1.27 1.27)) (justify right bottom))
  2599. (uuid e7f547a1-0283-440d-97a0-e83e0b7d5573)
  2600. )
  2601. (label "Rdy2out" (at 129.54 60.96 0)
  2602. (effects (font (size 1.27 1.27)) (justify left bottom))
  2603. (uuid f528c421-3144-4360-8faa-5bf17a07be72)
  2604. )
  2605. (label "Hld" (at 209.55 57.15 0)
  2606. (effects (font (size 1.27 1.27)) (justify left bottom))
  2607. (uuid fb744027-6385-4212-be3b-160319325da8)
  2608. )
  2609. (symbol (lib_id "74xx:74LS02") (at 146.05 82.55 0) (unit 1)
  2610. (in_bom yes) (on_board yes) (fields_autoplaced)
  2611. (uuid 387eaa2e-45d4-4531-a242-016a344aa6c0)
  2612. (property "Reference" "U1" (id 0) (at 146.05 73.66 0))
  2613. (property "Value" "74LS02" (id 1) (at 146.05 76.2 0))
  2614. (property "Footprint" "Package_DIP:DIP-14_W7.62mm" (id 2) (at 146.05 82.55 0)
  2615. (effects (font (size 1.27 1.27)) hide)
  2616. )
  2617. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74ls02" (id 3) (at 146.05 82.55 0)
  2618. (effects (font (size 1.27 1.27)) hide)
  2619. )
  2620. (pin "1" (uuid d047af9b-deb3-49be-adaa-c997bc195e1e))
  2621. (pin "2" (uuid 0ea6a458-8256-4299-8a1a-a257f2a3f1cd))
  2622. (pin "3" (uuid 2e7434db-033f-4c26-a1fb-e4e8abe3e886))
  2623. )
  2624. (symbol (lib_id "power:GND") (at 233.68 135.89 0) (unit 1)
  2625. (in_bom yes) (on_board yes) (fields_autoplaced)
  2626. (uuid 3bce3d40-f7e0-4c84-bd16-f3c4120b5f7f)
  2627. (property "Reference" "#PWR0105" (id 0) (at 233.68 142.24 0)
  2628. (effects (font (size 1.27 1.27)) hide)
  2629. )
  2630. (property "Value" "GND" (id 1) (at 233.68 140.97 0))
  2631. (property "Footprint" "" (id 2) (at 233.68 135.89 0)
  2632. (effects (font (size 1.27 1.27)) hide)
  2633. )
  2634. (property "Datasheet" "" (id 3) (at 233.68 135.89 0)
  2635. (effects (font (size 1.27 1.27)) hide)
  2636. )
  2637. (pin "1" (uuid 922034b6-1c0a-4488-af3b-c38fd08165c8))
  2638. )
  2639. (symbol (lib_id "Connector_Generic:Conn_02x17_Odd_Even") (at 201.93 77.47 0) (unit 1)
  2640. (in_bom yes) (on_board yes) (fields_autoplaced)
  2641. (uuid 43ac6ffa-7b63-4fc0-b2b8-4c9c5eb4bd58)
  2642. (property "Reference" "J4" (id 0) (at 203.2 50.8 0))
  2643. (property "Value" "Conn_02x17_Odd_Even" (id 1) (at 203.2 53.34 0))
  2644. (property "Footprint" "Connector_IDC:IDC-Header_2x17_P2.54mm_Vertical" (id 2) (at 201.93 77.47 0)
  2645. (effects (font (size 1.27 1.27)) hide)
  2646. )
  2647. (property "Datasheet" "~" (id 3) (at 201.93 77.47 0)
  2648. (effects (font (size 1.27 1.27)) hide)
  2649. )
  2650. (pin "1" (uuid 33d32b78-2ce5-4f0f-9c10-a75cfc0e5093))
  2651. (pin "10" (uuid b2864bf5-06d5-4c4f-8cbc-411e478d399b))
  2652. (pin "11" (uuid 22a10280-b162-498b-8f50-742923a46b9d))
  2653. (pin "12" (uuid ef60f276-5730-4df9-bcd9-def8f9cfbf69))
  2654. (pin "13" (uuid ecca8ef9-602e-44d8-a748-0462754c1195))
  2655. (pin "14" (uuid 8942eeb2-a9d2-4b4f-be23-c44a7119ef5d))
  2656. (pin "15" (uuid 3a039831-58ae-4d6a-8cc9-8541d56df050))
  2657. (pin "16" (uuid f03c30a8-fa0b-4fa8-b481-91c4820e40c3))
  2658. (pin "17" (uuid 186841d7-fae1-4680-8006-7c14f06d9909))
  2659. (pin "18" (uuid 4742e42c-4950-41bb-a48b-e2046c180ee5))
  2660. (pin "19" (uuid f5ac881b-0d69-4879-83a3-ede2db410ca0))
  2661. (pin "2" (uuid 14758722-6471-45e7-860c-aba365c37189))
  2662. (pin "20" (uuid 86b023a5-6f68-47e6-8ced-8526700b4108))
  2663. (pin "21" (uuid 26c2accf-c1aa-409c-ae25-4cb3ae690ee1))
  2664. (pin "22" (uuid 0fdc7ebb-4b15-4947-a92f-73b17a1787e1))
  2665. (pin "23" (uuid 8396e241-a798-48b3-9c38-f7f7c1592f7e))
  2666. (pin "24" (uuid 78af5541-7b53-4910-b4cb-1d78c1bb10f5))
  2667. (pin "25" (uuid 608c3ee8-6d1a-4d44-8d8d-2a9364ba889f))
  2668. (pin "26" (uuid b17590ac-bb78-4798-b20d-40942eeb2176))
  2669. (pin "27" (uuid 3405fead-c3ec-4454-8d23-900b0c02339c))
  2670. (pin "28" (uuid 1c45c826-97a4-438f-bca5-c607a8ccf2dd))
  2671. (pin "29" (uuid e54538d4-293e-4a03-bc22-7aa9346c5107))
  2672. (pin "3" (uuid 2e54168b-0227-4159-b47e-0111d60ce4b2))
  2673. (pin "30" (uuid 9eacef68-2af9-4b4a-913f-deab09fc1781))
  2674. (pin "31" (uuid b695beee-10af-49fc-b958-675b1f9b1740))
  2675. (pin "32" (uuid 6ce00071-9f80-46a2-b112-32bf0bd6f2bf))
  2676. (pin "33" (uuid 5feab5a5-9804-4bdb-b619-ab50ce0ad4ac))
  2677. (pin "34" (uuid 13857f48-7501-4e84-bb7c-abeb10c00389))
  2678. (pin "4" (uuid dc1328ae-788e-4e55-8090-8d0fa272fa94))
  2679. (pin "5" (uuid 72833996-50ca-4342-9ce1-ff31346131bf))
  2680. (pin "6" (uuid 29de7e11-21e2-4f90-97dc-438c5365a278))
  2681. (pin "7" (uuid 921dce58-5f8d-4750-865c-928bdbc63a2d))
  2682. (pin "8" (uuid 72a97824-6fb2-437d-bb79-56199a4f145f))
  2683. (pin "9" (uuid 5170bcc4-7411-4fc2-a008-c485ed9c32be))
  2684. )
  2685. (symbol (lib_id "Connector:Conn_01x03_Male") (at 143.51 96.52 180) (unit 1)
  2686. (in_bom yes) (on_board yes) (fields_autoplaced)
  2687. (uuid 59bcc076-5408-4663-b595-c3d38a1212c3)
  2688. (property "Reference" "J2" (id 0) (at 144.78 95.2499 0)
  2689. (effects (font (size 1.27 1.27)) (justify right))
  2690. )
  2691. (property "Value" "Conn_01x03_Male" (id 1) (at 144.78 97.7899 0)
  2692. (effects (font (size 1.27 1.27)) (justify right))
  2693. )
  2694. (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (id 2) (at 143.51 96.52 0)
  2695. (effects (font (size 1.27 1.27)) hide)
  2696. )
  2697. (property "Datasheet" "~" (id 3) (at 143.51 96.52 0)
  2698. (effects (font (size 1.27 1.27)) hide)
  2699. )
  2700. (pin "1" (uuid 936bf009-2540-45d1-8e81-65c91f15ea48))
  2701. (pin "2" (uuid 9103b81a-7658-4021-b08b-039b187ad9e9))
  2702. (pin "3" (uuid ba957823-974a-4716-91fb-a45722d9c60d))
  2703. )
  2704. (symbol (lib_id "power:GND") (at 86.36 115.57 0) (unit 1)
  2705. (in_bom yes) (on_board yes) (fields_autoplaced)
  2706. (uuid 62a49abc-c3d4-42c0-8b61-18cf33b25fa5)
  2707. (property "Reference" "#PWR0106" (id 0) (at 86.36 121.92 0)
  2708. (effects (font (size 1.27 1.27)) hide)
  2709. )
  2710. (property "Value" "GND" (id 1) (at 86.36 120.65 0))
  2711. (property "Footprint" "" (id 2) (at 86.36 115.57 0)
  2712. (effects (font (size 1.27 1.27)) hide)
  2713. )
  2714. (property "Datasheet" "" (id 3) (at 86.36 115.57 0)
  2715. (effects (font (size 1.27 1.27)) hide)
  2716. )
  2717. (pin "1" (uuid c81e659a-f1d6-4c54-b50a-f998119278ea))
  2718. )
  2719. (symbol (lib_id "Connector:Conn_01x03_Male") (at 143.51 119.38 180) (unit 1)
  2720. (in_bom yes) (on_board yes)
  2721. (uuid 79615ea2-c332-4cbd-82c6-4aefeb5a0969)
  2722. (property "Reference" "J1" (id 0) (at 144.78 118.1099 0)
  2723. (effects (font (size 1.27 1.27)) (justify right))
  2724. )
  2725. (property "Value" "Conn_01x03_Male" (id 1) (at 144.78 120.6499 0)
  2726. (effects (font (size 1.27 1.27)) (justify right))
  2727. )
  2728. (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (id 2) (at 143.51 119.38 0)
  2729. (effects (font (size 1.27 1.27)) hide)
  2730. )
  2731. (property "Datasheet" "~" (id 3) (at 143.51 119.38 0)
  2732. (effects (font (size 1.27 1.27)) hide)
  2733. )
  2734. (pin "1" (uuid 80c713cb-d473-4628-bcfd-f56ec0b84dd3))
  2735. (pin "2" (uuid 77b28b1b-b142-4bdf-bf06-35d584052269))
  2736. (pin "3" (uuid 32ab0b54-ab19-481b-a0f5-9d3f2e05ca98))
  2737. )
  2738. (symbol (lib_id "74xx:74LS02") (at 246.38 113.03 0) (unit 3)
  2739. (in_bom yes) (on_board yes) (fields_autoplaced)
  2740. (uuid 7e41ad2d-a20a-46ca-a4c8-465166d95044)
  2741. (property "Reference" "U1" (id 0) (at 246.38 104.14 0))
  2742. (property "Value" "74LS02" (id 1) (at 246.38 106.68 0))
  2743. (property "Footprint" "Package_DIP:DIP-14_W7.62mm" (id 2) (at 246.38 113.03 0)
  2744. (effects (font (size 1.27 1.27)) hide)
  2745. )
  2746. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74ls02" (id 3) (at 246.38 113.03 0)
  2747. (effects (font (size 1.27 1.27)) hide)
  2748. )
  2749. (pin "10" (uuid 30276b91-9731-4506-8f0c-6d2b168256b3))
  2750. (pin "8" (uuid 1121c8e0-f1a9-4cda-99ed-db8cdff3379f))
  2751. (pin "9" (uuid 14f98b3e-ec50-4c8b-8258-accacef59f8b))
  2752. )
  2753. (symbol (lib_id "power:+5V") (at 236.22 21.59 0) (unit 1)
  2754. (in_bom yes) (on_board yes) (fields_autoplaced)
  2755. (uuid 99f8c402-4b70-454f-9220-62a407d1b059)
  2756. (property "Reference" "#PWR0101" (id 0) (at 236.22 25.4 0)
  2757. (effects (font (size 1.27 1.27)) hide)
  2758. )
  2759. (property "Value" "+5V" (id 1) (at 236.22 16.51 0))
  2760. (property "Footprint" "" (id 2) (at 236.22 21.59 0)
  2761. (effects (font (size 1.27 1.27)) hide)
  2762. )
  2763. (property "Datasheet" "" (id 3) (at 236.22 21.59 0)
  2764. (effects (font (size 1.27 1.27)) hide)
  2765. )
  2766. (pin "1" (uuid 54f6961a-9f1c-45e6-9442-38e2aff6017a))
  2767. )
  2768. (symbol (lib_id "power:GND") (at 133.35 107.95 0) (unit 1)
  2769. (in_bom yes) (on_board yes) (fields_autoplaced)
  2770. (uuid a212f8f8-65fa-4ed3-8a90-ade0a5ec99e3)
  2771. (property "Reference" "#PWR0108" (id 0) (at 133.35 114.3 0)
  2772. (effects (font (size 1.27 1.27)) hide)
  2773. )
  2774. (property "Value" "GND" (id 1) (at 133.35 113.03 0))
  2775. (property "Footprint" "" (id 2) (at 133.35 107.95 0)
  2776. (effects (font (size 1.27 1.27)) hide)
  2777. )
  2778. (property "Datasheet" "" (id 3) (at 133.35 107.95 0)
  2779. (effects (font (size 1.27 1.27)) hide)
  2780. )
  2781. (pin "1" (uuid b4a5840d-a0a1-41da-be18-1281cac8f3d7))
  2782. )
  2783. (symbol (lib_id "power:GND") (at 236.22 49.53 0) (unit 1)
  2784. (in_bom yes) (on_board yes) (fields_autoplaced)
  2785. (uuid a9e62fb5-e4a2-4063-8ac5-b54ac2f4a70a)
  2786. (property "Reference" "#PWR0104" (id 0) (at 236.22 55.88 0)
  2787. (effects (font (size 1.27 1.27)) hide)
  2788. )
  2789. (property "Value" "GND" (id 1) (at 236.22 54.61 0))
  2790. (property "Footprint" "" (id 2) (at 236.22 49.53 0)
  2791. (effects (font (size 1.27 1.27)) hide)
  2792. )
  2793. (property "Datasheet" "" (id 3) (at 236.22 49.53 0)
  2794. (effects (font (size 1.27 1.27)) hide)
  2795. )
  2796. (pin "1" (uuid f5ab2c6a-8549-4c09-8a57-d60d8728dd14))
  2797. )
  2798. (symbol (lib_id "74xx:74LS02") (at 246.38 129.54 0) (unit 4)
  2799. (in_bom yes) (on_board yes) (fields_autoplaced)
  2800. (uuid ac9d0cf2-2f29-4a7e-a715-2751f8673025)
  2801. (property "Reference" "U1" (id 0) (at 246.38 120.65 0))
  2802. (property "Value" "74LS02" (id 1) (at 246.38 123.19 0))
  2803. (property "Footprint" "Package_DIP:DIP-14_W7.62mm" (id 2) (at 246.38 129.54 0)
  2804. (effects (font (size 1.27 1.27)) hide)
  2805. )
  2806. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74ls02" (id 3) (at 246.38 129.54 0)
  2807. (effects (font (size 1.27 1.27)) hide)
  2808. )
  2809. (pin "11" (uuid 6dbf8335-852e-43ec-9aa0-3cf972b77c49))
  2810. (pin "12" (uuid c15c8ca7-df56-4d4b-a099-76096352e408))
  2811. (pin "13" (uuid 6e931e0d-869c-4234-a49a-dd0f7eed1bf9))
  2812. )
  2813. (symbol (lib_id "74xx:74LS02") (at 236.22 35.56 0) (unit 5)
  2814. (in_bom yes) (on_board yes) (fields_autoplaced)
  2815. (uuid ad7fc7e6-3610-455e-998c-d380a0904445)
  2816. (property "Reference" "U1" (id 0) (at 242.57 34.2899 0)
  2817. (effects (font (size 1.27 1.27)) (justify left))
  2818. )
  2819. (property "Value" "74LS02" (id 1) (at 242.57 36.8299 0)
  2820. (effects (font (size 1.27 1.27)) (justify left))
  2821. )
  2822. (property "Footprint" "Package_DIP:DIP-14_W7.62mm" (id 2) (at 236.22 35.56 0)
  2823. (effects (font (size 1.27 1.27)) hide)
  2824. )
  2825. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74ls02" (id 3) (at 236.22 35.56 0)
  2826. (effects (font (size 1.27 1.27)) hide)
  2827. )
  2828. (pin "14" (uuid 00557b03-9ac7-4db5-bd3b-b3dfa0d1e9ff))
  2829. (pin "7" (uuid ec99fc86-0e9a-4075-8162-59cddfdf832b))
  2830. )
  2831. (symbol (lib_id "Device:C_Small") (at 256.54 34.29 0) (unit 1)
  2832. (in_bom yes) (on_board yes) (fields_autoplaced)
  2833. (uuid aef445db-3fd9-4eac-ba44-0798914681eb)
  2834. (property "Reference" "C1" (id 0) (at 259.08 33.0262 0)
  2835. (effects (font (size 1.27 1.27)) (justify left))
  2836. )
  2837. (property "Value" "100nF" (id 1) (at 259.08 35.5662 0)
  2838. (effects (font (size 1.27 1.27)) (justify left))
  2839. )
  2840. (property "Footprint" "Capacitor_THT:C_Rect_L4.0mm_W2.5mm_P2.50mm" (id 2) (at 256.54 34.29 0)
  2841. (effects (font (size 1.27 1.27)) hide)
  2842. )
  2843. (property "Datasheet" "~" (id 3) (at 256.54 34.29 0)
  2844. (effects (font (size 1.27 1.27)) hide)
  2845. )
  2846. (pin "1" (uuid 53d1a6df-e460-429c-bcf2-9ffa804a1202))
  2847. (pin "2" (uuid 8e137aa4-2e18-4d24-88a3-45e9a944669f))
  2848. )
  2849. (symbol (lib_id "power:+5V") (at 121.92 53.34 0) (unit 1)
  2850. (in_bom yes) (on_board yes) (fields_autoplaced)
  2851. (uuid bf13deb6-016c-4ec0-b9f2-2150fc894a2e)
  2852. (property "Reference" "#PWR0109" (id 0) (at 121.92 57.15 0)
  2853. (effects (font (size 1.27 1.27)) hide)
  2854. )
  2855. (property "Value" "+5V" (id 1) (at 121.92 48.26 0))
  2856. (property "Footprint" "" (id 2) (at 121.92 53.34 0)
  2857. (effects (font (size 1.27 1.27)) hide)
  2858. )
  2859. (property "Datasheet" "" (id 3) (at 121.92 53.34 0)
  2860. (effects (font (size 1.27 1.27)) hide)
  2861. )
  2862. (pin "1" (uuid 6f602f8f-8ba9-4140-9f56-cb304d8a6483))
  2863. )
  2864. (symbol (lib_id "Connector:Conn_01x03_Male") (at 143.51 105.41 180) (unit 1)
  2865. (in_bom yes) (on_board yes) (fields_autoplaced)
  2866. (uuid c238743d-1251-448f-a7f1-334ab21dd1e3)
  2867. (property "Reference" "J3" (id 0) (at 144.78 104.1399 0)
  2868. (effects (font (size 1.27 1.27)) (justify right))
  2869. )
  2870. (property "Value" "Conn_01x03_Male" (id 1) (at 144.78 106.6799 0)
  2871. (effects (font (size 1.27 1.27)) (justify right))
  2872. )
  2873. (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (id 2) (at 143.51 105.41 0)
  2874. (effects (font (size 1.27 1.27)) hide)
  2875. )
  2876. (property "Datasheet" "~" (id 3) (at 143.51 105.41 0)
  2877. (effects (font (size 1.27 1.27)) hide)
  2878. )
  2879. (pin "1" (uuid 8e9b4712-0cae-4a93-862d-effff224199c))
  2880. (pin "2" (uuid 0030fc66-73ac-4643-af59-25c5159a7a54))
  2881. (pin "3" (uuid ecd7cf2e-5832-4552-95ae-6a9be028fdbc))
  2882. )
  2883. (symbol (lib_id "power:GND") (at 101.6 111.76 0) (unit 1)
  2884. (in_bom yes) (on_board yes) (fields_autoplaced)
  2885. (uuid d186f911-55f0-417a-a847-a29b893380c9)
  2886. (property "Reference" "#PWR0107" (id 0) (at 101.6 118.11 0)
  2887. (effects (font (size 1.27 1.27)) hide)
  2888. )
  2889. (property "Value" "GND" (id 1) (at 101.6 116.84 0))
  2890. (property "Footprint" "" (id 2) (at 101.6 111.76 0)
  2891. (effects (font (size 1.27 1.27)) hide)
  2892. )
  2893. (property "Datasheet" "" (id 3) (at 101.6 111.76 0)
  2894. (effects (font (size 1.27 1.27)) hide)
  2895. )
  2896. (pin "1" (uuid 18157c86-6fe2-41e2-862e-860e61cae2be))
  2897. )
  2898. (symbol (lib_id "74xx:74LS02") (at 146.05 63.5 0) (unit 2)
  2899. (in_bom yes) (on_board yes)
  2900. (uuid e2c9e1ed-df65-466f-83e7-186dda2bb025)
  2901. (property "Reference" "U1" (id 0) (at 146.05 83.82 0))
  2902. (property "Value" "74LS02" (id 1) (at 146.05 57.15 0))
  2903. (property "Footprint" "Package_DIP:DIP-14_W7.62mm" (id 2) (at 146.05 63.5 0)
  2904. (effects (font (size 1.27 1.27)) hide)
  2905. )
  2906. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74ls02" (id 3) (at 146.05 63.5 0)
  2907. (effects (font (size 1.27 1.27)) hide)
  2908. )
  2909. (pin "4" (uuid ef0f473a-aa49-4a7f-9490-416cac6f154b))
  2910. (pin "5" (uuid 0c6d5dde-23d0-4c89-bdb2-366e90a4a81a))
  2911. (pin "6" (uuid 2cd5705e-095f-4123-8b46-67e7de9b4297))
  2912. )
  2913. (symbol (lib_id "power:+5V") (at 256.54 30.48 0) (unit 1)
  2914. (in_bom yes) (on_board yes) (fields_autoplaced)
  2915. (uuid ea6f688c-4542-4cf3-9e1e-6fddcaaa1753)
  2916. (property "Reference" "#PWR0103" (id 0) (at 256.54 34.29 0)
  2917. (effects (font (size 1.27 1.27)) hide)
  2918. )
  2919. (property "Value" "+5V" (id 1) (at 256.54 25.4 0))
  2920. (property "Footprint" "" (id 2) (at 256.54 30.48 0)
  2921. (effects (font (size 1.27 1.27)) hide)
  2922. )
  2923. (property "Datasheet" "" (id 3) (at 256.54 30.48 0)
  2924. (effects (font (size 1.27 1.27)) hide)
  2925. )
  2926. (pin "1" (uuid f1315412-ac74-41ff-8e98-6080e27cfbe2))
  2927. )
  2928. (symbol (lib_id "power:GND") (at 256.54 38.1 0) (unit 1)
  2929. (in_bom yes) (on_board yes) (fields_autoplaced)
  2930. (uuid ecd4f9fa-dd9c-4b9a-bec8-c0278d508556)
  2931. (property "Reference" "#PWR0102" (id 0) (at 256.54 44.45 0)
  2932. (effects (font (size 1.27 1.27)) hide)
  2933. )
  2934. (property "Value" "GND" (id 1) (at 256.54 43.18 0))
  2935. (property "Footprint" "" (id 2) (at 256.54 38.1 0)
  2936. (effects (font (size 1.27 1.27)) hide)
  2937. )
  2938. (property "Datasheet" "" (id 3) (at 256.54 38.1 0)
  2939. (effects (font (size 1.27 1.27)) hide)
  2940. )
  2941. (pin "1" (uuid 313244ce-6f7e-4051-a2d1-40f03dd90a01))
  2942. )
  2943. (symbol (lib_id "Connector:DB25_Female_MountingHoles") (at 86.36 78.74 0) (mirror y) (unit 1)
  2944. (in_bom yes) (on_board yes) (fields_autoplaced)
  2945. (uuid fa68f4ce-6070-4bc3-9036-4fbcdc86d398)
  2946. (property "Reference" "J5" (id 0) (at 86.36 36.83 0))
  2947. (property "Value" "DB25_Female_MountingHoles" (id 1) (at 86.36 39.37 0))
  2948. (property "Footprint" "Connector_Dsub:DSUB-25_Female_EdgeMount_P2.77mm" (id 2) (at 86.36 41.91 0))
  2949. (property "Datasheet" " ~" (id 3) (at 86.36 78.74 0)
  2950. (effects (font (size 1.27 1.27)) hide)
  2951. )
  2952. (pin "0" (uuid 2a24f27e-b86f-4072-85a5-bdece584e2a8))
  2953. (pin "1" (uuid 23ab1735-8f4f-4475-97c9-0cd199d9c1a4))
  2954. (pin "10" (uuid 8a886577-f7da-4fd1-a679-d33988c4b8ea))
  2955. (pin "11" (uuid 4998a818-87de-4d3f-9def-0b9107b3ba77))
  2956. (pin "12" (uuid 6276917b-1c04-401a-9462-adb252ad25f2))
  2957. (pin "13" (uuid c0b60105-dabe-4326-958a-5db70c941d2b))
  2958. (pin "14" (uuid 15c63e93-2f54-4f9e-b747-c0907bc057e1))
  2959. (pin "15" (uuid 339b77fe-16f3-43b4-8399-7230a8ae2102))
  2960. (pin "16" (uuid 0bf07a61-a239-4acf-856e-fba25f207a84))
  2961. (pin "17" (uuid a00c5020-aad7-491c-83e9-65be8877304b))
  2962. (pin "18" (uuid 74d3c7c8-07df-4eb4-a4c0-dc027191019b))
  2963. (pin "19" (uuid 5c54fdce-28e8-4f72-bb25-0bf3b6f09690))
  2964. (pin "2" (uuid d9fc8576-4810-4f73-b459-4abb235b90fe))
  2965. (pin "20" (uuid 18398d4d-eaad-41d2-ab8c-cf0dd656a4de))
  2966. (pin "21" (uuid 6af062e1-0169-4405-9a0a-4a9da1581e6a))
  2967. (pin "22" (uuid c955e000-0267-4ba1-b792-a1f68a336cde))
  2968. (pin "23" (uuid 697602a5-614a-4354-9314-267df5fc4571))
  2969. (pin "24" (uuid 10fcbf2d-6552-4910-ae9e-906304f0e093))
  2970. (pin "25" (uuid 2d38429c-e76f-4ac3-a609-eca610b831a6))
  2971. (pin "3" (uuid 3d4971da-7f68-4ffd-a47d-f57af641478c))
  2972. (pin "4" (uuid 2338658c-a171-455d-ad40-3e03c5e2e649))
  2973. (pin "5" (uuid 5349dbfc-1197-4fd1-baa3-9509e2eb1877))
  2974. (pin "6" (uuid b5a7b331-0ea6-4406-9acc-d4705a05fbe6))
  2975. (pin "7" (uuid 07fc543e-ebc7-4da4-ab80-a5a9d1298f42))
  2976. (pin "8" (uuid 6d421685-6187-4a3c-8570-78b8305b32fe))
  2977. (pin "9" (uuid a283df1a-c852-4e3f-9b54-5d33582cdb9f))
  2978. )
  2979. (sheet_instances
  2980. (path "/" (page "1"))
  2981. )
  2982. (symbol_instances
  2983. (path "/99f8c402-4b70-454f-9220-62a407d1b059"
  2984. (reference "#PWR0101") (unit 1) (value "+5V") (footprint "")
  2985. )
  2986. (path "/ecd4f9fa-dd9c-4b9a-bec8-c0278d508556"
  2987. (reference "#PWR0102") (unit 1) (value "GND") (footprint "")
  2988. )
  2989. (path "/ea6f688c-4542-4cf3-9e1e-6fddcaaa1753"
  2990. (reference "#PWR0103") (unit 1) (value "+5V") (footprint "")
  2991. )
  2992. (path "/a9e62fb5-e4a2-4063-8ac5-b54ac2f4a70a"
  2993. (reference "#PWR0104") (unit 1) (value "GND") (footprint "")
  2994. )
  2995. (path "/3bce3d40-f7e0-4c84-bd16-f3c4120b5f7f"
  2996. (reference "#PWR0105") (unit 1) (value "GND") (footprint "")
  2997. )
  2998. (path "/62a49abc-c3d4-42c0-8b61-18cf33b25fa5"
  2999. (reference "#PWR0106") (unit 1) (value "GND") (footprint "")
  3000. )
  3001. (path "/d186f911-55f0-417a-a847-a29b893380c9"
  3002. (reference "#PWR0107") (unit 1) (value "GND") (footprint "")
  3003. )
  3004. (path "/a212f8f8-65fa-4ed3-8a90-ade0a5ec99e3"
  3005. (reference "#PWR0108") (unit 1) (value "GND") (footprint "")
  3006. )
  3007. (path "/bf13deb6-016c-4ec0-b9f2-2150fc894a2e"
  3008. (reference "#PWR0109") (unit 1) (value "+5V") (footprint "")
  3009. )
  3010. (path "/aef445db-3fd9-4eac-ba44-0798914681eb"
  3011. (reference "C1") (unit 1) (value "100nF") (footprint "Capacitor_THT:C_Rect_L4.0mm_W2.5mm_P2.50mm")
  3012. )
  3013. (path "/79615ea2-c332-4cbd-82c6-4aefeb5a0969"
  3014. (reference "J1") (unit 1) (value "Conn_01x03_Male") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical")
  3015. )
  3016. (path "/59bcc076-5408-4663-b595-c3d38a1212c3"
  3017. (reference "J2") (unit 1) (value "Conn_01x03_Male") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical")
  3018. )
  3019. (path "/c238743d-1251-448f-a7f1-334ab21dd1e3"
  3020. (reference "J3") (unit 1) (value "Conn_01x03_Male") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical")
  3021. )
  3022. (path "/43ac6ffa-7b63-4fc0-b2b8-4c9c5eb4bd58"
  3023. (reference "J4") (unit 1) (value "Conn_02x17_Odd_Even") (footprint "Connector_IDC:IDC-Header_2x17_P2.54mm_Vertical")
  3024. )
  3025. (path "/fa68f4ce-6070-4bc3-9036-4fbcdc86d398"
  3026. (reference "J5") (unit 1) (value "DB25_Female_MountingHoles") (footprint "Connector_Dsub:DSUB-25_Female_EdgeMount_P2.77mm")
  3027. )
  3028. (path "/387eaa2e-45d4-4531-a242-016a344aa6c0"
  3029. (reference "U1") (unit 1) (value "74LS02") (footprint "Package_DIP:DIP-14_W7.62mm")
  3030. )
  3031. (path "/e2c9e1ed-df65-466f-83e7-186dda2bb025"
  3032. (reference "U1") (unit 2) (value "74LS02") (footprint "Package_DIP:DIP-14_W7.62mm")
  3033. )
  3034. (path "/7e41ad2d-a20a-46ca-a4c8-465166d95044"
  3035. (reference "U1") (unit 3) (value "74LS02") (footprint "Package_DIP:DIP-14_W7.62mm")
  3036. )
  3037. (path "/ac9d0cf2-2f29-4a7e-a715-2751f8673025"
  3038. (reference "U1") (unit 4) (value "74LS02") (footprint "Package_DIP:DIP-14_W7.62mm")
  3039. )
  3040. (path "/ad7fc7e6-3610-455e-998c-d380a0904445"
  3041. (reference "U1") (unit 5) (value "74LS02") (footprint "Package_DIP:DIP-14_W7.62mm")
  3042. )
  3043. )
  3044. )