aboutsummaryrefslogtreecommitdiff
path: root/keyboards
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards')
-rw-r--r--keyboards/pilcrow/Makefile3
-rw-r--r--keyboards/pilcrow/config.h162
-rw-r--r--keyboards/pilcrow/keymaps/default/Makefile21
-rw-r--r--keyboards/pilcrow/keymaps/default/config.h8
-rw-r--r--keyboards/pilcrow/keymaps/default/keymap.c88
-rw-r--r--keyboards/pilcrow/keymaps/default/readme.md1
-rw-r--r--keyboards/pilcrow/pilcrow.c28
-rw-r--r--keyboards/pilcrow/pilcrow.h23
-rw-r--r--keyboards/pilcrow/readme.md28
-rw-r--r--keyboards/pilcrow/rules.mk67
-rw-r--r--keyboards/weebkeeb/Makefile3
-rw-r--r--keyboards/weebkeeb/aek.dxf6486
-rw-r--r--keyboards/weebkeeb/config.h162
-rw-r--r--keyboards/weebkeeb/keymaps/default/Makefile21
-rw-r--r--keyboards/weebkeeb/keymaps/default/config.h8
-rw-r--r--keyboards/weebkeeb/keymaps/default/keymap.c119
-rw-r--r--keyboards/weebkeeb/keymaps/default/readme.md1
-rw-r--r--keyboards/weebkeeb/readme.md28
-rw-r--r--keyboards/weebkeeb/rules.mk67
-rw-r--r--keyboards/weebkeeb/weebkeeb.c28
-rw-r--r--keyboards/weebkeeb/weebkeeb.h23
21 files changed, 0 insertions, 7375 deletions
diff --git a/keyboards/pilcrow/Makefile b/keyboards/pilcrow/Makefile
deleted file mode 100644
index 4e2a6f00f..000000000
--- a/keyboards/pilcrow/Makefile
+++ /dev/null
@@ -1,3 +0,0 @@
1ifndef MAKEFILE_INCLUDED
2 include ../../Makefile
3endif \ No newline at end of file
diff --git a/keyboards/pilcrow/config.h b/keyboards/pilcrow/config.h
deleted file mode 100644
index d79c1ba40..000000000
--- a/keyboards/pilcrow/config.h
+++ /dev/null
@@ -1,162 +0,0 @@
1/*
2Copyright 2012 Jun Wako <wakojun@gmail.com>
3
4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation, either version 2 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/
17
18#ifndef CONFIG_H
19#define CONFIG_H
20
21#include "config_common.h"
22
23/* USB Device descriptor parameter */
24#define VENDOR_ID 0xFEED
25#define PRODUCT_ID 0x6060
26#define DEVICE_VER 0x0001
27#define MANUFACTURER You
28#define PRODUCT pilcrow
29#define DESCRIPTION A custom keyboard
30
31/* key matrix size */
32#define MATRIX_ROWS 4
33#define MATRIX_COLS 10
34
35/*
36 * Keyboard Matrix Assignments
37 *
38 * Change this to how you wired your keyboard
39 * COLS: AVR pins used for columns, left to right
40 * ROWS: AVR pins used for rows, top to bottom
41 * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode)
42 * ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode)
43 *
44*/
45#define MATRIX_ROW_PINS { B2, C6, D7, E6 }
46#define MATRIX_COL_PINS { B6, D1, B4, B5, D4, D0, B3, B1, F7, F6 }
47#define UNUSED_PINS
48
49/* COL2ROW or ROW2COL */
50#define DIODE_DIRECTION COL2ROW
51
52// #define BACKLIGHT_PIN B7
53// #define BACKLIGHT_BREATHING
54// #define BACKLIGHT_LEVELS 3
55
56
57/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
58#define DEBOUNCING_DELAY 5
59
60/* define if matrix has ghost (lacks anti-ghosting diodes) */
61//#define MATRIX_HAS_GHOST
62
63/* number of backlight levels */
64
65/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
66#define LOCKING_SUPPORT_ENABLE
67/* Locking resynchronize hack */
68#define LOCKING_RESYNC_ENABLE
69
70/*
71 * Force NKRO
72 *
73 * Force NKRO (nKey Rollover) to be enabled by default, regardless of the saved
74 * state in the bootmagic EEPROM settings. (Note that NKRO must be enabled in the
75 * makefile for this to work.)
76 *
77 * If forced on, NKRO can be disabled via magic key (default = LShift+RShift+N)
78 * until the next keyboard reset.
79 *
80 * NKRO may prevent your keystrokes from being detected in the BIOS, but it is
81 * fully operational during normal computer usage.
82 *
83 * For a less heavy-handed approach, enable NKRO via magic key (LShift+RShift+N)
84 * or via bootmagic (hold SPACE+N while plugging in the keyboard). Once set by
85 * bootmagic, NKRO mode will always be enabled until it is toggled again during a
86 * power-up.
87 *
88 */
89//#define FORCE_NKRO
90
91/*
92 * Magic Key Options
93 *
94 * Magic keys are hotkey commands that allow control over firmware functions of
95 * the keyboard. They are best used in combination with the HID Listen program,
96 * found here: https://www.pjrc.com/teensy/hid_listen.html
97 *
98 * The options below allow the magic key functionality to be changed. This is
99 * useful if your keyboard/keypad is missing keys and you want magic key support.
100 *
101 */
102
103/* key combination for magic key command */
104#define IS_COMMAND() ( \
105 keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT)) \
106)
107
108/* control how magic key switches layers */
109//#define MAGIC_KEY_SWITCH_LAYER_WITH_FKEYS true
110//#define MAGIC_KEY_SWITCH_LAYER_WITH_NKEYS true
111//#define MAGIC_KEY_SWITCH_LAYER_WITH_CUSTOM false
112
113/* override magic key keymap */
114//#define MAGIC_KEY_SWITCH_LAYER_WITH_FKEYS
115//#define MAGIC_KEY_SWITCH_LAYER_WITH_NKEYS
116//#define MAGIC_KEY_SWITCH_LAYER_WITH_CUSTOM
117//#define MAGIC_KEY_HELP1 H
118//#define MAGIC_KEY_HELP2 SLASH
119//#define MAGIC_KEY_DEBUG D
120//#define MAGIC_KEY_DEBUG_MATRIX X
121//#define MAGIC_KEY_DEBUG_KBD K
122//#define MAGIC_KEY_DEBUG_MOUSE M
123//#define MAGIC_KEY_VERSION V
124//#define MAGIC_KEY_STATUS S
125//#define MAGIC_KEY_CONSOLE C
126//#define MAGIC_KEY_LAYER0_ALT1 ESC
127//#define MAGIC_KEY_LAYER0_ALT2 GRAVE
128//#define MAGIC_KEY_LAYER0 0
129//#define MAGIC_KEY_LAYER1 1
130//#define MAGIC_KEY_LAYER2 2
131//#define MAGIC_KEY_LAYER3 3
132//#define MAGIC_KEY_LAYER4 4
133//#define MAGIC_KEY_LAYER5 5
134//#define MAGIC_KEY_LAYER6 6
135//#define MAGIC_KEY_LAYER7 7
136//#define MAGIC_KEY_LAYER8 8
137//#define MAGIC_KEY_LAYER9 9
138//#define MAGIC_KEY_BOOTLOADER PAUSE
139//#define MAGIC_KEY_LOCK CAPS
140//#define MAGIC_KEY_EEPROM E
141//#define MAGIC_KEY_NKRO N
142//#define MAGIC_KEY_SLEEP_LED Z
143
144/*
145 * Feature disable options
146 * These options are also useful to firmware size reduction.
147 */
148
149/* disable debug print */
150//#define NO_DEBUG
151
152/* disable print */
153//#define NO_PRINT
154
155/* disable action features */
156//#define NO_ACTION_LAYER
157//#define NO_ACTION_TAPPING
158//#define NO_ACTION_ONESHOT
159//#define NO_ACTION_MACRO
160//#define NO_ACTION_FUNCTION
161
162#endif
diff --git a/keyboards/pilcrow/keymaps/default/Makefile b/keyboards/pilcrow/keymaps/default/Makefile
deleted file mode 100644
index f4671a9d1..000000000
--- a/keyboards/pilcrow/keymaps/default/Makefile
+++ /dev/null
@@ -1,21 +0,0 @@
1# Build Options
2# change to "no" to disable the options, or define them in the Makefile in
3# the appropriate keymap folder that will get included automatically
4#
5BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000)
6MOUSEKEY_ENABLE = yes # Mouse keys(+4700)
7EXTRAKEY_ENABLE = yes # Audio control and System control(+450)
8CONSOLE_ENABLE = no # Console for debug(+400)
9COMMAND_ENABLE = yes # Commands for debug and configuration
10NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
11BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
12MIDI_ENABLE = no # MIDI controls
13AUDIO_ENABLE = no # Audio output on port C6
14UNICODE_ENABLE = no # Unicode
15BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
16RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight. Do not enable this with audio at the same time.
17SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
18
19ifndef QUANTUM_DIR
20 include ../../../../Makefile
21endif \ No newline at end of file
diff --git a/keyboards/pilcrow/keymaps/default/config.h b/keyboards/pilcrow/keymaps/default/config.h
deleted file mode 100644
index df06a2620..000000000
--- a/keyboards/pilcrow/keymaps/default/config.h
+++ /dev/null
@@ -1,8 +0,0 @@
1#ifndef CONFIG_USER_H
2#define CONFIG_USER_H
3
4#include "../../config.h"
5
6// place overrides here
7
8#endif \ No newline at end of file
diff --git a/keyboards/pilcrow/keymaps/default/keymap.c b/keyboards/pilcrow/keymaps/default/keymap.c
deleted file mode 100644
index e382e4c6a..000000000
--- a/keyboards/pilcrow/keymaps/default/keymap.c
+++ /dev/null
@@ -1,88 +0,0 @@
1#include "pilcrow.h"
2#define _______ KC_TRNS
3const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
4[0] = KEYMAP( \
5 KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, \
6 KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, \
7 KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, \
8 KC_LCTL, KC_LALT, KC_LGUI, MO(1), KC_SPC, MT(MOD_LSFT, KC_SPC), MO(2), MO(3), KC_DEL, KC_ESC \
9),
10
11/* Colemak
12 * ,-----------------------------------------------------------------------------------.
13 * | Tab | Q | W | F | P | G | J | L | U | Y | ; | Bksp |
14 * |------+------+------+------+------+-------------+------+------+------+------+------|
15 * | Esc | A | R | S | T | D | H | N | E | I | O | " |
16 * |------+------+------+------+------+------|------+------+------+------+------+------|
17 * | Shift| Z | X | C | V | B | K | M | , | . | / |Enter |
18 * |------+------+------+------+------+------+------+------+------+------+------+------|
19 * |Adjust| Ctrl | Alt | GUI |Lower |Space |Space |Raise | Left | Down | Up |Right |
20 * `-----------------------------------------------------------------------------------'
21 */
22[1] = KEYMAP( \
23 KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, \
24 KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_UNDS, KC_PLUS, KC_LCBR, KC_RCBR, \
25 KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12,S(KC_NUHS),S(KC_NUBS),KC_PIPE, S(KC_QUOT), \
26 _______, _______, _______, _______, KC_BSPC, KC_BSPC, _______, KC_MNXT, KC_VOLD, KC_GRV \
27),
28[2] = KEYMAP( \
29 KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, \
30 KC_TAB, KC_LEFT, KC_DOWN, KC_UP, KC_RIGHT,KC_F6, KC_MINS, KC_EQL, KC_LBRC, KC_RBRC, \
31 OSM(MOD_LSFT), KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_NUHS, KC_NUBS, KC_BSLS, KC_QUOT, \
32 _______, _______, _______, _______, KC_ENT, KC_ENT, _______, KC_MNXT, KC_VOLD, KC_VOLU \
33),
34
35/* Adjust (Lower + Raise)
36 * ,-----------------------------------------------------------------------------------.
37 * | | Reset| | | | | | | | | | Del |
38 * |------+------+------+------+------+-------------+------+------+------+------+------|
39 * | | | |Aud on|Audoff|AGnorm|AGswap|Qwerty|Colemk|Dvorak| | |
40 * |------+------+------+------+------+------|------+------+------+------+------+------|
41 * | | | | | | | | | | | | |
42 * |------+------+------+------+------+------+------+------+------+------+------+------|
43 * | | | | | | | | | | | |
44 * `-----------------------------------------------------------------------------------'
45 */
46[3] = KEYMAP( \
47 RESET, KC_UP, _______, _______, _______, _______, _______, KC_MS_WH_DOWN, KC_MS_U, KC_MS_WH_UP, \
48 KC_LEFT, KC_DOWN, KC_RIGHT, AU_ON, AU_OFF, AG_NORM, AG_SWAP, KC_MS_L,KC_MS_D, KC_MS_R, \
49 RGB_TOG, RGB_MOD, RGB_HUI, RGB_HUD, RGB_SAI, RGB_SAD, RGB_VAI, RGB_VAD, _______, _______, \
50 _______, _______, _______, _______, KC_MS_BTN1, KC_MS_BTN2, _______, _______, _______, _______ \
51)
52};
53
54const uint16_t PROGMEM fn_actions[] = {
55
56};
57
58const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt)
59{
60 // MACRODOWN only works in this function
61 switch(id) {
62 case 0:
63 if (record->event.pressed) {
64 register_code(KC_RSFT);
65 } else {
66 unregister_code(KC_RSFT);
67 }
68 break;
69 }
70 return MACRO_NONE;
71};
72
73
74void matrix_init_user(void) {
75
76}
77
78void matrix_scan_user(void) {
79
80}
81
82bool process_record_user(uint16_t keycode, keyrecord_t *record) {
83 return true;
84}
85
86void led_set_user(uint8_t usb_led) {
87
88} \ No newline at end of file
diff --git a/keyboards/pilcrow/keymaps/default/readme.md b/keyboards/pilcrow/keymaps/default/readme.md
deleted file mode 100644
index 95472dfca..000000000
--- a/keyboards/pilcrow/keymaps/default/readme.md
+++ /dev/null
@@ -1 +0,0 @@
1# The default keymap for pilcrow \ No newline at end of file
diff --git a/keyboards/pilcrow/pilcrow.c b/keyboards/pilcrow/pilcrow.c
deleted file mode 100644
index c8243df7b..000000000
--- a/keyboards/pilcrow/pilcrow.c
+++ /dev/null
@@ -1,28 +0,0 @@
1#include "pilcrow.h"
2
3void matrix_init_kb(void) {
4 // put your keyboard start-up code here
5 // runs once when the firmware starts up
6
7 matrix_init_user();
8}
9
10void matrix_scan_kb(void) {
11 // put your looping keyboard code here
12 // runs every cycle (a lot)
13
14 matrix_scan_user();
15}
16
17bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
18 // put your per-action keyboard code here
19 // runs for every action, just before processing by the firmware
20
21 return process_record_user(keycode, record);
22}
23
24void led_set_kb(uint8_t usb_led) {
25 // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here
26
27 led_set_user(usb_led);
28}
diff --git a/keyboards/pilcrow/pilcrow.h b/keyboards/pilcrow/pilcrow.h
deleted file mode 100644
index 7138ccb3f..000000000
--- a/keyboards/pilcrow/pilcrow.h
+++ /dev/null
@@ -1,23 +0,0 @@
1#ifndef PILCROW_H
2#define PILCROW_H
3
4#include "quantum.h"
5
6// This a shortcut to help you visually see your layout.
7// The following is an example using the Planck MIT layout
8// The first section contains all of the arguements
9// The second converts the arguments into a two-dimensional array
10#define KEYMAP( \
11 k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, \
12 k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, \
13 k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, \
14 k30, k31, k32, k33, k34, k35, k36, k37, k38, k39 \
15) \
16{ \
17 { k00, k01, k02, k03, k04, k05, k06, k07, k08, k09 }, \
18 { k10, k11, k12, k13, k14, k15, k16, k17, k18, k19 }, \
19 { k20, k21, k22, k23, k24, k25, k26, k27, k28, k29 }, \
20 { k30, k31, k32, k33, k34, k35, k36, k37, k38, k39 } \
21}
22
23#endif
diff --git a/keyboards/pilcrow/readme.md b/keyboards/pilcrow/readme.md
deleted file mode 100644
index 7a7f6d2af..000000000
--- a/keyboards/pilcrow/readme.md
+++ /dev/null
@@ -1,28 +0,0 @@
1pilcrow keyboard firmware
2======================
3
4## Quantum MK Firmware
5
6For the full Quantum feature list, see [the parent readme](/).
7
8## Building
9
10Download or clone the whole firmware and navigate to the keyboards/pilcrow folder. Once your dev env is setup, you'll be able to type `make` to generate your .hex - you can then use the Teensy Loader to program your .hex file.
11
12Depending on which keymap you would like to use, you will have to compile slightly differently.
13
14### Default
15
16To build with the default keymap, simply run `make default`.
17
18### Other Keymaps
19
20Several version of keymap are available in advance but you are recommended to define your favorite layout yourself. To define your own keymap create a folder with the name of your keymap in the keymaps folder, and see keymap documentation (you can find in top readme.md) and existant keymap files.
21
22To build the firmware binary hex file with a keymap just do `make` with a keymap like this:
23
24```
25$ make [default|jack|<name>]
26```
27
28Keymaps follow the format **__\<name\>.c__** and are stored in the `keymaps` folder.
diff --git a/keyboards/pilcrow/rules.mk b/keyboards/pilcrow/rules.mk
deleted file mode 100644
index 55898147d..000000000
--- a/keyboards/pilcrow/rules.mk
+++ /dev/null
@@ -1,67 +0,0 @@
1# MCU name
2#MCU = at90usb1287
3MCU = atmega32u4
4
5# Processor frequency.
6# This will define a symbol, F_CPU, in all source code files equal to the
7# processor frequency in Hz. You can then use this symbol in your source code to
8# calculate timings. Do NOT tack on a 'UL' at the end, this will be done
9# automatically to create a 32-bit value in your source code.
10#
11# This will be an integer division of F_USB below, as it is sourced by
12# F_USB after it has run through any CPU prescalers. Note that this value
13# does not *change* the processor frequency - it should merely be updated to
14# reflect the processor speed set externally so that the code can use accurate
15# software delays.
16F_CPU = 16000000
17
18
19#
20# LUFA specific
21#
22# Target architecture (see library "Board Types" documentation).
23ARCH = AVR8
24
25# Input clock frequency.
26# This will define a symbol, F_USB, in all source code files equal to the
27# input clock frequency (before any prescaling is performed) in Hz. This value may
28# differ from F_CPU if prescaling is used on the latter, and is required as the
29# raw input clock is fed directly to the PLL sections of the AVR for high speed
30# clock generation for the USB and other AVR subsections. Do NOT tack on a 'UL'
31# at the end, this will be done automatically to create a 32-bit value in your
32# source code.
33#
34# If no clock division is performed on the input clock inside the AVR (via the
35# CPU clock adjust registers or the clock division fuses), this will be equal to F_CPU.
36F_USB = $(F_CPU)
37
38# Interrupt driven control endpoint task(+60)
39OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT
40
41
42# Boot Section Size in *bytes*
43# Teensy halfKay 512
44# Teensy++ halfKay 1024
45# Atmel DFU loader 4096
46# LUFA bootloader 4096
47# USBaspLoader 2048
48OPT_DEFS += -DBOOTLOADER_SIZE=512
49
50
51# Build Options
52# change yes to no to disable
53#
54BOOTMAGIC_ENABLE ?= no # Virtual DIP switch configuration(+1000)
55MOUSEKEY_ENABLE ?= yes # Mouse keys(+4700)
56EXTRAKEY_ENABLE ?= yes # Audio control and System control(+450)
57CONSOLE_ENABLE ?= yes # Console for debug(+400)
58COMMAND_ENABLE ?= yes # Commands for debug and configuration
59# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
60SLEEP_LED_ENABLE ?= no # Breathing sleep LED during USB suspend
61# if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
62NKRO_ENABLE ?= no # USB Nkey Rollover
63BACKLIGHT_ENABLE ?= no # Enable keyboard backlight functionality on B7 by default
64MIDI_ENABLE ?= no # MIDI controls
65UNICODE_ENABLE ?= no # Unicode
66BLUETOOTH_ENABLE ?= no # Enable Bluetooth with the Adafruit EZ-Key HID
67AUDIO_ENABLE ?= no # Audio output on port C6
diff --git a/keyboards/weebkeeb/Makefile b/keyboards/weebkeeb/Makefile
deleted file mode 100644
index 4e2a6f00f..000000000
--- a/keyboards/weebkeeb/Makefile
+++ /dev/null
@@ -1,3 +0,0 @@
1ifndef MAKEFILE_INCLUDED
2 include ../../Makefile
3endif \ No newline at end of file
diff --git a/keyboards/weebkeeb/aek.dxf b/keyboards/weebkeeb/aek.dxf
deleted file mode 100644
index cfe80946b..000000000
--- a/keyboards/weebkeeb/aek.dxf
+++ /dev/null
@@ -1,6486 +0,0 @@
10
2SECTION
32
4ENTITIES
50
6LINE
78
80
910
10104.7875
1120
12-89.2875
1311
14104.7875
1521
16-91.6875
170
18LINE
198
200
2110
22104.7875
2320
24-91.6875
2511
26102.3875
2721
28-91.6875
290
30LINE
318
320
3310
34102.3875
3520
36-91.6875
3711
38102.3875
3921
40-89.2875
410
42LINE
438
440
4510
46102.3875
4720
48-89.2875
4911
50104.7875
5121
52-89.2875
530
54LINE
558
560
5710
58116.8875
5920
60-89.2875
6111
62116.8875
6321
64-91.6875
650
66LINE
678
680
6910
70116.8875
7120
72-91.6875
7311
74114.4875
7521
76-91.6875
770
78LINE
798
800
8110
82114.4875
8320
84-91.6875
8511
86114.4875
8721
88-89.2875
890
90LINE
918
920
9310
94114.4875
9520
96-89.2875
9711
98116.8875
9921
100-89.2875
1010
102CIRCLE
1038
1040
10510
106109.6375
10720
108-90.4875
10940
1103.15
1110
112LINE
1138
1140
11510
116103.4875
11720
118-94.3875
11911
120103.4875
12121
122-99.4875
1230
124LINE
1258
1260
12710
128103.4875
12920
130-99.4875
13111
132100.8875
13321
134-99.4875
1350
136LINE
1378
1380
13910
140100.8875
14120
142-99.4875
14311
144100.8875
14521
146-94.3875
1470
148LINE
1498
1500
15110
152100.8875
15320
154-94.3875
15511
156103.4875
15721
158-94.3875
1590
160LINE
1618
1620
16310
164191.7875
16520
166-94.3875
16711
168191.7875
16921
170-99.4875
1710
172LINE
1738
1740
17510
176191.7875
17720
178-99.4875
17911
180194.3875
18121
182-99.4875
1830
184LINE
1858
1860
18710
188194.3875
18920
190-99.4875
19111
192194.3875
19321
194-94.3875
1950
196LINE
1978
1980
19910
200194.3875
20120
202-94.3875
20311
204191.7875
20521
206-94.3875
2070
208LINE
2098
2100
21110
212155.3875
21320
214-84.0875
21511
216139.8875
21721
218-84.0875
2190
220LINE
2218
2220
22310
224139.8875
22520
226-84.0875
22711
228139.8875
22921
230-96.8875
2310
232LINE
2338
2340
23510
236139.8875
23720
238-96.8875
23911
240155.3875
24121
242-96.8875
2430
244LINE
2458
2460
24710
248155.3875
24920
250-96.8875
25111
252155.3875
25321
254-84.0875
2550
256LINE
2578
2580
25910
260256.28125
26120
262-56.2875
26311
264256.28125
26521
266-61.3875
2670
268LINE
2698
2700
27110
272256.28125
27320
274-61.3875
27511
276253.68125
27721
278-61.3875
2790
280LINE
2818
2820
28310
284253.68125
28520
286-61.3875
28711
288253.68125
28921
290-56.2875
2910
292LINE
2938
2940
29510
296253.68125
29720
298-56.2875
29911
300256.28125
30121
302-56.2875
3030
304LINE
3058
3060
30710
308281.88125
30920
310-56.2875
31111
312281.88125
31321
314-61.3875
3150
316LINE
3178
3180
31910
320281.88125
32120
322-61.3875
32311
324284.48125
32521
326-61.3875
3270
328LINE
3298
3300
33110
332284.48125
33320
334-61.3875
33511
336284.48125
33721
338-56.2875
3390
340LINE
3418
3420
34310
344284.48125
34520
346-56.2875
34711
348281.88125
34921
350-56.2875
3510
352LINE
3538
3540
35510
356276.83125
35720
358-45.9875
35911
360261.33125
36121
362-45.9875
3630
364LINE
3658
3660
36710
368261.33125
36920
370-45.9875
37111
372261.33125
37321
374-58.7875
3750
376LINE
3778
3780
37910
380261.33125
38120
382-58.7875
38311
384276.83125
38521
386-58.7875
3870
388LINE
3898
3900
39110
392276.83125
39320
394-58.7875
39511
396276.83125
39721
398-45.9875
3990
400LINE
4018
4020
40310
404258.6625
40520
406-18.1875
40711
408258.6625
40921
410-23.2875
4110
412LINE
4138
4140
41510
416258.6625
41720
418-23.2875
41911
420256.0625
42121
422-23.2875
4230
424LINE
4258
4260
42710
428256.0625
42920
430-23.2875
43111
432256.0625
43321
434-18.1875
4350
436LINE
4378
4380
43910
440256.0625
44120
442-18.1875
44311
444258.6625
44521
446-18.1875
4470
448LINE
4498
4500
45110
452284.2625
45320
454-18.1875
45511
456284.2625
45721
458-23.2875
4590
460LINE
4618
4620
46310
464284.2625
46520
466-23.2875
46711
468286.8625
46921
470-23.2875
4710
472LINE
4738
4740
47510
476286.8625
47720
478-23.2875
47911
480286.8625
48121
482-18.1875
4830
484LINE
4858
4860
48710
488286.8625
48920
490-18.1875
49111
492284.2625
49321
494-18.1875
4950
496LINE
4978
4980
49910
500279.2125
50120
502-7.8875
50311
504263.7125
50521
506-7.8875
5070
508LINE
5098
5100
51110
512263.7125
51320
514-7.8875
51511
516263.7125
51721
518-20.6875
5190
520LINE
5218
5220
52310
524263.7125
52520
526-20.6875
52711
528279.2125
52921
530-20.6875
5310
532LINE
5338
5340
53510
536279.2125
53720
538-20.6875
53911
540279.2125
54121
542-7.8875
5430
544LINE
5458
5460
54710
54813.39375
54920
550-75.3375
55111
55213.39375
55321
554-80.4375
5550
556LINE
5578
5580
55910
56013.39375
56120
562-80.4375
56311
56410.79375
56521
566-80.4375
5670
568LINE
5698
5700
57110
57210.79375
57320
574-80.4375
57511
57610.79375
57721
578-75.3375
5790
580LINE
5818
5820
58310
58410.79375
58520
586-75.3375
58711
58813.39375
58921
590-75.3375
5910
592LINE
5938
5940
59510
59638.99375
59720
598-75.3375
59911
60038.99375
60121
602-80.4375
6030
604LINE
6058
6060
60710
60838.99375
60920
610-80.4375
61111
61241.59375
61321
614-80.4375
6150
616LINE
6178
6180
61910
62041.59375
62120
622-80.4375
62311
62441.59375
62521
626-75.3375
6270
628LINE
6298
6300
63110
63241.59375
63320
634-75.3375
63511
63638.99375
63721
638-75.3375
6390
640LINE
6418
6420
64310
64433.94375
64520
646-65.0375
64711
64818.44375
64921
650-65.0375
6510
652LINE
6538
6540
65510
65618.44375
65720
658-65.0375
65911
66018.44375
66121
662-77.8375
6630
664LINE
6658
6660
66710
66818.44375
66920
670-77.8375
67111
67233.94375
67321
674-77.8375
6750
676LINE
6778
6780
67910
68033.94375
68120
682-77.8375
68311
68433.94375
68521
686-65.0375
6870
688LINE
6898
6900
69110
692193.4875
69320
694-7.8875
69511
696177.9875
69721
698-7.8875
6990
700LINE
7018
7020
70310
704177.9875
70520
706-7.8875
70711
708177.9875
70921
710-20.6875
7110
712LINE
7138
7140
71510
716177.9875
71720
718-20.6875
71911
720193.4875
72121
722-20.6875
7230
724LINE
7258
7260
72710
728193.4875
72920
730-20.6875
73111
732193.4875
73321
734-7.8875
7350
736LINE
7378
7380
73910
740174.4375
74120
742-7.8875
74311
744158.9375
74521
746-7.8875
7470
748LINE
7498
7500
75110
752158.9375
75320
754-7.8875
75511
756158.9375
75721
758-20.6875
7590
760LINE
7618
7620
76310
764158.9375
76520
766-20.6875
76711
768174.4375
76921
770-20.6875
7710
772LINE
7738
7740
77510
776174.4375
77720
778-20.6875
77911
780174.4375
78121
782-7.8875
7830
784LINE
7858
7860
78710
788183.9625
78920
790-26.9375
79111
792168.4625
79321
794-26.9375
7950
796LINE
7978
7980
79910
800168.4625
80120
802-26.9375
80311
804168.4625
80521
806-39.7375
8070
808LINE
8098
8100
81110
812168.4625
81320
814-39.7375
81511
816183.9625
81721
818-39.7375
8190
820LINE
8218
8220
82310
824183.9625
82520
826-39.7375
82711
828183.9625
82921
830-26.9375
8310
832LINE
8338
8340
83510
836169.675
83720
838-45.9875
83911
840154.175
84121
842-45.9875
8430
844LINE
8458
8460
84710
848154.175
84920
850-45.9875
85111
852154.175
85321
854-58.7875
8550
856LINE
8578
8580
85910
860154.175
86120
862-58.7875
86311
864169.675
86521
866-58.7875
8670
868LINE
8698
8700
87110
872169.675
87320
874-58.7875
87511
876169.675
87721
878-45.9875
8790
880LINE
8818
8820
88310
884150.625
88520
886-45.9875
88711
888135.125
88921
890-45.9875
8910
892LINE
8938
8940
89510
896135.125
89720
898-45.9875
89911
900135.125
90121
902-58.7875
9030
904LINE
9058
9060
90710
908135.125
90920
910-58.7875
91111
912150.625
91321
914-58.7875
9150
916LINE
9178
9180
91910
920150.625
92120
922-58.7875
92311
924150.625
92521
926-45.9875
9270
928LINE
9298
9300
93110
932160.15
93320
934-65.0375
93511
936144.65
93721
938-65.0375
9390
940LINE
9418
9420
94310
944144.65
94520
946-65.0375
94711
948144.65
94921
950-77.8375
9510
952LINE
9538
9540
95510
956144.65
95720
958-77.8375
95911
960160.15
96121
962-77.8375
9630
964LINE
9658
9660
96710
968160.15
96920
970-77.8375
97111
972160.15
97321
974-65.0375
9750
976LINE
9778
9780
97910
980141.1
98120
982-65.0375
98311
984125.6
98521
986-65.0375
9870
988LINE
9898
9900
99110
992125.6
99320
994-65.0375
99511
996125.6
99721
998-77.8375
9990
1000LINE
10018
10020
100310
1004125.6
100520
1006-77.8375
100711
1008141.1
100921
1010-77.8375
10110
1012LINE
10138
10140
101510
1016141.1
101720
1018-77.8375
101911
1020141.1
102121
1022-65.0375
10230
1024LINE
10258
10260
102710
1028155.3875
102920
1030-7.8875
103111
1032139.8875
103321
1034-7.8875
10350
1036LINE
10378
10380
103910
1040139.8875
104120
1042-7.8875
104311
1044139.8875
104521
1046-20.6875
10470
1048LINE
10498
10500
105110
1052139.8875
105320
1054-20.6875
105511
1056155.3875
105721
1058-20.6875
10590
1060LINE
10618
10620
106310
1064155.3875
106520
1066-20.6875
106711
1068155.3875
106921
1070-7.8875
10710
1072LINE
10738
10740
107510
1076136.3375
107720
1078-7.8875
107911
1080120.8375
108121
1082-7.8875
10830
1084LINE
10858
10860
108710
1088120.8375
108920
1090-7.8875
109111
1092120.8375
109321
1094-20.6875
10950
1096LINE
10978
10980
109910
1100120.8375
110120
1102-20.6875
110311
1104136.3375
110521
1106-20.6875
11070
1108LINE
11098
11100
111110
1112136.3375
111320
1114-20.6875
111511
1116136.3375
111721
1118-7.8875
11190
1120LINE
11218
11220
112310
1124164.9125
112520
1126-26.9375
112711
1128149.4125
112921
1130-26.9375
11310
1132LINE
11338
11340
113510
1136149.4125
113720
1138-26.9375
113911
1140149.4125
114121
1142-39.7375
11430
1144LINE
11458
11460
114710
1148149.4125
114920
1150-39.7375
115111
1152164.9125
115321
1154-39.7375
11550
1156LINE
11578
11580
115910
1160164.9125
116120
1162-39.7375
116311
1164164.9125
116521
1166-26.9375
11670
1168LINE
11698
11700
117110
1172145.8625
117320
1174-26.9375
117511
1176130.3625
117721
1178-26.9375
11790
1180LINE
11818
11820
118310
1184130.3625
118520
1186-26.9375
118711
1188130.3625
118921
1190-39.7375
11910
1192LINE
11938
11940
119510
1196130.3625
119720
1198-39.7375
119911
1200145.8625
120121
1202-39.7375
12030
1204LINE
12058
12060
120710
1208145.8625
120920
1210-39.7375
121111
1212145.8625
121321
1214-26.9375
12150
1216LINE
12178
12180
121910
1220131.575
122120
1222-45.9875
122311
1224116.075
122521
1226-45.9875
12270
1228LINE
12298
12300
123110
1232116.075
123320
1234-45.9875
123511
1236116.075
123721
1238-58.7875
12390
1240LINE
12418
12420
124310
1244116.075
124520
1246-58.7875
124711
1248131.575
124921
1250-58.7875
12510
1252LINE
12538
12540
125510
1256131.575
125720
1258-58.7875
125911
1260131.575
126121
1262-45.9875
12630
1264LINE
12658
12660
126710
1268122.05
126920
1270-65.0375
127111
1272106.55
127321
1274-65.0375
12750
1276LINE
12778
12780
127910
1280106.55
128120
1282-65.0375
128311
1284106.55
128521
1286-77.8375
12870
1288LINE
12898
12900
129110
1292106.55
129320
1294-77.8375
129511
1296122.05
129721
1298-77.8375
12990
1300LINE
13018
13020
130310
1304122.05
130520
1306-77.8375
130711
1308122.05
130921
1310-65.0375
13110
1312LINE
13138
13140
131510
1316103.0
131720
1318-65.0375
131911
132087.5
132121
1322-65.0375
13230
1324LINE
13258
13260
132710
132887.5
132920
1330-65.0375
133111
133287.5
133321
1334-77.8375
13350
1336LINE
13378
13380
133910
134087.5
134120
1342-77.8375
134311
1344103.0
134521
1346-77.8375
13470
1348LINE
13498
13500
135110
1352103.0
135320
1354-77.8375
135511
1356103.0
135721
1358-65.0375
13590
1360LINE
13618
13620
136310
1364117.2875
136520
1366-7.8875
136711
1368101.7875
136921
1370-7.8875
13710
1372LINE
13738
13740
137510
1376101.7875
137720
1378-7.8875
137911
1380101.7875
138121
1382-20.6875
13830
1384LINE
13858
13860
138710
1388101.7875
138920
1390-20.6875
139111
1392117.2875
139321
1394-20.6875
13950
1396LINE
13978
13980
139910
1400117.2875
140120
1402-20.6875
140311
1404117.2875
140521
1406-7.8875
14070
1408LINE
14098
14100
141110
141298.2375
141320
1414-7.8875
141511
141682.7375
141721
1418-7.8875
14190
1420LINE
14218
14220
142310
142482.7375
142520
1426-7.8875
142711
142882.7375
142921
1430-20.6875
14310
1432LINE
14338
14340
143510
143682.7375
143720
1438-20.6875
143911
144098.2375
144121
1442-20.6875
14430
1444LINE
14458
14460
144710
144898.2375
144920
1450-20.6875
145111
145298.2375
145321
1454-7.8875
14550
1456LINE
14578
14580
145910
1460126.8125
146120
1462-26.9375
146311
1464111.3125
146521
1466-26.9375
14670
1468LINE
14698
14700
147110
1472111.3125
147320
1474-26.9375
147511
1476111.3125
147721
1478-39.7375
14790
1480LINE
14818
14820
148310
1484111.3125
148520
1486-39.7375
148711
1488126.8125
148921
1490-39.7375
14910
1492LINE
14938
14940
149510
1496126.8125
149720
1498-39.7375
149911
1500126.8125
150121
1502-26.9375
15030
1504LINE
15058
15060
150710
1508107.7625
150920
1510-26.9375
151111
151292.2625
151321
1514-26.9375
15150
1516LINE
15178
15180
151910
152092.2625
152120
1522-26.9375
152311
152492.2625
152521
1526-39.7375
15270
1528LINE
15298
15300
153110
153292.2625
153320
1534-39.7375
153511
1536107.7625
153721
1538-39.7375
15390
1540LINE
15418
15420
154310
1544107.7625
154520
1546-39.7375
154711
1548107.7625
154921
1550-26.9375
15510
1552LINE
15538
15540
155510
1556112.525
155720
1558-45.9875
155911
156097.025
156121
1562-45.9875
15630
1564LINE
15658
15660
156710
156897.025
156920
1570-45.9875
157111
157297.025
157321
1574-58.7875
15750
1576LINE
15778
15780
157910
158097.025
158120
1582-58.7875
158311
1584112.525
158521
1586-58.7875
15870
1588LINE
15898
15900
159110
1592112.525
159320
1594-58.7875
159511
1596112.525
159721
1598-45.9875
15990
1600LINE
16018
16020
160310
160493.475
160520
1606-45.9875
160711
160877.975
160921
1610-45.9875
16110
1612LINE
16138
16140
161510
161677.975
161720
1618-45.9875
161911
162077.975
162121
1622-58.7875
16230
1624LINE
16258
16260
162710
162877.975
162920
1630-58.7875
163111
163293.475
163321
1634-58.7875
16350
1636LINE
16378
16380
163910
164093.475
164120
1642-58.7875
164311
164493.475
164521
1646-45.9875
16470
1648LINE
16498
16500
165110
165283.95
165320
1654-65.0375
165511
165668.45
165721
1658-65.0375
16590
1660LINE
16618
16620
166310
166468.45
166520
1666-65.0375
166711
166868.45
166921
1670-77.8375
16710
1672LINE
16738
16740
167510
167668.45
167720
1678-77.8375
167911
168083.95
168121
1682-77.8375
16830
1684LINE
16858
16860
168710
168883.95
168920
1690-77.8375
169111
169283.95
169321
1694-65.0375
16950
1696LINE
16978
16980
169910
170079.1875
170120
1702-84.0875
170311
170463.6875
170521
1706-84.0875
17070
1708LINE
17098
17100
171110
171263.6875
171320
1714-84.0875
171511
171663.6875
171721
1718-96.8875
17190
1720LINE
17218
17220
172310
172463.6875
172520
1726-96.8875
172711
172879.1875
172921
1730-96.8875
17310
1732LINE
17338
17340
173510
173679.1875
173720
1738-96.8875
173911
174079.1875
174121
1742-84.0875
17430
1744LINE
17458
17460
174710
174879.1875
174920
1750-7.8875
175111
175263.6875
175321
1754-7.8875
17550
1756LINE
17578
17580
175910
176063.6875
176120
1762-7.8875
176311
176463.6875
176521
1766-20.6875
17670
1768LINE
17698
17700
177110
177263.6875
177320
1774-20.6875
177511
177679.1875
177721
1778-20.6875
17790
1780LINE
17818
17820
178310
178479.1875
178520
1786-20.6875
178711
178879.1875
178921
1790-7.8875
17910
1792LINE
17938
17940
179510
179660.1375
179720
1798-7.8875
179911
180044.6375
180121
1802-7.8875
18030
1804LINE
18058
18060
180710
180844.6375
180920
1810-7.8875
181111
181244.6375
181321
1814-20.6875
18150
1816LINE
18178
18180
181910
182044.6375
182120
1822-20.6875
182311
182460.1375
182521
1826-20.6875
18270
1828LINE
18298
18300
183110
183260.1375
183320
1834-20.6875
183511
183660.1375
183721
1838-7.8875
18390
1840LINE
18418
18420
184310
184488.7125
184520
1846-26.9375
184711
184873.2125
184921
1850-26.9375
18510
1852LINE
18538
18540
185510
185673.2125
185720
1858-26.9375
185911
186073.2125
186121
1862-39.7375
18630
1864LINE
18658
18660
186710
186873.2125
186920
1870-39.7375
187111
187288.7125
187321
1874-39.7375
18750
1876LINE
18778
18780
187910
188088.7125
188120
1882-39.7375
188311
188488.7125
188521
1886-26.9375
18870
1888LINE
18898
18900
189110
189269.6625
189320
1894-26.9375
189511
189654.1625
189721
1898-26.9375
18990
1900LINE
19018
19020
190310
190454.1625
190520
1906-26.9375
190711
190854.1625
190921
1910-39.7375
19110
1912LINE
19138
19140
191510
191654.1625
191720
1918-39.7375
191911
192069.6625
192121
1922-39.7375
19230
1924LINE
19258
19260
192710
192869.6625
192920
1930-39.7375
193111
193269.6625
193321
1934-26.9375
19350
1936LINE
19378
19380
193910
194074.425
194120
1942-45.9875
194311
194458.925
194521
1946-45.9875
19470
1948LINE
19498
19500
195110
195258.925
195320
1954-45.9875
195511
195658.925
195721
1958-58.7875
19590
1960LINE
19618
19620
196310
196458.925
196520
1966-58.7875
196711
196874.425
196921
1970-58.7875
19710
1972LINE
19738
19740
197510
197674.425
197720
1978-58.7875
197911
198074.425
198121
1982-45.9875
19830
1984LINE
19858
19860
198710
198864.9
198920
1990-65.0375
199111
199249.4
199321
1994-65.0375
19950
1996LINE
19978
19980
199910
200049.4
200120
2002-65.0375
200311
200449.4
200521
2006-77.8375
20070
2008LINE
20098
20100
201110
201249.4
201320
2014-77.8375
201511
201664.9
201721
2018-77.8375
20190
2020LINE
20218
20220
202310
202464.9
202520
2026-77.8375
202711
202864.9
202921
2030-65.0375
20310
2032LINE
20338
20340
203510
203652.9937
203720
2038-84.0875
203911
204037.4937
204121
2042-84.0875
20430
2044LINE
20458
20460
204710
204837.4937
204920
2050-84.0875
205111
205237.4937
205321
2054-96.8875
20550
2056LINE
20578
20580
205910
206037.4937
206120
2062-96.8875
206311
206452.9937
206521
2066-96.8875
20670
2068LINE
20698
20700
207110
207252.9937
207320
2074-96.8875
207511
207652.9937
207721
2078-84.0875
20790
2080LINE
20818
20820
208310
208441.0875
208520
2086-7.8875
208711
208825.5875
208921
2090-7.8875
20910
2092LINE
20938
20940
209510
209625.5875
209720
2098-7.8875
209911
210025.5875
210121
2102-20.6875
21030
2104LINE
21058
21060
210710
210825.5875
210920
2110-20.6875
211111
211241.0875
211321
2114-20.6875
21150
2116LINE
21178
21180
211910
212041.0875
212120
2122-20.6875
212311
212441.0875
212521
2126-7.8875
21270
2128LINE
21298
21300
213110
213222.0375
213320
2134-7.8875
213511
21366.5375
213721
2138-7.8875
21390
2140LINE
21418
21420
214310
21446.5375
214520
2146-7.8875
214711
21486.5375
214921
2150-20.6875
21510
2152LINE
21538
21540
215510
21566.5375
215720
2158-20.6875
215911
216022.0375
216121
2162-20.6875
21630
2164LINE
21658
21660
216710
216822.0375
216920
2170-20.6875
217111
217222.0375
217321
2174-7.8875
21750
2176LINE
21778
21780
217910
218050.6125
218120
2182-26.9375
218311
218435.1125
218521
2186-26.9375
21870
2188LINE
21898
21900
219110
219235.1125
219320
2194-26.9375
219511
219635.1125
219721
2198-39.7375
21990
2200LINE
22018
22020
220310
220435.1125
220520
2206-39.7375
220711
220850.6125
220921
2210-39.7375
22110
2212LINE
22138
22140
221510
221650.6125
221720
2218-39.7375
221911
222050.6125
222121
2222-26.9375
22230
2224LINE
22258
22260
222710
222826.8
222920
2230-26.9375
223111
223211.3
223321
2234-26.9375
22350
2236LINE
22378
22380
223910
224011.3
224120
2242-26.9375
224311
224411.3
224521
2246-39.7375
22470
2248LINE
22498
22500
225110
225211.3
225320
2254-39.7375
225511
225626.8
225721
2258-39.7375
22590
2260LINE
22618
22620
226310
226426.8
226520
2266-39.7375
226711
226826.8
226921
2270-26.9375
22710
2272LINE
22738
22740
227510
227655.375
227720
2278-45.9875
227911
228039.875
228121
2282-45.9875
22830
2284LINE
22858
22860
228710
228839.875
228920
2290-45.9875
229111
229239.875
229321
2294-58.7875
22950
2296LINE
22978
22980
229910
230039.875
230120
2302-58.7875
230311
230455.375
230521
2306-58.7875
23070
2308LINE
23098
23100
231110
231255.375
231320
2314-58.7875
231511
231655.375
231721
2318-45.9875
23190
2320LINE
23218
23220
232310
232429.18125
232520
2326-45.9875
232711
232813.68125
232921
2330-45.9875
23310
2332LINE
23338
23340
233510
233613.68125
233720
2338-45.9875
233911
234013.68125
234121
2342-58.7875
23430
2344LINE
23458
23460
234710
234813.68125
234920
2350-58.7875
235111
235229.18125
235321
2354-58.7875
23550
2356LINE
23578
23580
235910
236029.18125
236120
2362-58.7875
236311
236429.18125
236521
2366-45.9875
23670
2368LINE
23698
23700
237110
237226.8
237320
2374-84.0875
237511
237611.3
237721
2378-84.0875
23790
2380LINE
23818
23820
238310
238411.3
238520
2386-84.0875
238711
238811.3
238921
2390-96.8875
23910
2392LINE
23938
23940
239510
239611.3
239720
2398-96.8875
239911
240026.8
240121
2402-96.8875
24030
2404LINE
24058
24060
240710
240826.8
240920
2410-96.8875
241111
241226.8
241321
2414-84.0875
24150
2416LINE
24178
24180
241910
2420260.1625
242120
2422-26.9375
242311
2424244.6625
242521
2426-26.9375
24270
2428LINE
24298
24300
243110
2432244.6625
243320
2434-26.9375
243511
2436244.6625
243721
2438-39.7375
24390
2440LINE
24418
24420
244310
2444244.6625
244520
2446-39.7375
244711
2448260.1625
244921
2450-39.7375
24510
2452LINE
24538
24540
245510
2456260.1625
245720
2458-39.7375
245911
2460260.1625
246121
2462-26.9375
24630
2464LINE
24658
24660
246710
2468283.975
246920
2470-26.9375
247111
2472268.475
247321
2474-26.9375
24750
2476LINE
24778
24780
247910
2480268.475
248120
2482-26.9375
248311
2484268.475
248521
2486-39.7375
24870
2488LINE
24898
24900
249110
2492268.475
249320
2494-39.7375
249511
2496283.975
249721
2498-39.7375
24990
2500LINE
25018
25020
250310
2504283.975
250520
2506-39.7375
250711
2508283.975
250921
2510-26.9375
25110
2512LINE
25138
25140
251510
2516283.975
251720
2518-84.0875
251911
2520268.475
252121
2522-84.0875
25230
2524LINE
25258
25260
252710
2528268.475
252920
2530-84.0875
253111
2532268.475
253321
2534-96.8875
25350
2536LINE
25378
25380
253910
2540268.475
254120
2542-96.8875
254311
2544283.975
254521
2546-96.8875
25470
2548LINE
25498
25500
255110
2552283.975
255320
2554-96.8875
255511
2556283.975
255721
2558-84.0875
25590
2560LINE
25618
25620
256310
2564250.6375
256520
2566-7.8875
256711
2568235.1375
256921
2570-7.8875
25710
2572LINE
25738
25740
257510
2576235.1375
257720
2578-7.8875
257911
2580235.1375
258121
2582-20.6875
25830
2584LINE
25858
25860
258710
2588235.1375
258920
2590-20.6875
259111
2592250.6375
259321
2594-20.6875
25950
2596LINE
25978
25980
259910
2600250.6375
260120
2602-20.6875
260311
2604250.6375
260521
2606-7.8875
26070
2608LINE
26098
26100
261110
2612241.1125
261320
2614-26.9375
261511
2616225.6125
261721
2618-26.9375
26190
2620LINE
26218
26220
262310
2624225.6125
262520
2626-26.9375
262711
2628225.6125
262921
2630-39.7375
26310
2632LINE
26338
26340
263510
2636225.6125
263720
2638-39.7375
263911
2640241.1125
264121
2642-39.7375
26430
2644LINE
26458
26460
264710
2648241.1125
264920
2650-39.7375
265111
2652241.1125
265321
2654-26.9375
26550
2656LINE
26578
26580
265910
2660222.0625
266120
2662-26.9375
266311
2664206.5625
266521
2666-26.9375
26670
2668LINE
26698
26700
267110
2672206.5625
267320
2674-26.9375
267511
2676206.5625
267721
2678-39.7375
26790
2680LINE
26818
26820
268310
2684206.5625
268520
2686-39.7375
268711
2688222.0625
268921
2690-39.7375
26910
2692LINE
26938
26940
269510
2696222.0625
269720
2698-39.7375
269911
2700222.0625
270121
2702-26.9375
27030
2704LINE
27058
27060
270710
2708245.875
270920
2710-45.9875
271111
2712230.375
271321
2714-45.9875
27150
2716LINE
27178
27180
271910
2720230.375
272120
2722-45.9875
272311
2724230.375
272521
2726-58.7875
27270
2728LINE
27298
27300
273110
2732230.375
273320
2734-58.7875
273511
2736245.875
273721
2738-58.7875
27390
2740LINE
27418
27420
274310
2744245.875
274520
2746-58.7875
274711
2748245.875
274921
2750-45.9875
27510
2752LINE
27538
27540
275510
2756226.825
275720
2758-45.9875
275911
2760211.325
276121
2762-45.9875
27630
2764LINE
27658
27660
276710
2768211.325
276920
2770-45.9875
277111
2772211.325
277321
2774-58.7875
27750
2776LINE
27778
27780
277910
2780211.325
278120
2782-58.7875
278311
2784226.825
278521
2786-58.7875
27870
2788LINE
27898
27900
279110
2792226.825
279320
2794-58.7875
279511
2796226.825
279721
2798-45.9875
27990
2800LINE
28018
28020
280310
2804236.35
280520
2806-65.0375
280711
2808220.85
280921
2810-65.0375
28110
2812LINE
28138
28140
281510
2816220.85
281720
2818-65.0375
281911
2820220.85
282121
2822-77.8375
28230
2824LINE
28258
28260
282710
2828220.85
282920
2830-77.8375
283111
2832236.35
283321
2834-77.8375
28350
2836LINE
28378
28380
283910
2840236.35
284120
2842-77.8375
284311
2844236.35
284521
2846-65.0375
28470
2848LINE
28498
28500
285110
2852217.3
285320
2854-65.0375
285511
2856201.8
285721
2858-65.0375
28590
2860LINE
28618
28620
286310
2864201.8
286520
2866-65.0375
286711
2868201.8
286921
2870-77.8375
28710
2872LINE
28738
28740
287510
2876201.8
287720
2878-77.8375
287911
2880217.3
288121
2882-77.8375
28830
2884LINE
28858
28860
288710
2888217.3
288920
2890-77.8375
289111
2892217.3
289321
2894-65.0375
28950
2896LINE
28978
28980
289910
2900257.78125
290120
2902-84.0875
290311
2904242.28125
290521
2906-84.0875
29070
2908LINE
29098
29100
291110
2912242.28125
291320
2914-84.0875
291511
2916242.28125
291721
2918-96.8875
29190
2920LINE
29218
29220
292310
2924242.28125
292520
2926-96.8875
292711
2928257.78125
292921
2930-96.8875
29310
2932LINE
29338
29340
293510
2936257.78125
293720
2938-96.8875
293911
2940257.78125
294121
2942-84.0875
29430
2944LINE
29458
29460
294710
2948231.5875
294920
2950-7.8875
295111
2952216.0875
295321
2954-7.8875
29550
2956LINE
29578
29580
295910
2960216.0875
296120
2962-7.8875
296311
2964216.0875
296521
2966-20.6875
29670
2968LINE
29698
29700
297110
2972216.0875
297320
2974-20.6875
297511
2976231.5875
297721
2978-20.6875
29790
2980LINE
29818
29820
298310
2984231.5875
298520
2986-20.6875
298711
2988231.5875
298921
2990-7.8875
29910
2992LINE
29938
29940
299510
2996212.5375
299720
2998-7.8875
299911
3000197.0375
300121
3002-7.8875
30030
3004LINE
30058
30060
300710
3008197.0375
300920
3010-7.8875
301111
3012197.0375
301321
3014-20.6875
30150
3016LINE
30178
30180
301910
3020197.0375
302120
3022-20.6875
302311
3024212.5375
302521
3026-20.6875
30270
3028LINE
30298
30300
303110
3032212.5375
303320
3034-20.6875
303511
3036212.5375
303721
3038-7.8875
30390
3040LINE
30418
30420
304310
3044203.0125
304520
3046-26.9375
304711
3048187.5125
304921
3050-26.9375
30510
3052LINE
30538
30540
305510
3056187.5125
305720
3058-26.9375
305911
3060187.5125
306121
3062-39.7375
30630
3064LINE
30658
30660
306710
3068187.5125
306920
3070-39.7375
307111
3072203.0125
307321
3074-39.7375
30750
3076LINE
30778
30780
307910
3080203.0125
308120
3082-39.7375
308311
3084203.0125
308521
3086-26.9375
30870
3088LINE
30898
30900
309110
3092207.775
309320
3094-45.9875
309511
3096192.275
309721
3098-45.9875
30990
3100LINE
31018
31020
310310
3104192.275
310520
3106-45.9875
310711
3108192.275
310921
3110-58.7875
31110
3112LINE
31138
31140
311510
3116192.275
311720
3118-58.7875
311911
3120207.775
312121
3122-58.7875
31230
3124LINE
31258
31260
312710
3128207.775
312920
3130-58.7875
313111
3132207.775
313321
3134-45.9875
31350
3136LINE
31378
31380
313910
3140188.725
314120
3142-45.9875
314311
3144173.225
314521
3146-45.9875
31470
3148LINE
31498
31500
315110
3152173.225
315320
3154-45.9875
315511
3156173.225
315721
3158-58.7875
31590
3160LINE
31618
31620
316310
3164173.225
316520
3166-58.7875
316711
3168188.725
316921
3170-58.7875
31710
3172LINE
31738
31740
317510
3176188.725
317720
3178-58.7875
317911
3180188.725
318121
3182-45.9875
31830
3184LINE
31858
31860
318710
3188198.25
318920
3190-65.0375
319111
3192182.75
319321
3194-65.0375
31950
3196LINE
31978
31980
319910
3200182.75
320120
3202-65.0375
320311
3204182.75
320521
3206-77.8375
32070
3208LINE
32098
32100
321110
3212182.75
321320
3214-77.8375
321511
3216198.25
321721
3218-77.8375
32190
3220LINE
32218
32220
322310
3224198.25
322520
3226-77.8375
322711
3228198.25
322921
3230-65.0375
32310
3232LINE
32338
32340
323510
3236179.2
323720
3238-65.0375
323911
3240163.7
324121
3242-65.0375
32430
3244LINE
32458
32460
324710
3248163.7
324920
3250-65.0375
325111
3252163.7
325321
3254-77.8375
32550
3256LINE
32578
32580
325910
3260163.7
326120
3262-77.8375
326311
3264179.2
326521
3266-77.8375
32670
3268LINE
32698
32700
327110
3272179.2
327320
3274-77.8375
327511
3276179.2
327721
3278-65.0375
32790
3280LINE
32818
32820
328310
3284231.5875
328520
3286-84.0875
328711
3288216.0875
328921
3290-84.0875
32910
3292LINE
32938
32940
329510
3296216.0875
329720
3298-84.0875
329911
3300216.0875
330121
3302-96.8875
33030
3304LINE
33058
33060
330710
3308216.0875
330920
3310-96.8875
331111
3312231.5875
331321
3314-96.8875
33150
3316LINE
33178
33180
331910
3320231.5875
332120
3322-96.8875
332311
3324231.5875
332521
3326-84.0875
33270
3328LINE
33298
33300
333110
3332244.01875
333320
3334-75.3375
333511
3336244.01875
333721
3338-80.4375
33390
3340LINE
33418
33420
334310
3344244.01875
334520
3346-80.4375
334711
3348241.41875
334921
3350-80.4375
33510
3352LINE
33538
33540
335510
3356241.41875
335720
3358-80.4375
335911
3360241.41875
336121
3362-75.3375
33630
3364LINE
33658
33660
336710
3368241.41875
336920
3370-75.3375
337111
3372244.01875
337321
3374-75.3375
33750
3376LINE
33778
33780
337910
3380284.61875
338120
3382-75.3375
338311
3384284.61875
338521
3386-80.4375
33870
3388LINE
33898
33900
339110
3392284.61875
339320
3394-80.4375
339511
3396287.21875
339721
3398-80.4375
33990
3400LINE
34018
34020
340310
3404287.21875
340520
3406-80.4375
340711
3408287.21875
340921
3410-75.3375
34110
3412LINE
34138
34140
341510
3416287.21875
341720
3418-75.3375
341911
3420284.61875
342121
3422-75.3375
34230
3424LINE
34258
34260
342710
3428272.06875
342920
3430-65.0375
343111
3432256.56875
343321
3434-65.0375
34350
3436LINE
34378
34380
343910
3440256.56875
344120
3442-65.0375
344311
3444256.56875
344521
3446-77.8375
34470
3448LINE
34498
34500
345110
3452256.56875
345320
3454-77.8375
345511
3456272.06875
345721
3458-77.8375
34590
3460LINE
34618
34620
346310
3464272.06875
346520
3466-77.8375
346711
3468272.06875
346921
3470-65.0375
34710
3472TEXT
34738
3474Cmts
347562
34761
347710
3478303.847897
347920
3480-52.73062
34811
348295.000 mm
348340
34841.5
348541
34861.5
348750
3488270.186984
34897
3490SIMPLEX
349172
34921
349373
34942
349511
3496303.847897
349721
3498-52.73062
34990
3500LINE
35018
3502Cmts
350362
35041
350510
3506287.34
350720
3508-100.28
350911
3510305.35289
351121
3512-100.221215
35130
3514LINE
35158
3516Cmts
351762
35181
351910
3520287.03
352120
3522-5.29
352311
3524305.04289
352521
3526-5.231215
35270
3528LINE
35298
3530Cmts
353162
35321
353310
3534302.342904
353520
3536-5.240026
353711
3538302.652904
353921
3540-100.230026
35410
3542LINE
35438
3544Cmts
354562
35461
354710
3548302.652904
354920
3550-100.230026
355111
3552302.06281
355321
3554-99.105442
35550
3556LINE
35578
3558Cmts
355962
35601
356110
3562302.652904
356320
3564-100.230026
356511
3566303.235645
356721
3568-99.101614
35690
3570LINE
35718
3572Cmts
357362
35741
357510
3576302.342904
357720
3578-5.240026
357911
3580301.760163
358121
3582-6.368438
35830
3584LINE
35858
3586Cmts
358762
35881
358910
3590302.342904
359120
3592-5.240026
359311
3594302.932998
359521
3596-6.36461
35970
3598TEXT
35998
3600Cmts
360162
36021
360310
360417.92
360520
3606-43.7
36071
360825.6125 mm
360940
36101.5
361141
36121.5
36137
3614SIMPLEX
361572
36161
361773
36182
361911
362017.92
362121
3622-43.7
36230
3624LINE
36258
3626Cmts
362762
36281
362910
363030.71
363120
3632-33.34
363311
363430.71
363521
3636-45.05
36370
3638LINE
36398
3640Cmts
364162
36421
364310
36445.13
364520
3646-33.34
364711
36485.13
364921
3650-45.05
36510
3652LINE
36538
3654Cmts
365562
36561
365710
36585.13
365920
3660-42.35
366111
366230.71
366321
3664-42.35
36650
3666LINE
36678
3668Cmts
366962
36701
367110
367230.71
367320
3674-42.35
367511
367629.583496
367721
3678-42.936421
36790
3680LINE
36818
3682Cmts
368362
36841
368510
368630.71
368720
3688-42.35
368911
369029.583496
369121
3692-41.763579
36930
3694LINE
36958
3696Cmts
369762
36981
369910
37005.13
370120
3702-42.35
370311
37046.256504
370521
3706-42.936421
37070
3708LINE
37098
3710Cmts
371162
37121
371310
37145.13
371520
3716-42.35
371711
37186.256504
371921
3720-41.763579
37210
3722TEXT
37238
3724Cmts
372562
37261
372710
3728277.347461
372920
3730-39.634741
37311
373225.6125 mm
373340
37341.5
373541
37361.5
373750
37380.022425
37397
3740SIMPLEX
374172
37421
374373
37442
374511
3746277.347461
374721
3748-39.634741
37490
3750LINE
37518
3752Cmts
375362
37541
375510
3756290.12
375720
3758-33.34
375911
3760290.12299
376121
3762-40.979741
37630
3764LINE
37658
3766Cmts
376762
37681
376910
3770264.57
377120
3772-33.35
377311
3774264.57299
377521
3776-40.989741
37770
3778LINE
37798
3780Cmts
378162
37821
378310
3784264.571933
378520
3786-38.289741
378711
3788290.121933
378921
3790-38.279741
37910
3792LINE
37938
3794Cmts
379562
37961
379710
3798290.121933
379920
3800-38.279741
380111
3802288.995659
380321
3804-38.866603
38050
3806LINE
38078
3808Cmts
380962
38101
381110
3812290.121933
381320
3814-38.279741
381511
3816288.9952
381721
3818-37.693761
38190
3820LINE
38218
3822Cmts
382362
38241
382510
3826264.571933
382720
3828-38.289741
382911
3830265.698666
383121
3832-38.875721
38330
3834LINE
38358
3836Cmts
383762
38381
383910
3840264.571933
384120
3842-38.289741
384311
3844265.698207
384521
3846-37.702879
38470
3848TEXT
38498
3850Cmts
385162
38521
385310
3854202.7
385520
3856-90.49
38571
38586.300 mm
385940
38601.5
386141
38621.5
386350
3864270.0
38657
3866SIMPLEX
386772
38681
386973
38702
387111
3872202.7
387321
3874-90.49
38750
3876LINE
38778
3878Cmts
387962
38801
388110
3882195.44
388320
3884-93.64
388511
3886204.05
388721
3888-93.64
38890
3890LINE
38918
3892Cmts
389362
38941
389510
3896195.44
389720
3898-87.34
389911
3900204.05
390121
3902-87.34
39030
3904LINE
39058
3906Cmts
390762
39081
390910
3910201.35
391120
3912-87.34
391311
3914201.35
391521
3916-93.64
39170
3918LINE
39198
3920Cmts
392162
39221
392310
3924201.35
392520
3926-93.64
392711
3928200.763579
392921
3930-92.513496
39310
3932LINE
39338
3934Cmts
393562
39361
393710
3938201.35
393920
3940-93.64
394111
3942201.936421
394321
3944-92.513496
39450
3946LINE
39478
3948Cmts
394962
39501
395110
3952201.35
395320
3954-87.34
395511
3956200.763579
395721
3958-88.466504
39590
3960LINE
39618
3962Cmts
396362
39641
396510
3966201.35
396720
3968-87.34
396911
3970201.936421
397121
3972-88.466504
39730
3974TEXT
39758
3976Cmts
397762
39781
397910
3980258.43468
398120
3982-33.349763
39831
39846.300 mm
398540
39861.5
398741
39881.5
398950
3990270.090946
39917
3992SIMPLEX
399372
39941
399573
39962
399711
3998258.43468
399921
4000-33.349763
40010
4002LINE
40038
4004Cmts
400562
40061
400710
4008264.59
400920
4010-36.49
401111
4012257.089682
401321
4014-36.501906
40150
4016LINE
40178
4018Cmts
401962
40201
402110
4022264.58
402320
4024-30.19
402511
4026257.079682
402721
4028-30.201906
40290
4030LINE
40318
4032Cmts
403362
40341
403510
4036259.779679
403720
4038-30.19762
403911
4040259.789679
404121
4042-36.49762
40430
4044LINE
40458
4046Cmts
404762
40481
404910
4050259.789679
405120
4052-36.49762
405311
4054259.201471
405521
4056-35.372048
40570
4058LINE
40598
4060Cmts
406162
40621
406310
4064259.789679
406520
4066-36.49762
406711
4068260.374311
406921
4070-35.370187
40710
4072LINE
40738
4074Cmts
407562
40761
407710
4078259.779679
407920
4080-30.19762
408111
4082259.195047
408321
4084-31.325053
40850
4086LINE
40878
4088Cmts
408962
40901
409110
4092259.779679
409320
4094-30.19762
409511
4096260.367887
409721
4098-31.323192
40990
4100TEXT
41018
4102Cmts
410362
41041
410510
410624.47
410720
4108-33.33
41091
41106.300 mm
411140
41121.5
411341
41141.5
411550
4116270.0
41177
4118SIMPLEX
411972
41201
412173
41222
412311
412424.47
412521
4126-33.33
41270
4128LINE
41298
4130Cmts
413162
41321
413310
413430.72
413520
4136-36.48
413711
413823.12
413921
4140-36.48
41410
4142LINE
41438
4144Cmts
414562
41461
414710
414830.72
414920
4150-30.18
415111
415223.12
415321
4154-30.18
41550
4156LINE
41578
4158Cmts
415962
41601
416110
416225.82
416320
4164-30.18
416511
416625.82
416721
4168-36.48
41690
4170LINE
41718
4172Cmts
417362
41741
417510
417625.82
417720
4178-36.48
417911
418025.233579
418121
4182-35.353496
41830
4184LINE
41858
4186Cmts
418762
41881
418910
419025.82
419120
4192-36.48
419311
419426.406421
419521
4196-35.353496
41970
4198LINE
41998
4200Cmts
420162
42021
420310
420425.82
420520
4206-30.18
420711
420825.233579
420921
4210-31.306504
42110
4212LINE
42138
4214Cmts
421562
42161
421710
421825.82
421920
4220-30.18
422111
422226.406421
422321
4224-31.306504
42250
4226TEXT
42278
4228Cmts
422962
42301
423110
4232103.46
423320
4234-90.49
42351
42366.300 mm
423740
42381.5
423941
42401.5
424150
4242270.0
42437
4244SIMPLEX
424572
42461
424773
42482
424911
4250103.46
425121
4252-90.49
42530
4254LINE
42558
4256Cmts
425762
42581
425910
4260109.64
426120
4262-93.64
426311
4264102.11
426521
4266-93.64
42670
4268LINE
42698
4270Cmts
427162
42721
427310
4274109.64
427520
4276-87.34
427711
4278102.11
427921
4280-87.34
42810
4282LINE
42838
4284Cmts
428562
42861
428710
4288104.81
428920
4290-87.34
429111
4292104.81
429321
4294-93.64
42950
4296LINE
42978
4298Cmts
429962
43001
430110
4302104.81
430320
4304-93.64
430511
4306104.223579
430721
4308-92.513496
43090
4310LINE
43118
4312Cmts
431362
43141
431510
4316104.81
431720
4318-93.64
431911
4320105.396421
432121
4322-92.513496
43230
4324LINE
43258
4326Cmts
432762
43281
432910
4330104.81
433120
4332-87.34
433311
4334104.223579
433521
4336-88.466504
43370
4338LINE
43398
4340Cmts
434162
43421
434310
4344104.81
434520
4346-87.34
434711
4348105.396421
434921
4350-88.466504
43510
4352TEXT
43538
4354Cmts
435562
43561
435710
4358171.54
435920
4360-78.67
43611
436247.800 mm
436340
43641.5
436541
43661.5
43677
4368SIMPLEX
436972
43701
437173
43722
437311
4374171.54
437521
4376-78.67
43770
4378LINE
43798
4380Cmts
438162
43821
438310
4384147.64
438520
4386-90.49
438711
4388147.64
438921
4390-77.32
43910
4392LINE
43938
4394Cmts
439562
43961
439710
4398195.44
439920
4400-90.49
440111
4402195.44
440321
4404-77.32
44050
4406LINE
44078
4408Cmts
440962
44101
441110
4412195.44
441320
4414-80.02
441511
4416147.64
441721
4418-80.02
44190
4420LINE
44218
4422Cmts
442362
44241
442510
4426147.64
442720
4428-80.02
442911
4430148.766504
443121
4432-79.433579
44330
4434LINE
44358
4436Cmts
443762
44381
443910
4440147.64
444120
4442-80.02
444311
4444148.766504
444521
4446-80.606421
44470
4448LINE
44498
4450Cmts
445162
44521
445310
4454195.44
445520
4456-80.02
445711
4458194.313496
445921
4460-79.433579
44610
4462LINE
44638
4464Cmts
446562
44661
446710
4468195.44
446920
4470-80.02
447111
4472194.313496
447321
4474-80.606421
44750
4476TEXT
44778
4478Cmts
447962
44801
448110
4482128.64
448320
4484-109.43
44851
448638.000 mm
448740
44881.5
448941
44901.5
44917
4492SIMPLEX
449372
44941
449573
44962
449711
4498128.64
449921
4500-109.43
45010
4502LINE
45038
4504Cmts
450562
45061
450710
4508109.64
450920
4510-90.48
451111
4512109.64
451321
4514-110.78
45150
4516LINE
45178
4518Cmts
451962
45201
452110
4522147.64
452320
4524-90.48
452511
4526147.64
452721
4528-110.78
45290
4530LINE
45318
4532Cmts
453362
45341
453510
4536147.64
453720
4538-108.08
453911
4540109.64
454121
4542-108.08
45430
4544LINE
45458
4546Cmts
454762
45481
454910
4550109.64
455120
4552-108.08
455311
4554110.766504
455521
4556-107.493579
45570
4558LINE
45598
4560Cmts
456162
45621
456310
4564109.64
456520
4566-108.08
456711
4568110.766504
456921
4570-108.666421
45710
4572LINE
45738
4574Cmts
457562
45761
457710
4578147.64
457920
4580-108.08
458111
4582146.513496
458321
4584-107.493579
45850
4586LINE
45878
4588Cmts
458962
45901
459110
4592147.64
459320
4594-108.08
459511
4596146.513496
459721
4598-108.666421
45990
4600TEXT
46018
4602Cmts
460362
46041
460510
4606197.96
460720
4608-99.88
46091
46100.800 mm
461140
46121.5
461341
46141.5
461550
4616270.0
46177
4618SIMPLEX
461972
46201
462173
46222
462311
4624197.96
462521
4626-99.88
46270
4628LINE
46298
4630Cmts
463162
46321
463310
4634194.38
463520
4636-100.28
463711
4638199.31
463921
4640-100.28
46410
4642LINE
46438
4644Cmts
464562
46461
464710
4648194.38
464920
4650-99.48
465111
4652199.31
465321
4654-99.48
46550
4656LINE
46578
4658Cmts
465962
46601
466110
4662196.61
466320
4664-99.48
466511
4666196.61
466721
4668-100.28
46690
4670LINE
46718
4672Cmts
467362
46741
467510
4676196.61
467720
4678-100.28
467911
4680196.023579
468121
4682-99.153496
46830
4684LINE
46858
4686Cmts
468762
46881
468910
4690196.61
469120
4692-100.28
469311
4694197.196421
469521
4696-99.153496
46970
4698LINE
46998
4700Cmts
470162
47021
470310
4704196.61
470520
4706-99.48
470711
4708196.023579
470921
4710-100.606504
47110
4712LINE
47138
4714Cmts
471562
47161
471710
4718196.61
471920
4720-99.48
472111
4722197.196421
472321
4724-100.606504
47250
4726TEXT
47278
4728Cmts
472962
47301
473110
4732188.875133
473320
4734-92.417616
47351
47363.900 mm
473740
47381.5
473941
47401.5
474150
474289.559272
47437
4744SIMPLEX
474572
47461
474773
47482
474911
4750188.875133
475121
4752-92.417616
47530
4754LINE
47558
4756Cmts
475762
47581
475910
4760191.77
476120
4762-94.39
476311
4764187.510173
476521
4766-94.357232
47670
4768LINE
47698
4770Cmts
477162
47721
477310
4774191.8
477520
4776-90.49
477711
4778187.540173
477921
4780-90.457232
47810
4782LINE
47838
4784Cmts
478562
47861
478710
4788190.240093
478920
4790-90.478001
479111
4792190.210093
479321
4794-94.378001
47950
4796LINE
47978
4798Cmts
479962
48001
480110
4802190.210093
480320
4804-94.378001
480511
4806189.632355
480721
4808-93.24702
48090
4810LINE
48118
4812Cmts
481362
48141
481510
4816190.210093
481720
4818-94.378001
481911
4820190.805162
482121
4822-93.256041
48230
4824LINE
48258
4826Cmts
482762
48281
482910
4830190.240093
483120
4832-90.478001
483311
4834189.645024
483521
4836-91.599961
48370
4838LINE
48398
4840Cmts
484162
48421
484310
4844190.240093
484520
4846-90.478001
484711
4848190.817831
484921
4850-91.608982
48510
4852TEXT
48538
4854Cmts
485562
48561
485710
4858159.664849
485920
4860-87.283312
48611
48626.400 mm
486340
48641.5
486541
48661.5
486750
4868270.089525
48697
4870SIMPLEX
487172
48721
487373
48742
487511
4876159.664849
487721
4878-87.283312
48790
4880LINE
48818
4882Cmts
488362
48841
488510
4886155.38
488720
4888-84.09
488911
4890161.009848
489121
4892-84.081203
48930
4894LINE
48958
4896Cmts
489762
48981
489910
4900155.39
490120
4902-90.49
490311
4904161.019848
490521
4906-90.481203
49070
4908LINE
49098
4910Cmts
491162
49121
491310
4914158.319851
491520
4916-90.485422
491711
4918158.309851
491921
4920-84.085422
49210
4922LINE
49238
4924Cmts
492562
49261
492710
4928158.309851
492920
4930-84.085422
493111
4932158.898031
493321
4934-85.211008
49350
4936LINE
49378
4938Cmts
493962
49401
494110
4942158.309851
494320
4944-84.085422
494511
4946157.725191
494721
4948-85.212841
49490
4950LINE
49518
4952Cmts
495362
49541
495510
4956158.319851
495720
4958-90.485422
495911
4960158.904511
496121
4962-89.358003
49630
4964LINE
49658
4966Cmts
496762
49681
496910
4970158.319851
497120
4972-90.485422
497311
4974157.731671
497521
4976-89.359836
49770
4978LINE
49798
4980Cmts
498162
49821
498310
4984109.67
498520
4986-90.4875
498711
4988195.48
498921
4990-90.4875
49910
4992TEXT
49938
4994Cmts
499562
49961
499710
4998147.64
499920
5000-117.98
50011
500288.300 mm
500340
50041.5
500541
50061.5
50077
5008SIMPLEX
500972
50101
501173
50122
501311
5014147.64
501521
5016-117.98
50170
5018LINE
50198
5020Cmts
502162
50221
502310
5024191.79
502520
5026-99.49
502711
5028191.79
502921
5030-119.33
50310
5032LINE
50338
5034Cmts
503562
50361
503710
5038103.49
503920
5040-99.49
504111
5042103.49
504321
5044-119.33
50450
5046LINE
50478
5048Cmts
504962
50501
505110
5052103.49
505320
5054-116.63
505511
5056191.79
505721
5058-116.63
50590
5060LINE
50618
5062Cmts
506362
50641
506510
5066191.79
506720
5068-116.63
506911
5070190.663496
507121
5072-117.216421
50730
5074LINE
50758
5076Cmts
507762
50781
507910
5080191.79
508120
5082-116.63
508311
5084190.663496
508521
5086-116.043579
50870
5088LINE
50898
5090Cmts
509162
50921
509310
5094103.49
509520
5096-116.63
509711
5098104.616504
509921
5100-117.216421
51010
5102LINE
51038
5104Cmts
510562
51061
510710
5108103.49
510920
5110-116.63
511111
5112104.616504
511321
5114-116.043579
51150
5116TEXT
51178
5118Cmts
511962
51201
512110
5122102.19
512320
5124-104.41
51251
51262.600 mm
512740
51281.5
512941
51301.5
51317
5132SIMPLEX
513372
51341
513573
51362
513711
5138102.19
513921
5140-104.41
51410
5142LINE
51438
5144Cmts
514562
51461
514710
5148103.49
514920
5150-99.49
515111
5152103.49
515321
5154-105.76
51550
5156LINE
51578
5158Cmts
515962
51601
516110
5162100.89
516320
5164-99.49
516511
5166100.89
516721
5168-105.76
51690
5170LINE
51718
5172Cmts
517362
51741
517510
5176100.89
517720
5178-103.06
517911
5180103.49
518121
5182-103.06
51830
5184LINE
51858
5186Cmts
518762
51881
518910
5190103.49
519120
5192-103.06
519311
5194102.363496
519521
5196-103.646421
51970
5198LINE
51998
5200Cmts
520162
52021
520310
5204103.49
520520
5206-103.06
520711
5208102.363496
520921
5210-102.473579
52110
5212LINE
52138
5214Cmts
521562
52161
521710
5218100.89
521920
5220-103.06
522111
5222102.016504
522321
5224-103.646421
52250
5226LINE
52278
5228Cmts
522962
52301
523110
5232100.89
523320
5234-103.06
523511
5236102.016504
523721
5238-102.473579
52390
5240TEXT
52418
5242Cmts
524362
52441
524510
524697.67
524720
5248-96.94
52491
52505.100 mm
525140
52521.5
525341
52541.5
525550
5256270.0
52577
5258SIMPLEX
525972
52601
526173
52622
526311
526497.67
526521
5266-96.94
52670
5268LINE
52698
5270Cmts
527162
52721
527310
5274100.89
527520
5276-99.49
527711
527896.32
527921
5280-99.49
52810
5282LINE
52838
5284Cmts
528562
52861
528710
5288100.89
528920
5290-94.39
529111
529296.32
529321
5294-94.39
52950
5296LINE
52978
5298Cmts
529962
53001
530110
530299.02
530320
5304-94.39
530511
530699.02
530721
5308-99.49
53090
5310LINE
53118
5312Cmts
531362
53141
531510
531699.02
531720
5318-99.49
531911
532098.433579
532121
5322-98.363496
53230
5324LINE
53258
5326Cmts
532762
53281
532910
533099.02
533120
5332-99.49
533311
533499.606421
533521
5336-98.363496
53370
5338LINE
53398
5340Cmts
534162
53421
534310
534499.02
534520
5346-94.39
534711
534898.433579
534921
5350-95.516504
53510
5352LINE
53538
5354Cmts
535562
53561
535710
535899.02
535920
5360-94.39
536111
536299.606421
536321
5364-95.516504
53650
5366TEXT
53678
5368Cmts
536962
53701
537110
5372109.63
537320
5374-81.13
53751
537614.500 mm
537740
53781.5
537941
53801.5
53817
5382SIMPLEX
538372
53841
538573
53862
538711
5388109.63
538921
5390-81.13
53910
5392LINE
53938
5394Cmts
539562
53961
539710
5398102.38
539920
5400-89.28
540111
5402102.38
540321
5404-79.78
54050
5406LINE
54078
5408Cmts
540962
54101
541110
5412116.88
541320
5414-89.28
541511
5416116.88
541721
5418-79.78
54190
5420LINE
54218
5422Cmts
542362
54241
542510
5426116.88
542720
5428-82.48
542911
5430102.38
543121
5432-82.48
54330
5434LINE
54358
5436Cmts
543762
54381
543910
5440102.38
544120
5442-82.48
544311
5444103.506504
544521
5446-81.893579
54470
5448LINE
54498
5450Cmts
545162
54521
545310
5454102.38
545520
5456-82.48
545711
5458103.506504
545921
5460-83.066421
54610
5462LINE
54638
5464Cmts
546562
54661
546710
5468116.88
546920
5470-82.48
547111
5472115.753496
547321
5474-81.893579
54750
5476LINE
54778
5478Cmts
547962
54801
548110
5482116.88
548320
5484-82.48
548511
5486115.753496
548721
5488-83.066421
54890
5490TEXT
54918
5492Cmts
549362
54941
549510
5496121.803009
549720
5498-90.50045
54991
55002.400 mm
550140
55021.5
550341
55041.5
550550
550689.761269
55077
5508SIMPLEX
550972
55101
551173
55122
551311
5514121.803009
551521
5516-90.50045
55170
5518LINE
55198
5520Cmts
552162
55221
552310
5524116.89
552520
5526-91.68
552711
5528123.147997
552921
5530-91.706075
55310
5532LINE
55338
5534Cmts
553562
55361
553710
5538116.9
553920
5540-89.28
554111
5542123.157997
554321
5544-89.306075
55450
5546LINE
55478
5548Cmts
554962
55501
555110
5552120.458021
555320
5554-89.294825
555511
5556120.448021
555721
5558-91.694825
55590
5560LINE
55618
5562Cmts
556362
55641
556510
5566120.448021
556720
5568-91.694825
556911
5570119.866299
557121
5572-90.565888
55730
5574LINE
55758
5576Cmts
557762
55781
557910
5580120.448021
558120
5582-91.694825
558311
5584121.03913
558521
5586-90.570774
55870
5588LINE
55898
5590Cmts
559162
55921
559310
5594120.458021
559520
5596-89.294825
559711
5598119.866912
559921
5600-90.418876
56010
5602LINE
56038
5604Cmts
560562
56061
560710
5608120.458021
560920
5610-89.294825
561111
5612121.039743
561321
5614-90.423762
56150
5616TEXT
56178
5618Cmts
561962
56201
562110
5622115.69
562320
5624-85.3
56251
56262.400 mm
562740
56281.5
562941
56301.5
56317
5632SIMPLEX
563372
56341
563573
56362
563711
5638115.69
563921
5640-85.3
56410
5642LINE
56438
5644Cmts
564562
56461
564710
5648116.89
564920
5650-89.28
565111
5652116.89
565321
5654-83.95
56550
5656LINE
56578
5658Cmts
565962
56601
566110
5662114.49
566320
5664-89.28
566511
5666114.49
566721
5668-83.95
56690
5670LINE
56718
5672Cmts
567362
56741
567510
5676114.49
567720
5678-86.65
567911
5680116.89
568121
5682-86.65
56830
5684LINE
56858
5686Cmts
568762
56881
568910
5690116.89
569120
5692-86.65
569311
5694115.763496
569521
5696-87.236421
56970
5698LINE
56998
5700Cmts
570162
57021
570310
5704116.89
570520
5706-86.65
570711
5708115.763496
570921
5710-86.063579
57110
5712LINE
57138
5714Cmts
571562
57161
571710
5718114.49
571920
5720-86.65
572111
5722115.616504
572321
5724-87.236421
57250
5726LINE
57278
5728Cmts
572962
57301
573110
5732114.49
573320
5734-86.65
573511
5736115.616504
573721
5738-86.063579
57390
5740TEXT
57418
5742Cmts
574362
57441
574510
5746135.19
574720
5748-90.49
57491
575012.800 mm
575140
57521.5
575341
57541.5
575550
5756270.0
57577
5758SIMPLEX
575972
57601
576173
57622
576311
5764135.19
576521
5766-90.49
57670
5768LINE
57698
5770Cmts
577162
57721
577310
5774139.89
577520
5776-96.89
577711
5778133.84
577921
5780-96.89
57810
5782LINE
57838
5784Cmts
578562
57861
578710
5788139.89
578920
5790-84.09
579111
5792133.84
579321
5794-84.09
57950
5796LINE
57978
5798Cmts
579962
58001
580110
5802136.54
580320
5804-84.09
580511
5806136.54
580721
5808-96.89
58090
5810LINE
58118
5812Cmts
581362
58141
581510
5816136.54
581720
5818-96.89
581911
5820135.953579
582121
5822-95.763496
58230
5824LINE
58258
5826Cmts
582762
58281
582910
5830136.54
583120
5832-96.89
583311
5834137.126421
583521
5836-95.763496
58370
5838LINE
58398
5840Cmts
584162
58421
584310
5844136.54
584520
5846-84.09
584711
5848135.953579
584921
5850-85.216504
58510
5852LINE
58538
5854Cmts
585562
58561
585710
5858136.54
585920
5860-84.09
586111
5862137.126421
586321
5864-85.216504
58650
5866TEXT
58678
5868Cmts
586962
58701
587110
5872147.63
587320
5874-105.02
58751
587615.500 mm
587740
58781.5
587941
58801.5
58817
5882SIMPLEX
588372
58841
588573
58862
588711
5888147.63
588921
5890-105.02
58910
5892LINE
58938
5894Cmts
589562
58961
589710
5898139.88
589920
5900-96.87
590111
5902139.88
590321
5904-106.37
59050
5906LINE
59078
5908Cmts
590962
59101
591110
5912155.38
591320
5914-96.87
591511
5916155.38
591721
5918-106.37
59190
5920LINE
59218
5922Cmts
592362
59241
592510
5926155.38
592720
5928-103.67
592911
5930139.88
593121
5932-103.67
59330
5934LINE
59358
5936Cmts
593762
59381
593910
5940139.88
594120
5942-103.67
594311
5944141.006504
594521
5946-103.083579
59470
5948LINE
59498
5950Cmts
595162
59521
595310
5954139.88
595520
5956-103.67
595711
5958141.006504
595921
5960-104.256421
59610
5962LINE
59638
5964Cmts
596562
59661
596710
5968155.38
596920
5970-103.67
597111
5972154.253496
597321
5974-103.083579
59750
5976LINE
59778
5978Cmts
597962
59801
598110
5982155.38
598320
5984-103.67
598511
5986154.253496
598721
5988-104.256421
59890
5990CIRCLE
59918
59920
599310
599430.75
599520
5996-33.3375
599740
59983.15
59990
6000CIRCLE
60018
60020
600310
6004195.4375
600520
6006-90.4875
600740
60083.15
60090
6010CIRCLE
60118
60120
601310
6014264.525
601520
6016-33.3375
601740
60183.15
60190
6020LINE
60218
60220
602310
6024290.1375
602520
6026-7.7875
602711
6028290.1375
602921
6030-58.7125
60310
6032LINE
60338
60340
603510
6036288.3375
603720
6038-58.7125
603911
6040290.1375
604121
6042-58.7125
60430
6044LINE
60458
60460
604710
60485.1375
604920
6050-65.0125
605111
60525.1375
605321
6054-97.7875
60550
6056LINE
60578
60580
605910
6060288.3375
606120
6062-65.1125
606311
6064290.1375
606521
6066-65.1125
60670
6068LINE
60698
60700
607110
60728.7375
607320
6074-65.0125
607511
60765.1375
607721
6078-65.0125
60790
6080LINE
60818
60820
608310
60848.7375
608520
6086-58.8125
608711
60885.1375
608921
6090-58.8125
60910
6092ARC
60938
60940
609510
60968.7375
609720
6098-61.9125
609930
61000.0
610140
61023.1
610350
6104-90.0
610551
610690.0
61070
6108ARC
61098
61100
611110
6112288.3375
611320
6114-61.9125
611530
61160.0
611740
61183.2
611950
612090.0
612151
6122270.0
61230
6124TEXT
61258
6126Cmts
612762
61281
612910
6130277.6375
613120
61326.3625
61331
613425.000 mm
613540
61361.5
613741
61381.5
61397
6140SIMPLEX
614172
61421
614373
61442
614511
6146277.6375
614721
61486.3625
61490
6150LINE
61518
6152Cmts
615362
61541
615510
6156265.1375
615720
6158-33.3375
615911
6160265.1375
616121
61627.7125
61630
6164LINE
61658
6166Cmts
616762
61681
616910
6170290.1375
617120
6172-33.3375
617311
6174290.1375
617521
61767.7125
61770
6178LINE
61798
6180Cmts
618162
61821
618310
6184290.1375
618520
61865.0125
618711
6188265.1375
618921
61905.0125
61910
6192LINE
61938
6194Cmts
619562
61961
619710
6198265.1375
619920
62005.0125
620111
6202266.264004
620321
62045.598921
62050
6206LINE
62078
6208Cmts
620962
62101
621110
6212265.1375
621320
62145.0125
621511
6216266.264004
621721
62184.426079
62190
6220LINE
62218
6222Cmts
622362
62241
622510
6226290.1375
622720
62285.0125
622911
6230289.010996
623121
62325.598921
62330
6234LINE
62358
6236Cmts
623762
62381
623910
6240290.1375
624120
62425.0125
624311
6244289.010996
624521
62464.426079
62470
6248TEXT
62498
6250Cmts
625162
62521
625310
6254147.6375
625520
625610.875
62571
6258285.000 mm
625940
62601.5
626141
62621.5
62637
6264SIMPLEX
626572
62661
626773
62682
626911
6270147.6375
627121
627210.875
62730
6274LINE
62758
6276Cmts
627762
62781
627910
6280290.1375
628120
6282-7.14375
628311
6284290.1375
628521
628612.225
62870
6288LINE
62898
6290Cmts
629162
62921
629310
62945.1375
629520
6296-7.14375
629711
62985.1375
629921
630012.225
63010
6302LINE
63038
6304Cmts
630562
63061
630710
63085.1375
630920
63109.525
631111
6312290.1375
631321
63149.525
63150
6316LINE
63178
6318Cmts
631962
63201
632110
6322290.1375
632320
63249.525
632511
6326289.010996
632721
63288.938579
63290
6330LINE
63318
6332Cmts
633362
63341
633510
6336290.1375
633720
63389.525
633911
6340289.010996
634121
634210.111421
63430
6344LINE
63458
6346Cmts
634762
63481
634910
63505.1375
635120
63529.525
635311
63546.264004
635521
63568.938579
63570
6358LINE
63598
6360Cmts
636162
63621
636310
63645.1375
636520
63669.525
636711
63686.264004
636921
637010.111421
63710
6372ARC
63738
63740
637510
63767.6375
637720
6378-97.7875
637930
63800.0
638140
63822.5
638350
6384-180.0
638551
6386-90.0
63870
6388ARC
63898
63900
639110
6392287.6375
639320
6394-97.7875
639530
63960.0
639740
63982.5
639950
6400-90.0
640151
64020.0
64030
6404ARC
64058
64060
640710
6408287.6375
640920
6410-7.7875
641130
64120.0
641340
64142.5
641550
64160.0
641751
641890.0
64190
6420ARC
64218
64220
642310
64247.6375
642520
6426-7.7875
642730
64280.0
642940
64302.5
643150
643290.0
643351
6434180.0
64350
6436LINE
64378
64380
643910
6440290.1375
644120
6442-97.7875
644311
6444290.1375
644521
6446-65.1125
64470
6448LINE
64498
64500
645110
64527.6375
645320
6454-100.2875
645511
6456287.6375
645721
6458-100.2875
64590
6460LINE
64618
64620
646310
64645.1375
646520
6466-7.7875
646711
64685.1375
646921
6470-58.8125
64710
6472LINE
64738
64740
647510
64767.6375
647720
6478-5.2875
647911
6480287.6375
648121
6482-5.2875
64830
6484ENDSEC
64850
6486EOF \ No newline at end of file
diff --git a/keyboards/weebkeeb/config.h b/keyboards/weebkeeb/config.h
deleted file mode 100644
index 859adc9cc..000000000
--- a/keyboards/weebkeeb/config.h
+++ /dev/null
@@ -1,162 +0,0 @@
1/*
2Copyright 2012 Jun Wako <wakojun@gmail.com>
3
4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation, either version 2 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/
17
18#ifndef CONFIG_H
19#define CONFIG_H
20
21#include "config_common.h"
22
23/* USB Device descriptor parameter */
24#define VENDOR_ID 0xFEED
25#define PRODUCT_ID 0x6060
26#define DEVICE_VER 0x0001
27#define MANUFACTURER You
28#define PRODUCT weebkeeb
29#define DESCRIPTION A custom keyboard
30
31/* key matrix size */
32#define MATRIX_ROWS 4
33#define MATRIX_COLS 12
34
35/*
36 * Keyboard Matrix Assignments
37 *
38 * Change this to how you wired your keyboard
39 * COLS: AVR pins used for columns, left to right
40 * ROWS: AVR pins used for rows, top to bottom
41 * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode)
42 * ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode)
43 *
44*/
45#define MATRIX_ROW_PINS { F4, F5, F6, F7 }
46#define MATRIX_COL_PINS { B0, B1, B2, B3, B4, B5, B6, B7, C6, C7, F0, F1 }
47#define UNUSED_PINS
48
49/* COL2ROW or ROW2COL */
50#define DIODE_DIRECTION COL2ROW
51
52// #define BACKLIGHT_PIN B7
53// #define BACKLIGHT_BREATHING
54// #define BACKLIGHT_LEVELS 3
55
56
57/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
58#define DEBOUNCING_DELAY 5
59
60/* define if matrix has ghost (lacks anti-ghosting diodes) */
61//#define MATRIX_HAS_GHOST
62
63/* number of backlight levels */
64
65/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
66#define LOCKING_SUPPORT_ENABLE
67/* Locking resynchronize hack */
68#define LOCKING_RESYNC_ENABLE
69
70/*
71 * Force NKRO
72 *
73 * Force NKRO (nKey Rollover) to be enabled by default, regardless of the saved
74 * state in the bootmagic EEPROM settings. (Note that NKRO must be enabled in the
75 * makefile for this to work.)
76 *
77 * If forced on, NKRO can be disabled via magic key (default = LShift+RShift+N)
78 * until the next keyboard reset.
79 *
80 * NKRO may prevent your keystrokes from being detected in the BIOS, but it is
81 * fully operational during normal computer usage.
82 *
83 * For a less heavy-handed approach, enable NKRO via magic key (LShift+RShift+N)
84 * or via bootmagic (hold SPACE+N while plugging in the keyboard). Once set by
85 * bootmagic, NKRO mode will always be enabled until it is toggled again during a
86 * power-up.
87 *
88 */
89//#define FORCE_NKRO
90
91/*
92 * Magic Key Options
93 *
94 * Magic keys are hotkey commands that allow control over firmware functions of
95 * the keyboard. They are best used in combination with the HID Listen program,
96 * found here: https://www.pjrc.com/teensy/hid_listen.html
97 *
98 * The options below allow the magic key functionality to be changed. This is
99 * useful if your keyboard/keypad is missing keys and you want magic key support.
100 *
101 */
102
103/* key combination for magic key command */
104#define IS_COMMAND() ( \
105 keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT)) \
106)
107
108/* control how magic key switches layers */
109//#define MAGIC_KEY_SWITCH_LAYER_WITH_FKEYS true
110//#define MAGIC_KEY_SWITCH_LAYER_WITH_NKEYS true
111//#define MAGIC_KEY_SWITCH_LAYER_WITH_CUSTOM false
112
113/* override magic key keymap */
114//#define MAGIC_KEY_SWITCH_LAYER_WITH_FKEYS
115//#define MAGIC_KEY_SWITCH_LAYER_WITH_NKEYS
116//#define MAGIC_KEY_SWITCH_LAYER_WITH_CUSTOM
117//#define MAGIC_KEY_HELP1 H
118//#define MAGIC_KEY_HELP2 SLASH
119//#define MAGIC_KEY_DEBUG D
120//#define MAGIC_KEY_DEBUG_MATRIX X
121//#define MAGIC_KEY_DEBUG_KBD K
122//#define MAGIC_KEY_DEBUG_MOUSE M
123//#define MAGIC_KEY_VERSION V
124//#define MAGIC_KEY_STATUS S
125//#define MAGIC_KEY_CONSOLE C
126//#define MAGIC_KEY_LAYER0_ALT1 ESC
127//#define MAGIC_KEY_LAYER0_ALT2 GRAVE
128//#define MAGIC_KEY_LAYER0 0
129//#define MAGIC_KEY_LAYER1 1
130//#define MAGIC_KEY_LAYER2 2
131//#define MAGIC_KEY_LAYER3 3
132//#define MAGIC_KEY_LAYER4 4
133//#define MAGIC_KEY_LAYER5 5
134//#define MAGIC_KEY_LAYER6 6
135//#define MAGIC_KEY_LAYER7 7
136//#define MAGIC_KEY_LAYER8 8
137//#define MAGIC_KEY_LAYER9 9
138//#define MAGIC_KEY_BOOTLOADER PAUSE
139//#define MAGIC_KEY_LOCK CAPS
140//#define MAGIC_KEY_EEPROM E
141//#define MAGIC_KEY_NKRO N
142//#define MAGIC_KEY_SLEEP_LED Z
143
144/*
145 * Feature disable options
146 * These options are also useful to firmware size reduction.
147 */
148
149/* disable debug print */
150//#define NO_DEBUG
151
152/* disable print */
153//#define NO_PRINT
154
155/* disable action features */
156//#define NO_ACTION_LAYER
157//#define NO_ACTION_TAPPING
158//#define NO_ACTION_ONESHOT
159//#define NO_ACTION_MACRO
160//#define NO_ACTION_FUNCTION
161
162#endif
diff --git a/keyboards/weebkeeb/keymaps/default/Makefile b/keyboards/weebkeeb/keymaps/default/Makefile
deleted file mode 100644
index f4671a9d1..000000000
--- a/keyboards/weebkeeb/keymaps/default/Makefile
+++ /dev/null
@@ -1,21 +0,0 @@
1# Build Options
2# change to "no" to disable the options, or define them in the Makefile in
3# the appropriate keymap folder that will get included automatically
4#
5BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000)
6MOUSEKEY_ENABLE = yes # Mouse keys(+4700)
7EXTRAKEY_ENABLE = yes # Audio control and System control(+450)
8CONSOLE_ENABLE = no # Console for debug(+400)
9COMMAND_ENABLE = yes # Commands for debug and configuration
10NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
11BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
12MIDI_ENABLE = no # MIDI controls
13AUDIO_ENABLE = no # Audio output on port C6
14UNICODE_ENABLE = no # Unicode
15BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
16RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight. Do not enable this with audio at the same time.
17SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
18
19ifndef QUANTUM_DIR
20 include ../../../../Makefile
21endif \ No newline at end of file
diff --git a/keyboards/weebkeeb/keymaps/default/config.h b/keyboards/weebkeeb/keymaps/default/config.h
deleted file mode 100644
index df06a2620..000000000
--- a/keyboards/weebkeeb/keymaps/default/config.h
+++ /dev/null
@@ -1,8 +0,0 @@
1#ifndef CONFIG_USER_H
2#define CONFIG_USER_H
3
4#include "../../config.h"
5
6// place overrides here
7
8#endif \ No newline at end of file
diff --git a/keyboards/weebkeeb/keymaps/default/keymap.c b/keyboards/weebkeeb/keymaps/default/keymap.c
deleted file mode 100644
index cdf1f1e4c..000000000
--- a/keyboards/weebkeeb/keymaps/default/keymap.c
+++ /dev/null
@@ -1,119 +0,0 @@
1#include "weebkeeb.h"
2
3#define _QWERTY 0
4#define _COLEMAK 1
5#define _DVORAK 2
6#define _LOWER 3
7#define _RAISE 4
8#define _ADJUST 16
9
10enum custom_keycodes {
11 QWERTY = SAFE_RANGE,
12 COLEMAK,
13 DVORAK,
14 LOWER,
15 RAISE,
16 ADJUST,
17};
18
19// Fillers to make layering more clear
20#define _______ KC_TRNS
21#define XXXXXXX KC_NO
22
23const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
24
25/* Qwerty
26 * ,-----------------------------------------------------------------------------------.
27 * | Tab | Q | W | E | R | T | Y | U | I | O | P | Bksp |
28 * |------+------+------+------+------+-------------+------+------+------+------+------|
29 * | Esc | A | S | D | F | G | H | J | K | L | ; | " |
30 * |------+------+------+------+------+------|------+------+------+------+------+------|
31 * | Shift| Z | X | C | V | B | N | M | , | . | / |Enter |
32 * |------+------+------+------+------+------+------+------+------+------+------+------|
33 * |Adjust| Ctrl | Alt | GUI |Lower |Space |Space |Raise | Left | Down | Up |Right |
34 * `-----------------------------------------------------------------------------------'
35 */
36[_QWERTY] = KEYMAP( \
37 KC_ESC, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_DEL, \
38 KC_TAB, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, \
39 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_ENT , \
40 KC_LCTL, ADJUST, KC_LALT, KC_LGUI, MO(3), KC_SPC, KC_SPC, MO(4), KC_LEFT, KC_DOWN, KC_UP, KC_RGHT \
41),
42
43/* Colemak
44 * ,-----------------------------------------------------------------------------------.
45 * | Tab | Q | W | F | P | G | J | L | U | Y | ; | Bksp |
46 * |------+------+------+------+------+-------------+------+------+------+------+------|
47 * | Esc | A | R | S | T | D | H | N | E | I | O | " |
48 * |------+------+------+------+------+------|------+------+------+------+------+------|
49 * | Shift| Z | X | C | V | B | K | M | , | . | / |Enter |
50 * |------+------+------+------+------+------+------+------+------+------+------+------|
51 * |Adjust| Ctrl | Alt | GUI |Lower |Space |Space |Raise | Left | Down | Up |Right |
52 * `-----------------------------------------------------------------------------------'
53 */
54[3] = KEYMAP( \
55 KC_TILD, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, _______, \
56 KC_DEL, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_UNDS, KC_PLUS, KC_LCBR, KC_RCBR, KC_PIPE, \
57 _______, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12,S(KC_NUHS),S(KC_NUBS),_______, _______, _______, \
58 _______, _______, _______, _______, _______, KC_BSPC, KC_BSPC, _______, KC_MNXT, KC_VOLD, KC_VOLU, KC_MPLY \
59),
60[4] = KEYMAP( \
61 KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, _______, \
62 KC_DEL, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_MINS, KC_EQL, KC_LBRC, KC_RBRC, KC_BSLS, \
63 _______, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_NUHS, KC_NUBS, _______, _______, _______, \
64 _______, _______, _______, _______, _______, KC_ENT, KC_ENT, _______, KC_MNXT, KC_VOLD, KC_VOLU, KC_MPLY \
65),
66
67/* Adjust (Lower + Raise)
68 * ,-----------------------------------------------------------------------------------.
69 * | | Reset| | | | | | | | | | Del |
70 * |------+------+------+------+------+-------------+------+------+------+------+------|
71 * | | | |Aud on|Audoff|AGnorm|AGswap|Qwerty|Colemk|Dvorak| | |
72 * |------+------+------+------+------+------|------+------+------+------+------+------|
73 * | | | | | | | | | | | | |
74 * |------+------+------+------+------+------+------+------+------+------+------+------|
75 * | | | | | | | | | | | |
76 * `-----------------------------------------------------------------------------------'
77 */
78[_ADJUST] = KEYMAP( \
79 _______, RESET, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_DEL, \
80 _______, _______, _______, AU_ON, AU_OFF, AG_NORM, AG_SWAP, QWERTY, COLEMAK, DVORAK, _______, _______, \
81 _______, RGB_TOG,RGB_MOD,RGB_HUI,RGB_HUD,RGB_SAI,RGB_SAD,RGB_VAI,RGB_VAD, _______, _______, _______, \
82 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ \
83)
84};
85const uint16_t PROGMEM fn_actions[] = {
86
87};
88
89const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt)
90{
91 // MACRODOWN only works in this function
92 switch(id) {
93 case 0:
94 if (record->event.pressed) {
95 register_code(KC_RSFT);
96 } else {
97 unregister_code(KC_RSFT);
98 }
99 break;
100 }
101 return MACRO_NONE;
102};
103
104
105void matrix_init_user(void) {
106
107}
108
109void matrix_scan_user(void) {
110
111}
112
113bool process_record_user(uint16_t keycode, keyrecord_t *record) {
114 return true;
115}
116
117void led_set_user(uint8_t usb_led) {
118
119} \ No newline at end of file
diff --git a/keyboards/weebkeeb/keymaps/default/readme.md b/keyboards/weebkeeb/keymaps/default/readme.md
deleted file mode 100644
index 877132276..000000000
--- a/keyboards/weebkeeb/keymaps/default/readme.md
+++ /dev/null
@@ -1 +0,0 @@
1# The default keymap for weebkeeb \ No newline at end of file
diff --git a/keyboards/weebkeeb/readme.md b/keyboards/weebkeeb/readme.md
deleted file mode 100644
index bf31016c8..000000000
--- a/keyboards/weebkeeb/readme.md
+++ /dev/null
@@ -1,28 +0,0 @@
1weebkeeb keyboard firmware
2======================
3
4## Quantum MK Firmware
5
6For the full Quantum feature list, see [the parent readme](/).
7
8## Building
9
10Download or clone the whole firmware and navigate to the keyboards/weebkeeb folder. Once your dev env is setup, you'll be able to type `make` to generate your .hex - you can then use the Teensy Loader to program your .hex file.
11
12Depending on which keymap you would like to use, you will have to compile slightly differently.
13
14### Default
15
16To build with the default keymap, simply run `make default`.
17
18### Other Keymaps
19
20Several version of keymap are available in advance but you are recommended to define your favorite layout yourself. To define your own keymap create a folder with the name of your keymap in the keymaps folder, and see keymap documentation (you can find in top readme.md) and existant keymap files.
21
22To build the firmware binary hex file with a keymap just do `make` with a keymap like this:
23
24```
25$ make [default|jack|<name>]
26```
27
28Keymaps follow the format **__\<name\>.c__** and are stored in the `keymaps` folder.
diff --git a/keyboards/weebkeeb/rules.mk b/keyboards/weebkeeb/rules.mk
deleted file mode 100644
index 55898147d..000000000
--- a/keyboards/weebkeeb/rules.mk
+++ /dev/null
@@ -1,67 +0,0 @@
1# MCU name
2#MCU = at90usb1287
3MCU = atmega32u4
4
5# Processor frequency.
6# This will define a symbol, F_CPU, in all source code files equal to the
7# processor frequency in Hz. You can then use this symbol in your source code to
8# calculate timings. Do NOT tack on a 'UL' at the end, this will be done
9# automatically to create a 32-bit value in your source code.
10#
11# This will be an integer division of F_USB below, as it is sourced by
12# F_USB after it has run through any CPU prescalers. Note that this value
13# does not *change* the processor frequency - it should merely be updated to
14# reflect the processor speed set externally so that the code can use accurate
15# software delays.
16F_CPU = 16000000
17
18
19#
20# LUFA specific
21#
22# Target architecture (see library "Board Types" documentation).
23ARCH = AVR8
24
25# Input clock frequency.
26# This will define a symbol, F_USB, in all source code files equal to the
27# input clock frequency (before any prescaling is performed) in Hz. This value may
28# differ from F_CPU if prescaling is used on the latter, and is required as the
29# raw input clock is fed directly to the PLL sections of the AVR for high speed
30# clock generation for the USB and other AVR subsections. Do NOT tack on a 'UL'
31# at the end, this will be done automatically to create a 32-bit value in your
32# source code.
33#
34# If no clock division is performed on the input clock inside the AVR (via the
35# CPU clock adjust registers or the clock division fuses), this will be equal to F_CPU.
36F_USB = $(F_CPU)
37
38# Interrupt driven control endpoint task(+60)
39OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT
40
41
42# Boot Section Size in *bytes*
43# Teensy halfKay 512
44# Teensy++ halfKay 1024
45# Atmel DFU loader 4096
46# LUFA bootloader 4096
47# USBaspLoader 2048
48OPT_DEFS += -DBOOTLOADER_SIZE=512
49
50
51# Build Options
52# change yes to no to disable
53#
54BOOTMAGIC_ENABLE ?= no # Virtual DIP switch configuration(+1000)
55MOUSEKEY_ENABLE ?= yes # Mouse keys(+4700)
56EXTRAKEY_ENABLE ?= yes # Audio control and System control(+450)
57CONSOLE_ENABLE ?= yes # Console for debug(+400)
58COMMAND_ENABLE ?= yes # Commands for debug and configuration
59# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
60SLEEP_LED_ENABLE ?= no # Breathing sleep LED during USB suspend
61# if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
62NKRO_ENABLE ?= no # USB Nkey Rollover
63BACKLIGHT_ENABLE ?= no # Enable keyboard backlight functionality on B7 by default
64MIDI_ENABLE ?= no # MIDI controls
65UNICODE_ENABLE ?= no # Unicode
66BLUETOOTH_ENABLE ?= no # Enable Bluetooth with the Adafruit EZ-Key HID
67AUDIO_ENABLE ?= no # Audio output on port C6
diff --git a/keyboards/weebkeeb/weebkeeb.c b/keyboards/weebkeeb/weebkeeb.c
deleted file mode 100644
index 483fc9440..000000000
--- a/keyboards/weebkeeb/weebkeeb.c
+++ /dev/null
@@ -1,28 +0,0 @@
1#include "weebkeeb.h"
2
3void matrix_init_kb(void) {
4 // put your keyboard start-up code here
5 // runs once when the firmware starts up
6
7 matrix_init_user();
8}
9
10void matrix_scan_kb(void) {
11 // put your looping keyboard code here
12 // runs every cycle (a lot)
13
14 matrix_scan_user();
15}
16
17bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
18 // put your per-action keyboard code here
19 // runs for every action, just before processing by the firmware
20
21 return process_record_user(keycode, record);
22}
23
24void led_set_kb(uint8_t usb_led) {
25 // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here
26
27 led_set_user(usb_led);
28}
diff --git a/keyboards/weebkeeb/weebkeeb.h b/keyboards/weebkeeb/weebkeeb.h
deleted file mode 100644
index 7bca2c201..000000000
--- a/keyboards/weebkeeb/weebkeeb.h
+++ /dev/null
@@ -1,23 +0,0 @@
1#ifndef WEEBKEEB_H
2#define WEEBKEEB_H
3
4#include "quantum.h"
5
6// This a shortcut to help you visually see your layout.
7// The following is an example using the Planck MIT layout
8// The first section contains all of the arguements
9// The second converts the arguments into a two-dimensional array
10#define KEYMAP( \
11 k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b, \
12 k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1a, k1b, \
13 k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2a, k2b, \
14 k30, k31, k32, k33, k34, k35, k36, k37, k38, k39, k3a, k3b \
15) \
16{ \
17 { k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b }, \
18 { k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1a, k1b }, \
19 { k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2a, k2b }, \
20 { k30, k31, k32, k33, k34, k35, k36, k37, k38, k39, k3a, k3b } \
21}
22
23#endif