From eeabd07d50371f8ac691bd1f94a44c3a9de3206b Mon Sep 17 00:00:00 2001 From: deneb <deneb@screee.ee> Date: Thu, 13 Feb 2025 00:56:59 +0100 Subject: [PATCH] initial commit --- .gitmodules | 6 + code/.clangd | 10 + code/Makefile | 6 + code/avr-ds3231 | 1 + code/avr-i2c | 1 + code/main.c | 253 + code/nixie | Bin 0 -> 14488 bytes kicad/.gitignore | 1 + kicad/nixie.kicad_pcb | 2 + kicad/nixie.kicad_prl | 83 + kicad/nixie.kicad_pro | 392 ++ kicad/nixie.kicad_sch | 11316 ++++++++++++++++++++++++++++++++++++++++ 12 files changed, 12071 insertions(+) create mode 100644 .gitmodules create mode 100644 code/.clangd create mode 100644 code/Makefile create mode 160000 code/avr-ds3231 create mode 160000 code/avr-i2c create mode 100644 code/main.c create mode 100755 code/nixie create mode 100644 kicad/.gitignore create mode 100644 kicad/nixie.kicad_pcb create mode 100644 kicad/nixie.kicad_prl create mode 100644 kicad/nixie.kicad_pro create mode 100644 kicad/nixie.kicad_sch diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..44591e3 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,6 @@ +[submodule "code/avr-ds3231"] + path = code/avr-ds3231 + url = https://github.com/ecnx/avr-ds3231.git +[submodule "code/avr-i2c"] + path = code/avr-i2c + url = https://github.com/ecnx/avr-i2c.git diff --git a/code/.clangd b/code/.clangd new file mode 100644 index 0000000..fb7a155 --- /dev/null +++ b/code/.clangd @@ -0,0 +1,10 @@ +CompileFlags: + Compiler: avr-gcc + Add: [ + -mmcu=atmega48, + -I/usr/avr/include, + -Iavr-i2c, + -Iavr-ds3231, + -Wall, + -Wextra, + ] diff --git a/code/Makefile b/code/Makefile new file mode 100644 index 0000000..9943536 --- /dev/null +++ b/code/Makefile @@ -0,0 +1,6 @@ +compile: + avr-gcc -DF_CPU=8000000 -Iavr-i2c -Iavr-ds3231 -Os -flto -mmcu=atmega48 main.c avr-ds3231/ds3231.c avr-i2c/i2c.c -o nixie + avr-size -A nixie + +flash: + avrdude -p m48 -c usbasp -P usb -B4 -U flash:w:nixie diff --git a/code/avr-ds3231 b/code/avr-ds3231 new file mode 160000 index 0000000..8606f78 --- /dev/null +++ b/code/avr-ds3231 @@ -0,0 +1 @@ +Subproject commit 8606f788c818af62633931564b64dbeb077357ee diff --git a/code/avr-i2c b/code/avr-i2c new file mode 160000 index 0000000..474767e --- /dev/null +++ b/code/avr-i2c @@ -0,0 +1 @@ +Subproject commit 474767e1c0ed2cd1d8e30828b769143c9a5547bb diff --git a/code/main.c b/code/main.c new file mode 100644 index 0000000..fb30457 --- /dev/null +++ b/code/main.c @@ -0,0 +1,253 @@ +#include <avr/interrupt.h> +#include <avr/io.h> +#include <stdbool.h> +#include <stdint.h> +#include <util/delay.h> + +#include <ds3231.h> + +#ifndef bit +#define bit(b) (1 << b) +#endif + +/** + * high nibble: BCD output digit + * low nibble: button inputs, leftmost button is least significant bit + */ +#define BCD_BTN_PORT PORTD +#define BTN_PIN PIND +#define BCD_BTN_DDR DDRD + +/** + * low nibble: nixie anode power + * one bit per digit, leftmost nixie is least significant bit + */ +#define NIXIE_PORT PORTC +#define NIXIE_DDR DDRC + +/** + * other control pins + * - bit 0: K155ID1 power (active high) + * - bit 1: HV shutdown (active high; not connected) + * - bit 2: dots anode power + */ +#define ETC_PORT PORTB +#define ETC_DDR DDRB + +#define ETC_ID1 bit(0) +#define ETC_HVSD bit(1) +#define ETC_DOTS bit(2) + +#define READ_RTC_INTERVAL_MS 71 +#define BTN_DEBOUNCE_MS 50 + +// runtime variables +volatile uint32_t msec = 0; + +struct ds3231_clock_t clock = {0}; +bool flag_read_rtc = true; + +bool set_mode_active = false; +uint8_t set_mode_idx = 0; +uint8_t set_mode_digits[4] = {0}; + +uint32_t button_inhibit_ms[4] = {0}; +bool flag_button_pressed[4] = {false}; + +bool is_button_pressed(uint8_t id) { + return (BTN_PIN & bit(id)) == 0; +} + +void handle_button_press(uint8_t id) { + switch (id) { + // toggle set mode; set new time + case 0: { + if (set_mode_active) { + clock.hours = set_mode_digits[0] * 10 + set_mode_digits[1]; + clock.minutes = set_mode_digits[2] * 10 + set_mode_digits[3]; + clock.seconds = 0; + ds3231_write_clock(&clock); + + set_mode_active = false; + } else { + ds3231_read_clock(&clock); + set_mode_digits[0] = clock.hours / 10; + set_mode_digits[1] = clock.hours % 10; + set_mode_digits[2] = clock.minutes / 10; + set_mode_digits[3] = clock.minutes % 10; + + set_mode_active = true; + } + + break; + } + + // move between digits + case 1: { + if (set_mode_active) { + set_mode_idx = (set_mode_idx + 1) % 4; + } + + break; + } + + // up + case 2: { + if (set_mode_active) { + set_mode_digits[set_mode_idx]++; + + if (set_mode_idx == 0) { + set_mode_digits[set_mode_idx] %= 3; + } else if (set_mode_idx == 1 && set_mode_digits[0] == 2) { + set_mode_digits[set_mode_idx] %= 4; + } else if (set_mode_idx == 2) { + set_mode_digits[set_mode_idx] %= 6; + } else { + set_mode_digits[set_mode_idx] %= 10; + } + } + + break; + } + + // down + case 3: { + if (set_mode_active) { + set_mode_digits[set_mode_idx]--; + + if (set_mode_idx == 0) { + set_mode_digits[set_mode_idx] += 3; + set_mode_digits[set_mode_idx] %= 3; + } else if (set_mode_idx == 1 && set_mode_digits[0] == 2) { + set_mode_digits[set_mode_idx] += 4; + set_mode_digits[set_mode_idx] %= 4; + } else if (set_mode_idx == 2) { + set_mode_digits[set_mode_idx] += 6; + set_mode_digits[set_mode_idx] %= 6; + } else { + set_mode_digits[set_mode_idx] += 10; + set_mode_digits[set_mode_idx] %= 10; + } + } + + break; + } + } +} + +/** + * sets up timer0 for 1ms interrupts + */ +void timer_setup() { + // Set the compare value to 249 to make the timer trigger once every 250 clock cycles. + TCCR0A = bit(WGM01); + OCR0A = 124; + + // Enable the timer and interrupts + TIMSK0 |= bit(OCIE0A); + sei(); + + // Set clock prescaler for timer0 to 1/64 (= 250kHz) + // This also starts the timer + TCCR0B |= 0b00000011; + // TCCR0B |= 0b00000101; +} + +bool error = false; + +int main() { + BCD_BTN_DDR = 0xf0; // set BCD pins as output + BCD_BTN_PORT = 0x0f; // enable input pull-ups + + NIXIE_DDR = 0x0f; + + ETC_DDR = 0x07; + ETC_PORT |= ETC_ID1; // enable power to K155ID1 + + timer_setup(); + + // button interrupts + PCMSK2 |= 0x0f; // enable pin change interrupts on button pins + PCICR |= bit(PCIE2); + + for (;;) { + if (flag_read_rtc) { + flag_read_rtc = false; + + if (ds3231_read_clock(&clock) != 0) { + error = true; + } + + if (clock.seconds % 2 == 0) { + ETC_PORT &= ~ETC_DOTS; + } else { + ETC_PORT |= ETC_DOTS; + } + } + + for (int i = 0; i < 4; i++) { + if (flag_button_pressed[i]) { + flag_button_pressed[i] = false; + handle_button_press(i); + } + } + } +} + +void clear_digits() { + NIXIE_PORT = 0; + BCD_BTN_PORT &= ~(0xf0); +} + +void show_digit(uint8_t digit, uint8_t nixie_idx) { + BCD_BTN_PORT &= ~(0xf0); + BCD_BTN_PORT |= digit << 4; + NIXIE_PORT = bit(nixie_idx); +} + +// millisecond counter +ISR(TIMER0_COMPA_vect) { + // time + msec++; + if (msec % READ_RTC_INTERVAL_MS == 0) { + flag_read_rtc = true; + } + + // dots + if (set_mode_active && msec % 250 == 0) { + ETC_PORT ^= ETC_DOTS; + } + + // digits + uint8_t nixie_idx = msec % 4; + if (set_mode_active) { + if (nixie_idx == set_mode_idx || msec % 16 < 4) { + show_digit(set_mode_digits[nixie_idx], nixie_idx); + } else { + clear_digits(); + } + } else { + uint32_t digit = nixie_idx == 0 ? clock.hours / 10 + : nixie_idx == 1 ? clock.hours % 10 + : nixie_idx == 2 ? clock.minutes / 10 + : clock.minutes % 10; + show_digit(digit, nixie_idx); + } + + // button debounce + for (int i = 0; i < 4; i++) { + if (button_inhibit_ms[i] > 0) { + button_inhibit_ms[i]--; + } + } +} + +// button press detection +ISR(PCINT2_vect) { + for (int i = 0; i < 4; i++) { + if (is_button_pressed(i) && button_inhibit_ms[i] == 0) { + flag_button_pressed[i] = true; + button_inhibit_ms[i] = BTN_DEBOUNCE_MS; + } + } +} diff --git a/code/nixie b/code/nixie new file mode 100755 index 0000000000000000000000000000000000000000..bec1614f02fdb17326677ba944eaac5a2ada9bc7 GIT binary patch literal 14488 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 literal 0 HcmV?d00001 diff --git a/kicad/.gitignore b/kicad/.gitignore new file mode 100644 index 0000000..0eb59b2 --- /dev/null +++ b/kicad/.gitignore @@ -0,0 +1 @@ +nixie-backups/* diff --git a/kicad/nixie.kicad_pcb b/kicad/nixie.kicad_pcb new file mode 100644 index 0000000..ef218ba --- /dev/null +++ b/kicad/nixie.kicad_pcb @@ -0,0 +1,2 @@ +(kicad_pcb (version 20240108) (generator "pcbnew") (generator_version "8.0") +) \ No newline at end of file diff --git a/kicad/nixie.kicad_prl b/kicad/nixie.kicad_prl new file mode 100644 index 0000000..c3d1af7 --- /dev/null +++ b/kicad/nixie.kicad_prl @@ -0,0 +1,83 @@ +{ + "board": { + "active_layer": 0, + "active_layer_preset": "", + "auto_track_width": true, + "hidden_netclasses": [], + "hidden_nets": [], + "high_contrast_mode": 0, + "net_color_mode": 1, + "opacity": { + "images": 0.6, + "pads": 1.0, + "tracks": 1.0, + "vias": 1.0, + "zones": 0.6 + }, + "selection_filter": { + "dimensions": true, + "footprints": true, + "graphics": true, + "keepouts": true, + "lockedItems": false, + "otherItems": true, + "pads": true, + "text": true, + "tracks": true, + "vias": true, + "zones": true + }, + "visible_items": [ + 0, + 1, + 2, + 3, + 4, + 5, + 8, + 9, + 10, + 11, + 12, + 13, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 32, + 33, + 34, + 35, + 36, + 39, + 40 + ], + "visible_layers": "fffffff_ffffffff", + "zone_display_mode": 0 + }, + "git": { + "repo_password": "", + "repo_type": "", + "repo_username": "", + "ssh_key": "" + }, + "meta": { + "filename": "nixie.kicad_prl", + "version": 3 + }, + "project": { + "files": [] + } +} diff --git a/kicad/nixie.kicad_pro b/kicad/nixie.kicad_pro new file mode 100644 index 0000000..d43b253 --- /dev/null +++ b/kicad/nixie.kicad_pro @@ -0,0 +1,392 @@ +{ + "board": { + "3dviewports": [], + "design_settings": { + "defaults": {}, + "diff_pair_dimensions": [], + "drc_exclusions": [], + "rules": {}, + "track_widths": [], + "via_dimensions": [] + }, + "ipc2581": { + "dist": "", + "distpn": "", + "internal_id": "", + "mfg": "", + "mpn": "" + }, + "layer_presets": [], + "viewports": [] + }, + "boards": [], + "cvpcb": { + "equivalence_files": [] + }, + "erc": { + "erc_exclusions": [], + "meta": { + "version": 0 + }, + "pin_map": [ + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 2 + ], + [ + 0, + 2, + 0, + 1, + 0, + 0, + 1, + 0, + 2, + 2, + 2, + 2 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 2 + ], + [ + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 2, + 1, + 1, + 2 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 2 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 2 + ], + [ + 1, + 1, + 1, + 1, + 1, + 0, + 1, + 1, + 1, + 1, + 1, + 2 + ], + [ + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 2 + ], + [ + 0, + 2, + 1, + 2, + 0, + 0, + 1, + 0, + 2, + 2, + 2, + 2 + ], + [ + 0, + 2, + 0, + 1, + 0, + 0, + 1, + 0, + 2, + 0, + 0, + 2 + ], + [ + 0, + 2, + 1, + 1, + 0, + 0, + 1, + 0, + 2, + 0, + 0, + 2 + ], + [ + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2 + ] + ], + "rule_severities": { + "bus_definition_conflict": "error", + "bus_entry_needed": "error", + "bus_to_bus_conflict": "error", + "bus_to_net_conflict": "error", + "conflicting_netclasses": "error", + "different_unit_footprint": "error", + "different_unit_net": "error", + "duplicate_reference": "error", + "duplicate_sheet_names": "error", + "endpoint_off_grid": "warning", + "extra_units": "error", + "global_label_dangling": "warning", + "hier_label_mismatch": "error", + "label_dangling": "error", + "lib_symbol_issues": "warning", + "missing_bidi_pin": "warning", + "missing_input_pin": "warning", + "missing_power_pin": "error", + "missing_unit": "warning", + "multiple_net_names": "warning", + "net_not_bus_member": "warning", + "no_connect_connected": "warning", + "no_connect_dangling": "warning", + "pin_not_connected": "error", + "pin_not_driven": "error", + "pin_to_pin": "warning", + "power_pin_not_driven": "error", + "similar_labels": "warning", + "simulation_model_issue": "ignore", + "unannotated": "error", + "unit_value_mismatch": "error", + "unresolved_variable": "error", + "wire_dangling": "error" + } + }, + "libraries": { + "pinned_footprint_libs": [], + "pinned_symbol_libs": [] + }, + "meta": { + "filename": "nixie.kicad_pro", + "version": 1 + }, + "net_settings": { + "classes": [ + { + "bus_width": 12, + "clearance": 0.2, + "diff_pair_gap": 0.25, + "diff_pair_via_gap": 0.25, + "diff_pair_width": 0.2, + "line_style": 0, + "microvia_diameter": 0.3, + "microvia_drill": 0.1, + "name": "Default", + "pcb_color": "rgba(0, 0, 0, 0.000)", + "schematic_color": "rgba(0, 0, 0, 0.000)", + "track_width": 0.2, + "via_diameter": 0.6, + "via_drill": 0.3, + "wire_width": 6 + } + ], + "meta": { + "version": 3 + }, + "net_colors": null, + "netclass_assignments": null, + "netclass_patterns": [] + }, + "pcbnew": { + "last_paths": { + "gencad": "", + "idf": "", + "netlist": "", + "plot": "", + "pos_files": "", + "specctra_dsn": "", + "step": "", + "svg": "", + "vrml": "" + }, + "page_layout_descr_file": "" + }, + "schematic": { + "annotate_start_num": 0, + "bom_export_filename": "", + "bom_fmt_presets": [], + "bom_fmt_settings": { + "field_delimiter": ",", + "keep_line_breaks": false, + "keep_tabs": false, + "name": "CSV", + "ref_delimiter": ",", + "ref_range_delimiter": "", + "string_delimiter": "\"" + }, + "bom_presets": [], + "bom_settings": { + "exclude_dnp": false, + "fields_ordered": [ + { + "group_by": false, + "label": "Reference", + "name": "Reference", + "show": true + }, + { + "group_by": true, + "label": "Value", + "name": "Value", + "show": true + }, + { + "group_by": false, + "label": "Datasheet", + "name": "Datasheet", + "show": true + }, + { + "group_by": false, + "label": "Footprint", + "name": "Footprint", + "show": true + }, + { + "group_by": false, + "label": "Qty", + "name": "${QUANTITY}", + "show": true + }, + { + "group_by": true, + "label": "DNP", + "name": "${DNP}", + "show": true + } + ], + "filter_string": "", + "group_symbols": true, + "name": "Grouped By Value", + "sort_asc": true, + "sort_field": "Reference" + }, + "connection_grid_size": 50.0, + "drawing": { + "dashed_lines_dash_length_ratio": 12.0, + "dashed_lines_gap_length_ratio": 3.0, + "default_line_thickness": 6.0, + "default_text_size": 50.0, + "field_names": [], + "intersheets_ref_own_page": false, + "intersheets_ref_prefix": "", + "intersheets_ref_short": false, + "intersheets_ref_show": false, + "intersheets_ref_suffix": "", + "junction_size_choice": 3, + "label_size_ratio": 0.375, + "operating_point_overlay_i_precision": 3, + "operating_point_overlay_i_range": "~A", + "operating_point_overlay_v_precision": 3, + "operating_point_overlay_v_range": "~V", + "overbar_offset_ratio": 1.23, + "pin_symbol_size": 25.0, + "text_offset_ratio": 0.15 + }, + "legacy_lib_dir": "", + "legacy_lib_list": [], + "meta": { + "version": 1 + }, + "net_format_name": "", + "page_layout_descr_file": "", + "plot_directory": "", + "spice_current_sheet_as_root": false, + "spice_external_command": "spice \"%I\"", + "spice_model_current_sheet_as_root": true, + "spice_save_all_currents": false, + "spice_save_all_dissipations": false, + "spice_save_all_voltages": false, + "subpart_first_id": 65, + "subpart_id_separator": 0 + }, + "sheets": [ + [ + "7c670055-6eae-4e4c-be40-3c8d8a0ecd74", + "Root" + ] + ], + "text_variables": {} +} diff --git a/kicad/nixie.kicad_sch b/kicad/nixie.kicad_sch new file mode 100644 index 0000000..7d77839 --- /dev/null +++ b/kicad/nixie.kicad_sch @@ -0,0 +1,11316 @@ +(kicad_sch + (version 20231120) + (generator "eeschema") + (generator_version "8.0") + (uuid "7c670055-6eae-4e4c-be40-3c8d8a0ecd74") + (paper "A4") + (lib_symbols + (symbol "74xx_IEEE:74141" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U2" + (at 2.286 22.352 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "К155ИД1" + (at 2.286 19.812 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "74141_0_0" + (pin power_in line + (at 0 -17.78 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "12" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 0 17.78 270) + (length 2.54) + (name "VCC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (symbol "74141_0_1" + (rectangle + (start -12.7 15.24) + (end 12.7 -15.24) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + ) + (symbol "74141_1_1" + (pin open_collector line + (at 15.24 -8.89 180) + (length 2.54) + (name "~{Q8}" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin open_collector line + (at 15.24 -6.35 180) + (length 2.54) + (name "~{Q7}" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin open_collector line + (at 15.24 -3.81 180) + (length 2.54) + (name "~{Q6}" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "11" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin open_collector line + (at 15.24 1.27 180) + (length 2.54) + (name "~{Q4}" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "13" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin open_collector line + (at 15.24 -1.27 180) + (length 2.54) + (name "~{Q5}" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "14" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin open_collector line + (at 15.24 8.89 180) + (length 2.54) + (name "~{Q1}" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "15" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin open_collector line + (at 15.24 11.43 180) + (length 2.54) + (name "~{Q0}" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "16" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin open_collector line + (at 15.24 -11.43 180) + (length 2.54) + (name "~{Q9}" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -15.24 3.81 0) + (length 2.54) + (name "A" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -15.24 -3.81 0) + (length 2.54) + (name "D" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -15.24 1.27 0) + (length 2.54) + (name "B" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -15.24 -1.27 0) + (length 2.54) + (name "C" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin open_collector line + (at 15.24 6.35 180) + (length 2.54) + (name "~{Q2}" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin open_collector line + (at 15.24 3.81 180) + (length 2.54) + (name "~{Q3}" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Connector_Generic:Conn_01x02" + (pin_names + (offset 1.016) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "J" + (at 0 2.54 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Conn_01x02" + (at 0 -5.08 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "connector" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "Connector*:*_1x??_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "Conn_01x02_1_1" + (rectangle + (start -1.27 -2.413) + (end 0 -2.667) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 0.127) + (end 0 -0.127) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 1.27) + (end 1.27 -3.81) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (pin passive line + (at -5.08 0 0) + (length 3.81) + (name "Pin_1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -2.54 0) + (length 3.81) + (name "Pin_2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Device:Battery_Cell" + (pin_numbers hide) + (pin_names + (offset 0) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "BT" + (at 2.54 2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "Battery_Cell" + (at 2.54 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at 0 1.524 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 1.524 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Single-cell battery" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "battery cell" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "Battery_Cell_0_1" + (rectangle + (start -2.286 1.778) + (end 2.286 1.524) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (rectangle + (start -1.524 1.016) + (end 1.524 0.508) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (polyline + (pts + (xy 0 0.762) (xy 0 0) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 1.778) (xy 0 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.762 3.048) (xy 1.778 3.048) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.27 3.556) (xy 1.27 2.54) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "Battery_Cell_1_1" + (pin passive line + (at 0 5.08 270) + (length 2.54) + (name "+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -2.54 90) + (length 2.54) + (name "-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Device:R" + (pin_numbers hide) + (pin_names + (offset 0) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "R" + (at 2.032 0 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "R" + (at 0 0 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at -1.778 0 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Resistor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "R res resistor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "R_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "R_0_1" + (rectangle + (start -1.016 -2.54) + (end 1.016 2.54) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "R_1_1" + (pin passive line + (at 0 3.81 270) + (length 1.27) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -3.81 90) + (length 1.27) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "INS-1_1" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "N" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "INS-1" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "INS-1_1_0_1" + (circle + (center 0 0) + (radius 5.08) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 2.54 -2.54) + (radius 0.635) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "INS-1_1_1_1" + (pin passive line + (at -7.62 0 0) + (length 2.54) + (name "C" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 0 180) + (length 2.54) + (name "A" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "MCU_Microchip_ATmega:ATmega48-20P" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U1" + (at 0 10.16 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "ATmega48-20P" + (at 0 7.62 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Package_DIP:DIP-28_W7.62mm" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + (italic yes) + ) + (hide yes) + ) + ) + (property "Datasheet" "http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-2545-8-bit-AVR-Microcontroller-ATmega48-88-168_Datasheet.pdf" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "20MHz, 4kB Flash, 512B SRAM, 256B EEPROM, DIP-28" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "AVR 8bit Microcontroller MegaAVR" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "DIP*W7.62mm*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "ATmega48-20P_0_1" + (rectangle + (start -12.7 24.13) + (end 12.7 -16.51) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + ) + (symbol "ATmega48-20P_1_1" + (pin bidirectional line + (at -15.24 2.54 0) + (length 2.54) + (name "~{RESET}/PC6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -15.24 12.7 0) + (length 2.54) + (name "XTAL2/PB7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -15.24 -7.62 0) + (length 2.54) + (name "PD5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "11" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -15.24 -10.16 0) + (length 2.54) + (name "PD6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "12" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -15.24 -12.7 0) + (length 2.54) + (name "PD7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "13" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 20.32 180) + (length 2.54) + (name "PB0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "14" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 17.78 180) + (length 2.54) + (name "PB1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "15" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 15.24 180) + (length 2.54) + (name "PB2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "16" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 12.7 180) + (length 2.54) + (name "PB3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "17" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -15.24 20.32 0) + (length 2.54) + (name "PB4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "18" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -15.24 17.78 0) + (length 2.54) + (name "PB5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "19" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 -5.08 180) + (length 2.54) + (name "PD0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 2.54 26.67 270) + (length 2.54) + (name "AVCC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "20" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -2.54 26.67 270) + (length 2.54) + (name "AREF" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "21" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -19.05 90) + (length 2.54) hide + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "22" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 7.62 180) + (length 2.54) + (name "PC0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "23" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 5.08 180) + (length 2.54) + (name "PC1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "24" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 2.54 180) + (length 2.54) + (name "PC2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "25" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 0 180) + (length 2.54) + (name "PC3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "26" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -15.24 7.62 0) + (length 2.54) + (name "PC4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "27" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -15.24 5.08 0) + (length 2.54) + (name "PC5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "28" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 -7.62 180) + (length 2.54) + (name "PD1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 -10.16 180) + (length 2.54) + (name "PD2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 -12.7 180) + (length 2.54) + (name "PD3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -15.24 -5.08 0) + (length 2.54) + (name "PD4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 0 26.67 270) + (length 2.54) + (name "VCC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 0 -19.05 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -15.24 15.24 0) + (length 2.54) + (name "XTAL1/PB6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Switch:SW_Push" + (pin_numbers hide) + (pin_names + (offset 1.016) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "SW" + (at 1.27 2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "SW_Push" + (at 0 -1.524 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 5.08 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 5.08 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Push button switch, generic, two pins" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "switch normally-open pushbutton push-button" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "SW_Push_0_1" + (circle + (center -2.032 0) + (radius 0.508) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 1.27) (xy 0 3.048) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 2.54 1.27) (xy -2.54 1.27) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 2.032 0) + (radius 0.508) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (pin passive line + (at -5.08 0 0) + (length 2.54) + (name "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 5.08 0 180) + (length 2.54) + (name "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Timer_RTC:DS3231M" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at -7.62 8.89 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Value" "DS3231M" + (at 10.16 8.89 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "Package_SO:SOIC-16W_7.5x10.3mm_P1.27mm" + (at 0 -15.24 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "http://datasheets.maximintegrated.com/en/ds/DS3231.pdf" + (at 6.858 1.27 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Extremely Accurate I2C-Integrated RTC/TCXO/Crystal SOIC-16" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "RTC TCXO Realtime Time Clock Crystal Oscillator I2C" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "SOIC*7.5x10.3mm*P1.27mm*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "DS3231M_0_1" + (rectangle + (start -10.16 7.62) + (end 10.16 -7.62) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + ) + (symbol "DS3231M_1_1" + (pin open_collector line + (at 12.7 5.08 180) + (length 2.54) + (name "32KHZ" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -10.16 90) + (length 2.54) hide + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -10.16 90) + (length 2.54) hide + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "11" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -10.16 90) + (length 2.54) hide + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "12" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 0 -10.16 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "13" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 0 10.16 270) + (length 2.54) + (name "VBAT" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "14" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -12.7 2.54 0) + (length 2.54) + (name "SDA" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "15" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -12.7 5.08 0) + (length 2.54) + (name "SCL" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "16" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -2.54 10.16 270) + (length 2.54) + (name "VCC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin open_collector line + (at 12.7 -2.54 180) + (length 2.54) + (name "~{INT}/SQW" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -12.7 -5.08 0) + (length 2.54) + (name "~{RST}" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -10.16 90) + (length 2.54) hide + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -10.16 90) + (length 2.54) hide + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -10.16 90) + (length 2.54) hide + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -10.16 90) + (length 2.54) hide + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -10.16 90) + (length 2.54) hide + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Transistor_BJT:MPSA42" + (pin_names + (offset 1.016) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "Q" + (at 5.08 1.905 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "MPSA42" + (at 5.08 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_TO_SOT_THT:TO-92_Inline" + (at 5.08 -1.905 0) + (effects + (font + (size 1.27 1.27) + (italic yes) + ) + (justify left) + (hide yes) + ) + ) + (property "Datasheet" "http://www.onsemi.com/pub_link/Collateral/MPSA42-D.PDF" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (property "Description" "0.5A Ic, 300V Vce, NPN High Voltage Transistor, TO-92" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "NPN High Voltage Transistor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "TO?92*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "MPSA42_0_1" + (polyline + (pts + (xy 0 0) (xy 0.635 0) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.635 0.635) (xy 2.54 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.635 -0.635) (xy 2.54 -2.54) (xy 2.54 -2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.635 1.905) (xy 0.635 -1.905) (xy 0.635 -1.905) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.27 -1.778) (xy 1.778 -1.27) (xy 2.286 -2.286) (xy 1.27 -1.778) (xy 1.27 -1.778) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (circle + (center 1.27 0) + (radius 2.8194) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "MPSA42_1_1" + (pin passive line + (at 2.54 -5.08 90) + (length 2.54) + (name "E" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -5.08 0 0) + (length 5.08) + (name "B" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 2.54 5.08 270) + (length 2.54) + (name "C" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Transistor_BJT:MPSA92" + (pin_names + (offset 1.016) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "Q" + (at 5.08 1.905 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "MPSA92" + (at 5.08 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_TO_SOT_THT:TO-92_Inline" + (at 5.08 -1.905 0) + (effects + (font + (size 1.27 1.27) + (italic yes) + ) + (justify left) + (hide yes) + ) + ) + (property "Datasheet" "http://www.onsemi.com/pub_link/Collateral/MPSA92-D.PDF" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (property "Description" "0.5A Ic, 300V Vce, PNP High Voltage Transistor, TO-92" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "PNP High Voltage Transistor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "TO?92*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "MPSA92_0_1" + (polyline + (pts + (xy 0 0) (xy 0.635 0) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 2.54 -2.54) (xy 0.635 -0.635) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 2.54 2.54) (xy 0.635 0.635) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.635 1.905) (xy 0.635 -1.905) (xy 0.635 -1.905) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type outline) + ) + ) + (polyline + (pts + (xy 1.905 -2.413) (xy 2.413 -1.905) (xy 1.397 -1.397) (xy 1.905 -2.413) (xy 1.905 -2.413) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (circle + (center 1.27 0) + (radius 2.8194) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "MPSA92_1_1" + (pin passive line + (at 2.54 -5.08 90) + (length 2.54) + (name "E" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -5.08 0 0) + (length 5.08) + (name "B" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 2.54 5.08 270) + (length 2.54) + (name "C" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "nixies-us:IN-17" + (pin_numbers hide) + (pin_names + (offset 1.016) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "N" + (at -2.54 20.955 0) + (effects + (font + (size 1.143 1.143) + ) + (justify left bottom) + ) + ) + (property "Value" "IN-17" + (at 0 0 0) + (effects + (font + (size 1.143 1.143) + ) + (justify left bottom) + (hide yes) + ) + ) + (property "Footprint" "nixies-us_IN-17" + (at 0.762 3.81 0) + (effects + (font + (size 0.508 0.508) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_locked" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "ki_fp_filters" "*IN-17*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "IN-17_1_0" + (polyline + (pts + (xy -5.08 -10.795) (xy -5.08 13.335) + ) + (stroke + (width 0) + (type solid) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 7.62 -10.795) (xy 7.62 13.335) + ) + (stroke + (width 0) + (type solid) + ) + (fill + (type none) + ) + ) + ) + (symbol "IN-17_1_1" + (arc + (start -5.08 -10.795) + (mid 1.27 -17.145) + (end 7.62 -10.795) + (stroke + (width 0) + (type solid) + ) + (fill + (type none) + ) + ) + (arc + (start 7.62 13.335) + (mid 1.27 19.685) + (end -5.08 13.335) + (stroke + (width 0) + (type solid) + ) + (fill + (type none) + ) + ) + (pin bidirectional line + (at -7.62 -10.16 0) + (length 2.54) + (name "0" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "0" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin bidirectional line + (at -7.62 12.7 0) + (length 2.54) + (name "1" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "1" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin bidirectional line + (at -7.62 10.16 0) + (length 2.54) + (name "2" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "2" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin bidirectional line + (at -7.62 7.62 0) + (length 2.54) + (name "3" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "3" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin bidirectional line + (at -7.62 5.08 0) + (length 2.54) + (name "4" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "4" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin bidirectional line + (at -7.62 2.54 0) + (length 2.54) + (name "5" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "5" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin bidirectional line + (at -7.62 0 0) + (length 2.54) + (name "6" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "6" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin bidirectional line + (at -7.62 -2.54 0) + (length 2.54) + (name "7" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "7" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin bidirectional line + (at -7.62 -5.08 0) + (length 2.54) + (name "8" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "8" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin bidirectional line + (at -7.62 -7.62 0) + (length 2.54) + (name "9" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "9" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin bidirectional line + (at 10.16 0 180) + (length 2.54) + (name "A" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "A" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + ) + ) + (symbol "nixies-us:INS-1" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "N" + (at 0 -7.366 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "INS-1" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "INS-1_0_1" + (circle + (center 0 0) + (radius 5.08) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 2.54 -2.54) + (radius 0.635) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "INS-1_1_1" + (pin passive line + (at -7.62 0 0) + (length 2.54) + (name "C" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 0 180) + (length 2.54) + (name "A" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "power:+5V" + (power) + (pin_numbers hide) + (pin_names + (offset 0) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "#PWR" + (at 0 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+5V" + (at 0 3.556 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"+5V\"" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "global power" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "+5V_0_1" + (polyline + (pts + (xy -0.762 1.27) (xy 0 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 0) (xy 0 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 2.54) (xy 0.762 1.27) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "+5V_1_1" + (pin power_in line + (at 0 0 90) + (length 0) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "power:GND" + (power) + (pin_numbers hide) + (pin_names + (offset 0) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "#PWR" + (at 0 -6.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 0 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "global power" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "GND_0_1" + (polyline + (pts + (xy 0 0) (xy 0 -1.27) (xy 1.27 -1.27) (xy 0 -2.54) (xy -1.27 -1.27) (xy 0 -1.27) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "GND_1_1" + (pin power_in line + (at 0 0 270) + (length 0) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "power:VDC" + (power) + (pin_numbers hide) + (pin_names + (offset 0) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "#PWR" + (at 0 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "VDC" + (at 0 3.556 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"VDC\"" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "global power" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "VDC_0_1" + (polyline + (pts + (xy -0.762 1.27) (xy 0 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 0) (xy 0 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 2.54) (xy 0.762 1.27) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "VDC_1_1" + (pin power_in line + (at 0 0 90) + (length 0) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + ) + (junction + (at 165.1 99.06) + (diameter 0) + (color 0 0 0 0) + (uuid "06a0ef70-7de5-419c-adbc-fb29e5ad8224") + ) + (junction + (at 165.1 88.9) + (diameter 0) + (color 0 0 0 0) + (uuid "3311805f-343c-450d-8657-a5726a1bd7bc") + ) + (junction + (at 165.1 24.13) + (diameter 0) + (color 0 0 0 0) + (uuid "3b34e6e3-0afa-4e43-af70-73be6d24b1e0") + ) + (junction + (at 25.4 60.96) + (diameter 0) + (color 0 0 0 0) + (uuid "42c386d0-633e-4b64-946d-83c90fa85b6e") + ) + (junction + (at 35.56 38.1) + (diameter 0) + (color 0 0 0 0) + (uuid "8f251c4d-5927-45e7-949b-34c12d49d65f") + ) + (junction + (at 22.86 58.42) + (diameter 0) + (color 0 0 0 0) + (uuid "9a3c4bec-c068-4a92-a212-8ed29afa2a30") + ) + (junction + (at 45.72 38.1) + (diameter 0) + (color 0 0 0 0) + (uuid "aa99f3e4-b6ec-4b21-b6f0-7c4cbf27c280") + ) + (junction + (at 165.1 54.61) + (diameter 0) + (color 0 0 0 0) + (uuid "b1574390-e72b-4e15-aae5-64635a53861c") + ) + (junction + (at 165.1 44.45) + (diameter 0) + (color 0 0 0 0) + (uuid "c420adaa-8f7e-43a2-bddb-39ff09d47250") + ) + (junction + (at 165.1 34.29) + (diameter 0) + (color 0 0 0 0) + (uuid "c46d2967-3c57-4946-b780-560dff88e865") + ) + (junction + (at 85.09 38.1) + (diameter 0) + (color 0 0 0 0) + (uuid "c710566b-46fc-4834-aff0-14055ce509e5") + ) + (junction + (at 165.1 78.74) + (diameter 0) + (color 0 0 0 0) + (uuid "e9479ed2-240b-4938-a6bb-4cb7f91bcb7b") + ) + (junction + (at 25.4 38.1) + (diameter 0) + (color 0 0 0 0) + (uuid "ebd22902-7c8c-482b-ac73-0d5052fa7213") + ) + (junction + (at 165.1 68.58) + (diameter 0) + (color 0 0 0 0) + (uuid "f2f9a905-ccd5-47f3-a8b2-c0b51113a1b3") + ) + (no_connect + (at 52.07 78.74) + (uuid "0b5f747c-ba8f-4c00-b9c2-98f9bf97070d") + ) + (no_connect + (at 69.85 63.5) + (uuid "3ad5684a-9318-4776-972a-31b70d65ff83") + ) + (no_connect + (at 100.33 53.34) + (uuid "56e77c42-7cdc-4cfe-800e-13b4841798e0") + ) + (no_connect + (at 69.85 48.26) + (uuid "5aede914-5766-48e5-aec3-cb117e198c2a") + ) + (no_connect + (at 26.67 88.9) + (uuid "706c81d4-e7ca-403a-b26f-106b39fe424a") + ) + (no_connect + (at 52.07 86.36) + (uuid "8978a0e3-8950-483f-af10-884434f81f00") + ) + (no_connect + (at 100.33 48.26) + (uuid "a4c9558f-3a7a-43d3-8ab3-c64f25b7472e") + ) + (no_connect + (at 69.85 45.72) + (uuid "ee809e90-3faa-40cb-ad3e-123986956d62") + ) + (bus_entry + (at 218.44 85.09) + (size -2.54 -2.54) + (stroke + (width 0) + (type default) + ) + (uuid "0337aec4-d7d8-4b3a-b6e8-6e1746010de4") + ) + (bus_entry + (at 63.5 78.74) + (size 2.54 -2.54) + (stroke + (width 0) + (type default) + ) + (uuid "05414a0b-a3eb-4ab9-8f84-170f5a9501be") + ) + (bus_entry + (at 218.44 95.25) + (size -2.54 -2.54) + (stroke + (width 0) + (type default) + ) + (uuid "0b79aaa3-319b-4ca5-952f-f76ede2668c1") + ) + (bus_entry + (at 63.5 73.66) + (size 2.54 -2.54) + (stroke + (width 0) + (type default) + ) + (uuid "120d9def-7f97-4e3f-a34f-55ea4fd9e0a5") + ) + (bus_entry + (at 218.44 95.25) + (size 2.54 -2.54) + (stroke + (width 0) + (type default) + ) + (uuid "14d953cc-b626-4045-aaf6-8e91c388325c") + ) + (bus_entry + (at 106.68 140.97) + (size 2.54 2.54) + (stroke + (width 0) + (type default) + ) + (uuid "1993edd2-a78d-41a7-8676-3c7c582abe9a") + ) + (bus_entry + (at 218.44 80.01) + (size 2.54 -2.54) + (stroke + (width 0) + (type default) + ) + (uuid "1af50cb5-c032-4223-aaf4-859789c38a52") + ) + (bus_entry + (at 218.44 30.48) + (size 2.54 -2.54) + (stroke + (width 0) + (type default) + ) + (uuid "1d327b0a-79b6-4547-a0c7-0be8d5b15712") + ) + (bus_entry + (at 218.44 50.8) + (size -2.54 -2.54) + (stroke + (width 0) + (type default) + ) + (uuid "1f136b08-666d-42b0-91bc-44e2e49b12cd") + ) + (bus_entry + (at 218.44 74.93) + (size 2.54 -2.54) + (stroke + (width 0) + (type default) + ) + (uuid "208ec618-b4cc-4121-bc38-31fbcddb1838") + ) + (bus_entry + (at 63.5 138.43) + (size 2.54 2.54) + (stroke + (width 0) + (type default) + ) + (uuid "20bb2a16-f43c-4a01-86d1-4e32fb5c2250") + ) + (bus_entry + (at 218.44 35.56) + (size 2.54 -2.54) + (stroke + (width 0) + (type default) + ) + (uuid "276941a6-2c6e-499a-84ed-c371f2a40337") + ) + (bus_entry + (at 63.5 135.89) + (size 2.54 2.54) + (stroke + (width 0) + (type default) + ) + (uuid "28249b05-2e0c-4158-a084-af964770c763") + ) + (bus_entry + (at 218.44 90.17) + (size 2.54 -2.54) + (stroke + (width 0) + (type default) + ) + (uuid "2f1dcfc2-c4ec-45fd-a73e-889975eff1f4") + ) + (bus_entry + (at 106.68 151.13) + (size 2.54 2.54) + (stroke + (width 0) + (type default) + ) + (uuid "3a404249-946e-43b7-8546-2632486719fb") + ) + (bus_entry + (at 218.44 87.63) + (size 2.54 -2.54) + (stroke + (width 0) + (type default) + ) + (uuid "406b1bd0-5ddb-49e4-a4ba-0450b4f39552") + ) + (bus_entry + (at 218.44 33.02) + (size 2.54 -2.54) + (stroke + (width 0) + (type default) + ) + (uuid "419a1b40-7aa0-4637-a3f3-6bd228f6fd31") + ) + (bus_entry + (at 218.44 43.18) + (size 2.54 -2.54) + (stroke + (width 0) + (type default) + ) + (uuid "437bb937-46ed-4a83-83e5-cd1c3f013f3c") + ) + (bus_entry + (at 63.5 76.2) + (size 2.54 -2.54) + (stroke + (width 0) + (type default) + ) + (uuid "442faedd-86ee-4e72-af7a-79247dfab694") + ) + (bus_entry + (at 218.44 45.72) + (size 2.54 -2.54) + (stroke + (width 0) + (type default) + ) + (uuid "499dd895-f9e0-420f-932b-397d7dbdd0b9") + ) + (bus_entry + (at 106.68 146.05) + (size 2.54 2.54) + (stroke + (width 0) + (type default) + ) + (uuid "4b01379d-1d6b-4e43-856b-1c47560aa5ee") + ) + (bus_entry + (at 218.44 40.64) + (size -2.54 -2.54) + (stroke + (width 0) + (type default) + ) + (uuid "4e54a624-a248-4bfc-8d64-36fd0e1e7fc4") + ) + (bus_entry + (at 218.44 50.8) + (size 2.54 -2.54) + (stroke + (width 0) + (type default) + ) + (uuid "539e8e95-9966-4bed-95be-40d038535db9") + ) + (bus_entry + (at 218.44 45.72) + (size -2.54 -2.54) + (stroke + (width 0) + (type default) + ) + (uuid "5f406144-8bf2-4680-9ee3-e0a25883dadf") + ) + (bus_entry + (at 104.14 73.66) + (size 2.54 -2.54) + (stroke + (width 0) + (type default) + ) + (uuid "60103c71-6081-4fba-af2c-332dddc6c5b8") + ) + (bus_entry + (at 63.5 140.97) + (size 2.54 2.54) + (stroke + (width 0) + (type default) + ) + (uuid "64c998ae-1a19-4795-9ffc-a49f56f3f42e") + ) + (bus_entry + (at 218.44 33.02) + (size -2.54 -2.54) + (stroke + (width 0) + (type default) + ) + (uuid "696cf6ad-340f-489b-9299-7d58f39db64c") + ) + (bus_entry + (at 106.68 128.27) + (size 2.54 2.54) + (stroke + (width 0) + (type default) + ) + (uuid "6ac359a6-17b3-4efa-9ded-5fed3dd3dba6") + ) + (bus_entry + (at 38.1 19.05) + (size -2.54 2.54) + (stroke + (width 0) + (type default) + ) + (uuid "72bb9609-12d5-45a2-8abd-9a032618d015") + ) + (bus_entry + (at 218.44 92.71) + (size -2.54 -2.54) + (stroke + (width 0) + (type default) + ) + (uuid "72efaaf4-e3bc-4400-a5f4-a22a0bc67bba") + ) + (bus_entry + (at 104.14 78.74) + (size 2.54 -2.54) + (stroke + (width 0) + (type default) + ) + (uuid "75fa5c26-8c05-4825-9b1c-1df20114566d") + ) + (bus_entry + (at 63.5 81.28) + (size 2.54 -2.54) + (stroke + (width 0) + (type default) + ) + (uuid "78bc5591-c862-473c-a6a4-df6c0b4f33f2") + ) + (bus_entry + (at 106.68 130.81) + (size 2.54 2.54) + (stroke + (width 0) + (type default) + ) + (uuid "7d0ab3fd-6225-4fed-bb30-99c7d8bf0b27") + ) + (bus_entry + (at 218.44 40.64) + (size 2.54 -2.54) + (stroke + (width 0) + (type default) + ) + (uuid "7e05722e-7771-4298-97bb-68777ebbb558") + ) + (bus_entry + (at 218.44 85.09) + (size 2.54 -2.54) + (stroke + (width 0) + (type default) + ) + (uuid "847c5072-7be4-4d6b-bf51-b7a3e9b4c30e") + ) + (bus_entry + (at 218.44 77.47) + (size -2.54 -2.54) + (stroke + (width 0) + (type default) + ) + (uuid "8a4419a9-e01f-4035-9a05-e72cf4395858") + ) + (bus_entry + (at 63.5 133.35) + (size 2.54 2.54) + (stroke + (width 0) + (type default) + ) + (uuid "8e743db3-ad75-4336-a84f-ebbfba91f0bd") + ) + (bus_entry + (at 106.68 143.51) + (size 2.54 2.54) + (stroke + (width 0) + (type default) + ) + (uuid "8e810efd-57c4-4df3-ab77-8eed8e27cbed") + ) + (bus_entry + (at 218.44 43.18) + (size -2.54 -2.54) + (stroke + (width 0) + (type default) + ) + (uuid "9041384e-2cac-428a-83f7-a41f3ac5c84f") + ) + (bus_entry + (at 218.44 74.93) + (size -2.54 -2.54) + (stroke + (width 0) + (type default) + ) + (uuid "92e3e522-bb06-42ec-a9a6-b857228fa577") + ) + (bus_entry + (at 106.68 148.59) + (size 2.54 2.54) + (stroke + (width 0) + (type default) + ) + (uuid "9e372626-4719-4c53-b8b1-9bd40f0f6af8") + ) + (bus_entry + (at 106.68 133.35) + (size 2.54 2.54) + (stroke + (width 0) + (type default) + ) + (uuid "a1a88a44-185c-4465-81e1-c13bf0c0de7e") + ) + (bus_entry + (at 218.44 38.1) + (size -2.54 -2.54) + (stroke + (width 0) + (type default) + ) + (uuid "a4ffe9e5-a7d3-4e7e-be90-a9396ce8b43e") + ) + (bus_entry + (at 106.68 135.89) + (size 2.54 2.54) + (stroke + (width 0) + (type default) + ) + (uuid "a65922fe-9b36-47cf-b363-48aeb57b7396") + ) + (bus_entry + (at 218.44 53.34) + (size -2.54 -2.54) + (stroke + (width 0) + (type default) + ) + (uuid "a67f1987-a64d-448f-bad0-6a783f6665c5") + ) + (bus_entry + (at 27.94 19.05) + (size -2.54 2.54) + (stroke + (width 0) + (type default) + ) + (uuid "b13697c8-3457-4f11-a08f-84d4959c3c0c") + ) + (bus_entry + (at 218.44 90.17) + (size -2.54 -2.54) + (stroke + (width 0) + (type default) + ) + (uuid "b62d62f1-3990-4fd8-95a7-6ace031bae89") + ) + (bus_entry + (at 104.14 76.2) + (size 2.54 -2.54) + (stroke + (width 0) + (type default) + ) + (uuid "c3da2af6-a0de-45d1-9c70-4d75695c2e62") + ) + (bus_entry + (at 218.44 80.01) + (size -2.54 -2.54) + (stroke + (width 0) + (type default) + ) + (uuid "c671df5a-c9ab-4101-94c4-d74c51f1a705") + ) + (bus_entry + (at 218.44 92.71) + (size 2.54 -2.54) + (stroke + (width 0) + (type default) + ) + (uuid "c6ed2046-08f3-4f41-be56-46bc80a16daf") + ) + (bus_entry + (at 218.44 87.63) + (size -2.54 -2.54) + (stroke + (width 0) + (type default) + ) + (uuid "c7f14bd2-ad0f-4cda-adf2-a2ac0a65fa48") + ) + (bus_entry + (at 218.44 97.79) + (size 2.54 -2.54) + (stroke + (width 0) + (type default) + ) + (uuid "ca08df81-1d55-4ebb-a486-81418f0ed664") + ) + (bus_entry + (at 48.26 19.05) + (size -2.54 2.54) + (stroke + (width 0) + (type default) + ) + (uuid "ce406a1f-787f-40ca-81e3-d015796cc84d") + ) + (bus_entry + (at 218.44 77.47) + (size 2.54 -2.54) + (stroke + (width 0) + (type default) + ) + (uuid "cfda649f-3e20-4646-8dc8-cb2e8852a118") + ) + (bus_entry + (at 218.44 30.48) + (size -2.54 -2.54) + (stroke + (width 0) + (type default) + ) + (uuid "d7a8ad68-ced2-4fc9-bd49-a3f959e33fd2") + ) + (bus_entry + (at 218.44 97.79) + (size -2.54 -2.54) + (stroke + (width 0) + (type default) + ) + (uuid "d907dfaa-08c9-4521-95a5-5eea77ed5fcf") + ) + (bus_entry + (at 218.44 53.34) + (size 2.54 -2.54) + (stroke + (width 0) + (type default) + ) + (uuid "dd3173ca-03a5-47f6-b70f-32b58e8fa127") + ) + (bus_entry + (at 218.44 82.55) + (size 2.54 -2.54) + (stroke + (width 0) + (type default) + ) + (uuid "e572ce25-0bf8-4386-8e67-25728523f05a") + ) + (bus_entry + (at 218.44 35.56) + (size -2.54 -2.54) + (stroke + (width 0) + (type default) + ) + (uuid "ebacb4af-7b68-48eb-9a09-e09d89de81d9") + ) + (bus_entry + (at 106.68 138.43) + (size 2.54 2.54) + (stroke + (width 0) + (type default) + ) + (uuid "f227225e-20e9-4e47-bd39-face743bc99e") + ) + (bus_entry + (at 218.44 82.55) + (size -2.54 -2.54) + (stroke + (width 0) + (type default) + ) + (uuid "f5098f6c-b653-4312-8a6b-cf006346674a") + ) + (bus_entry + (at 104.14 71.12) + (size 2.54 -2.54) + (stroke + (width 0) + (type default) + ) + (uuid "f5756eb8-add0-40f6-8cee-a8f77f28212b") + ) + (bus_entry + (at 218.44 48.26) + (size 2.54 -2.54) + (stroke + (width 0) + (type default) + ) + (uuid "f5a6ee73-eceb-461c-856d-051f728d97dc") + ) + (bus_entry + (at 218.44 38.1) + (size 2.54 -2.54) + (stroke + (width 0) + (type default) + ) + (uuid "f7211b12-7899-4772-8d1c-82c24c4f42f7") + ) + (bus_entry + (at 218.44 48.26) + (size -2.54 -2.54) + (stroke + (width 0) + (type default) + ) + (uuid "fcdd81c3-36f7-46b8-b059-01b5ed3a9c28") + ) + (bus_entry + (at 58.42 19.05) + (size -2.54 2.54) + (stroke + (width 0) + (type default) + ) + (uuid "fe95fc56-e8d2-4bc9-aaa3-bfe821e51974") + ) + (wire + (pts + (xy 100.33 78.74) (xy 104.14 78.74) + ) + (stroke + (width 0) + (type default) + ) + (uuid "003ab0cb-df67-4838-8409-5197e98dd87e") + ) + (wire + (pts + (xy 165.1 78.74) (xy 165.1 77.47) + ) + (stroke + (width 0) + (type default) + ) + (uuid "053a36f6-26df-4ba2-adea-969867eddb36") + ) + (wire + (pts + (xy 210.82 27.94) (xy 215.9 27.94) + ) + (stroke + (width 0) + (type default) + ) + (uuid "06984e93-7f79-491d-927a-a6a331a4726d") + ) + (bus + (pts + (xy 109.22 130.81) (xy 109.22 133.35) + ) + (stroke + (width 0) + (type default) + ) + (uuid "073f32a7-104f-4aff-84e4-79211bce41fe") + ) + (bus + (pts + (xy 218.44 95.25) (xy 218.44 97.79) + ) + (stroke + (width 0) + (type default) + ) + (uuid "07b7cf77-003f-46c9-b9d4-c82605ec6e0c") + ) + (wire + (pts + (xy 173.99 85.09) (xy 173.99 83.82) + ) + (stroke + (width 0) + (type default) + ) + (uuid "09c15e4a-7848-40a1-ac3f-fcc978f8d508") + ) + (bus + (pts + (xy 63.5 135.89) (xy 63.5 138.43) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0a27b01f-c105-4660-bb9b-8839f847c2b7") + ) + (wire + (pts + (xy 173.99 88.9) (xy 173.99 93.98) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0c33643f-78d6-4598-ac62-1de5dacd1a3d") + ) + (wire + (pts + (xy 111.76 50.8) (xy 111.76 146.05) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0f47b308-d764-472f-aa42-bcc567d3d2d2") + ) + (wire + (pts + (xy 166.37 34.29) (xy 165.1 34.29) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0fa06c80-b406-49ee-b155-ebf4afafe808") + ) + (wire + (pts + (xy 26.67 78.74) (xy 25.4 78.74) + ) + (stroke + (width 0) + (type default) + ) + (uuid "10d15863-219e-49af-99f3-5e8ff3b81c3e") + ) + (wire + (pts + (xy 220.98 82.55) (xy 226.06 82.55) + ) + (stroke + (width 0) + (type default) + ) + (uuid "11c9c208-dbf5-4064-a939-538b4f064e78") + ) + (bus + (pts + (xy 106.68 73.66) (xy 106.68 76.2) + ) + (stroke + (width 0) + (type default) + ) + (uuid "123221b6-867f-41b9-9aa8-aa73c1c94033") + ) + (bus + (pts + (xy 27.94 19.05) (xy 38.1 19.05) + ) + (stroke + (width 0) + (type default) + ) + (uuid "15077c1a-32b7-4d2c-97ba-f92d0251c51f") + ) + (wire + (pts + (xy 35.56 35.56) (xy 35.56 38.1) + ) + (stroke + (width 0) + (type default) + ) + (uuid "155023c0-9010-4095-9e0b-66b532618e85") + ) + (bus + (pts + (xy 218.44 33.02) (xy 218.44 35.56) + ) + (stroke + (width 0) + (type default) + ) + (uuid "16133cf2-e254-4ea0-aab3-e00fd5ebbebb") + ) + (wire + (pts + (xy 210.82 40.64) (xy 215.9 40.64) + ) + (stroke + (width 0) + (type default) + ) + (uuid "1766cb01-4ad5-4a0c-9ab7-cfa34ca46e15") + ) + (wire + (pts + (xy 100.33 146.05) (xy 106.68 146.05) + ) + (stroke + (width 0) + (type default) + ) + (uuid "17a88c50-531f-43a2-bd09-e540d97a02f2") + ) + (wire + (pts + (xy 165.1 68.58) (xy 173.99 68.58) + ) + (stroke + (width 0) + (type default) + ) + (uuid "1b378c47-4181-44e0-97d2-b82c45401e72") + ) + (wire + (pts + (xy 22.86 58.42) (xy 22.86 81.28) + ) + (stroke + (width 0) + (type default) + ) + (uuid "1bcbbc9d-738c-4b7a-8f97-8a78cd7e1a17") + ) + (wire + (pts + (xy 45.72 38.1) (xy 55.88 38.1) + ) + (stroke + (width 0) + (type default) + ) + (uuid "1d2a808f-835b-485a-95fc-21d82e42a904") + ) + (wire + (pts + (xy 66.04 143.51) (xy 69.85 143.51) + ) + (stroke + (width 0) + (type default) + ) + (uuid "1d9db938-22e9-4a70-8aa5-98b327bfc041") + ) + (bus + (pts + (xy 48.26 19.05) (xy 58.42 19.05) + ) + (stroke + (width 0) + (type default) + ) + (uuid "2215b9d1-1734-4b31-8eaf-270e991d83d6") + ) + (wire + (pts + (xy 35.56 21.59) (xy 35.56 25.4) + ) + (stroke + (width 0) + (type default) + ) + (uuid "2623c1a3-3587-4bfd-9a5d-894373e7f581") + ) + (wire + (pts + (xy 220.98 92.71) (xy 226.06 92.71) + ) + (stroke + (width 0) + (type default) + ) + (uuid "2626f4f1-5364-49ac-9690-ab18c2692559") + ) + (wire + (pts + (xy 66.04 135.89) (xy 69.85 135.89) + ) + (stroke + (width 0) + (type default) + ) + (uuid "2676409e-1213-4773-9b05-edba0f7f11ea") + ) + (wire + (pts + (xy 165.1 54.61) (xy 165.1 53.34) + ) + (stroke + (width 0) + (type default) + ) + (uuid "275deb88-d47f-432f-9c30-561a67e0f863") + ) + (wire + (pts + (xy 210.82 87.63) (xy 215.9 87.63) + ) + (stroke + (width 0) + (type default) + ) + (uuid "294a0821-2363-494c-92d6-3451d063061b") + ) + (wire + (pts + (xy 220.98 85.09) (xy 226.06 85.09) + ) + (stroke + (width 0) + (type default) + ) + (uuid "2a0fd9d2-127a-4dcc-ae34-10e9b8a298d4") + ) + (wire + (pts + (xy 149.86 99.06) (xy 151.13 99.06) + ) + (stroke + (width 0) + (type default) + ) + (uuid "2c0104bb-8295-489b-848c-0f768bf46234") + ) + (wire + (pts + (xy 210.82 38.1) (xy 215.9 38.1) + ) + (stroke + (width 0) + (type default) + ) + (uuid "2ca31c49-5ca2-4146-a12c-4f5bd1d6d0a1") + ) + (wire + (pts + (xy 220.98 77.47) (xy 226.06 77.47) + ) + (stroke + (width 0) + (type default) + ) + (uuid "2d10a890-cd92-4536-bb44-db8583a2c6c7") + ) + (wire + (pts + (xy 173.99 40.64) (xy 173.99 39.37) + ) + (stroke + (width 0) + (type default) + ) + (uuid "2e041cef-98c7-4663-9cc5-d2805226d0e3") + ) + (bus + (pts + (xy 109.22 140.97) (xy 109.22 143.51) + ) + (stroke + (width 0) + (type default) + ) + (uuid "2e4b2621-b3b0-446e-9a84-d0285d2d55f6") + ) + (bus + (pts + (xy 106.68 71.12) (xy 106.68 73.66) + ) + (stroke + (width 0) + (type default) + ) + (uuid "2e62a83d-3f40-4887-8427-fff93e746dfd") + ) + (bus + (pts + (xy 218.44 50.8) (xy 218.44 53.34) + ) + (stroke + (width 0) + (type default) + ) + (uuid "30feea3e-7a6e-42e6-9f3b-3770e1a59a07") + ) + (wire + (pts + (xy 85.09 38.1) (xy 85.09 39.37) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3186edcd-c10f-4594-b3f3-e2216f3c501d") + ) + (wire + (pts + (xy 85.09 38.1) (xy 82.55 38.1) + ) + (stroke + (width 0) + (type default) + ) + (uuid "370608c6-f823-424d-aeec-e1d79621f6dd") + ) + (wire + (pts + (xy 149.86 78.74) (xy 151.13 78.74) + ) + (stroke + (width 0) + (type default) + ) + (uuid "371ac3bb-ff94-40a4-867d-777e52cf8277") + ) + (bus + (pts + (xy 109.22 146.05) (xy 109.22 148.59) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3788b38d-cd08-4aae-994f-e81f9765341f") + ) + (bus + (pts + (xy 218.44 43.18) (xy 218.44 45.72) + ) + (stroke + (width 0) + (type default) + ) + (uuid "37ab02cf-4e76-4120-b7db-d4f351162959") + ) + (wire + (pts + (xy 25.4 60.96) (xy 69.85 60.96) + ) + (stroke + (width 0) + (type default) + ) + (uuid "396a2a29-4636-4fd5-b50d-3225b0848814") + ) + (wire + (pts + (xy 100.33 63.5) (xy 129.54 63.5) + ) + (stroke + (width 0) + (type default) + ) + (uuid "39a6412c-92c3-49b7-9c2e-8c51b236f95a") + ) + (bus + (pts + (xy 109.22 138.43) (xy 109.22 140.97) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3a77dbb0-89dd-4f79-afc6-50f7f735977f") + ) + (wire + (pts + (xy 22.86 58.42) (xy 69.85 58.42) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3c68720f-6476-4eef-abf5-f7e70f21aad4") + ) + (bus + (pts + (xy 38.1 19.05) (xy 48.26 19.05) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3cdac60e-c15e-4414-91a2-58ff99dca28b") + ) + (wire + (pts + (xy 173.99 105.41) (xy 184.15 105.41) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3e77b6c0-9569-4ae9-9306-c4b23fce6f68") + ) + (wire + (pts + (xy 100.33 140.97) (xy 106.68 140.97) + ) + (stroke + (width 0) + (type default) + ) + (uuid "41b3c75d-f70d-4203-87de-e2483996ab3d") + ) + (wire + (pts + (xy 100.33 143.51) (xy 106.68 143.51) + ) + (stroke + (width 0) + (type default) + ) + (uuid "42752ab5-a1b8-421c-a9ef-ba60083ccf03") + ) + (wire + (pts + (xy 25.4 21.59) (xy 25.4 25.4) + ) + (stroke + (width 0) + (type default) + ) + (uuid "42798c7c-3587-4d8f-b5a1-bf8587d7924a") + ) + (wire + (pts + (xy 166.37 54.61) (xy 165.1 54.61) + ) + (stroke + (width 0) + (type default) + ) + (uuid "439704ee-c475-4bb0-923e-d73c415691fd") + ) + (wire + (pts + (xy 220.98 95.25) (xy 226.06 95.25) + ) + (stroke + (width 0) + (type default) + ) + (uuid "44edf26a-278f-4251-974c-a7aad9987ad5") + ) + (wire + (pts + (xy 165.1 25.4) (xy 165.1 24.13) + ) + (stroke + (width 0) + (type default) + ) + (uuid "45969843-f072-496f-823d-1e4b9d3e77ef") + ) + (wire + (pts + (xy 173.99 60.96) (xy 173.99 59.69) + ) + (stroke + (width 0) + (type default) + ) + (uuid "45e13e48-76ec-44bc-88bc-543275df6d09") + ) + (wire + (pts + (xy 109.22 45.72) (xy 100.33 45.72) + ) + (stroke + (width 0) + (type default) + ) + (uuid "468c9490-6e4d-482d-9615-28eb60abd559") + ) + (bus + (pts + (xy 218.44 85.09) (xy 218.44 87.63) + ) + (stroke + (width 0) + (type default) + ) + (uuid "46d5eee1-8c80-48fa-8329-d9f369fb6192") + ) + (wire + (pts + (xy 129.54 63.5) (xy 129.54 85.09) + ) + (stroke + (width 0) + (type default) + ) + (uuid "471e5680-59d2-4fc9-b698-4f163d8d57c0") + ) + (wire + (pts + (xy 245.11 85.09) (xy 243.84 85.09) + ) + (stroke + (width 0) + (type default) + ) + (uuid "4c028feb-adae-4c4c-aa4a-98241feda334") + ) + (wire + (pts + (xy 158.75 130.81) (xy 168.91 130.81) + ) + (stroke + (width 0) + (type default) + ) + (uuid "4c03a65a-aba4-40f4-866d-52683407d40c") + ) + (wire + (pts + (xy 67.31 53.34) (xy 69.85 53.34) + ) + (stroke + (width 0) + (type default) + ) + (uuid "4df9da6d-a6bb-4095-a71f-574efb241bf5") + ) + (wire + (pts + (xy 140.97 60.96) (xy 142.24 60.96) + ) + (stroke + (width 0) + (type default) + ) + (uuid "4e9259ce-2723-49cd-89ba-1c76d2d8f9c5") + ) + (wire + (pts + (xy 173.99 85.09) (xy 184.15 85.09) + ) + (stroke + (width 0) + (type default) + ) + (uuid "4f3ca1e8-523c-4a9b-b161-6cad8b4b3bfc") + ) + (wire + (pts + (xy 149.86 34.29) (xy 151.13 34.29) + ) + (stroke + (width 0) + (type default) + ) + (uuid "503857e4-0905-4170-a636-5e9a032d2f12") + ) + (wire + (pts + (xy 45.72 21.59) (xy 45.72 25.4) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5079afd9-ef71-4b6a-b612-0f62052d1dab") + ) + (wire + (pts + (xy 100.33 138.43) (xy 106.68 138.43) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5156c71e-f81f-4f01-9970-51eb71f879a6") + ) + (wire + (pts + (xy 220.98 87.63) (xy 226.06 87.63) + ) + (stroke + (width 0) + (type default) + ) + (uuid "51a88549-0f40-4cbe-a633-f30e32507ece") + ) + (wire + (pts + (xy 220.98 27.94) (xy 226.06 27.94) + ) + (stroke + (width 0) + (type default) + ) + (uuid "54a0f920-684b-48b5-b803-45066f8dadb6") + ) + (wire + (pts + (xy 165.1 69.85) (xy 165.1 68.58) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5a7d8aaa-f93b-4c0d-8f52-a54fce2fa865") + ) + (wire + (pts + (xy 129.54 58.42) (xy 129.54 40.64) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5afb7e5d-19f0-4ed8-a06a-4ca4a96d40cd") + ) + (wire + (pts + (xy 22.86 81.28) (xy 26.67 81.28) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5b890a49-6ff1-421f-9c30-de91f46e3e51") + ) + (wire + (pts + (xy 66.04 138.43) (xy 69.85 138.43) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5ba4e9f5-baeb-4f24-9703-1ddfb90afbd8") + ) + (wire + (pts + (xy 165.1 44.45) (xy 173.99 44.45) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5d54b8d3-e4d4-4150-9d6c-66c0f771a8af") + ) + (bus + (pts + (xy 58.42 19.05) (xy 106.68 19.05) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5da4978e-cb03-4042-87d9-e3990b014113") + ) + (wire + (pts + (xy 166.37 78.74) (xy 165.1 78.74) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5e06d217-0840-4491-9585-66cb762b2e8a") + ) + (wire + (pts + (xy 210.82 35.56) (xy 215.9 35.56) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5f9817f3-e842-42a3-95e2-9be2c44889fd") + ) + (wire + (pts + (xy 210.82 30.48) (xy 215.9 30.48) + ) + (stroke + (width 0) + (type default) + ) + (uuid "605f466e-fd8a-4b8e-acbb-d6b24cbbef50") + ) + (bus + (pts + (xy 218.44 53.34) (xy 218.44 74.93) + ) + (stroke + (width 0) + (type default) + ) + (uuid "6169d54a-5179-4485-9827-7a3825e9941c") + ) + (bus + (pts + (xy 109.22 160.02) (xy 218.44 160.02) + ) + (stroke + (width 0) + (type default) + ) + (uuid "61e3905a-1faf-4d7c-8a5a-a23c8efb2a7d") + ) + (wire + (pts + (xy 210.82 48.26) (xy 215.9 48.26) + ) + (stroke + (width 0) + (type default) + ) + (uuid "634144dd-db6d-42ea-aecf-047992c7ba1a") + ) + (wire + (pts + (xy 191.77 105.41) (xy 245.11 105.41) + ) + (stroke + (width 0) + (type default) + ) + (uuid "648dde45-f591-4012-aea3-421eea259fc0") + ) + (wire + (pts + (xy 25.4 55.88) (xy 25.4 60.96) + ) + (stroke + (width 0) + (type default) + ) + (uuid "694fe07c-8f8a-419f-a77c-5e98fee6e332") + ) + (wire + (pts + (xy 220.98 38.1) (xy 226.06 38.1) + ) + (stroke + (width 0) + (type default) + ) + (uuid "6996edfc-2279-497a-860c-5e21c79be8c1") + ) + (wire + (pts + (xy 210.82 92.71) (xy 215.9 92.71) + ) + (stroke + (width 0) + (type default) + ) + (uuid "6e2542e7-66ee-4636-b334-77da18496d14") + ) + (wire + (pts + (xy 220.98 72.39) (xy 226.06 72.39) + ) + (stroke + (width 0) + (type default) + ) + (uuid "6f739c67-1666-4d73-8024-ff4a3a253bdc") + ) + (wire + (pts + (xy 100.33 71.12) (xy 104.14 71.12) + ) + (stroke + (width 0) + (type default) + ) + (uuid "72acdba3-6e75-4b57-9121-621664b0f68f") + ) + (wire + (pts + (xy 149.86 55.88) (xy 149.86 54.61) + ) + (stroke + (width 0) + (type default) + ) + (uuid "74673bb4-bdc6-4d4e-ae9a-c32ee723b43d") + ) + (wire + (pts + (xy 210.82 50.8) (xy 215.9 50.8) + ) + (stroke + (width 0) + (type default) + ) + (uuid "76cc8aed-029a-49e3-b3a1-2acec2cb1282") + ) + (bus + (pts + (xy 218.44 45.72) (xy 218.44 48.26) + ) + (stroke + (width 0) + (type default) + ) + (uuid "7a445264-426a-4e36-9e36-35ab87929831") + ) + (wire + (pts + (xy 245.11 40.64) (xy 243.84 40.64) + ) + (stroke + (width 0) + (type default) + ) + (uuid "7d052766-1def-4032-bbda-db9006188a83") + ) + (bus + (pts + (xy 218.44 40.64) (xy 218.44 43.18) + ) + (stroke + (width 0) + (type default) + ) + (uuid "7e9718b2-cb1d-4fde-ad0e-e7fdf25a8ccf") + ) + (wire + (pts + (xy 100.33 60.96) (xy 133.35 60.96) + ) + (stroke + (width 0) + (type default) + ) + (uuid "7ebe97b0-9eab-46cc-9ffe-70126bc398cf") + ) + (wire + (pts + (xy 22.86 55.88) (xy 22.86 58.42) + ) + (stroke + (width 0) + (type default) + ) + (uuid "80818872-a2cc-484d-a0ae-a7c0e726badd") + ) + (bus + (pts + (xy 218.44 77.47) (xy 218.44 80.01) + ) + (stroke + (width 0) + (type default) + ) + (uuid "818e0f11-6878-4734-8c43-120f4c509974") + ) + (wire + (pts + (xy 210.82 80.01) (xy 215.9 80.01) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8367d82b-a861-467f-9aa7-9c0ee07e6348") + ) + (bus + (pts + (xy 218.44 48.26) (xy 218.44 50.8) + ) + (stroke + (width 0) + (type default) + ) + (uuid "84fa74a4-969c-492f-9173-8f156fe09810") + ) + (wire + (pts + (xy 149.86 100.33) (xy 149.86 99.06) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8878cc7c-de45-43b3-8015-81927013a51d") + ) + (wire + (pts + (xy 210.82 74.93) (xy 215.9 74.93) + ) + (stroke + (width 0) + (type default) + ) + (uuid "889ca30e-c147-43a2-b875-5ef0753902c3") + ) + (wire + (pts + (xy 220.98 80.01) (xy 226.06 80.01) + ) + (stroke + (width 0) + (type default) + ) + (uuid "89fdaece-2ffb-4650-98d1-b0d15f54294c") + ) + (wire + (pts + (xy 67.31 50.8) (xy 69.85 50.8) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8a036739-e02c-4e41-b37a-b513148fc082") + ) + (wire + (pts + (xy 158.75 34.29) (xy 165.1 34.29) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8a0d033a-add9-45fe-8b77-4f333d8193d5") + ) + (wire + (pts + (xy 210.82 43.18) (xy 215.9 43.18) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8bc3d2a3-5c1e-411a-b1fb-4af90b6803a0") + ) + (wire + (pts + (xy 201.93 130.81) (xy 201.93 140.97) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8d1a764b-8301-4696-9021-697c588d36bc") + ) + (wire + (pts + (xy 220.98 43.18) (xy 226.06 43.18) + ) + (stroke + (width 0) + (type default) + ) + (uuid "91978e60-dca4-4262-8b32-b6275f4c1aa7") + ) + (wire + (pts + (xy 66.04 140.97) (xy 69.85 140.97) + ) + (stroke + (width 0) + (type default) + ) + (uuid "91debd95-387c-4e80-ad32-46863b36297e") + ) + (wire + (pts + (xy 127 105.41) (xy 133.35 105.41) + ) + (stroke + (width 0) + (type default) + ) + (uuid "91eb5582-e46b-4a23-afc7-584e84a0b8e4") + ) + (wire + (pts + (xy 100.33 66.04) (xy 127 66.04) + ) + (stroke + (width 0) + (type default) + ) + (uuid "9213fcd3-4bf1-42a7-959b-646af7ca53d4") + ) + (bus + (pts + (xy 109.22 133.35) (xy 109.22 135.89) + ) + (stroke + (width 0) + (type default) + ) + (uuid "948aaf50-6082-4ab1-a2c8-ba0cfc621a83") + ) + (wire + (pts + (xy 100.33 135.89) (xy 106.68 135.89) + ) + (stroke + (width 0) + (type default) + ) + (uuid "94aad091-3e02-48be-8fe0-5b2478cafbaf") + ) + (wire + (pts + (xy 55.88 38.1) (xy 55.88 35.56) + ) + (stroke + (width 0) + (type default) + ) + (uuid "9529a2e7-a104-4ad5-aa40-8dfd34bf2a00") + ) + (wire + (pts + (xy 100.33 73.66) (xy 104.14 73.66) + ) + (stroke + (width 0) + (type default) + ) + (uuid "95c80b8b-2c47-4409-af06-1da6bd3b9141") + ) + (wire + (pts + (xy 210.82 90.17) (xy 215.9 90.17) + ) + (stroke + (width 0) + (type default) + ) + (uuid "96d108c1-eb9c-4cf0-9bec-cfed8cd4248b") + ) + (wire + (pts + (xy 39.37 71.12) (xy 41.91 71.12) + ) + (stroke + (width 0) + (type default) + ) + (uuid "978c2da4-fd3d-43e7-94bc-8bbd70f018f7") + ) + (wire + (pts + (xy 149.86 80.01) (xy 149.86 78.74) + ) + (stroke + (width 0) + (type default) + ) + (uuid "989c4cdb-18c5-45c4-81ec-fe6620284701") + ) + (wire + (pts + (xy 165.1 44.45) (xy 165.1 43.18) + ) + (stroke + (width 0) + (type default) + ) + (uuid "9bef3a53-7186-42c0-91be-585a6fe93770") + ) + (wire + (pts + (xy 210.82 45.72) (xy 215.9 45.72) + ) + (stroke + (width 0) + (type default) + ) + (uuid "9dd51db4-5eef-481d-a71f-5cea42c79b2b") + ) + (wire + (pts + (xy 165.1 24.13) (xy 165.1 22.86) + ) + (stroke + (width 0) + (type default) + ) + (uuid "9deafb89-3c84-4e08-a3a9-a03143674629") + ) + (wire + (pts + (xy 111.76 146.05) (xy 184.15 146.05) + ) + (stroke + (width 0) + (type default) + ) + (uuid "9e6992cc-fcef-43c9-95c7-7bd9979f87f3") + ) + (bus + (pts + (xy 218.44 35.56) (xy 218.44 38.1) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a2ad5658-164e-4895-bccc-973a836b19cb") + ) + (bus + (pts + (xy 109.22 143.51) (xy 109.22 146.05) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a41ed572-d2ab-4b83-a7d9-4a62b7bf0836") + ) + (wire + (pts + (xy 85.09 36.83) (xy 85.09 38.1) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a4cd1c5b-4beb-47d5-bf89-f9cd379b7a52") + ) + (wire + (pts + (xy 173.99 44.45) (xy 173.99 49.53) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a59ec20f-0b50-456c-8727-a30ca5ef4d2a") + ) + (wire + (pts + (xy 100.33 50.8) (xy 111.76 50.8) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a67e9a19-2176-4530-9052-fafb22114f65") + ) + (bus + (pts + (xy 109.22 153.67) (xy 109.22 160.02) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a7037afa-9003-4ca3-8a0c-a5dfa3d13a98") + ) + (wire + (pts + (xy 173.99 40.64) (xy 184.15 40.64) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a75a4c0e-b7ab-4e8d-8938-639fe5d8a07a") + ) + (wire + (pts + (xy 173.99 60.96) (xy 184.15 60.96) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a8fd2c07-769b-4064-b207-ba78c93d9634") + ) + (wire + (pts + (xy 210.82 95.25) (xy 215.9 95.25) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a9564e6d-84dc-4de9-9b5c-b4d840fde83a") + ) + (wire + (pts + (xy 25.4 39.37) (xy 25.4 38.1) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a9c3ab32-76d0-4e2d-b89d-99fb8b847861") + ) + (wire + (pts + (xy 165.1 68.58) (xy 165.1 67.31) + ) + (stroke + (width 0) + (type default) + ) + (uuid "aa1f6ace-567a-4aa8-819e-133e197151e8") + ) + (wire + (pts + (xy 149.86 35.56) (xy 149.86 34.29) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ab47bf12-2c97-4b1d-a3d5-e9c78fcb01be") + ) + (wire + (pts + (xy 100.33 133.35) (xy 106.68 133.35) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ab4e2b2d-307e-4593-a15c-cbeba0c21264") + ) + (wire + (pts + (xy 220.98 35.56) (xy 226.06 35.56) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ab83741a-f85c-4356-822f-7e9a46c0e9ec") + ) + (wire + (pts + (xy 25.4 60.96) (xy 25.4 78.74) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ac5c4224-702d-4238-8749-4d9e65f362dd") + ) + (wire + (pts + (xy 25.4 38.1) (xy 35.56 38.1) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ac99c48a-624f-41d6-9ff8-7207ddfa326c") + ) + (wire + (pts + (xy 129.54 85.09) (xy 133.35 85.09) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ad14a075-23b9-4451-b933-8a8478cf45d6") + ) + (wire + (pts + (xy 173.99 105.41) (xy 173.99 104.14) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ae840cd7-9b4c-4588-bbcf-c60d6b40141f") + ) + (wire + (pts + (xy 220.98 50.8) (xy 226.06 50.8) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ae93e61a-f8fe-483f-91a2-3375eb65edee") + ) + (wire + (pts + (xy 166.37 99.06) (xy 165.1 99.06) + ) + (stroke + (width 0) + (type default) + ) + (uuid "af36b68b-e774-4455-bbb2-62dcfdeae6a2") + ) + (wire + (pts + (xy 147.32 130.81) (xy 147.32 129.54) + ) + (stroke + (width 0) + (type default) + ) + (uuid "af8726e5-d39b-4b4f-b843-f74217cc79f7") + ) + (wire + (pts + (xy 165.1 24.13) (xy 173.99 24.13) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b07f89cb-a96d-4c96-8ff1-700389ed24b2") + ) + (wire + (pts + (xy 109.22 45.72) (xy 109.22 116.84) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b157db57-0cfc-4f44-af30-ff791b0a0928") + ) + (wire + (pts + (xy 39.37 73.66) (xy 39.37 71.12) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b187af91-e59e-45f7-94b5-4aaffefa28a1") + ) + (wire + (pts + (xy 173.99 24.13) (xy 173.99 29.21) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b1cc926f-c61d-4525-b38a-ce89127969e9") + ) + (bus + (pts + (xy 218.44 92.71) (xy 218.44 95.25) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b3a917c8-5e15-49a1-a35e-c5cc16416a50") + ) + (wire + (pts + (xy 165.1 99.06) (xy 165.1 97.79) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b3ed0459-83de-446d-9f21-f550e32cca3a") + ) + (wire + (pts + (xy 82.55 38.1) (xy 82.55 39.37) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b40885bf-66c9-4550-8dea-55d35cb978fc") + ) + (wire + (pts + (xy 191.77 85.09) (xy 193.04 85.09) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b4badd29-5417-4e5d-9e4f-509ad8780421") + ) + (bus + (pts + (xy 63.5 133.35) (xy 63.5 135.89) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b4c79a9a-5037-4e3c-9cb9-a1a2f29eb3dc") + ) + (wire + (pts + (xy 210.82 33.02) (xy 215.9 33.02) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b5b0f521-9d51-4c4a-a66a-e09a42e679f5") + ) + (wire + (pts + (xy 45.72 35.56) (xy 45.72 38.1) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b63a8f27-a813-4052-a48b-d51ffb40df11") + ) + (wire + (pts + (xy 220.98 48.26) (xy 226.06 48.26) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b7b0529f-eed3-46ea-809b-839e90722f93") + ) + (wire + (pts + (xy 147.32 130.81) (xy 151.13 130.81) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b8495b63-1ebe-4929-8c51-49e38cf46f8f") + ) + (bus + (pts + (xy 63.5 76.2) (xy 63.5 78.74) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b90ac8fa-f949-475f-ab25-6edf0f04be38") + ) + (wire + (pts + (xy 210.82 77.47) (xy 215.9 77.47) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b92828db-cc47-4500-9ed5-cee33a8d1f41") + ) + (wire + (pts + (xy 100.33 128.27) (xy 106.68 128.27) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ba2efd00-611e-4d76-b7cb-4753252f180d") + ) + (wire + (pts + (xy 165.1 88.9) (xy 165.1 87.63) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ba5ae282-3ec1-4e93-8701-1f8d8dca3ba6") + ) + (wire + (pts + (xy 129.54 40.64) (xy 133.35 40.64) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ba6402d8-67bd-4afe-a334-9bfee557c536") + ) + (wire + (pts + (xy 66.04 78.74) (xy 69.85 78.74) + ) + (stroke + (width 0) + (type default) + ) + (uuid "bc86d45c-b6ed-4c36-87c1-26ee43a92369") + ) + (bus + (pts + (xy 109.22 148.59) (xy 109.22 151.13) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c0bdef56-3e31-4987-9f29-ef16a834acec") + ) + (bus + (pts + (xy 218.44 74.93) (xy 218.44 77.47) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c39f1ba4-51b6-4a8f-8b63-c6ea8e59c347") + ) + (wire + (pts + (xy 220.98 30.48) (xy 226.06 30.48) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c4dbb4a1-592b-41d0-b526-cc07dd97fc4e") + ) + (wire + (pts + (xy 100.33 130.81) (xy 106.68 130.81) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c75344f0-a457-4a6f-8b8f-6e602b8049fa") + ) + (wire + (pts + (xy 49.53 71.12) (xy 52.07 71.12) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c75c6c03-a1cb-460d-9dde-eecff6d513fe") + ) + (wire + (pts + (xy 52.07 71.12) (xy 52.07 72.39) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c8690092-df51-47a5-86e2-4a512b3147f1") + ) + (wire + (pts + (xy 25.4 35.56) (xy 25.4 38.1) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c8855abd-6cde-4cf4-8d0c-676fa16359ef") + ) + (wire + (pts + (xy 220.98 90.17) (xy 226.06 90.17) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c89a32cc-4636-4e24-b67c-57810b176a25") + ) + (bus + (pts + (xy 218.44 97.79) (xy 218.44 160.02) + ) + (stroke + (width 0) + (type default) + ) + (uuid "caebfafe-71d1-4119-bcaa-1ac4e30b1adc") + ) + (bus + (pts + (xy 109.22 135.89) (xy 109.22 138.43) + ) + (stroke + (width 0) + (type default) + ) + (uuid "cb05dece-d768-4ff7-b49c-db72ff671d14") + ) + (wire + (pts + (xy 173.99 68.58) (xy 173.99 73.66) + ) + (stroke + (width 0) + (type default) + ) + (uuid "cc123e60-5196-420b-82e0-47e8cb079a50") + ) + (bus + (pts + (xy 63.5 81.28) (xy 63.5 133.35) + ) + (stroke + (width 0) + (type default) + ) + (uuid "cc1ecdf6-2c3e-4aa2-85d6-47808c649b75") + ) + (wire + (pts + (xy 191.77 60.96) (xy 245.11 60.96) + ) + (stroke + (width 0) + (type default) + ) + (uuid "cdf95351-9897-4d8e-ae13-e4c6e36a561f") + ) + (wire + (pts + (xy 127 66.04) (xy 127 105.41) + ) + (stroke + (width 0) + (type default) + ) + (uuid "cff9dad0-df18-4d8a-8179-12cfa39acd9c") + ) + (wire + (pts + (xy 87.63 38.1) (xy 87.63 39.37) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d045ab83-2bcc-492d-b221-e4d14a37d822") + ) + (wire + (pts + (xy 165.1 34.29) (xy 165.1 33.02) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d05f7baf-1ec4-4ea5-aa0c-e9fde9b6f650") + ) + (wire + (pts + (xy 55.88 21.59) (xy 55.88 25.4) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d0679e9d-b901-4d1c-9f92-1edc945cec76") + ) + (wire + (pts + (xy 220.98 74.93) (xy 226.06 74.93) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d15cf345-85f4-4f2c-85e3-49f3c89e44d4") + ) + (bus + (pts + (xy 218.44 82.55) (xy 218.44 85.09) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d16626c3-b557-49e7-8d60-79728b22f369") + ) + (wire + (pts + (xy 191.77 40.64) (xy 193.04 40.64) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d5975be2-66b7-43cc-b305-e4088e324d9f") + ) + (wire + (pts + (xy 140.97 105.41) (xy 142.24 105.41) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d5ce9266-0310-4909-8877-abe83bb4c0fa") + ) + (wire + (pts + (xy 158.75 54.61) (xy 165.1 54.61) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d8d67d16-9b62-42b1-90db-412cc7a56836") + ) + (bus + (pts + (xy 63.5 138.43) (xy 63.5 140.97) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d987e3f8-1831-4868-b796-21ae83d59887") + ) + (wire + (pts + (xy 220.98 45.72) (xy 226.06 45.72) + ) + (stroke + (width 0) + (type default) + ) + (uuid "da1c003d-3768-4cfa-a226-25a93c6dce4a") + ) + (bus + (pts + (xy 218.44 87.63) (xy 218.44 90.17) + ) + (stroke + (width 0) + (type default) + ) + (uuid "dacbdfd7-4df6-4823-a624-7c768ef2aa65") + ) + (wire + (pts + (xy 66.04 73.66) (xy 69.85 73.66) + ) + (stroke + (width 0) + (type default) + ) + (uuid "dd4d7155-9161-41c2-b9f4-07b81802f7df") + ) + (wire + (pts + (xy 100.33 151.13) (xy 106.68 151.13) + ) + (stroke + (width 0) + (type default) + ) + (uuid "dd660d73-a36b-404a-9442-511cb88e3051") + ) + (wire + (pts + (xy 220.98 33.02) (xy 226.06 33.02) + ) + (stroke + (width 0) + (type default) + ) + (uuid "dd78fb7d-a724-40a0-aad2-091fb6194a0a") + ) + (bus + (pts + (xy 106.68 19.05) (xy 106.68 68.58) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ddf1c1ce-c351-4e9d-96b6-5b10d040f480") + ) + (wire + (pts + (xy 210.82 85.09) (xy 215.9 85.09) + ) + (stroke + (width 0) + (type default) + ) + (uuid "dee38714-304f-47d5-a3ac-1ce442d94032") + ) + (bus + (pts + (xy 218.44 90.17) (xy 218.44 92.71) + ) + (stroke + (width 0) + (type default) + ) + (uuid "df6206c6-ad70-4b3a-9336-b31a21237b16") + ) + (wire + (pts + (xy 66.04 76.2) (xy 69.85 76.2) + ) + (stroke + (width 0) + (type default) + ) + (uuid "e794c0f4-16ac-44c7-9827-1bf0263c462e") + ) + (wire + (pts + (xy 85.09 38.1) (xy 87.63 38.1) + ) + (stroke + (width 0) + (type default) + ) + (uuid "e8499313-bc84-4570-b796-9a247090f62a") + ) + (wire + (pts + (xy 165.1 45.72) (xy 165.1 44.45) + ) + (stroke + (width 0) + (type default) + ) + (uuid "e86c094b-fc76-4c37-b603-f53f0b65085f") + ) + (bus + (pts + (xy 106.68 68.58) (xy 106.68 71.12) + ) + (stroke + (width 0) + (type default) + ) + (uuid "e9479e9b-11a5-4105-9e54-a33b4157fac6") + ) + (wire + (pts + (xy 100.33 76.2) (xy 104.14 76.2) + ) + (stroke + (width 0) + (type default) + ) + (uuid "e98ef72b-8f6b-47ba-bbd2-5e541b7897f7") + ) + (wire + (pts + (xy 149.86 54.61) (xy 151.13 54.61) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ea83360e-20ff-4207-9d1f-22ffddbb233b") + ) + (wire + (pts + (xy 165.1 88.9) (xy 173.99 88.9) + ) + (stroke + (width 0) + (type default) + ) + (uuid "eb661264-c3df-409a-9c31-d5fb29fe10f6") + ) + (wire + (pts + (xy 66.04 71.12) (xy 69.85 71.12) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ec6ec147-e278-4d65-aa20-09398fa7ba27") + ) + (wire + (pts + (xy 100.33 148.59) (xy 106.68 148.59) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ed1f9872-2bf4-4328-82c9-a71763cabdc8") + ) + (wire + (pts + (xy 210.82 72.39) (xy 215.9 72.39) + ) + (stroke + (width 0) + (type default) + ) + (uuid "edf4a72f-2961-47fa-803b-6f51425803d8") + ) + (wire + (pts + (xy 245.11 105.41) (xy 245.11 85.09) + ) + (stroke + (width 0) + (type default) + ) + (uuid "edf9b644-e8da-456c-bd98-ef854e07ebc6") + ) + (wire + (pts + (xy 245.11 60.96) (xy 245.11 40.64) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ee3057c2-ffb0-4e3b-871b-79153ad3af64") + ) + (wire + (pts + (xy 140.97 40.64) (xy 142.24 40.64) + ) + (stroke + (width 0) + (type default) + ) + (uuid "eefcf8ff-1c27-414d-a5a1-1c7f49943035") + ) + (wire + (pts + (xy 165.1 90.17) (xy 165.1 88.9) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f048b542-3c1b-4506-81f2-bfbe9f8e1e56") + ) + (wire + (pts + (xy 158.75 99.06) (xy 165.1 99.06) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f0ba3d9c-e91c-461b-a1b1-013cca3e76ec") + ) + (bus + (pts + (xy 63.5 78.74) (xy 63.5 81.28) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f2b87ebe-aca7-4393-9d6c-2e04b8a2ef58") + ) + (wire + (pts + (xy 35.56 38.1) (xy 45.72 38.1) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f46ede68-cf00-47ee-bbf0-c2e07bae8911") + ) + (wire + (pts + (xy 210.82 82.55) (xy 215.9 82.55) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f48929a6-fed2-4037-8d91-6649ded6788f") + ) + (bus + (pts + (xy 218.44 80.01) (xy 218.44 82.55) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f7343794-bc58-416b-81a7-eda2051e5e47") + ) + (bus + (pts + (xy 218.44 30.48) (xy 218.44 33.02) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f8995e97-64be-431c-8d1f-f5eacb43e828") + ) + (wire + (pts + (xy 140.97 85.09) (xy 142.24 85.09) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f8f94a5f-961e-41a6-bec1-1ead64311a2d") + ) + (bus + (pts + (xy 109.22 151.13) (xy 109.22 153.67) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f9954e51-c163-42d1-999d-cab27999c09e") + ) + (wire + (pts + (xy 158.75 78.74) (xy 165.1 78.74) + ) + (stroke + (width 0) + (type default) + ) + (uuid "fad6ccc6-b298-43fd-beb6-1a32cb30f504") + ) + (bus + (pts + (xy 63.5 73.66) (xy 63.5 76.2) + ) + (stroke + (width 0) + (type default) + ) + (uuid "fbf1b1e5-0d60-45a7-ad5e-22040258309c") + ) + (wire + (pts + (xy 109.22 116.84) (xy 92.71 116.84) + ) + (stroke + (width 0) + (type default) + ) + (uuid "fe16fba0-fe16-4265-a952-109a68f1da19") + ) + (wire + (pts + (xy 220.98 40.64) (xy 226.06 40.64) + ) + (stroke + (width 0) + (type default) + ) + (uuid "fed01a14-4a59-4688-96ea-43be8a0afb2e") + ) + (wire + (pts + (xy 100.33 58.42) (xy 129.54 58.42) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ff120bd8-e2a2-4154-b401-04b0d357e767") + ) + (wire + (pts + (xy 191.77 146.05) (xy 194.31 146.05) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ff395555-dace-4854-b8af-f500594c43d5") + ) + (wire + (pts + (xy 199.39 130.81) (xy 201.93 130.81) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ff7f7bbd-2ae9-4153-a133-811cd3b9a517") + ) + (bus + (pts + (xy 218.44 38.1) (xy 218.44 40.64) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ff9c2722-7a9f-4a32-b14e-d9c1ab306484") + ) + (label "DIG7" + (at 210.82 87.63 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "009a4de7-3229-4b00-b8a5-1d690cf96049") + ) + (label "DIG4" + (at 100.33 138.43 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "0154587b-0edb-426d-8596-c425804aa0a5") + ) + (label "DIG8" + (at 220.98 90.17 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "0b33e617-a5fc-485e-b531-1a0b1c3583b7") + ) + (label "DIG6" + (at 220.98 85.09 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "1e5fe4f7-f93f-4292-bd1d-a416782ddc10") + ) + (label "DIG0" + (at 220.98 50.8 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "20ab153a-9ca8-472c-9be4-656673b3c4ee") + ) + (label "DIG1" + (at 220.98 27.94 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "22803fac-9a4e-4c4b-8c04-ad40b3cbd635") + ) + (label "DIG8" + (at 210.82 45.72 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "2f978954-0b8b-48c5-979e-1293860e5ee3") + ) + (label "PD6" + (at 69.85 140.97 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "38f8c9ef-d4c2-402d-9251-53447929d254") + ) + (label "DIG0" + (at 210.82 95.25 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "3ed9cb33-aabb-46c8-b185-fbf97052e550") + ) + (label "DIG3" + (at 220.98 33.02 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "3f168b48-ae03-4df9-b895-55bef65ed586") + ) + (label "DIG0" + (at 210.82 50.8 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "4010e10d-adc4-42b8-9a90-2dd314097f62") + ) + (label "PD3" + (at 100.33 78.74 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "4136768b-5931-4ec6-a2ef-dca7684cbb58") + ) + (label "DIG5" + (at 100.33 140.97 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "428903d8-5d36-451d-8266-ceacd7231fcc") + ) + (label "DIG2" + (at 210.82 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "45748c28-3fdb-4291-a61c-92c6e5d918a3") + ) + (label "PD5" + (at 69.85 73.66 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "46c930b9-eee4-465d-a4ac-c683c233063e") + ) + (label "DIG5" + (at 220.98 38.1 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "4806691a-0913-48fc-abce-6e2317e71c4d") + ) + (label "DIG3" + (at 210.82 77.47 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "48a392a9-9512-49ca-9128-60ae88ae42e2") + ) + (label "DIG8" + (at 100.33 148.59 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "584faa72-4799-4fca-b62c-4bc86476a14b") + ) + (label "PD0" + (at 25.4 25.4 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "5e6578cf-7d38-4b2f-9217-246b246864d4") + ) + (label "DIG7" + (at 100.33 146.05 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "60c2171d-691f-4cd4-a954-5badd23a3f63") + ) + (label "DIG9" + (at 210.82 48.26 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "6697029c-d8c7-4bc1-9e84-4624db025bfe") + ) + (label "PD1" + (at 100.33 73.66 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "672660ba-e2aa-4298-84e6-9403237688c8") + ) + (label "DIG5" + (at 210.82 38.1 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "6b7eae3c-f55b-4c09-9265-83d9b344e913") + ) + (label "DIG5" + (at 220.98 82.55 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "6d8cd1cb-84c1-44c6-99f9-f15cc2c2295a") + ) + (label "DIG9" + (at 220.98 92.71 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "6e630e7b-b86b-40fc-a579-78da74a8ce69") + ) + (label "DIG[0..9]" + (at 109.22 160.02 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "7483d82f-04d4-4d79-b5e3-7181880491d5") + ) + (label "DIG1" + (at 210.82 72.39 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "75669d55-cd15-491e-b63f-6b482aa10507") + ) + (label "PD3" + (at 55.88 25.4 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "772a3e78-d6c4-4003-9c47-5369667647fc") + ) + (label "DIG8" + (at 210.82 90.17 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "799315e1-3892-43b6-97e0-7b6c3aad99bd") + ) + (label "PD7" + (at 69.85 143.51 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "7a125e88-1ab7-4b75-b7cf-64d0f2ffdbe9") + ) + (label "PD4" + (at 69.85 135.89 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "7fc2dce6-34a9-4266-91d2-1c4eed298c32") + ) + (label "PD7" + (at 69.85 78.74 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "852c24ea-f5f9-4d98-bc39-71f31689a5b5") + ) + (label "DIG8" + (at 220.98 45.72 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "891e2489-3845-414c-8177-da432f434adc") + ) + (label "PD[4..7]" + (at 63.5 119.38 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "8a045fcf-00cc-49ac-a1be-56fa35c57cc0") + ) + (label "DIG7" + (at 220.98 87.63 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "8ca754ac-d484-4bed-95b3-b252c450ef38") + ) + (label "DIG6" + (at 100.33 143.51 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "906c6042-c3f9-420e-9b9f-146b65fcf9b7") + ) + (label "DIG2" + (at 220.98 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "9a6353fd-ac79-4d5f-aba6-4fa6530b993c") + ) + (label "DIG0" + (at 220.98 95.25 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "9acbdd77-4118-44f1-8254-22a46d7da857") + ) + (label "DIG1" + (at 210.82 27.94 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "9af8703c-1dfb-42f2-a18c-cdac9a56256c") + ) + (label "DIG3" + (at 100.33 135.89 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "9c78a5c5-a8f2-4ff1-a516-fb389d1df000") + ) + (label "DIG1" + (at 220.98 72.39 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "a30e753b-3145-4386-87fa-ca38437e9527") + ) + (label "DIG4" + (at 220.98 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "a31bf7ea-ef93-4f59-9743-2551e363f87e") + ) + (label "PD2" + (at 45.72 25.4 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "a4128b79-ee65-422f-99bf-066dfc405e1b") + ) + (label "DIG5" + (at 210.82 82.55 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "a6ea2b68-783f-449c-806c-1ed7c8ae7d31") + ) + (label "DIG9" + (at 220.98 48.26 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "a8570c2f-9cd6-404a-b5f3-27710d48b32e") + ) + (label "PD5" + (at 69.85 138.43 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "a8c1e4a2-c0da-4f20-b433-65eaaac802cc") + ) + (label "DIG2" + (at 220.98 74.93 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "ab12a82f-009f-4149-b1ca-0f08696861e7") + ) + (label "PD1" + (at 35.56 25.4 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "ae385cc2-971b-4ea4-8935-fb67611867ed") + ) + (label "PD6" + (at 69.85 76.2 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "afe8632d-be54-45ba-abe6-f2c70d26162a") + ) + (label "PD[0..3]" + (at 106.68 19.05 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "b072a13c-80e3-4534-9201-96c15ed41513") + ) + (label "PD2" + (at 100.33 76.2 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "b2cca55f-e261-4bed-8d1d-e3164288f680") + ) + (label "DIG1" + (at 100.33 130.81 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "b4664e5d-eab6-471d-9006-27709eb288d2") + ) + (label "DIG4" + (at 210.82 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "b9e927dc-e4fa-4308-9377-4054096aab13") + ) + (label "DIG4" + (at 210.82 35.56 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "bb6dff26-7813-4308-b5fd-b3b7602d9e8a") + ) + (label "DIG3" + (at 220.98 77.47 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "cb23ca01-3b0e-4a32-b6f4-1fb390dc2b30") + ) + (label "DIG7" + (at 220.98 43.18 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "cf1cb2cd-070f-466a-ab74-86e602f15b5c") + ) + (label "DIG4" + (at 220.98 35.56 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "d5343269-d21d-4d86-b0c7-dd4339ce5429") + ) + (label "DIG6" + (at 210.82 85.09 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "d66d4b53-a39b-4d2f-bee3-732c51870258") + ) + (label "DIG2" + (at 210.82 74.93 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "d8b30b51-a254-4b3e-8089-17b4b555d0e4") + ) + (label "DIG6" + (at 220.98 40.64 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "dcb5dad5-e416-4327-91f8-930786d66a20") + ) + (label "PD0" + (at 100.33 71.12 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "dcf7cf9c-0a6d-4efd-a165-ef6c39004f71") + ) + (label "PD4" + (at 69.85 71.12 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "dd1c52ae-3c7d-40ab-b57f-220cf4a5190f") + ) + (label "DIG9" + (at 210.82 92.71 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "dd1f0f86-2fe8-43a1-92c3-44929b2d9e5f") + ) + (label "DIG6" + (at 210.82 40.64 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "f07afc25-2545-4f85-81fd-bc25d0a628a8") + ) + (label "DIG7" + (at 210.82 43.18 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "f6f47120-d90e-4bc0-b395-81dd26c3462a") + ) + (label "DIG9" + (at 100.33 151.13 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "fc3c976e-b7d4-40c7-b500-4dc76dfa504b") + ) + (label "DIG2" + (at 100.33 133.35 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "fcf212bd-b789-4a2c-88df-cb1f0c79e53b") + ) + (label "DIG0" + (at 100.33 128.27 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "fdf029e0-055c-4934-9b76-e10410ce79f4") + ) + (label "DIG3" + (at 210.82 33.02 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "fec4ffa8-b008-4b7f-814e-61178816ff71") + ) + (symbol + (lib_id "power:+5V") + (at 36.83 73.66 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "02d0b3d3-71e3-47bd-8c9f-b0d191896abc") + (property "Reference" "#PWR02" + (at 36.83 77.47 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+5V" + (at 36.83 68.58 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 36.83 73.66 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 36.83 73.66 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"+5V\"" + (at 36.83 73.66 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "a1609125-1b94-4ba8-9b08-d12aac78d083") + ) + (instances + (project "" + (path "/7c670055-6eae-4e4c-be40-3c8d8a0ecd74" + (reference "#PWR02") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Transistor_BJT:MPSA42") + (at 147.32 60.96 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "061fa288-1cce-43a0-98e6-a589155058f3") + (property "Reference" "QN3" + (at 152.4 59.6899 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "MPSA42" + (at 152.4 62.2299 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_TO_SOT_THT:TO-92_Inline" + (at 152.4 62.865 0) + (effects + (font + (size 1.27 1.27) + (italic yes) + ) + (justify left) + (hide yes) + ) + ) + (property "Datasheet" "http://www.onsemi.com/pub_link/Collateral/MPSA42-D.PDF" + (at 147.32 60.96 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (property "Description" "0.5A Ic, 300V Vce, NPN High Voltage Transistor, TO-92" + (at 147.32 60.96 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "3" + (uuid "8eb0d404-cf3d-4404-961d-830f986d3c0b") + ) + (pin "2" + (uuid "4570edda-a6af-4ce3-91be-d21f3f8eba46") + ) + (pin "1" + (uuid "5523aaba-665e-4ae6-bb88-206e9e161443") + ) + (instances + (project "nixie" + (path "/7c670055-6eae-4e4c-be40-3c8d8a0ecd74" + (reference "QN3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 165.1 49.53 180) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "09070b2e-7fdf-4355-a5d5-11c08db42c3a") + (property "Reference" "R11" + (at 167.64 48.2599 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Value" "10k" + (at 167.64 50.7999 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "Resistor_SMD:R_0805_2012Metric" + (at 166.878 49.53 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 165.1 49.53 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Resistor" + (at 165.1 49.53 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "f04cbbcb-4d53-4421-a1dd-cb578e223dcc") + ) + (pin "1" + (uuid "9f6a6b98-fd1d-4d6f-bd4e-966ace1b01bd") + ) + (instances + (project "nixie" + (path "/7c670055-6eae-4e4c-be40-3c8d8a0ecd74" + (reference "R11") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Switch:SW_Push") + (at 55.88 30.48 90) + (mirror x) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "0c5fe915-a5ec-425c-8a20-3b99029a3eb2") + (property "Reference" "SW4" + (at 50.546 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "~" + (at 50.8 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 50.8 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 50.8 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Push button switch, generic, two pins" + (at 55.88 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "c17f4070-a8cc-4bd1-aef3-6226ef080573") + ) + (pin "2" + (uuid "461e7cce-bc8d-4552-8f77-900016a6e7e6") + ) + (instances + (project "nixie" + (path "/7c670055-6eae-4e4c-be40-3c8d8a0ecd74" + (reference "SW4") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 52.07 72.39 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "13663454-c0d4-43fe-9e5d-201e07c4c2b2") + (property "Reference" "#PWR04" + (at 52.07 78.74 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 55.626 72.39 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 52.07 72.39 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 52.07 72.39 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 52.07 72.39 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "59c69c04-3b97-452c-9f8e-9497771143b0") + ) + (instances + (project "" + (path "/7c670055-6eae-4e4c-be40-3c8d8a0ecd74" + (reference "#PWR04") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:Battery_Cell") + (at 46.99 71.12 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "1b930e53-fdd8-439f-b57b-2453060a3647") + (property "Reference" "BT1" + (at 45.1485 63.5 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "CR2032" + (at 45.1485 66.04 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 45.466 71.12 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 45.466 71.12 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Single-cell battery" + (at 46.99 71.12 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "d5bd2280-90d3-48b3-973c-ea10d8630ea1") + ) + (pin "2" + (uuid "7e09e610-6012-4530-b75f-b6631bdf7f49") + ) + (instances + (project "" + (path "/7c670055-6eae-4e4c-be40-3c8d8a0ecd74" + (reference "BT1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "74xx_IEEE:74141") + (at 85.09 139.7 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "1cd0cbe0-d8c8-410f-a516-031adfdd5456") + (property "Reference" "U2" + (at 88.646 156.972 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "К155ИД1" + (at 88.646 159.512 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at 85.09 139.7 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 85.09 139.7 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 85.09 139.7 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "c3601384-2e35-43a2-988e-e2608595d6b2") + ) + (pin "3" + (uuid "44e86c2f-d5dc-4743-8b19-350fbf4ab555") + ) + (pin "8" + (uuid "1da452ad-30eb-4456-ad07-f217e560040c") + ) + (pin "13" + (uuid "8453e57c-623a-4f6e-a9eb-b1d538078143") + ) + (pin "14" + (uuid "677529f4-2e94-422d-9bad-48dec37e15f7") + ) + (pin "15" + (uuid "38b3cae5-f303-4564-b997-2555d291996a") + ) + (pin "16" + (uuid "ca875a7d-af8c-400f-b3b9-6e597c3e5033") + ) + (pin "7" + (uuid "5119483e-9c9d-4c26-993c-fa04382e750e") + ) + (pin "12" + (uuid "026db7d1-fec2-413d-a460-60fedb1453f2") + ) + (pin "6" + (uuid "68f5cf24-3703-42e2-b38e-7a34ffe204d0") + ) + (pin "4" + (uuid "5b224ca8-493a-4299-b955-aa32971bfe1a") + ) + (pin "1" + (uuid "9abd4d9d-cf4e-4f9b-9446-39ce12937769") + ) + (pin "11" + (uuid "bfb8de55-53de-40b5-afbb-12d386490cbe") + ) + (pin "5" + (uuid "57cdeb47-a234-422c-a169-c50a51f0cfc8") + ) + (pin "10" + (uuid "1ecf37bf-14ff-4127-9364-10da87a81df7") + ) + (pin "9" + (uuid "d0f74638-9119-4805-964b-4cf9aca8c614") + ) + (instances + (project "" + (path "/7c670055-6eae-4e4c-be40-3c8d8a0ecd74" + (reference "U2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Transistor_BJT:MPSA92") + (at 171.45 34.29 0) + (mirror x) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "1e59ceac-8648-4f8f-8070-096153bd702b") + (property "Reference" "QP1" + (at 176.53 33.0199 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "MPSA92" + (at 176.53 35.5599 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_TO_SOT_THT:TO-92_Inline" + (at 176.53 32.385 0) + (effects + (font + (size 1.27 1.27) + (italic yes) + ) + (justify left) + (hide yes) + ) + ) + (property "Datasheet" "http://www.onsemi.com/pub_link/Collateral/MPSA92-D.PDF" + (at 171.45 34.29 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (property "Description" "0.5A Ic, 300V Vce, PNP High Voltage Transistor, TO-92" + (at 171.45 34.29 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "3" + (uuid "6b3acfa4-2d8f-4461-951e-33f2cfcb87be") + ) + (pin "1" + (uuid "55433729-5291-4bca-982f-1f6ca4a363f0") + ) + (pin "2" + (uuid "6736461b-d45c-43c8-b3a4-67518ce1dca4") + ) + (instances + (project "nixie" + (path "/7c670055-6eae-4e4c-be40-3c8d8a0ecd74" + (reference "QP1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 187.96 85.09 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "1ed809fa-704a-4d36-b32e-5145486b68b7") + (property "Reference" "R16" + (at 187.96 78.74 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "10k" + (at 187.96 81.28 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0805_2012Metric" + (at 187.96 86.868 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 187.96 85.09 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Resistor" + (at 187.96 85.09 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "ef8ad5c4-5438-42b6-9f80-fc34ba336fa2") + ) + (pin "1" + (uuid "2fd48b81-29a8-4fec-8bcc-6f4c11f07931") + ) + (instances + (project "nixie" + (path "/7c670055-6eae-4e4c-be40-3c8d8a0ecd74" + (reference "R16") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:VDC") + (at 165.1 22.86 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "219e5d67-a646-4c59-bd22-208cf1a5dfb0") + (property "Reference" "#PWR014" + (at 165.1 26.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+170V" + (at 165.1 17.78 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 165.1 22.86 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 165.1 22.86 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"VDC\"" + (at 165.1 22.86 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "6874e417-e232-4cf3-b017-613642e147b8") + ) + (instances + (project "nixie" + (path "/7c670055-6eae-4e4c-be40-3c8d8a0ecd74" + (reference "#PWR014") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Transistor_BJT:MPSA42") + (at 147.32 85.09 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "27e0c9f1-617c-4845-ab20-dcca014182a2") + (property "Reference" "QN4" + (at 152.4 83.8199 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "MPSA42" + (at 152.4 86.3599 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_TO_SOT_THT:TO-92_Inline" + (at 152.4 86.995 0) + (effects + (font + (size 1.27 1.27) + (italic yes) + ) + (justify left) + (hide yes) + ) + ) + (property "Datasheet" "http://www.onsemi.com/pub_link/Collateral/MPSA42-D.PDF" + (at 147.32 85.09 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (property "Description" "0.5A Ic, 300V Vce, NPN High Voltage Transistor, TO-92" + (at 147.32 85.09 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "3" + (uuid "b02a79d9-845d-4830-bf5d-0141882310af") + ) + (pin "2" + (uuid "78e88959-38f0-4975-9bb0-44f603f6f4c7") + ) + (pin "1" + (uuid "b1d5aeca-1503-43a2-8ac0-d599f2b6d007") + ) + (instances + (project "nixie" + (path "/7c670055-6eae-4e4c-be40-3c8d8a0ecd74" + (reference "QN4") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Switch:SW_Push") + (at 45.72 30.48 90) + (mirror x) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "2c14406a-8bb6-4b71-b55f-5d440bed9b4c") + (property "Reference" "SW3" + (at 40.386 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "~" + (at 40.64 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 40.64 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 40.64 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Push button switch, generic, two pins" + (at 45.72 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "f7b51748-f0a1-4e7c-bf36-40add05f3993") + ) + (pin "2" + (uuid "fa5bca0e-034e-4d95-b03e-4ad038dcf300") + ) + (instances + (project "nixie" + (path "/7c670055-6eae-4e4c-be40-3c8d8a0ecd74" + (reference "SW3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 187.96 40.64 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "2e38256a-0589-46ef-8ae7-e0e484afbf76") + (property "Reference" "R14" + (at 187.96 34.29 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "10k" + (at 187.96 36.83 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0805_2012Metric" + (at 187.96 42.418 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 187.96 40.64 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Resistor" + (at 187.96 40.64 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "8eb6b9e8-2dd8-49fa-ba2e-b05de9c09de4") + ) + (pin "1" + (uuid "0b6058e8-3280-4f4b-b7b5-9506b8a9f185") + ) + (instances + (project "nixie" + (path "/7c670055-6eae-4e4c-be40-3c8d8a0ecd74" + (reference "R14") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Transistor_BJT:MPSA42") + (at 147.32 40.64 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "2e3c3b7d-5bb0-4a31-bc40-7ef8a15d7fe6") + (property "Reference" "QN2" + (at 152.4 39.3699 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "MPSA42" + (at 152.4 41.9099 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_TO_SOT_THT:TO-92_Inline" + (at 152.4 42.545 0) + (effects + (font + (size 1.27 1.27) + (italic yes) + ) + (justify left) + (hide yes) + ) + ) + (property "Datasheet" "http://www.onsemi.com/pub_link/Collateral/MPSA42-D.PDF" + (at 147.32 40.64 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (property "Description" "0.5A Ic, 300V Vce, NPN High Voltage Transistor, TO-92" + (at 147.32 40.64 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "3" + (uuid "6d76d76e-0fb1-4d72-bd6f-df57437ce900") + ) + (pin "2" + (uuid "85eb016d-9811-4bde-8903-f05d87ec85cd") + ) + (pin "1" + (uuid "0c93f775-08e2-4cff-8188-8e34f5855385") + ) + (instances + (project "nixie" + (path "/7c670055-6eae-4e4c-be40-3c8d8a0ecd74" + (reference "QN2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:VDC") + (at 165.1 67.31 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "2e5914ac-c759-41f4-8e5a-0533992c98db") + (property "Reference" "#PWR016" + (at 165.1 71.12 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+170V" + (at 165.1 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 165.1 67.31 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 165.1 67.31 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"VDC\"" + (at 165.1 67.31 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "d827d3f9-72ca-4541-8b16-bbfec9d834f0") + ) + (instances + (project "nixie" + (path "/7c670055-6eae-4e4c-be40-3c8d8a0ecd74" + (reference "#PWR016") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 165.1 93.98 180) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "358f12ae-3ed2-4c70-82ac-e3d777a4b1c0") + (property "Reference" "R13" + (at 167.64 92.7099 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Value" "10k" + (at 167.64 95.2499 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "Resistor_SMD:R_0805_2012Metric" + (at 166.878 93.98 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 165.1 93.98 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Resistor" + (at 165.1 93.98 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "bf3dd18f-5624-4e72-9598-5d4d41fe9707") + ) + (pin "1" + (uuid "b93f677d-8c78-4f04-ba95-7b1a305f2ba3") + ) + (instances + (project "nixie" + (path "/7c670055-6eae-4e4c-be40-3c8d8a0ecd74" + (reference "R13") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector_Generic:Conn_01x02") + (at 22.86 50.8 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "3a8273df-d10c-4884-91a2-d5a83fb5b7d2") + (property "Reference" "J1" + (at 27.94 49.5299 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Value" "ext_I²C" + (at 27.94 52.0699 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "" + (at 22.86 50.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 22.86 50.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 22.86 50.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "93ec00e7-bb08-4dc9-86a7-7d7a331158c5") + ) + (pin "2" + (uuid "a06c7c39-d650-4080-9723-3529e824feee") + ) + (instances + (project "" + (path "/7c670055-6eae-4e4c-be40-3c8d8a0ecd74" + (reference "J1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 85.09 157.48 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "3b7b36bc-85af-4d05-845b-3438e552b769") + (property "Reference" "#PWR08" + (at 85.09 163.83 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 85.09 162.56 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 85.09 157.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 85.09 157.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 85.09 157.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "f63f5179-06d7-4c00-811c-fee8540af4bd") + ) + (instances + (project "" + (path "/7c670055-6eae-4e4c-be40-3c8d8a0ecd74" + (reference "#PWR08") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 137.16 85.09 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "3c688948-9b0e-4c52-9cd6-a8012ca07bea") + (property "Reference" "R3" + (at 137.16 78.74 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "10k" + (at 137.16 81.28 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0805_2012Metric" + (at 137.16 83.312 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 137.16 85.09 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Resistor" + (at 137.16 85.09 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "439b3736-217c-4980-870f-108c5e438571") + ) + (pin "1" + (uuid "12882442-20a2-4a4a-a588-7360136b289b") + ) + (instances + (project "nixie" + (path "/7c670055-6eae-4e4c-be40-3c8d8a0ecd74" + (reference "R3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Transistor_BJT:MPSA42") + (at 87.63 116.84 0) + (mirror y) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "3e067c28-556e-44e7-88e5-75066a58db0e") + (property "Reference" "QN1" + (at 82.55 115.5699 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "MPSA42" + (at 82.55 118.1099 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_TO_SOT_THT:TO-92_Inline" + (at 82.55 118.745 0) + (effects + (font + (size 1.27 1.27) + (italic yes) + ) + (justify left) + (hide yes) + ) + ) + (property "Datasheet" "http://www.onsemi.com/pub_link/Collateral/MPSA42-D.PDF" + (at 87.63 116.84 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (property "Description" "0.5A Ic, 300V Vce, NPN High Voltage Transistor, TO-92" + (at 87.63 116.84 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "3" + (uuid "766fca3e-2276-407a-b7d0-86dd9313d55b") + ) + (pin "2" + (uuid "65cd9221-44e5-4865-94b2-2dd322fb0596") + ) + (pin "1" + (uuid "0c1356f1-2e9d-47a2-be3f-d5102e57823c") + ) + (instances + (project "nixie" + (path "/7c670055-6eae-4e4c-be40-3c8d8a0ecd74" + (reference "QN1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:VDC") + (at 165.1 87.63 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "404ca6cd-f66b-456c-9372-b326fa107c0a") + (property "Reference" "#PWR017" + (at 165.1 91.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+170V" + (at 165.1 82.55 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 165.1 87.63 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 165.1 87.63 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"VDC\"" + (at 165.1 87.63 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "d993081c-abe0-4dff-8550-f9e4a3e3066a") + ) + (instances + (project "nixie" + (path "/7c670055-6eae-4e4c-be40-3c8d8a0ecd74" + (reference "#PWR017") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 25.4 39.37 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "45dae2df-b93f-42ac-a66e-da38c51663a6") + (property "Reference" "#PWR01" + (at 25.4 45.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 25.4 44.45 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 25.4 39.37 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 25.4 39.37 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 25.4 39.37 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "0c8ba374-b0df-460b-943d-b08b1c440d35") + ) + (instances + (project "nixie" + (path "/7c670055-6eae-4e4c-be40-3c8d8a0ecd74" + (reference "#PWR01") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 187.96 60.96 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "4f0c78ab-8f9a-4dd8-aada-b2432190daf6") + (property "Reference" "R15" + (at 187.96 54.61 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "10k" + (at 187.96 57.15 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0805_2012Metric" + (at 187.96 62.738 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 187.96 60.96 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Resistor" + (at 187.96 60.96 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "25651c6c-9557-4233-aa03-9fd61ccfe5f0") + ) + (pin "1" + (uuid "1c6bbfbd-d198-4335-baa7-7e58d48d2565") + ) + (instances + (project "nixie" + (path "/7c670055-6eae-4e4c-be40-3c8d8a0ecd74" + (reference "R15") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Transistor_BJT:MPSA92") + (at 171.45 99.06 0) + (mirror x) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "56f31bb0-9804-4dbd-8a49-14cb965e0526") + (property "Reference" "QP4" + (at 176.53 97.7899 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "MPSA92" + (at 176.53 100.3299 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_TO_SOT_THT:TO-92_Inline" + (at 176.53 97.155 0) + (effects + (font + (size 1.27 1.27) + (italic yes) + ) + (justify left) + (hide yes) + ) + ) + (property "Datasheet" "http://www.onsemi.com/pub_link/Collateral/MPSA92-D.PDF" + (at 171.45 99.06 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (property "Description" "0.5A Ic, 300V Vce, PNP High Voltage Transistor, TO-92" + (at 171.45 99.06 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "3" + (uuid "3cb2ecd3-78e1-4c9f-8a83-a87dbabd90c0") + ) + (pin "1" + (uuid "1ddd73ae-1bd4-4753-bb40-59c8aca1b5fc") + ) + (pin "2" + (uuid "b2677b74-d245-4ab9-9899-792b1b1fd6de") + ) + (instances + (project "nixie" + (path "/7c670055-6eae-4e4c-be40-3c8d8a0ecd74" + (reference "QP4") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:+5V") + (at 85.09 36.83 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "57921f66-5c0c-4ae6-9863-7408591a091e") + (property "Reference" "#PWR05" + (at 85.09 40.64 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+5V" + (at 85.09 31.75 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 85.09 36.83 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 85.09 36.83 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"+5V\"" + (at 85.09 36.83 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "085d5b6b-6b7b-4170-85ab-29e888380d86") + ) + (instances + (project "nixie" + (path "/7c670055-6eae-4e4c-be40-3c8d8a0ecd74" + (reference "#PWR05") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 154.94 99.06 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "57a51477-f7a5-4f0b-a928-e176eeb434c9") + (property "Reference" "R8" + (at 154.94 92.71 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "1M" + (at 154.94 95.25 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0805_2012Metric" + (at 154.94 100.838 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 154.94 99.06 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Resistor" + (at 154.94 99.06 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "dabd2bd9-3b7f-4291-9494-930144dd1ad0") + ) + (pin "1" + (uuid "dcd6763b-9a40-4e7a-ba61-5e40be5895ae") + ) + (instances + (project "nixie" + (path "/7c670055-6eae-4e4c-be40-3c8d8a0ecd74" + (reference "R8") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 137.16 105.41 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "5ab2b690-ac01-4913-b192-a6fa102fa2d9") + (property "Reference" "R4" + (at 137.16 99.06 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "10k" + (at 137.16 101.6 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0805_2012Metric" + (at 137.16 103.632 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 137.16 105.41 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Resistor" + (at 137.16 105.41 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "395672b1-2398-4b21-b692-a925f17fe408") + ) + (pin "1" + (uuid "9f4d4bf5-a33d-4019-b71b-f260a824cf77") + ) + (instances + (project "nixie" + (path "/7c670055-6eae-4e4c-be40-3c8d8a0ecd74" + (reference "R4") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 85.09 85.09 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "5cfc9c16-b05b-4c78-930f-1f652bd523d3") + (property "Reference" "#PWR06" + (at 85.09 91.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 85.09 90.17 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 85.09 85.09 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 85.09 85.09 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 85.09 85.09 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "2ef360a5-f098-4bbf-9b04-c429c443f3aa") + ) + (instances + (project "" + (path "/7c670055-6eae-4e4c-be40-3c8d8a0ecd74" + (reference "#PWR06") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 149.86 66.04 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "5d9985bb-2efa-4624-9099-bd8e0cfc5c99") + (property "Reference" "#PWR011" + (at 149.86 72.39 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 149.86 71.12 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 149.86 66.04 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 149.86 66.04 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 149.86 66.04 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "d7d1317e-54a4-428c-b7be-b26daee071c1") + ) + (instances + (project "nixie" + (path "/7c670055-6eae-4e4c-be40-3c8d8a0ecd74" + (reference "#PWR011") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:VDC") + (at 147.32 129.54 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "6081e641-214d-4f1d-8f85-4efcfe66c572") + (property "Reference" "#PWR09" + (at 147.32 133.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+170V" + (at 147.32 125.095 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 147.32 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 147.32 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"VDC\"" + (at 147.32 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "aa4aa1b0-f5c1-4c29-9c27-4fc615f480d1") + ) + (instances + (project "nixie" + (path "/7c670055-6eae-4e4c-be40-3c8d8a0ecd74" + (reference "#PWR09") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 187.96 146.05 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "6ee768b3-06aa-4355-9aca-d81bf2d3a748") + (property "Reference" "R18" + (at 187.96 139.7 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "10k" + (at 187.96 142.24 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0805_2012Metric" + (at 187.96 144.272 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 187.96 146.05 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Resistor" + (at 187.96 146.05 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "c9426e8c-67d1-4176-8e92-e2fc9d04fe08") + ) + (pin "1" + (uuid "10bdc32a-20c4-41f6-94c4-bab024dc031b") + ) + (instances + (project "nixie" + (path "/7c670055-6eae-4e4c-be40-3c8d8a0ecd74" + (reference "R18") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 165.1 29.21 180) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "754de838-b3d3-407c-909a-09775dcdbe40") + (property "Reference" "R10" + (at 167.64 27.9399 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Value" "10k" + (at 167.64 30.4799 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "Resistor_SMD:R_0805_2012Metric" + (at 166.878 29.21 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 165.1 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Resistor" + (at 165.1 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "5165d6b2-c2fa-4507-984f-27342789aa7d") + ) + (pin "1" + (uuid "bb52e4f6-5802-4624-8218-b98efc92ce25") + ) + (instances + (project "nixie" + (path "/7c670055-6eae-4e4c-be40-3c8d8a0ecd74" + (reference "R10") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 149.86 90.17 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "764b2151-3ca2-42d2-8007-9c1db550710d") + (property "Reference" "#PWR012" + (at 149.86 96.52 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 149.86 95.25 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 149.86 90.17 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 149.86 90.17 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 149.86 90.17 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "f7354d3c-e816-45a3-8c1c-580740e64341") + ) + (instances + (project "nixie" + (path "/7c670055-6eae-4e4c-be40-3c8d8a0ecd74" + (reference "#PWR012") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 165.1 73.66 180) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "7a8f6835-c1f7-47bf-a301-a82a05f3614f") + (property "Reference" "R12" + (at 167.64 72.3899 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Value" "10k" + (at 167.64 74.9299 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "Resistor_SMD:R_0805_2012Metric" + (at 166.878 73.66 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 165.1 73.66 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Resistor" + (at 165.1 73.66 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "3b7479f6-8bfc-49dd-abe2-14510cedaac6") + ) + (pin "1" + (uuid "e5a357bb-a2a4-4588-b80b-6f08abef1b94") + ) + (instances + (project "nixie" + (path "/7c670055-6eae-4e4c-be40-3c8d8a0ecd74" + (reference "R12") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 137.16 40.64 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "7ba8ed24-950d-4cfc-a225-a4c7c27d8af6") + (property "Reference" "R1" + (at 137.16 34.29 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "10k" + (at 137.16 36.83 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0805_2012Metric" + (at 137.16 38.862 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 137.16 40.64 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Resistor" + (at 137.16 40.64 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "74ad3201-736b-40e1-9bbf-a60790d09a58") + ) + (pin "1" + (uuid "fb1ed46e-0771-49a9-aa71-f071cc293a35") + ) + (instances + (project "nixie" + (path "/7c670055-6eae-4e4c-be40-3c8d8a0ecd74" + (reference "R1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector_Generic:Conn_01x02") + (at 62.23 50.8 0) + (mirror y) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "7c6b349f-25aa-441c-a7f3-f3d92c3844fb") + (property "Reference" "J2" + (at 62.23 44.958 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "opt_XTAL" + (at 62.23 47.498 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 62.23 50.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 62.23 50.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 62.23 50.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "20329cb6-c36e-48a2-9131-2d1f6d002e49") + ) + (pin "2" + (uuid "3a7089a3-7969-40ff-98b4-48c664af9253") + ) + (instances + (project "nixie" + (path "/7c670055-6eae-4e4c-be40-3c8d8a0ecd74" + (reference "J2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 201.93 151.13 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "8058621b-6c78-4cad-9a01-a07b18b27ec4") + (property "Reference" "#PWR018" + (at 201.93 157.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 201.93 156.21 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 201.93 151.13 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 201.93 151.13 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 201.93 151.13 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "2ded80e8-e231-4858-94d2-3a4b0d6adfca") + ) + (instances + (project "nixie" + (path "/7c670055-6eae-4e4c-be40-3c8d8a0ecd74" + (reference "#PWR018") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 149.86 110.49 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "82839987-685a-4612-bc55-fb2022d0dfe0") + (property "Reference" "#PWR013" + (at 149.86 116.84 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 149.86 115.57 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 149.86 110.49 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 149.86 110.49 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 149.86 110.49 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "73e48374-d2f6-4a1f-a5ce-96ccd4d21332") + ) + (instances + (project "nixie" + (path "/7c670055-6eae-4e4c-be40-3c8d8a0ecd74" + (reference "#PWR013") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Switch:SW_Push") + (at 35.56 30.48 90) + (mirror x) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "8cad6905-9784-4b29-9460-71447df18c8f") + (property "Reference" "SW2" + (at 30.226 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "~" + (at 30.48 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 30.48 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 30.48 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Push button switch, generic, two pins" + (at 35.56 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "d5afb0e3-f5ac-455c-8b44-74d3f5179356") + ) + (pin "2" + (uuid "d60447f6-05c4-4d4b-a5c7-0ee6044a4d9c") + ) + (instances + (project "nixie" + (path "/7c670055-6eae-4e4c-be40-3c8d8a0ecd74" + (reference "SW2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 137.16 60.96 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "8e429117-cb2f-41e5-a6ce-4c875dd0ab7c") + (property "Reference" "R2" + (at 137.16 54.61 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "10k" + (at 137.16 57.15 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0805_2012Metric" + (at 137.16 59.182 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 137.16 60.96 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Resistor" + (at 137.16 60.96 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "fb340988-0dfb-496b-9c91-4d1860b9f813") + ) + (pin "1" + (uuid "fd846fed-9ed1-43cb-a3c5-3857e96092e6") + ) + (instances + (project "nixie" + (path "/7c670055-6eae-4e4c-be40-3c8d8a0ecd74" + (reference "R2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Transistor_BJT:MPSA92") + (at 171.45 54.61 0) + (mirror x) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "93741d17-98a9-4e40-8f6d-b5e26c2a2d70") + (property "Reference" "QP2" + (at 176.53 53.3399 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "MPSA92" + (at 176.53 55.8799 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_TO_SOT_THT:TO-92_Inline" + (at 176.53 52.705 0) + (effects + (font + (size 1.27 1.27) + (italic yes) + ) + (justify left) + (hide yes) + ) + ) + (property "Datasheet" "http://www.onsemi.com/pub_link/Collateral/MPSA92-D.PDF" + (at 171.45 54.61 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (property "Description" "0.5A Ic, 300V Vce, PNP High Voltage Transistor, TO-92" + (at 171.45 54.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "3" + (uuid "653277a5-7558-46f8-b1cc-03d611b48cb2") + ) + (pin "1" + (uuid "fbc3cccd-07b3-436c-8366-b793c4241cdb") + ) + (pin "2" + (uuid "4e11c1b8-2b22-48d2-8712-d44f7c8c9914") + ) + (instances + (project "nixie" + (path "/7c670055-6eae-4e4c-be40-3c8d8a0ecd74" + (reference "QP2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 39.37 93.98 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "ad2dd4ef-cfec-4fae-840d-90e796dd4027") + (property "Reference" "#PWR03" + (at 39.37 100.33 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 39.37 99.06 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 39.37 93.98 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 39.37 93.98 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 39.37 93.98 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "a94643f6-81c7-446e-924c-5c7eae7631db") + ) + (instances + (project "" + (path "/7c670055-6eae-4e4c-be40-3c8d8a0ecd74" + (reference "#PWR03") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "nixies-us:IN-17") + (at 203.2 40.64 0) + (mirror y) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "ae0627af-5c2d-4d61-bb4d-84ded5004d8a") + (property "Reference" "N3" + (at 201.93 59.69 0) + (effects + (font + (size 1.143 1.143) + ) + ) + ) + (property "Value" "IN-17" + (at 203.2 40.64 0) + (effects + (font + (size 1.143 1.143) + ) + (justify left bottom) + (hide yes) + ) + ) + (property "Footprint" "nixies-us_IN-17" + (at 202.438 36.83 0) + (effects + (font + (size 0.508 0.508) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 203.2 40.64 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 203.2 40.64 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "A" + (uuid "add27dd3-8f02-46b9-9459-231e7b934ec1") + ) + (pin "7" + (uuid "c1790bf3-498d-422e-8fbc-8a3d6178f130") + ) + (pin "2" + (uuid "759c9437-c3fd-4850-a1ea-0cd7fc8c0e4c") + ) + (pin "1" + (uuid "e765aa6e-df22-410d-8fe8-4f4da7d0f785") + ) + (pin "0" + (uuid "de96c27c-3709-4462-b3e7-0914b6352c14") + ) + (pin "5" + (uuid "8d82eb4b-d2e6-41bf-917f-1c87d2ef5afb") + ) + (pin "9" + (uuid "1555458b-92ac-4ee3-b77b-1b4baf55c066") + ) + (pin "4" + (uuid "beeb516a-5ce0-4a5a-9ff8-56b6ab8cc067") + ) + (pin "3" + (uuid "92c8f777-15d6-4494-815a-c82079481fc6") + ) + (pin "6" + (uuid "8c9ea2b2-9112-4afc-8489-d494007ca972") + ) + (pin "8" + (uuid "70e8f47e-8b04-4b71-8f74-8e6df02c5c67") + ) + (instances + (project "nixie" + (path "/7c670055-6eae-4e4c-be40-3c8d8a0ecd74" + (reference "N3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "nixies-us:IN-17") + (at 233.68 40.64 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "b2817205-6238-48a3-8f22-5f5e1b2d703c") + (property "Reference" "N5" + (at 234.95 59.69 0) + (effects + (font + (size 1.143 1.143) + ) + ) + ) + (property "Value" "IN-17" + (at 233.68 40.64 0) + (effects + (font + (size 1.143 1.143) + ) + (justify left bottom) + (hide yes) + ) + ) + (property "Footprint" "nixies-us_IN-17" + (at 234.442 36.83 0) + (effects + (font + (size 0.508 0.508) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 233.68 40.64 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 233.68 40.64 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "A" + (uuid "2b5b3702-2427-437e-a90d-6690c59c03c5") + ) + (pin "7" + (uuid "043f5f50-22bf-4c4d-8d20-9c2e9bc9ed25") + ) + (pin "2" + (uuid "c3442f27-0126-4513-92e5-4e8b27ad20bf") + ) + (pin "1" + (uuid "b44f63ee-a77c-4149-a735-6eb3ed87a9db") + ) + (pin "0" + (uuid "ad77dac2-164c-4d6a-a1b9-74635b12e6a7") + ) + (pin "5" + (uuid "0cc9fa45-233e-487d-b3d5-6b0a7c551309") + ) + (pin "9" + (uuid "5dc39a7e-55ed-48dd-9caa-6d8622d7bdf9") + ) + (pin "4" + (uuid "00d271bf-ed57-4f5f-8e8a-d32d542bcea3") + ) + (pin "3" + (uuid "55d70fe4-f572-4ce8-bb03-d57f6620a828") + ) + (pin "6" + (uuid "5632729d-8204-4543-8315-9d69eeab5c2a") + ) + (pin "8" + (uuid "6be4d0b1-97a7-4a17-bed2-d37325346a38") + ) + (instances + (project "nixie" + (path "/7c670055-6eae-4e4c-be40-3c8d8a0ecd74" + (reference "N5") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 154.94 130.81 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "b74b021b-ecf6-44bf-a28a-cd8bacf6e808") + (property "Reference" "R9" + (at 154.94 124.46 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "300k" + (at 154.94 127 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0805_2012Metric" + (at 154.94 129.032 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 154.94 130.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Resistor" + (at 154.94 130.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "018c7ae0-13f4-47ad-8f19-d0cfc06f1a33") + ) + (pin "1" + (uuid "e7ecd731-7160-4ca4-85c5-b64e5a8e35c8") + ) + (instances + (project "nixie" + (path "/7c670055-6eae-4e4c-be40-3c8d8a0ecd74" + (reference "R9") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 187.96 105.41 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "c7b884d3-c7bf-4a95-9d3d-e9e9edd1d480") + (property "Reference" "R17" + (at 187.96 99.06 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "10k" + (at 187.96 101.6 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0805_2012Metric" + (at 187.96 107.188 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 187.96 105.41 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Resistor" + (at 187.96 105.41 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "07b1cc34-387d-4031-8e91-eba4265100ec") + ) + (pin "1" + (uuid "54138a66-38b5-4896-befd-0d17b4c645f1") + ) + (instances + (project "nixie" + (path "/7c670055-6eae-4e4c-be40-3c8d8a0ecd74" + (reference "R17") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "nixies-us:IN-17") + (at 203.2 85.09 0) + (mirror y) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "c9b46a0f-bf43-4b9f-9ad8-a0f5644ce1d7") + (property "Reference" "N4" + (at 201.93 104.14 0) + (effects + (font + (size 1.143 1.143) + ) + ) + ) + (property "Value" "IN-17" + (at 203.2 85.09 0) + (effects + (font + (size 1.143 1.143) + ) + (justify left bottom) + (hide yes) + ) + ) + (property "Footprint" "nixies-us_IN-17" + (at 202.438 81.28 0) + (effects + (font + (size 0.508 0.508) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 203.2 85.09 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 203.2 85.09 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "A" + (uuid "18f4dd2a-2591-490d-81e4-37da784d52c1") + ) + (pin "7" + (uuid "b225fc1a-7013-4586-9897-358bbfba3b48") + ) + (pin "2" + (uuid "a3db14d8-06bc-471d-aeab-60a548eb8c2b") + ) + (pin "1" + (uuid "45cd040f-212d-4991-9efc-81e14a1066bb") + ) + (pin "0" + (uuid "141bffa3-4c3e-46c8-9250-03e735df631c") + ) + (pin "5" + (uuid "257e1952-1fe2-48ef-bd5b-8190775cc0e5") + ) + (pin "9" + (uuid "cca0eb27-9e28-452c-8513-0840cea23ad5") + ) + (pin "4" + (uuid "e2029783-3fb6-4019-9bf0-b9f24a9dfacc") + ) + (pin "3" + (uuid "70224517-8ffa-45e4-a864-8cbd753938a0") + ) + (pin "6" + (uuid "aa8ef45c-9529-4f19-8ace-1ced0b36c71d") + ) + (pin "8" + (uuid "a83a03cb-ea18-4e69-abe2-f33b603c85ba") + ) + (instances + (project "nixie" + (path "/7c670055-6eae-4e4c-be40-3c8d8a0ecd74" + (reference "N4") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 154.94 78.74 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "cc30a94c-637b-46e8-8374-52fea6c39a80") + (property "Reference" "R7" + (at 154.94 72.39 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "1M" + (at 154.94 74.93 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0805_2012Metric" + (at 154.94 80.518 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 154.94 78.74 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Resistor" + (at 154.94 78.74 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "1c30f64e-0c0d-4c9f-a860-cc4522e8aa03") + ) + (pin "1" + (uuid "bf06fd1d-6185-4969-bc09-704a66849226") + ) + (instances + (project "nixie" + (path "/7c670055-6eae-4e4c-be40-3c8d8a0ecd74" + (reference "R7") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "MCU_Microchip_ATmega:ATmega48-20P") + (at 85.09 66.04 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "ce01cda8-8e06-446c-92fb-0073caf25f6f") + (property "Reference" "U1" + (at 88.646 84.582 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "ATmega48-20P" + (at 88.646 87.122 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_DIP:DIP-28_W7.62mm" + (at 85.09 66.04 0) + (effects + (font + (size 1.27 1.27) + (italic yes) + ) + (hide yes) + ) + ) + (property "Datasheet" "http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-2545-8-bit-AVR-Microcontroller-ATmega48-88-168_Datasheet.pdf" + (at 85.09 66.04 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "20MHz, 4kB Flash, 512B SRAM, 256B EEPROM, DIP-28" + (at 85.09 66.04 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "6" + (uuid "afed75ca-c87a-4b6a-94a9-26a3ae4eb898") + ) + (pin "19" + (uuid "0b21e57b-1962-4005-9209-9abd293882de") + ) + (pin "25" + (uuid "394258ae-b8ee-441b-ab81-1f8bfcdad37a") + ) + (pin "28" + (uuid "c751036b-4753-4720-ae61-013d390ca9be") + ) + (pin "27" + (uuid "35864cfd-e53e-4293-ba41-93dcbfa275b4") + ) + (pin "24" + (uuid "ae6e433d-5263-4157-9d4d-31e88cf04918") + ) + (pin "22" + (uuid "ecdd6708-6f0c-4762-af02-37e2e9cb72ac") + ) + (pin "12" + (uuid "49dbe9ef-7bfa-4e51-a3e7-449f95c04fae") + ) + (pin "23" + (uuid "50d25c81-f21e-42da-8687-247298097a07") + ) + (pin "16" + (uuid "c3fcc6ba-8dab-47d7-a732-f8cfca035b8d") + ) + (pin "1" + (uuid "16fe3047-fd01-4498-8a7d-a6040cee7fb6") + ) + (pin "2" + (uuid "66f1e61a-47c7-484a-8cb9-4f0e9bbc9187") + ) + (pin "4" + (uuid "df1ed0e2-fbf5-4c22-a632-5ef7fbf4805d") + ) + (pin "5" + (uuid "93e66537-239a-4ffc-9377-356e3022d568") + ) + (pin "20" + (uuid "d24cca92-e748-46ab-bd2d-f144e05670e8") + ) + (pin "18" + (uuid "f9d4c74e-c616-4df4-9940-3c3df1f04180") + ) + (pin "17" + (uuid "14e6bcc1-f566-4891-a711-2f79e8ca262b") + ) + (pin "7" + (uuid "2c6ff655-ed19-4aa5-b00e-2e8e9b22f8c7") + ) + (pin "26" + (uuid "cdf673cb-0a59-4259-a22c-c1dc551fadaa") + ) + (pin "8" + (uuid "1433fe59-f04e-4d85-8546-9f7d6ecbb6fb") + ) + (pin "13" + (uuid "e9ab56ba-79b1-4637-812e-2e584f4a6854") + ) + (pin "14" + (uuid "36319e8e-c1d1-4343-af0b-2fc58e941e31") + ) + (pin "21" + (uuid "c35f24e7-3e8c-4326-8e63-35b6fe86b717") + ) + (pin "15" + (uuid "8792c9ec-aabe-4b1e-aca8-6ceced1d89b8") + ) + (pin "10" + (uuid "445d874e-2088-4967-a847-9d5ce5261f08") + ) + (pin "3" + (uuid "9e747278-79e4-4481-978a-b5db75fddf65") + ) + (pin "9" + (uuid "1f22b6bf-9f57-4c6d-adbb-f5d85d5539dd") + ) + (pin "11" + (uuid "4ca43caf-1172-465b-ada0-3a81e189dfe7") + ) + (instances + (project "" + (path "/7c670055-6eae-4e4c-be40-3c8d8a0ecd74" + (reference "U1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Transistor_BJT:MPSA92") + (at 171.45 78.74 0) + (mirror x) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "d0a5c927-3401-49c9-8faa-a70dc8f20fc3") + (property "Reference" "QP3" + (at 176.53 77.4699 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "MPSA92" + (at 176.53 80.0099 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_TO_SOT_THT:TO-92_Inline" + (at 176.53 76.835 0) + (effects + (font + (size 1.27 1.27) + (italic yes) + ) + (justify left) + (hide yes) + ) + ) + (property "Datasheet" "http://www.onsemi.com/pub_link/Collateral/MPSA92-D.PDF" + (at 171.45 78.74 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (property "Description" "0.5A Ic, 300V Vce, PNP High Voltage Transistor, TO-92" + (at 171.45 78.74 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "3" + (uuid "2e5c05cc-16b4-4281-9f7e-85e2e62a0100") + ) + (pin "1" + (uuid "346b227a-60d5-441a-b7f8-21ead9759ee8") + ) + (pin "2" + (uuid "fbea8994-4d7c-4dd0-945e-940d12561687") + ) + (instances + (project "nixie" + (path "/7c670055-6eae-4e4c-be40-3c8d8a0ecd74" + (reference "QP3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Transistor_BJT:MPSA42") + (at 199.39 146.05 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "d4a79fab-9efd-46a3-aba7-2993bb2bb98a") + (property "Reference" "QN6" + (at 204.47 144.7799 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "MPSA42" + (at 204.47 147.3199 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_TO_SOT_THT:TO-92_Inline" + (at 204.47 147.955 0) + (effects + (font + (size 1.27 1.27) + (italic yes) + ) + (justify left) + (hide yes) + ) + ) + (property "Datasheet" "http://www.onsemi.com/pub_link/Collateral/MPSA42-D.PDF" + (at 199.39 146.05 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (property "Description" "0.5A Ic, 300V Vce, NPN High Voltage Transistor, TO-92" + (at 199.39 146.05 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "3" + (uuid "8a665a3b-c396-4c3d-98e3-5af68c7ec040") + ) + (pin "2" + (uuid "e3150b0f-cc1b-4ccc-959e-37839996afa7") + ) + (pin "1" + (uuid "1c0d178a-3678-4a7d-9f17-62b990ac5894") + ) + (instances + (project "nixie" + (path "/7c670055-6eae-4e4c-be40-3c8d8a0ecd74" + (reference "QN6") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 154.94 34.29 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "dcc4e445-6835-463b-b33b-fbd213020301") + (property "Reference" "R5" + (at 154.94 27.94 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "1M" + (at 154.94 30.48 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0805_2012Metric" + (at 154.94 36.068 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 154.94 34.29 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Resistor" + (at 154.94 34.29 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "ccc85ee1-02c8-4a87-a250-13aaa4d31ac4") + ) + (pin "1" + (uuid "96cefdce-ecd9-40e6-a2e3-754cb115d411") + ) + (instances + (project "nixie" + (path "/7c670055-6eae-4e4c-be40-3c8d8a0ecd74" + (reference "R5") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "nixies-us:IN-17") + (at 233.68 85.09 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "e34bd7b6-4f1e-4fc4-88d0-1a71cf746af4") + (property "Reference" "N6" + (at 234.95 104.14 0) + (effects + (font + (size 1.143 1.143) + ) + ) + ) + (property "Value" "IN-17" + (at 233.68 85.09 0) + (effects + (font + (size 1.143 1.143) + ) + (justify left bottom) + (hide yes) + ) + ) + (property "Footprint" "nixies-us_IN-17" + (at 234.442 81.28 0) + (effects + (font + (size 0.508 0.508) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 233.68 85.09 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 233.68 85.09 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "A" + (uuid "e6646ae0-565a-4c51-86f9-674a2a2e4cc3") + ) + (pin "7" + (uuid "74e5bf1f-edf1-4c4d-95de-3fc085dbd878") + ) + (pin "2" + (uuid "bbe7555c-a452-4807-bb0a-48991c0f6bf1") + ) + (pin "1" + (uuid "b164ec9b-ea01-478c-897e-7d37a748f107") + ) + (pin "0" + (uuid "3a73d1ef-deec-42f2-80cb-a654f3feb9f0") + ) + (pin "5" + (uuid "316cb661-16b8-4398-b3fa-7e482160432a") + ) + (pin "9" + (uuid "fa8d6da8-93ef-4054-97f9-5b7ecb9644ff") + ) + (pin "4" + (uuid "06fe3990-64e7-4fa0-b414-01f1bd3dc076") + ) + (pin "3" + (uuid "5020e25d-32ca-4788-893b-7c3f8843d7ce") + ) + (pin "6" + (uuid "8ab564bc-200f-4676-9369-c06f16626f41") + ) + (pin "8" + (uuid "a10a27bb-30e5-433b-adce-6b3db3563286") + ) + (instances + (project "nixie" + (path "/7c670055-6eae-4e4c-be40-3c8d8a0ecd74" + (reference "N6") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "nixies-us:INS-1") + (at 191.77 130.81 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "e3b0c42d-3b29-42f2-9c43-928662464550") + (property "Reference" "N2" + (at 191.77 121.92 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "~" + (at 191.77 124.46 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "INS-1" + (at 191.77 130.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 191.77 130.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 191.77 130.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "4292a2a1-45e7-4ff7-bac3-0cd5dc26deb3") + ) + (pin "2" + (uuid "ebb12471-7df1-48c9-a115-1f80dbd9eb01") + ) + (instances + (project "nixie" + (path "/7c670055-6eae-4e4c-be40-3c8d8a0ecd74" + (reference "N2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Timer_RTC:DS3231M") + (at 39.37 83.82 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "e533bfe7-3a6b-446c-843c-c6fa75a3a586") + (property "Reference" "U3" + (at 42.926 93.472 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "DS3231M" + (at 42.926 96.012 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_SO:SOIC-16W_7.5x10.3mm_P1.27mm" + (at 39.37 99.06 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "http://datasheets.maximintegrated.com/en/ds/DS3231.pdf" + (at 46.228 82.55 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Extremely Accurate I2C-Integrated RTC/TCXO/Crystal SOIC-16" + (at 39.37 83.82 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "215363fd-565e-4454-bd35-28311df46459") + ) + (pin "4" + (uuid "1c5f4300-ca94-4f4f-8f45-2ad737b3c47a") + ) + (pin "5" + (uuid "359db3ac-6fda-4b96-91d3-29e58c470e03") + ) + (pin "7" + (uuid "c268a78a-eb36-4b4c-8eee-07668a1d58d7") + ) + (pin "16" + (uuid "68e0b84b-ca07-4fe0-ba8b-19095cd93ac5") + ) + (pin "8" + (uuid "d1e2e921-0d84-4317-b324-8b136b24b5eb") + ) + (pin "3" + (uuid "380af3a9-9f1b-4405-82a5-1a828475a4bf") + ) + (pin "6" + (uuid "38d0fe6c-b707-46a8-9d48-5a11d2c891bf") + ) + (pin "9" + (uuid "1a1084a2-2aeb-4cfa-9758-31967809e01a") + ) + (pin "15" + (uuid "526b4742-6ba8-4620-b389-06f87f6cdad8") + ) + (pin "13" + (uuid "5a52c2ce-e409-472a-bef9-c759c1001be0") + ) + (pin "11" + (uuid "5ed30e23-8f8e-4758-8301-2e1b23686adc") + ) + (pin "12" + (uuid "0d633450-c173-44af-a12d-981f9c39b8be") + ) + (pin "1" + (uuid "2c52289e-b42a-4165-a83b-b4171cafc727") + ) + (pin "10" + (uuid "9ccb4ed4-8e36-4e2f-a94c-cfdd6b9bf8d3") + ) + (pin "14" + (uuid "1f28cc79-3c61-4b99-ac90-6a1f199a0dd9") + ) + (instances + (project "" + (path "/7c670055-6eae-4e4c-be40-3c8d8a0ecd74" + (reference "U3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_name "INS-1_1") + (lib_id "nixies-us:INS-1") + (at 176.53 130.81 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "ea7dad7a-94e9-4dc1-9fb3-02c2db650755") + (property "Reference" "N1" + (at 176.53 121.92 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "~" + (at 176.53 124.46 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "INS-1" + (at 176.53 130.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 176.53 130.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 176.53 130.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "088a8dfa-ec88-418b-8b01-c9681b7d30b4") + ) + (pin "2" + (uuid "49013cd2-85d1-4d72-b9d4-44078a02243f") + ) + (instances + (project "nixie" + (path "/7c670055-6eae-4e4c-be40-3c8d8a0ecd74" + (reference "N1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:+5V") + (at 85.09 111.76 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "eaf9747d-d7e1-4262-9544-e97761fb9b54") + (property "Reference" "#PWR07" + (at 85.09 115.57 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+5V" + (at 85.09 106.68 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 85.09 111.76 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 85.09 111.76 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"+5V\"" + (at 85.09 111.76 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "98dc5d95-df0a-4bdb-9d6c-39a4214a5e1a") + ) + (instances + (project "" + (path "/7c670055-6eae-4e4c-be40-3c8d8a0ecd74" + (reference "#PWR07") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 154.94 54.61 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "ee349862-cef3-48f6-aba3-f3885ba479dc") + (property "Reference" "R6" + (at 154.94 48.26 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "1M" + (at 154.94 50.8 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0805_2012Metric" + (at 154.94 56.388 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 154.94 54.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Resistor" + (at 154.94 54.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "00700108-df64-4db0-884e-7c29684ef7aa") + ) + (pin "1" + (uuid "859b1db9-79fe-4a3a-b154-e16b3aa6657e") + ) + (instances + (project "nixie" + (path "/7c670055-6eae-4e4c-be40-3c8d8a0ecd74" + (reference "R6") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Switch:SW_Push") + (at 25.4 30.48 90) + (mirror x) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "f087e2f9-7c2b-4eac-bd8e-1c33e53edffe") + (property "Reference" "SW1" + (at 20.066 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "~" + (at 20.32 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 20.32 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 20.32 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Push button switch, generic, two pins" + (at 25.4 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "3f2bcc20-9055-465d-9a6e-c8f6e1db7610") + ) + (pin "2" + (uuid "a4af3a0d-a8fe-41d1-97fc-8e10247303fd") + ) + (instances + (project "nixie" + (path "/7c670055-6eae-4e4c-be40-3c8d8a0ecd74" + (reference "SW1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Transistor_BJT:MPSA42") + (at 147.32 105.41 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "f6f1240d-5e19-45f3-9e3d-ca0d3864aaaf") + (property "Reference" "QN5" + (at 152.4 104.1399 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "MPSA42" + (at 152.4 106.6799 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_TO_SOT_THT:TO-92_Inline" + (at 152.4 107.315 0) + (effects + (font + (size 1.27 1.27) + (italic yes) + ) + (justify left) + (hide yes) + ) + ) + (property "Datasheet" "http://www.onsemi.com/pub_link/Collateral/MPSA42-D.PDF" + (at 147.32 105.41 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (property "Description" "0.5A Ic, 300V Vce, NPN High Voltage Transistor, TO-92" + (at 147.32 105.41 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "3" + (uuid "64a9ffcb-44c7-433f-ab7f-45bfd2d7d7e7") + ) + (pin "2" + (uuid "a6d6f80e-f473-4303-b083-c15dfa114480") + ) + (pin "1" + (uuid "8c57f5ea-913e-42ad-af2b-36cc56714f2a") + ) + (instances + (project "nixie" + (path "/7c670055-6eae-4e4c-be40-3c8d8a0ecd74" + (reference "QN5") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 149.86 45.72 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "f7364702-d16b-4b26-bbbd-2ab9d3c0e80f") + (property "Reference" "#PWR010" + (at 149.86 52.07 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 149.86 50.8 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 149.86 45.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 149.86 45.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 149.86 45.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "c1de008c-dc87-4abc-a09a-d7ecc450e203") + ) + (instances + (project "" + (path "/7c670055-6eae-4e4c-be40-3c8d8a0ecd74" + (reference "#PWR010") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:VDC") + (at 165.1 43.18 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "ffb2600d-6528-4242-bd25-a6a375b48cfa") + (property "Reference" "#PWR015" + (at 165.1 46.99 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+170V" + (at 165.1 38.1 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 165.1 43.18 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 165.1 43.18 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"VDC\"" + (at 165.1 43.18 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "6b2b3434-f1b5-4cad-90a4-1239710e6e16") + ) + (instances + (project "nixie" + (path "/7c670055-6eae-4e4c-be40-3c8d8a0ecd74" + (reference "#PWR015") + (unit 1) + ) + ) + ) + ) + (sheet_instances + (path "/" + (page "1") + ) + ) +)