eprom_replacer.kicad_sch 122 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147
  1. (kicad_sch (version 20211123) (generator eeschema)
  2. (uuid e08210f2-528b-449a-b2fd-64b09de19386)
  3. (paper "A4")
  4. (title_block
  5. (title "EPROM Replacer")
  6. (date "2022-09-24")
  7. (rev "1.01")
  8. )
  9. (lib_symbols
  10. (symbol "74xx:74LS138" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  11. (property "Reference" "U" (id 0) (at -7.62 11.43 0)
  12. (effects (font (size 1.27 1.27)))
  13. )
  14. (property "Value" "74LS138" (id 1) (at -7.62 -13.97 0)
  15. (effects (font (size 1.27 1.27)))
  16. )
  17. (property "Footprint" "" (id 2) (at 0 0 0)
  18. (effects (font (size 1.27 1.27)) hide)
  19. )
  20. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS138" (id 3) (at 0 0 0)
  21. (effects (font (size 1.27 1.27)) hide)
  22. )
  23. (property "ki_locked" "" (id 4) (at 0 0 0)
  24. (effects (font (size 1.27 1.27)))
  25. )
  26. (property "ki_keywords" "TTL DECOD DECOD8" (id 5) (at 0 0 0)
  27. (effects (font (size 1.27 1.27)) hide)
  28. )
  29. (property "ki_description" "Decoder 3 to 8 active low outputs" (id 6) (at 0 0 0)
  30. (effects (font (size 1.27 1.27)) hide)
  31. )
  32. (property "ki_fp_filters" "DIP?16*" (id 7) (at 0 0 0)
  33. (effects (font (size 1.27 1.27)) hide)
  34. )
  35. (symbol "74LS138_1_0"
  36. (pin input line (at -12.7 7.62 0) (length 5.08)
  37. (name "A0" (effects (font (size 1.27 1.27))))
  38. (number "1" (effects (font (size 1.27 1.27))))
  39. )
  40. (pin output output_low (at 12.7 -5.08 180) (length 5.08)
  41. (name "O5" (effects (font (size 1.27 1.27))))
  42. (number "10" (effects (font (size 1.27 1.27))))
  43. )
  44. (pin output output_low (at 12.7 -2.54 180) (length 5.08)
  45. (name "O4" (effects (font (size 1.27 1.27))))
  46. (number "11" (effects (font (size 1.27 1.27))))
  47. )
  48. (pin output output_low (at 12.7 0 180) (length 5.08)
  49. (name "O3" (effects (font (size 1.27 1.27))))
  50. (number "12" (effects (font (size 1.27 1.27))))
  51. )
  52. (pin output output_low (at 12.7 2.54 180) (length 5.08)
  53. (name "O2" (effects (font (size 1.27 1.27))))
  54. (number "13" (effects (font (size 1.27 1.27))))
  55. )
  56. (pin output output_low (at 12.7 5.08 180) (length 5.08)
  57. (name "O1" (effects (font (size 1.27 1.27))))
  58. (number "14" (effects (font (size 1.27 1.27))))
  59. )
  60. (pin output output_low (at 12.7 7.62 180) (length 5.08)
  61. (name "O0" (effects (font (size 1.27 1.27))))
  62. (number "15" (effects (font (size 1.27 1.27))))
  63. )
  64. (pin power_in line (at 0 15.24 270) (length 5.08)
  65. (name "VCC" (effects (font (size 1.27 1.27))))
  66. (number "16" (effects (font (size 1.27 1.27))))
  67. )
  68. (pin input line (at -12.7 5.08 0) (length 5.08)
  69. (name "A1" (effects (font (size 1.27 1.27))))
  70. (number "2" (effects (font (size 1.27 1.27))))
  71. )
  72. (pin input line (at -12.7 2.54 0) (length 5.08)
  73. (name "A2" (effects (font (size 1.27 1.27))))
  74. (number "3" (effects (font (size 1.27 1.27))))
  75. )
  76. (pin input input_low (at -12.7 -10.16 0) (length 5.08)
  77. (name "E1" (effects (font (size 1.27 1.27))))
  78. (number "4" (effects (font (size 1.27 1.27))))
  79. )
  80. (pin input input_low (at -12.7 -7.62 0) (length 5.08)
  81. (name "E2" (effects (font (size 1.27 1.27))))
  82. (number "5" (effects (font (size 1.27 1.27))))
  83. )
  84. (pin input line (at -12.7 -5.08 0) (length 5.08)
  85. (name "E3" (effects (font (size 1.27 1.27))))
  86. (number "6" (effects (font (size 1.27 1.27))))
  87. )
  88. (pin output output_low (at 12.7 -10.16 180) (length 5.08)
  89. (name "O7" (effects (font (size 1.27 1.27))))
  90. (number "7" (effects (font (size 1.27 1.27))))
  91. )
  92. (pin power_in line (at 0 -17.78 90) (length 5.08)
  93. (name "GND" (effects (font (size 1.27 1.27))))
  94. (number "8" (effects (font (size 1.27 1.27))))
  95. )
  96. (pin output output_low (at 12.7 -7.62 180) (length 5.08)
  97. (name "O6" (effects (font (size 1.27 1.27))))
  98. (number "9" (effects (font (size 1.27 1.27))))
  99. )
  100. )
  101. (symbol "74LS138_1_1"
  102. (rectangle (start -7.62 10.16) (end 7.62 -12.7)
  103. (stroke (width 0.254) (type default) (color 0 0 0 0))
  104. (fill (type background))
  105. )
  106. )
  107. )
  108. (symbol "Connector:Conn_01x05_Male" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  109. (property "Reference" "J" (id 0) (at 0 7.62 0)
  110. (effects (font (size 1.27 1.27)))
  111. )
  112. (property "Value" "Conn_01x05_Male" (id 1) (at 0 -7.62 0)
  113. (effects (font (size 1.27 1.27)))
  114. )
  115. (property "Footprint" "" (id 2) (at 0 0 0)
  116. (effects (font (size 1.27 1.27)) hide)
  117. )
  118. (property "Datasheet" "~" (id 3) (at 0 0 0)
  119. (effects (font (size 1.27 1.27)) hide)
  120. )
  121. (property "ki_keywords" "connector" (id 4) (at 0 0 0)
  122. (effects (font (size 1.27 1.27)) hide)
  123. )
  124. (property "ki_description" "Generic connector, single row, 01x05, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
  125. (effects (font (size 1.27 1.27)) hide)
  126. )
  127. (property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
  128. (effects (font (size 1.27 1.27)) hide)
  129. )
  130. (symbol "Conn_01x05_Male_1_1"
  131. (polyline
  132. (pts
  133. (xy 1.27 -5.08)
  134. (xy 0.8636 -5.08)
  135. )
  136. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  137. (fill (type none))
  138. )
  139. (polyline
  140. (pts
  141. (xy 1.27 -2.54)
  142. (xy 0.8636 -2.54)
  143. )
  144. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  145. (fill (type none))
  146. )
  147. (polyline
  148. (pts
  149. (xy 1.27 0)
  150. (xy 0.8636 0)
  151. )
  152. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  153. (fill (type none))
  154. )
  155. (polyline
  156. (pts
  157. (xy 1.27 2.54)
  158. (xy 0.8636 2.54)
  159. )
  160. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  161. (fill (type none))
  162. )
  163. (polyline
  164. (pts
  165. (xy 1.27 5.08)
  166. (xy 0.8636 5.08)
  167. )
  168. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  169. (fill (type none))
  170. )
  171. (rectangle (start 0.8636 -4.953) (end 0 -5.207)
  172. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  173. (fill (type outline))
  174. )
  175. (rectangle (start 0.8636 -2.413) (end 0 -2.667)
  176. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  177. (fill (type outline))
  178. )
  179. (rectangle (start 0.8636 0.127) (end 0 -0.127)
  180. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  181. (fill (type outline))
  182. )
  183. (rectangle (start 0.8636 2.667) (end 0 2.413)
  184. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  185. (fill (type outline))
  186. )
  187. (rectangle (start 0.8636 5.207) (end 0 4.953)
  188. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  189. (fill (type outline))
  190. )
  191. (pin passive line (at 5.08 5.08 180) (length 3.81)
  192. (name "Pin_1" (effects (font (size 1.27 1.27))))
  193. (number "1" (effects (font (size 1.27 1.27))))
  194. )
  195. (pin passive line (at 5.08 2.54 180) (length 3.81)
  196. (name "Pin_2" (effects (font (size 1.27 1.27))))
  197. (number "2" (effects (font (size 1.27 1.27))))
  198. )
  199. (pin passive line (at 5.08 0 180) (length 3.81)
  200. (name "Pin_3" (effects (font (size 1.27 1.27))))
  201. (number "3" (effects (font (size 1.27 1.27))))
  202. )
  203. (pin passive line (at 5.08 -2.54 180) (length 3.81)
  204. (name "Pin_4" (effects (font (size 1.27 1.27))))
  205. (number "4" (effects (font (size 1.27 1.27))))
  206. )
  207. (pin passive line (at 5.08 -5.08 180) (length 3.81)
  208. (name "Pin_5" (effects (font (size 1.27 1.27))))
  209. (number "5" (effects (font (size 1.27 1.27))))
  210. )
  211. )
  212. )
  213. (symbol "Connector_Generic:Conn_02x12_Counter_Clockwise" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  214. (property "Reference" "J" (id 0) (at 1.27 15.24 0)
  215. (effects (font (size 1.27 1.27)))
  216. )
  217. (property "Value" "Conn_02x12_Counter_Clockwise" (id 1) (at 1.27 -17.78 0)
  218. (effects (font (size 1.27 1.27)))
  219. )
  220. (property "Footprint" "" (id 2) (at 0 0 0)
  221. (effects (font (size 1.27 1.27)) hide)
  222. )
  223. (property "Datasheet" "~" (id 3) (at 0 0 0)
  224. (effects (font (size 1.27 1.27)) hide)
  225. )
  226. (property "ki_keywords" "connector" (id 4) (at 0 0 0)
  227. (effects (font (size 1.27 1.27)) hide)
  228. )
  229. (property "ki_description" "Generic connector, double row, 02x12, counter clockwise pin numbering scheme (similar to DIP packge numbering), script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
  230. (effects (font (size 1.27 1.27)) hide)
  231. )
  232. (property "ki_fp_filters" "Connector*:*_2x??_*" (id 6) (at 0 0 0)
  233. (effects (font (size 1.27 1.27)) hide)
  234. )
  235. (symbol "Conn_02x12_Counter_Clockwise_1_1"
  236. (rectangle (start -1.27 -15.113) (end 0 -15.367)
  237. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  238. (fill (type none))
  239. )
  240. (rectangle (start -1.27 -12.573) (end 0 -12.827)
  241. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  242. (fill (type none))
  243. )
  244. (rectangle (start -1.27 -10.033) (end 0 -10.287)
  245. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  246. (fill (type none))
  247. )
  248. (rectangle (start -1.27 -7.493) (end 0 -7.747)
  249. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  250. (fill (type none))
  251. )
  252. (rectangle (start -1.27 -4.953) (end 0 -5.207)
  253. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  254. (fill (type none))
  255. )
  256. (rectangle (start -1.27 -2.413) (end 0 -2.667)
  257. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  258. (fill (type none))
  259. )
  260. (rectangle (start -1.27 0.127) (end 0 -0.127)
  261. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  262. (fill (type none))
  263. )
  264. (rectangle (start -1.27 2.667) (end 0 2.413)
  265. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  266. (fill (type none))
  267. )
  268. (rectangle (start -1.27 5.207) (end 0 4.953)
  269. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  270. (fill (type none))
  271. )
  272. (rectangle (start -1.27 7.747) (end 0 7.493)
  273. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  274. (fill (type none))
  275. )
  276. (rectangle (start -1.27 10.287) (end 0 10.033)
  277. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  278. (fill (type none))
  279. )
  280. (rectangle (start -1.27 12.827) (end 0 12.573)
  281. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  282. (fill (type none))
  283. )
  284. (rectangle (start -1.27 13.97) (end 3.81 -16.51)
  285. (stroke (width 0.254) (type default) (color 0 0 0 0))
  286. (fill (type background))
  287. )
  288. (rectangle (start 3.81 -15.113) (end 2.54 -15.367)
  289. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  290. (fill (type none))
  291. )
  292. (rectangle (start 3.81 -12.573) (end 2.54 -12.827)
  293. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  294. (fill (type none))
  295. )
  296. (rectangle (start 3.81 -10.033) (end 2.54 -10.287)
  297. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  298. (fill (type none))
  299. )
  300. (rectangle (start 3.81 -7.493) (end 2.54 -7.747)
  301. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  302. (fill (type none))
  303. )
  304. (rectangle (start 3.81 -4.953) (end 2.54 -5.207)
  305. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  306. (fill (type none))
  307. )
  308. (rectangle (start 3.81 -2.413) (end 2.54 -2.667)
  309. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  310. (fill (type none))
  311. )
  312. (rectangle (start 3.81 0.127) (end 2.54 -0.127)
  313. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  314. (fill (type none))
  315. )
  316. (rectangle (start 3.81 2.667) (end 2.54 2.413)
  317. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  318. (fill (type none))
  319. )
  320. (rectangle (start 3.81 5.207) (end 2.54 4.953)
  321. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  322. (fill (type none))
  323. )
  324. (rectangle (start 3.81 7.747) (end 2.54 7.493)
  325. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  326. (fill (type none))
  327. )
  328. (rectangle (start 3.81 10.287) (end 2.54 10.033)
  329. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  330. (fill (type none))
  331. )
  332. (rectangle (start 3.81 12.827) (end 2.54 12.573)
  333. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  334. (fill (type none))
  335. )
  336. (pin passive line (at -5.08 12.7 0) (length 3.81)
  337. (name "Pin_1" (effects (font (size 1.27 1.27))))
  338. (number "1" (effects (font (size 1.27 1.27))))
  339. )
  340. (pin passive line (at -5.08 -10.16 0) (length 3.81)
  341. (name "Pin_10" (effects (font (size 1.27 1.27))))
  342. (number "10" (effects (font (size 1.27 1.27))))
  343. )
  344. (pin passive line (at -5.08 -12.7 0) (length 3.81)
  345. (name "Pin_11" (effects (font (size 1.27 1.27))))
  346. (number "11" (effects (font (size 1.27 1.27))))
  347. )
  348. (pin passive line (at -5.08 -15.24 0) (length 3.81)
  349. (name "Pin_12" (effects (font (size 1.27 1.27))))
  350. (number "12" (effects (font (size 1.27 1.27))))
  351. )
  352. (pin passive line (at 7.62 -15.24 180) (length 3.81)
  353. (name "Pin_13" (effects (font (size 1.27 1.27))))
  354. (number "13" (effects (font (size 1.27 1.27))))
  355. )
  356. (pin passive line (at 7.62 -12.7 180) (length 3.81)
  357. (name "Pin_14" (effects (font (size 1.27 1.27))))
  358. (number "14" (effects (font (size 1.27 1.27))))
  359. )
  360. (pin passive line (at 7.62 -10.16 180) (length 3.81)
  361. (name "Pin_15" (effects (font (size 1.27 1.27))))
  362. (number "15" (effects (font (size 1.27 1.27))))
  363. )
  364. (pin passive line (at 7.62 -7.62 180) (length 3.81)
  365. (name "Pin_16" (effects (font (size 1.27 1.27))))
  366. (number "16" (effects (font (size 1.27 1.27))))
  367. )
  368. (pin passive line (at 7.62 -5.08 180) (length 3.81)
  369. (name "Pin_17" (effects (font (size 1.27 1.27))))
  370. (number "17" (effects (font (size 1.27 1.27))))
  371. )
  372. (pin passive line (at 7.62 -2.54 180) (length 3.81)
  373. (name "Pin_18" (effects (font (size 1.27 1.27))))
  374. (number "18" (effects (font (size 1.27 1.27))))
  375. )
  376. (pin passive line (at 7.62 0 180) (length 3.81)
  377. (name "Pin_19" (effects (font (size 1.27 1.27))))
  378. (number "19" (effects (font (size 1.27 1.27))))
  379. )
  380. (pin passive line (at -5.08 10.16 0) (length 3.81)
  381. (name "Pin_2" (effects (font (size 1.27 1.27))))
  382. (number "2" (effects (font (size 1.27 1.27))))
  383. )
  384. (pin passive line (at 7.62 2.54 180) (length 3.81)
  385. (name "Pin_20" (effects (font (size 1.27 1.27))))
  386. (number "20" (effects (font (size 1.27 1.27))))
  387. )
  388. (pin passive line (at 7.62 5.08 180) (length 3.81)
  389. (name "Pin_21" (effects (font (size 1.27 1.27))))
  390. (number "21" (effects (font (size 1.27 1.27))))
  391. )
  392. (pin passive line (at 7.62 7.62 180) (length 3.81)
  393. (name "Pin_22" (effects (font (size 1.27 1.27))))
  394. (number "22" (effects (font (size 1.27 1.27))))
  395. )
  396. (pin passive line (at 7.62 10.16 180) (length 3.81)
  397. (name "Pin_23" (effects (font (size 1.27 1.27))))
  398. (number "23" (effects (font (size 1.27 1.27))))
  399. )
  400. (pin passive line (at 7.62 12.7 180) (length 3.81)
  401. (name "Pin_24" (effects (font (size 1.27 1.27))))
  402. (number "24" (effects (font (size 1.27 1.27))))
  403. )
  404. (pin passive line (at -5.08 7.62 0) (length 3.81)
  405. (name "Pin_3" (effects (font (size 1.27 1.27))))
  406. (number "3" (effects (font (size 1.27 1.27))))
  407. )
  408. (pin passive line (at -5.08 5.08 0) (length 3.81)
  409. (name "Pin_4" (effects (font (size 1.27 1.27))))
  410. (number "4" (effects (font (size 1.27 1.27))))
  411. )
  412. (pin passive line (at -5.08 2.54 0) (length 3.81)
  413. (name "Pin_5" (effects (font (size 1.27 1.27))))
  414. (number "5" (effects (font (size 1.27 1.27))))
  415. )
  416. (pin passive line (at -5.08 0 0) (length 3.81)
  417. (name "Pin_6" (effects (font (size 1.27 1.27))))
  418. (number "6" (effects (font (size 1.27 1.27))))
  419. )
  420. (pin passive line (at -5.08 -2.54 0) (length 3.81)
  421. (name "Pin_7" (effects (font (size 1.27 1.27))))
  422. (number "7" (effects (font (size 1.27 1.27))))
  423. )
  424. (pin passive line (at -5.08 -5.08 0) (length 3.81)
  425. (name "Pin_8" (effects (font (size 1.27 1.27))))
  426. (number "8" (effects (font (size 1.27 1.27))))
  427. )
  428. (pin passive line (at -5.08 -7.62 0) (length 3.81)
  429. (name "Pin_9" (effects (font (size 1.27 1.27))))
  430. (number "9" (effects (font (size 1.27 1.27))))
  431. )
  432. )
  433. )
  434. (symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
  435. (property "Reference" "C" (id 0) (at 0.254 1.778 0)
  436. (effects (font (size 1.27 1.27)) (justify left))
  437. )
  438. (property "Value" "C_Small" (id 1) (at 0.254 -2.032 0)
  439. (effects (font (size 1.27 1.27)) (justify left))
  440. )
  441. (property "Footprint" "" (id 2) (at 0 0 0)
  442. (effects (font (size 1.27 1.27)) hide)
  443. )
  444. (property "Datasheet" "~" (id 3) (at 0 0 0)
  445. (effects (font (size 1.27 1.27)) hide)
  446. )
  447. (property "ki_keywords" "capacitor cap" (id 4) (at 0 0 0)
  448. (effects (font (size 1.27 1.27)) hide)
  449. )
  450. (property "ki_description" "Unpolarized capacitor, small symbol" (id 5) (at 0 0 0)
  451. (effects (font (size 1.27 1.27)) hide)
  452. )
  453. (property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
  454. (effects (font (size 1.27 1.27)) hide)
  455. )
  456. (symbol "C_Small_0_1"
  457. (polyline
  458. (pts
  459. (xy -1.524 -0.508)
  460. (xy 1.524 -0.508)
  461. )
  462. (stroke (width 0.3302) (type default) (color 0 0 0 0))
  463. (fill (type none))
  464. )
  465. (polyline
  466. (pts
  467. (xy -1.524 0.508)
  468. (xy 1.524 0.508)
  469. )
  470. (stroke (width 0.3048) (type default) (color 0 0 0 0))
  471. (fill (type none))
  472. )
  473. )
  474. (symbol "C_Small_1_1"
  475. (pin passive line (at 0 2.54 270) (length 2.032)
  476. (name "~" (effects (font (size 1.27 1.27))))
  477. (number "1" (effects (font (size 1.27 1.27))))
  478. )
  479. (pin passive line (at 0 -2.54 90) (length 2.032)
  480. (name "~" (effects (font (size 1.27 1.27))))
  481. (number "2" (effects (font (size 1.27 1.27))))
  482. )
  483. )
  484. )
  485. (symbol "Device:D" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  486. (property "Reference" "D" (id 0) (at 0 2.54 0)
  487. (effects (font (size 1.27 1.27)))
  488. )
  489. (property "Value" "D" (id 1) (at 0 -2.54 0)
  490. (effects (font (size 1.27 1.27)))
  491. )
  492. (property "Footprint" "" (id 2) (at 0 0 0)
  493. (effects (font (size 1.27 1.27)) hide)
  494. )
  495. (property "Datasheet" "~" (id 3) (at 0 0 0)
  496. (effects (font (size 1.27 1.27)) hide)
  497. )
  498. (property "ki_keywords" "diode" (id 4) (at 0 0 0)
  499. (effects (font (size 1.27 1.27)) hide)
  500. )
  501. (property "ki_description" "Diode" (id 5) (at 0 0 0)
  502. (effects (font (size 1.27 1.27)) hide)
  503. )
  504. (property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (id 6) (at 0 0 0)
  505. (effects (font (size 1.27 1.27)) hide)
  506. )
  507. (symbol "D_0_1"
  508. (polyline
  509. (pts
  510. (xy -1.27 1.27)
  511. (xy -1.27 -1.27)
  512. )
  513. (stroke (width 0.254) (type default) (color 0 0 0 0))
  514. (fill (type none))
  515. )
  516. (polyline
  517. (pts
  518. (xy 1.27 0)
  519. (xy -1.27 0)
  520. )
  521. (stroke (width 0) (type default) (color 0 0 0 0))
  522. (fill (type none))
  523. )
  524. (polyline
  525. (pts
  526. (xy 1.27 1.27)
  527. (xy 1.27 -1.27)
  528. (xy -1.27 0)
  529. (xy 1.27 1.27)
  530. )
  531. (stroke (width 0.254) (type default) (color 0 0 0 0))
  532. (fill (type none))
  533. )
  534. )
  535. (symbol "D_1_1"
  536. (pin passive line (at -3.81 0 0) (length 2.54)
  537. (name "K" (effects (font (size 1.27 1.27))))
  538. (number "1" (effects (font (size 1.27 1.27))))
  539. )
  540. (pin passive line (at 3.81 0 180) (length 2.54)
  541. (name "A" (effects (font (size 1.27 1.27))))
  542. (number "2" (effects (font (size 1.27 1.27))))
  543. )
  544. )
  545. )
  546. (symbol "Device:R_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
  547. (property "Reference" "R" (id 0) (at 0.762 0.508 0)
  548. (effects (font (size 1.27 1.27)) (justify left))
  549. )
  550. (property "Value" "R_Small" (id 1) (at 0.762 -1.016 0)
  551. (effects (font (size 1.27 1.27)) (justify left))
  552. )
  553. (property "Footprint" "" (id 2) (at 0 0 0)
  554. (effects (font (size 1.27 1.27)) hide)
  555. )
  556. (property "Datasheet" "~" (id 3) (at 0 0 0)
  557. (effects (font (size 1.27 1.27)) hide)
  558. )
  559. (property "ki_keywords" "R resistor" (id 4) (at 0 0 0)
  560. (effects (font (size 1.27 1.27)) hide)
  561. )
  562. (property "ki_description" "Resistor, small symbol" (id 5) (at 0 0 0)
  563. (effects (font (size 1.27 1.27)) hide)
  564. )
  565. (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
  566. (effects (font (size 1.27 1.27)) hide)
  567. )
  568. (symbol "R_Small_0_1"
  569. (rectangle (start -0.762 1.778) (end 0.762 -1.778)
  570. (stroke (width 0.2032) (type default) (color 0 0 0 0))
  571. (fill (type none))
  572. )
  573. )
  574. (symbol "R_Small_1_1"
  575. (pin passive line (at 0 2.54 270) (length 0.762)
  576. (name "~" (effects (font (size 1.27 1.27))))
  577. (number "1" (effects (font (size 1.27 1.27))))
  578. )
  579. (pin passive line (at 0 -2.54 90) (length 0.762)
  580. (name "~" (effects (font (size 1.27 1.27))))
  581. (number "2" (effects (font (size 1.27 1.27))))
  582. )
  583. )
  584. )
  585. (symbol "Switch:SW_DIP_x12" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
  586. (property "Reference" "SW" (id 0) (at 0 19.05 0)
  587. (effects (font (size 1.27 1.27)))
  588. )
  589. (property "Value" "SW_DIP_x12" (id 1) (at 0 -16.51 0)
  590. (effects (font (size 1.27 1.27)))
  591. )
  592. (property "Footprint" "" (id 2) (at 0 0 0)
  593. (effects (font (size 1.27 1.27)) hide)
  594. )
  595. (property "Datasheet" "~" (id 3) (at 0 0 0)
  596. (effects (font (size 1.27 1.27)) hide)
  597. )
  598. (property "ki_keywords" "dip switch" (id 4) (at 0 0 0)
  599. (effects (font (size 1.27 1.27)) hide)
  600. )
  601. (property "ki_description" "12x DIP Switch, Single Pole Single Throw (SPST) switch, small symbol" (id 5) (at 0 0 0)
  602. (effects (font (size 1.27 1.27)) hide)
  603. )
  604. (property "ki_fp_filters" "SW?DIP?x12*" (id 6) (at 0 0 0)
  605. (effects (font (size 1.27 1.27)) hide)
  606. )
  607. (symbol "SW_DIP_x12_0_0"
  608. (circle (center -2.032 -12.7) (radius 0.508)
  609. (stroke (width 0) (type default) (color 0 0 0 0))
  610. (fill (type none))
  611. )
  612. (circle (center -2.032 -10.16) (radius 0.508)
  613. (stroke (width 0) (type default) (color 0 0 0 0))
  614. (fill (type none))
  615. )
  616. (circle (center -2.032 -7.62) (radius 0.508)
  617. (stroke (width 0) (type default) (color 0 0 0 0))
  618. (fill (type none))
  619. )
  620. (circle (center -2.032 -5.08) (radius 0.508)
  621. (stroke (width 0) (type default) (color 0 0 0 0))
  622. (fill (type none))
  623. )
  624. (circle (center -2.032 -2.54) (radius 0.508)
  625. (stroke (width 0) (type default) (color 0 0 0 0))
  626. (fill (type none))
  627. )
  628. (circle (center -2.032 0) (radius 0.508)
  629. (stroke (width 0) (type default) (color 0 0 0 0))
  630. (fill (type none))
  631. )
  632. (circle (center -2.032 2.54) (radius 0.508)
  633. (stroke (width 0) (type default) (color 0 0 0 0))
  634. (fill (type none))
  635. )
  636. (circle (center -2.032 5.08) (radius 0.508)
  637. (stroke (width 0) (type default) (color 0 0 0 0))
  638. (fill (type none))
  639. )
  640. (circle (center -2.032 7.62) (radius 0.508)
  641. (stroke (width 0) (type default) (color 0 0 0 0))
  642. (fill (type none))
  643. )
  644. (circle (center -2.032 10.16) (radius 0.508)
  645. (stroke (width 0) (type default) (color 0 0 0 0))
  646. (fill (type none))
  647. )
  648. (circle (center -2.032 12.7) (radius 0.508)
  649. (stroke (width 0) (type default) (color 0 0 0 0))
  650. (fill (type none))
  651. )
  652. (circle (center -2.032 15.24) (radius 0.508)
  653. (stroke (width 0) (type default) (color 0 0 0 0))
  654. (fill (type none))
  655. )
  656. (polyline
  657. (pts
  658. (xy -1.524 -12.5476)
  659. (xy 2.3622 -11.5062)
  660. )
  661. (stroke (width 0) (type default) (color 0 0 0 0))
  662. (fill (type none))
  663. )
  664. (polyline
  665. (pts
  666. (xy -1.524 -10.0076)
  667. (xy 2.3622 -8.9662)
  668. )
  669. (stroke (width 0) (type default) (color 0 0 0 0))
  670. (fill (type none))
  671. )
  672. (polyline
  673. (pts
  674. (xy -1.524 -7.4676)
  675. (xy 2.3622 -6.4262)
  676. )
  677. (stroke (width 0) (type default) (color 0 0 0 0))
  678. (fill (type none))
  679. )
  680. (polyline
  681. (pts
  682. (xy -1.524 -4.9276)
  683. (xy 2.3622 -3.8862)
  684. )
  685. (stroke (width 0) (type default) (color 0 0 0 0))
  686. (fill (type none))
  687. )
  688. (polyline
  689. (pts
  690. (xy -1.524 -2.3876)
  691. (xy 2.3622 -1.3462)
  692. )
  693. (stroke (width 0) (type default) (color 0 0 0 0))
  694. (fill (type none))
  695. )
  696. (polyline
  697. (pts
  698. (xy -1.524 0.127)
  699. (xy 2.3622 1.1684)
  700. )
  701. (stroke (width 0) (type default) (color 0 0 0 0))
  702. (fill (type none))
  703. )
  704. (polyline
  705. (pts
  706. (xy -1.524 2.667)
  707. (xy 2.3622 3.7084)
  708. )
  709. (stroke (width 0) (type default) (color 0 0 0 0))
  710. (fill (type none))
  711. )
  712. (polyline
  713. (pts
  714. (xy -1.524 5.207)
  715. (xy 2.3622 6.2484)
  716. )
  717. (stroke (width 0) (type default) (color 0 0 0 0))
  718. (fill (type none))
  719. )
  720. (polyline
  721. (pts
  722. (xy -1.524 7.747)
  723. (xy 2.3622 8.7884)
  724. )
  725. (stroke (width 0) (type default) (color 0 0 0 0))
  726. (fill (type none))
  727. )
  728. (polyline
  729. (pts
  730. (xy -1.524 10.287)
  731. (xy 2.3622 11.3284)
  732. )
  733. (stroke (width 0) (type default) (color 0 0 0 0))
  734. (fill (type none))
  735. )
  736. (polyline
  737. (pts
  738. (xy -1.524 12.827)
  739. (xy 2.3622 13.8684)
  740. )
  741. (stroke (width 0) (type default) (color 0 0 0 0))
  742. (fill (type none))
  743. )
  744. (polyline
  745. (pts
  746. (xy -1.524 15.367)
  747. (xy 2.3622 16.4084)
  748. )
  749. (stroke (width 0) (type default) (color 0 0 0 0))
  750. (fill (type none))
  751. )
  752. (circle (center 2.032 -12.7) (radius 0.508)
  753. (stroke (width 0) (type default) (color 0 0 0 0))
  754. (fill (type none))
  755. )
  756. (circle (center 2.032 -10.16) (radius 0.508)
  757. (stroke (width 0) (type default) (color 0 0 0 0))
  758. (fill (type none))
  759. )
  760. (circle (center 2.032 -7.62) (radius 0.508)
  761. (stroke (width 0) (type default) (color 0 0 0 0))
  762. (fill (type none))
  763. )
  764. (circle (center 2.032 -5.08) (radius 0.508)
  765. (stroke (width 0) (type default) (color 0 0 0 0))
  766. (fill (type none))
  767. )
  768. (circle (center 2.032 -2.54) (radius 0.508)
  769. (stroke (width 0) (type default) (color 0 0 0 0))
  770. (fill (type none))
  771. )
  772. (circle (center 2.032 0) (radius 0.508)
  773. (stroke (width 0) (type default) (color 0 0 0 0))
  774. (fill (type none))
  775. )
  776. (circle (center 2.032 2.54) (radius 0.508)
  777. (stroke (width 0) (type default) (color 0 0 0 0))
  778. (fill (type none))
  779. )
  780. (circle (center 2.032 5.08) (radius 0.508)
  781. (stroke (width 0) (type default) (color 0 0 0 0))
  782. (fill (type none))
  783. )
  784. (circle (center 2.032 7.62) (radius 0.508)
  785. (stroke (width 0) (type default) (color 0 0 0 0))
  786. (fill (type none))
  787. )
  788. (circle (center 2.032 10.16) (radius 0.508)
  789. (stroke (width 0) (type default) (color 0 0 0 0))
  790. (fill (type none))
  791. )
  792. (circle (center 2.032 12.7) (radius 0.508)
  793. (stroke (width 0) (type default) (color 0 0 0 0))
  794. (fill (type none))
  795. )
  796. (circle (center 2.032 15.24) (radius 0.508)
  797. (stroke (width 0) (type default) (color 0 0 0 0))
  798. (fill (type none))
  799. )
  800. )
  801. (symbol "SW_DIP_x12_0_1"
  802. (rectangle (start -3.81 17.78) (end 3.81 -15.24)
  803. (stroke (width 0.254) (type default) (color 0 0 0 0))
  804. (fill (type background))
  805. )
  806. )
  807. (symbol "SW_DIP_x12_1_1"
  808. (pin passive line (at -7.62 15.24 0) (length 5.08)
  809. (name "~" (effects (font (size 1.27 1.27))))
  810. (number "1" (effects (font (size 1.27 1.27))))
  811. )
  812. (pin passive line (at -7.62 -7.62 0) (length 5.08)
  813. (name "~" (effects (font (size 1.27 1.27))))
  814. (number "10" (effects (font (size 1.27 1.27))))
  815. )
  816. (pin passive line (at -7.62 -10.16 0) (length 5.08)
  817. (name "~" (effects (font (size 1.27 1.27))))
  818. (number "11" (effects (font (size 1.27 1.27))))
  819. )
  820. (pin passive line (at -7.62 -12.7 0) (length 5.08)
  821. (name "~" (effects (font (size 1.27 1.27))))
  822. (number "12" (effects (font (size 1.27 1.27))))
  823. )
  824. (pin passive line (at 7.62 -12.7 180) (length 5.08)
  825. (name "~" (effects (font (size 1.27 1.27))))
  826. (number "13" (effects (font (size 1.27 1.27))))
  827. )
  828. (pin passive line (at 7.62 -10.16 180) (length 5.08)
  829. (name "~" (effects (font (size 1.27 1.27))))
  830. (number "14" (effects (font (size 1.27 1.27))))
  831. )
  832. (pin passive line (at 7.62 -7.62 180) (length 5.08)
  833. (name "~" (effects (font (size 1.27 1.27))))
  834. (number "15" (effects (font (size 1.27 1.27))))
  835. )
  836. (pin passive line (at 7.62 -5.08 180) (length 5.08)
  837. (name "~" (effects (font (size 1.27 1.27))))
  838. (number "16" (effects (font (size 1.27 1.27))))
  839. )
  840. (pin passive line (at 7.62 -2.54 180) (length 5.08)
  841. (name "~" (effects (font (size 1.27 1.27))))
  842. (number "17" (effects (font (size 1.27 1.27))))
  843. )
  844. (pin passive line (at 7.62 0 180) (length 5.08)
  845. (name "~" (effects (font (size 1.27 1.27))))
  846. (number "18" (effects (font (size 1.27 1.27))))
  847. )
  848. (pin passive line (at 7.62 2.54 180) (length 5.08)
  849. (name "~" (effects (font (size 1.27 1.27))))
  850. (number "19" (effects (font (size 1.27 1.27))))
  851. )
  852. (pin passive line (at -7.62 12.7 0) (length 5.08)
  853. (name "~" (effects (font (size 1.27 1.27))))
  854. (number "2" (effects (font (size 1.27 1.27))))
  855. )
  856. (pin passive line (at 7.62 5.08 180) (length 5.08)
  857. (name "~" (effects (font (size 1.27 1.27))))
  858. (number "20" (effects (font (size 1.27 1.27))))
  859. )
  860. (pin passive line (at 7.62 7.62 180) (length 5.08)
  861. (name "~" (effects (font (size 1.27 1.27))))
  862. (number "21" (effects (font (size 1.27 1.27))))
  863. )
  864. (pin passive line (at 7.62 10.16 180) (length 5.08)
  865. (name "~" (effects (font (size 1.27 1.27))))
  866. (number "22" (effects (font (size 1.27 1.27))))
  867. )
  868. (pin passive line (at 7.62 12.7 180) (length 5.08)
  869. (name "~" (effects (font (size 1.27 1.27))))
  870. (number "23" (effects (font (size 1.27 1.27))))
  871. )
  872. (pin passive line (at 7.62 15.24 180) (length 5.08)
  873. (name "~" (effects (font (size 1.27 1.27))))
  874. (number "24" (effects (font (size 1.27 1.27))))
  875. )
  876. (pin passive line (at -7.62 10.16 0) (length 5.08)
  877. (name "~" (effects (font (size 1.27 1.27))))
  878. (number "3" (effects (font (size 1.27 1.27))))
  879. )
  880. (pin passive line (at -7.62 7.62 0) (length 5.08)
  881. (name "~" (effects (font (size 1.27 1.27))))
  882. (number "4" (effects (font (size 1.27 1.27))))
  883. )
  884. (pin passive line (at -7.62 5.08 0) (length 5.08)
  885. (name "~" (effects (font (size 1.27 1.27))))
  886. (number "5" (effects (font (size 1.27 1.27))))
  887. )
  888. (pin passive line (at -7.62 2.54 0) (length 5.08)
  889. (name "~" (effects (font (size 1.27 1.27))))
  890. (number "6" (effects (font (size 1.27 1.27))))
  891. )
  892. (pin passive line (at -7.62 0 0) (length 5.08)
  893. (name "~" (effects (font (size 1.27 1.27))))
  894. (number "7" (effects (font (size 1.27 1.27))))
  895. )
  896. (pin passive line (at -7.62 -2.54 0) (length 5.08)
  897. (name "~" (effects (font (size 1.27 1.27))))
  898. (number "8" (effects (font (size 1.27 1.27))))
  899. )
  900. (pin passive line (at -7.62 -5.08 0) (length 5.08)
  901. (name "~" (effects (font (size 1.27 1.27))))
  902. (number "9" (effects (font (size 1.27 1.27))))
  903. )
  904. )
  905. )
  906. (symbol "eprom_replacer:SST39SF020_tsop" (in_bom yes) (on_board yes)
  907. (property "Reference" "U" (id 0) (at 2.54 33.02 0)
  908. (effects (font (size 1.27 1.27)))
  909. )
  910. (property "Value" "SST39SF020_tsop" (id 1) (at 0 -30.48 0)
  911. (effects (font (size 1.27 1.27)))
  912. )
  913. (property "Footprint" "" (id 2) (at 0 7.62 0)
  914. (effects (font (size 1.27 1.27)) hide)
  915. )
  916. (property "Datasheet" "http://ww1.microchip.com/downloads/en/DeviceDoc/25022B.pdf" (id 3) (at 0 7.62 0)
  917. (effects (font (size 1.27 1.27)) hide)
  918. )
  919. (property "ki_keywords" "256k flash rom" (id 4) (at 0 0 0)
  920. (effects (font (size 1.27 1.27)) hide)
  921. )
  922. (property "ki_description" "Silicon Storage Technology (SSF) 256k x 8 Flash ROM" (id 5) (at 0 0 0)
  923. (effects (font (size 1.27 1.27)) hide)
  924. )
  925. (symbol "SST39SF020_tsop_0_0"
  926. (pin power_in line (at 0 -30.48 90) (length 1.27) hide
  927. (name "GND" (effects (font (size 1.27 1.27))))
  928. (number "24" (effects (font (size 1.27 1.27))))
  929. )
  930. (pin power_in line (at 0 33.02 270) (length 1.27) hide
  931. (name "VCC" (effects (font (size 1.27 1.27))))
  932. (number "8" (effects (font (size 1.27 1.27))))
  933. )
  934. )
  935. (symbol "SST39SF020_tsop_0_1"
  936. (rectangle (start -10.16 31.75) (end 10.16 -29.21)
  937. (stroke (width 0.254) (type default) (color 0 0 0 0))
  938. (fill (type background))
  939. )
  940. )
  941. (symbol "SST39SF020_tsop_1_1"
  942. (pin input line (at -15.24 2.54 0) (length 5.08)
  943. (name "A11" (effects (font (size 1.27 1.27))))
  944. (number "1" (effects (font (size 1.27 1.27))))
  945. )
  946. (pin input line (at -15.24 -10.16 0) (length 5.08)
  947. (name "A16" (effects (font (size 1.27 1.27))))
  948. (number "10" (effects (font (size 1.27 1.27))))
  949. )
  950. (pin input line (at -15.24 -7.62 0) (length 5.08)
  951. (name "A15" (effects (font (size 1.27 1.27))))
  952. (number "11" (effects (font (size 1.27 1.27))))
  953. )
  954. (pin input line (at -15.24 0 0) (length 5.08)
  955. (name "A12" (effects (font (size 1.27 1.27))))
  956. (number "12" (effects (font (size 1.27 1.27))))
  957. )
  958. (pin input line (at -15.24 12.7 0) (length 5.08)
  959. (name "A7" (effects (font (size 1.27 1.27))))
  960. (number "13" (effects (font (size 1.27 1.27))))
  961. )
  962. (pin input line (at -15.24 15.24 0) (length 5.08)
  963. (name "A6" (effects (font (size 1.27 1.27))))
  964. (number "14" (effects (font (size 1.27 1.27))))
  965. )
  966. (pin input line (at -15.24 17.78 0) (length 5.08)
  967. (name "A5" (effects (font (size 1.27 1.27))))
  968. (number "15" (effects (font (size 1.27 1.27))))
  969. )
  970. (pin input line (at -15.24 20.32 0) (length 5.08)
  971. (name "A4" (effects (font (size 1.27 1.27))))
  972. (number "16" (effects (font (size 1.27 1.27))))
  973. )
  974. (pin input line (at -15.24 22.86 0) (length 5.08)
  975. (name "A3" (effects (font (size 1.27 1.27))))
  976. (number "17" (effects (font (size 1.27 1.27))))
  977. )
  978. (pin input line (at -15.24 25.4 0) (length 5.08)
  979. (name "A2" (effects (font (size 1.27 1.27))))
  980. (number "18" (effects (font (size 1.27 1.27))))
  981. )
  982. (pin input line (at -15.24 27.94 0) (length 5.08)
  983. (name "A1" (effects (font (size 1.27 1.27))))
  984. (number "19" (effects (font (size 1.27 1.27))))
  985. )
  986. (pin input line (at -15.24 7.62 0) (length 5.08)
  987. (name "A9" (effects (font (size 1.27 1.27))))
  988. (number "2" (effects (font (size 1.27 1.27))))
  989. )
  990. (pin input line (at -15.24 30.48 0) (length 5.08)
  991. (name "A0" (effects (font (size 1.27 1.27))))
  992. (number "20" (effects (font (size 1.27 1.27))))
  993. )
  994. (pin tri_state line (at 15.24 30.48 180) (length 5.08)
  995. (name "D0" (effects (font (size 1.27 1.27))))
  996. (number "21" (effects (font (size 1.27 1.27))))
  997. )
  998. (pin tri_state line (at 15.24 27.94 180) (length 5.08)
  999. (name "D1" (effects (font (size 1.27 1.27))))
  1000. (number "22" (effects (font (size 1.27 1.27))))
  1001. )
  1002. (pin tri_state line (at 15.24 25.4 180) (length 5.08)
  1003. (name "D2" (effects (font (size 1.27 1.27))))
  1004. (number "23" (effects (font (size 1.27 1.27))))
  1005. )
  1006. (pin tri_state line (at 15.24 22.86 180) (length 5.08)
  1007. (name "D3" (effects (font (size 1.27 1.27))))
  1008. (number "25" (effects (font (size 1.27 1.27))))
  1009. )
  1010. (pin tri_state line (at 15.24 20.32 180) (length 5.08)
  1011. (name "D4" (effects (font (size 1.27 1.27))))
  1012. (number "26" (effects (font (size 1.27 1.27))))
  1013. )
  1014. (pin tri_state line (at 15.24 17.78 180) (length 5.08)
  1015. (name "D5" (effects (font (size 1.27 1.27))))
  1016. (number "27" (effects (font (size 1.27 1.27))))
  1017. )
  1018. (pin tri_state line (at 15.24 15.24 180) (length 5.08)
  1019. (name "D6" (effects (font (size 1.27 1.27))))
  1020. (number "28" (effects (font (size 1.27 1.27))))
  1021. )
  1022. (pin tri_state line (at 15.24 12.7 180) (length 5.08)
  1023. (name "D7" (effects (font (size 1.27 1.27))))
  1024. (number "29" (effects (font (size 1.27 1.27))))
  1025. )
  1026. (pin input line (at -15.24 10.16 0) (length 5.08)
  1027. (name "A8" (effects (font (size 1.27 1.27))))
  1028. (number "3" (effects (font (size 1.27 1.27))))
  1029. )
  1030. (pin input input_low (at -15.24 -25.4 0) (length 5.08)
  1031. (name "CE" (effects (font (size 1.27 1.27))))
  1032. (number "30" (effects (font (size 1.27 1.27))))
  1033. )
  1034. (pin input line (at -15.24 5.08 0) (length 5.08)
  1035. (name "A10" (effects (font (size 1.27 1.27))))
  1036. (number "31" (effects (font (size 1.27 1.27))))
  1037. )
  1038. (pin input input_low (at -15.24 -27.94 0) (length 5.08)
  1039. (name "~{OE}" (effects (font (size 1.27 1.27))))
  1040. (number "32" (effects (font (size 1.27 1.27))))
  1041. )
  1042. (pin input line (at -15.24 -2.54 0) (length 5.08)
  1043. (name "A13" (effects (font (size 1.27 1.27))))
  1044. (number "4" (effects (font (size 1.27 1.27))))
  1045. )
  1046. (pin input line (at -15.24 -5.08 0) (length 5.08)
  1047. (name "A14" (effects (font (size 1.27 1.27))))
  1048. (number "5" (effects (font (size 1.27 1.27))))
  1049. )
  1050. (pin input line (at -15.24 -12.7 0) (length 5.08)
  1051. (name "A17" (effects (font (size 1.27 1.27))))
  1052. (number "6" (effects (font (size 1.27 1.27))))
  1053. )
  1054. (pin input input_low (at -15.24 -20.32 0) (length 5.08)
  1055. (name "PGM" (effects (font (size 1.27 1.27))))
  1056. (number "7" (effects (font (size 1.27 1.27))))
  1057. )
  1058. (pin input line (at -15.24 -15.24 0) (length 5.08)
  1059. (name "NC" (effects (font (size 1.27 1.27))))
  1060. (number "9" (effects (font (size 1.27 1.27))))
  1061. )
  1062. )
  1063. )
  1064. (symbol "power:+5V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1065. (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
  1066. (effects (font (size 1.27 1.27)) hide)
  1067. )
  1068. (property "Value" "+5V" (id 1) (at 0 3.556 0)
  1069. (effects (font (size 1.27 1.27)))
  1070. )
  1071. (property "Footprint" "" (id 2) (at 0 0 0)
  1072. (effects (font (size 1.27 1.27)) hide)
  1073. )
  1074. (property "Datasheet" "" (id 3) (at 0 0 0)
  1075. (effects (font (size 1.27 1.27)) hide)
  1076. )
  1077. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  1078. (effects (font (size 1.27 1.27)) hide)
  1079. )
  1080. (property "ki_description" "Power symbol creates a global label with name \"+5V\"" (id 5) (at 0 0 0)
  1081. (effects (font (size 1.27 1.27)) hide)
  1082. )
  1083. (symbol "+5V_0_1"
  1084. (polyline
  1085. (pts
  1086. (xy -0.762 1.27)
  1087. (xy 0 2.54)
  1088. )
  1089. (stroke (width 0) (type default) (color 0 0 0 0))
  1090. (fill (type none))
  1091. )
  1092. (polyline
  1093. (pts
  1094. (xy 0 0)
  1095. (xy 0 2.54)
  1096. )
  1097. (stroke (width 0) (type default) (color 0 0 0 0))
  1098. (fill (type none))
  1099. )
  1100. (polyline
  1101. (pts
  1102. (xy 0 2.54)
  1103. (xy 0.762 1.27)
  1104. )
  1105. (stroke (width 0) (type default) (color 0 0 0 0))
  1106. (fill (type none))
  1107. )
  1108. )
  1109. (symbol "+5V_1_1"
  1110. (pin power_in line (at 0 0 90) (length 0) hide
  1111. (name "+5V" (effects (font (size 1.27 1.27))))
  1112. (number "1" (effects (font (size 1.27 1.27))))
  1113. )
  1114. )
  1115. )
  1116. (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1117. (property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
  1118. (effects (font (size 1.27 1.27)) hide)
  1119. )
  1120. (property "Value" "GND" (id 1) (at 0 -3.81 0)
  1121. (effects (font (size 1.27 1.27)))
  1122. )
  1123. (property "Footprint" "" (id 2) (at 0 0 0)
  1124. (effects (font (size 1.27 1.27)) hide)
  1125. )
  1126. (property "Datasheet" "" (id 3) (at 0 0 0)
  1127. (effects (font (size 1.27 1.27)) hide)
  1128. )
  1129. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  1130. (effects (font (size 1.27 1.27)) hide)
  1131. )
  1132. (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
  1133. (effects (font (size 1.27 1.27)) hide)
  1134. )
  1135. (symbol "GND_0_1"
  1136. (polyline
  1137. (pts
  1138. (xy 0 0)
  1139. (xy 0 -1.27)
  1140. (xy 1.27 -1.27)
  1141. (xy 0 -2.54)
  1142. (xy -1.27 -1.27)
  1143. (xy 0 -1.27)
  1144. )
  1145. (stroke (width 0) (type default) (color 0 0 0 0))
  1146. (fill (type none))
  1147. )
  1148. )
  1149. (symbol "GND_1_1"
  1150. (pin power_in line (at 0 0 270) (length 0) hide
  1151. (name "GND" (effects (font (size 1.27 1.27))))
  1152. (number "1" (effects (font (size 1.27 1.27))))
  1153. )
  1154. )
  1155. )
  1156. (symbol "power:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
  1157. (property "Reference" "#FLG" (id 0) (at 0 1.905 0)
  1158. (effects (font (size 1.27 1.27)) hide)
  1159. )
  1160. (property "Value" "PWR_FLAG" (id 1) (at 0 3.81 0)
  1161. (effects (font (size 1.27 1.27)))
  1162. )
  1163. (property "Footprint" "" (id 2) (at 0 0 0)
  1164. (effects (font (size 1.27 1.27)) hide)
  1165. )
  1166. (property "Datasheet" "~" (id 3) (at 0 0 0)
  1167. (effects (font (size 1.27 1.27)) hide)
  1168. )
  1169. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  1170. (effects (font (size 1.27 1.27)) hide)
  1171. )
  1172. (property "ki_description" "Special symbol for telling ERC where power comes from" (id 5) (at 0 0 0)
  1173. (effects (font (size 1.27 1.27)) hide)
  1174. )
  1175. (symbol "PWR_FLAG_0_0"
  1176. (pin power_out line (at 0 0 90) (length 0)
  1177. (name "pwr" (effects (font (size 1.27 1.27))))
  1178. (number "1" (effects (font (size 1.27 1.27))))
  1179. )
  1180. )
  1181. (symbol "PWR_FLAG_0_1"
  1182. (polyline
  1183. (pts
  1184. (xy 0 0)
  1185. (xy 0 1.27)
  1186. (xy -1.016 1.905)
  1187. (xy 0 2.54)
  1188. (xy 1.016 1.905)
  1189. (xy 0 1.27)
  1190. )
  1191. (stroke (width 0) (type default) (color 0 0 0 0))
  1192. (fill (type none))
  1193. )
  1194. )
  1195. )
  1196. )
  1197. (junction (at 185.42 55.245) (diameter 0) (color 0 0 0 0)
  1198. (uuid 000030ab-6e94-41ed-a08d-9318ac01ffff)
  1199. )
  1200. (junction (at 222.885 60.325) (diameter 0) (color 0 0 0 0)
  1201. (uuid 034adcce-ce4d-414e-b050-82ca1780079f)
  1202. )
  1203. (junction (at 58.42 56.515) (diameter 0) (color 0 0 0 0)
  1204. (uuid 15988760-d84e-4387-912a-cfc6ca731796)
  1205. )
  1206. (junction (at 213.36 57.785) (diameter 0) (color 0 0 0 0)
  1207. (uuid 168a1b3e-c956-4d83-a8fb-c5894e9dc679)
  1208. )
  1209. (junction (at 31.75 102.235) (diameter 0) (color 0 0 0 0)
  1210. (uuid 16be1e61-c461-41cf-a74a-77bf0aac3b8b)
  1211. )
  1212. (junction (at 209.55 50.165) (diameter 0) (color 0 0 0 0)
  1213. (uuid 32012870-c443-4d55-bb51-be167be1190f)
  1214. )
  1215. (junction (at 185.42 62.865) (diameter 0) (color 0 0 0 0)
  1216. (uuid 394259f0-b0a1-4d23-895c-0c6f65361c71)
  1217. )
  1218. (junction (at 187.325 60.325) (diameter 0) (color 0 0 0 0)
  1219. (uuid 3f6b1a27-2cbc-4c02-8d07-e9c9c66b9e99)
  1220. )
  1221. (junction (at 185.42 52.705) (diameter 0) (color 0 0 0 0)
  1222. (uuid 42b5c83a-429b-4e63-9b34-2a17ab6e067c)
  1223. )
  1224. (junction (at 215.265 33.02) (diameter 0) (color 0 0 0 0)
  1225. (uuid 45730172-99a7-4119-b94f-27b59373f39a)
  1226. )
  1227. (junction (at 211.455 55.245) (diameter 0) (color 0 0 0 0)
  1228. (uuid 49bc47de-7827-466e-88df-beb3b4aaa048)
  1229. )
  1230. (junction (at 224.79 62.865) (diameter 0) (color 0 0 0 0)
  1231. (uuid 4e96b8ac-cab6-4449-9594-90eda4d8c082)
  1232. )
  1233. (junction (at 185.42 47.625) (diameter 0) (color 0 0 0 0)
  1234. (uuid 53e722c7-864a-46b8-b921-1ba9f3b73040)
  1235. )
  1236. (junction (at 220.98 33.02) (diameter 0) (color 0 0 0 0)
  1237. (uuid 5dc2e6fc-34cc-4237-804f-d3e7fb3b6ad7)
  1238. )
  1239. (junction (at 107.315 20.32) (diameter 0) (color 0 0 0 0)
  1240. (uuid 6248f903-2911-4678-b7ab-421d846acd60)
  1241. )
  1242. (junction (at 213.36 34.29) (diameter 0) (color 0 0 0 0)
  1243. (uuid 62e720e3-c591-470a-8eda-29822d69350b)
  1244. )
  1245. (junction (at 211.455 34.29) (diameter 0) (color 0 0 0 0)
  1246. (uuid 6829b48c-cf6f-4c06-82a2-08da3b0e720f)
  1247. )
  1248. (junction (at 124.46 72.39) (diameter 0) (color 0 0 0 0)
  1249. (uuid 71101670-2afd-4fcf-813c-ee2491fea0b1)
  1250. )
  1251. (junction (at 31.75 112.395) (diameter 0) (color 0 0 0 0)
  1252. (uuid 82bc323a-8ed6-4141-bce4-0d90da26a01a)
  1253. )
  1254. (junction (at 220.98 52.705) (diameter 0) (color 0 0 0 0)
  1255. (uuid 898a04ab-7c00-4ba7-8e44-c5437579e5c0)
  1256. )
  1257. (junction (at 208.915 67.945) (diameter 0) (color 0 0 0 0)
  1258. (uuid 8db12c03-57f2-44e7-8c56-ef28037e4746)
  1259. )
  1260. (junction (at 215.265 67.945) (diameter 0) (color 0 0 0 0)
  1261. (uuid 9152d04e-6358-4426-a3d7-fd6d0635e0b1)
  1262. )
  1263. (junction (at 228.6 35.56) (diameter 0) (color 0 0 0 0)
  1264. (uuid af409484-48a0-40af-8946-0d32daea030d)
  1265. )
  1266. (junction (at 219.075 33.02) (diameter 0) (color 0 0 0 0)
  1267. (uuid c300303b-814c-4767-91f9-56592c2aae83)
  1268. )
  1269. (junction (at 187.325 70.485) (diameter 0) (color 0 0 0 0)
  1270. (uuid df9b8310-9868-4045-a9c2-87065d1cdb9b)
  1271. )
  1272. (junction (at 219.075 47.625) (diameter 0) (color 0 0 0 0)
  1273. (uuid f3b584a4-b8cb-4383-86ef-597cde458930)
  1274. )
  1275. (junction (at 109.22 20.32) (diameter 0) (color 0 0 0 0)
  1276. (uuid f4b7b6d6-6fcf-4cb8-8ca7-edc0f4600f5a)
  1277. )
  1278. (no_connect (at 267.335 55.372) (uuid 2759da36-997f-45cd-833c-0ce0b5e3225c))
  1279. (no_connect (at 267.335 62.992) (uuid 5ec1b9c3-6f41-4c59-ae2d-e924efa39e1d))
  1280. (no_connect (at 267.335 47.752) (uuid 8a1f2e83-28b5-4964-9181-5c890de08104))
  1281. (no_connect (at 267.335 57.912) (uuid 9210fb33-ba02-4c33-a444-0f7fea027d94))
  1282. (no_connect (at 128.905 77.47) (uuid 955b99fe-0abd-4ca5-a9f7-e5b3f4745d21))
  1283. (no_connect (at 267.335 50.292) (uuid 98ecaa8a-7b42-413c-a8af-c60432444289))
  1284. (no_connect (at 267.335 65.532) (uuid b2cce2be-7890-4bb7-b000-5c31267d44b8))
  1285. (no_connect (at 267.335 52.832) (uuid e50ff1c5-8888-4632-8ed1-650d31f91e10))
  1286. (wire (pts (xy 124.46 57.15) (xy 128.905 57.15))
  1287. (stroke (width 0) (type default) (color 0 0 0 0))
  1288. (uuid 002038f3-523e-4cd6-a9ad-736909e7843d)
  1289. )
  1290. (wire (pts (xy 58.42 56.515) (xy 58.42 51.435))
  1291. (stroke (width 0) (type default) (color 0 0 0 0))
  1292. (uuid 011c691b-7b44-447a-b1d9-c4baf7011ec7)
  1293. )
  1294. (wire (pts (xy 107.315 20.32) (xy 107.315 22.225))
  1295. (stroke (width 0) (type default) (color 0 0 0 0))
  1296. (uuid 02acb963-1429-4718-a61a-2c04741d8e81)
  1297. )
  1298. (wire (pts (xy 213.36 34.29) (xy 228.6 34.29))
  1299. (stroke (width 0) (type default) (color 0 0 0 0))
  1300. (uuid 043ed483-f567-4d97-98c7-fb159b954a8b)
  1301. )
  1302. (wire (pts (xy 187.325 70.485) (xy 191.135 70.485))
  1303. (stroke (width 0) (type default) (color 0 0 0 0))
  1304. (uuid 05981ec7-73ae-43af-86e6-df87cf3a90e9)
  1305. )
  1306. (wire (pts (xy 159.385 39.37) (xy 163.83 39.37))
  1307. (stroke (width 0) (type default) (color 0 0 0 0))
  1308. (uuid 06d07379-de23-48e2-8263-5f48d5216817)
  1309. )
  1310. (wire (pts (xy 180.34 45.085) (xy 191.135 45.085))
  1311. (stroke (width 0) (type default) (color 0 0 0 0))
  1312. (uuid 0715b0ec-3df0-4d24-9b1f-7682cd753f4e)
  1313. )
  1314. (wire (pts (xy 60.325 56.515) (xy 58.42 56.515))
  1315. (stroke (width 0) (type default) (color 0 0 0 0))
  1316. (uuid 08951030-c51d-43d3-b08e-c66fcaefc1fc)
  1317. )
  1318. (wire (pts (xy 40.005 84.455) (xy 43.815 84.455))
  1319. (stroke (width 0) (type default) (color 0 0 0 0))
  1320. (uuid 09450029-e219-48fa-8137-720a1fe47b80)
  1321. )
  1322. (wire (pts (xy 159.385 44.45) (xy 163.83 44.45))
  1323. (stroke (width 0) (type default) (color 0 0 0 0))
  1324. (uuid 0a376e24-1aed-4eb2-8631-cbb7503378de)
  1325. )
  1326. (wire (pts (xy 40.005 71.755) (xy 43.815 71.755))
  1327. (stroke (width 0) (type default) (color 0 0 0 0))
  1328. (uuid 0ce4ca72-f5a3-47f2-88b3-bd1db8dee2fe)
  1329. )
  1330. (wire (pts (xy 241.935 62.865) (xy 239.395 62.865))
  1331. (stroke (width 0) (type default) (color 0 0 0 0))
  1332. (uuid 0dd16300-b0e0-408a-a9e7-a215d2a4caa7)
  1333. )
  1334. (wire (pts (xy 124.46 64.77) (xy 128.905 64.77))
  1335. (stroke (width 0) (type default) (color 0 0 0 0))
  1336. (uuid 0e551ab3-f68e-48fb-bb91-5040d76daf97)
  1337. )
  1338. (wire (pts (xy 40.64 31.75) (xy 43.815 31.75))
  1339. (stroke (width 0) (type default) (color 0 0 0 0))
  1340. (uuid 0ecbdf6e-1869-4d5d-9d1c-1c72df9eac8a)
  1341. )
  1342. (wire (pts (xy 180.34 67.945) (xy 191.135 67.945))
  1343. (stroke (width 0) (type default) (color 0 0 0 0))
  1344. (uuid 12bbba12-82a1-4f43-92a2-f86cc2bc3677)
  1345. )
  1346. (wire (pts (xy 124.46 69.85) (xy 124.46 72.39))
  1347. (stroke (width 0) (type default) (color 0 0 0 0))
  1348. (uuid 12bc44d1-6b93-4d8e-a56e-8932ad2eb90a)
  1349. )
  1350. (wire (pts (xy 220.98 33.02) (xy 220.98 37.465))
  1351. (stroke (width 0) (type default) (color 0 0 0 0))
  1352. (uuid 147398d2-8ae9-40ec-927b-65d1fa72ec5f)
  1353. )
  1354. (wire (pts (xy 180.34 70.485) (xy 187.325 70.485))
  1355. (stroke (width 0) (type default) (color 0 0 0 0))
  1356. (uuid 16e4455d-299c-488d-8274-a2e5953d3780)
  1357. )
  1358. (wire (pts (xy 185.42 62.865) (xy 185.42 65.405))
  1359. (stroke (width 0) (type default) (color 0 0 0 0))
  1360. (uuid 18f61ac2-5fbe-481e-b16c-a8782d83a980)
  1361. )
  1362. (wire (pts (xy 26.67 109.855) (xy 26.67 112.395))
  1363. (stroke (width 0) (type default) (color 0 0 0 0))
  1364. (uuid 1983823d-efc6-437f-ab1f-684227b26555)
  1365. )
  1366. (wire (pts (xy 269.875 84.582) (xy 269.875 86.487))
  1367. (stroke (width 0) (type default) (color 0 0 0 0))
  1368. (uuid 198b62d8-7184-46db-8fd5-b7a84a66d22e)
  1369. )
  1370. (wire (pts (xy 206.375 65.405) (xy 208.915 65.405))
  1371. (stroke (width 0) (type default) (color 0 0 0 0))
  1372. (uuid 1ae29fda-c8ae-488c-bb89-fa647764e337)
  1373. )
  1374. (wire (pts (xy 124.46 46.99) (xy 128.905 46.99))
  1375. (stroke (width 0) (type default) (color 0 0 0 0))
  1376. (uuid 1b0c27cb-e660-469d-89fd-96df9b115224)
  1377. )
  1378. (wire (pts (xy 40.005 79.375) (xy 43.815 79.375))
  1379. (stroke (width 0) (type default) (color 0 0 0 0))
  1380. (uuid 1c660590-e6b1-4a6a-84c9-4385871a9e36)
  1381. )
  1382. (wire (pts (xy 40.005 59.055) (xy 43.815 59.055))
  1383. (stroke (width 0) (type default) (color 0 0 0 0))
  1384. (uuid 1cde37dc-ff1d-4c59-aad6-5a66be950f58)
  1385. )
  1386. (wire (pts (xy 215.265 33.02) (xy 213.36 33.02))
  1387. (stroke (width 0) (type default) (color 0 0 0 0))
  1388. (uuid 2050e49c-5995-46bb-b291-4abaa8123a20)
  1389. )
  1390. (wire (pts (xy 40.005 81.915) (xy 43.815 81.915))
  1391. (stroke (width 0) (type default) (color 0 0 0 0))
  1392. (uuid 232f9422-d201-46f5-8791-878d3fbdadef)
  1393. )
  1394. (wire (pts (xy 40.64 29.21) (xy 59.69 29.21))
  1395. (stroke (width 0) (type default) (color 0 0 0 0))
  1396. (uuid 23d13881-b8da-4367-99a4-2fe46428baf6)
  1397. )
  1398. (wire (pts (xy 217.17 67.945) (xy 215.265 67.945))
  1399. (stroke (width 0) (type default) (color 0 0 0 0))
  1400. (uuid 25f9dfea-cab1-47af-93c1-aa981c4ef2d5)
  1401. )
  1402. (wire (pts (xy 219.075 33.02) (xy 219.075 37.465))
  1403. (stroke (width 0) (type default) (color 0 0 0 0))
  1404. (uuid 2809fda6-0611-4d96-8bbd-5ad73e2e9e8f)
  1405. )
  1406. (wire (pts (xy 185.42 47.625) (xy 185.42 50.165))
  1407. (stroke (width 0) (type default) (color 0 0 0 0))
  1408. (uuid 2dca9c9a-1dd1-4f5b-b323-2c496180cf5e)
  1409. )
  1410. (wire (pts (xy 40.64 34.29) (xy 43.815 34.29))
  1411. (stroke (width 0) (type default) (color 0 0 0 0))
  1412. (uuid 32437e73-3fed-4690-a739-e2e19b767bb2)
  1413. )
  1414. (wire (pts (xy 215.265 42.545) (xy 215.265 67.945))
  1415. (stroke (width 0) (type default) (color 0 0 0 0))
  1416. (uuid 32ad1869-a41b-4be9-af29-6fa6d56f8a51)
  1417. )
  1418. (wire (pts (xy 185.42 52.705) (xy 191.135 52.705))
  1419. (stroke (width 0) (type default) (color 0 0 0 0))
  1420. (uuid 33177005-ca8d-4c37-9f40-7f61cbd5d3ea)
  1421. )
  1422. (wire (pts (xy 159.385 34.29) (xy 163.83 34.29))
  1423. (stroke (width 0) (type default) (color 0 0 0 0))
  1424. (uuid 33de0edf-562e-4bd6-9136-81521b91204f)
  1425. )
  1426. (wire (pts (xy 124.46 39.37) (xy 128.905 39.37))
  1427. (stroke (width 0) (type default) (color 0 0 0 0))
  1428. (uuid 3475178f-442a-498b-b65a-f68ec8ee107f)
  1429. )
  1430. (wire (pts (xy 38.1 112.395) (xy 38.1 109.855))
  1431. (stroke (width 0) (type default) (color 0 0 0 0))
  1432. (uuid 369a2b3e-352a-449b-8d4c-864e040a3301)
  1433. )
  1434. (wire (pts (xy 31.75 100.965) (xy 31.75 102.235))
  1435. (stroke (width 0) (type default) (color 0 0 0 0))
  1436. (uuid 399d84dd-a00e-47e3-9077-7a685250cc28)
  1437. )
  1438. (wire (pts (xy 254.635 39.37) (xy 254.635 40.005))
  1439. (stroke (width 0) (type default) (color 0 0 0 0))
  1440. (uuid 3ca0e966-b7d2-4e28-a31d-55fe63b735d5)
  1441. )
  1442. (wire (pts (xy 111.125 27.305) (xy 111.125 59.69))
  1443. (stroke (width 0) (type default) (color 0 0 0 0))
  1444. (uuid 3d5b14e9-d10a-4fdd-8ad6-1a7cbe0f8a47)
  1445. )
  1446. (wire (pts (xy 159.385 36.83) (xy 163.83 36.83))
  1447. (stroke (width 0) (type default) (color 0 0 0 0))
  1448. (uuid 3d6a5139-620f-4975-8fd7-60753cf4c8b1)
  1449. )
  1450. (wire (pts (xy 191.135 57.785) (xy 187.325 57.785))
  1451. (stroke (width 0) (type default) (color 0 0 0 0))
  1452. (uuid 3d99a084-ecbb-4c0a-bf69-ca3ddd9eaf2c)
  1453. )
  1454. (wire (pts (xy 206.375 50.165) (xy 209.55 50.165))
  1455. (stroke (width 0) (type default) (color 0 0 0 0))
  1456. (uuid 42a93172-11ad-4a80-aacf-603da31d7ed8)
  1457. )
  1458. (wire (pts (xy 31.75 102.235) (xy 38.1 102.235))
  1459. (stroke (width 0) (type default) (color 0 0 0 0))
  1460. (uuid 438c380b-7517-4ca3-96a5-401c571411de)
  1461. )
  1462. (wire (pts (xy 40.005 56.515) (xy 43.815 56.515))
  1463. (stroke (width 0) (type default) (color 0 0 0 0))
  1464. (uuid 43f47e96-023c-445b-b40c-dd03983e9a59)
  1465. )
  1466. (wire (pts (xy 180.34 52.705) (xy 185.42 52.705))
  1467. (stroke (width 0) (type default) (color 0 0 0 0))
  1468. (uuid 46d67435-a172-44ca-bceb-c727ef0ce7a9)
  1469. )
  1470. (wire (pts (xy 243.84 26.797) (xy 252.095 26.797))
  1471. (stroke (width 0) (type default) (color 0 0 0 0))
  1472. (uuid 48303b92-6691-4e7d-9ff3-08438d2dfb6f)
  1473. )
  1474. (wire (pts (xy 31.75 112.395) (xy 38.1 112.395))
  1475. (stroke (width 0) (type default) (color 0 0 0 0))
  1476. (uuid 4d6a6f43-a90d-417f-af88-fa9ad5d6e7f2)
  1477. )
  1478. (wire (pts (xy 185.42 47.625) (xy 191.135 47.625))
  1479. (stroke (width 0) (type default) (color 0 0 0 0))
  1480. (uuid 4fc7d690-44ad-41e2-9bae-7c05d9a45f7f)
  1481. )
  1482. (wire (pts (xy 107.315 27.305) (xy 107.315 67.31))
  1483. (stroke (width 0) (type default) (color 0 0 0 0))
  1484. (uuid 52711ec9-6a5f-4dcd-8670-3f80891e60b8)
  1485. )
  1486. (wire (pts (xy 124.46 87.63) (xy 128.905 87.63))
  1487. (stroke (width 0) (type default) (color 0 0 0 0))
  1488. (uuid 52e02c70-440c-4fb1-ae47-5b0f7a605a55)
  1489. )
  1490. (wire (pts (xy 185.42 55.245) (xy 191.135 55.245))
  1491. (stroke (width 0) (type default) (color 0 0 0 0))
  1492. (uuid 54466732-6379-41cb-b5e5-b995eaf53391)
  1493. )
  1494. (wire (pts (xy 109.22 19.05) (xy 109.22 20.32))
  1495. (stroke (width 0) (type default) (color 0 0 0 0))
  1496. (uuid 565887cf-e4dd-4017-a8f3-35ca6e3e9c76)
  1497. )
  1498. (wire (pts (xy 109.22 62.23) (xy 128.905 62.23))
  1499. (stroke (width 0) (type default) (color 0 0 0 0))
  1500. (uuid 571dda8a-07dd-4c54-9f9d-a3799b16a243)
  1501. )
  1502. (wire (pts (xy 107.315 67.31) (xy 128.905 67.31))
  1503. (stroke (width 0) (type default) (color 0 0 0 0))
  1504. (uuid 5742440c-6320-442c-854e-53a69c481765)
  1505. )
  1506. (wire (pts (xy 206.375 52.705) (xy 220.98 52.705))
  1507. (stroke (width 0) (type default) (color 0 0 0 0))
  1508. (uuid 57d87db8-f057-493e-b00c-f6e2f1ceb2f8)
  1509. )
  1510. (wire (pts (xy 187.325 60.325) (xy 187.325 70.485))
  1511. (stroke (width 0) (type default) (color 0 0 0 0))
  1512. (uuid 5990fbf5-d375-4c9b-bcec-23910b3a802c)
  1513. )
  1514. (wire (pts (xy 206.375 40.005) (xy 206.375 42.545))
  1515. (stroke (width 0) (type default) (color 0 0 0 0))
  1516. (uuid 5a250f76-fedb-4281-9179-5c5e5ea6e11f)
  1517. )
  1518. (wire (pts (xy 58.42 56.515) (xy 56.515 56.515))
  1519. (stroke (width 0) (type default) (color 0 0 0 0))
  1520. (uuid 5f9c1b01-29d0-4776-a3d6-06048d4c4026)
  1521. )
  1522. (wire (pts (xy 109.22 27.305) (xy 109.22 62.23))
  1523. (stroke (width 0) (type default) (color 0 0 0 0))
  1524. (uuid 62c494c0-2d0b-4c85-835c-302aaf9b8492)
  1525. )
  1526. (wire (pts (xy 220.98 52.705) (xy 241.935 52.705))
  1527. (stroke (width 0) (type default) (color 0 0 0 0))
  1528. (uuid 63514943-73ed-4392-a132-23e1a3f61761)
  1529. )
  1530. (wire (pts (xy 60.325 79.375) (xy 56.515 79.375))
  1531. (stroke (width 0) (type default) (color 0 0 0 0))
  1532. (uuid 647ced18-e9cd-4399-ac0d-d4f0f11fd91a)
  1533. )
  1534. (wire (pts (xy 213.36 31.75) (xy 213.36 33.02))
  1535. (stroke (width 0) (type default) (color 0 0 0 0))
  1536. (uuid 6b44930b-84cd-49f0-afd3-1a4113e3e8da)
  1537. )
  1538. (wire (pts (xy 211.455 55.245) (xy 236.855 55.245))
  1539. (stroke (width 0) (type default) (color 0 0 0 0))
  1540. (uuid 6d552a3d-1e5e-467a-8e22-5c47aac3fdd2)
  1541. )
  1542. (wire (pts (xy 206.375 47.625) (xy 219.075 47.625))
  1543. (stroke (width 0) (type default) (color 0 0 0 0))
  1544. (uuid 6d66c9bf-ffd0-4be0-8e4b-2c5e9d21036a)
  1545. )
  1546. (wire (pts (xy 60.325 71.755) (xy 56.515 71.755))
  1547. (stroke (width 0) (type default) (color 0 0 0 0))
  1548. (uuid 6dd26675-87dd-40d5-ac5e-71816ebd40ef)
  1549. )
  1550. (wire (pts (xy 38.1 102.235) (xy 38.1 104.775))
  1551. (stroke (width 0) (type default) (color 0 0 0 0))
  1552. (uuid 6f39dcf7-925f-4e8c-88f5-c8f366e1bbc0)
  1553. )
  1554. (wire (pts (xy 124.46 54.61) (xy 128.905 54.61))
  1555. (stroke (width 0) (type default) (color 0 0 0 0))
  1556. (uuid 707b1841-f032-4142-bd76-9885c75b7359)
  1557. )
  1558. (wire (pts (xy 124.46 36.83) (xy 128.905 36.83))
  1559. (stroke (width 0) (type default) (color 0 0 0 0))
  1560. (uuid 71ce2a26-035f-4f71-bf12-4ac89e115ecf)
  1561. )
  1562. (wire (pts (xy 124.46 41.91) (xy 128.905 41.91))
  1563. (stroke (width 0) (type default) (color 0 0 0 0))
  1564. (uuid 7242c6e6-b038-4cd4-977d-c2cb7e4f5fb2)
  1565. )
  1566. (wire (pts (xy 222.885 33.02) (xy 220.98 33.02))
  1567. (stroke (width 0) (type default) (color 0 0 0 0))
  1568. (uuid 72fb5abd-5cee-4b6f-9422-e720e9847b8a)
  1569. )
  1570. (wire (pts (xy 254.635 73.025) (xy 254.635 74.295))
  1571. (stroke (width 0) (type default) (color 0 0 0 0))
  1572. (uuid 730c4e33-0ba8-4efc-a018-a63d5cda0fda)
  1573. )
  1574. (wire (pts (xy 60.325 66.675) (xy 56.515 66.675))
  1575. (stroke (width 0) (type default) (color 0 0 0 0))
  1576. (uuid 7356e9a4-1fcf-4414-b3ba-3bb61bcdade4)
  1577. )
  1578. (wire (pts (xy 185.42 65.405) (xy 191.135 65.405))
  1579. (stroke (width 0) (type default) (color 0 0 0 0))
  1580. (uuid 73de8086-2f4b-409c-a6a3-1f64bf3f5604)
  1581. )
  1582. (wire (pts (xy 40.005 69.215) (xy 43.815 69.215))
  1583. (stroke (width 0) (type default) (color 0 0 0 0))
  1584. (uuid 7408901a-527b-4deb-a0e2-3eb2da0c2d36)
  1585. )
  1586. (wire (pts (xy 60.325 59.055) (xy 56.515 59.055))
  1587. (stroke (width 0) (type default) (color 0 0 0 0))
  1588. (uuid 772c7bbd-31fc-4af8-9b00-bca4dae1f687)
  1589. )
  1590. (wire (pts (xy 208.915 67.945) (xy 206.375 67.945))
  1591. (stroke (width 0) (type default) (color 0 0 0 0))
  1592. (uuid 77e66bc5-705e-47eb-a6ae-95ee7af78db8)
  1593. )
  1594. (wire (pts (xy 60.325 81.915) (xy 56.515 81.915))
  1595. (stroke (width 0) (type default) (color 0 0 0 0))
  1596. (uuid 783ff3e4-21ad-4c1c-8f6a-e8c93224271a)
  1597. )
  1598. (wire (pts (xy 206.375 45.085) (xy 207.01 45.085))
  1599. (stroke (width 0) (type default) (color 0 0 0 0))
  1600. (uuid 78e32388-2940-4971-b1b2-1d4b3e1293fd)
  1601. )
  1602. (wire (pts (xy 31.75 112.395) (xy 31.75 113.665))
  1603. (stroke (width 0) (type default) (color 0 0 0 0))
  1604. (uuid 79e07d1c-5e11-43c6-aafb-5e12d9954bde)
  1605. )
  1606. (wire (pts (xy 209.55 50.165) (xy 241.935 50.165))
  1607. (stroke (width 0) (type default) (color 0 0 0 0))
  1608. (uuid 7c389220-b729-49ab-b639-f98c01407f66)
  1609. )
  1610. (wire (pts (xy 236.855 65.405) (xy 236.855 55.245))
  1611. (stroke (width 0) (type default) (color 0 0 0 0))
  1612. (uuid 7d938f42-c0bd-4636-8c86-fc67e81b6f33)
  1613. )
  1614. (wire (pts (xy 144.145 92.71) (xy 144.145 93.345))
  1615. (stroke (width 0) (type default) (color 0 0 0 0))
  1616. (uuid 7e2c6d68-e06b-491e-bdf1-1e0e888cd8b5)
  1617. )
  1618. (wire (pts (xy 60.325 76.835) (xy 56.515 76.835))
  1619. (stroke (width 0) (type default) (color 0 0 0 0))
  1620. (uuid 8064dec6-aca7-4629-bdcc-50ccee03b7d2)
  1621. )
  1622. (wire (pts (xy 224.79 35.56) (xy 224.79 37.465))
  1623. (stroke (width 0) (type default) (color 0 0 0 0))
  1624. (uuid 8066be8a-836d-4a63-ba96-b950ef463e78)
  1625. )
  1626. (wire (pts (xy 159.385 49.53) (xy 163.83 49.53))
  1627. (stroke (width 0) (type default) (color 0 0 0 0))
  1628. (uuid 8075c756-1a79-4e07-8290-44ca111d0b79)
  1629. )
  1630. (wire (pts (xy 185.42 50.165) (xy 191.135 50.165))
  1631. (stroke (width 0) (type default) (color 0 0 0 0))
  1632. (uuid 819d88d8-d708-4a8e-8ac2-699c88b6b71d)
  1633. )
  1634. (wire (pts (xy 215.265 67.945) (xy 208.915 67.945))
  1635. (stroke (width 0) (type default) (color 0 0 0 0))
  1636. (uuid 83794537-7d64-4b0e-8fda-a2f5ac8f78d4)
  1637. )
  1638. (wire (pts (xy 209.55 42.545) (xy 209.55 50.165))
  1639. (stroke (width 0) (type default) (color 0 0 0 0))
  1640. (uuid 8418ad48-7e05-459d-a297-4791b14ff86f)
  1641. )
  1642. (wire (pts (xy 26.67 112.395) (xy 31.75 112.395))
  1643. (stroke (width 0) (type default) (color 0 0 0 0))
  1644. (uuid 84caa1ca-d7be-4167-b5a3-f9ebc55538be)
  1645. )
  1646. (wire (pts (xy 59.69 22.86) (xy 59.69 29.21))
  1647. (stroke (width 0) (type default) (color 0 0 0 0))
  1648. (uuid 84dad50d-0878-4202-921c-323760882a44)
  1649. )
  1650. (wire (pts (xy 211.455 34.29) (xy 211.455 37.465))
  1651. (stroke (width 0) (type default) (color 0 0 0 0))
  1652. (uuid 8507b45f-0891-4054-b6ab-b5c250daa813)
  1653. )
  1654. (wire (pts (xy 206.375 62.865) (xy 224.79 62.865))
  1655. (stroke (width 0) (type default) (color 0 0 0 0))
  1656. (uuid 85b62a0c-2424-4a38-92cc-99a147179693)
  1657. )
  1658. (wire (pts (xy 124.46 90.17) (xy 128.905 90.17))
  1659. (stroke (width 0) (type default) (color 0 0 0 0))
  1660. (uuid 86dfffd6-57bb-4498-99b8-332ddccbd748)
  1661. )
  1662. (wire (pts (xy 60.325 61.595) (xy 56.515 61.595))
  1663. (stroke (width 0) (type default) (color 0 0 0 0))
  1664. (uuid 89fde6da-af71-4b60-86c7-bad5c9968547)
  1665. )
  1666. (wire (pts (xy 224.79 42.545) (xy 224.79 62.865))
  1667. (stroke (width 0) (type default) (color 0 0 0 0))
  1668. (uuid 8a53eb7a-3417-4c1e-bb00-6174ea429b92)
  1669. )
  1670. (wire (pts (xy 40.005 66.675) (xy 43.815 66.675))
  1671. (stroke (width 0) (type default) (color 0 0 0 0))
  1672. (uuid 8aea5a81-493e-46ab-bf11-33a53bf800f8)
  1673. )
  1674. (wire (pts (xy 109.22 20.32) (xy 109.22 22.225))
  1675. (stroke (width 0) (type default) (color 0 0 0 0))
  1676. (uuid 8cae300d-6e58-45bc-a26e-4d9c8071d53a)
  1677. )
  1678. (wire (pts (xy 206.375 60.325) (xy 222.885 60.325))
  1679. (stroke (width 0) (type default) (color 0 0 0 0))
  1680. (uuid 8e14504f-9d88-4c47-be7a-9fd394cc61b5)
  1681. )
  1682. (wire (pts (xy 76.2 48.895) (xy 76.2 51.435))
  1683. (stroke (width 0) (type default) (color 0 0 0 0))
  1684. (uuid 8ef14b75-0192-4b8a-b9b2-293dddf874de)
  1685. )
  1686. (wire (pts (xy 224.79 62.865) (xy 229.235 62.865))
  1687. (stroke (width 0) (type default) (color 0 0 0 0))
  1688. (uuid 9011c34b-7ad6-4138-b8c7-b7d11388fb4a)
  1689. )
  1690. (wire (pts (xy 159.385 41.91) (xy 163.83 41.91))
  1691. (stroke (width 0) (type default) (color 0 0 0 0))
  1692. (uuid 937a052d-3776-49ef-892e-c635dfaddf16)
  1693. )
  1694. (wire (pts (xy 239.395 62.865) (xy 239.395 57.785))
  1695. (stroke (width 0) (type default) (color 0 0 0 0))
  1696. (uuid 93f92b6d-9988-45d1-9ac4-2650282b097a)
  1697. )
  1698. (wire (pts (xy 144.145 27.94) (xy 144.145 29.21))
  1699. (stroke (width 0) (type default) (color 0 0 0 0))
  1700. (uuid 949453bc-11e3-40e0-ab9c-35fe56dfda92)
  1701. )
  1702. (wire (pts (xy 209.55 34.29) (xy 209.55 37.465))
  1703. (stroke (width 0) (type default) (color 0 0 0 0))
  1704. (uuid 9655e275-3fab-4c28-93fa-66801cd81924)
  1705. )
  1706. (wire (pts (xy 124.46 72.39) (xy 124.46 74.93))
  1707. (stroke (width 0) (type default) (color 0 0 0 0))
  1708. (uuid 979d0b62-7eeb-457f-ac71-9a84c2a6393e)
  1709. )
  1710. (wire (pts (xy 111.125 59.69) (xy 128.905 59.69))
  1711. (stroke (width 0) (type default) (color 0 0 0 0))
  1712. (uuid 9905e4ff-9af5-4dd3-b240-522eb845db10)
  1713. )
  1714. (wire (pts (xy 159.385 46.99) (xy 163.83 46.99))
  1715. (stroke (width 0) (type default) (color 0 0 0 0))
  1716. (uuid 9b29a182-7f54-4362-9532-22f3c7f41f8d)
  1717. )
  1718. (wire (pts (xy 105.41 27.305) (xy 105.41 82.55))
  1719. (stroke (width 0) (type default) (color 0 0 0 0))
  1720. (uuid 9b70c950-d36c-424f-8cd2-f61563ffecc5)
  1721. )
  1722. (wire (pts (xy 213.36 57.785) (xy 206.375 57.785))
  1723. (stroke (width 0) (type default) (color 0 0 0 0))
  1724. (uuid 9c1ba1d3-5332-4667-8cab-36582f231bc2)
  1725. )
  1726. (wire (pts (xy 217.17 70.485) (xy 206.375 70.485))
  1727. (stroke (width 0) (type default) (color 0 0 0 0))
  1728. (uuid 9e44b570-ccae-4bbf-a631-2d4d23394729)
  1729. )
  1730. (wire (pts (xy 187.325 60.325) (xy 191.135 60.325))
  1731. (stroke (width 0) (type default) (color 0 0 0 0))
  1732. (uuid 9eba7ecc-ec15-4585-a76a-db77480a9b54)
  1733. )
  1734. (wire (pts (xy 213.36 42.545) (xy 213.36 57.785))
  1735. (stroke (width 0) (type default) (color 0 0 0 0))
  1736. (uuid 9f5184fa-4a61-4ee8-8b14-453fa4e8c866)
  1737. )
  1738. (wire (pts (xy 222.885 42.545) (xy 222.885 60.325))
  1739. (stroke (width 0) (type default) (color 0 0 0 0))
  1740. (uuid a08a7a6a-34d7-42b1-acd9-7e3350be6854)
  1741. )
  1742. (wire (pts (xy 239.395 57.785) (xy 213.36 57.785))
  1743. (stroke (width 0) (type default) (color 0 0 0 0))
  1744. (uuid a12f5664-299e-4ddd-8d07-98473fe830c9)
  1745. )
  1746. (wire (pts (xy 40.005 61.595) (xy 43.815 61.595))
  1747. (stroke (width 0) (type default) (color 0 0 0 0))
  1748. (uuid a1e05334-7ac5-4fd2-9f46-f00adc1da338)
  1749. )
  1750. (wire (pts (xy 124.46 72.39) (xy 128.905 72.39))
  1751. (stroke (width 0) (type default) (color 0 0 0 0))
  1752. (uuid a36f33ab-05b5-47dc-9a39-e5544a34812f)
  1753. )
  1754. (wire (pts (xy 211.455 34.29) (xy 209.55 34.29))
  1755. (stroke (width 0) (type default) (color 0 0 0 0))
  1756. (uuid a3e5dd09-09cc-4083-81d1-abac957e6303)
  1757. )
  1758. (wire (pts (xy 69.215 51.435) (xy 76.2 51.435))
  1759. (stroke (width 0) (type default) (color 0 0 0 0))
  1760. (uuid a4a4d9a1-bb05-4a12-a43b-984e98fcb4c4)
  1761. )
  1762. (wire (pts (xy 124.46 69.85) (xy 128.905 69.85))
  1763. (stroke (width 0) (type default) (color 0 0 0 0))
  1764. (uuid a6fcf6c0-3e31-4207-86bb-20280301df93)
  1765. )
  1766. (wire (pts (xy 213.36 34.29) (xy 213.36 37.465))
  1767. (stroke (width 0) (type default) (color 0 0 0 0))
  1768. (uuid a76f2b8c-f9db-4bdf-96de-52286b6ed942)
  1769. )
  1770. (wire (pts (xy 180.34 47.625) (xy 185.42 47.625))
  1771. (stroke (width 0) (type default) (color 0 0 0 0))
  1772. (uuid a7bf179a-4ed1-4926-bbc6-2ba2174a2022)
  1773. )
  1774. (wire (pts (xy 222.885 33.02) (xy 222.885 37.465))
  1775. (stroke (width 0) (type default) (color 0 0 0 0))
  1776. (uuid a97e60bf-6e1f-4229-8c0a-9c168004ff38)
  1777. )
  1778. (wire (pts (xy 105.41 20.32) (xy 105.41 22.225))
  1779. (stroke (width 0) (type default) (color 0 0 0 0))
  1780. (uuid aa8ff026-b0ac-454c-a279-b05341ce849c)
  1781. )
  1782. (wire (pts (xy 124.46 31.75) (xy 128.905 31.75))
  1783. (stroke (width 0) (type default) (color 0 0 0 0))
  1784. (uuid ab35511b-0971-41e1-8019-4ef591cbffd1)
  1785. )
  1786. (wire (pts (xy 107.315 20.32) (xy 105.41 20.32))
  1787. (stroke (width 0) (type default) (color 0 0 0 0))
  1788. (uuid ace7116d-bcc5-450d-8a3e-d337b586ada4)
  1789. )
  1790. (wire (pts (xy 224.79 35.56) (xy 228.6 35.56))
  1791. (stroke (width 0) (type default) (color 0 0 0 0))
  1792. (uuid ad548761-3826-4a48-a50b-33f3eaa35b23)
  1793. )
  1794. (wire (pts (xy 124.46 52.07) (xy 128.905 52.07))
  1795. (stroke (width 0) (type default) (color 0 0 0 0))
  1796. (uuid ae6f5374-3870-46a5-b04e-5d95645006b8)
  1797. )
  1798. (wire (pts (xy 26.67 104.775) (xy 26.67 102.235))
  1799. (stroke (width 0) (type default) (color 0 0 0 0))
  1800. (uuid b02757c6-0567-4ff4-80b9-e11c3ca802c7)
  1801. )
  1802. (wire (pts (xy 220.98 33.02) (xy 219.075 33.02))
  1803. (stroke (width 0) (type default) (color 0 0 0 0))
  1804. (uuid b1c72ba4-37a2-43fd-bbdf-39df068b5a0c)
  1805. )
  1806. (wire (pts (xy 97.536 71.12) (xy 97.536 72.39))
  1807. (stroke (width 0) (type default) (color 0 0 0 0))
  1808. (uuid b351c929-2060-4c9a-ba04-4c7e0f71bebf)
  1809. )
  1810. (wire (pts (xy 222.885 60.325) (xy 241.935 60.325))
  1811. (stroke (width 0) (type default) (color 0 0 0 0))
  1812. (uuid b6699487-7bc6-469b-a9f4-41ce3afde709)
  1813. )
  1814. (wire (pts (xy 124.46 49.53) (xy 128.905 49.53))
  1815. (stroke (width 0) (type default) (color 0 0 0 0))
  1816. (uuid b6d2c618-8acf-4d14-9043-9219c8252ede)
  1817. )
  1818. (wire (pts (xy 243.84 24.257) (xy 243.84 26.797))
  1819. (stroke (width 0) (type default) (color 0 0 0 0))
  1820. (uuid b6ea0539-927a-4be5-9c84-775469d0d3fb)
  1821. )
  1822. (wire (pts (xy 26.67 102.235) (xy 31.75 102.235))
  1823. (stroke (width 0) (type default) (color 0 0 0 0))
  1824. (uuid b72694e8-e0b8-454a-8c56-897baa760a38)
  1825. )
  1826. (wire (pts (xy 215.265 33.02) (xy 215.265 37.465))
  1827. (stroke (width 0) (type default) (color 0 0 0 0))
  1828. (uuid b82f87bd-3782-45ab-a376-467e1b263bd8)
  1829. )
  1830. (wire (pts (xy 109.22 20.32) (xy 107.315 20.32))
  1831. (stroke (width 0) (type default) (color 0 0 0 0))
  1832. (uuid bbb546e0-7a1f-40d0-9eb5-dafb43b58aa6)
  1833. )
  1834. (wire (pts (xy 207.01 33.02) (xy 207.01 45.085))
  1835. (stroke (width 0) (type default) (color 0 0 0 0))
  1836. (uuid bef7553f-02cc-4f92-a415-202895cd7010)
  1837. )
  1838. (wire (pts (xy 185.42 55.245) (xy 185.42 62.865))
  1839. (stroke (width 0) (type default) (color 0 0 0 0))
  1840. (uuid c0c3fd69-c50a-4156-8931-503e750c1b73)
  1841. )
  1842. (wire (pts (xy 124.46 74.93) (xy 128.905 74.93))
  1843. (stroke (width 0) (type default) (color 0 0 0 0))
  1844. (uuid c10b844d-1876-49b2-ad37-4bca7e4eea41)
  1845. )
  1846. (wire (pts (xy 60.325 84.455) (xy 56.515 84.455))
  1847. (stroke (width 0) (type default) (color 0 0 0 0))
  1848. (uuid c10cf8ec-53ec-4ef4-aa63-871d34257add)
  1849. )
  1850. (wire (pts (xy 97.536 72.39) (xy 124.46 72.39))
  1851. (stroke (width 0) (type default) (color 0 0 0 0))
  1852. (uuid c4313487-f843-4246-b026-72a61a99f903)
  1853. )
  1854. (wire (pts (xy 124.46 44.45) (xy 128.905 44.45))
  1855. (stroke (width 0) (type default) (color 0 0 0 0))
  1856. (uuid c49c4868-6da1-4986-a883-caee796504e8)
  1857. )
  1858. (wire (pts (xy 40.005 74.295) (xy 43.815 74.295))
  1859. (stroke (width 0) (type default) (color 0 0 0 0))
  1860. (uuid ceb19917-fd42-4745-a0cf-0aa36b4554cf)
  1861. )
  1862. (wire (pts (xy 60.325 74.295) (xy 56.515 74.295))
  1863. (stroke (width 0) (type default) (color 0 0 0 0))
  1864. (uuid d1409ade-522a-4b2c-a35c-881f7bf6b11c)
  1865. )
  1866. (wire (pts (xy 219.075 42.545) (xy 219.075 47.625))
  1867. (stroke (width 0) (type default) (color 0 0 0 0))
  1868. (uuid d27292bb-1d9a-42da-aa0c-6f34513d5000)
  1869. )
  1870. (wire (pts (xy 40.005 84.455) (xy 40.005 85.725))
  1871. (stroke (width 0) (type default) (color 0 0 0 0))
  1872. (uuid d7564d19-936b-4e34-bb7b-3401219aa6fd)
  1873. )
  1874. (wire (pts (xy 159.385 31.75) (xy 163.83 31.75))
  1875. (stroke (width 0) (type default) (color 0 0 0 0))
  1876. (uuid d7faab99-0521-4319-968a-0b4d79809f1d)
  1877. )
  1878. (wire (pts (xy 60.325 64.135) (xy 56.515 64.135))
  1879. (stroke (width 0) (type default) (color 0 0 0 0))
  1880. (uuid db84a3e9-8366-4438-8898-8d674fd7427b)
  1881. )
  1882. (wire (pts (xy 267.335 60.325) (xy 269.24 60.325))
  1883. (stroke (width 0) (type default) (color 0 0 0 0))
  1884. (uuid dc11ccc3-5168-4446-b625-9bc221637e96)
  1885. )
  1886. (wire (pts (xy 111.125 20.32) (xy 111.125 22.225))
  1887. (stroke (width 0) (type default) (color 0 0 0 0))
  1888. (uuid dcf69f6f-7972-4238-9e11-bbb1cd6dd748)
  1889. )
  1890. (wire (pts (xy 219.075 33.02) (xy 215.265 33.02))
  1891. (stroke (width 0) (type default) (color 0 0 0 0))
  1892. (uuid dd0e7c79-80ef-41ac-ab21-21b80b5625df)
  1893. )
  1894. (wire (pts (xy 211.455 42.545) (xy 211.455 55.245))
  1895. (stroke (width 0) (type default) (color 0 0 0 0))
  1896. (uuid dd2152b9-2c05-48b8-930c-8385bfccaf8a)
  1897. )
  1898. (wire (pts (xy 187.325 57.785) (xy 187.325 60.325))
  1899. (stroke (width 0) (type default) (color 0 0 0 0))
  1900. (uuid de276f1c-aec6-4c21-9213-63902e9e32f8)
  1901. )
  1902. (wire (pts (xy 40.64 26.67) (xy 43.815 26.67))
  1903. (stroke (width 0) (type default) (color 0 0 0 0))
  1904. (uuid de4213f5-bdea-4696-8609-35df27c21a5b)
  1905. )
  1906. (wire (pts (xy 109.22 20.32) (xy 111.125 20.32))
  1907. (stroke (width 0) (type default) (color 0 0 0 0))
  1908. (uuid dff43a4d-a963-44de-98ba-6790219cbb8d)
  1909. )
  1910. (wire (pts (xy 40.005 64.135) (xy 43.815 64.135))
  1911. (stroke (width 0) (type default) (color 0 0 0 0))
  1912. (uuid e5217a71-8199-409f-8610-b334ecaa909a)
  1913. )
  1914. (wire (pts (xy 228.6 35.56) (xy 233.68 35.56))
  1915. (stroke (width 0) (type default) (color 0 0 0 0))
  1916. (uuid e8325284-b1bf-4a3b-a5b4-a3e57efaae62)
  1917. )
  1918. (wire (pts (xy 180.34 42.545) (xy 191.135 42.545))
  1919. (stroke (width 0) (type default) (color 0 0 0 0))
  1920. (uuid e89d97ea-2455-426c-a6ca-261f33fd4f73)
  1921. )
  1922. (wire (pts (xy 241.935 65.405) (xy 236.855 65.405))
  1923. (stroke (width 0) (type default) (color 0 0 0 0))
  1924. (uuid e89db32c-8624-4f14-92c3-b5a8b798e399)
  1925. )
  1926. (wire (pts (xy 233.68 35.56) (xy 233.68 38.735))
  1927. (stroke (width 0) (type default) (color 0 0 0 0))
  1928. (uuid ea7200ed-adf2-48f2-9267-f87d4777e754)
  1929. )
  1930. (wire (pts (xy 40.64 24.13) (xy 43.815 24.13))
  1931. (stroke (width 0) (type default) (color 0 0 0 0))
  1932. (uuid eba39608-3d18-41d8-901f-652e26aefc67)
  1933. )
  1934. (wire (pts (xy 185.42 52.705) (xy 185.42 55.245))
  1935. (stroke (width 0) (type default) (color 0 0 0 0))
  1936. (uuid ec999c2c-d671-4369-9b94-c84124b8d1f3)
  1937. )
  1938. (wire (pts (xy 60.325 69.215) (xy 56.515 69.215))
  1939. (stroke (width 0) (type default) (color 0 0 0 0))
  1940. (uuid eda65fa7-8434-4d1a-90ac-6a4efcbdef46)
  1941. )
  1942. (wire (pts (xy 105.41 82.55) (xy 128.905 82.55))
  1943. (stroke (width 0) (type default) (color 0 0 0 0))
  1944. (uuid f1c44767-5588-490d-879a-66cc4039f080)
  1945. )
  1946. (wire (pts (xy 124.46 34.29) (xy 128.905 34.29))
  1947. (stroke (width 0) (type default) (color 0 0 0 0))
  1948. (uuid f23d8681-4c3d-45d0-b2f9-27d28b7fa96d)
  1949. )
  1950. (wire (pts (xy 58.42 51.435) (xy 61.595 51.435))
  1951. (stroke (width 0) (type default) (color 0 0 0 0))
  1952. (uuid f2d7f848-8f07-4028-8ead-667c03719b22)
  1953. )
  1954. (wire (pts (xy 208.915 65.405) (xy 208.915 67.945))
  1955. (stroke (width 0) (type default) (color 0 0 0 0))
  1956. (uuid f32937e3-06ac-40fc-91b9-20766445874d)
  1957. )
  1958. (wire (pts (xy 228.6 34.29) (xy 228.6 35.56))
  1959. (stroke (width 0) (type default) (color 0 0 0 0))
  1960. (uuid f4027188-5313-4c44-8b10-b8e9eec8e83f)
  1961. )
  1962. (wire (pts (xy 206.375 55.245) (xy 211.455 55.245))
  1963. (stroke (width 0) (type default) (color 0 0 0 0))
  1964. (uuid f5717d07-a4fc-4e1e-899b-5d69e8a2e4d0)
  1965. )
  1966. (wire (pts (xy 219.075 47.625) (xy 241.935 47.625))
  1967. (stroke (width 0) (type default) (color 0 0 0 0))
  1968. (uuid f75e7093-8afa-40ee-82d5-f12dda90a7ba)
  1969. )
  1970. (wire (pts (xy 220.98 42.545) (xy 220.98 52.705))
  1971. (stroke (width 0) (type default) (color 0 0 0 0))
  1972. (uuid f95b0e5b-436e-4271-828f-e717519e3890)
  1973. )
  1974. (wire (pts (xy 252.095 23.622) (xy 252.095 26.797))
  1975. (stroke (width 0) (type default) (color 0 0 0 0))
  1976. (uuid f95d9534-71c1-4cf3-a4a1-538226fdfa2d)
  1977. )
  1978. (wire (pts (xy 185.42 62.865) (xy 191.135 62.865))
  1979. (stroke (width 0) (type default) (color 0 0 0 0))
  1980. (uuid facebef0-97e4-483c-a30b-20bf05f24e49)
  1981. )
  1982. (wire (pts (xy 40.005 76.835) (xy 43.815 76.835))
  1983. (stroke (width 0) (type default) (color 0 0 0 0))
  1984. (uuid fb5bce0f-7a94-42f7-9595-6b6f713cc9bc)
  1985. )
  1986. (wire (pts (xy 213.36 34.29) (xy 211.455 34.29))
  1987. (stroke (width 0) (type default) (color 0 0 0 0))
  1988. (uuid fe56399a-5519-4d62-a8e9-0f906d2b8996)
  1989. )
  1990. (label "A13" (at 60.325 56.515 0)
  1991. (effects (font (size 1.27 1.27)) (justify left bottom))
  1992. (uuid 0c30f418-28de-416c-87e9-6c7e24940ae0)
  1993. )
  1994. (label "~{WE}" (at 124.46 82.55 180)
  1995. (effects (font (size 1.27 1.27)) (justify right bottom))
  1996. (uuid 0e4c493b-7fa5-424f-a8df-b83a6847a93c)
  1997. )
  1998. (label "A4" (at 124.46 41.91 180)
  1999. (effects (font (size 1.27 1.27)) (justify right bottom))
  2000. (uuid 136340e8-9ef2-480a-ae8f-37aa224f18fa)
  2001. )
  2002. (label "D3" (at 163.83 39.37 0)
  2003. (effects (font (size 1.27 1.27)) (justify left bottom))
  2004. (uuid 15422cb6-c833-4f40-b0cc-3801ddaa16cf)
  2005. )
  2006. (label "A11" (at 124.46 59.69 180)
  2007. (effects (font (size 1.27 1.27)) (justify right bottom))
  2008. (uuid 159133a1-ab7d-4045-b160-fceeb35bbd7c)
  2009. )
  2010. (label "D2" (at 163.83 36.83 0)
  2011. (effects (font (size 1.27 1.27)) (justify left bottom))
  2012. (uuid 15cd9ff1-a86f-4e67-aca5-a3cc83e13e8f)
  2013. )
  2014. (label "A2" (at 124.46 36.83 180)
  2015. (effects (font (size 1.27 1.27)) (justify right bottom))
  2016. (uuid 1afe62c6-d0d1-4595-a691-61ccfff2cff6)
  2017. )
  2018. (label "A13" (at 124.46 64.77 180)
  2019. (effects (font (size 1.27 1.27)) (justify right bottom))
  2020. (uuid 1c5cc934-1d59-41da-aa21-ea60c8b3bd04)
  2021. )
  2022. (label "A0" (at 124.46 31.75 180)
  2023. (effects (font (size 1.27 1.27)) (justify right bottom))
  2024. (uuid 1f430700-32ef-4206-a132-b98a8aa3ad7e)
  2025. )
  2026. (label "D7" (at 60.325 74.295 0)
  2027. (effects (font (size 1.27 1.27)) (justify left bottom))
  2028. (uuid 1fc8f1f8-b927-4d3f-8d50-d71213125ec4)
  2029. )
  2030. (label "~{WE}" (at 43.815 26.67 0)
  2031. (effects (font (size 1.27 1.27)) (justify left bottom))
  2032. (uuid 2026b4da-bc1f-4575-815b-84dc660314f3)
  2033. )
  2034. (label "PIN19" (at 180.34 67.945 180)
  2035. (effects (font (size 1.27 1.27)) (justify right bottom))
  2036. (uuid 20cea342-5938-457e-bb0d-e5f4158821cf)
  2037. )
  2038. (label "~{CE}" (at 124.46 87.63 180)
  2039. (effects (font (size 1.27 1.27)) (justify right bottom))
  2040. (uuid 244f2925-50f8-4b8c-bd59-a8411b454996)
  2041. )
  2042. (label "PIN19" (at 60.325 69.215 0)
  2043. (effects (font (size 1.27 1.27)) (justify left bottom))
  2044. (uuid 3a03fe41-4735-454b-8c05-0f194df17884)
  2045. )
  2046. (label "A3" (at 124.46 39.37 180)
  2047. (effects (font (size 1.27 1.27)) (justify right bottom))
  2048. (uuid 3b1055dc-799e-4f1c-bf8f-4fa68cc23562)
  2049. )
  2050. (label "D5" (at 163.83 44.45 0)
  2051. (effects (font (size 1.27 1.27)) (justify left bottom))
  2052. (uuid 4b269d01-65e3-4f3f-a321-b346af414bea)
  2053. )
  2054. (label "A14" (at 124.46 67.31 180)
  2055. (effects (font (size 1.27 1.27)) (justify right bottom))
  2056. (uuid 4c3f4ceb-b849-411b-b175-2f95c6a5d279)
  2057. )
  2058. (label "A1" (at 40.005 71.755 180)
  2059. (effects (font (size 1.27 1.27)) (justify right bottom))
  2060. (uuid 4f1fefe6-6eec-4893-9f7a-cc8b79f94e79)
  2061. )
  2062. (label "A0" (at 40.005 74.295 180)
  2063. (effects (font (size 1.27 1.27)) (justify right bottom))
  2064. (uuid 51ab7bae-25ac-4bb0-8ac8-3806c9d500af)
  2065. )
  2066. (label "A1" (at 124.46 34.29 180)
  2067. (effects (font (size 1.27 1.27)) (justify right bottom))
  2068. (uuid 5384bbc8-64e6-4a20-8932-430c45a8350d)
  2069. )
  2070. (label "A12" (at 43.815 34.29 0)
  2071. (effects (font (size 1.27 1.27)) (justify left bottom))
  2072. (uuid 5cf42d24-ee9a-44d0-85da-650055f508ec)
  2073. )
  2074. (label "D4" (at 60.325 81.915 0)
  2075. (effects (font (size 1.27 1.27)) (justify left bottom))
  2076. (uuid 5d30746c-153a-46b3-802e-d5d38853532d)
  2077. )
  2078. (label "PIN20" (at 60.325 66.675 0)
  2079. (effects (font (size 1.27 1.27)) (justify left bottom))
  2080. (uuid 5e084c8c-d925-48de-9064-e690ab471c67)
  2081. )
  2082. (label "A8" (at 124.46 52.07 180)
  2083. (effects (font (size 1.27 1.27)) (justify right bottom))
  2084. (uuid 62108839-62d3-4f70-b8c0-6585f946d6ed)
  2085. )
  2086. (label "A8" (at 60.325 59.055 0)
  2087. (effects (font (size 1.27 1.27)) (justify left bottom))
  2088. (uuid 62e991fe-f5cb-4910-8acb-6e20ad42f321)
  2089. )
  2090. (label "D1" (at 163.83 34.29 0)
  2091. (effects (font (size 1.27 1.27)) (justify left bottom))
  2092. (uuid 635e6703-dd83-41f1-87ed-2ddeff26106a)
  2093. )
  2094. (label "A4" (at 40.005 64.135 180)
  2095. (effects (font (size 1.27 1.27)) (justify right bottom))
  2096. (uuid 67d42b41-7e98-4a71-b2f5-29215cdcade0)
  2097. )
  2098. (label "A12" (at 124.46 62.23 180)
  2099. (effects (font (size 1.27 1.27)) (justify right bottom))
  2100. (uuid 6efcf904-c988-4925-9d41-57c12d6b0e45)
  2101. )
  2102. (label "PIN18" (at 180.34 42.545 180)
  2103. (effects (font (size 1.27 1.27)) (justify right bottom))
  2104. (uuid 779ceccc-3a06-4034-9644-cbff400ecc6b)
  2105. )
  2106. (label "A9" (at 60.325 61.595 0)
  2107. (effects (font (size 1.27 1.27)) (justify left bottom))
  2108. (uuid 79c93aec-97f9-4cf4-8a79-ac167bd0adc7)
  2109. )
  2110. (label "D0" (at 40.005 76.835 180)
  2111. (effects (font (size 1.27 1.27)) (justify right bottom))
  2112. (uuid 7cb4e0d0-bb46-4fa7-a127-b07a2b1e57a6)
  2113. )
  2114. (label "A2" (at 40.005 69.215 180)
  2115. (effects (font (size 1.27 1.27)) (justify right bottom))
  2116. (uuid 7e371fb9-a199-4d9f-9a03-a89028853206)
  2117. )
  2118. (label "PIN18" (at 180.34 47.625 180)
  2119. (effects (font (size 1.27 1.27)) (justify right bottom))
  2120. (uuid 829be39a-a186-4ec4-9266-62c48c77e710)
  2121. )
  2122. (label "D6" (at 163.83 46.99 0)
  2123. (effects (font (size 1.27 1.27)) (justify left bottom))
  2124. (uuid 8516b650-aa9c-421d-a5d7-78db2e4e6c40)
  2125. )
  2126. (label "A7" (at 40.005 56.515 180)
  2127. (effects (font (size 1.27 1.27)) (justify right bottom))
  2128. (uuid 86c4ef38-88fb-4622-af97-a273131c36eb)
  2129. )
  2130. (label "A3" (at 40.005 66.675 180)
  2131. (effects (font (size 1.27 1.27)) (justify right bottom))
  2132. (uuid 87107b39-43da-414f-9a94-718f3a6b3162)
  2133. )
  2134. (label "PIN21" (at 60.325 64.135 0)
  2135. (effects (font (size 1.27 1.27)) (justify left bottom))
  2136. (uuid 87cbd5c8-6832-4a17-8f3f-5790f4ea6dc5)
  2137. )
  2138. (label "~{OE}" (at 124.46 90.17 180)
  2139. (effects (font (size 1.27 1.27)) (justify right bottom))
  2140. (uuid 91cf1be6-778d-4c2b-8e53-91b79091d175)
  2141. )
  2142. (label "D0" (at 163.83 31.75 0)
  2143. (effects (font (size 1.27 1.27)) (justify left bottom))
  2144. (uuid 95b9c5a0-1505-4b2d-948a-3eb6fcccce2d)
  2145. )
  2146. (label "PIN21" (at 180.34 70.485 180)
  2147. (effects (font (size 1.27 1.27)) (justify right bottom))
  2148. (uuid 972b9760-e7d3-4ebe-8c21-8d7b9fe6b1af)
  2149. )
  2150. (label "A11" (at 206.375 40.005 90)
  2151. (effects (font (size 1.27 1.27)) (justify left bottom))
  2152. (uuid 97b05044-e83a-4dc9-8b68-568e163c61b5)
  2153. )
  2154. (label "PIN18" (at 43.815 31.75 0)
  2155. (effects (font (size 1.27 1.27)) (justify left bottom))
  2156. (uuid 99f98152-69b2-4d44-bd17-619d2f9a53dd)
  2157. )
  2158. (label "PIN18" (at 60.325 71.755 0)
  2159. (effects (font (size 1.27 1.27)) (justify left bottom))
  2160. (uuid a1737562-dc8d-4b90-9f6d-770cded3fb9c)
  2161. )
  2162. (label "D2" (at 40.005 81.915 180)
  2163. (effects (font (size 1.27 1.27)) (justify right bottom))
  2164. (uuid a43cf4be-644b-4270-ba78-5925fee7ccc7)
  2165. )
  2166. (label "A12" (at 207.01 33.02 90)
  2167. (effects (font (size 1.27 1.27)) (justify left bottom))
  2168. (uuid a67a9223-c5a6-4ee0-9591-0a8a1b12f467)
  2169. )
  2170. (label "A6" (at 124.46 46.99 180)
  2171. (effects (font (size 1.27 1.27)) (justify right bottom))
  2172. (uuid a806c3ec-ccdd-45b8-a3c3-5e1363e062ca)
  2173. )
  2174. (label "A10" (at 217.17 67.945 0)
  2175. (effects (font (size 1.27 1.27)) (justify left bottom))
  2176. (uuid b4da6311-8600-4dc5-9502-79e3c3fd5511)
  2177. )
  2178. (label "D3" (at 60.325 84.455 0)
  2179. (effects (font (size 1.27 1.27)) (justify left bottom))
  2180. (uuid ba5ed695-17db-4ccf-93ab-4aa9a2e3a858)
  2181. )
  2182. (label "A11" (at 217.17 70.485 0)
  2183. (effects (font (size 1.27 1.27)) (justify left bottom))
  2184. (uuid bb61308f-0072-4e5d-bc4f-37476d6927ec)
  2185. )
  2186. (label "A7" (at 124.46 49.53 180)
  2187. (effects (font (size 1.27 1.27)) (justify right bottom))
  2188. (uuid bc898ca6-19b1-41f6-912c-04c208efbb11)
  2189. )
  2190. (label "A6" (at 40.005 59.055 180)
  2191. (effects (font (size 1.27 1.27)) (justify right bottom))
  2192. (uuid bdd65dd1-9f79-4dea-95b0-70e6d13d030b)
  2193. )
  2194. (label "D4" (at 163.83 41.91 0)
  2195. (effects (font (size 1.27 1.27)) (justify left bottom))
  2196. (uuid c069f94e-47dc-4e07-846c-f301593ab85e)
  2197. )
  2198. (label "A10" (at 124.46 57.15 180)
  2199. (effects (font (size 1.27 1.27)) (justify right bottom))
  2200. (uuid c63fb979-7dbf-48ba-a9d0-e80a29e47685)
  2201. )
  2202. (label "PIN20" (at 180.34 52.705 180)
  2203. (effects (font (size 1.27 1.27)) (justify right bottom))
  2204. (uuid c900ce98-f909-4ef8-8162-a65583436043)
  2205. )
  2206. (label "~{CE}" (at 269.24 60.325 0)
  2207. (effects (font (size 1.27 1.27)) (justify left bottom))
  2208. (uuid cadbb6e0-e97f-4b51-a86d-ade7a7dc829f)
  2209. )
  2210. (label "D7" (at 163.83 49.53 0)
  2211. (effects (font (size 1.27 1.27)) (justify left bottom))
  2212. (uuid d6f60b04-5c7d-4815-9c8b-c6e589d4152a)
  2213. )
  2214. (label "A14" (at 43.815 24.13 0)
  2215. (effects (font (size 1.27 1.27)) (justify left bottom))
  2216. (uuid e4dc7078-2599-43c3-a705-01c266101c19)
  2217. )
  2218. (label "D5" (at 60.325 79.375 0)
  2219. (effects (font (size 1.27 1.27)) (justify left bottom))
  2220. (uuid e6ae620b-5d71-4ff5-aad7-4b6fd140a65f)
  2221. )
  2222. (label "D6" (at 60.325 76.835 0)
  2223. (effects (font (size 1.27 1.27)) (justify left bottom))
  2224. (uuid e9c03cb4-6af3-4c40-a85a-cc18c2787bb2)
  2225. )
  2226. (label "~{OE}" (at 229.235 62.865 0)
  2227. (effects (font (size 1.27 1.27)) (justify left bottom))
  2228. (uuid ee4d7f80-9373-4a41-bd52-04a1804ebdaf)
  2229. )
  2230. (label "A5" (at 124.46 44.45 180)
  2231. (effects (font (size 1.27 1.27)) (justify right bottom))
  2232. (uuid f05c9808-12d7-4222-93f6-b70a9ad9c1f6)
  2233. )
  2234. (label "PIN21" (at 180.34 45.085 180)
  2235. (effects (font (size 1.27 1.27)) (justify right bottom))
  2236. (uuid f2250e10-63f2-4cff-b93d-029c6b18a2d8)
  2237. )
  2238. (label "D1" (at 40.005 79.375 180)
  2239. (effects (font (size 1.27 1.27)) (justify right bottom))
  2240. (uuid f404ffe8-cf1d-4450-a1ee-66b74ea7ce76)
  2241. )
  2242. (label "A9" (at 124.46 54.61 180)
  2243. (effects (font (size 1.27 1.27)) (justify right bottom))
  2244. (uuid f56dbf7f-976e-4c2a-bccd-facb10e9e134)
  2245. )
  2246. (label "A5" (at 40.005 61.595 180)
  2247. (effects (font (size 1.27 1.27)) (justify right bottom))
  2248. (uuid ff9bfa9b-0c97-4025-b131-f1a485095d09)
  2249. )
  2250. (symbol (lib_id "Device:D") (at 65.405 51.435 180) (unit 1)
  2251. (in_bom yes) (on_board yes) (fields_autoplaced)
  2252. (uuid 05568466-85ba-42df-a276-ede09eb51a9f)
  2253. (property "Reference" "D1" (id 0) (at 65.405 44.45 0))
  2254. (property "Value" "1N5819" (id 1) (at 65.405 46.99 0))
  2255. (property "Footprint" "Diode_SMD:D_SOD-323" (id 2) (at 65.405 51.435 0)
  2256. (effects (font (size 1.27 1.27)) hide)
  2257. )
  2258. (property "Datasheet" "~" (id 3) (at 65.405 51.435 0)
  2259. (effects (font (size 1.27 1.27)) hide)
  2260. )
  2261. (property "LCSC" "C191023" (id 4) (at 65.405 51.435 0)
  2262. (effects (font (size 1.27 1.27)) hide)
  2263. )
  2264. (pin "1" (uuid 47d0e9a1-1319-4332-b335-db8d2ed9822e))
  2265. (pin "2" (uuid 50238349-133e-4a54-bdd9-0a3803aedb3b))
  2266. )
  2267. (symbol (lib_id "power:+5V") (at 76.2 48.895 0) (unit 1)
  2268. (in_bom yes) (on_board yes) (fields_autoplaced)
  2269. (uuid 11bb4d9e-e8dc-4537-b931-d86dd2ee245e)
  2270. (property "Reference" "#PWR0102" (id 0) (at 76.2 52.705 0)
  2271. (effects (font (size 1.27 1.27)) hide)
  2272. )
  2273. (property "Value" "+5V" (id 1) (at 76.2 43.18 0))
  2274. (property "Footprint" "" (id 2) (at 76.2 48.895 0)
  2275. (effects (font (size 1.27 1.27)) hide)
  2276. )
  2277. (property "Datasheet" "" (id 3) (at 76.2 48.895 0)
  2278. (effects (font (size 1.27 1.27)) hide)
  2279. )
  2280. (pin "1" (uuid f5c1b237-0f9b-412a-afe8-db05b8ea95b4))
  2281. )
  2282. (symbol (lib_id "Device:R_Small") (at 105.41 24.765 0) (unit 1)
  2283. (in_bom yes) (on_board yes)
  2284. (uuid 169517e4-6bdb-4561-a60d-34b92fbfc370)
  2285. (property "Reference" "R9" (id 0) (at 104.394 34.544 90)
  2286. (effects (font (size 1.27 1.27)) (justify left))
  2287. )
  2288. (property "Value" "100k" (id 1) (at 104.775 31.115 90)
  2289. (effects (font (size 1.27 1.27)) (justify left))
  2290. )
  2291. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 105.41 24.765 0)
  2292. (effects (font (size 1.27 1.27)) hide)
  2293. )
  2294. (property "Datasheet" "~" (id 3) (at 105.41 24.765 0)
  2295. (effects (font (size 1.27 1.27)) hide)
  2296. )
  2297. (property "LCSC" "C25741" (id 4) (at 105.41 24.765 0)
  2298. (effects (font (size 1.27 1.27)) hide)
  2299. )
  2300. (pin "1" (uuid f68c8c23-1dd3-41be-9d10-9f9255481cb7))
  2301. (pin "2" (uuid e98a31c4-397c-4c96-b109-3dd524a77c5d))
  2302. )
  2303. (symbol (lib_id "power:GND") (at 40.005 85.725 0) (unit 1)
  2304. (in_bom yes) (on_board yes) (fields_autoplaced)
  2305. (uuid 1911fcfe-7c24-4a76-aee7-51ed059a954d)
  2306. (property "Reference" "#PWR0105" (id 0) (at 40.005 92.075 0)
  2307. (effects (font (size 1.27 1.27)) hide)
  2308. )
  2309. (property "Value" "GND" (id 1) (at 40.005 90.17 0))
  2310. (property "Footprint" "" (id 2) (at 40.005 85.725 0)
  2311. (effects (font (size 1.27 1.27)) hide)
  2312. )
  2313. (property "Datasheet" "" (id 3) (at 40.005 85.725 0)
  2314. (effects (font (size 1.27 1.27)) hide)
  2315. )
  2316. (pin "1" (uuid 15e7f6ea-4ecd-4b11-9e38-53843b1f6818))
  2317. )
  2318. (symbol (lib_id "power:+5V") (at 97.536 71.12 0) (unit 1)
  2319. (in_bom yes) (on_board yes) (fields_autoplaced)
  2320. (uuid 19307264-5606-47cf-8cbd-fe7b44f442de)
  2321. (property "Reference" "#PWR0111" (id 0) (at 97.536 74.93 0)
  2322. (effects (font (size 1.27 1.27)) hide)
  2323. )
  2324. (property "Value" "+5V" (id 1) (at 97.536 66.04 0))
  2325. (property "Footprint" "" (id 2) (at 97.536 71.12 0)
  2326. (effects (font (size 1.27 1.27)) hide)
  2327. )
  2328. (property "Datasheet" "" (id 3) (at 97.536 71.12 0)
  2329. (effects (font (size 1.27 1.27)) hide)
  2330. )
  2331. (pin "1" (uuid 84ba9eeb-385d-4293-a00a-4d6c5e5f2f6d))
  2332. )
  2333. (symbol (lib_id "power:+5V") (at 254.635 39.37 0) (unit 1)
  2334. (in_bom yes) (on_board yes) (fields_autoplaced)
  2335. (uuid 2384bef4-8a99-4b6d-846e-6d23d1cfb493)
  2336. (property "Reference" "#PWR0107" (id 0) (at 254.635 43.18 0)
  2337. (effects (font (size 1.27 1.27)) hide)
  2338. )
  2339. (property "Value" "+5V" (id 1) (at 254.635 34.29 0))
  2340. (property "Footprint" "" (id 2) (at 254.635 39.37 0)
  2341. (effects (font (size 1.27 1.27)) hide)
  2342. )
  2343. (property "Datasheet" "" (id 3) (at 254.635 39.37 0)
  2344. (effects (font (size 1.27 1.27)) hide)
  2345. )
  2346. (pin "1" (uuid 6ddf3413-2056-4469-82bc-cfc96aa792f2))
  2347. )
  2348. (symbol (lib_id "power:+5V") (at 59.69 22.86 0) (unit 1)
  2349. (in_bom yes) (on_board yes) (fields_autoplaced)
  2350. (uuid 29e13bea-8095-4c60-b3c9-ac6959871e0c)
  2351. (property "Reference" "#PWR0101" (id 0) (at 59.69 26.67 0)
  2352. (effects (font (size 1.27 1.27)) hide)
  2353. )
  2354. (property "Value" "+5V" (id 1) (at 59.69 17.145 0))
  2355. (property "Footprint" "" (id 2) (at 59.69 22.86 0)
  2356. (effects (font (size 1.27 1.27)) hide)
  2357. )
  2358. (property "Datasheet" "" (id 3) (at 59.69 22.86 0)
  2359. (effects (font (size 1.27 1.27)) hide)
  2360. )
  2361. (pin "1" (uuid c4363219-1a8d-4888-97bf-529f6b70a838))
  2362. )
  2363. (symbol (lib_id "Device:C_Small") (at 38.1 107.315 0) (unit 1)
  2364. (in_bom yes) (on_board yes) (fields_autoplaced)
  2365. (uuid 2b472a65-e336-45a2-a169-3cd40d5153b8)
  2366. (property "Reference" "C2" (id 0) (at 40.64 106.0512 0)
  2367. (effects (font (size 1.27 1.27)) (justify left))
  2368. )
  2369. (property "Value" "100nF" (id 1) (at 40.64 108.5912 0)
  2370. (effects (font (size 1.27 1.27)) (justify left))
  2371. )
  2372. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 38.1 107.315 0)
  2373. (effects (font (size 1.27 1.27)) hide)
  2374. )
  2375. (property "Datasheet" "~" (id 3) (at 38.1 107.315 0)
  2376. (effects (font (size 1.27 1.27)) hide)
  2377. )
  2378. (property "LCSC" "C1525" (id 4) (at 38.1 107.315 0)
  2379. (effects (font (size 1.27 1.27)) hide)
  2380. )
  2381. (pin "1" (uuid fa9c51c2-4227-4795-b2ed-f390baaa400a))
  2382. (pin "2" (uuid 1eee3274-d593-4bef-a13f-20730ffe0da1))
  2383. )
  2384. (symbol (lib_id "Device:R_Small") (at 222.885 40.005 0) (unit 1)
  2385. (in_bom yes) (on_board yes)
  2386. (uuid 48976517-0aaf-4dc7-a809-ecbda5f4172c)
  2387. (property "Reference" "R7" (id 0) (at 222.123 38.1 90)
  2388. (effects (font (size 1.27 1.27)) (justify left))
  2389. )
  2390. (property "Value" "100k" (id 1) (at 222.25 46.355 90)
  2391. (effects (font (size 1.27 1.27)) (justify left))
  2392. )
  2393. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 222.885 40.005 0)
  2394. (effects (font (size 1.27 1.27)) hide)
  2395. )
  2396. (property "Datasheet" "~" (id 3) (at 222.885 40.005 0)
  2397. (effects (font (size 1.27 1.27)) hide)
  2398. )
  2399. (property "LCSC" "C25741" (id 4) (at 222.885 40.005 0)
  2400. (effects (font (size 1.27 1.27)) hide)
  2401. )
  2402. (pin "1" (uuid afbda828-1dab-4040-90a0-199fba953b7e))
  2403. (pin "2" (uuid 055c3fad-1d9c-4edf-9048-f2e9712a24a7))
  2404. )
  2405. (symbol (lib_id "Device:R_Small") (at 224.79 40.005 0) (unit 1)
  2406. (in_bom yes) (on_board yes)
  2407. (uuid 48a35250-b6ca-4639-9850-0c2e2be45809)
  2408. (property "Reference" "R8" (id 0) (at 223.901 38.354 90)
  2409. (effects (font (size 1.27 1.27)) (justify left))
  2410. )
  2411. (property "Value" "100k" (id 1) (at 224.155 46.355 90)
  2412. (effects (font (size 1.27 1.27)) (justify left))
  2413. )
  2414. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 224.79 40.005 0)
  2415. (effects (font (size 1.27 1.27)) hide)
  2416. )
  2417. (property "Datasheet" "~" (id 3) (at 224.79 40.005 0)
  2418. (effects (font (size 1.27 1.27)) hide)
  2419. )
  2420. (property "LCSC" "C25741" (id 4) (at 224.79 40.005 0)
  2421. (effects (font (size 1.27 1.27)) hide)
  2422. )
  2423. (pin "1" (uuid d4b7235b-3d92-440d-b92c-30836f0f00e9))
  2424. (pin "2" (uuid 881feb3f-c634-462b-8ea8-dac4d01d9358))
  2425. )
  2426. (symbol (lib_id "Device:R_Small") (at 107.315 24.765 0) (unit 1)
  2427. (in_bom yes) (on_board yes)
  2428. (uuid 4e9cb3c0-7470-4e9e-9889-2254b5f60514)
  2429. (property "Reference" "R10" (id 0) (at 106.68 34.925 90)
  2430. (effects (font (size 1.27 1.27)) (justify left))
  2431. )
  2432. (property "Value" "100k" (id 1) (at 106.68 31.115 90)
  2433. (effects (font (size 1.27 1.27)) (justify left))
  2434. )
  2435. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 107.315 24.765 0)
  2436. (effects (font (size 1.27 1.27)) hide)
  2437. )
  2438. (property "Datasheet" "~" (id 3) (at 107.315 24.765 0)
  2439. (effects (font (size 1.27 1.27)) hide)
  2440. )
  2441. (property "LCSC" "C25741" (id 4) (at 107.315 24.765 0)
  2442. (effects (font (size 1.27 1.27)) hide)
  2443. )
  2444. (pin "1" (uuid d5cccf96-5da2-4572-883a-960355c68765))
  2445. (pin "2" (uuid 417ff2a4-03fb-46a5-933e-9a1c9646e526))
  2446. )
  2447. (symbol (lib_id "eprom_replacer:SST39SF020_tsop") (at 144.145 62.23 0) (unit 1)
  2448. (in_bom yes) (on_board yes)
  2449. (uuid 5c585914-8cfc-4eb9-a7cd-ecf2a11ee03f)
  2450. (property "Reference" "U2" (id 0) (at 140.335 27.94 0))
  2451. (property "Value" "SST39SF020" (id 1) (at 152.4 27.94 0))
  2452. (property "Footprint" "Package_SO:TSOP-I-32_14.4x8mm_P0.5mm" (id 2) (at 144.145 54.61 0)
  2453. (effects (font (size 1.27 1.27)) hide)
  2454. )
  2455. (property "Datasheet" "http://ww1.microchip.com/downloads/en/DeviceDoc/25022B.pdf" (id 3) (at 144.145 54.61 0)
  2456. (effects (font (size 1.27 1.27)) hide)
  2457. )
  2458. (property "LCSC" "C8205" (id 4) (at 144.145 62.23 0)
  2459. (effects (font (size 1.27 1.27)) hide)
  2460. )
  2461. (pin "24" (uuid ccc06ff2-a788-470c-8555-57ea77caacdd))
  2462. (pin "8" (uuid f5df227e-3c1b-4e28-aa13-48bd256e3665))
  2463. (pin "1" (uuid 2b8d1d6c-2296-4c29-8c0c-a3904e456e95))
  2464. (pin "10" (uuid 0d8f8963-dc71-46c4-ab1e-cba12a0995f1))
  2465. (pin "11" (uuid 045b51df-b9b4-4831-bbb3-525fdc09400b))
  2466. (pin "12" (uuid 18ec34b7-2f93-4018-b33c-32f4ba03ff6c))
  2467. (pin "13" (uuid d9b10c97-111f-4e77-9bbe-f0591d29f0d9))
  2468. (pin "14" (uuid 87f26966-0076-46c4-97d7-367e27de3ab9))
  2469. (pin "15" (uuid 3f3e7e6e-023a-4cf6-b9bc-2edd151df971))
  2470. (pin "16" (uuid 0203814d-ccf5-4462-b5dd-a0778fde4751))
  2471. (pin "17" (uuid 7b8ef105-c0b5-44f1-ab45-8a0b6e2d7d9a))
  2472. (pin "18" (uuid a108f587-eda3-4162-bc57-2e9b7c5c2412))
  2473. (pin "19" (uuid b6578fcf-15c5-4579-83f8-9b8cfddcf617))
  2474. (pin "2" (uuid e6f28631-2b8f-41a3-949f-7ee2cc4e2560))
  2475. (pin "20" (uuid 4e4ee7e8-7121-4f6a-8c1d-1c84a9fd76f9))
  2476. (pin "21" (uuid b9f70588-d885-49e3-8d4e-535b1f34cedd))
  2477. (pin "22" (uuid 28373c14-0c35-4580-8ea1-f949b7587de2))
  2478. (pin "23" (uuid 25c03db8-47bb-4818-bc05-3a17a874dbc8))
  2479. (pin "25" (uuid 9d0314bd-b467-4e36-ba5b-b70cb77a0f09))
  2480. (pin "26" (uuid 92c9cc49-1b02-40ec-9eec-f1d4719479e0))
  2481. (pin "27" (uuid d63cf213-6e09-4429-a89a-96b2d6d23673))
  2482. (pin "28" (uuid 3c8a7819-fcc6-4905-a57e-8efeb644c9a7))
  2483. (pin "29" (uuid a1e2b945-6d01-4d53-a514-26840b03b62f))
  2484. (pin "3" (uuid 8d060d0a-c535-4ede-a7ca-bf5d1862bfc2))
  2485. (pin "30" (uuid 17a1a1c2-354e-46c7-94ca-0e40d6a6f9d8))
  2486. (pin "31" (uuid 27d370f8-bab2-4e96-b544-3e29dfeb9af8))
  2487. (pin "32" (uuid 35866dff-1698-4334-b893-292d841a05a0))
  2488. (pin "4" (uuid 5df18283-a68b-4011-8806-1e7f9a61bc88))
  2489. (pin "5" (uuid 512fb5f7-7be2-4493-b0ea-8e7143b781e7))
  2490. (pin "6" (uuid 58115524-ad05-405f-8e82-16dcd2f87179))
  2491. (pin "7" (uuid c99caec2-4495-46be-ab9e-f268c364e8d5))
  2492. (pin "9" (uuid bca1d98e-ed9c-4015-be1d-808d141cd3cd))
  2493. )
  2494. (symbol (lib_id "power:+5V") (at 213.36 31.75 0) (unit 1)
  2495. (in_bom yes) (on_board yes) (fields_autoplaced)
  2496. (uuid 5e8e1e52-4473-4da2-8bec-9fc09f83fb3e)
  2497. (property "Reference" "#PWR0110" (id 0) (at 213.36 35.56 0)
  2498. (effects (font (size 1.27 1.27)) hide)
  2499. )
  2500. (property "Value" "+5V" (id 1) (at 213.36 26.67 0))
  2501. (property "Footprint" "" (id 2) (at 213.36 31.75 0)
  2502. (effects (font (size 1.27 1.27)) hide)
  2503. )
  2504. (property "Datasheet" "" (id 3) (at 213.36 31.75 0)
  2505. (effects (font (size 1.27 1.27)) hide)
  2506. )
  2507. (pin "1" (uuid aa8722f3-a86f-4d5c-b205-05474231ccc6))
  2508. )
  2509. (symbol (lib_id "power:GND") (at 31.75 113.665 0) (unit 1)
  2510. (in_bom yes) (on_board yes) (fields_autoplaced)
  2511. (uuid 6c017189-d972-43ab-a64d-84f85c4f7698)
  2512. (property "Reference" "#PWR0112" (id 0) (at 31.75 120.015 0)
  2513. (effects (font (size 1.27 1.27)) hide)
  2514. )
  2515. (property "Value" "GND" (id 1) (at 31.75 118.11 0))
  2516. (property "Footprint" "" (id 2) (at 31.75 113.665 0)
  2517. (effects (font (size 1.27 1.27)) hide)
  2518. )
  2519. (property "Datasheet" "" (id 3) (at 31.75 113.665 0)
  2520. (effects (font (size 1.27 1.27)) hide)
  2521. )
  2522. (pin "1" (uuid b0a4b860-d047-4f79-8998-5bcc1da90115))
  2523. )
  2524. (symbol (lib_id "power:+5V") (at 109.22 19.05 0) (unit 1)
  2525. (in_bom yes) (on_board yes) (fields_autoplaced)
  2526. (uuid 734d5c29-889c-4ea4-b69a-988bbab0d8ad)
  2527. (property "Reference" "#PWR0104" (id 0) (at 109.22 22.86 0)
  2528. (effects (font (size 1.27 1.27)) hide)
  2529. )
  2530. (property "Value" "+5V" (id 1) (at 109.22 13.97 0))
  2531. (property "Footprint" "" (id 2) (at 109.22 19.05 0)
  2532. (effects (font (size 1.27 1.27)) hide)
  2533. )
  2534. (property "Datasheet" "" (id 3) (at 109.22 19.05 0)
  2535. (effects (font (size 1.27 1.27)) hide)
  2536. )
  2537. (pin "1" (uuid 9f4ac38f-c697-498d-a2f2-e73fc2198496))
  2538. )
  2539. (symbol (lib_id "Device:R_Small") (at 211.455 40.005 0) (unit 1)
  2540. (in_bom yes) (on_board yes)
  2541. (uuid 7a1ba7ec-c39b-423e-9edb-5b856a7d2993)
  2542. (property "Reference" "R2" (id 0) (at 210.439 38.1 90)
  2543. (effects (font (size 1.27 1.27)) (justify left))
  2544. )
  2545. (property "Value" "100k" (id 1) (at 210.82 46.355 90)
  2546. (effects (font (size 1.27 1.27)) (justify left))
  2547. )
  2548. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 211.455 40.005 0)
  2549. (effects (font (size 1.27 1.27)) hide)
  2550. )
  2551. (property "Datasheet" "~" (id 3) (at 211.455 40.005 0)
  2552. (effects (font (size 1.27 1.27)) hide)
  2553. )
  2554. (property "LCSC" "C25741" (id 4) (at 211.455 40.005 0)
  2555. (effects (font (size 1.27 1.27)) hide)
  2556. )
  2557. (pin "1" (uuid 6f15666f-258f-4ee8-993f-a84c1c93a052))
  2558. (pin "2" (uuid ea055af7-5087-4bbc-bdf9-d876fe58bc8f))
  2559. )
  2560. (symbol (lib_id "Connector:Conn_01x05_Male") (at 35.56 29.21 0) (unit 1)
  2561. (in_bom yes) (on_board yes) (fields_autoplaced)
  2562. (uuid 80ad1150-d3f6-47c5-9814-1d34ea225d29)
  2563. (property "Reference" "J1" (id 0) (at 36.195 19.05 0))
  2564. (property "Value" "Conn_01x05_Male" (id 1) (at 36.195 21.59 0))
  2565. (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x05_P2.54mm_Vertical" (id 2) (at 35.56 29.21 0)
  2566. (effects (font (size 1.27 1.27)) hide)
  2567. )
  2568. (property "Datasheet" "~" (id 3) (at 35.56 29.21 0)
  2569. (effects (font (size 1.27 1.27)) hide)
  2570. )
  2571. (pin "1" (uuid ef9cf2f7-f6ba-473e-b2d4-51a9ba5dcbb4))
  2572. (pin "2" (uuid d34c6470-79fa-40d8-89e2-d3180a8ffeef))
  2573. (pin "3" (uuid 4fa84184-9e2b-44a2-96e2-51e8bcfb2871))
  2574. (pin "4" (uuid 9a0c5aae-99b7-491c-8cad-00884b7384c7))
  2575. (pin "5" (uuid f2357078-12c4-4022-805d-a95cf16c7225))
  2576. )
  2577. (symbol (lib_id "Device:R_Small") (at 109.22 24.765 0) (unit 1)
  2578. (in_bom yes) (on_board yes)
  2579. (uuid 838ebff8-9088-4488-8797-8ea4054d33ef)
  2580. (property "Reference" "R11" (id 0) (at 108.585 34.925 90)
  2581. (effects (font (size 1.27 1.27)) (justify left))
  2582. )
  2583. (property "Value" "100k" (id 1) (at 108.585 31.115 90)
  2584. (effects (font (size 1.27 1.27)) (justify left))
  2585. )
  2586. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 109.22 24.765 0)
  2587. (effects (font (size 1.27 1.27)) hide)
  2588. )
  2589. (property "Datasheet" "~" (id 3) (at 109.22 24.765 0)
  2590. (effects (font (size 1.27 1.27)) hide)
  2591. )
  2592. (property "LCSC" "C25741" (id 4) (at 109.22 24.765 0)
  2593. (effects (font (size 1.27 1.27)) hide)
  2594. )
  2595. (pin "1" (uuid be087f2c-6f75-4c10-880c-1f9d04f55db6))
  2596. (pin "2" (uuid 90039c45-52dc-4cc6-b023-a5198e7dcaad))
  2597. )
  2598. (symbol (lib_id "power:GND") (at 233.68 38.735 0) (unit 1)
  2599. (in_bom yes) (on_board yes) (fields_autoplaced)
  2600. (uuid 8b6ac2ad-45f4-4593-98d5-c130aab7a0cc)
  2601. (property "Reference" "#PWR0108" (id 0) (at 233.68 45.085 0)
  2602. (effects (font (size 1.27 1.27)) hide)
  2603. )
  2604. (property "Value" "GND" (id 1) (at 233.68 43.18 0))
  2605. (property "Footprint" "" (id 2) (at 233.68 38.735 0)
  2606. (effects (font (size 1.27 1.27)) hide)
  2607. )
  2608. (property "Datasheet" "" (id 3) (at 233.68 38.735 0)
  2609. (effects (font (size 1.27 1.27)) hide)
  2610. )
  2611. (pin "1" (uuid 59c670ae-77a4-4b44-9cd8-6aa43c622819))
  2612. )
  2613. (symbol (lib_id "power:+5V") (at 31.75 100.965 0) (unit 1)
  2614. (in_bom yes) (on_board yes) (fields_autoplaced)
  2615. (uuid 8bde7330-a3f8-415e-8cbd-36175c4f7f53)
  2616. (property "Reference" "#PWR0113" (id 0) (at 31.75 104.775 0)
  2617. (effects (font (size 1.27 1.27)) hide)
  2618. )
  2619. (property "Value" "+5V" (id 1) (at 31.75 95.25 0))
  2620. (property "Footprint" "" (id 2) (at 31.75 100.965 0)
  2621. (effects (font (size 1.27 1.27)) hide)
  2622. )
  2623. (property "Datasheet" "" (id 3) (at 31.75 100.965 0)
  2624. (effects (font (size 1.27 1.27)) hide)
  2625. )
  2626. (pin "1" (uuid 15a34135-fdaa-48f6-84af-823bfad3fc9e))
  2627. )
  2628. (symbol (lib_id "power:PWR_FLAG") (at 243.84 24.257 0) (unit 1)
  2629. (in_bom yes) (on_board yes) (fields_autoplaced)
  2630. (uuid 941474bd-5264-4c39-b770-87e471436a01)
  2631. (property "Reference" "#FLG0101" (id 0) (at 243.84 22.352 0)
  2632. (effects (font (size 1.27 1.27)) hide)
  2633. )
  2634. (property "Value" "PWR_FLAG" (id 1) (at 243.84 19.177 0))
  2635. (property "Footprint" "" (id 2) (at 243.84 24.257 0)
  2636. (effects (font (size 1.27 1.27)) hide)
  2637. )
  2638. (property "Datasheet" "~" (id 3) (at 243.84 24.257 0)
  2639. (effects (font (size 1.27 1.27)) hide)
  2640. )
  2641. (pin "1" (uuid 060d83eb-464d-48dd-88ff-65b9083a7d70))
  2642. )
  2643. (symbol (lib_id "Device:R_Small") (at 220.98 40.005 0) (unit 1)
  2644. (in_bom yes) (on_board yes)
  2645. (uuid 997a0b42-aab4-4ba3-9182-0929a2f3a00c)
  2646. (property "Reference" "R6" (id 0) (at 220.091 38.1 90)
  2647. (effects (font (size 1.27 1.27)) (justify left))
  2648. )
  2649. (property "Value" "100k" (id 1) (at 220.345 46.355 90)
  2650. (effects (font (size 1.27 1.27)) (justify left))
  2651. )
  2652. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 220.98 40.005 0)
  2653. (effects (font (size 1.27 1.27)) hide)
  2654. )
  2655. (property "Datasheet" "~" (id 3) (at 220.98 40.005 0)
  2656. (effects (font (size 1.27 1.27)) hide)
  2657. )
  2658. (property "LCSC" "C25741" (id 4) (at 220.98 40.005 0)
  2659. (effects (font (size 1.27 1.27)) hide)
  2660. )
  2661. (pin "1" (uuid 0ecc7640-2856-4d55-86db-9f54fcbf91c4))
  2662. (pin "2" (uuid 0218fe85-3b3f-40e8-9dad-22ef2dc94a63))
  2663. )
  2664. (symbol (lib_id "power:GND") (at 269.875 86.487 0) (unit 1)
  2665. (in_bom yes) (on_board yes) (fields_autoplaced)
  2666. (uuid 9ad4e3e8-18fd-4870-98a4-63da243e85b7)
  2667. (property "Reference" "#PWR0115" (id 0) (at 269.875 92.837 0)
  2668. (effects (font (size 1.27 1.27)) hide)
  2669. )
  2670. (property "Value" "GND" (id 1) (at 269.875 90.932 0))
  2671. (property "Footprint" "" (id 2) (at 269.875 86.487 0)
  2672. (effects (font (size 1.27 1.27)) hide)
  2673. )
  2674. (property "Datasheet" "" (id 3) (at 269.875 86.487 0)
  2675. (effects (font (size 1.27 1.27)) hide)
  2676. )
  2677. (pin "1" (uuid 6efc74ea-c150-4ba7-8f55-a2349ac95368))
  2678. )
  2679. (symbol (lib_id "Switch:SW_DIP_x12") (at 198.755 57.785 0) (unit 1)
  2680. (in_bom yes) (on_board yes) (fields_autoplaced)
  2681. (uuid a1fe3c47-fc4e-4194-b05a-0c42f095c141)
  2682. (property "Reference" "SW1" (id 0) (at 198.755 36.83 0))
  2683. (property "Value" "SW_DIP_x10" (id 1) (at 198.755 39.37 0))
  2684. (property "Footprint" "eprom_replacer:SW_DIP_SPSTx12_Slide_CTS_12LPSTJR_W5.8mm_P1.27mm_JPin" (id 2) (at 198.755 57.785 0)
  2685. (effects (font (size 1.27 1.27)) hide)
  2686. )
  2687. (property "Datasheet" "~" (id 3) (at 198.755 57.785 0)
  2688. (effects (font (size 1.27 1.27)) hide)
  2689. )
  2690. (pin "1" (uuid 54a4297f-8499-4176-8690-2030bf8503fb))
  2691. (pin "10" (uuid b440fb92-4be4-4046-b4ee-30415865f0fa))
  2692. (pin "11" (uuid 159409bc-bcf7-48ee-aa68-f3169ed52141))
  2693. (pin "12" (uuid a17c7a04-07be-4589-b242-8db6dfea861a))
  2694. (pin "13" (uuid 44905dd6-7f54-4e49-97c3-2141eaaec204))
  2695. (pin "14" (uuid bc60641c-dbcb-4fc4-9da0-ea0757d97191))
  2696. (pin "15" (uuid c037cb06-e751-4d33-a3a5-d09ee02fa656))
  2697. (pin "16" (uuid c9f80bc0-6133-4a2f-bcb9-685f16f11575))
  2698. (pin "17" (uuid f08e60ea-2b8b-42b9-8c00-c5ea74dd2f99))
  2699. (pin "18" (uuid e8aaf416-5ac4-4fc1-a74a-acd67a131ee7))
  2700. (pin "19" (uuid 1dc177c2-b8fd-4c59-aedc-8e4eb892302d))
  2701. (pin "2" (uuid d4acc02a-be37-4d76-8445-621425e4f0b6))
  2702. (pin "20" (uuid 16e5a0d0-7f46-4f96-8e9d-6780d2c3e967))
  2703. (pin "21" (uuid e97f4397-d0d2-4894-9777-e68a22ec6f82))
  2704. (pin "22" (uuid 716e592e-cfd3-48ef-9fa2-691787fdd9a1))
  2705. (pin "23" (uuid 70866347-04dc-4db7-b4f4-ec0d5143fa22))
  2706. (pin "24" (uuid 01561814-4027-4afe-81aa-3c5ce4dddcbf))
  2707. (pin "3" (uuid 5c652015-bb33-475a-a1e9-9504b1d6aa3c))
  2708. (pin "4" (uuid 60ed8f97-ffde-4d27-9487-1a53c95db830))
  2709. (pin "5" (uuid db4dce93-6368-4537-b5c3-510e63b03eb8))
  2710. (pin "6" (uuid b6776045-89d2-4009-adba-2093f451c9e5))
  2711. (pin "7" (uuid 2624ee06-7045-419c-8208-b4bb4e71447f))
  2712. (pin "8" (uuid 2aa1010f-ec77-4f71-bed1-c3b5a91e6a17))
  2713. (pin "9" (uuid 6420ae19-80a4-4e80-a1b8-f8afc0f5deec))
  2714. )
  2715. (symbol (lib_id "74xx:74LS138") (at 254.635 55.245 0) (unit 1)
  2716. (in_bom yes) (on_board yes) (fields_autoplaced)
  2717. (uuid a8e608a3-bfff-4bbd-872e-4d7f20cc0b2e)
  2718. (property "Reference" "U1" (id 0) (at 256.6544 40.005 0)
  2719. (effects (font (size 1.27 1.27)) (justify left))
  2720. )
  2721. (property "Value" "74AHCT138PW" (id 1) (at 256.6544 42.545 0)
  2722. (effects (font (size 1.27 1.27)) (justify left))
  2723. )
  2724. (property "Footprint" "Package_SO:TSSOP-16_4.4x5mm_P0.65mm" (id 2) (at 254.635 55.245 0)
  2725. (effects (font (size 1.27 1.27)) hide)
  2726. )
  2727. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS138" (id 3) (at 254.635 55.245 0)
  2728. (effects (font (size 1.27 1.27)) hide)
  2729. )
  2730. (pin "1" (uuid 73c53378-19ac-4f0b-bde0-cb7589c5ea49))
  2731. (pin "10" (uuid 5f0091c4-aac4-4b52-913e-eab4d176f908))
  2732. (pin "11" (uuid 2850b6b8-229b-43bd-8f26-c87926e9f0af))
  2733. (pin "12" (uuid 10f139e9-e758-4e6e-a948-d0ac4ea88eae))
  2734. (pin "13" (uuid 4e0ddee6-e61a-45ed-99f4-7362f93edbe8))
  2735. (pin "14" (uuid 2c6349d9-ac42-4d50-a8e3-ea68da4d0bda))
  2736. (pin "15" (uuid 84bf5d7f-ea0a-4a73-b7c3-19907a973455))
  2737. (pin "16" (uuid 40beaae6-2eee-49be-8284-1d271f2878a1))
  2738. (pin "2" (uuid 0d73a972-90fa-4e5a-a06b-281728a382b4))
  2739. (pin "3" (uuid 67f55622-e78d-41b9-8d86-e4705531ba01))
  2740. (pin "4" (uuid 68383988-1ef5-4e9b-b430-1fca93bd3bb7))
  2741. (pin "5" (uuid a3fddd46-f0d3-46b5-86ed-9a8bfabee76e))
  2742. (pin "6" (uuid cfa477ac-88da-4565-85e7-cb85ad1b5a4b))
  2743. (pin "7" (uuid 9b7f1651-8ecf-41f4-9526-4e25a7355373))
  2744. (pin "8" (uuid 109acf44-8431-4497-b539-f48b7261b72d))
  2745. (pin "9" (uuid 7596f93b-f948-408a-8117-b3bcc51cefc5))
  2746. )
  2747. (symbol (lib_id "power:+5V") (at 252.095 23.622 0) (unit 1)
  2748. (in_bom yes) (on_board yes) (fields_autoplaced)
  2749. (uuid acb6d453-4ac8-4fcc-8411-20dfe1a40c9c)
  2750. (property "Reference" "#PWR0114" (id 0) (at 252.095 27.432 0)
  2751. (effects (font (size 1.27 1.27)) hide)
  2752. )
  2753. (property "Value" "+5V" (id 1) (at 252.095 18.542 0))
  2754. (property "Footprint" "" (id 2) (at 252.095 23.622 0)
  2755. (effects (font (size 1.27 1.27)) hide)
  2756. )
  2757. (property "Datasheet" "" (id 3) (at 252.095 23.622 0)
  2758. (effects (font (size 1.27 1.27)) hide)
  2759. )
  2760. (pin "1" (uuid c8d9343e-cb77-43b9-809f-bcc6f3344823))
  2761. )
  2762. (symbol (lib_id "power:PWR_FLAG") (at 269.875 84.582 0) (unit 1)
  2763. (in_bom yes) (on_board yes) (fields_autoplaced)
  2764. (uuid af3a35f6-fa06-4d7f-9d21-139818892501)
  2765. (property "Reference" "#FLG0102" (id 0) (at 269.875 82.677 0)
  2766. (effects (font (size 1.27 1.27)) hide)
  2767. )
  2768. (property "Value" "PWR_FLAG" (id 1) (at 269.875 79.502 0))
  2769. (property "Footprint" "" (id 2) (at 269.875 84.582 0)
  2770. (effects (font (size 1.27 1.27)) hide)
  2771. )
  2772. (property "Datasheet" "~" (id 3) (at 269.875 84.582 0)
  2773. (effects (font (size 1.27 1.27)) hide)
  2774. )
  2775. (pin "1" (uuid ad8640b0-b945-45ea-8f47-a08daa4793f7))
  2776. )
  2777. (symbol (lib_id "Device:R_Small") (at 213.36 40.005 0) (unit 1)
  2778. (in_bom yes) (on_board yes)
  2779. (uuid b81c3c90-e7f1-4c0e-8bac-412870ee22fc)
  2780. (property "Reference" "R3" (id 0) (at 212.471 38.354 90)
  2781. (effects (font (size 1.27 1.27)) (justify left))
  2782. )
  2783. (property "Value" "100k" (id 1) (at 212.725 46.355 90)
  2784. (effects (font (size 1.27 1.27)) (justify left))
  2785. )
  2786. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 213.36 40.005 0)
  2787. (effects (font (size 1.27 1.27)) hide)
  2788. )
  2789. (property "Datasheet" "~" (id 3) (at 213.36 40.005 0)
  2790. (effects (font (size 1.27 1.27)) hide)
  2791. )
  2792. (property "LCSC" "C25741" (id 4) (at 213.36 40.005 0)
  2793. (effects (font (size 1.27 1.27)) hide)
  2794. )
  2795. (pin "1" (uuid ddb486a1-00ff-4e95-aacc-db9f7d3bb6c7))
  2796. (pin "2" (uuid d432ad35-855a-49f7-9395-f4d6118f524f))
  2797. )
  2798. (symbol (lib_id "Connector_Generic:Conn_02x12_Counter_Clockwise") (at 48.895 69.215 0) (unit 1)
  2799. (in_bom yes) (on_board yes)
  2800. (uuid d2332246-dea9-4cad-8e06-8098a53ecf1c)
  2801. (property "Reference" "J2" (id 0) (at 50.165 49.53 0))
  2802. (property "Value" "Conn_02x12_Counter_Clockwise" (id 1) (at 31.115 45.72 0))
  2803. (property "Footprint" "Package_DIP:DIP-24_W15.24mm_Socket" (id 2) (at 48.895 69.215 0)
  2804. (effects (font (size 1.27 1.27)) hide)
  2805. )
  2806. (property "Datasheet" "~" (id 3) (at 48.895 69.215 0)
  2807. (effects (font (size 1.27 1.27)) hide)
  2808. )
  2809. (pin "1" (uuid 1f64c2dd-3643-420e-9b24-6a70ba241dd9))
  2810. (pin "10" (uuid 167000ec-e78f-461f-a553-b4d74c576506))
  2811. (pin "11" (uuid 414aa5f3-f658-4753-a082-003b9324378d))
  2812. (pin "12" (uuid a964727f-17c2-4af2-a867-018f8bc7a312))
  2813. (pin "13" (uuid d5b41b82-7f75-43d2-90d3-76f70b993ce0))
  2814. (pin "14" (uuid d6b07107-f192-4d95-aebc-01071f92a108))
  2815. (pin "15" (uuid 030c3fa9-cebd-4e33-a207-bc2dab797b0c))
  2816. (pin "16" (uuid 5f36d6c6-ed58-4bce-b1d4-1cfa80d5f06e))
  2817. (pin "17" (uuid f48d53e2-9b6d-44e9-81a2-75258640ce22))
  2818. (pin "18" (uuid a6bdc4d5-ccf6-46c8-8a62-4982a75b5f37))
  2819. (pin "19" (uuid bf83dc83-1ea3-49f9-81cf-51bd68b05216))
  2820. (pin "2" (uuid 57fd6451-db9f-4afd-9e61-e83f3878b932))
  2821. (pin "20" (uuid afcce374-b166-4759-b30d-4e8b19b2975c))
  2822. (pin "21" (uuid 01ca5424-8ca1-4a4a-a85c-888481309656))
  2823. (pin "22" (uuid fa640d63-3853-4c60-9118-9b8c9bbc6868))
  2824. (pin "23" (uuid c078dc0f-0741-46dd-ab5f-d6e2ef303246))
  2825. (pin "24" (uuid 3919c555-9b24-4dab-80bb-67359edfd227))
  2826. (pin "3" (uuid 95dabd70-34db-4abc-af41-d96968d3802c))
  2827. (pin "4" (uuid b43413b6-2a7a-4649-ab18-265877eee162))
  2828. (pin "5" (uuid 84a359ec-4811-4da5-a70e-e8e73f4a6a6e))
  2829. (pin "6" (uuid f737fe4c-7bdb-415b-a4cc-ea085a7da81c))
  2830. (pin "7" (uuid 71f76d1c-4f9a-49a4-9af5-c5e54ad56d49))
  2831. (pin "8" (uuid 3d01f859-90fd-4f3f-a596-27b361f18f93))
  2832. (pin "9" (uuid 3986d204-1dd5-42a3-8766-94ca4dd4fa12))
  2833. )
  2834. (symbol (lib_id "Device:R_Small") (at 209.55 40.005 0) (unit 1)
  2835. (in_bom yes) (on_board yes)
  2836. (uuid d7860db2-8430-4739-913f-4586aba4a4f2)
  2837. (property "Reference" "R1" (id 0) (at 208.28 38.1 90)
  2838. (effects (font (size 1.27 1.27)) (justify left))
  2839. )
  2840. (property "Value" "100k" (id 1) (at 208.915 46.355 90)
  2841. (effects (font (size 1.27 1.27)) (justify left))
  2842. )
  2843. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 209.55 40.005 0)
  2844. (effects (font (size 1.27 1.27)) hide)
  2845. )
  2846. (property "Datasheet" "~" (id 3) (at 209.55 40.005 0)
  2847. (effects (font (size 1.27 1.27)) hide)
  2848. )
  2849. (property "LCSC" "C25741" (id 4) (at 209.55 40.005 90)
  2850. (effects (font (size 1.27 1.27)) hide)
  2851. )
  2852. (pin "1" (uuid 53a6d0f2-3809-44ef-a49e-4f0c8e661d96))
  2853. (pin "2" (uuid 2d3eee90-9038-4be9-a59e-d331ed740638))
  2854. )
  2855. (symbol (lib_id "power:GND") (at 144.145 93.345 0) (unit 1)
  2856. (in_bom yes) (on_board yes) (fields_autoplaced)
  2857. (uuid d9917163-1cc9-4987-ac2a-93800fc90ea1)
  2858. (property "Reference" "#PWR0106" (id 0) (at 144.145 99.695 0)
  2859. (effects (font (size 1.27 1.27)) hide)
  2860. )
  2861. (property "Value" "GND" (id 1) (at 144.145 97.79 0))
  2862. (property "Footprint" "" (id 2) (at 144.145 93.345 0)
  2863. (effects (font (size 1.27 1.27)) hide)
  2864. )
  2865. (property "Datasheet" "" (id 3) (at 144.145 93.345 0)
  2866. (effects (font (size 1.27 1.27)) hide)
  2867. )
  2868. (pin "1" (uuid 7aa8f60b-ea0a-4ca1-9f4a-6e4c429e0d7b))
  2869. )
  2870. (symbol (lib_id "Device:R_Small") (at 111.125 24.765 0) (unit 1)
  2871. (in_bom yes) (on_board yes)
  2872. (uuid daa15b7e-ab04-418e-b612-a549158e72a3)
  2873. (property "Reference" "R12" (id 0) (at 110.49 34.925 90)
  2874. (effects (font (size 1.27 1.27)) (justify left))
  2875. )
  2876. (property "Value" "100k" (id 1) (at 110.49 31.115 90)
  2877. (effects (font (size 1.27 1.27)) (justify left))
  2878. )
  2879. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 111.125 24.765 0)
  2880. (effects (font (size 1.27 1.27)) hide)
  2881. )
  2882. (property "Datasheet" "~" (id 3) (at 111.125 24.765 0)
  2883. (effects (font (size 1.27 1.27)) hide)
  2884. )
  2885. (property "LCSC" "C25741" (id 4) (at 111.125 24.765 0)
  2886. (effects (font (size 1.27 1.27)) hide)
  2887. )
  2888. (pin "1" (uuid c5c42e5d-f48a-4c83-ac02-01473b26bc6e))
  2889. (pin "2" (uuid 5592a6c5-98b1-414d-a533-2fbe15dd1b49))
  2890. )
  2891. (symbol (lib_id "Device:R_Small") (at 215.265 40.005 0) (unit 1)
  2892. (in_bom yes) (on_board yes)
  2893. (uuid dc81feb1-c402-44b0-af86-eed12b7ab9d2)
  2894. (property "Reference" "R4" (id 0) (at 214.503 38.1 90)
  2895. (effects (font (size 1.27 1.27)) (justify left))
  2896. )
  2897. (property "Value" "100k" (id 1) (at 214.63 46.355 90)
  2898. (effects (font (size 1.27 1.27)) (justify left))
  2899. )
  2900. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 215.265 40.005 0)
  2901. (effects (font (size 1.27 1.27)) hide)
  2902. )
  2903. (property "Datasheet" "~" (id 3) (at 215.265 40.005 0)
  2904. (effects (font (size 1.27 1.27)) hide)
  2905. )
  2906. (property "LCSC" "C25741" (id 4) (at 215.265 40.005 0)
  2907. (effects (font (size 1.27 1.27)) hide)
  2908. )
  2909. (pin "1" (uuid 31d1dad2-eda5-4809-bc21-eda594d42f22))
  2910. (pin "2" (uuid de40c6a9-247e-4305-a887-6d19e9457464))
  2911. )
  2912. (symbol (lib_id "power:GND") (at 254.635 74.295 0) (unit 1)
  2913. (in_bom yes) (on_board yes) (fields_autoplaced)
  2914. (uuid de308556-6066-4df2-b2f1-11a04ae85651)
  2915. (property "Reference" "#PWR0109" (id 0) (at 254.635 80.645 0)
  2916. (effects (font (size 1.27 1.27)) hide)
  2917. )
  2918. (property "Value" "GND" (id 1) (at 254.635 78.74 0))
  2919. (property "Footprint" "" (id 2) (at 254.635 74.295 0)
  2920. (effects (font (size 1.27 1.27)) hide)
  2921. )
  2922. (property "Datasheet" "" (id 3) (at 254.635 74.295 0)
  2923. (effects (font (size 1.27 1.27)) hide)
  2924. )
  2925. (pin "1" (uuid 3260e44f-1431-46df-bb0b-0384d76e5145))
  2926. )
  2927. (symbol (lib_id "Device:R_Small") (at 219.075 40.005 0) (unit 1)
  2928. (in_bom yes) (on_board yes)
  2929. (uuid e59f81f1-4386-493e-a150-f5d7c5dd0c5d)
  2930. (property "Reference" "R5" (id 0) (at 218.059 38.1 90)
  2931. (effects (font (size 1.27 1.27)) (justify left))
  2932. )
  2933. (property "Value" "100k" (id 1) (at 218.44 46.355 90)
  2934. (effects (font (size 1.27 1.27)) (justify left))
  2935. )
  2936. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 219.075 40.005 0)
  2937. (effects (font (size 1.27 1.27)) hide)
  2938. )
  2939. (property "Datasheet" "~" (id 3) (at 219.075 40.005 0)
  2940. (effects (font (size 1.27 1.27)) hide)
  2941. )
  2942. (property "LCSC" "C25741" (id 4) (at 219.075 40.005 0)
  2943. (effects (font (size 1.27 1.27)) hide)
  2944. )
  2945. (pin "1" (uuid 05d9fe18-e936-4553-8bf3-f0aebfd311ba))
  2946. (pin "2" (uuid 125ce249-d950-459e-826d-4e24483a4b00))
  2947. )
  2948. (symbol (lib_id "power:+5V") (at 144.145 27.94 0) (unit 1)
  2949. (in_bom yes) (on_board yes) (fields_autoplaced)
  2950. (uuid efe01849-1bae-4f95-b560-ac8b55dde0a8)
  2951. (property "Reference" "#PWR0103" (id 0) (at 144.145 31.75 0)
  2952. (effects (font (size 1.27 1.27)) hide)
  2953. )
  2954. (property "Value" "+5V" (id 1) (at 144.145 22.86 0))
  2955. (property "Footprint" "" (id 2) (at 144.145 27.94 0)
  2956. (effects (font (size 1.27 1.27)) hide)
  2957. )
  2958. (property "Datasheet" "" (id 3) (at 144.145 27.94 0)
  2959. (effects (font (size 1.27 1.27)) hide)
  2960. )
  2961. (pin "1" (uuid 71136f30-d603-4590-baa5-7619068e2b82))
  2962. )
  2963. (symbol (lib_id "Device:C_Small") (at 26.67 107.315 0) (unit 1)
  2964. (in_bom yes) (on_board yes) (fields_autoplaced)
  2965. (uuid fd32d61c-c9d6-4f2b-9879-dcd10ee84e00)
  2966. (property "Reference" "C1" (id 0) (at 29.21 106.0512 0)
  2967. (effects (font (size 1.27 1.27)) (justify left))
  2968. )
  2969. (property "Value" "100nF" (id 1) (at 29.21 108.5912 0)
  2970. (effects (font (size 1.27 1.27)) (justify left))
  2971. )
  2972. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 26.67 107.315 0)
  2973. (effects (font (size 1.27 1.27)) hide)
  2974. )
  2975. (property "Datasheet" "~" (id 3) (at 26.67 107.315 0)
  2976. (effects (font (size 1.27 1.27)) hide)
  2977. )
  2978. (property "LCSC" "C1525" (id 4) (at 26.67 107.315 0)
  2979. (effects (font (size 1.27 1.27)) hide)
  2980. )
  2981. (pin "1" (uuid be4f69e5-7e2e-417b-ace4-fa29e1ddefa3))
  2982. (pin "2" (uuid b588c093-c6a5-40ad-8625-4c03c709ee87))
  2983. )
  2984. (sheet_instances
  2985. (path "/" (page "1"))
  2986. )
  2987. (symbol_instances
  2988. (path "/941474bd-5264-4c39-b770-87e471436a01"
  2989. (reference "#FLG0101") (unit 1) (value "PWR_FLAG") (footprint "")
  2990. )
  2991. (path "/af3a35f6-fa06-4d7f-9d21-139818892501"
  2992. (reference "#FLG0102") (unit 1) (value "PWR_FLAG") (footprint "")
  2993. )
  2994. (path "/29e13bea-8095-4c60-b3c9-ac6959871e0c"
  2995. (reference "#PWR0101") (unit 1) (value "+5V") (footprint "")
  2996. )
  2997. (path "/11bb4d9e-e8dc-4537-b931-d86dd2ee245e"
  2998. (reference "#PWR0102") (unit 1) (value "+5V") (footprint "")
  2999. )
  3000. (path "/efe01849-1bae-4f95-b560-ac8b55dde0a8"
  3001. (reference "#PWR0103") (unit 1) (value "+5V") (footprint "")
  3002. )
  3003. (path "/734d5c29-889c-4ea4-b69a-988bbab0d8ad"
  3004. (reference "#PWR0104") (unit 1) (value "+5V") (footprint "")
  3005. )
  3006. (path "/1911fcfe-7c24-4a76-aee7-51ed059a954d"
  3007. (reference "#PWR0105") (unit 1) (value "GND") (footprint "")
  3008. )
  3009. (path "/d9917163-1cc9-4987-ac2a-93800fc90ea1"
  3010. (reference "#PWR0106") (unit 1) (value "GND") (footprint "")
  3011. )
  3012. (path "/2384bef4-8a99-4b6d-846e-6d23d1cfb493"
  3013. (reference "#PWR0107") (unit 1) (value "+5V") (footprint "")
  3014. )
  3015. (path "/8b6ac2ad-45f4-4593-98d5-c130aab7a0cc"
  3016. (reference "#PWR0108") (unit 1) (value "GND") (footprint "")
  3017. )
  3018. (path "/de308556-6066-4df2-b2f1-11a04ae85651"
  3019. (reference "#PWR0109") (unit 1) (value "GND") (footprint "")
  3020. )
  3021. (path "/5e8e1e52-4473-4da2-8bec-9fc09f83fb3e"
  3022. (reference "#PWR0110") (unit 1) (value "+5V") (footprint "")
  3023. )
  3024. (path "/19307264-5606-47cf-8cbd-fe7b44f442de"
  3025. (reference "#PWR0111") (unit 1) (value "+5V") (footprint "")
  3026. )
  3027. (path "/6c017189-d972-43ab-a64d-84f85c4f7698"
  3028. (reference "#PWR0112") (unit 1) (value "GND") (footprint "")
  3029. )
  3030. (path "/8bde7330-a3f8-415e-8cbd-36175c4f7f53"
  3031. (reference "#PWR0113") (unit 1) (value "+5V") (footprint "")
  3032. )
  3033. (path "/acb6d453-4ac8-4fcc-8411-20dfe1a40c9c"
  3034. (reference "#PWR0114") (unit 1) (value "+5V") (footprint "")
  3035. )
  3036. (path "/9ad4e3e8-18fd-4870-98a4-63da243e85b7"
  3037. (reference "#PWR0115") (unit 1) (value "GND") (footprint "")
  3038. )
  3039. (path "/fd32d61c-c9d6-4f2b-9879-dcd10ee84e00"
  3040. (reference "C1") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  3041. )
  3042. (path "/2b472a65-e336-45a2-a169-3cd40d5153b8"
  3043. (reference "C2") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  3044. )
  3045. (path "/05568466-85ba-42df-a276-ede09eb51a9f"
  3046. (reference "D1") (unit 1) (value "1N5819") (footprint "Diode_SMD:D_SOD-323")
  3047. )
  3048. (path "/80ad1150-d3f6-47c5-9814-1d34ea225d29"
  3049. (reference "J1") (unit 1) (value "Conn_01x05_Male") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x05_P2.54mm_Vertical")
  3050. )
  3051. (path "/d2332246-dea9-4cad-8e06-8098a53ecf1c"
  3052. (reference "J2") (unit 1) (value "Conn_02x12_Counter_Clockwise") (footprint "Package_DIP:DIP-24_W15.24mm_Socket")
  3053. )
  3054. (path "/d7860db2-8430-4739-913f-4586aba4a4f2"
  3055. (reference "R1") (unit 1) (value "100k") (footprint "Resistor_SMD:R_0402_1005Metric")
  3056. )
  3057. (path "/7a1ba7ec-c39b-423e-9edb-5b856a7d2993"
  3058. (reference "R2") (unit 1) (value "100k") (footprint "Resistor_SMD:R_0402_1005Metric")
  3059. )
  3060. (path "/b81c3c90-e7f1-4c0e-8bac-412870ee22fc"
  3061. (reference "R3") (unit 1) (value "100k") (footprint "Resistor_SMD:R_0402_1005Metric")
  3062. )
  3063. (path "/dc81feb1-c402-44b0-af86-eed12b7ab9d2"
  3064. (reference "R4") (unit 1) (value "100k") (footprint "Resistor_SMD:R_0402_1005Metric")
  3065. )
  3066. (path "/e59f81f1-4386-493e-a150-f5d7c5dd0c5d"
  3067. (reference "R5") (unit 1) (value "100k") (footprint "Resistor_SMD:R_0402_1005Metric")
  3068. )
  3069. (path "/997a0b42-aab4-4ba3-9182-0929a2f3a00c"
  3070. (reference "R6") (unit 1) (value "100k") (footprint "Resistor_SMD:R_0402_1005Metric")
  3071. )
  3072. (path "/48976517-0aaf-4dc7-a809-ecbda5f4172c"
  3073. (reference "R7") (unit 1) (value "100k") (footprint "Resistor_SMD:R_0402_1005Metric")
  3074. )
  3075. (path "/48a35250-b6ca-4639-9850-0c2e2be45809"
  3076. (reference "R8") (unit 1) (value "100k") (footprint "Resistor_SMD:R_0402_1005Metric")
  3077. )
  3078. (path "/169517e4-6bdb-4561-a60d-34b92fbfc370"
  3079. (reference "R9") (unit 1) (value "100k") (footprint "Resistor_SMD:R_0402_1005Metric")
  3080. )
  3081. (path "/4e9cb3c0-7470-4e9e-9889-2254b5f60514"
  3082. (reference "R10") (unit 1) (value "100k") (footprint "Resistor_SMD:R_0402_1005Metric")
  3083. )
  3084. (path "/838ebff8-9088-4488-8797-8ea4054d33ef"
  3085. (reference "R11") (unit 1) (value "100k") (footprint "Resistor_SMD:R_0402_1005Metric")
  3086. )
  3087. (path "/daa15b7e-ab04-418e-b612-a549158e72a3"
  3088. (reference "R12") (unit 1) (value "100k") (footprint "Resistor_SMD:R_0402_1005Metric")
  3089. )
  3090. (path "/a1fe3c47-fc4e-4194-b05a-0c42f095c141"
  3091. (reference "SW1") (unit 1) (value "SW_DIP_x10") (footprint "eprom_replacer:SW_DIP_SPSTx12_Slide_CTS_12LPSTJR_W5.8mm_P1.27mm_JPin")
  3092. )
  3093. (path "/a8e608a3-bfff-4bbd-872e-4d7f20cc0b2e"
  3094. (reference "U1") (unit 1) (value "74AHCT138PW") (footprint "Package_SO:TSSOP-16_4.4x5mm_P0.65mm")
  3095. )
  3096. (path "/5c585914-8cfc-4eb9-a7cd-ecf2a11ee03f"
  3097. (reference "U2") (unit 1) (value "SST39SF020") (footprint "Package_SO:TSOP-I-32_14.4x8mm_P0.5mm")
  3098. )
  3099. )
  3100. )