[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

Re: gEDA-user: gschem sym files



Kai-Martin Knaak:
> Karl Hammar wrote:
> >  1, add/correct pintype to the sym files
...
> >  2, remove numslots=0 warning from gsymcheck
> > Anything else?
> 3, remove numslots=0 from all symbols in the default library

Ok, something like

$ perl -ne 'if (m/^T /) { $old = $_; } elsif (m/^numslots\=0/) { undef($old); } else { print $old if $old; print; undef($old); }' symbols/4000/4000-1.sym > tt
$ diff -u symbols/4000/4000-1.sym tt        
--- symbols/4000/4000-1.sym     2009-11-02 19:41:43.000000000 +0100
+++ tt  2010-09-28 19:05:10.000000000 +0200
@@ -144,8 +144,6 @@
 footprint=DIP14
 T 300 2850 5 10 0 0 0 0 1
 description=2 NOR-gates with 3 inputs, 1 NOT-gate
-T 300 3450 5 10 0 0 0 0 1
-numslots=0
 T 300 3050 5 10 0 0 0 0 1
 net=VDD:14
 T 300 3250 5 10 0 0 0 0 1
$

Then

$ find . -type f -name \*.sym | xargs perl -i -ne 'if (m/^numslots\=0/) { undef($old); } else { print $old if $old; undef($old); if (m/^T /) {  $old = $_; } else { print; }}'

should do the job, and it gives the attached patch.
Looking through it, the patches for:
 symbols/analog/nmos-3.sym
 symbols/analog/pmos-3.sym
 symbols/connector/header8-1.sym
 symbols/connector/header8-2.sym
looks strange, but it is only diff which is playing games.

> 4, add explicit documentation on the rules in the wiki

I'm not the wiki man. I could read the code (I assume you mean drc2) and
try to describe it in text, but someone else has to enter it into the wiki.

> 5, add a tutorial on how to adapt the DRC rules to the local needs

From what I can see you have to learn scheme for that.

Can you give exaples of local needs?

> 6, add some kind of GUI control to activate/deactivate rules

Gui things are for others to contribute with, but maybe if we could 
make drc2 react on some attributes?

> 7, add a way to ignore to ignore specific violations

In gnet-drc2.scm:

;; Example:
;; (define dont-check-non-numbered-parts 1)
;; (define dont-check-duplicated-references 1)
;; (define dont-check-one-connection-nets 1)
;; (define dont-report-unknown-pintypes 1)
;; (define dont-check-pintypes-of-nets 1)
;; (define dont-check-not-driven-nets 1)
;; (define dont-check-unconnected-pins 1)
;; (define dont-check-duplicated-slots 1)
;; (define dont-check-unused-slots 1)
;; (define action-unused-slots #\w)
;; (define case_insensitive 1)

and there is also descriptions how to alter what is allowed to
connect to what in the file. The problem seems to get that inside

 gnetlist -g drc2 ... 

unless you edit the /usr/share/gEDA/scheme/gnet-drc2.scm (or similar) 
file.

> You asked for it :-)

Without response it is hard to proceed.

BTW, your job could be to test the patches and see to that they gets 
applied!

Regards,
/Karl Hammar

---------
Aspö Data
Lilla Aspö 148
S-742 94 Östhammar
Sweden
+46 173 140 57

diff --git a/gsymcheck/tests/misplaced_attributes.sym b/gsymcheck/tests/misplaced_attributes.sym
index 6b2b884..37e261f 100644
--- a/gsymcheck/tests/misplaced_attributes.sym
+++ b/gsymcheck/tests/misplaced_attributes.sym
@@ -46,8 +46,6 @@ T 1400 6200 5 10 0 0 0 0 1
 documentation=none
 T 1400 6400 5 10 0 0 0 0 1
 description=many attributes are attached the wrong way
-T 1400 6000 5 10 0 0 0 0 1
-numslots=0
 V 5103 3599 600 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 {
 T 5100 3600 5 10 1 1 0 0 1
diff --git a/gsymcheck/tests/pin_offgrid.sym b/gsymcheck/tests/pin_offgrid.sym
index f3f72f0..0a64cd9 100644
--- a/gsymcheck/tests/pin_offgrid.sym
+++ b/gsymcheck/tests/pin_offgrid.sym
@@ -107,5 +107,3 @@ T 700 4900 9 10 1 0 0 0 1
 footprint=xx
 T 700 5100 9 10 1 0 0 0 1
 device=xx
-T 700 5300 9 10 1 0 0 0 1
-numslots=0
diff --git a/gsymcheck/tests/pintypes.sym b/gsymcheck/tests/pintypes.sym
index 2b9328d..d036ab7 100644
--- a/gsymcheck/tests/pintypes.sym
+++ b/gsymcheck/tests/pintypes.sym
@@ -157,8 +157,6 @@ T 400 5200 5 10 0 0 0 0 1
 documentation=none
 T 400 5400 5 10 0 0 0 0 1
 description=pintype check for gsymcheck
-T 400 5600 5 10 0 0 0 0 1
-numslots=0
 P 3100 2900 2800 2900 1 0 0
 {
 T 2900 2950 5 8 1 1 0 0 1
diff --git a/symbols/4000/4000-1.sym b/symbols/4000/4000-1.sym
index e5f165f..1185a34 100644
--- a/symbols/4000/4000-1.sym
+++ b/symbols/4000/4000-1.sym
@@ -144,8 +144,6 @@ T 300 2650 5 10 0 0 0 0 1
 footprint=DIP14
 T 300 2850 5 10 0 0 0 0 1
 description=2 NOR-gates with 3 inputs, 1 NOT-gate
-T 300 3450 5 10 0 0 0 0 1
-numslots=0
 T 300 3050 5 10 0 0 0 0 1
 net=VDD:14
 T 300 3250 5 10 0 0 0 0 1
diff --git a/symbols/4000/4000-2.sym b/symbols/4000/4000-2.sym
index f2be723..4bb5d63 100644
--- a/symbols/4000/4000-2.sym
+++ b/symbols/4000/4000-2.sym
@@ -144,8 +144,6 @@ T 300 3450 5 10 0 0 0 0 1
 footprint=DIP14
 T 300 3650 5 10 0 0 0 0 1
 description=2 NOR-gates with 3 inputs, 1 NOT-gate
-T 300 4250 5 10 0 0 0 0 1
-numslots=0
 T 300 3850 5 10 0 0 0 0 1
 net=VDD:14
 T 300 4050 5 10 0 0 0 0 1
diff --git a/symbols/4000/4006-1.sym b/symbols/4000/4006-1.sym
index 17a53ba..5d74ee4 100644
--- a/symbols/4000/4006-1.sym
+++ b/symbols/4000/4006-1.sym
@@ -147,7 +147,5 @@ pintype=out
 B 300 300 1000 3200 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 2000 550 5 10 0 0 0 0 1
 description=18-stage static shift register
-T 2000 750 5 10 0 0 0 0 1
-numslots=0
 T 300 50 9 10 1 0 0 0 1
 4006
diff --git a/symbols/4000/4006-2.sym b/symbols/4000/4006-2.sym
index 5265ad2..a2d61fc 100644
--- a/symbols/4000/4006-2.sym
+++ b/symbols/4000/4006-2.sym
@@ -135,8 +135,6 @@ pintype=out
 B 300 0 1400 3000 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 300 4050 5 10 0 0 0 0 1
 description=18-stage static shift register
-T 300 4250 5 10 0 0 0 0 1
-numslots=0
 T 300 3050 9 10 1 0 0 0 1
 4006
 V 250 300 50 6 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
diff --git a/symbols/4000/4007-1.sym b/symbols/4000/4007-1.sym
index b92cf2a..d748a66 100644
--- a/symbols/4000/4007-1.sym
+++ b/symbols/4000/4007-1.sym
@@ -239,5 +239,3 @@ T 800 5200 5 10 0 0 0 0 1
 footprint=DIP14
 T 800 5400 5 10 0 0 0 0 1
 description=dual complementary pair and inverter
-T 800 5000 5 10 0 0 0 0 1
-numslots=0
diff --git a/symbols/4000/4008-1.sym b/symbols/4000/4008-1.sym
index dd1bdca..1016411 100644
--- a/symbols/4000/4008-1.sym
+++ b/symbols/4000/4008-1.sym
@@ -166,7 +166,5 @@ pintype=out
 B 300 300 2000 4000 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 3000 750 5 10 0 0 0 0 1
 description=4 bit binary full adder
-T 3000 1750 5 10 0 0 0 0 1
-numslots=0
 T 300 50 9 10 1 0 0 0 1
 4008
diff --git a/symbols/4000/4008-2.sym b/symbols/4000/4008-2.sym
index a79fe17..ab9275c 100644
--- a/symbols/4000/4008-2.sym
+++ b/symbols/4000/4008-2.sym
@@ -166,7 +166,5 @@ pintype=out
 B 300 0 1400 3800 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 300 4850 5 10 0 0 0 0 1
 description=4 bit binary full adder
-T 300 5050 5 10 0 0 0 0 1
-numslots=0
 T 300 3850 9 10 1 0 0 0 1
 4008
diff --git a/symbols/4000/40100-1.sym b/symbols/4000/40100-1.sym
index 46fc491..2ef9b89 100644
--- a/symbols/4000/40100-1.sym
+++ b/symbols/4000/40100-1.sym
@@ -103,7 +103,5 @@ pintype=in
 B 300 300 1400 2000 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 2400 750 5 10 0 0 0 0 1
 description=32-stage static left/right shift register
-T 2400 1750 5 10 0 0 0 0 1
-numslots=0
 T 300 50 9 10 1 0 0 0 1
 40100
diff --git a/symbols/4000/40101-1.sym b/symbols/4000/40101-1.sym
index d986e94..03a75d4 100644
--- a/symbols/4000/40101-1.sym
+++ b/symbols/4000/40101-1.sym
@@ -145,7 +145,5 @@ pintype=out
 B 300 300 1000 4000 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 2000 750 5 10 0 0 0 0 1
 description=9 bit parity checker
-T 2000 1750 5 10 0 0 0 0 1
-numslots=0
 T 200 50 9 10 1 0 0 0 1
 40101
diff --git a/symbols/4000/40102-1.sym b/symbols/4000/40102-1.sym
index edb9239..40fd6f5 100644
--- a/symbols/4000/40102-1.sym
+++ b/symbols/4000/40102-1.sym
@@ -173,7 +173,5 @@ V 1350 5500 50 6 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 B 300 300 1000 5600 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 2000 650 5 10 0 0 0 0 1
 description=8-bit synchrounous BCD down counter
-T 2000 1650 5 10 0 0 0 0 1
-numslots=0
 T 300 50 9 10 1 0 0 0 1
 40102
diff --git a/symbols/4000/40103-1.sym b/symbols/4000/40103-1.sym
index 2b7da53..08b8a99 100644
--- a/symbols/4000/40103-1.sym
+++ b/symbols/4000/40103-1.sym
@@ -173,7 +173,5 @@ V 1350 5500 50 6 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 B 300 300 1000 5600 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 2000 650 5 10 0 0 0 0 1
 description=8-bit synchrounous binary down counter
-T 2000 1650 5 10 0 0 0 0 1
-numslots=0
 T 300 50 9 10 1 0 0 0 1
 40103
diff --git a/symbols/4000/40104-1.sym b/symbols/4000/40104-1.sym
index e421ccc..edf80d0 100644
--- a/symbols/4000/40104-1.sym
+++ b/symbols/4000/40104-1.sym
@@ -168,7 +168,5 @@ pintype=tri
 B 300 300 1000 4400 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 2000 650 5 10 0 0 0 0 1
 description=4-bit bidirectional shift register
-T 2000 1650 5 10 0 0 0 0 1
-numslots=0
 T 300 50 9 10 1 0 0 0 1
 40104
diff --git a/symbols/4000/40105-1.sym b/symbols/4000/40105-1.sym
index 9dd9ca1..260887f 100644
--- a/symbols/4000/40105-1.sym
+++ b/symbols/4000/40105-1.sym
@@ -166,7 +166,5 @@ pintype=in
 }
 T 2000 750 5 10 0 0 0 0 1
 description=4-bit x 16-word fifo register
-T 2000 1750 5 10 0 0 0 0 1
-numslots=0
 T 300 50 9 10 1 0 0 0 1
 40105
diff --git a/symbols/4000/40108-1.sym b/symbols/4000/40108-1.sym
index b4c90a9..25d2664 100644
--- a/symbols/4000/40108-1.sym
+++ b/symbols/4000/40108-1.sym
@@ -256,7 +256,5 @@ pintype=in
 B 300 300 1900 5500 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 2900 1850 5 10 0 0 0 0 1
 description=4x4 multiport register
-T 2900 2850 5 10 0 0 0 0 1
-numslots=0
 T 100 50 9 10 1 0 0 0 1
 40108
diff --git a/symbols/4000/40110-1.sym b/symbols/4000/40110-1.sym
index a3e6431..054cc67 100644
--- a/symbols/4000/40110-1.sym
+++ b/symbols/4000/40110-1.sym
@@ -171,7 +171,5 @@ pintype=out
 B 300 300 1200 4000 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 2200 750 5 10 0 0 0 0 1
 description=decade up-down counter/7-segment decoder/latch/driver
-T 2200 1750 5 10 0 0 0 0 1
-numslots=0
 T 300 50 9 10 1 0 0 0 1
 40110
diff --git a/symbols/4000/40117-1.sym b/symbols/4000/40117-1.sym
index cc7ad3a..ee9900b 100644
--- a/symbols/4000/40117-1.sym
+++ b/symbols/4000/40117-1.sym
@@ -142,7 +142,5 @@ T 1250 3500 5 8 0 1 0 8 1
 pintype=out
 }
 B 300 300 1000 3600 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
-T 2000 1750 5 10 0 0 0 0 1
-numslots=0
 T 300 50 9 10 1 0 0 0 1
 40117
diff --git a/symbols/4000/4014-1.sym b/symbols/4000/4014-1.sym
index 7f2a250..412a9b5 100644
--- a/symbols/4000/4014-1.sym
+++ b/symbols/4000/4014-1.sym
@@ -168,7 +168,5 @@ pintype=out
 B 300 300 2400 4800 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 3400 750 5 10 0 0 0 0 1
 description=8-bit shift register with parallel load
-T 3400 1750 5 10 0 0 0 0 1
-numslots=0
 T 300 50 9 10 1 0 0 0 1
 4014
diff --git a/symbols/4000/4014-2.sym b/symbols/4000/4014-2.sym
index 5ee6dd4..93049b7 100644
--- a/symbols/4000/4014-2.sym
+++ b/symbols/4000/4014-2.sym
@@ -168,7 +168,5 @@ pintype=out
 B 300 0 1400 4700 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 300 5950 5 10 0 0 0 0 1
 description=8-bit shift register with parallel load
-T 300 5750 5 10 0 0 0 0 1
-numslots=0
 T 300 4750 9 10 1 0 0 0 1
 4014
diff --git a/symbols/4000/40147-1.sym b/symbols/4000/40147-1.sym
index 66d2a50..60e35e0 100644
--- a/symbols/4000/40147-1.sym
+++ b/symbols/4000/40147-1.sym
@@ -166,7 +166,5 @@ pintype=out
 B 300 300 1000 4400 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 2000 750 5 10 0 0 0 0 1
 description=10 to 4 line BCD priority encoder
-T 2000 1750 5 10 0 0 0 0 1
-numslots=0
 T 300 50 9 10 1 0 0 0 1
 40147
diff --git a/symbols/4000/4016-1.sym b/symbols/4000/4016-1.sym
index d35bfbd..86d4347 100644
--- a/symbols/4000/4016-1.sym
+++ b/symbols/4000/4016-1.sym
@@ -140,8 +140,6 @@ T 300 2750 5 10 0 0 0 0 1
 footprint=DIP14
 T 300 2950 5 10 0 0 0 0 1
 description=4 bilateral switches
-T 300 3550 5 10 0 0 0 0 1
-numslots=0
 T 300 3150 5 10 0 0 0 0 1
 net=VDD:14
 T 300 3350 5 10 0 0 0 0 1
diff --git a/symbols/4000/40160-1.sym b/symbols/4000/40160-1.sym
index a1c62a7..adfd16a 100644
--- a/symbols/4000/40160-1.sym
+++ b/symbols/4000/40160-1.sym
@@ -170,8 +170,6 @@ pintype=out
 B 300 300 1000 4000 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 2000 750 5 10 0 0 0 0 1
 description=4-bit synchronous programmable decade counter
-T 2000 1750 5 10 0 0 0 0 1
-numslots=0
 T 2000 550 5 10 0 0 0 0 1
 documentation=http://www.semiconductors.philips.com/acrobat/datasheets/HEF40160B_CNV_3.pdf
 T 300 50 9 10 1 0 0 0 1
diff --git a/symbols/4000/40161-1.sym b/symbols/4000/40161-1.sym
index 3cc3319..d9d284e 100644
--- a/symbols/4000/40161-1.sym
+++ b/symbols/4000/40161-1.sym
@@ -170,8 +170,6 @@ pintype=out
 B 300 300 1000 4000 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 2000 750 5 10 0 0 0 0 1
 description=4-bit synchronous programmable binary counter
-T 2000 1750 5 10 0 0 0 0 1
-numslots=0
 T 2000 550 5 10 0 0 0 0 1
 documentation=http://www.semiconductors.philips.com/acrobat/datasheets/HEF40161B_CNV_3.pdf
 T 300 50 9 10 1 0 0 0 1
diff --git a/symbols/4000/40162-1.sym b/symbols/4000/40162-1.sym
index 44a5bc0..2e9565b 100644
--- a/symbols/4000/40162-1.sym
+++ b/symbols/4000/40162-1.sym
@@ -170,8 +170,6 @@ pintype=out
 B 300 300 1000 4000 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 2000 750 5 10 0 0 0 0 1
 description=4-bit synchronous programmable decade counter
-T 2000 1750 5 10 0 0 0 0 1
-numslots=0
 T 2000 550 5 10 0 0 0 0 1
 documentation=http://www.semiconductors.philips.com/acrobat/datasheets/HEF40162B_CNV_3.pdf
 T 300 50 9 10 1 0 0 0 1
diff --git a/symbols/4000/40163-1.sym b/symbols/4000/40163-1.sym
index 2550390..8ec87ca 100644
--- a/symbols/4000/40163-1.sym
+++ b/symbols/4000/40163-1.sym
@@ -170,8 +170,6 @@ pintype=out
 B 300 300 1000 4000 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 2000 750 5 10 0 0 0 0 1
 description=4-bit synchronous programmable binary counter
-T 2000 1750 5 10 0 0 0 0 1
-numslots=0
 T 2000 550 5 10 0 0 0 0 1
 documentation=http://www.semiconductors.philips.com/acrobat/datasheets/HEF40163B_CNV_3.pdf
 T 300 50 9 10 1 0 0 0 1
diff --git a/symbols/4000/4017-1.sym b/symbols/4000/4017-1.sym
index 1a2c80b..74da446 100644
--- a/symbols/4000/4017-1.sym
+++ b/symbols/4000/4017-1.sym
@@ -168,7 +168,5 @@ pintype=out
 B 300 300 1000 4800 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 2000 750 5 10 0 0 0 0 1
 description=decade counter with 10 decoded outputs
-T 2000 1750 5 10 0 0 0 0 1
-numslots=0
 T 300 50 9 10 1 0 0 0 1
 4017
diff --git a/symbols/4000/4017-2.sym b/symbols/4000/4017-2.sym
index 98209ab..deeadd5 100644
--- a/symbols/4000/4017-2.sym
+++ b/symbols/4000/4017-2.sym
@@ -168,8 +168,6 @@ pintype=out
 B 300 0 1400 4600 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 300 5850 5 10 0 0 0 0 1
 description=decade counter with 10 decoded outputs
-T 300 5650 5 10 0 0 0 0 1
-numslots=0
 T 300 4650 9 10 1 0 0 0 1
 4017
 V 250 700 50 6 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
diff --git a/symbols/4000/40174-1.sym b/symbols/4000/40174-1.sym
index ef67dcb..c09fef2 100644
--- a/symbols/4000/40174-1.sym
+++ b/symbols/4000/40174-1.sym
@@ -168,8 +168,6 @@ L 800 3000 875 3100 3 0 0 0 -1 -1
 B 300 300 1000 2800 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 2000 750 5 10 0 0 0 0 1
 description=Hex D-type flip-flops
-T 2000 1750 5 10 0 0 0 0 1
-numslots=0
 T 2000 550 5 10 0 0 0 0 1
 documentation=http://www.semiconductors.philips.com/acrobat/datasheets/HEF40174B_CNV_3.pdf
 T 0 50 9 10 1 0 0 0 1
diff --git a/symbols/4000/40175-1.sym b/symbols/4000/40175-1.sym
index 7d61a36..f31e8d6 100644
--- a/symbols/4000/40175-1.sym
+++ b/symbols/4000/40175-1.sym
@@ -172,8 +172,6 @@ L 800 3800 875 3900 3 0 0 0 -1 -1
 B 300 300 1000 3600 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 2000 750 5 10 0 0 0 0 1
 description=Quad D-type flip-flops
-T 2000 1750 5 10 0 0 0 0 1
-numslots=0
 T 2000 550 5 10 0 0 0 0 1
 documentation=http://www.semiconductors.philips.com/acrobat/datasheets/HEF40175B_CNV_3.pdf
 T 0 50 9 10 1 0 0 0 1
diff --git a/symbols/4000/4018-1.sym b/symbols/4000/4018-1.sym
index 5ab8173..dedd1e2 100644
--- a/symbols/4000/4018-1.sym
+++ b/symbols/4000/4018-1.sym
@@ -173,7 +173,5 @@ V 1350 3100 50 6 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 B 300 300 1000 4000 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 2000 750 5 10 0 0 0 0 1
 description=presetable divide-by-n-counter
-T 2000 1750 5 10 0 0 0 0 1
-numslots=0
 T 300 50 9 10 1 0 0 0 1
 4018
diff --git a/symbols/4000/4018-2.sym b/symbols/4000/4018-2.sym
index 5c93a9f..71d8b33 100644
--- a/symbols/4000/4018-2.sym
+++ b/symbols/4000/4018-2.sym
@@ -173,7 +173,5 @@ V 1750 3500 50 6 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 B 300 0 1400 3800 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 300 5050 5 10 0 0 0 0 1
 description=presetable divide-by-n-counter
-T 300 4850 5 10 0 0 0 0 1
-numslots=0
 T 300 3850 9 10 1 0 0 0 1
 4018
diff --git a/symbols/4000/40181-1.sym b/symbols/4000/40181-1.sym
index 3409bb9..99e39c3 100644
--- a/symbols/4000/40181-1.sym
+++ b/symbols/4000/40181-1.sym
@@ -270,7 +270,5 @@ pintype=in
 B 300 400 2000 4400 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 3000 450 5 10 0 0 0 0 1
 description=4-bit ALU
-T 3000 1450 5 10 0 0 0 0 1
-numslots=0
 T 300 150 9 10 1 0 0 0 1
 40181
diff --git a/symbols/4000/40182-1.sym b/symbols/4000/40182-1.sym
index f740fe2..3311799 100644
--- a/symbols/4000/40182-1.sym
+++ b/symbols/4000/40182-1.sym
@@ -176,7 +176,5 @@ pintype=out
 B 300 200 1000 4000 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 2000 650 5 10 0 0 0 0 1
 description=look ahead carry generator
-T 2000 1650 5 10 0 0 0 0 1
-numslots=0
 T 300 50 9 10 1 0 0 0 1
 40182
diff --git a/symbols/4000/4019-1.sym b/symbols/4000/4019-1.sym
index 8864cd3..1949181 100644
--- a/symbols/4000/4019-1.sym
+++ b/symbols/4000/4019-1.sym
@@ -166,7 +166,5 @@ T 3400 1550 5 10 0 0 0 0 1
 net=VDD:16
 T 3400 750 5 10 0 0 0 0 1
 description=4 2-input multiplexer
-T 3400 1750 5 10 0 0 0 0 1
-numslots=0
 T 300 50 9 10 1 0 0 0 1
 4019
diff --git a/symbols/4000/4019-2.sym b/symbols/4000/4019-2.sym
index c4924eb..434b5a8 100644
--- a/symbols/4000/4019-2.sym
+++ b/symbols/4000/4019-2.sym
@@ -166,7 +166,5 @@ T 300 5050 5 10 0 0 0 0 1
 net=VDD:16
 T 300 5450 5 10 0 0 0 0 1
 description=4 2-input multiplexer
-T 300 5250 5 10 0 0 0 0 1
-numslots=0
 T 300 4250 9 10 1 0 0 0 1
 4019
diff --git a/symbols/4000/40192-1.sym b/symbols/4000/40192-1.sym
index 93cd3e5..8f02d5c 100644
--- a/symbols/4000/40192-1.sym
+++ b/symbols/4000/40192-1.sym
@@ -173,8 +173,6 @@ pintype=out
 B 300 300 1000 3600 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 2000 750 5 10 0 0 0 0 1
 description=synchronous programmable decade counter
-T 2000 1750 5 10 0 0 0 0 1
-numslots=0
 T 2000 550 5 10 0 0 0 0 1
 documentation=http://www.semiconductors.philips.com/acrobat/datasheets/HEF40192B_CNV_3.pdf
 T 300 50 9 10 1 0 0 0 1
diff --git a/symbols/4000/40193-1.sym b/symbols/4000/40193-1.sym
index 4f7335d..f1e5be2 100644
--- a/symbols/4000/40193-1.sym
+++ b/symbols/4000/40193-1.sym
@@ -173,8 +173,6 @@ pintype=out
 B 300 300 1000 3600 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 2000 750 5 10 0 0 0 0 1
 description=synchronous programmable binary counter
-T 2000 1750 5 10 0 0 0 0 1
-numslots=0
 T 2000 550 5 10 0 0 0 0 1
 documentation=http://www.semiconductors.philips.com/acrobat/datasheets/HEF40193B_CNV_3.pdf
 T 300 50 9 10 1 0 0 0 1
diff --git a/symbols/4000/40194-1.sym b/symbols/4000/40194-1.sym
index fa848e1..2d77c6e 100644
--- a/symbols/4000/40194-1.sym
+++ b/symbols/4000/40194-1.sym
@@ -169,8 +169,6 @@ pintype=out
 B 300 300 1000 4400 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 2000 750 5 10 0 0 0 0 1
 description=4-bit bidirectional shift register
-T 2000 1750 5 10 0 0 0 0 1
-numslots=0
 T 2000 550 5 10 0 0 0 0 1
 documentation=http://www.semiconductors.philips.com/acrobat/datasheets/HEF40194B_CNV_3.pdf
 T 300 50 9 10 1 0 0 0 1
diff --git a/symbols/4000/40195-1.sym b/symbols/4000/40195-1.sym
index a903f83..d675c00 100644
--- a/symbols/4000/40195-1.sym
+++ b/symbols/4000/40195-1.sym
@@ -172,7 +172,5 @@ pintype=out
 B 300 300 1000 4000 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 2000 750 5 10 0 0 0 0 1
 description=4-bit universal shift register
-T 2000 1750 5 10 0 0 0 0 1
-numslots=0
 T 300 50 9 10 1 0 0 0 1
 40195
diff --git a/symbols/4000/4020-1.sym b/symbols/4000/4020-1.sym
index 887a7c8..1861d73 100644
--- a/symbols/4000/4020-1.sym
+++ b/symbols/4000/4020-1.sym
@@ -162,8 +162,6 @@ T 300 4350 5 10 0 0 0 0 1
 footprint=DIP16
 T 300 4550 5 10 0 0 0 0 1
 description=14-bit binary counter
-T 300 5150 5 10 0 0 0 0 1
-numslots=0
 T 300 4750 5 10 0 0 0 0 1
 net=VDD:16
 T 300 4950 5 10 0 0 0 0 1
diff --git a/symbols/4000/40208-1.sym b/symbols/4000/40208-1.sym
index 12c7363..9ea9408 100644
--- a/symbols/4000/40208-1.sym
+++ b/symbols/4000/40208-1.sym
@@ -256,7 +256,5 @@ pintype=in
 B 300 300 1900 5500 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 2900 1850 5 10 0 0 0 0 1
 description=4x4 multiport register
-T 2900 2850 5 10 0 0 0 0 1
-numslots=0
 T 100 50 9 10 1 0 0 0 1
 40208
diff --git a/symbols/4000/4021-1.sym b/symbols/4000/4021-1.sym
index 05b7e03..66af839 100644
--- a/symbols/4000/4021-1.sym
+++ b/symbols/4000/4021-1.sym
@@ -168,7 +168,5 @@ pintype=out
 B 300 300 2400 4800 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 3400 750 5 10 0 0 0 0 1
 description=8-bit shift register with parallel load
-T 3400 1750 5 10 0 0 0 0 1
-numslots=0
 T 300 50 9 10 1 0 0 0 1
 4021
diff --git a/symbols/4000/4021-2.sym b/symbols/4000/4021-2.sym
index 146fed2..f7c9aa4 100644
--- a/symbols/4000/4021-2.sym
+++ b/symbols/4000/4021-2.sym
@@ -170,7 +170,5 @@ pintype=in
 B 300 0 1500 3900 3 0 0 0 -1 -1 0 0 -1 -1 -1 -1
 T 300 4200 5 10 0 0 0 0 1
 description=8-bit shift register with parallel load
-T 300 4400 5 10 0 0 0 0 1
-numslots=0
 T 300 3950 3 10 1 0 0 0 1
 4021
diff --git a/symbols/4000/4021-3.sym b/symbols/4000/4021-3.sym
index 327d85e..ea5e8a3 100644
--- a/symbols/4000/4021-3.sym
+++ b/symbols/4000/4021-3.sym
@@ -168,7 +168,5 @@ pintype=out
 B 300 0 1400 4600 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 300 5850 5 10 0 0 0 0 1
 description=8-bit shift register with parallel load
-T 300 5650 5 10 0 0 0 0 1
-numslots=0
 T 300 4650 9 10 1 0 0 0 1
 4021
diff --git a/symbols/4000/4022-1.sym b/symbols/4000/4022-1.sym
index 1b1b4e6..704595a 100644
--- a/symbols/4000/4022-1.sym
+++ b/symbols/4000/4022-1.sym
@@ -146,7 +146,5 @@ pintype=out
 B 300 300 1000 4000 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 2000 750 5 10 0 0 0 0 1
 description=octal counter with 8 decoded outputs
-T 2000 1750 5 10 0 0 0 0 1
-numslots=0
 T 300 50 9 10 1 0 0 0 1
 4022
diff --git a/symbols/4000/4022-2.sym b/symbols/4000/4022-2.sym
index 228044e..4080987 100644
--- a/symbols/4000/4022-2.sym
+++ b/symbols/4000/4022-2.sym
@@ -146,8 +146,6 @@ pintype=out
 B 300 0 1400 3800 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 300 5050 5 10 0 0 0 0 1
 description=octal counter with 8 decoded outputs
-T 300 4850 5 10 0 0 0 0 1
-numslots=0
 T 300 3850 9 10 1 0 0 0 1
 4022
 V 250 3100 50 6 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
diff --git a/symbols/4000/4024-1.sym b/symbols/4000/4024-1.sym
index 857c09e..2702f82 100644
--- a/symbols/4000/4024-1.sym
+++ b/symbols/4000/4024-1.sym
@@ -107,8 +107,6 @@ T 1700 2500 8 10 1 1 0 6 1
 refdes=U?
 T 300 3050 5 10 0 0 0 0 1
 description=7-bit binary counter
-T 300 3650 5 10 0 0 0 0 1
-numslots=0
 T 300 3250 5 10 0 0 0 0 1
 net=VDD:14
 T 300 3450 5 10 0 0 0 0 1
diff --git a/symbols/4000/40245-1.sym b/symbols/4000/40245-1.sym
index b42d2ec..c4d46bd 100644
--- a/symbols/4000/40245-1.sym
+++ b/symbols/4000/40245-1.sym
@@ -211,8 +211,6 @@ pintype=tri
 B 500 300 1000 3600 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 2200 750 5 10 0 0 0 0 1
 description=8-bit transceiver
-T 2200 1750 5 10 0 0 0 0 1
-numslots=0
 T 2200 550 5 10 0 0 0 0 1
 documentation=http://www.semiconductors.philips.com/acrobat/datasheets/HEF40245B_CNV_3.pdf
 T 0 50 9 10 1 0 0 0 1
diff --git a/symbols/4000/40257-1.sym b/symbols/4000/40257-1.sym
index 649c191..1a9d2e3 100644
--- a/symbols/4000/40257-1.sym
+++ b/symbols/4000/40257-1.sym
@@ -167,7 +167,5 @@ pintype=tri
 B 300 300 1000 4400 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 2000 750 5 10 0 0 0 0 1
 description=Quad 2-to-1 multiplexer
-T 2000 1750 5 10 0 0 0 0 1
-numslots=0
 T 300 50 9 10 1 0 0 0 1
 40257
diff --git a/symbols/4000/4026-1.sym b/symbols/4000/4026-1.sym
index d3c7b9b..7500dfa 100644
--- a/symbols/4000/4026-1.sym
+++ b/symbols/4000/4026-1.sym
@@ -168,7 +168,5 @@ pintype=out
 B 300 300 1400 4400 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 300 5750 5 10 0 0 0 0 1
 description=decade counter with decoded 7-segment output
-T 300 5950 5 10 0 0 0 0 1
-numslots=0
 T 300 4750 9 10 1 0 0 0 1
 4026
diff --git a/symbols/4000/4028-1.sym b/symbols/4000/4028-1.sym
index c17a5f5..72d6270 100644
--- a/symbols/4000/4028-1.sym
+++ b/symbols/4000/4028-1.sym
@@ -166,7 +166,5 @@ T 2000 1550 5 10 0 0 0 0 1
 net=VSS:8
 T 2000 750 5 10 0 0 0 0 1
 description=BCD to decimal decoder
-T 2000 1750 5 10 0 0 0 0 1
-numslots=0
 T 300 50 9 10 1 0 0 0 1
 4028
diff --git a/symbols/4000/4028-2.sym b/symbols/4000/4028-2.sym
index fe8196d..bee6def 100644
--- a/symbols/4000/4028-2.sym
+++ b/symbols/4000/4028-2.sym
@@ -166,7 +166,5 @@ T 300 5050 5 10 0 0 0 0 1
 net=VSS:8
 T 300 5450 5 10 0 0 0 0 1
 description=BCD to decimal decoder
-T 300 5250 5 10 0 0 0 0 1
-numslots=0
 T 300 4250 9 10 1 0 0 0 1
 4028
diff --git a/symbols/4000/4029-1.sym b/symbols/4000/4029-1.sym
index 2fdb4d4..5c6266d 100644
--- a/symbols/4000/4029-1.sym
+++ b/symbols/4000/4029-1.sym
@@ -168,8 +168,6 @@ pintype=out
 B 300 300 1600 4000 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 2300 3150 5 10 0 0 0 0 1
 description=synchronous up/down, binary/decade counter
-T 2300 4150 5 10 0 0 0 0 1
-numslots=0
 T 300 50 9 10 1 0 0 0 1
 4029
 V 1950 2300 50 6 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
diff --git a/symbols/4000/4031-1.sym b/symbols/4000/4031-1.sym
index f5dd37f..3d5e5c9 100644
--- a/symbols/4000/4031-1.sym
+++ b/symbols/4000/4031-1.sym
@@ -103,8 +103,6 @@ pintype=out
 B 300 300 1300 2000 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 2300 750 5 10 0 0 0 0 1
 description=64-stage static shift register
-T 2300 1750 5 10 0 0 0 0 1
-numslots=0
 T 300 100 9 10 1 0 0 0 1
 4031
 T 2300 550 5 10 0 0 0 0 1
diff --git a/symbols/4000/4032-1.sym b/symbols/4000/4032-1.sym
index 4fcbea6..2d51e38 100644
--- a/symbols/4000/4032-1.sym
+++ b/symbols/4000/4032-1.sym
@@ -168,7 +168,5 @@ pintype=out
 B 300 300 1000 4800 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 2000 750 5 10 0 0 0 0 1
 description=3 serial adders
-T 2000 1750 5 10 0 0 0 0 1
-numslots=0
 T 300 50 9 10 1 0 0 0 1
 4032
diff --git a/symbols/4000/4032-2.sym b/symbols/4000/4032-2.sym
index be0f518..3039b7b 100644
--- a/symbols/4000/4032-2.sym
+++ b/symbols/4000/4032-2.sym
@@ -168,7 +168,5 @@ pintype=out
 B 300 0 1400 4600 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 300 5250 5 10 0 0 0 0 1
 description=3 serial adders
-T 300 5850 5 10 0 0 0 0 1
-numslots=0
 T 300 4650 9 10 1 0 0 0 1
 4032
diff --git a/symbols/4000/4033-1.sym b/symbols/4000/4033-1.sym
index f2a08ba..92e21e5 100644
--- a/symbols/4000/4033-1.sym
+++ b/symbols/4000/4033-1.sym
@@ -168,8 +168,6 @@ pintype=out
 B 300 300 1000 4000 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 2000 750 5 10 0 0 0 0 1
 description=decade counter with decoded 7-segment outputs
-T 2000 1750 5 10 0 0 0 0 1
-numslots=0
 T 2000 550 5 10 0 0 0 0 1
 documentation=http://www.semiconductors.philips.com/acrobat/datasheets/2N4031_4033_CNV_2.pdf
 T 300 50 9 10 1 0 0 0 1
diff --git a/symbols/4000/4033-2.sym b/symbols/4000/4033-2.sym
index fc132e6..4dce5f2 100644
--- a/symbols/4000/4033-2.sym
+++ b/symbols/4000/4033-2.sym
@@ -168,8 +168,6 @@ pintype=out
 B 300 0 1400 3800 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 300 4650 5 10 0 0 0 0 1
 description=decade counter with decoded 7-segment outputs
-T 300 5250 5 10 0 0 0 0 1
-numslots=0
 T 300 4450 5 10 0 0 0 0 1
 documentation=http://www.semiconductors.philips.com/acrobat/datasheets/2N4031_4033_CNV_2.pdf
 T 300 3850 9 10 1 0 0 0 1
diff --git a/symbols/4000/4034-1.sym b/symbols/4000/4034-1.sym
index 38a0433..c1db89f 100644
--- a/symbols/4000/4034-1.sym
+++ b/symbols/4000/4034-1.sym
@@ -254,7 +254,5 @@ pintype=in
 B 300 300 1600 3600 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 2600 750 5 10 0 0 0 0 1
 description=8-stage static parallel/serial bus transceiver
-T 2600 1750 5 10 0 0 0 0 1
-numslots=0
 T 0 50 9 10 1 0 0 0 1
 4034
diff --git a/symbols/4000/4035-1.sym b/symbols/4000/4035-1.sym
index 36aefe6..df98036 100644
--- a/symbols/4000/4035-1.sym
+++ b/symbols/4000/4035-1.sym
@@ -167,8 +167,6 @@ pintype=out
 B 300 300 2800 2000 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 3800 750 5 10 0 0 0 0 1
 description=4-bit universal shift register
-T 3800 1750 5 10 0 0 0 0 1
-numslots=0
 T 3800 550 5 10 0 0 0 0 1
 documentation=http://www.semiconductors.philips.com/acrobat/datasheets/HEF4035B_CNV_3.pdf
 T 2600 2450 9 10 1 0 0 0 1
diff --git a/symbols/4000/4035-2.sym b/symbols/4000/4035-2.sym
index 76ae87e..5c350c8 100644
--- a/symbols/4000/4035-2.sym
+++ b/symbols/4000/4035-2.sym
@@ -167,8 +167,6 @@ pintype=out
 B 300 0 1400 4200 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 300 5050 5 10 0 0 0 0 1
 description=4-bit universal shift register
-T 300 5650 5 10 0 0 0 0 1
-numslots=0
 T 300 4850 5 10 0 0 0 0 1
 documentation=http://www.semiconductors.philips.com/acrobat/datasheets/HEF4035B_CNV_3.pdf
 T 300 4250 9 10 1 0 0 0 1
diff --git a/symbols/4000/40373-1.sym b/symbols/4000/40373-1.sym
index 93095f2..0c30227 100644
--- a/symbols/4000/40373-1.sym
+++ b/symbols/4000/40373-1.sym
@@ -211,8 +211,6 @@ pintype=tri
 B 400 300 1000 3600 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 2100 750 5 10 0 0 0 0 1
 description=octal D-type transparent latch
-T 2100 1750 5 10 0 0 0 0 1
-numslots=0
 T 2100 550 5 10 0 0 0 0 1
 documentation=http://www.semiconductors.philips.com/acrobat/datasheets/HEF40373B_CNV_3.pdf
 T 0 50 9 10 1 0 0 0 1
diff --git a/symbols/4000/40374-1.sym b/symbols/4000/40374-1.sym
index 0f88da3..b5075db 100644
--- a/symbols/4000/40374-1.sym
+++ b/symbols/4000/40374-1.sym
@@ -213,8 +213,6 @@ pintype=tri
 B 500 300 1000 3600 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 2200 750 5 10 0 0 0 0 1
 description=octal D-type flip-flops
-T 2200 1750 5 10 0 0 0 0 1
-numslots=0
 T 2200 550 5 10 0 0 0 0 1
 documentation=http://www.semiconductors.philips.com/acrobat/datasheets/HEF40374B_CNV_3.pdf
 T 0 50 9 10 1 0 0 0 1
diff --git a/symbols/4000/4038-1.sym b/symbols/4000/4038-1.sym
index c2f33e6..fc37167 100644
--- a/symbols/4000/4038-1.sym
+++ b/symbols/4000/4038-1.sym
@@ -168,7 +168,5 @@ pintype=out
 B 300 300 1000 4800 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 2000 750 5 10 0 0 0 0 1
 description=3 serial adder
-T 2000 1750 5 10 0 0 0 0 1
-numslots=0
 T 300 50 9 10 1 0 0 0 1
 4038
diff --git a/symbols/4000/4038-2.sym b/symbols/4000/4038-2.sym
index a4ec33d..5b8cd89 100644
--- a/symbols/4000/4038-2.sym
+++ b/symbols/4000/4038-2.sym
@@ -168,7 +168,5 @@ pintype=out
 B 300 0 1400 4600 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 300 5250 5 10 0 0 0 0 1
 description=3 serial adder
-T 300 5850 5 10 0 0 0 0 1
-numslots=0
 T 300 4650 9 10 1 0 0 0 1
 4038
diff --git a/symbols/4000/4040-1.sym b/symbols/4000/4040-1.sym
index e859e16..b428352 100644
--- a/symbols/4000/4040-1.sym
+++ b/symbols/4000/4040-1.sym
@@ -162,8 +162,6 @@ T 300 4350 5 10 0 0 0 0 1
 footprint=DIP16
 T 300 4550 5 10 0 0 0 0 1
 description=12-bit binary counter
-T 300 5350 5 10 0 0 0 0 1
-numslots=0
 T 300 4950 5 10 0 0 0 0 1
 net=VDD:16
 T 300 5150 5 10 0 0 0 0 1
diff --git a/symbols/4000/4042-1.sym b/symbols/4000/4042-1.sym
index 5c4f261..bd676b7 100644
--- a/symbols/4000/4042-1.sym
+++ b/symbols/4000/4042-1.sym
@@ -172,8 +172,6 @@ L 800 3800 875 3900 3 0 0 0 -1 -1
 B 300 300 1000 3600 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 2000 750 5 10 0 0 0 0 1
 description=4 D-type flip-flops
-T 2000 1750 5 10 0 0 0 0 1
-numslots=0
 T 2000 550 5 10 0 0 0 0 1
 documentation=http://www.semiconductors.philips.com/acrobat/datasheets/HEF4042B_CNV_3.pdf
 T 0 50 9 10 1 0 0 0 1
diff --git a/symbols/4000/4042-2.sym b/symbols/4000/4042-2.sym
index fe71fc5..7d4e1d4 100644
--- a/symbols/4000/4042-2.sym
+++ b/symbols/4000/4042-2.sym
@@ -148,8 +148,6 @@ pintype=out
 B 300 0 1400 4200 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 300 5650 5 10 0 0 0 0 1
 description=4 D-type flip-flops
-T 300 5250 5 10 0 0 0 0 1
-numslots=0
 T 300 5450 5 10 0 0 0 0 1
 documentation=http://www.semiconductors.philips.com/acrobat/datasheets/HEF4042B_CNV_3.pdf
 T 300 4250 9 10 1 0 0 0 1
diff --git a/symbols/4000/4043-1.sym b/symbols/4000/4043-1.sym
index b554475..d826126 100644
--- a/symbols/4000/4043-1.sym
+++ b/symbols/4000/4043-1.sym
@@ -155,8 +155,6 @@ pintype=in
 B 300 300 1000 3600 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 1900 350 5 10 0 0 0 0 1
 description=quadruple R/S latch with 3-state outputs
-T 1900 1350 5 10 0 0 0 0 1
-numslots=0
 T 1900 150 5 10 0 0 0 0 1
 documentation=http://www.semiconductors.philips.com/acrobat/datasheets/HEF4043B_CNV_3.pdf
 T 300 50 9 10 1 0 0 0 1
diff --git a/symbols/4000/4043-2.sym b/symbols/4000/4043-2.sym
index 1416dd5..38948f0 100644
--- a/symbols/4000/4043-2.sym
+++ b/symbols/4000/4043-2.sym
@@ -155,8 +155,6 @@ pintype=in
 B 300 0 1400 3800 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 300 4650 5 10 0 0 0 0 1
 description=quadruple R/S latch with 3-state outputs
-T 300 5250 5 10 0 0 0 0 1
-numslots=0
 T 300 4450 5 10 0 0 0 0 1
 documentation=http://www.semiconductors.philips.com/acrobat/datasheets/HEF4043B_CNV_3.pdf
 T 300 3850 9 10 1 0 0 0 1
diff --git a/symbols/4000/4044-1.sym b/symbols/4000/4044-1.sym
index 7499907..2959a88 100644
--- a/symbols/4000/4044-1.sym
+++ b/symbols/4000/4044-1.sym
@@ -157,8 +157,6 @@ pintype=in
 B 300 300 1000 3600 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 2000 750 5 10 0 0 0 0 1
 description=quadruple R/S latch with 3-state outputs
-T 2000 1750 5 10 0 0 0 0 1
-numslots=0
 T 2000 550 5 10 0 0 0 0 1
 documentation=http://www.semiconductors.philips.com/acrobat/datasheets/HEF4044B_CNV_3.pdf
 T 300 50 9 10 1 0 0 0 1
diff --git a/symbols/4000/4044-2.sym b/symbols/4000/4044-2.sym
index 355e3aa..d00eccd 100644
--- a/symbols/4000/4044-2.sym
+++ b/symbols/4000/4044-2.sym
@@ -157,8 +157,6 @@ pintype=in
 B 300 0 1400 3800 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 300 5050 5 10 0 0 0 0 1
 description=quadruple R/S latch with 3-state outputs
-T 300 4850 5 10 0 0 0 0 1
-numslots=0
 T 300 5250 5 10 0 0 0 0 1
 documentation=http://www.semiconductors.philips.com/acrobat/datasheets/HEF4044B_CNV_3.pdf
 V 250 3500 50 6 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
diff --git a/symbols/4000/4045-1.sym b/symbols/4000/4045-1.sym
index c6f803a..d3cd888 100644
--- a/symbols/4000/4045-1.sym
+++ b/symbols/4000/4045-1.sym
@@ -78,7 +78,5 @@ pintype=out
 B 300 300 1000 2000 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 2000 750 5 10 0 0 0 0 1
 description=21-stage counter
-T 2000 1750 5 10 0 0 0 0 1
-numslots=0
 T 300 50 9 10 1 0 0 0 1
 4045
diff --git a/symbols/4000/4046-1.sym b/symbols/4000/4046-1.sym
index 3c43f33..e0bb8e2 100644
--- a/symbols/4000/4046-1.sym
+++ b/symbols/4000/4046-1.sym
@@ -162,8 +162,6 @@ T 300 3750 5 10 0 0 0 0 1
 footprint=DIP16
 T 300 3950 5 10 0 0 0 0 1
 description=phase-locked loop
-T 300 4550 5 10 0 0 0 0 1
-numslots=0
 T 300 4150 5 10 0 0 0 0 1
 net=VDD:16
 T 300 4350 5 10 0 0 0 0 1
diff --git a/symbols/4000/4047-1.sym b/symbols/4000/4047-1.sym
index 9add330..bba9255 100644
--- a/symbols/4000/4047-1.sym
+++ b/symbols/4000/4047-1.sym
@@ -143,8 +143,6 @@ T 1600 2900 8 10 1 1 0 6 1
 refdes=U?
 T 300 3450 5 10 0 0 0 0 1
 description=monostable/astable multivibrator
-T 300 4250 5 10 0 0 0 0 1
-numslots=0
 T 300 3650 5 10 0 0 0 0 1
 net=VDD:14
 T 300 3850 5 10 0 0 0 0 1
diff --git a/symbols/4000/4048-1.sym b/symbols/4000/4048-1.sym
index fdc9e6b..d2cefa9 100644
--- a/symbols/4000/4048-1.sym
+++ b/symbols/4000/4048-1.sym
@@ -166,7 +166,5 @@ pintype=in
 B 400 300 1400 3600 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 2500 750 5 10 0 0 0 0 1
 description=multifunction expandable 8-input gate
-T 2500 1750 5 10 0 0 0 0 1
-numslots=0
 T 0 50 9 10 1 0 0 0 1
 4048
diff --git a/symbols/4000/4051-1.sym b/symbols/4000/4051-1.sym
index 326f880..b0bdc5f 100644
--- a/symbols/4000/4051-1.sym
+++ b/symbols/4000/4051-1.sym
@@ -151,8 +151,6 @@ T 300 3050 5 10 0 0 0 0 1
 footprint=DIL16
 T 300 4050 5 10 0 0 0 0 1
 description=8-1 analogue multiplexer/demultiplexer
-T 300 3850 5 10 0 0 0 0 1
-numslots=0
 T 300 3250 5 10 0 0 0 0 1
 net=VDD:16
 T 300 3450 5 10 0 0 0 0 1
diff --git a/symbols/4000/4052-1.sym b/symbols/4000/4052-1.sym
index 4f58270..4bdb369 100644
--- a/symbols/4000/4052-1.sym
+++ b/symbols/4000/4052-1.sym
@@ -151,8 +151,6 @@ T 1700 2700 8 10 1 1 0 6 1
 refdes=U?
 T 300 4050 5 10 0 0 0 0 1
 description=2 4-1 analogue multiplexer/demultiplexer
-T 300 3850 5 10 0 0 0 0 1
-numslots=0
 T 300 3250 5 10 0 0 0 0 1
 net=VDD:16
 T 300 3450 5 10 0 0 0 0 1
diff --git a/symbols/4000/4053-2.sym b/symbols/4000/4053-2.sym
index 50ebca3..68c2799 100644
--- a/symbols/4000/4053-2.sym
+++ b/symbols/4000/4053-2.sym
@@ -7,8 +7,6 @@ T 300 3250 5 10 0 0 0 0 1
 device=4053
 T 300 3450 5 10 0 0 0 0 1
 footprint=DIP16
-T 300 3650 5 10 0 0 0 0 1
-numslots=0
 T 300 3850 5 10 0 0 0 0 1
 description=3 2-1 analogue multiplexer/demultiplexer
 T 300 4050 5 10 0 0 0 0 1
diff --git a/symbols/4000/4054-1.sym b/symbols/4000/4054-1.sym
index 18c6b6b..37bb72a 100644
--- a/symbols/4000/4054-1.sym
+++ b/symbols/4000/4054-1.sym
@@ -157,7 +157,5 @@ pintype=out
 B 300 300 1000 4000 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 2000 750 5 10 0 0 0 0 1
 description=liquid-crystal display drivers
-T 2000 1950 5 10 0 0 0 0 1
-numslots=0
 T 300 50 9 10 1 0 0 0 1
 4054
diff --git a/symbols/4000/4055-1.sym b/symbols/4000/4055-1.sym
index 2bde245..33890d2 100644
--- a/symbols/4000/4055-1.sym
+++ b/symbols/4000/4055-1.sym
@@ -157,7 +157,5 @@ pintype=out
 B 300 300 1000 3600 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 2000 750 5 10 0 0 0 0 1
 description=BCD to 7 segment decoder, LCD
-T 2000 1950 5 10 0 0 0 0 1
-numslots=0
 T 300 50 9 10 1 0 0 0 1
 4055
diff --git a/symbols/4000/4056-1.sym b/symbols/4000/4056-1.sym
index ec024f0..c430dfe 100644
--- a/symbols/4000/4056-1.sym
+++ b/symbols/4000/4056-1.sym
@@ -157,7 +157,5 @@ pintype=out
 B 300 300 1000 3200 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 2000 750 5 10 0 0 0 0 1
 description=BCD to 7 segment decoder, LCD
-T 2000 1950 5 10 0 0 0 0 1
-numslots=0
 T 300 50 9 10 1 0 0 0 1
 4056
diff --git a/symbols/4000/4059-1.sym b/symbols/4000/4059-1.sym
index 59b25e0..e6f46e7 100644
--- a/symbols/4000/4059-1.sym
+++ b/symbols/4000/4059-1.sym
@@ -256,8 +256,6 @@ pintype=in
 B 400 400 1600 7200 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 2100 850 5 10 0 0 0 0 1
 description=programmable divide-by-n counter
-T 2100 1850 5 10 0 0 0 0 1
-numslots=0
 T 2100 650 5 10 0 0 0 0 1
 documentation=http://www.semiconductors.philips.com/acrobat/datasheets/HEF4059B_CNV_3.pdf
 T 400 150 9 10 1 0 0 0 1
diff --git a/symbols/4000/4060-1.sym b/symbols/4000/4060-1.sym
index 961b393..de6c681 100644
--- a/symbols/4000/4060-1.sym
+++ b/symbols/4000/4060-1.sym
@@ -166,8 +166,6 @@ pintype=out
 B 300 300 1000 4400 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 2000 750 5 10 0 0 0 0 1
 description=14-stage ripple-carry binary counter/divider and oscillator
-T 2000 1750 5 10 0 0 0 0 1
-numslots=0
 T 2000 550 5 10 0 0 0 0 1
 documentation=http://www.semiconductors.philips.com/acrobat/datasheets/HEF4060B_CNV_3.pdf
 T 300 50 9 10 1 0 0 0 1
diff --git a/symbols/4000/4060-2.sym b/symbols/4000/4060-2.sym
index 0716ece..a475e2d 100644
--- a/symbols/4000/4060-2.sym
+++ b/symbols/4000/4060-2.sym
@@ -166,8 +166,6 @@ pintype=out
 B 300 0 1400 4200 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 300 5450 5 10 0 0 0 0 1
 description=14-stage ripple-carry binary counter/divider and oscillator
-T 300 5250 5 10 0 0 0 0 1
-numslots=0
 T 300 5650 5 10 0 0 0 0 1
 documentation=http://www.semiconductors.philips.com/acrobat/datasheets/HEF4060B_CNV_3.pdf
 T 300 4250 9 10 1 0 0 0 1
diff --git a/symbols/4000/4061-1.sym b/symbols/4000/4061-1.sym
index bdc0bc5..fa28c20 100644
--- a/symbols/4000/4061-1.sym
+++ b/symbols/4000/4061-1.sym
@@ -167,7 +167,5 @@ T 1250 700 5 8 0 1 0 8 1
 pintype=out
 }
 B 300 300 1000 5200 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
-T 2000 750 5 10 0 0 0 0 1
-numslots=0
 T 300 50 9 10 1 0 0 0 1
 4061
diff --git a/symbols/4000/4062-1.sym b/symbols/4000/4062-1.sym
index 63d0e63..f34b6bc 100644
--- a/symbols/4000/4062-1.sym
+++ b/symbols/4000/4062-1.sym
@@ -164,7 +164,5 @@ T 700 1700 5 8 0 1 0 5 1
 pintype=in
 }
 B 300 300 2000 1600 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
-T 3000 950 5 10 0 0 0 0 1
-numslots=0
 T 100 50 9 10 1 0 0 0 1
 4062
diff --git a/symbols/4000/4063-1.sym b/symbols/4000/4063-1.sym
index 31d3777..7f95669 100644
--- a/symbols/4000/4063-1.sym
+++ b/symbols/4000/4063-1.sym
@@ -166,7 +166,5 @@ pintype=in
 B 300 300 2000 1600 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 3000 950 5 10 0 0 0 0 1
 description=4-bit magnitude comparator
-T 3000 1950 5 10 0 0 0 0 1
-numslots=0
 T 100 50 9 10 1 0 0 0 1
 4063
diff --git a/symbols/4000/4066-1.sym b/symbols/4000/4066-1.sym
index b94b53f..16936a6 100644
--- a/symbols/4000/4066-1.sym
+++ b/symbols/4000/4066-1.sym
@@ -140,8 +140,6 @@ T 300 2750 5 10 0 0 0 0 1
 footprint=DIP14
 T 300 2950 5 10 0 0 0 0 1
 description=4 bilateral switches
-T 300 3550 5 10 0 0 0 0 1
-numslots=0
 T 300 3150 5 10 0 0 0 0 1
 net=VDD:14
 T 300 3350 5 10 0 0 0 0 1
diff --git a/symbols/4000/4067-1.sym b/symbols/4000/4067-1.sym
index ef88358..63e6d32 100644
--- a/symbols/4000/4067-1.sym
+++ b/symbols/4000/4067-1.sym
@@ -255,8 +255,6 @@ pintype=pas
 B 300 300 1000 6800 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 2000 750 5 10 0 0 0 0 1
 description=16-1 analog multiplexer/demultiplexer
-T 2000 1750 5 10 0 0 0 0 1
-numslots=0
 T 2000 550 5 10 0 0 0 0 1
 documentation=http://www.semiconductors.philips.com/acrobat/datasheets/HEF4067B_CNV_3.pdf
 T 300 50 9 10 1 0 0 0 1
diff --git a/symbols/4000/4067-2.sym b/symbols/4000/4067-2.sym
index 3dc5702..50083a3 100644
--- a/symbols/4000/4067-2.sym
+++ b/symbols/4000/4067-2.sym
@@ -255,8 +255,6 @@ pintype=pas
 B 300 400 1400 6600 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 300 8250 5 10 0 0 0 0 1
 description=16-1 analog multiplexer/demultiplexer
-T 300 8050 5 10 0 0 0 0 1
-numslots=0
 T 300 8450 5 10 0 0 0 0 1
 documentation=http://www.semiconductors.philips.com/acrobat/datasheets/HEF4067B_CNV_3.pdf
 T 300 7050 9 10 1 0 0 0 1
diff --git a/symbols/4000/4068-1.sym b/symbols/4000/4068-1.sym
index eb4da49..58197ae 100644
--- a/symbols/4000/4068-1.sym
+++ b/symbols/4000/4068-1.sym
@@ -120,8 +120,6 @@ T 1800 2600 5 10 0 0 0 0 1
 footprint=DIP14
 T 1800 2800 5 10 0 0 0 0 1
 description=8-input NAND/AND gate
-T 1800 2400 5 10 0 0 0 0 1
-numslots=0
 T 1800 3000 5 10 0 0 0 0 1
 documentation=http://www.semiconductors.philips.com/acrobat/datasheets/HEF4068B_CNV_3.pdf
 T 400 1200 9 8 1 0 0 0 1
diff --git a/symbols/4000/4068-2.sym b/symbols/4000/4068-2.sym
index 2d304bd..c2c075e 100644
--- a/symbols/4000/4068-2.sym
+++ b/symbols/4000/4068-2.sym
@@ -123,8 +123,6 @@ T 600 3000 5 10 0 0 0 0 1
 footprint=DIP14
 T 600 3200 5 10 0 0 0 0 1
 description=8-input NAND/AND gate
-T 600 2800 5 10 0 0 0 0 1
-numslots=0
 T 600 3400 5 10 0 0 0 0 1
 documentation=http://www.semiconductors.philips.com/acrobat/datasheets/HEF4068B_CNV_3.pdf
 T 400 1100 9 10 1 0 0 0 1
diff --git a/symbols/4000/4069-3.sym b/symbols/4000/4069-3.sym
index 9b86598..384ceda 100644
--- a/symbols/4000/4069-3.sym
+++ b/symbols/4000/4069-3.sym
@@ -168,8 +168,6 @@ T 300 2750 5 10 0 0 0 0 1
 footprint=DIP14
 T 300 2950 5 10 0 0 0 0 1
 description=6 inverters
-T 300 3150 5 10 0 0 0 0 1
-numslots=0
 T 300 3350 5 10 0 0 0 0 1
 documentation=http://www.semiconductors.philips.com/acrobat/datasheets/HEF4069UB_CNV_3.pdf
 T 300 2340 9 10 1 0 0 0 1
diff --git a/symbols/4000/4076-1.sym b/symbols/4000/4076-1.sym
index 0cd700a..31d88d3 100644
--- a/symbols/4000/4076-1.sym
+++ b/symbols/4000/4076-1.sym
@@ -168,8 +168,6 @@ pintype=in
 B 300 300 1900 2000 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 2900 750 5 10 0 0 0 0 1
 description=quadruple D-type register with 3-state outputs
-T 2900 1750 5 10 0 0 0 0 1
-numslots=0
 T 2900 550 5 10 0 0 0 0 1
 documentation=http://www.semiconductors.philips.com/acrobat/datasheets/HEF4076B_CNV_3.pdf
 T 300 50 9 10 1 0 0 0 1
diff --git a/symbols/4000/4078-1.sym b/symbols/4000/4078-1.sym
index 9c86f49..ece6626 100644
--- a/symbols/4000/4078-1.sym
+++ b/symbols/4000/4078-1.sym
@@ -23,8 +23,6 @@ T 1400 2900 5 10 0 0 0 0 1
 footprint=DIP14
 T 1400 3300 5 10 0 0 0 0 1
 description=NOR gate with 8 inputs
-T 1400 3100 5 10 0 0 0 0 1
-numslots=0
 T 400 1200 9 8 1 0 0 0 1
 4078
 T 1400 3500 5 10 0 0 0 0 1
diff --git a/symbols/4000/4078-2.sym b/symbols/4000/4078-2.sym
index 3d6070a..72d24e4 100644
--- a/symbols/4000/4078-2.sym
+++ b/symbols/4000/4078-2.sym
@@ -122,8 +122,6 @@ T 500 2800 5 10 0 0 0 0 1
 footprint=DIP14
 T 500 3200 5 10 0 0 0 0 1
 description=NOR gate with 8 inputs
-T 500 3000 5 10 0 0 0 0 1
-numslots=0
 T 400 1100 9 10 1 0 0 0 1
 4078
 T 500 3400 5 10 0 0 0 0 1
diff --git a/symbols/4000/4086-1.sym b/symbols/4000/4086-1.sym
index d840c20..10507f2 100644
--- a/symbols/4000/4086-1.sym
+++ b/symbols/4000/4086-1.sym
@@ -174,8 +174,6 @@ T 2400 3400 5 10 0 0 0 0 1
 footprint=DIP14
 T 2400 4200 5 10 0 0 0 0 1
 description=4-wide 2-input AND/OR invert gate
-T 2400 4000 5 10 0 0 0 0 1
-numslots=0
 T 2400 4400 5 10 0 0 0 0 1
 documentation=http://www.semiconductors.philips.com/acrobat/datasheets/HEF4086B_CNV_3.pdf
 T 300 0 9 10 1 0 0 0 1
diff --git a/symbols/4000/4089-1.sym b/symbols/4000/4089-1.sym
index 2f63c24..82a5f5c 100644
--- a/symbols/4000/4089-1.sym
+++ b/symbols/4000/4089-1.sym
@@ -169,7 +169,5 @@ pintype=out
 B 300 300 1000 4400 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 2000 750 5 10 0 0 0 0 1
 description=binary rate multiplier
-T 2000 1750 5 10 0 0 0 0 1
-numslots=0
 T 200 50 9 10 1 0 0 0 1
 4089
diff --git a/symbols/4000/4094-1.sym b/symbols/4000/4094-1.sym
index cd38419..1a9c440 100644
--- a/symbols/4000/4094-1.sym
+++ b/symbols/4000/4094-1.sym
@@ -168,8 +168,6 @@ pintype=out
 B 300 300 1000 4400 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 2000 750 5 10 0 0 0 0 1
 description=8-stage shift-and-store bus register
-T 2000 1750 5 10 0 0 0 0 1
-numslots=0
 T 2000 550 5 10 0 0 0 0 1
 documentation=http://www.semiconductors.philips.com/acrobat/datasheets/HEF4094B_CNV_3.pdf
 T 300 50 9 10 1 0 0 0 1
diff --git a/symbols/4000/4094-2.sym b/symbols/4000/4094-2.sym
index 2f3c087..046dbc9 100644
--- a/symbols/4000/4094-2.sym
+++ b/symbols/4000/4094-2.sym
@@ -170,8 +170,6 @@ T 300 4050 5 10 0 0 0 0 1
 footprint=DIP16
 T 300 5100 5 10 0 0 0 0 1
 description=8-stage shift-and-store bus register
-T 300 3850 5 10 0 0 0 0 1
-numslots=0
 T 300 5300 5 10 0 0 0 0 1
 documentation=http://www.semiconductors.philips.com/acrobat/datasheets/HEF4094B_CNV_3.pdf
 T 300 3650 3 10 1 0 0 0 1
diff --git a/symbols/4000/4095-1.sym b/symbols/4000/4095-1.sym
index 1fbe0f6..cb6de02 100644
--- a/symbols/4000/4095-1.sym
+++ b/symbols/4000/4095-1.sym
@@ -136,7 +136,5 @@ pintype=out
 B 300 300 1000 4000 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 2000 750 5 10 0 0 0 0 1
 description=gate JK master slave flip-flop
-T 2000 1750 5 10 0 0 0 0 1
-numslots=0
 T 300 50 9 10 1 0 0 0 1
 4095
diff --git a/symbols/4000/4096-1.sym b/symbols/4000/4096-1.sym
index a549376..15fad75 100644
--- a/symbols/4000/4096-1.sym
+++ b/symbols/4000/4096-1.sym
@@ -138,7 +138,5 @@ pintype=out
 B 300 300 1000 4000 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 1850 450 5 10 0 0 0 0 1
 description=gate JK master slave flip-flop
-T 1850 1400 5 10 0 0 0 0 1
-numslots=0
 T 300 50 9 10 1 0 0 0 1
 4096
diff --git a/symbols/4000/4097-1.sym b/symbols/4000/4097-1.sym
index 44f64ca..23f306f 100644
--- a/symbols/4000/4097-1.sym
+++ b/symbols/4000/4097-1.sym
@@ -255,7 +255,5 @@ pintype=io
 B 300 300 1000 6800 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 2000 750 5 10 0 0 0 0 1
 description=dual 1-8 analog multiplexer/demultiplexer
-T 2000 1750 5 10 0 0 0 0 1
-numslots=0
 T 300 50 9 10 1 0 0 0 1
 4097
diff --git a/symbols/4000/4099-1.sym b/symbols/4000/4099-1.sym
index 0728f78..c7f4d54 100644
--- a/symbols/4000/4099-1.sym
+++ b/symbols/4000/4099-1.sym
@@ -166,7 +166,5 @@ pintype=out
 B 300 300 1000 3600 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 2000 750 5 10 0 0 0 0 1
 description=8-bit adressable latch
-T 2000 1750 5 10 0 0 0 0 1
-numslots=0
 T 300 50 9 10 1 0 0 0 1
 4099
diff --git a/symbols/4000/4316-1.sym b/symbols/4000/4316-1.sym
index fe82bbc..123a20a 100644
--- a/symbols/4000/4316-1.sym
+++ b/symbols/4000/4316-1.sym
@@ -157,8 +157,6 @@ pintype=io
 B 300 300 1000 3600 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 2000 750 5 10 0 0 0 0 1
 description=quadruple bilateral switches
-T 2000 1950 5 10 0 0 0 0 1
-numslots=0
 T 200 50 9 10 1 0 0 0 1
 4316
 V 800 250 50 6 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
diff --git a/symbols/4000/4352-1.sym b/symbols/4000/4352-1.sym
index ef2660b..2065287 100644
--- a/symbols/4000/4352-1.sym
+++ b/symbols/4000/4352-1.sym
@@ -7,8 +7,6 @@ T 300 3650 5 10 0 0 0 0 1
 device=4352
 T 300 3850 5 10 0 0 0 0 1
 footprint=DIP18
-T 300 4050 5 10 0 0 0 0 1
-numslots=0
 T 300 4250 5 10 0 0 0 0 1
 description=dual 4-channel analog multiplexer/demultiplexer with address latch
 T 300 4450 5 10 0 0 0 0 1
diff --git a/symbols/4000/4353-1.sym b/symbols/4000/4353-1.sym
index 9ac5e83..7b2db41 100644
--- a/symbols/4000/4353-1.sym
+++ b/symbols/4000/4353-1.sym
@@ -7,8 +7,6 @@ T 300 4050 5 10 0 0 0 0 1
 device=4353
 T 300 4250 5 10 0 0 0 0 1
 footprint=DIP18
-T 300 4450 5 10 0 0 0 0 1
-numslots=0
 T 300 4650 5 10 0 0 0 0 1
 description=triple 2-channel analog multiplexer/demultiplexer with address latch
 T 300 4850 5 10 0 0 0 0 1
diff --git a/symbols/4000/4501-1.sym b/symbols/4000/4501-1.sym
index e2c1b84..db905d8 100644
--- a/symbols/4000/4501-1.sym
+++ b/symbols/4000/4501-1.sym
@@ -166,7 +166,5 @@ pintype=out
 B 300 0 1400 4200 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 300 5450 5 10 0 0 0 0 1
 description=2 NAND gates with 2 inputs, 1 OR gate with 2 inputs and complementary outputs
-T 300 5250 5 10 0 0 0 0 1
-numslots=0
 T 300 4250 9 10 1 0 0 0 1
 4501
diff --git a/symbols/4000/4502-1.sym b/symbols/4000/4502-1.sym
index 9475ebe..c9350d4 100644
--- a/symbols/4000/4502-1.sym
+++ b/symbols/4000/4502-1.sym
@@ -174,8 +174,6 @@ V 1750 2700 50 6 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 B 300 0 1400 3400 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 300 4650 5 10 0 0 0 0 1
 description=strobed hex inverting bus driver
-T 300 4450 5 10 0 0 0 0 1
-numslots=0
 T 300 4850 5 10 0 0 0 0 1
 documentation=http://www.semiconductors.philips.com/acrobat/datasheets/HEF4502B_CNV_3.pdf
 T 300 3450 9 10 1 0 0 0 1
diff --git a/symbols/4000/4503-1.sym b/symbols/4000/4503-1.sym
index e6f02ed..f2751cd 100644
--- a/symbols/4000/4503-1.sym
+++ b/symbols/4000/4503-1.sym
@@ -174,7 +174,5 @@ V 250 1500 50 6 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 B 300 0 1400 3400 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 300 4650 5 10 0 0 0 0 1
 description=hex bus driver
-T 300 4450 5 10 0 0 0 0 1
-numslots=0
 T 300 3450 9 10 1 0 0 0 1
 4503
diff --git a/symbols/4000/4504-1.sym b/symbols/4000/4504-1.sym
index d5a0678..412dead 100644
--- a/symbols/4000/4504-1.sym
+++ b/symbols/4000/4504-1.sym
@@ -157,7 +157,5 @@ pintype=out
 B 300 0 1400 3000 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 300 4450 5 10 0 0 0 0 1
 description=Hex TTL or CMOS to CMOS level converter
-T 300 4250 5 10 0 0 0 0 1
-numslots=0
 T 300 3050 9 10 1 0 0 0 1
 4504
diff --git a/symbols/4000/4510-1.sym b/symbols/4000/4510-1.sym
index 14fd034..9a7f039 100644
--- a/symbols/4000/4510-1.sym
+++ b/symbols/4000/4510-1.sym
@@ -170,7 +170,5 @@ pintype=out
 B 300 0 1400 3800 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 300 5050 5 10 0 0 0 0 1
 description=synchronous programmable BCD counter
-T 300 4850 5 10 0 0 0 0 1
-numslots=0
 T 300 3850 9 10 1 0 0 0 1
 4510
diff --git a/symbols/4000/4511-1.sym b/symbols/4000/4511-1.sym
index 933a81b..7cdbada 100644
--- a/symbols/4000/4511-1.sym
+++ b/symbols/4000/4511-1.sym
@@ -168,8 +168,6 @@ pintype=out
 B 300 0 1400 3000 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 300 4250 5 10 0 0 0 0 1
 description=BCD to 7-segment decoder
-T 300 4050 5 10 0 0 0 0 1
-numslots=0
 T 300 4450 5 10 0 0 0 0 1
 documentation=http://www.semiconductors.philips.com/acrobat/datasheets/HEF4511B_CNV_3.pdf
 T 300 3050 9 10 1 0 0 0 1
diff --git a/symbols/4000/4512-1.sym b/symbols/4000/4512-1.sym
index 4ee55ed..428f7de 100644
--- a/symbols/4000/4512-1.sym
+++ b/symbols/4000/4512-1.sym
@@ -167,8 +167,6 @@ pintype=in
 B 300 300 1600 3600 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 2600 750 5 10 0 0 0 0 1
 description=8-input multiplexer with tristate output
-T 2600 1750 5 10 0 0 0 0 1
-numslots=0
 T 2600 550 5 10 0 0 0 0 1
 documentation=http://www.semiconductors.philips.com/acrobat/datasheets/HEF4512B_CNV_3.pdf
 T 100 50 9 10 1 0 0 0 1
diff --git a/symbols/4000/4513-1.sym b/symbols/4000/4513-1.sym
index d796587..b129089 100644
--- a/symbols/4000/4513-1.sym
+++ b/symbols/4000/4513-1.sym
@@ -188,7 +188,5 @@ T 1650 300 5 8 0 1 0 8 1
 pintype=out
 }
 B 300 0 1400 3400 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
-T 300 4450 5 10 0 0 0 0 1
-numslots=0
 T 300 3450 9 10 1 0 0 0 1
 4513
diff --git a/symbols/4000/4514-1.sym b/symbols/4000/4514-1.sym
index e91283c..6b9c40d 100644
--- a/symbols/4000/4514-1.sym
+++ b/symbols/4000/4514-1.sym
@@ -255,8 +255,6 @@ pintype=out
 B 300 0 1400 6600 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 300 7850 5 10 0 0 0 0 1
 description=4-bit demultiplexer
-T 300 7650 5 10 0 0 0 0 1
-numslots=0
 T 300 8050 5 10 0 0 0 0 1
 documentation=http://www.semiconductors.philips.com/acrobat/datasheets/HEF4514B_CNV_3.pdf
 T 300 6650 9 10 1 0 0 0 1
diff --git a/symbols/4000/4515-1.sym b/symbols/4000/4515-1.sym
index ef7272f..a4ff6de 100644
--- a/symbols/4000/4515-1.sym
+++ b/symbols/4000/4515-1.sym
@@ -271,8 +271,6 @@ V 1750 6300 50 6 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 B 300 0 1400 6600 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 300 7850 5 10 0 0 0 0 1
 description=4-bit demultiplexer
-T 300 7650 5 10 0 0 0 0 1
-numslots=0
 T 300 8050 5 10 0 0 0 0 1
 documentation=http://www.semiconductors.philips.com/acrobat/datasheets/HEF4515B_CNV_3.pdf
 T 300 6650 9 10 1 0 0 0 1
diff --git a/symbols/4000/4516-1.sym b/symbols/4000/4516-1.sym
index eafa25a..587b7b0 100644
--- a/symbols/4000/4516-1.sym
+++ b/symbols/4000/4516-1.sym
@@ -170,8 +170,6 @@ pintype=out
 B 300 0 1400 3800 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 300 5050 5 10 0 0 0 0 1
 description=synchronous programmable binary counter
-T 300 4850 5 10 0 0 0 0 1
-numslots=0
 T 300 5250 5 10 0 0 0 0 1
 documentation=http://www.semiconductors.philips.com/acrobat/datasheets/HEF4516B_CNV_3.pdf
 T 300 3850 9 10 1 0 0 0 1
diff --git a/symbols/4000/4521-1.sym b/symbols/4000/4521-1.sym
index 6457ebc..eca3f38 100644
--- a/symbols/4000/4521-1.sym
+++ b/symbols/4000/4521-1.sym
@@ -144,8 +144,6 @@ pintype=out
 B 300 0 1400 3800 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 300 5050 5 10 0 0 0 0 1
 description=24-stage frequency divider and oscillator
-T 300 4850 5 10 0 0 0 0 1
-numslots=0
 T 300 5250 5 10 0 0 0 0 1
 documentation=http://www.semiconductors.philips.com/acrobat/datasheets/HEF4521B_CNV_3.pdf
 T 300 3850 9 10 1 0 0 0 1
diff --git a/symbols/4000/4522-1.sym b/symbols/4000/4522-1.sym
index bfa9e4b..644eed5 100644
--- a/symbols/4000/4522-1.sym
+++ b/symbols/4000/4522-1.sym
@@ -169,8 +169,6 @@ pintype=out
 B 300 0 1400 3800 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 300 5050 5 10 0 0 0 0 1
 description=programmable 4-bit BCD down counter
-T 300 4850 5 10 0 0 0 0 1
-numslots=0
 T 300 5250 5 10 0 0 0 0 1
 documentation=http://www.semiconductors.philips.com/acrobat/datasheets/HEF4522B_CNV_3.pdf
 T 300 3850 9 10 1 0 0 0 1
diff --git a/symbols/4000/4527-1.sym b/symbols/4000/4527-1.sym
index 96bf832..72e9e43 100644
--- a/symbols/4000/4527-1.sym
+++ b/symbols/4000/4527-1.sym
@@ -170,8 +170,6 @@ pintype=in
 B 300 0 1400 4200 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 300 5450 5 10 0 0 0 0 1
 description=BCD frequency divider
-T 300 5250 5 10 0 0 0 0 1
-numslots=0
 T 300 5650 5 10 0 0 0 0 1
 documentation=http://www.semiconductors.philips.com/acrobat/datasheets/HEF4527B_CNV_3.pdf
 T 300 4250 9 10 1 0 0 0 1
diff --git a/symbols/4000/4531-1.sym b/symbols/4000/4531-1.sym
index 5ca2db3..9b8d926 100644
--- a/symbols/4000/4531-1.sym
+++ b/symbols/4000/4531-1.sym
@@ -166,8 +166,6 @@ pintype=out
 B 300 0 1400 5400 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 300 6650 5 10 0 0 0 0 1
 description=13 bit parity checker
-T 300 6450 5 10 0 0 0 0 1
-numslots=0
 T 300 6850 5 10 0 0 0 0 1
 documentation=http://www.semiconductors.philips.com/acrobat/datasheets/HEF4531B_CNV_3.pdf
 T 300 5450 9 10 1 0 0 0 1
diff --git a/symbols/4000/4532-1.sym b/symbols/4000/4532-1.sym
index 3bb4b43..f144819 100644
--- a/symbols/4000/4532-1.sym
+++ b/symbols/4000/4532-1.sym
@@ -166,8 +166,6 @@ pintype=out
 B 300 0 1400 3800 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 300 5050 5 10 0 0 0 0 1
 description=8-input priority encoder
-T 300 4850 5 10 0 0 0 0 1
-numslots=0
 T 300 5250 5 10 0 0 0 0 1
 documentation=http://www.semiconductors.philips.com/acrobat/datasheets/HEF4532B_CNV_3.pdf
 T 300 3850 9 10 1 0 0 0 1
diff --git a/symbols/4000/4534-1.sym b/symbols/4000/4534-1.sym
index 6dc1604..a991063 100644
--- a/symbols/4000/4534-1.sym
+++ b/symbols/4000/4534-1.sym
@@ -216,8 +216,6 @@ pintype=out
 B 300 300 1400 4600 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 300 6150 5 10 0 0 0 0 1
 description=real time 5-decade counter
-T 300 5950 5 10 0 0 0 0 1
-numslots=0
 T 300 6350 5 10 0 0 0 0 1
 documentation=http://www.semiconductors.philips.com/acrobat/datasheets/HEF4534B_CNV_3.pdf
 T 300 4950 9 10 1 0 0 0 1
diff --git a/symbols/4000/4536-1.sym b/symbols/4000/4536-1.sym
index 9a49231..728aad8 100644
--- a/symbols/4000/4536-1.sym
+++ b/symbols/4000/4536-1.sym
@@ -168,7 +168,5 @@ pintype=in
 B 300 300 1400 3600 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 2400 750 5 10 0 0 0 0 1
 description=programmable timer
-T 2400 1750 5 10 0 0 0 0 1
-numslots=0
 T 300 50 9 10 1 0 0 0 1
 4536
diff --git a/symbols/4000/4541-1.sym b/symbols/4000/4541-1.sym
index 6b35683..ff2aa33 100644
--- a/symbols/4000/4541-1.sym
+++ b/symbols/4000/4541-1.sym
@@ -122,8 +122,6 @@ pintype=out
 B 300 0 1400 3800 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 300 5050 5 10 0 0 0 0 1
 description=programmable frequency divider / digital timer
-T 300 4850 5 10 0 0 0 0 1
-numslots=0
 T 300 5250 5 10 0 0 0 0 1
 documentation=http://www.semiconductors.philips.com/acrobat/datasheets/HEF4541B_CNV_3.pdf
 T 300 3850 9 10 1 0 0 0 1
diff --git a/symbols/4000/4543-1.sym b/symbols/4000/4543-1.sym
index afcceb7..03f14e5 100644
--- a/symbols/4000/4543-1.sym
+++ b/symbols/4000/4543-1.sym
@@ -166,8 +166,6 @@ pintype=out
 B 300 0 1400 3000 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 300 4250 5 10 0 0 0 0 1
 description=BCD to 7-segment latch/decoder/driver
-T 300 4050 5 10 0 0 0 0 1
-numslots=0
 T 300 4450 5 10 0 0 0 0 1
 documentation=http://www.semiconductors.philips.com/acrobat/datasheets/HEF4543B_CNV_3.pdf
 T 300 3050 9 10 1 0 0 0 1
diff --git a/symbols/4000/4572-1.sym b/symbols/4000/4572-1.sym
index e0ed899..718a2d5 100644
--- a/symbols/4000/4572-1.sym
+++ b/symbols/4000/4572-1.sym
@@ -172,7 +172,5 @@ V 1750 3100 50 6 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 B 300 0 1400 3400 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 300 4650 5 10 0 0 0 0 1
 description=4 NOT, 1 NAND and 1 NOR gate
-T 300 4450 5 10 0 0 0 0 1
-numslots=0
 T 300 3450 9 10 1 0 0 0 1
 4572
diff --git a/symbols/4000/4580-1.sym b/symbols/4000/4580-1.sym
index 040920a..fc5ecc2 100644
--- a/symbols/4000/4580-1.sym
+++ b/symbols/4000/4580-1.sym
@@ -254,7 +254,5 @@ T 1600 5600 5 8 0 1 0 5 1
 pintype=in
 }
 B 300 300 1900 5500 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
-T 2900 1850 5 10 0 0 0 0 1
-numslots=0
 T 100 50 9 10 1 0 0 0 1
 4580
diff --git a/symbols/4000/4582-1.sym b/symbols/4000/4582-1.sym
index f2b1c3e..db42604 100644
--- a/symbols/4000/4582-1.sym
+++ b/symbols/4000/4582-1.sym
@@ -176,7 +176,5 @@ pintype=out
 B 300 0 1400 3900 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 300 5150 5 10 0 0 0 0 1
 description=look ahead carry generator
-T 300 4950 5 10 0 0 0 0 1
-numslots=0
 T 300 3950 9 10 1 0 0 0 1
 4582
diff --git a/symbols/4000/4585-1.sym b/symbols/4000/4585-1.sym
index afddb5e..3becfcd 100644
--- a/symbols/4000/4585-1.sym
+++ b/symbols/4000/4585-1.sym
@@ -166,8 +166,6 @@ pintype=in
 B 300 300 2000 1600 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 3000 950 5 10 0 0 0 0 1
 description=4-bit magnitude comparator
-T 3000 1950 5 10 0 0 0 0 1
-numslots=0
 T 3000 750 5 10 0 0 0 0 1
 documentation=http://www.semiconductors.philips.com/acrobat/datasheets/HEF4585B_CNV_3.pdf
 T 100 50 9 10 1 0 0 0 1
diff --git a/symbols/4000/4723-1.sym b/symbols/4000/4723-1.sym
index 8bf7e64..9437a62 100644
--- a/symbols/4000/4723-1.sym
+++ b/symbols/4000/4723-1.sym
@@ -165,7 +165,5 @@ T 1650 3100 5 8 0 1 0 8 1
 pintype=out
 }
 B 300 0 1400 3400 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
-T 300 4450 5 10 0 0 0 0 1
-numslots=0
 T 300 3450 9 10 1 0 0 0 1
 4723
diff --git a/symbols/4000/4724-1.sym b/symbols/4000/4724-1.sym
index 79c7805..2c9f2ef 100644
--- a/symbols/4000/4724-1.sym
+++ b/symbols/4000/4724-1.sym
@@ -167,8 +167,6 @@ pintype=out
 B 300 0 1400 3400 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 300 4650 5 10 0 0 0 0 1
 description=8-bit latch
-T 300 4450 5 10 0 0 0 0 1
-numslots=0
 T 300 4850 5 10 0 0 0 0 1
 documentation=http://www.semiconductors.philips.com/acrobat/datasheets/HEF4724B_CNV_3.pdf
 T 300 3450 9 10 1 0 0 0 1
diff --git a/symbols/4000/4737-1.sym b/symbols/4000/4737-1.sym
index 8b23471..dbe893a 100644
--- a/symbols/4000/4737-1.sym
+++ b/symbols/4000/4737-1.sym
@@ -190,8 +190,6 @@ pintype=out
 B 300 0 1400 3400 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 300 4650 5 10 0 0 0 0 1
 description=quadruple static decade counter
-T 300 4450 5 10 0 0 0 0 1
-numslots=0
 T 300 4850 5 10 0 0 0 0 1
 documentation=http://www.semiconductors.philips.com/acrobat/datasheets/HEF4737B_V_CNV_3.pdf
 T 300 3450 9 10 1 0 0 0 1
diff --git a/symbols/74/7404-3.sym b/symbols/74/7404-3.sym
index 0b16ad1..2334f06 100644
--- a/symbols/74/7404-3.sym
+++ b/symbols/74/7404-3.sym
@@ -132,8 +132,6 @@ pinseq=2
 T 1650 1700 5 8 0 1 0 8 1
 pintype=out
 }
-T 300 3150 5 10 0 0 0 0 1
-numslots=0
 T 300 2950 5 10 0 0 0 0 1
 net=GND:7
 T 300 2750 5 10 0 0 0 0 1
diff --git a/symbols/74/74114-1.sym b/symbols/74/74114-1.sym
index 11edfd1..f8e230c 100644
--- a/symbols/74/74114-1.sym
+++ b/symbols/74/74114-1.sym
@@ -154,5 +154,3 @@ T 300 3340 9 10 1 0 0 0 1
 74114
 L 300 250 375 200 3 0 0 0 -1 -1
 L 375 200 300 150 3 0 0 0 -1 -1
-T 300 4540 5 10 0 0 0 0 1
-numslots=0
diff --git a/symbols/74/74121-1.sym b/symbols/74/74121-1.sym
index 9545b0a..3e95e9a 100644
--- a/symbols/74/74121-1.sym
+++ b/symbols/74/74121-1.sym
@@ -103,5 +103,3 @@ T 300 3150 5 10 0 0 0 0 1
 net=GND:7
 T 300 2140 9 10 1 0 0 0 1
 74121
-T 300 3340 5 10 0 0 0 0 1
-numslots=0
diff --git a/symbols/74/74122-1.sym b/symbols/74/74122-1.sym
index 6812247..d93950d 100644
--- a/symbols/74/74122-1.sym
+++ b/symbols/74/74122-1.sym
@@ -125,5 +125,3 @@ T 300 3950 5 10 0 0 0 0 1
 net=GND:7
 T 300 2940 9 10 1 0 0 0 1
 74122
-T 300 4140 5 10 0 0 0 0 1
-numslots=0
diff --git a/symbols/74/74123-1.sym b/symbols/74/74123-1.sym
index 4875a12..5da2f80 100644
--- a/symbols/74/74123-1.sym
+++ b/symbols/74/74123-1.sym
@@ -172,7 +172,5 @@ T 300 3750 5 10 0 0 0 0 1
 net=GND:8
 T 300 2740 9 12 1 0 0 0 1
 74123
-T 300 3950 5 10 0 0 0 0 1
-numslots=0
 T 300 4150 5 10 0 0 0 0 1
 documentation=http://www.semiconductors.philips.com/acrobat/datasheets/74HC_HCT123_CNV_2.pdf
diff --git a/symbols/74/74131-1.sym b/symbols/74/74131-1.sym
index 5a646e1..cb81fab 100644
--- a/symbols/74/74131-1.sym
+++ b/symbols/74/74131-1.sym
@@ -171,8 +171,6 @@ T 1700 3400 8 10 1 1 0 6 1
 refdes=U?
 T 300 3950 5 10 0 0 0 0 1
 description=3 to 8 decoder/demultiplexer with register
-T 300 4550 5 10 0 0 0 0 1
-numslots=0
 T 300 4150 5 10 0 0 0 0 1
 net=Vcc:16
 T 300 4350 5 10 0 0 0 0 1
diff --git a/symbols/74/74133-1.sym b/symbols/74/74133-1.sym
index 0584f07..5518bb5 100644
--- a/symbols/74/74133-1.sym
+++ b/symbols/74/74133-1.sym
@@ -113,8 +113,6 @@ T 1400 3100 8 10 0 0 0 0 1
 footprint=DIL 16 300
 T 1400 3300 8 10 0 0 0 0 1
 description=NAND gate with 13 inputs
-T 1400 3900 8 10 0 0 0 0 1
-numslots=0
 P 300 1300 0 1300 1 0 1
 {
 T 200 1350 5 8 1 1 0 6 1
diff --git a/symbols/74/74133-2.sym b/symbols/74/74133-2.sym
index 15878e5..c811ec1 100644
--- a/symbols/74/74133-2.sym
+++ b/symbols/74/74133-2.sym
@@ -109,8 +109,6 @@ T 1600 2000 8 10 0 0 0 0 1
 footprint=DIP16
 T 1600 2200 8 10 0 0 0 0 1
 description=NAND gate with 13 inputs
-T 1600 2400 8 10 0 0 0 0 1
-numslots=0
 P 300 1300 0 1300 1 0 1
 {
 T 200 1350 5 8 1 1 0 6 1
diff --git a/symbols/74/74137-1.sym b/symbols/74/74137-1.sym
index a240a93..4478b2e 100644
--- a/symbols/74/74137-1.sym
+++ b/symbols/74/74137-1.sym
@@ -172,8 +172,6 @@ T 1700 3400 8 10 1 1 0 6 1
 refdes=U?
 T 300 3950 5 10 0 0 0 0 1
 description=3 to 8 decoder/demultiplexer with adress latch
-T 300 4550 5 10 0 0 0 0 1
-numslots=0
 T 300 4150 5 10 0 0 0 0 1
 net=Vcc:16
 T 300 4350 5 10 0 0 0 0 1
diff --git a/symbols/74/74138-1.sym b/symbols/74/74138-1.sym
index 8cce94a..fd24b37 100644
--- a/symbols/74/74138-1.sym
+++ b/symbols/74/74138-1.sym
@@ -172,8 +172,6 @@ T 300 3250 5 10 0 0 0 0 1
 footprint=DIP16
 T 300 3450 5 10 0 0 0 0 1
 description=3 to 8 decoder/demultiplexer
-T 300 3050 5 10 0 0 0 0 1
-numslots=0
 T 300 3650 5 10 0 0 0 0 1
 net=Vcc:16
 T 300 3850 5 10 0 0 0 0 1
diff --git a/symbols/74/74138-2.sym b/symbols/74/74138-2.sym
index 9a048c7..c32deea 100644
--- a/symbols/74/74138-2.sym
+++ b/symbols/74/74138-2.sym
@@ -172,8 +172,6 @@ T 1700 3400 8 10 1 1 0 6 1
 refdes=U?
 T 300 3950 5 10 0 0 0 0 1
 description=3 to 8 decoder/demultiplexer
-T 300 4550 5 10 0 0 0 0 1
-numslots=0
 T 300 4150 5 10 0 0 0 0 1
 net=Vcc:16
 T 300 4350 5 10 0 0 0 0 1
diff --git a/symbols/74/74139-1.sym b/symbols/74/74139-1.sym
index b9b30d1..6fd0f85 100644
--- a/symbols/74/74139-1.sym
+++ b/symbols/74/74139-1.sym
@@ -172,8 +172,6 @@ T 300 3150 5 10 0 0 0 0 1
 footprint=DIP16
 T 300 3350 5 10 0 0 0 0 1
 description=2 2-to-4 decoder/demultiplexer
-T 300 3950 5 10 0 0 0 0 1
-numslots=0
 T 300 3550 5 10 0 0 0 0 1
 net=Vcc:16
 T 300 3750 5 10 0 0 0 0 1
diff --git a/symbols/74/74141-1.sym b/symbols/74/74141-1.sym
index 4217737..456f12f 100644
--- a/symbols/74/74141-1.sym
+++ b/symbols/74/74141-1.sym
@@ -172,8 +172,6 @@ T 1700 4200 8 10 1 1 0 6 1
 refdes=U?
 T 300 4750 5 10 0 0 0 0 1
 description=BCD to decimaldecoder with open collector output
-T 300 5350 5 10 0 0 0 0 1
-numslots=0
 T 300 4950 5 10 0 0 0 0 1
 net=Vcc:5
 T 300 5150 5 10 0 0 0 0 1
diff --git a/symbols/74/74145-1.sym b/symbols/74/74145-1.sym
index 695bbad..757cc61 100644
--- a/symbols/74/74145-1.sym
+++ b/symbols/74/74145-1.sym
@@ -162,8 +162,6 @@ T 1700 4200 8 10 1 1 0 6 1
 refdes=U?
 T 300 4750 5 10 0 0 0 0 1
 description=BCD to decimaldecoder with open collector outputs
-T 300 5350 5 10 0 0 0 0 1
-numslots=0
 T 300 4950 5 10 0 0 0 0 1
 net=Vcc:16
 T 300 5150 5 10 0 0 0 0 1
diff --git a/symbols/74/74147-1.sym b/symbols/74/74147-1.sym
index 6f219d2..ea87202 100644
--- a/symbols/74/74147-1.sym
+++ b/symbols/74/74147-1.sym
@@ -172,8 +172,6 @@ T 1700 4200 8 10 1 1 0 6 1
 refdes=U?
 T 300 4750 5 10 0 0 0 0 1
 description=decimal to BCD priority encoder
-T 300 5350 5 10 0 0 0 0 1
-numslots=0
 T 300 4950 5 10 0 0 0 0 1
 net=Vcc:16
 T 300 5150 5 10 0 0 0 0 1
diff --git a/symbols/74/74148-1.sym b/symbols/74/74148-1.sym
index 1096281..68b8b85 100644
--- a/symbols/74/74148-1.sym
+++ b/symbols/74/74148-1.sym
@@ -162,8 +162,6 @@ T 1700 4600 8 10 1 1 0 6 1
 refdes=U?
 T 300 5150 5 10 0 0 0 0 1
 description=binary 8 to 3 priority encoder (scalable)
-T 300 5750 5 10 0 0 0 0 1
-numslots=0
 T 300 5350 5 10 0 0 0 0 1
 net=Vcc:16
 T 300 5550 5 10 0 0 0 0 1
diff --git a/symbols/74/74150-1.sym b/symbols/74/74150-1.sym
index c9db144..600a240 100644
--- a/symbols/74/74150-1.sym
+++ b/symbols/74/74150-1.sym
@@ -251,8 +251,6 @@ T 1700 8600 8 10 1 1 0 6 1
 refdes=U?
 T 2100 7250 5 10 0 0 0 0 1
 description=16 to 1 multiplexer
-T 2100 7850 5 10 0 0 0 0 1
-numslots=0
 T 2100 7450 5 10 0 0 0 0 1
 net=Vcc:24
 T 2100 7650 5 10 0 0 0 0 1
diff --git a/symbols/74/74151-1.sym b/symbols/74/74151-1.sym
index 3f7611a..4978568 100644
--- a/symbols/74/74151-1.sym
+++ b/symbols/74/74151-1.sym
@@ -164,8 +164,6 @@ T 300 4550 5 10 0 0 0 0 1
 footprint=DIP16
 T 300 4750 5 10 0 0 0 0 1
 description=8-to-1 multiplexer
-T 300 5350 5 10 0 0 0 0 1
-numslots=0
 T 300 4950 5 10 0 0 0 0 1
 net=Vcc:16
 T 300 5150 5 10 0 0 0 0 1
diff --git a/symbols/74/74151-2.sym b/symbols/74/74151-2.sym
index 2c04576..2436986 100644
--- a/symbols/74/74151-2.sym
+++ b/symbols/74/74151-2.sym
@@ -164,8 +164,6 @@ T 1700 5000 8 10 1 1 0 6 1
 refdes=U?
 T 300 5550 5 10 0 0 0 0 1
 description=8 to 1 multiplexer
-T 300 6150 5 10 0 0 0 0 1
-numslots=0
 T 300 5750 5 10 0 0 0 0 1
 net=Vcc:16
 T 300 5950 5 10 0 0 0 0 1
diff --git a/symbols/74/74152-1.sym b/symbols/74/74152-1.sym
index 39741ae..dd51ed5 100644
--- a/symbols/74/74152-1.sym
+++ b/symbols/74/74152-1.sym
@@ -141,8 +141,6 @@ T 1700 4600 8 10 1 1 0 6 1
 refdes=U?
 T 300 5150 5 10 0 0 0 0 1
 description=8 to 1 multiplexer
-T 300 5750 5 10 0 0 0 0 1
-numslots=0
 T 300 5350 5 10 0 0 0 0 1
 net=Vcc:14
 T 300 5550 5 10 0 0 0 0 1
diff --git a/symbols/74/74153-1.sym b/symbols/74/74153-1.sym
index ab016b9..26f06b6 100644
--- a/symbols/74/74153-1.sym
+++ b/symbols/74/74153-1.sym
@@ -164,8 +164,6 @@ T 300 4450 5 10 0 0 0 0 1
 footprint=DIP16
 T 300 4650 5 10 0 0 0 0 1
 description=2 4-to-1 multiplexer
-T 300 5250 5 10 0 0 0 0 1
-numslots=0
 T 300 4850 5 10 0 0 0 0 1
 net=Vcc:16
 T 300 5050 5 10 0 0 0 0 1
diff --git a/symbols/74/74153-2.sym b/symbols/74/74153-2.sym
index 846560b..97a7e90 100644
--- a/symbols/74/74153-2.sym
+++ b/symbols/74/74153-2.sym
@@ -163,8 +163,6 @@ T 1700 5000 8 10 1 1 0 6 1
 refdes=U?
 T 300 5550 5 10 0 0 0 0 1
 description=2 4-to-1 multiplexer 
-T 300 6150 5 10 0 0 0 0 1
-numslots=0
 T 300 5750 5 10 0 0 0 0 1
 net=Vcc:16
 T 300 5950 5 10 0 0 0 0 1
diff --git a/symbols/74/74154-1.sym b/symbols/74/74154-1.sym
index 1fcee5c..5028da4 100644
--- a/symbols/74/74154-1.sym
+++ b/symbols/74/74154-1.sym
@@ -250,8 +250,6 @@ T 300 5450 5 10 0 0 0 0 1
 footprint=DIP24
 T 300 5650 5 10 0 0 0 0 1
 description=4-bit binary decoder/demultiplexer
-T 300 6250 5 10 0 0 0 0 1
-numslots=0
 T 300 5850 5 10 0 0 0 0 1
 net=Vcc:24
 T 300 6050 5 10 0 0 0 0 1
diff --git a/symbols/74/74154-2.sym b/symbols/74/74154-2.sym
index c983df3..c8e15e2 100644
--- a/symbols/74/74154-2.sym
+++ b/symbols/74/74154-2.sym
@@ -268,8 +268,6 @@ T 1700 6600 8 10 1 1 0 6 1
 refdes=U?
 T 300 7150 5 10 0 0 0 0 1
 description=4-bit binary decoder/demultiplexer
-T 300 7750 5 10 0 0 0 0 1
-numslots=0
 T 300 7350 5 10 0 0 0 0 1
 net=Vcc:24
 T 300 7550 5 10 0 0 0 0 1
diff --git a/symbols/74/74157-1.sym b/symbols/74/74157-1.sym
index 4bbc094..6194332 100644
--- a/symbols/74/74157-1.sym
+++ b/symbols/74/74157-1.sym
@@ -163,8 +163,6 @@ T 1700 4200 8 10 1 1 0 6 1
 refdes=U?
 T 300 4750 5 10 0 0 0 0 1
 description=4 2-to-1 multiplexer
-T 300 5350 5 10 0 0 0 0 1
-numslots=0
 T 300 4950 5 10 0 0 0 0 1
 net=Vcc:16
 T 300 5150 5 10 0 0 0 0 1
diff --git a/symbols/74/74158-1.sym b/symbols/74/74158-1.sym
index e82c64c..761a3e6 100644
--- a/symbols/74/74158-1.sym
+++ b/symbols/74/74158-1.sym
@@ -167,8 +167,6 @@ T 1700 4200 8 10 1 1 0 6 1
 refdes=U?
 T 300 4750 5 10 0 0 0 0 1
 description=4 2-to-1 mutliplexer
-T 300 5350 5 10 0 0 0 0 1
-numslots=0
 T 300 4950 5 10 0 0 0 0 1
 net=Vcc:16
 T 300 5150 5 10 0 0 0 0 1
diff --git a/symbols/74/74159-1.sym b/symbols/74/74159-1.sym
index 05c80fa..f885f3d 100644
--- a/symbols/74/74159-1.sym
+++ b/symbols/74/74159-1.sym
@@ -252,8 +252,6 @@ T 1700 6600 8 10 1 1 0 6 1
 refdes=U?
 T 300 7150 5 10 0 0 0 0 1
 description=4-bit binary decoder/demultiplexer with open collector outputs
-T 300 7750 5 10 0 0 0 0 1
-numslots=0
 T 300 7350 5 10 0 0 0 0 1
 net=Vcc:24
 T 300 7550 5 10 0 0 0 0 1
diff --git a/symbols/74/74160-1.sym b/symbols/74/74160-1.sym
index b51e010..b908590 100644
--- a/symbols/74/74160-1.sym
+++ b/symbols/74/74160-1.sym
@@ -164,8 +164,6 @@ V 250 200 50 6 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 V 250 1000 50 6 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 300 4350 5 10 0 0 0 0 1
 description=synchronous programmable decimal counter with clear
-T 300 4950 5 10 0 0 0 0 1
-numslots=0
 T 300 4550 5 10 0 0 0 0 1
 net=Vcc:16
 T 300 4750 5 10 0 0 0 0 1
diff --git a/symbols/74/74161-1.sym b/symbols/74/74161-1.sym
index 619e062..dfd3300 100644
--- a/symbols/74/74161-1.sym
+++ b/symbols/74/74161-1.sym
@@ -164,8 +164,6 @@ V 250 200 50 6 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 V 250 1000 50 6 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 300 4350 5 10 0 0 0 0 1
 description=synchronous 4-bit programmable binary counter
-T 300 4950 5 10 0 0 0 0 1
-numslots=0
 T 300 4550 5 10 0 0 0 0 1
 net=Vcc:16
 T 300 4750 5 10 0 0 0 0 1
diff --git a/symbols/74/74161-2.sym b/symbols/74/74161-2.sym
index 908a82c..12f1650 100644
--- a/symbols/74/74161-2.sym
+++ b/symbols/74/74161-2.sym
@@ -151,8 +151,6 @@ T 1700 3800 8 10 1 1 0 6 1
 refdes=U?
 T 300 4350 5 10 0 0 0 0 1
 description=synchronous 4-bit programmable binary counter with clear
-T 300 4950 5 10 0 0 0 0 1
-numslots=0
 T 300 4550 5 10 0 0 0 0 1
 net=Vcc:16
 T 300 4750 5 10 0 0 0 0 1
diff --git a/symbols/74/74162-1.sym b/symbols/74/74162-1.sym
index 3d33aec..a736ef8 100644
--- a/symbols/74/74162-1.sym
+++ b/symbols/74/74162-1.sym
@@ -164,8 +164,6 @@ V 250 200 50 6 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 V 250 1000 50 6 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 300 4350 5 10 0 0 0 0 1
 description=synchronous programmable decimal counter with sync. clear
-T 300 4950 5 10 0 0 0 0 1
-numslots=0
 T 300 4550 5 10 0 0 0 0 1
 net=Vcc:16
 T 300 4750 5 10 0 0 0 0 1
diff --git a/symbols/74/74163-1.sym b/symbols/74/74163-1.sym
index af5e455..1a75dc7 100644
--- a/symbols/74/74163-1.sym
+++ b/symbols/74/74163-1.sym
@@ -164,8 +164,6 @@ V 250 200 50 6 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 V 250 1000 50 6 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 300 4350 5 10 0 0 0 0 1
 description=synchronous programmable 4-bit binary counter with sync. clear
-T 300 4950 5 10 0 0 0 0 1
-numslots=0
 T 300 4550 5 10 0 0 0 0 1
 net=Vcc:16
 T 300 4750 5 10 0 0 0 0 1
diff --git a/symbols/74/74164-1.sym b/symbols/74/74164-1.sym
index 3f5821b..73703bb 100644
--- a/symbols/74/74164-1.sym
+++ b/symbols/74/74164-1.sym
@@ -141,8 +141,6 @@ T 300 3050 5 10 0 0 0 0 1
 footprint=DIP14
 T 300 3250 5 10 0 0 0 0 1
 description=8-bit serial-in/parallel-out shift register
-T 300 3850 5 10 0 0 0 0 1
-numslots=0
 T 300 3450 5 10 0 0 0 0 1
 net=Vcc:14
 T 300 3650 5 10 0 0 0 0 1
diff --git a/symbols/74/74164-2.sym b/symbols/74/74164-2.sym
index 51e674b..071ee5f 100644
--- a/symbols/74/74164-2.sym
+++ b/symbols/74/74164-2.sym
@@ -141,8 +141,6 @@ T 1700 3400 8 10 1 1 0 6 1
 refdes=U?
 T 300 3950 5 10 0 0 0 0 1
 description=8-bit serial-in/parallel-out shift register
-T 300 4550 5 10 0 0 0 0 1
-numslots=0
 T 300 4150 5 10 0 0 0 0 1
 net=Vcc:14
 T 300 4350 5 10 0 0 0 0 1
diff --git a/symbols/74/74165-1.sym b/symbols/74/74165-1.sym
index 1dce3e9..1c5ef56 100644
--- a/symbols/74/74165-1.sym
+++ b/symbols/74/74165-1.sym
@@ -167,8 +167,6 @@ T 300 5950 5 10 0 0 0 0 1
 net=GND:8
 T 300 5550 5 10 0 0 0 0 1
 description=8-bit parallel-in/serial-out shift register
-T 300 6150 5 10 0 0 0 0 1
-numslots=0
 T 300 4940 9 10 1 0 0 0 1
 74165
 V 250 200 50 6 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
diff --git a/symbols/74/74166-1.sym b/symbols/74/74166-1.sym
index 11c989f..28f0196 100644
--- a/symbols/74/74166-1.sym
+++ b/symbols/74/74166-1.sym
@@ -162,8 +162,6 @@ T 1700 5400 8 10 1 1 0 6 1
 refdes=U?
 T 300 5950 5 10 0 0 0 0 1
 description=8-bit parallel-in/serial-out shift register with clear
-T 300 6550 5 10 0 0 0 0 1
-numslots=0
 T 300 6150 5 10 0 0 0 0 1
 net=Vcc:16
 T 300 6350 5 10 0 0 0 0 1
diff --git a/symbols/74/74168-1.sym b/symbols/74/74168-1.sym
index 072937d..a5fd36e 100644
--- a/symbols/74/74168-1.sym
+++ b/symbols/74/74168-1.sym
@@ -154,8 +154,6 @@ T 1700 3800 8 10 1 1 0 6 1
 refdes=U?
 T 300 4350 5 10 0 0 0 0 1
 description=synchronous programmable decimal up/down counter
-T 300 4950 5 10 0 0 0 0 1
-numslots=0
 T 300 4550 5 10 0 0 0 0 1
 net=Vcc:16
 T 300 4750 5 10 0 0 0 0 1
diff --git a/symbols/74/74169-1.sym b/symbols/74/74169-1.sym
index 65ecb7a..52e6156 100644
--- a/symbols/74/74169-1.sym
+++ b/symbols/74/74169-1.sym
@@ -154,8 +154,6 @@ T 1700 3800 8 10 1 1 0 6 1
 refdes=U?
 T 300 4350 5 10 0 0 0 0 1
 description=synchronous programmable 4-bit up/down counter
-T 300 4950 5 10 0 0 0 0 1
-numslots=0
 T 300 4550 5 10 0 0 0 0 1
 net=Vcc:16
 T 300 4750 5 10 0 0 0 0 1
diff --git a/symbols/74/74170-1.sym b/symbols/74/74170-1.sym
index 3acdcc1..e298e21 100644
--- a/symbols/74/74170-1.sym
+++ b/symbols/74/74170-1.sym
@@ -164,8 +164,6 @@ T 1700 4200 8 10 1 1 0 6 1
 refdes=U?
 T 300 4750 5 10 0 0 0 0 1
 description=4x4bit register with open collector outputs
-T 300 5350 5 10 0 0 0 0 1
-numslots=0
 T 300 4950 5 10 0 0 0 0 1
 net=Vcc:16
 T 300 5150 5 10 0 0 0 0 1
diff --git a/symbols/74/74173-1.sym b/symbols/74/74173-1.sym
index 05c19e0..311d815 100644
--- a/symbols/74/74173-1.sym
+++ b/symbols/74/74173-1.sym
@@ -164,8 +164,6 @@ T 1700 4200 8 10 1 1 0 6 1
 refdes=U?
 T 300 4750 5 10 0 0 0 0 1
 description=4 bit D-register with tristate outputs
-T 300 5350 5 10 0 0 0 0 1
-numslots=0
 T 300 4950 5 10 0 0 0 0 1
 net=Vcc:16
 T 300 5150 5 10 0 0 0 0 1
diff --git a/symbols/74/74175-1.sym b/symbols/74/74175-1.sym
index b5fb3f6..99b3928 100644
--- a/symbols/74/74175-1.sym
+++ b/symbols/74/74175-1.sym
@@ -167,8 +167,6 @@ T 1700 3800 8 10 1 1 0 6 1
 refdes=U?
 T 300 4350 5 10 0 0 0 0 1
 description=quad D-flip-flop with clear
-T 300 4950 5 10 0 0 0 0 1
-numslots=0
 T 300 4550 5 10 0 0 0 0 1
 net=Vcc:16
 T 300 4750 5 10 0 0 0 0 1
diff --git a/symbols/74/74181-1.sym b/symbols/74/74181-1.sym
index c5d880e..dbb513a 100644
--- a/symbols/74/74181-1.sym
+++ b/symbols/74/74181-1.sym
@@ -263,8 +263,6 @@ T 1700 5800 8 10 1 1 0 6 1
 refdes=U?
 T 300 6350 5 10 0 0 0 0 1
 description=4-bit ALU/function generator
-T 300 6950 5 10 0 0 0 0 1
-numslots=0
 T 300 6550 5 10 0 0 0 0 1
 net=Vcc:24
 T 300 6750 5 10 0 0 0 0 1
diff --git a/symbols/74/74182-1.sym b/symbols/74/74182-1.sym
index 40877b5..93e2e21 100644
--- a/symbols/74/74182-1.sym
+++ b/symbols/74/74182-1.sym
@@ -171,8 +171,6 @@ T 1700 4200 8 10 1 1 0 6 1
 refdes=U?
 T 300 4750 5 10 0 0 0 0 1
 description=carry look-ahead generator
-T 300 5350 5 10 0 0 0 0 1
-numslots=0
 T 300 4950 5 10 0 0 0 0 1
 net=Vcc:16
 T 300 5150 5 10 0 0 0 0 1
diff --git a/symbols/74/74189-1.sym b/symbols/74/74189-1.sym
index 23b796a..078969d 100644
--- a/symbols/74/74189-1.sym
+++ b/symbols/74/74189-1.sym
@@ -168,8 +168,6 @@ T 300 4450 5 10 0 0 0 0 1
 footprint=DIP16
 T 300 4650 5 10 0 0 0 0 1
 description=64-bit RAM with tristate outputs
-T 300 5250 5 10 0 0 0 0 1
-numslots=0
 T 300 4850 5 10 0 0 0 0 1
 net=Vcc:16
 T 300 5050 5 10 0 0 0 0 1
diff --git a/symbols/74/74189-2.sym b/symbols/74/74189-2.sym
index 104bc2e..9d52c75 100644
--- a/symbols/74/74189-2.sym
+++ b/symbols/74/74189-2.sym
@@ -168,8 +168,6 @@ T 300 4650 5 10 0 0 0 0 1
 footprint=DIP16
 T 300 4850 5 10 0 0 0 0 1
 description=64-bit RAM with tristate inverting outputs
-T 300 5450 5 10 0 0 0 0 1
-numslots=0
 T 300 5050 5 10 0 0 0 0 1
 net=Vcc:16
 T 300 5250 5 10 0 0 0 0 1
diff --git a/symbols/74/74190-1.sym b/symbols/74/74190-1.sym
index 1420131..8133bdf 100644
--- a/symbols/74/74190-1.sym
+++ b/symbols/74/74190-1.sym
@@ -164,8 +164,6 @@ T 1700 3000 8 10 1 1 0 6 1
 refdes=U?
 T 300 3550 5 10 0 0 0 0 1
 description=synchronous 4-bit BCD up/down counter
-T 300 4150 5 10 0 0 0 0 1
-numslots=0
 T 300 3750 5 10 0 0 0 0 1
 net=Vcc:16
 T 300 3950 5 10 0 0 0 0 1
diff --git a/symbols/74/74191-1.sym b/symbols/74/74191-1.sym
index d8b575f..22e354f 100644
--- a/symbols/74/74191-1.sym
+++ b/symbols/74/74191-1.sym
@@ -165,8 +165,6 @@ T 300 2850 5 10 0 0 0 0 1
 footprint=DIP16
 T 300 3050 5 10 0 0 0 0 1
 description=synchronous 4-bit up/down binary counter
-T 300 3650 5 10 0 0 0 0 1
-numslots=0
 T 300 3250 5 10 0 0 0 0 1
 net=Vcc:16
 T 300 3450 5 10 0 0 0 0 1
diff --git a/symbols/74/74191-2.sym b/symbols/74/74191-2.sym
index a6c3a10..d89fcbf 100644
--- a/symbols/74/74191-2.sym
+++ b/symbols/74/74191-2.sym
@@ -164,8 +164,6 @@ T 1700 3000 8 10 1 1 0 6 1
 refdes=U?
 T 300 3550 5 10 0 0 0 0 1
 description=synchronous 4-bit up/down binary counter
-T 300 4150 5 10 0 0 0 0 1
-numslots=0
 T 300 3750 5 10 0 0 0 0 1
 net=Vcc:16
 T 300 3950 5 10 0 0 0 0 1
diff --git a/symbols/74/74192-1.sym b/symbols/74/74192-1.sym
index 6fb767f..2fa78af 100644
--- a/symbols/74/74192-1.sym
+++ b/symbols/74/74192-1.sym
@@ -165,8 +165,6 @@ T 1700 3400 8 10 1 1 0 6 1
 refdes=U?
 T 300 3950 5 10 0 0 0 0 1
 description=synchronous 4-bit BCD up/down counter with 2 clocks
-T 300 4550 5 10 0 0 0 0 1
-numslots=0
 T 300 4150 5 10 0 0 0 0 1
 net=Vcc:16
 T 300 4350 5 10 0 0 0 0 1
diff --git a/symbols/74/74193-1.sym b/symbols/74/74193-1.sym
index 65dee54..3498c11 100644
--- a/symbols/74/74193-1.sym
+++ b/symbols/74/74193-1.sym
@@ -165,8 +165,6 @@ T 1700 3400 8 10 1 1 0 6 1
 refdes=U?
 T 300 3950 5 10 0 0 0 0 1
 description=synchronous 4-bit up/down binary counter with 2 clocks
-T 300 4550 5 10 0 0 0 0 1
-numslots=0
 T 300 4150 5 10 0 0 0 0 1
 net=Vcc:16
 T 300 4350 5 10 0 0 0 0 1
diff --git a/symbols/74/74194-1.sym b/symbols/74/74194-1.sym
index 43edad8..328f41c 100644
--- a/symbols/74/74194-1.sym
+++ b/symbols/74/74194-1.sym
@@ -162,8 +162,6 @@ T 1700 4200 8 10 1 1 0 6 1
 refdes=U?
 T 300 4750 5 10 0 0 0 0 1
 description=4-bit bidirectional shift register
-T 300 5350 5 10 0 0 0 0 1
-numslots=0
 T 300 4950 5 10 0 0 0 0 1
 net=Vcc:16
 T 300 5150 5 10 0 0 0 0 1
diff --git a/symbols/74/74195-1.sym b/symbols/74/74195-1.sym
index 073cad6..2d7f198 100644
--- a/symbols/74/74195-1.sym
+++ b/symbols/74/74195-1.sym
@@ -162,8 +162,6 @@ T 1700 3400 8 10 1 1 0 6 1
 refdes=U?
 T 300 3950 5 10 0 0 0 0 1
 description=4-bit shift register with parallel load
-T 300 4550 5 10 0 0 0 0 1
-numslots=0
 T 300 4150 5 10 0 0 0 0 1
 net=Vcc:16
 T 300 4350 5 10 0 0 0 0 1
diff --git a/symbols/74/74196-1.sym b/symbols/74/74196-1.sym
index c50f600..b79ec2f 100644
--- a/symbols/74/74196-1.sym
+++ b/symbols/74/74196-1.sym
@@ -142,8 +142,6 @@ T 1700 3400 8 10 1 1 0 6 1
 refdes=U?
 T 300 3950 5 10 0 0 0 0 1
 description=programmable decimal counter
-T 300 4550 5 10 0 0 0 0 1
-numslots=0
 T 300 4150 5 10 0 0 0 0 1
 net=Vcc:14
 T 300 4350 5 10 0 0 0 0 1
diff --git a/symbols/74/74197-1.sym b/symbols/74/74197-1.sym
index 334109c..08d9cb2 100644
--- a/symbols/74/74197-1.sym
+++ b/symbols/74/74197-1.sym
@@ -142,8 +142,6 @@ T 1700 3400 8 10 1 1 0 6 1
 refdes=U?
 T 300 3950 5 10 0 0 0 0 1
 description=programmable 4-bit binary counter
-T 300 4550 5 10 0 0 0 0 1
-numslots=0
 T 300 4150 5 10 0 0 0 0 1
 net=Vcc:14
 T 300 4350 5 10 0 0 0 0 1
diff --git a/symbols/74/74238-1.sym b/symbols/74/74238-1.sym
index c461c44..08b2764 100644
--- a/symbols/74/74238-1.sym
+++ b/symbols/74/74238-1.sym
@@ -164,8 +164,6 @@ T 1700 3400 8 10 1 1 0 6 1
 refdes=U?
 T 300 3950 8 10 0 0 0 0 1
 description=3 to 8 decoder/demultiplexer; noninverting
-T 300 4550 8 10 0 0 0 0 1
-numslots=0
 T 300 4150 8 10 0 0 0 0 1
 net=Vcc:16
 T 300 4350 8 10 0 0 0 0 1
diff --git a/symbols/74/74240-1.sym b/symbols/74/74240-1.sym
index c88f393..7fc24e4 100644
--- a/symbols/74/74240-1.sym
+++ b/symbols/74/74240-1.sym
@@ -216,8 +216,6 @@ T 300 3350 5 10 0 0 0 0 1
 footprint=DIP20
 T 300 3550 5 10 0 0 0 0 1
 description=octal inverting buffer (tristate)
-T 300 4150 5 10 0 0 0 0 1
-numslots=0
 T 300 3750 5 10 0 0 0 0 1
 net=Vcc:20
 T 300 3950 5 10 0 0 0 0 1
diff --git a/symbols/74/74243-1.sym b/symbols/74/74243-1.sym
index 04d9111..5830883 100644
--- a/symbols/74/74243-1.sym
+++ b/symbols/74/74243-1.sym
@@ -119,8 +119,6 @@ T 300 2350 5 10 0 0 0 0 1
 footprint=DIP14
 T 300 2550 5 10 0 0 0 0 1
 description=quad transceiver (tristate)
-T 300 3150 5 10 0 0 0 0 1
-numslots=0
 T 300 2750 5 10 0 0 0 0 1
 net=Vcc:14
 T 300 2950 5 10 0 0 0 0 1
diff --git a/symbols/74/74244-1.sym b/symbols/74/74244-1.sym
index fc15006..e014461 100644
--- a/symbols/74/74244-1.sym
+++ b/symbols/74/74244-1.sym
@@ -208,8 +208,6 @@ T 300 3350 5 10 0 0 0 0 1
 footprint=DIP20
 T 300 3550 5 10 0 0 0 0 1
 description=octal buffer/line driver (tristate)
-T 300 4150 5 10 0 0 0 0 1
-numslots=0
 T 300 3750 5 10 0 0 0 0 1
 net=Vcc:20
 T 300 3950 5 10 0 0 0 0 1
diff --git a/symbols/74/74245-1.sym b/symbols/74/74245-1.sym
index 3f1d494..5120d1b 100644
--- a/symbols/74/74245-1.sym
+++ b/symbols/74/74245-1.sym
@@ -207,8 +207,6 @@ T 300 3550 5 10 0 0 0 0 1
 footprint=DIP20
 T 300 3750 5 10 0 0 0 0 1
 description=octal transceiver (tristate)
-T 300 4350 5 10 0 0 0 0 1
-numslots=0
 T 300 3950 5 10 0 0 0 0 1
 net=Vcc:20
 T 300 4150 5 10 0 0 0 0 1
diff --git a/symbols/74/74257-1.sym b/symbols/74/74257-1.sym
index 6598951..b10c8f4 100644
--- a/symbols/74/74257-1.sym
+++ b/symbols/74/74257-1.sym
@@ -163,8 +163,6 @@ T 1700 4200 8 10 1 1 0 6 1
 refdes=U?
 T 300 4750 5 10 0 0 0 0 1
 description=4 2-to-1 multiplexer with tristate outputs
-T 300 5350 5 10 0 0 0 0 1
-numslots=0
 T 300 4950 5 10 0 0 0 0 1
 net=Vcc:16
 T 300 5150 5 10 0 0 0 0 1
diff --git a/symbols/74/74259-1.sym b/symbols/74/74259-1.sym
index 67ddde1..87cb7d9 100644
--- a/symbols/74/74259-1.sym
+++ b/symbols/74/74259-1.sym
@@ -166,8 +166,6 @@ T 300 4750 5 10 0 0 0 0 1
 footprint=DIP16
 T 300 4950 5 10 0 0 0 0 1
 description=8 bit addressable latch
-T 300 5550 5 10 0 0 0 0 1
-numslots=0
 T 300 5150 5 10 0 0 0 0 1
 net=Vcc:16
 T 300 5350 5 10 0 0 0 0 1
diff --git a/symbols/74/74273-1.sym b/symbols/74/74273-1.sym
index e5be2b3..1c9222f 100644
--- a/symbols/74/74273-1.sym
+++ b/symbols/74/74273-1.sym
@@ -207,8 +207,6 @@ T 300 3850 5 10 0 0 0 0 1
 footprint=DIP20
 T 300 4050 5 10 0 0 0 0 1
 description=octal D-type flip-flop with clear
-T 300 4650 5 10 0 0 0 0 1
-numslots=0
 T 300 4250 5 10 0 0 0 0 1
 net=Vcc:20
 T 300 4450 5 10 0 0 0 0 1
diff --git a/symbols/74/74280-1.sym b/symbols/74/74280-1.sym
index 6be7cc6..72a1256 100644
--- a/symbols/74/74280-1.sym
+++ b/symbols/74/74280-1.sym
@@ -129,8 +129,6 @@ T 300 3150 5 10 0 0 0 0 1
 footprint=DIP14
 T 300 3350 5 10 0 0 0 0 1
 description=9-bit parity generater/tester
-T 300 3950 5 10 0 0 0 0 1
-numslots=0
 T 300 3550 5 10 0 0 0 0 1
 net=Vcc:14
 T 300 3750 5 10 0 0 0 0 1
diff --git a/symbols/74/74283-1.sym b/symbols/74/74283-1.sym
index ff06924..18a5a6a 100644
--- a/symbols/74/74283-1.sym
+++ b/symbols/74/74283-1.sym
@@ -162,8 +162,6 @@ T 1700 3800 8 10 1 1 0 6 1
 refdes=U?
 T 300 4350 5 10 0 0 0 0 1
 description=4-bit full adder
-T 300 4950 5 10 0 0 0 0 1
-numslots=0
 T 300 4550 5 10 0 0 0 0 1
 net=Vcc:16
 T 300 4750 5 10 0 0 0 0 1
diff --git a/symbols/74/74299-1.sym b/symbols/74/74299-1.sym
index fca4255..ae78730 100644
--- a/symbols/74/74299-1.sym
+++ b/symbols/74/74299-1.sym
@@ -129,8 +129,6 @@ T 300 4350 5 10 0 0 0 0 1
 footprint=DIP20
 T 300 4550 5 10 0 0 0 0 1
 description=8-bit universal shift/storage registers
-T 300 5150 5 10 0 0 0 0 1
-numslots=0
 T 300 4750 5 10 0 0 0 0 1
 net=Vcc:20
 T 300 4950 5 10 0 0 0 0 1
diff --git a/symbols/74/7430-1.sym b/symbols/74/7430-1.sym
index 0035db3..e3f1d68 100644
--- a/symbols/74/7430-1.sym
+++ b/symbols/74/7430-1.sym
@@ -119,7 +119,5 @@ T 600 100 5 10 0 0 0 0 1
 footprint=DIP14
 T 600 300 5 10 0 0 0 0 1
 description=NAND gate with 8 inputs
-T 600 1100 5 10 0 0 0 0 1
-numslots=0
 T 600 2100 5 10 0 0 0 0 1
 documentation=http://www.semiconductors.philips.com/acrobat/datasheets/74HC_HCT30_CNV_2.pdf
diff --git a/symbols/74/7430-2.sym b/symbols/74/7430-2.sym
index c86b255..f73c44d 100644
--- a/symbols/74/7430-2.sym
+++ b/symbols/74/7430-2.sym
@@ -127,7 +127,5 @@ T 500 0 5 10 0 0 0 0 1
 footprint=DIP14
 T 500 200 5 10 0 0 0 0 1
 description=NAND gate with 8 inputs
-T 500 1000 5 10 0 0 0 0 1
-numslots=0
 T 900 1200 5 10 0 0 0 0 1
 documentation=http://www.semiconductors.philips.com/acrobat/datasheets/74HC_HCT30_CNV_2.pdf
diff --git a/symbols/74/7431-1.sym b/symbols/74/7431-1.sym
index 571985d..858d356 100644
--- a/symbols/74/7431-1.sym
+++ b/symbols/74/7431-1.sym
@@ -172,5 +172,3 @@ T 300 4150 5 10 0 0 0 0 1
 net=Vcc:16
 T 300 4350 5 10 0 0 0 0 1
 net=GND:8
-T 300 4550 5 10 0 0 0 0 1
-numslots=0
diff --git a/symbols/74/74367-1.sym b/symbols/74/74367-1.sym
index 9bfe88e..5531d23 100644
--- a/symbols/74/74367-1.sym
+++ b/symbols/74/74367-1.sym
@@ -165,8 +165,6 @@ T 300 2850 5 10 0 0 0 0 1
 footprint=DIP16
 T 300 3050 5 10 0 0 0 0 1
 description=hex buffer/line driver (tristate)
-T 300 3650 5 10 0 0 0 0 1
-numslots=0
 T 300 3250 5 10 0 0 0 0 1
 net=Vcc:16
 T 300 3450 5 10 0 0 0 0 1
diff --git a/symbols/74/74373-1.sym b/symbols/74/74373-1.sym
index 36710e0..449ffea 100644
--- a/symbols/74/74373-1.sym
+++ b/symbols/74/74373-1.sym
@@ -207,8 +207,6 @@ T 300 3850 5 10 0 0 0 0 1
 footprint=DIP20
 T 300 4050 5 10 0 0 0 0 1
 description=8-bit D-type latch with tristate outputs
-T 300 4650 5 10 0 0 0 0 1
-numslots=0
 T 300 4250 5 10 0 0 0 0 1
 net=Vcc:20
 T 300 4450 5 10 0 0 0 0 1
diff --git a/symbols/74/74374-1.sym b/symbols/74/74374-1.sym
index 6500542..613e6a3 100644
--- a/symbols/74/74374-1.sym
+++ b/symbols/74/74374-1.sym
@@ -207,8 +207,6 @@ T 300 3650 5 10 0 0 0 0 1
 footprint=DIP20
 T 300 3850 5 10 0 0 0 0 1
 description=8-bit D-type register with tristate outputs
-T 300 4450 5 10 0 0 0 0 1
-numslots=0
 T 300 4050 5 10 0 0 0 0 1
 net=Vcc:20
 T 300 4250 5 10 0 0 0 0 1
diff --git a/symbols/74/74377-1.sym b/symbols/74/74377-1.sym
index 785e1d8..811f795 100644
--- a/symbols/74/74377-1.sym
+++ b/symbols/74/74377-1.sym
@@ -207,8 +207,6 @@ T 300 3650 5 10 0 0 0 0 1
 footprint=DIP20
 T 300 3850 5 10 0 0 0 0 1
 description=8 D-type flip-flops with enable
-T 300 4450 5 10 0 0 0 0 1
-numslots=0
 T 300 4050 5 10 0 0 0 0 1
 net=Vcc:20
 T 300 4250 5 10 0 0 0 0 1
diff --git a/symbols/74/74379-1.sym b/symbols/74/74379-1.sym
index bf71b89..00ad3e4 100644
--- a/symbols/74/74379-1.sym
+++ b/symbols/74/74379-1.sym
@@ -167,8 +167,6 @@ T 1700 3800 8 10 1 1 0 6 1
 refdes=U?
 T 300 4350 5 10 0 0 0 0 1
 description=4 D-type flip-flops with complementary outputs
-T 300 4950 5 10 0 0 0 0 1
-numslots=0
 T 300 4550 5 10 0 0 0 0 1
 net=Vcc:16
 T 300 4750 5 10 0 0 0 0 1
diff --git a/symbols/74/74393-1.sym b/symbols/74/74393-1.sym
index 8a60d1c..5d415fd 100644
--- a/symbols/74/74393-1.sym
+++ b/symbols/74/74393-1.sym
@@ -142,8 +142,6 @@ pintype=out
 }
 T 300 3950 5 10 0 0 0 0 1
 description=2 4-bit binary counter with clear
-T 300 4550 5 10 0 0 0 0 1
-numslots=0
 T 300 4150 5 10 0 0 0 0 1
 net=Vcc:14
 T 300 4350 5 10 0 0 0 0 1
diff --git a/symbols/74/7442-1.sym b/symbols/74/7442-1.sym
index 4c660b4..eba832b 100644
--- a/symbols/74/7442-1.sym
+++ b/symbols/74/7442-1.sym
@@ -168,7 +168,5 @@ T 300 4950 5 10 0 0 0 0 1
 net=Vcc:16
 T 300 5150 5 10 0 0 0 0 1
 net=GND:8
-T 300 5350 5 10 0 0 0 0 1
-numslots=0
 T 300 5550 5 10 0 0 0 0 1
 documentation=http://www-s.ti.com/sc/ds/sn74hc42.pdf
diff --git a/symbols/74/7445-1.sym b/symbols/74/7445-1.sym
index ef356a3..82f0400 100644
--- a/symbols/74/7445-1.sym
+++ b/symbols/74/7445-1.sym
@@ -168,5 +168,3 @@ T 300 4950 5 10 0 0 0 0 1
 net=Vcc:16
 T 300 5150 5 10 0 0 0 0 1
 net=GND:8
-T 300 5350 5 10 0 0 0 0 1
-numslots=0
diff --git a/symbols/74/7446-1.sym b/symbols/74/7446-1.sym
index eb7f9c7..b5e514c 100644
--- a/symbols/74/7446-1.sym
+++ b/symbols/74/7446-1.sym
@@ -159,8 +159,6 @@ T 300 3750 5 10 0 0 0 0 1
 net=Vcc:16
 T 300 3950 5 10 0 0 0 0 1
 net=GND:8
-T 300 4150 5 10 0 0 0 0 1
-numslots=0
 P 0 1000 200 1000 1 0 0
 {
 T 200 1050 5 8 1 1 0 6 1
diff --git a/symbols/74/7447-1.sym b/symbols/74/7447-1.sym
index 49c649d..989af0a 100644
--- a/symbols/74/7447-1.sym
+++ b/symbols/74/7447-1.sym
@@ -159,8 +159,6 @@ T 300 3750 5 10 0 0 0 0 1
 net=Vcc:16
 T 300 3950 5 10 0 0 0 0 1
 net=GND:8
-T 300 4150 5 10 0 0 0 0 1
-numslots=0
 P 0 1000 200 1000 1 0 0
 {
 T 200 1050 5 8 1 1 0 6 1
diff --git a/symbols/74/7448-1.sym b/symbols/74/7448-1.sym
index 35cbfe7..a8b5c01 100644
--- a/symbols/74/7448-1.sym
+++ b/symbols/74/7448-1.sym
@@ -147,8 +147,6 @@ T 300 3750 5 10 0 0 0 0 1
 net=Vcc:16
 T 300 3950 5 10 0 0 0 0 1
 net=GND:8
-T 300 4150 5 10 0 0 0 0 1
-numslots=0
 P 0 200 200 200 1 0 0
 {
 T 200 250 5 8 1 1 0 6 1
diff --git a/symbols/74/7451-1.sym b/symbols/74/7451-1.sym
index 885f31e..51ea15b 100644
--- a/symbols/74/7451-1.sym
+++ b/symbols/74/7451-1.sym
@@ -211,5 +211,3 @@ V 1360 850 20 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 L 1380 850 1460 850 3 0 0 0 -1 -1
 T 300 5750 5 10 0 0 0 0 1
 comment=Attention: on some devices the pins 12 and 11 are not connected
-T 300 5950 5 10 0 0 0 0 1
-numslots=0
diff --git a/symbols/74/74520-1.sym b/symbols/74/74520-1.sym
index ba6342f..58c7d98 100644
--- a/symbols/74/74520-1.sym
+++ b/symbols/74/74520-1.sym
@@ -236,5 +236,3 @@ description=8-bit comparator with totem pole output
 T 1805 3650 3 10 1 0 0 0 1
 74520
 V 2150 3300 50 6 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
-T 300 5300 5 10 0 0 0 0 1
-numslots=0
diff --git a/symbols/74/74520-2.sym b/symbols/74/74520-2.sym
index b6cf2e1..26e8ce3 100644
--- a/symbols/74/74520-2.sym
+++ b/symbols/74/74520-2.sym
@@ -214,5 +214,3 @@ T 300 4650 5 10 0 0 0 0 1
 net=GND:10
 T 305 3650 3 10 1 0 0 0 1
 74520
-T 300 4850 5 10 0 0 0 0 1
-numslots=0
diff --git a/symbols/74/74520-3.sym b/symbols/74/74520-3.sym
index 3868c2c..639dbbc 100644
--- a/symbols/74/74520-3.sym
+++ b/symbols/74/74520-3.sym
@@ -214,5 +214,3 @@ T 300 4850 5 10 0 0 0 0 1
 net=GND:10
 T 305 3850 3 10 1 0 0 0 1
 74520
-T 300 5050 5 10 0 0 0 0 1
-numslots=0
diff --git a/symbols/74/7454-1.sym b/symbols/74/7454-1.sym
index a9ebd96..6c2841a 100644
--- a/symbols/74/7454-1.sym
+++ b/symbols/74/7454-1.sym
@@ -180,5 +180,3 @@ L 1480 3000 1550 3000 3 0 0 0 -1 -1
 L 1520 3000 1530 3000 3 0 0 0 -1 -1
 L 1010 2920 1130 2920 3 0 0 0 -1 -1
 L 1010 3080 1130 3080 3 0 0 0 -1 -1
-T 300 6750 5 10 0 0 0 0 1
-numslots=0
diff --git a/symbols/74/74541-1.sym b/symbols/74/74541-1.sym
index 0b10454..7aa5573 100644
--- a/symbols/74/74541-1.sym
+++ b/symbols/74/74541-1.sym
@@ -208,8 +208,6 @@ T 300 3350 5 10 0 0 0 0 1
 footprint=DIP20
 T 300 3550 5 10 0 0 0 0 1
 description=8-bit line driver
-T 300 4150 5 10 0 0 0 0 1
-numslots=0
 T 300 3750 5 10 0 0 0 0 1
 net=Vcc:20
 T 300 3950 5 10 0 0 0 0 1
diff --git a/symbols/74/7455-1.sym b/symbols/74/7455-1.sym
index 895451c..9678031 100644
--- a/symbols/74/7455-1.sym
+++ b/symbols/74/7455-1.sym
@@ -149,5 +149,3 @@ L 950 2200 950 1875 3 0 0 0 -1 -1
 L 1100 800 1100 1400 3 0 0 0 -1 -1
 L 1100 1400 950 1400 3 0 0 0 -1 -1
 L 950 1400 950 1725 3 0 0 0 -1 -1
-T 300 4950 5 10 0 0 0 0 1
-numslots=0
diff --git a/symbols/74/7456-1.sym b/symbols/74/7456-1.sym
index 6d998ad..3d67e2d 100644
--- a/symbols/74/7456-1.sym
+++ b/symbols/74/7456-1.sym
@@ -86,5 +86,3 @@ L 300 650 375 600 3 0 0 0 -1 -1
 L 375 600 300 550 3 0 0 0 -1 -1
 L 375 1000 300 950 3 0 0 0 -1 -1
 L 375 1000 300 1050 3 0 0 0 -1 -1
-T 300 2550 5 10 0 0 0 0 1
-numslots=0
diff --git a/symbols/74/7457-1.sym b/symbols/74/7457-1.sym
index 2591dd8..f46b778 100644
--- a/symbols/74/7457-1.sym
+++ b/symbols/74/7457-1.sym
@@ -86,5 +86,3 @@ L 300 650 375 600 3 0 0 0 -1 -1
 L 375 600 300 550 3 0 0 0 -1 -1
 L 375 1000 300 950 3 0 0 0 -1 -1
 L 375 1000 300 1050 3 0 0 0 -1 -1
-T 300 2550 5 10 0 0 0 0 1
-numslots=0
diff --git a/symbols/74/74573-1.sym b/symbols/74/74573-1.sym
index 43fdb1b..aff0afd 100644
--- a/symbols/74/74573-1.sym
+++ b/symbols/74/74573-1.sym
@@ -213,8 +213,6 @@ T 300 3950 5 10 0 0 0 0 1
 footprint=DIP20
 T 300 4150 5 10 0 0 0 0 1
 description=8-bit D-type latch with tristate outputs
-T 300 4950 5 10 0 0 0 0 1
-numslots=0
 T 300 3540 9 10 1 0 0 0 1
 74573
 T 300 5150 5 10 0 0 0 0 1
diff --git a/symbols/74/74574-1.sym b/symbols/74/74574-1.sym
index 5f02018..6dc3f07 100644
--- a/symbols/74/74574-1.sym
+++ b/symbols/74/74574-1.sym
@@ -207,8 +207,6 @@ T 300 3650 5 10 0 0 0 0 1
 footprint=DIP20
 T 300 3850 5 10 0 0 0 0 1
 description=8-bit D-type latch with tristate output
-T 300 4450 5 10 0 0 0 0 1
-numslots=0
 T 300 4050 5 10 0 0 0 0 1
 net=Vcc:20
 T 300 4250 5 10 0 0 0 0 1
diff --git a/symbols/74/74595-1.sym b/symbols/74/74595-1.sym
index 47cdc18..b326db9 100644
--- a/symbols/74/74595-1.sym
+++ b/symbols/74/74595-1.sym
@@ -170,8 +170,6 @@ T 300 3050 5 10 0 0 0 0 1
 footprint=DIP16
 T 300 3850 5 10 0 0 0 0 1
 description=8-bit serial shift register with 3-state output register
-T 300 3250 5 10 0 0 0 0 1
-numslots=0
 T 300 3450 5 10 0 0 0 0 1
 net=Vcc:16
 T 300 3650 5 10 0 0 0 0 1
diff --git a/symbols/74/74673A-1.sym b/symbols/74/74673A-1.sym
index 287be31..9da92e0 100644
--- a/symbols/74/74673A-1.sym
+++ b/symbols/74/74673A-1.sym
@@ -254,8 +254,6 @@ T 300 6150 5 10 0 0 0 0 1
 footprint=DIP24
 T 300 6350 5 10 0 0 0 0 1
 description=16-bit serial-in/parallel-out shift register
-T 300 6950 5 10 0 0 0 0 1
-numslots=0
 T 300 6550 5 10 0 0 0 0 1
 net=Vcc:24
 T 300 6750 5 10 0 0 0 0 1
diff --git a/symbols/74/74673A-2.sym b/symbols/74/74673A-2.sym
index d3a99c7..52b0c12 100644
--- a/symbols/74/74673A-2.sym
+++ b/symbols/74/74673A-2.sym
@@ -253,8 +253,6 @@ T 300 7050 5 10 0 0 0 0 1
 footprint=DIP24
 T 300 7250 5 10 0 0 0 0 1
 description=16-bit serial-in/parallel-out shift register
-T 300 7850 5 10 0 0 0 0 1
-numslots=0
 T 300 7450 5 10 0 0 0 0 1
 net=Vcc:24
 T 300 7650 5 10 0 0 0 0 1
diff --git a/symbols/74/74684-1.sym b/symbols/74/74684-1.sym
index 26d08ee..1116dca 100644
--- a/symbols/74/74684-1.sym
+++ b/symbols/74/74684-1.sym
@@ -214,8 +214,6 @@ T 300 5850 5 10 0 0 0 0 1
 footprint=DIP20
 T 300 6050 5 10 0 0 0 0 1
 description=8-bit comparator
-T 300 6650 5 10 0 0 0 0 1
-numslots=0
 T 300 5440 9 10 1 0 0 0 1
 74684
 T 300 7050 5 10 0 0 0 0 1
diff --git a/symbols/74/74688-1.sym b/symbols/74/74688-1.sym
index 79bd85d..caa2aec 100644
--- a/symbols/74/74688-1.sym
+++ b/symbols/74/74688-1.sym
@@ -214,8 +214,6 @@ T 300 6050 5 10 0 0 0 0 1
 footprint=DIP20
 T 300 6250 5 10 0 0 0 0 1
 description=8-bit comparator
-T 300 6850 5 10 0 0 0 0 1
-numslots=0
 T 300 5640 9 10 1 0 0 0 1
 74688
 T 300 7250 5 10 0 0 0 0 1
diff --git a/symbols/74/74688-2.sym b/symbols/74/74688-2.sym
index 617206f..b0ff3b7 100644
--- a/symbols/74/74688-2.sym
+++ b/symbols/74/74688-2.sym
@@ -232,5 +232,3 @@ T 2500 2400 8 10 0 0 0 0 1
 footprint=DIP20
 T 2500 2700 8 10 0 0 0 0 1
 author=Terry J Porter
-T 2500 2100 8 10 0 0 0 0 1
-numslots=0
diff --git a/symbols/74/7472-1.sym b/symbols/74/7472-1.sym
index 39eebed..2e7ee79 100644
--- a/symbols/74/7472-1.sym
+++ b/symbols/74/7472-1.sym
@@ -140,5 +140,3 @@ T 300 3740 9 10 1 0 0 0 1
 7472
 L 300 250 375 200 3 0 0 0 -1 -1
 L 375 200 300 150 3 0 0 0 -1 -1
-T 300 4950 5 10 0 0 0 0 1
-numslots=0
diff --git a/symbols/74/7478-1.sym b/symbols/74/7478-1.sym
index 50e91aa..8bb8189 100644
--- a/symbols/74/7478-1.sym
+++ b/symbols/74/7478-1.sym
@@ -154,5 +154,3 @@ L 300 250 375 200 3 0 0 0 -1 -1
 L 375 200 300 150 3 0 0 0 -1 -1
 V 1750 1400 50 6 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 V 1750 2600 50 6 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
-T 300 4550 5 10 0 0 0 0 1
-numslots=0
diff --git a/symbols/74/7483-1.sym b/symbols/74/7483-1.sym
index 55a47ac..fe8c051 100644
--- a/symbols/74/7483-1.sym
+++ b/symbols/74/7483-1.sym
@@ -168,5 +168,3 @@ T 300 4750 5 10 0 0 0 0 1
 net=GND:12
 T 300 3740 9 10 1 0 0 0 1
 7483
-T 300 4950 5 10 0 0 0 0 1
-numslots=0
diff --git a/symbols/74/7485-1.sym b/symbols/74/7485-1.sym
index cc19a59..0f74457 100644
--- a/symbols/74/7485-1.sym
+++ b/symbols/74/7485-1.sym
@@ -168,7 +168,5 @@ T 300 5950 5 10 0 0 0 0 1
 net=GND:8
 T 300 4940 9 10 1 0 0 0 1
 7485
-T 300 6150 5 10 0 0 0 0 1
-numslots=0
 T 300 6350 5 10 0 0 0 0 1
 documentation=http://www.semiconductors.philips.com/acrobat/datasheets/74HC_HCT85_CNV_2.pdf
diff --git a/symbols/74/7490-1.sym b/symbols/74/7490-1.sym
index 84688d9..04ca5fd 100644
--- a/symbols/74/7490-1.sym
+++ b/symbols/74/7490-1.sym
@@ -130,5 +130,3 @@ L 300 1850 375 1800 3 0 0 0 -1 -1
 L 375 1800 300 1750 3 0 0 0 -1 -1
 L 375 2200 300 2250 3 0 0 0 -1 -1
 L 375 2200 300 2150 3 0 0 0 -1 -1
-T 300 3750 5 10 0 0 0 0 1
-numslots=0
diff --git a/symbols/74/7491-1.sym b/symbols/74/7491-1.sym
index 3086a8a..3c1519b 100644
--- a/symbols/74/7491-1.sym
+++ b/symbols/74/7491-1.sym
@@ -72,5 +72,3 @@ T 300 1340 9 10 1 0 0 0 1
 7491
 L 375 200 300 250 3 0 0 0 -1 -1
 L 375 200 300 150 3 0 0 0 -1 -1
-T 300 2550 5 10 0 0 0 0 1
-numslots=0
diff --git a/symbols/74/7492-1.sym b/symbols/74/7492-1.sym
index 8f9d85e..2751a1e 100644
--- a/symbols/74/7492-1.sym
+++ b/symbols/74/7492-1.sym
@@ -108,5 +108,3 @@ L 375 1000 300 1050 3 0 0 0 -1 -1
 L 375 1000 300 950 3 0 0 0 -1 -1
 L 375 1400 300 1350 3 0 0 0 -1 -1
 L 375 1400 300 1450 3 0 0 0 -1 -1
-T 300 2950 5 10 0 0 0 0 1
-numslots=0
diff --git a/symbols/74/7493-1.sym b/symbols/74/7493-1.sym
index 0cf150a..3cc2b63 100644
--- a/symbols/74/7493-1.sym
+++ b/symbols/74/7493-1.sym
@@ -108,7 +108,5 @@ L 375 1000 300 1050 3 0 0 0 -1 -1
 L 375 1000 300 950 3 0 0 0 -1 -1
 L 375 1400 300 1350 3 0 0 0 -1 -1
 L 375 1400 300 1450 3 0 0 0 -1 -1
-T 300 2950 5 10 0 0 0 0 1
-numslots=0
 T 300 3150 5 10 0 0 0 0 1
 documentation=http://www.semiconductors.philips.com/acrobat/datasheets/74HC_HCT93_CNV_2.pdf
diff --git a/symbols/74/7495-1.sym b/symbols/74/7495-1.sym
index 6e3ebe1..46fa309 100644
--- a/symbols/74/7495-1.sym
+++ b/symbols/74/7495-1.sym
@@ -141,8 +141,6 @@ L 375 600 300 550 3 0 0 0 -1 -1
 L 375 600 300 650 3 0 0 0 -1 -1
 T 300 3340 9 10 1 0 0 0 1
 7495
-T 300 4550 5 10 0 0 0 0 1
-numslots=0
 T 300 4750 5 10 0 0 0 0 1
 symversion=1.0
 P 0 1400 300 1400 1 0 0
diff --git a/symbols/74/7495-2.sym b/symbols/74/7495-2.sym
index 445a65e..e32206e 100644
--- a/symbols/74/7495-2.sym
+++ b/symbols/74/7495-2.sym
@@ -152,5 +152,3 @@ pinlabel=SER
 T 350 3000 5 8 0 1 0 2 1
 pintype=in
 }
-T 300 4550 5 10 0 0 0 0 1
-numslots=0
diff --git a/symbols/74/7496-1.sym b/symbols/74/7496-1.sym
index 627921c..f9b7157 100644
--- a/symbols/74/7496-1.sym
+++ b/symbols/74/7496-1.sym
@@ -171,5 +171,3 @@ T 300 3740 9 10 1 0 0 0 1
 7496
 L 375 3000 300 3050 3 0 0 0 -1 -1
 L 375 3000 300 2950 3 0 0 0 -1 -1
-T 300 4950 5 10 0 0 0 0 1
-numslots=0
diff --git a/symbols/74/7497-1.sym b/symbols/74/7497-1.sym
index 27b3436..e48a2bb 100644
--- a/symbols/74/7497-1.sym
+++ b/symbols/74/7497-1.sym
@@ -162,8 +162,6 @@ L 1625 1400 1700 1350 3 0 0 0 -1 -1
 V 250 200 50 6 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 V 1750 1800 50 6 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 V 1750 1000 47 6 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
-T 300 4140 5 10 0 0 0 0 1
-numslots=0
 V 1750 200 50 6 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 P 1800 200 2000 200 1 0 1
 {
diff --git a/symbols/74/7497-2.sym b/symbols/74/7497-2.sym
index 72ba30a..f125371 100644
--- a/symbols/74/7497-2.sym
+++ b/symbols/74/7497-2.sym
@@ -175,5 +175,3 @@ pinlabel=\_ENo\_
 }
 V 1750 3400 47 6 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 V 250 1000 50 6 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
-T 300 5750 5 10 0 0 0 0 1
-numslots=0
diff --git a/symbols/74/74HC244-1.sym b/symbols/74/74HC244-1.sym
index 34acea3..bd094b4 100644
--- a/symbols/74/74HC244-1.sym
+++ b/symbols/74/74HC244-1.sym
@@ -208,8 +208,6 @@ T 300 3350 5 10 0 0 0 0 1
 footprint=DIP20
 T 300 3550 5 10 0 0 0 0 1
 description=octal buffer/line driver (tristate)
-T 300 4150 5 10 0 0 0 0 1
-numslots=0
 T 300 3750 5 10 0 0 0 0 1
 net=Vcc:20
 T 300 3950 5 10 0 0 0 0 1
diff --git a/symbols/74/74HC373-1.sym b/symbols/74/74HC373-1.sym
index 4b42476..8eb2aa6 100644
--- a/symbols/74/74HC373-1.sym
+++ b/symbols/74/74HC373-1.sym
@@ -207,8 +207,6 @@ T 300 3850 5 10 0 0 0 0 1
 footprint=DIP20
 T 300 4050 5 10 0 0 0 0 1
 description=8-bit D-type latch with tristate outputs
-T 300 4650 5 10 0 0 0 0 1
-numslots=0
 T 300 4250 5 10 0 0 0 0 1
 net=Vcc:20
 T 300 4450 5 10 0 0 0 0 1
diff --git a/symbols/74/74HC374-1.sym b/symbols/74/74HC374-1.sym
index 30e4432..acfc6d7 100644
--- a/symbols/74/74HC374-1.sym
+++ b/symbols/74/74HC374-1.sym
@@ -207,8 +207,6 @@ T 300 3650 5 10 0 0 0 0 1
 footprint=DIP20
 T 300 3850 5 10 0 0 0 0 1
 description=8-bit D-type register with tristate outputs
-T 300 4450 5 10 0 0 0 0 1
-numslots=0
 T 300 4050 5 10 0 0 0 0 1
 net=Vcc:20
 T 300 4250 5 10 0 0 0 0 1
diff --git a/symbols/74/74HCT245-1.sym b/symbols/74/74HCT245-1.sym
index 6a9865e..bafe27f 100644
--- a/symbols/74/74HCT245-1.sym
+++ b/symbols/74/74HCT245-1.sym
@@ -211,8 +211,6 @@ T 300 4050 5 10 0 0 0 0 1
 net=Vcc:20
 T 300 4250 5 10 0 0 0 0 1
 net=GND:10
-T 300 4450 5 10 0 0 0 0 1
-numslots=0
 T 300 3240 9 10 1 0 0 0 1
 74HCT245
 T 300 4650 5 10 0 0 0 0 1
diff --git a/symbols/74/74HCT4094-1.sym b/symbols/74/74HCT4094-1.sym
index 483d76d..daaf2bd 100644
--- a/symbols/74/74HCT4094-1.sym
+++ b/symbols/74/74HCT4094-1.sym
@@ -172,7 +172,5 @@ T 300 4850 5 10 0 0 0 0 1
 description=8-stage shift-and-store bus register
 T 300 3650 3 10 1 0 0 0 1
 74HCT4094
-T 300 5050 5 10 0 0 0 0 1
-numslots=0
 T 300 5250 5 10 0 0 0 0 1
 documentation=http://www.semiconductors.philips.com/acrobat/datasheets/74HC_HCT4094_CNV_2.pdf
diff --git a/symbols/74/74HCT541-1.sym b/symbols/74/74HCT541-1.sym
index 1a801f0..0641b30 100644
--- a/symbols/74/74HCT541-1.sym
+++ b/symbols/74/74HCT541-1.sym
@@ -214,7 +214,5 @@ T 300 3950 5 10 0 0 0 0 1
 net=GND:10
 T 300 2950 9 10 1 0 0 0 1
 74HCT541
-T 300 4150 5 10 0 0 0 0 1
-numslots=0
 T 300 4350 5 10 0 0 0 0 1
 documentation=http://www-s.ti.com/sc/ds/sn74hct541.pdf
diff --git a/symbols/74/74power-1.sym b/symbols/74/74power-1.sym
index 44ae63f..808893e 100644
--- a/symbols/74/74power-1.sym
+++ b/symbols/74/74power-1.sym
@@ -1,8 +1,6 @@
 v 20041228 1
 L 0 200 0 800 3 0 0 0 -1 -1
 L 0 800 400 800 3 0 0 0 -1 -1
-T 200 1300 8 10 0 0 0 0 1
-numslots=0
 L 0 200 400 200 3 0 0 0 -1 -1
 P 200 200 200 -100 1 0 1
 {
diff --git a/symbols/74/9602-1.sym b/symbols/74/9602-1.sym
index 2af6d05..7602785 100644
--- a/symbols/74/9602-1.sym
+++ b/symbols/74/9602-1.sym
@@ -168,8 +168,6 @@ T 300 2950 5 10 0 0 0 0 1
 footprint=DIP16
 T 300 3150 5 10 0 0 0 0 1
 description=2 retriggerable, resetable monoflops
-T 300 3750 5 10 0 0 0 0 1
-numslots=0
 T 300 3350 5 10 0 0 0 0 1
 net=Vcc:16
 T 300 3550 5 10 0 0 0 0 1
diff --git a/symbols/allegro/3967-1.sym b/symbols/allegro/3967-1.sym
index 1bb9f79..c280c00 100644
--- a/symbols/allegro/3967-1.sym
+++ b/symbols/allegro/3967-1.sym
@@ -13,8 +13,6 @@ T 300 6350 8 10 0 0 0 0 1
 documentation=http://www.allegro.com
 T 300 6550 8 10 0 0 0 0 1
 description=microstepping driver with translator
-T 300 6750 8 10 0 0 0 0 1
-numslots=0
 P 0 4800 300 4800 1 0 0
 {
 T 200 4850 5 8 1 1 0 6 1
diff --git a/symbols/amphenol/31-71043-1.sym b/symbols/amphenol/31-71043-1.sym
index 7135700..3fc7f8d 100644
--- a/symbols/amphenol/31-71043-1.sym
+++ b/symbols/amphenol/31-71043-1.sym
@@ -72,7 +72,5 @@ T 91 1850 8 10 0 0 0 0 1
 device=31-71043
 T 700 50 9 6 1 0 180 0 1
 31-71043
-T 91 2050 8 10 0 0 0 0 1
-numslots=0
 T 91 2250 8 10 0 0 0 0 1
 documentation=http://www.amphenolrf.com/part_detail.asp?amphenolNumber=31-71043
diff --git a/symbols/analog/CS5396-1.sym b/symbols/analog/CS5396-1.sym
index d884ab1..8b63e7e 100644
--- a/symbols/analog/CS5396-1.sym
+++ b/symbols/analog/CS5396-1.sym
@@ -320,8 +320,6 @@ T 300 6800 5 10 0 0 0 0 1
 footprint=SO28
 T 300 7000 5 10 0 0 0 0 1
 description=120dB, 96kHz Audio A/D Converter
-T 300 6600 5 10 0 0 0 0 1
-numslots=0
 T 300 6400 5 10 0 0 0 0 1
 symversion=0.1
 T 300 7200 5 10 0 0 0 0 1
diff --git a/symbols/analog/HA5221-1.sym b/symbols/analog/HA5221-1.sym
index 836a062..6ee3a4b 100644
--- a/symbols/analog/HA5221-1.sym
+++ b/symbols/analog/HA5221-1.sym
@@ -68,8 +68,6 @@ T 200 1700 5 10 0 0 0 0 1
 footprint=DIP8
 T 200 1900 5 10 0 0 0 0 1
 description=100MHz, low noise, precision opamp
-T 200 1500 5 10 0 0 0 0 1
-numslots=0
 T 200 1300 5 10 0 0 0 0 1
 symversion=1.0
 T 200 2300 5 10 0 0 0 0 1
diff --git a/symbols/analog/aop-std-1.sym b/symbols/analog/aop-std-1.sym
index faa3a40..6d46dcb 100644
--- a/symbols/analog/aop-std-1.sym
+++ b/symbols/analog/aop-std-1.sym
@@ -68,8 +68,6 @@ T 1050 750 5 10 0 0 0 0 1
 footprint=DIP8
 T 1050 950 5 10 0 0 0 0 1
 description=single opamp
-T 1050 550 5 10 0 0 0 0 1
-numslots=0
 T 1050 350 5 10 0 0 0 0 1
 symversion=0.1
 T 1050 1150 5 10 0 0 0 0 1
diff --git a/symbols/analog/battery-1.sym b/symbols/analog/battery-1.sym
index caf29ff..e4358ef 100644
--- a/symbols/analog/battery-1.sym
+++ b/symbols/analog/battery-1.sym
@@ -31,7 +31,5 @@ T 300 500 8 10 1 1 0 0 1
 refdes=B?
 T 300 1100 5 10 0 0 0 0 1
 description=Battery
-T 300 700 5 10 0 0 0 0 1
-numslots=0
 T 300 1300 5 10 0 0 0 0 1
 symversion=0.1
diff --git a/symbols/analog/battery-2.sym b/symbols/analog/battery-2.sym
index aac38d8..a4e01da 100644
--- a/symbols/analog/battery-2.sym
+++ b/symbols/analog/battery-2.sym
@@ -33,7 +33,5 @@ T 300 500 8 10 1 1 0 0 1
 refdes=B?
 T 300 1100 5 10 0 0 0 0 1
 description=battery stack
-T 300 900 5 10 0 0 0 0 1
-numslots=0
 T 300 1300 5 10 0 0 0 0 1
 symversion=0.1
diff --git a/symbols/analog/battery-3.sym b/symbols/analog/battery-3.sym
index 42b3aaa..19d47fd 100644
--- a/symbols/analog/battery-3.sym
+++ b/symbols/analog/battery-3.sym
@@ -35,7 +35,5 @@ T 300 500 8 10 1 1 0 0 1
 refdes=B?
 T 300 1350 5 10 0 0 0 0 1
 description=battery stack
-T 300 1150 5 10 0 0 0 0 1
-numslots=0
 T 300 950 5 10 0 0 0 0 1
 symversion=0.1
diff --git a/symbols/analog/beeper-1.sym b/symbols/analog/beeper-1.sym
index be105d6..ce4817f 100644
--- a/symbols/analog/beeper-1.sym
+++ b/symbols/analog/beeper-1.sym
@@ -28,8 +28,6 @@ refdes=U?
 V 500 300 300 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 300 1500 5 10 0 0 0 0 1
 description=pieco beeper
-T 300 1300 5 10 0 0 0 0 1
-numslots=0
 T 300 1100 5 10 0 0 0 0 1
 symversion=0.1
 T 277 255 9 8 1 0 0 0 1
diff --git a/symbols/analog/bridge-1.sym b/symbols/analog/bridge-1.sym
index 344f4e2..da261ff 100644
--- a/symbols/analog/bridge-1.sym
+++ b/symbols/analog/bridge-1.sym
@@ -57,7 +57,5 @@ T 200 1400 5 10 0 0 0 0 1
 device=bridge
 T 200 1600 5 10 0 0 0 0 1
 description=bridge rectifier
-T 200 1200 5 10 0 0 0 0 1
-numslots=0
 T 200 1800 5 10 0 0 0 0 1
 symversion=0.1
diff --git a/symbols/analog/bridge-2.sym b/symbols/analog/bridge-2.sym
index bf8c131..6e8e344 100644
--- a/symbols/analog/bridge-2.sym
+++ b/symbols/analog/bridge-2.sym
@@ -57,7 +57,5 @@ T 200 1200 5 10 0 0 0 0 1
 device=BRIDGE
 T 200 1800 5 10 0 0 0 0 1
 description=bridge rectifier
-T 200 1600 5 10 0 0 0 0 1
-numslots=0
 T 200 1400 5 10 0 0 0 0 1
 symversion=0.1
diff --git a/symbols/analog/capacitor-1.sym b/symbols/analog/capacitor-1.sym
index c1d2ad1..7bdff08 100644
--- a/symbols/analog/capacitor-1.sym
+++ b/symbols/analog/capacitor-1.sym
@@ -31,7 +31,5 @@ T 200 500 8 10 1 1 0 0 1
 refdes=C?
 T 200 1300 5 10 0 0 0 0 1
 description=capacitor
-T 200 1100 5 10 0 0 0 0 1
-numslots=0
 T 200 900 5 10 0 0 0 0 1
 symversion=0.1
diff --git a/symbols/analog/capacitor-2.sym b/symbols/analog/capacitor-2.sym
index d01cec0..a60f8fb 100644
--- a/symbols/analog/capacitor-2.sym
+++ b/symbols/analog/capacitor-2.sym
@@ -33,7 +33,5 @@ T 200 500 8 10 1 1 0 0 1
 refdes=C?
 T 200 1300 5 10 0 0 0 0 1
 description=polarized capacitor
-T 200 1100 5 10 0 0 0 0 1
-numslots=0
 T 200 900 5 10 0 0 0 0 1
 symversion=0.1
diff --git a/symbols/analog/capacitor-3.sym b/symbols/analog/capacitor-3.sym
index 7de1ecc..8e515cf 100644
--- a/symbols/analog/capacitor-3.sym
+++ b/symbols/analog/capacitor-3.sym
@@ -33,7 +33,5 @@ T 200 500 8 10 1 1 0 0 1
 refdes=C?
 T 200 1300 5 10 0 0 0 0 1
 description=polarized capacitor
-T 200 1100 5 10 0 0 0 0 1
-numslots=0
 T 200 900 5 10 0 0 0 0 1
 symversion=0.1
diff --git a/symbols/analog/capacitor-4.sym b/symbols/analog/capacitor-4.sym
index 80ca66d..c84673b 100644
--- a/symbols/analog/capacitor-4.sym
+++ b/symbols/analog/capacitor-4.sym
@@ -33,7 +33,5 @@ refdes=C?
 B 350 0 100 400 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 200 1300 5 10 0 0 0 0 1
 description=polarized capacitor
-T 200 900 5 10 0 0 0 0 1
-numslots=0
 T 200 700 5 10 0 0 0 0 1
 symversion=0.1
diff --git a/symbols/analog/capacitor-variable-1.sym b/symbols/analog/capacitor-variable-1.sym
index 4f2343b..71369da 100644
--- a/symbols/analog/capacitor-variable-1.sym
+++ b/symbols/analog/capacitor-variable-1.sym
@@ -34,7 +34,5 @@ T 200 500 8 10 1 1 0 0 1
 refdes=C?
 T 200 1300 5 10 0 0 0 0 1
 description=variable capacitor
-T 200 1100 5 10 0 0 0 0 1
-numslots=0
 T 200 900 5 10 0 0 0 0 1
 symversion=0.1
diff --git a/symbols/analog/capacitor-variable-2.sym b/symbols/analog/capacitor-variable-2.sym
index 7a2c3a6..f6e97ca 100644
--- a/symbols/analog/capacitor-variable-2.sym
+++ b/symbols/analog/capacitor-variable-2.sym
@@ -34,7 +34,5 @@ T 200 500 8 10 1 1 0 0 1
 refdes=C?
 T 200 1300 5 10 0 0 0 0 1
 description=variable capacitor
-T 200 1100 5 10 0 0 0 0 1
-numslots=0
 T 200 900 5 10 0 0 0 0 1
 symversion=0.1
diff --git a/symbols/analog/coil-1.sym b/symbols/analog/coil-1.sym
index aca4b65..65468ed 100644
--- a/symbols/analog/coil-1.sym
+++ b/symbols/analog/coil-1.sym
@@ -30,7 +30,5 @@ T 200 200 8 10 1 1 0 0 1
 refdes=L?
 T 200 1000 5 10 0 0 0 0 1
 description=incuctor
-T 200 800 5 10 0 0 0 0 1
-numslots=0
 T 200 600 5 10 0 0 0 0 1
 symversion=0.1
diff --git a/symbols/analog/coil-2.sym b/symbols/analog/coil-2.sym
index 04dbc53..09b0df8 100644
--- a/symbols/analog/coil-2.sym
+++ b/symbols/analog/coil-2.sym
@@ -31,7 +31,5 @@ T 200 300 8 10 1 1 0 0 1
 refdes=L?
 T 200 1100 5 10 0 0 0 0 1
 description=inductor
-T 200 900 5 10 0 0 0 0 1
-numslots=0
 T 200 700 5 10 0 0 0 0 1
 symversion=0.1
diff --git a/symbols/analog/crystal-1.sym b/symbols/analog/crystal-1.sym
index 5d53c5c..61944fe 100644
--- a/symbols/analog/crystal-1.sym
+++ b/symbols/analog/crystal-1.sym
@@ -30,7 +30,5 @@ T 200 300 8 10 1 1 0 0 1
 refdes=U?
 T 200 1100 5 10 0 0 0 0 1
 description=crystal
-T 200 900 5 10 0 0 0 0 1
-numslots=0
 T 200 700 5 10 0 0 0 0 1
 symversion=0.1
diff --git a/symbols/analog/darlington_NPN-1.sym b/symbols/analog/darlington_NPN-1.sym
index a1824d4..c435817 100644
--- a/symbols/analog/darlington_NPN-1.sym
+++ b/symbols/analog/darlington_NPN-1.sym
@@ -58,5 +58,3 @@ T 1400 700 5 10 0 0 0 0 1
 footprint=TO92
 T 500 170 5 10 1 1 0 0 1
 refdes=T?
-T 1400 500 5 10 0 0 0 0 1
-numslots=0
diff --git a/symbols/analog/darlington_NPN_PNP-1.sym b/symbols/analog/darlington_NPN_PNP-1.sym
index 167b5b4..bf534bd 100644
--- a/symbols/analog/darlington_NPN_PNP-1.sym
+++ b/symbols/analog/darlington_NPN_PNP-1.sym
@@ -58,7 +58,5 @@ T 100 -530 8 10 0 1 0 0 1
 footprint=TO92
 T 500 170 5 10 1 1 0 0 1
 refdes=T?
-T 800 2100 8 10 0 0 0 0 1
-numslots=0
 T 800 2300 8 10 0 0 0 0 1
 device=DARLINGTON
diff --git a/symbols/analog/fuse-1.sym b/symbols/analog/fuse-1.sym
index 308faad..9b84ba6 100644
--- a/symbols/analog/fuse-1.sym
+++ b/symbols/analog/fuse-1.sym
@@ -29,7 +29,5 @@ T 200 200 8 10 1 1 0 0 1
 refdes=F?
 T 200 1000 5 10 0 0 0 0 1
 description=fuse
-T 200 800 5 10 0 0 0 0 1
-numslots=0
 T 200 600 5 10 0 0 0 0 1
 symversion=0.1
diff --git a/symbols/analog/fuse-2.sym b/symbols/analog/fuse-2.sym
index ff796cf..e85adc4 100644
--- a/symbols/analog/fuse-2.sym
+++ b/symbols/analog/fuse-2.sym
@@ -29,7 +29,5 @@ refdes=F?
 L 750 100 150 100 3 0 0 0 -1 -1
 T 200 1150 5 10 0 0 0 0 1
 description=fuse
-T 200 950 5 10 0 0 0 0 1
-numslots=0
 T 200 750 5 10 0 0 0 0 1
 symversion=0.1
diff --git a/symbols/analog/glow-lamp-1.sym b/symbols/analog/glow-lamp-1.sym
index 5fdfbda..ba988df 100644
--- a/symbols/analog/glow-lamp-1.sym
+++ b/symbols/analog/glow-lamp-1.sym
@@ -33,7 +33,5 @@ L 400 300 400 100 3 0 0 0 -1 -1
 V 450 340 30 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 200 1200 5 10 0 0 0 0 1
 description=glow lamp
-T 200 1000 5 10 0 0 0 0 1
-numslots=0
 T 200 800 5 10 0 0 0 0 1
 symversion=0.1
diff --git a/symbols/analog/inamp-1.sym b/symbols/analog/inamp-1.sym
index 40bb4a4..2378b30 100644
--- a/symbols/analog/inamp-1.sym
+++ b/symbols/analog/inamp-1.sym
@@ -91,8 +91,6 @@ T 750 2100 5 10 0 0 0 0 1
 footprint=DIP8
 T 750 2300 5 10 0 0 0 0 1
 description=single opamp with trimmable offset
-T 750 1900 5 10 0 0 0 0 1
-numslots=0
 T 750 1700 5 10 0 0 0 0 1
 symversion=1.0
 T 750 2500 5 10 0 0 0 0 1
diff --git a/symbols/analog/inductor-1.sym b/symbols/analog/inductor-1.sym
index 0560dee..e18ce42 100644
--- a/symbols/analog/inductor-1.sym
+++ b/symbols/analog/inductor-1.sym
@@ -36,7 +36,5 @@ T 200 300 8 10 1 1 0 0 1
 refdes=L?
 T 200 1100 5 10 0 0 0 0 1
 description=inductor
-T 200 900 5 10 0 0 0 0 1
-numslots=0
 T 200 700 5 10 0 0 0 0 1
 symversion=0.1
diff --git a/symbols/analog/inductor-dot-1.sym b/symbols/analog/inductor-dot-1.sym
index 4681ee3..1ad3d3c 100644
--- a/symbols/analog/inductor-dot-1.sym
+++ b/symbols/analog/inductor-dot-1.sym
@@ -37,7 +37,5 @@ refdes=L?
 V 153 71 13 3 0 0 0 -1 -1 1 -1 -1 1 -1 1
 T 200 1000 5 10 0 0 0 0 1
 description=inductor
-T 200 800 5 10 0 0 0 0 1
-numslots=0
 T 200 600 5 10 0 0 0 0 1
 symversion=0.1
diff --git a/symbols/analog/led-1.sym b/symbols/analog/led-1.sym
index ff3b991..89875cb 100644
--- a/symbols/analog/led-1.sym
+++ b/symbols/analog/led-1.sym
@@ -40,7 +40,5 @@ T 800 400 8 10 1 1 0 0 1
 refdes=LED?
 T 800 1200 5 10 0 0 0 0 1
 description=LED
-T 800 1000 5 10 0 0 0 0 1
-numslots=0
 T 800 800 5 10 0 0 0 0 1
 symversion=0.1
diff --git a/symbols/analog/leddual-1.sym b/symbols/analog/leddual-1.sym
index 1408bb1..f50a0cc 100644
--- a/symbols/analog/leddual-1.sym
+++ b/symbols/analog/leddual-1.sym
@@ -51,7 +51,5 @@ T 800 400 8 10 1 1 0 0 1
 refdes=LED?
 T 800 1200 5 10 0 0 0 0 1
 description=dual LED
-T 800 1000 5 10 0 0 0 0 1
-numslots=0
 T 800 800 5 10 0 0 0 0 1
 symversion=0.1
diff --git a/symbols/analog/leddual-2.sym b/symbols/analog/leddual-2.sym
index da31f3d..b260282 100644
--- a/symbols/analog/leddual-2.sym
+++ b/symbols/analog/leddual-2.sym
@@ -59,7 +59,5 @@ T 800 400 8 10 1 1 0 0 1
 refdes=LED?
 T 800 1200 5 10 0 0 0 0 1
 description=dual LED with common cathode
-T 800 1000 5 10 0 0 0 0 1
-numslots=0
 T 800 800 5 10 0 0 0 0 1
 symversion=0.1
diff --git a/symbols/analog/microphone-1.sym b/symbols/analog/microphone-1.sym
index eb1f4a3..d6d994d 100644
--- a/symbols/analog/microphone-1.sym
+++ b/symbols/analog/microphone-1.sym
@@ -7,8 +7,6 @@ T 400 1000 8 10 1 1 0 0 1
 refdes=MIC?
 T 400 1850 5 10 0 0 0 0 1
 description=microphone
-T 400 1650 5 10 0 0 0 0 1
-numslots=0
 T 400 1450 5 10 0 0 0 0 1
 symversion=0.1
 P 700 800 400 800 1 0 0
diff --git a/symbols/analog/nmos-1.sym b/symbols/analog/nmos-1.sym
index 26a6823..6cede76 100644
--- a/symbols/analog/nmos-1.sym
+++ b/symbols/analog/nmos-1.sym
@@ -56,7 +56,5 @@ T 700 600 8 10 1 1 0 0 1
 refdes=Q?
 T 700 1400 5 10 0 0 0 0 1
 description=NMOS transistor
-T 700 1200 5 10 0 0 0 0 1
-numslots=0
 T 700 1000 5 10 0 0 0 0 1
 symversion=0.1
diff --git a/symbols/analog/nmos-3.sym b/symbols/analog/nmos-3.sym
index 68aef4c..d66c05f 100644
--- a/symbols/analog/nmos-3.sym
+++ b/symbols/analog/nmos-3.sym
@@ -2,8 +2,6 @@ v 20031231 1
 T 600 500 5 10 0 0 0 0 1
 device=NMOS_TRANSISTOR
 T 600 500 5 10 0 0 0 0 1
-numslots=0
-T 600 500 5 10 0 0 0 0 1
 description=generic N channel MOS transistor (enhancement type)
 L 250 600 500 600 3 0 0 0 -1 -1
 L 250 200 500 200 3 0 0 0 -1 -1
diff --git a/symbols/analog/opamp-1.sym b/symbols/analog/opamp-1.sym
index 42d0349..715ea7c 100644
--- a/symbols/analog/opamp-1.sym
+++ b/symbols/analog/opamp-1.sym
@@ -66,7 +66,5 @@ T 700 600 8 10 1 1 0 0 1
 refdes=U?
 T 700 1200 5 10 0 0 0 0 1
 description=operational amplifier
-T 700 1000 5 10 0 0 0 0 1
-numslots=0
 T 700 1400 5 10 0 0 0 0 1
 symversion=0.1
diff --git a/symbols/analog/opamp-2.sym b/symbols/analog/opamp-2.sym
index 749747e..0e3a961 100644
--- a/symbols/analog/opamp-2.sym
+++ b/symbols/analog/opamp-2.sym
@@ -70,5 +70,3 @@ T 800 1200 5 10 0 0 0 0 1
 symversion=0.1
 T 800 1600 5 10 0 0 0 0 1
 description=operational amplifier
-T 800 1400 5 10 0 0 0 0 1
-numslots=0
diff --git a/symbols/analog/pmos-3.sym b/symbols/analog/pmos-3.sym
index 2122445..c03ef47 100644
--- a/symbols/analog/pmos-3.sym
+++ b/symbols/analog/pmos-3.sym
@@ -2,8 +2,6 @@ v 20031231 1
 T 600 500 5 10 0 0 0 0 1
 device=PMOS_TRANSISTOR
 T 600 500 5 10 0 0 0 0 1
-numslots=0
-T 600 500 5 10 0 0 0 0 1
 description=generic P channel MOS transistor (enhancement type)
 L 250 600 500 600 3 0 0 0 -1 -1
 L 250 200 500 200 3 0 0 0 -1 -1
diff --git a/symbols/analog/pot-1.sym b/symbols/analog/pot-1.sym
index ac683a0..982e25d 100644
--- a/symbols/analog/pot-1.sym
+++ b/symbols/analog/pot-1.sym
@@ -52,5 +52,3 @@ T 800 1100 5 10 0 1 0 0 1
 class=DISCRETE
 T 800 1500 8 10 0 0 0 0 1
 footprint=none
-T 800 700 5 10 0 0 0 0 1
-numslots=0
diff --git a/symbols/analog/pot-2.sym b/symbols/analog/pot-2.sym
index bac8645..7e945c1 100644
--- a/symbols/analog/pot-2.sym
+++ b/symbols/analog/pot-2.sym
@@ -52,5 +52,3 @@ T 800 1100 5 10 0 1 0 0 1
 class=DISCRETE
 T 800 1500 8 10 0 0 0 0 1
 footprint=none
-T 800 700 5 10 0 0 0 0 1
-numslots=0
diff --git a/symbols/analog/testpt-1.sym b/symbols/analog/testpt-1.sym
index 08299fe..8cdf7e5 100644
--- a/symbols/analog/testpt-1.sym
+++ b/symbols/analog/testpt-1.sym
@@ -20,5 +20,3 @@ T 400 900 8 10 0 0 0 0 1
 device=TESTPOINT
 T 400 700 8 10 0 0 0 0 1
 footprint=none
-T 400 1100 8 10 0 0 0 0 1
-numslots=0
diff --git a/symbols/analog/transformer-5.sym b/symbols/analog/transformer-5.sym
index 6df0242..a378474 100644
--- a/symbols/analog/transformer-5.sym
+++ b/symbols/analog/transformer-5.sym
@@ -107,7 +107,5 @@ pintype=pas
 T 1300 2500 5 10 0 1 0 0 1
 pinlabel=coil_connection
 }
-T 1500 900 8 10 0 0 0 0 1
-numslots=0
 T 300 3200 8 10 0 1 0 0 1
 comment=The footprint is omitted intentionally because depends on the PCB designer's taste heavily.
diff --git a/symbols/analog/varistor-1.sym b/symbols/analog/varistor-1.sym
index fd98220..3a7f8c6 100644
--- a/symbols/analog/varistor-1.sym
+++ b/symbols/analog/varistor-1.sym
@@ -5,8 +5,6 @@ T 100 800 5 10 0 0 0 0 1
 device=MOV
 T 300 1400 5 10 0 0 0 0 1
 description=Metal Oxide Varistor
-T 600 2000 5 10 0 0 0 0 1
-numslots=0
 T 300 1200 5 10 0 0 0 0 1
 footprint=MOV
 P 0 200 152 200 1 0 0
diff --git a/symbols/apex/pa140-1.sym b/symbols/apex/pa140-1.sym
index 07f3f20..974ae06 100644
--- a/symbols/apex/pa140-1.sym
+++ b/symbols/apex/pa140-1.sym
@@ -61,8 +61,6 @@ T 400 700 8 10 1 1 0 0 1
 device=PA140
 T 700 2300 8 10 0 0 0 0 1
 description=APEX PA140 High Voltage Amplifier
-T 700 1900 8 10 0 0 0 0 1
-numslots=0
 T -1500 -700 8 10 0 1 0 0 1
 footprint=TO220-7
 T 1200 1300 8 10 1 1 0 0 1
diff --git a/symbols/apex/pa91-1.sym b/symbols/apex/pa91-1.sym
index fa5f836..71aa7ac 100644
--- a/symbols/apex/pa91-1.sym
+++ b/symbols/apex/pa91-1.sym
@@ -137,5 +137,3 @@ pinlabel=ILIM2
 }
 T 600 2500 5 10 0 0 0 0 1
 symversion=0.1
-T 600 2700 5 10 0 0 0 0 1
-numslots=0
diff --git a/symbols/connector/DB25-3.sym b/symbols/connector/DB25-3.sym
index b21cf47..4bcdf4c 100644
--- a/symbols/connector/DB25-3.sym
+++ b/symbols/connector/DB25-3.sym
@@ -324,5 +324,3 @@ pintype=pas
 }
 T 1300 5700 8 10 0 1 0 0 1
 description=25-pin male or female DB-25 connector
-T 1300 5900 8 10 0 0 0 0 1
-numslots=0
diff --git a/symbols/connector/DIN41612C48-1.sym b/symbols/connector/DIN41612C48-1.sym
index 5e2babd..fdc2151 100644
--- a/symbols/connector/DIN41612C48-1.sym
+++ b/symbols/connector/DIN41612C48-1.sym
@@ -532,8 +532,6 @@ T 300 13250 5 10 0 0 0 0 1
 device=DIN41612C48
 T 3300 13100 8 10 1 1 0 6 1
 refdes=CONN?
-T 300 13650 5 10 0 0 0 0 1
-numslots=0
 T 300 13450 5 10 0 0 0 0 1
 symversion=0.1
 T 300 13050 9 10 1 0 0 0 1
diff --git a/symbols/connector/DIN41612C48-2.sym b/symbols/connector/DIN41612C48-2.sym
index d5cf65d..afd23f4 100644
--- a/symbols/connector/DIN41612C48-2.sym
+++ b/symbols/connector/DIN41612C48-2.sym
@@ -530,8 +530,6 @@ pintype=pas
 B 500 0 3000 12900 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 2700 13100 5 10 0 0 0 0 1
 device=DIN41612C48
-T 2700 13100 5 10 0 0 0 0 1
-numslots=0
 T 600 13000 9 10 1 1 0 0 1
 description=DIN 41612C-48
 T 3500 13000 8 10 1 1 0 6 1
diff --git a/symbols/connector/DIN41612C56-1.sym b/symbols/connector/DIN41612C56-1.sym
index a820d31..136a699 100644
--- a/symbols/connector/DIN41612C56-1.sym
+++ b/symbols/connector/DIN41612C56-1.sym
@@ -620,8 +620,6 @@ T 300 13250 5 10 0 0 0 0 1
 device=DIN41612C56
 T 3300 13000 8 10 1 1 0 6 1
 refdes=CONN?
-T 300 13650 5 10 0 0 0 0 1
-numslots=0
 T 300 13450 5 10 0 0 0 0 1
 symversion=0.1
 T 300 13000 9 10 1 0 0 0 1
diff --git a/symbols/connector/DIN41612C56-2.sym b/symbols/connector/DIN41612C56-2.sym
index 47faced..fa708a0 100644
--- a/symbols/connector/DIN41612C56-2.sym
+++ b/symbols/connector/DIN41612C56-2.sym
@@ -618,8 +618,6 @@ pintype=pas
 B 500 0 3000 12900 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 2700 13100 5 10 0 0 0 0 1
 device=DIN41612C56
-T 2700 13100 5 10 0 0 0 0 1
-numslots=0
 T 600 13000 9 10 1 1 0 0 1
 description=DIN 41612C-56
 T 3500 13000 8 10 1 1 0 6 1
diff --git a/symbols/connector/DIN41612C96-1.sym b/symbols/connector/DIN41612C96-1.sym
index 1cfeb42..b225482 100644
--- a/symbols/connector/DIN41612C96-1.sym
+++ b/symbols/connector/DIN41612C96-1.sym
@@ -1060,8 +1060,6 @@ T 300 13200 5 10 0 0 0 0 1
 device=DIN41612C96
 T 3300 13000 8 10 1 1 0 6 1
 refdes=CONN?
-T 300 13650 5 10 0 0 0 0 1
-numslots=0
 T 300 13450 5 10 0 0 0 0 1
 symversion=0.1
 T 300 12950 9 10 1 0 0 0 1
diff --git a/symbols/connector/DIN41612C96-2.sym b/symbols/connector/DIN41612C96-2.sym
index ab43cb6..e3de823 100644
--- a/symbols/connector/DIN41612C96-2.sym
+++ b/symbols/connector/DIN41612C96-2.sym
@@ -1058,8 +1058,6 @@ pintype=pas
 B 500 0 3000 12900 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 2700 13100 5 10 0 0 0 0 1
 device=DIN41612C96
-T 2700 13100 5 10 0 0 0 0 1
-numslots=0
 T 600 13000 9 10 1 1 0 0 1
 description=DIN 41612C-96
 T 3500 13000 8 10 1 1 0 6 1
diff --git a/symbols/connector/ISA-98W-SOCKET-1.sym b/symbols/connector/ISA-98W-SOCKET-1.sym
index 6290540..6715488 100644
--- a/symbols/connector/ISA-98W-SOCKET-1.sym
+++ b/symbols/connector/ISA-98W-SOCKET-1.sym
@@ -1082,5 +1082,3 @@ pinseq=98
 T 2800 700 5 10 0 1 0 0 1
 pintype=io
 }
-T 600 20870 8 10 0 0 0 0 1
-numslots=0
diff --git a/symbols/connector/connector1-2.sym b/symbols/connector/connector1-2.sym
index 9b76ca4..90bb7c3 100644
--- a/symbols/connector/connector1-2.sym
+++ b/symbols/connector/connector1-2.sym
@@ -9,8 +9,6 @@ T 300 1250 5 10 0 0 0 0 1
 author=Leon Kos
 T 300 1450 5 10 0 0 0 0 1
 description=generic connector
-T 300 1650 5 10 0 0 0 0 1
-numslots=0
 P 0 400 200 400 1 0 0
 {
 T 200 450 5 8 0 1 0 6 1
diff --git a/symbols/connector/connector10-2.sym b/symbols/connector/connector10-2.sym
index 134e9e9..ec51ed3 100644
--- a/symbols/connector/connector10-2.sym
+++ b/symbols/connector/connector10-2.sym
@@ -9,8 +9,6 @@ T 300 4850 5 10 0 0 0 0 1
 author=Leon Kos
 T 300 5050 5 10 0 0 0 0 1
 description=generic connector
-T 300 5250 5 10 0 0 0 0 1
-numslots=0
 P 0 4000 200 4000 1 0 0
 {
 T 200 4050 5 8 0 1 0 6 1
diff --git a/symbols/connector/connector11-2.sym b/symbols/connector/connector11-2.sym
index bc22720..e32e6bb 100644
--- a/symbols/connector/connector11-2.sym
+++ b/symbols/connector/connector11-2.sym
@@ -9,8 +9,6 @@ T 300 5250 5 10 0 0 0 0 1
 author=Leon Kos
 T 300 5450 5 10 0 0 0 0 1
 description=generic connector
-T 300 5650 5 10 0 0 0 0 1
-numslots=0
 P 0 4400 200 4400 1 0 0
 {
 T 200 4450 5 8 0 1 0 6 1
diff --git a/symbols/connector/connector12-2.sym b/symbols/connector/connector12-2.sym
index c5a4517..e4fe1de 100644
--- a/symbols/connector/connector12-2.sym
+++ b/symbols/connector/connector12-2.sym
@@ -9,8 +9,6 @@ T 300 5650 5 10 0 0 0 0 1
 author=Leon Kos
 T 300 5850 5 10 0 0 0 0 1
 description=generic connector
-T 300 6050 5 10 0 0 0 0 1
-numslots=0
 P 0 4800 200 4800 1 0 0
 {
 T 200 4850 5 8 0 1 0 6 1
diff --git a/symbols/connector/connector13-2.sym b/symbols/connector/connector13-2.sym
index 11d1dd8..bcb7f84 100644
--- a/symbols/connector/connector13-2.sym
+++ b/symbols/connector/connector13-2.sym
@@ -9,8 +9,6 @@ T 300 6050 5 10 0 0 0 0 1
 author=Leon Kos
 T 300 6250 5 10 0 0 0 0 1
 description=generic connector
-T 300 6450 5 10 0 0 0 0 1
-numslots=0
 P 0 5200 200 5200 1 0 0
 {
 T 200 5250 5 8 0 1 0 6 1
diff --git a/symbols/connector/connector14-2.sym b/symbols/connector/connector14-2.sym
index 56c02d8..1d3e314 100644
--- a/symbols/connector/connector14-2.sym
+++ b/symbols/connector/connector14-2.sym
@@ -9,8 +9,6 @@ T 300 6450 5 10 0 0 0 0 1
 author=Leon Kos
 T 300 6650 5 10 0 0 0 0 1
 description=generic connector
-T 300 6850 5 10 0 0 0 0 1
-numslots=0
 P 0 5600 200 5600 1 0 0
 {
 T 200 5650 5 8 0 1 0 6 1
diff --git a/symbols/connector/connector15-2.sym b/symbols/connector/connector15-2.sym
index 3c606fd..8593426 100644
--- a/symbols/connector/connector15-2.sym
+++ b/symbols/connector/connector15-2.sym
@@ -9,8 +9,6 @@ T 300 6950 5 10 0 0 0 0 1
 author=Leon Kos
 T 300 7150 5 10 0 0 0 0 1
 description=generic connector
-T 300 7350 5 10 0 0 0 0 1
-numslots=0
 P 0 6100 200 6100 1 0 0
 {
 T 200 6150 5 8 0 1 0 6 1
diff --git a/symbols/connector/connector16-2.sym b/symbols/connector/connector16-2.sym
index ea11782..d35e82b 100644
--- a/symbols/connector/connector16-2.sym
+++ b/symbols/connector/connector16-2.sym
@@ -9,8 +9,6 @@ T 300 7250 5 10 0 0 0 0 1
 author=Leon Kos
 T 300 7450 5 10 0 0 0 0 1
 description=generic connector
-T 300 7650 5 10 0 0 0 0 1
-numslots=0
 P 0 6400 200 6400 1 0 0
 {
 T 200 6450 5 8 0 1 0 6 1
diff --git a/symbols/connector/connector17-2.sym b/symbols/connector/connector17-2.sym
index 7d4bcf6..12361e6 100644
--- a/symbols/connector/connector17-2.sym
+++ b/symbols/connector/connector17-2.sym
@@ -9,8 +9,6 @@ T 300 7650 5 10 0 0 0 0 1
 author=Leon Kos
 T 300 7850 5 10 0 0 0 0 1
 description=generic connector
-T 300 8050 5 10 0 0 0 0 1
-numslots=0
 P 0 6800 200 6800 1 0 0
 {
 T 200 6850 5 8 0 1 0 6 1
diff --git a/symbols/connector/connector18-2.sym b/symbols/connector/connector18-2.sym
index 07b75af..c68be33 100644
--- a/symbols/connector/connector18-2.sym
+++ b/symbols/connector/connector18-2.sym
@@ -9,8 +9,6 @@ T 400 8150 5 10 0 0 0 0 1
 author=Leon Kos
 T 400 8350 5 10 0 0 0 0 1
 description=generic connector
-T 400 8550 5 10 0 0 0 0 1
-numslots=0
 P 100 7300 300 7300 1 0 0
 {
 T 300 7350 5 8 0 1 0 6 1
diff --git a/symbols/connector/connector19-2.sym b/symbols/connector/connector19-2.sym
index 123e66f..92cbbcf 100644
--- a/symbols/connector/connector19-2.sym
+++ b/symbols/connector/connector19-2.sym
@@ -9,8 +9,6 @@ T 400 8550 5 10 0 0 0 0 1
 author=Leon Kos
 T 400 8750 5 10 0 0 0 0 1
 description=generic connector
-T 400 8950 5 10 0 0 0 0 1
-numslots=0
 P 100 7700 300 7700 1 0 0
 {
 T 300 7750 5 8 0 1 0 6 1
diff --git a/symbols/connector/connector2-2.sym b/symbols/connector/connector2-2.sym
index 9520a13..343ac6e 100644
--- a/symbols/connector/connector2-2.sym
+++ b/symbols/connector/connector2-2.sym
@@ -9,8 +9,6 @@ T 300 1650 5 10 0 0 0 0 1
 author=Leon Kos
 T 300 1850 5 10 0 0 0 0 1
 description=generic connector
-T 300 2050 5 10 0 0 0 0 1
-numslots=0
 P 0 800 200 800 1 0 0
 {
 T 200 850 5 8 0 1 0 6 1
diff --git a/symbols/connector/connector20-2.sym b/symbols/connector/connector20-2.sym
index e54eda0..2628ed9 100644
--- a/symbols/connector/connector20-2.sym
+++ b/symbols/connector/connector20-2.sym
@@ -9,8 +9,6 @@ T 400 8950 5 10 0 0 0 0 1
 author=Leon Kos
 T 400 9150 5 10 0 0 0 0 1
 description=generic connector
-T 400 9350 5 10 0 0 0 0 1
-numslots=0
 P 100 8100 300 8100 1 0 0
 {
 T 300 8150 5 8 0 1 0 6 1
diff --git a/symbols/connector/connector21-2.sym b/symbols/connector/connector21-2.sym
index fdb5a51..30de814 100644
--- a/symbols/connector/connector21-2.sym
+++ b/symbols/connector/connector21-2.sym
@@ -9,8 +9,6 @@ T 400 9350 5 10 0 0 0 0 1
 author=Leon Kos
 T 400 9550 5 10 0 0 0 0 1
 description=generic connector
-T 400 9750 5 10 0 0 0 0 1
-numslots=0
 P 100 8500 300 8500 1 0 0
 {
 T 300 8550 5 8 0 1 0 6 1
diff --git a/symbols/connector/connector22-2.sym b/symbols/connector/connector22-2.sym
index 761050b..680eeb2 100644
--- a/symbols/connector/connector22-2.sym
+++ b/symbols/connector/connector22-2.sym
@@ -9,8 +9,6 @@ T 400 9750 5 10 0 0 0 0 1
 author=Leon Kos
 T 400 9950 5 10 0 0 0 0 1
 description=generic connector
-T 400 10150 5 10 0 0 0 0 1
-numslots=0
 P 100 8900 300 8900 1 0 0
 {
 T 300 8950 5 8 0 1 0 6 1
diff --git a/symbols/connector/connector23-2.sym b/symbols/connector/connector23-2.sym
index 59e6537..26d02b3 100644
--- a/symbols/connector/connector23-2.sym
+++ b/symbols/connector/connector23-2.sym
@@ -9,8 +9,6 @@ T 400 10150 5 10 0 0 0 0 1
 author=Leon Kos
 T 400 10350 5 10 0 0 0 0 1
 description=generic connector
-T 400 10550 5 10 0 0 0 0 1
-numslots=0
 P 100 9300 300 9300 1 0 0
 {
 T 300 9350 5 8 0 1 0 6 1
diff --git a/symbols/connector/connector24-2.sym b/symbols/connector/connector24-2.sym
index fe14ef2..8e58bda 100644
--- a/symbols/connector/connector24-2.sym
+++ b/symbols/connector/connector24-2.sym
@@ -9,8 +9,6 @@ T 400 10550 5 10 0 0 0 0 1
 author=Leon Kos
 T 400 10750 5 10 0 0 0 0 1
 description=generic connector
-T 400 10950 5 10 0 0 0 0 1
-numslots=0
 P 100 9700 300 9700 1 0 0
 {
 T 300 9750 5 8 0 1 0 6 1
diff --git a/symbols/connector/connector25-2.sym b/symbols/connector/connector25-2.sym
index 808d2b5..c9a5b44 100644
--- a/symbols/connector/connector25-2.sym
+++ b/symbols/connector/connector25-2.sym
@@ -9,8 +9,6 @@ T 400 10950 5 10 0 0 0 0 1
 author=Leon Kos
 T 400 11150 5 10 0 0 0 0 1
 description=generic connector
-T 400 11350 5 10 0 0 0 0 1
-numslots=0
 P 100 10100 300 10100 1 0 0
 {
 T 300 10150 5 8 0 1 0 6 1
diff --git a/symbols/connector/connector26-2.sym b/symbols/connector/connector26-2.sym
index c7bb68e..728e0ed 100644
--- a/symbols/connector/connector26-2.sym
+++ b/symbols/connector/connector26-2.sym
@@ -9,8 +9,6 @@ T 400 11350 5 10 0 0 0 0 1
 author=Leon Kos
 T 400 11550 5 10 0 0 0 0 1
 description=generic connector
-T 400 11750 5 10 0 0 0 0 1
-numslots=0
 P 100 10500 300 10500 1 0 0
 {
 T 300 10550 5 8 0 1 0 6 1
diff --git a/symbols/connector/connector27-2.sym b/symbols/connector/connector27-2.sym
index 4c073df..72ba3e1 100644
--- a/symbols/connector/connector27-2.sym
+++ b/symbols/connector/connector27-2.sym
@@ -9,8 +9,6 @@ T 400 11750 5 10 0 0 0 0 1
 author=Leon Kos
 T 400 11950 5 10 0 0 0 0 1
 description=generic connector
-T 400 12150 5 10 0 0 0 0 1
-numslots=0
 P 100 10900 300 10900 1 0 0
 {
 T 300 10950 5 8 0 1 0 6 1
diff --git a/symbols/connector/connector28-2.sym b/symbols/connector/connector28-2.sym
index 54099db..9eb48a2 100644
--- a/symbols/connector/connector28-2.sym
+++ b/symbols/connector/connector28-2.sym
@@ -9,8 +9,6 @@ T 400 12150 5 10 0 0 0 0 1
 author=Leon Kos
 T 400 12350 5 10 0 0 0 0 1
 description=generic connector
-T 400 12550 5 10 0 0 0 0 1
-numslots=0
 P 100 11300 300 11300 1 0 0
 {
 T 300 11350 5 8 0 1 0 6 1
diff --git a/symbols/connector/connector29-2.sym b/symbols/connector/connector29-2.sym
index 58e3385..ed6f654 100644
--- a/symbols/connector/connector29-2.sym
+++ b/symbols/connector/connector29-2.sym
@@ -9,8 +9,6 @@ T 400 12550 5 10 0 0 0 0 1
 author=Leon Kos
 T 400 12750 5 10 0 0 0 0 1
 description=generic connector
-T 400 12950 5 10 0 0 0 0 1
-numslots=0
 P 100 11700 300 11700 1 0 0
 {
 T 300 11750 5 8 0 1 0 6 1
diff --git a/symbols/connector/connector3-2.sym b/symbols/connector/connector3-2.sym
index b8ef2c0..07259f0 100644
--- a/symbols/connector/connector3-2.sym
+++ b/symbols/connector/connector3-2.sym
@@ -9,8 +9,6 @@ T 300 2050 5 10 0 0 0 0 1
 author=Leon Kos
 T 300 2250 5 10 0 0 0 0 1
 description=generic connector
-T 300 2450 5 10 0 0 0 0 1
-numslots=0
 P 0 1200 200 1200 1 0 0
 {
 T 200 1250 5 8 0 1 0 6 1
diff --git a/symbols/connector/connector30-2.sym b/symbols/connector/connector30-2.sym
index 631ccaa..46f7a93 100644
--- a/symbols/connector/connector30-2.sym
+++ b/symbols/connector/connector30-2.sym
@@ -9,8 +9,6 @@ T 400 12950 5 10 0 0 0 0 1
 author=Leon Kos
 T 400 13150 5 10 0 0 0 0 1
 description=generic connector
-T 400 13350 5 10 0 0 0 0 1
-numslots=0
 P 100 12100 300 12100 1 0 0
 {
 T 300 12150 5 8 0 1 0 6 1
diff --git a/symbols/connector/connector31-2.sym b/symbols/connector/connector31-2.sym
index 5a455ec..b04421c 100644
--- a/symbols/connector/connector31-2.sym
+++ b/symbols/connector/connector31-2.sym
@@ -9,8 +9,6 @@ T 400 13350 5 10 0 0 0 0 1
 author=Leon Kos
 T 400 13550 5 10 0 0 0 0 1
 description=generic connector
-T 400 13750 5 10 0 0 0 0 1
-numslots=0
 P 100 12500 300 12500 1 0 0
 {
 T 300 12550 5 8 0 1 0 6 1
diff --git a/symbols/connector/connector32-2.sym b/symbols/connector/connector32-2.sym
index 0cee99f..2fd0617 100644
--- a/symbols/connector/connector32-2.sym
+++ b/symbols/connector/connector32-2.sym
@@ -9,8 +9,6 @@ T 400 13750 5 10 0 0 0 0 1
 author=Leon Kos
 T 400 13950 5 10 0 0 0 0 1
 description=generic connector
-T 400 14150 5 10 0 0 0 0 1
-numslots=0
 P 100 12900 300 12900 1 0 0
 {
 T 300 12950 5 8 0 1 0 6 1
diff --git a/symbols/connector/connector33-2.sym b/symbols/connector/connector33-2.sym
index e03c747..31169e9 100644
--- a/symbols/connector/connector33-2.sym
+++ b/symbols/connector/connector33-2.sym
@@ -9,8 +9,6 @@ T 400 14150 5 10 0 0 0 0 1
 author=Leon Kos
 T 400 14350 5 10 0 0 0 0 1
 description=generic connector
-T 400 14550 5 10 0 0 0 0 1
-numslots=0
 P 100 13300 300 13300 1 0 0
 {
 T 300 13350 5 8 0 1 0 6 1
diff --git a/symbols/connector/connector34-2.sym b/symbols/connector/connector34-2.sym
index 7a2fa81..e04453f 100644
--- a/symbols/connector/connector34-2.sym
+++ b/symbols/connector/connector34-2.sym
@@ -9,8 +9,6 @@ T 400 14550 5 10 0 0 0 0 1
 author=Leon Kos
 T 400 14750 5 10 0 0 0 0 1
 description=generic connector
-T 400 14950 5 10 0 0 0 0 1
-numslots=0
 P 100 13700 300 13700 1 0 0
 {
 T 300 13750 5 8 0 1 0 6 1
diff --git a/symbols/connector/connector35-2.sym b/symbols/connector/connector35-2.sym
index 9a033c3..6f9a6b7 100644
--- a/symbols/connector/connector35-2.sym
+++ b/symbols/connector/connector35-2.sym
@@ -9,8 +9,6 @@ T 400 14950 5 10 0 0 0 0 1
 author=Leon Kos
 T 400 15150 5 10 0 0 0 0 1
 description=generic connector
-T 400 15350 5 10 0 0 0 0 1
-numslots=0
 P 100 14100 300 14100 1 0 0
 {
 T 300 14150 5 8 0 1 0 6 1
diff --git a/symbols/connector/connector36-2.sym b/symbols/connector/connector36-2.sym
index 10f6a45..7b2b40e 100644
--- a/symbols/connector/connector36-2.sym
+++ b/symbols/connector/connector36-2.sym
@@ -9,8 +9,6 @@ T 400 15350 5 10 0 0 0 0 1
 author=Leon Kos
 T 400 15550 5 10 0 0 0 0 1
 description=generic connector
-T 400 15750 5 10 0 0 0 0 1
-numslots=0
 P 100 14500 300 14500 1 0 0
 {
 T 300 14550 5 8 0 1 0 6 1
diff --git a/symbols/connector/connector37-2.sym b/symbols/connector/connector37-2.sym
index 85d2d32..1160a80 100644
--- a/symbols/connector/connector37-2.sym
+++ b/symbols/connector/connector37-2.sym
@@ -9,8 +9,6 @@ T 400 15750 5 10 0 0 0 0 1
 author=Leon Kos
 T 400 15950 5 10 0 0 0 0 1
 description=generic connector
-T 400 16150 5 10 0 0 0 0 1
-numslots=0
 P 100 14900 300 14900 1 0 0
 {
 T 300 14950 5 8 0 1 0 6 1
diff --git a/symbols/connector/connector38-2.sym b/symbols/connector/connector38-2.sym
index 1673d53..1592db8 100644
--- a/symbols/connector/connector38-2.sym
+++ b/symbols/connector/connector38-2.sym
@@ -9,8 +9,6 @@ T 400 16150 5 10 0 0 0 0 1
 author=Leon Kos
 T 400 16350 5 10 0 0 0 0 1
 description=generic connector
-T 400 16550 5 10 0 0 0 0 1
-numslots=0
 P 100 15300 300 15300 1 0 0
 {
 T 300 15350 5 8 0 1 0 6 1
diff --git a/symbols/connector/connector39-2.sym b/symbols/connector/connector39-2.sym
index 6c0b097..261f5c5 100644
--- a/symbols/connector/connector39-2.sym
+++ b/symbols/connector/connector39-2.sym
@@ -9,8 +9,6 @@ T 400 16550 5 10 0 0 0 0 1
 author=Leon Kos
 T 400 16750 5 10 0 0 0 0 1
 description=generic connector
-T 400 16950 5 10 0 0 0 0 1
-numslots=0
 P 100 15700 300 15700 1 0 0
 {
 T 300 15750 5 8 0 1 0 6 1
diff --git a/symbols/connector/connector4-2.sym b/symbols/connector/connector4-2.sym
index 117b047..906e994 100644
--- a/symbols/connector/connector4-2.sym
+++ b/symbols/connector/connector4-2.sym
@@ -9,8 +9,6 @@ T 300 2450 5 10 0 0 0 0 1
 author=Leon Kos
 T 300 2650 5 10 0 0 0 0 1
 description=generic connector
-T 300 2850 5 10 0 0 0 0 1
-numslots=0
 P 0 1600 200 1600 1 0 0
 {
 T 200 1650 5 8 0 1 0 6 1
diff --git a/symbols/connector/connector40-2.sym b/symbols/connector/connector40-2.sym
index ffb9fa2..2f488d0 100644
--- a/symbols/connector/connector40-2.sym
+++ b/symbols/connector/connector40-2.sym
@@ -9,8 +9,6 @@ T 400 16950 5 10 0 0 0 0 1
 author=Leon Kos
 T 400 17150 5 10 0 0 0 0 1
 description=generic connector
-T 400 17350 5 10 0 0 0 0 1
-numslots=0
 P 100 16100 300 16100 1 0 0
 {
 T 300 16150 5 8 0 1 0 6 1
diff --git a/symbols/connector/connector5-2.sym b/symbols/connector/connector5-2.sym
index 91356bc..a84e057 100644
--- a/symbols/connector/connector5-2.sym
+++ b/symbols/connector/connector5-2.sym
@@ -9,8 +9,6 @@ T 300 2850 5 10 0 0 0 0 1
 author=Leon Kos
 T 300 3050 5 10 0 0 0 0 1
 description=generic connector
-T 300 3250 5 10 0 0 0 0 1
-numslots=0
 P 0 2000 200 2000 1 0 0
 {
 T 200 2050 5 8 0 1 0 6 1
diff --git a/symbols/connector/connector6-2.sym b/symbols/connector/connector6-2.sym
index 36740f0..287eaab 100644
--- a/symbols/connector/connector6-2.sym
+++ b/symbols/connector/connector6-2.sym
@@ -9,8 +9,6 @@ T 300 3250 5 10 0 0 0 0 1
 author=Leon Kos
 T 300 3450 5 10 0 0 0 0 1
 description=generic connector
-T 300 3650 5 10 0 0 0 0 1
-numslots=0
 P 0 2400 200 2400 1 0 0
 {
 T 200 2450 5 8 0 1 0 6 1
diff --git a/symbols/connector/connector7-2.sym b/symbols/connector/connector7-2.sym
index fd3a1b0..0588488 100644
--- a/symbols/connector/connector7-2.sym
+++ b/symbols/connector/connector7-2.sym
@@ -9,8 +9,6 @@ T 300 3650 5 10 0 0 0 0 1
 author=Leon Kos
 T 300 3850 5 10 0 0 0 0 1
 description=generic connector
-T 300 4050 5 10 0 0 0 0 1
-numslots=0
 P 0 2800 200 2800 1 0 0
 {
 T 200 2850 5 8 0 1 0 6 1
diff --git a/symbols/connector/connector8-2.sym b/symbols/connector/connector8-2.sym
index 89996f6..5d1d4ee 100644
--- a/symbols/connector/connector8-2.sym
+++ b/symbols/connector/connector8-2.sym
@@ -9,8 +9,6 @@ T 300 4050 5 10 0 0 0 0 1
 author=Leon Kos
 T 300 4250 5 10 0 0 0 0 1
 description=generic connector
-T 300 4450 5 10 0 0 0 0 1
-numslots=0
 P 0 3200 200 3200 1 0 0
 {
 T 200 3250 5 8 0 1 0 6 1
diff --git a/symbols/connector/connector9-2.sym b/symbols/connector/connector9-2.sym
index b4a4b30..da1489f 100644
--- a/symbols/connector/connector9-2.sym
+++ b/symbols/connector/connector9-2.sym
@@ -9,8 +9,6 @@ T 300 4450 5 10 0 0 0 0 1
 author=Leon Kos
 T 300 4650 5 10 0 0 0 0 1
 description=generic connector
-T 300 4850 5 10 0 0 0 0 1
-numslots=0
 P 0 3600 200 3600 1 0 0
 {
 T 200 3650 5 8 0 1 0 6 1
diff --git a/symbols/connector/header26-2.sym b/symbols/connector/header26-2.sym
index e5cb41f..dfe122e 100644
--- a/symbols/connector/header26-2.sym
+++ b/symbols/connector/header26-2.sym
@@ -28,8 +28,6 @@ T 100 7800 8 10 1 1 0 0 1
 refdes=J?
 T 400 7900 8 10 0 0 0 0 1
 footprint=header26
-T 400 8100 8 10 0 0 0 0 1
-numslots=0
 T 400 8300 8 10 0 0 0 0 1
 device=header26
 P 1000 6800 1300 6800 1 0 1
diff --git a/symbols/connector/header32-2.sym b/symbols/connector/header32-2.sym
index b34006c..09354bd 100644
--- a/symbols/connector/header32-2.sym
+++ b/symbols/connector/header32-2.sym
@@ -28,8 +28,6 @@ T 100 9600 8 10 1 1 0 0 1
 refdes=J?
 T 400 9700 8 10 0 0 0 0 1
 footprint=header32
-T 400 9900 8 10 0 0 0 0 1
-numslots=0
 T 400 10100 8 10 0 0 0 0 1
 device=header32
 P 1000 8600 1300 8600 1 0 1
diff --git a/symbols/connector/header50-1.sym b/symbols/connector/header50-1.sym
index db97b20..57a3933 100644
--- a/symbols/connector/header50-1.sym
+++ b/symbols/connector/header50-1.sym
@@ -578,8 +578,6 @@ L 300 2000 1100 2000 3 0 0 0 -1 -1
 B 300 0 800 10000 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 250 10700 8 10 0 0 0 0 1
 device=HEADER50
-T 250 10500 8 10 0 0 0 0 1
-numslots=0
 T 250 10300 8 10 0 1 0 0 1
 description=Header 50 pins
 T 600 10100 8 10 1 1 0 0 1
diff --git a/symbols/connector/header50-3.sym b/symbols/connector/header50-3.sym
index d88e35a..8c8e024 100644
--- a/symbols/connector/header50-3.sym
+++ b/symbols/connector/header50-3.sym
@@ -28,8 +28,6 @@ T 100 15000 8 10 1 1 0 0 1
 refdes=J?
 T 1500 1300 8 10 0 0 0 0 1
 footprint=header50
-T 1500 1500 8 10 0 0 0 0 1
-numslots=0
 T 1500 1700 8 10 0 0 0 0 1
 device=HEADER50
 P 1000 14000 1300 14000 1 0 1
diff --git a/symbols/connector/header50r-1.sym b/symbols/connector/header50r-1.sym
index 77ffc13..3de179b 100644
--- a/symbols/connector/header50r-1.sym
+++ b/symbols/connector/header50r-1.sym
@@ -17,8 +17,6 @@ T 350 15100 8 10 1 1 0 6 1
 refdes=J?
 T 500 15700 8 10 0 0 0 0 1
 footprint=header50
-T 500 15900 8 10 0 0 0 0 1
-numslots=0
 T 500 16100 8 10 0 0 0 0 1
 device=HEADER50
 P 400 14200 100 14200 1 0 1
diff --git a/symbols/connector/header8-1.sym b/symbols/connector/header8-1.sym
index ed2bf96..fc33886 100644
--- a/symbols/connector/header8-1.sym
+++ b/symbols/connector/header8-1.sym
@@ -95,8 +95,6 @@ B 300 0 800 1600 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 0 1600 5 10 0 1 0 0 1
 device=HEADER8
 T 0 1600 5 10 0 1 0 0 1
-numslots=0
-T 0 1600 5 10 0 1 0 0 1
 description=Header 8 pins
 T 600 1700 8 10 1 1 0 0 1
 refdes=J?
diff --git a/symbols/connector/header8-2.sym b/symbols/connector/header8-2.sym
index 2d608bd..52568dd 100644
--- a/symbols/connector/header8-2.sym
+++ b/symbols/connector/header8-2.sym
@@ -95,8 +95,6 @@ B 300 0 800 1600 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 0 1600 5 10 0 1 0 0 1
 device=HEADER8
 T 0 1600 5 10 0 1 0 0 1
-numslots=0
-T 0 1600 5 10 0 1 0 0 1
 description=Header 8 pins
 T 600 1700 8 10 1 1 0 0 1
 refdes=J?
diff --git a/symbols/connector/mains-entry-1.sym b/symbols/connector/mains-entry-1.sym
index f06bc19..8366a14 100644
--- a/symbols/connector/mains-entry-1.sym
+++ b/symbols/connector/mains-entry-1.sym
@@ -50,8 +50,6 @@ T 150 2100 8 10 0 0 0 0 1
 device=MAINS_ENTRY
 T 150 1900 8 10 0 0 0 0 1
 description=equipment mains entry socket, IEC, female
-T 150 1700 8 10 0 0 0 0 1
-numslots=0
 T 150 1500 8 10 0 0 0 0 1
 footprint=none
 T 150 2300 8 10 0 0 0 0 1
diff --git a/symbols/connector/rj45-1.sym b/symbols/connector/rj45-1.sym
index 63b9d45..5a178ff 100644
--- a/symbols/connector/rj45-1.sym
+++ b/symbols/connector/rj45-1.sym
@@ -116,5 +116,3 @@ T 0 2300 5 10 0 0 0 0 1
 documentation=TBD
 T 0 1900 8 10 1 1 0 0 1
 refdes=CONN?
-T 0 3100 5 10 0 0 0 0 1
-numslots=0
diff --git a/symbols/connector/smart-media-1.sym b/symbols/connector/smart-media-1.sym
index 0447964..73d55f4 100644
--- a/symbols/connector/smart-media-1.sym
+++ b/symbols/connector/smart-media-1.sym
@@ -248,8 +248,6 @@ T 1800 4700 8 10 1 1 0 6 1
 refdes=CONN?
 T 200 5100 5 10 0 0 0 0 1
 footprint=DIP22
-T 200 5300 5 10 0 0 0 0 1
-numslots=0
 T 200 5500 5 10 0 0 0 0 1
 symversion=1.1
 T 200 5700 5 10 0 0 0 0 1
diff --git a/symbols/connector/terminal-1.sym b/symbols/connector/terminal-1.sym
index fb13b48..572ac00 100644
--- a/symbols/connector/terminal-1.sym
+++ b/symbols/connector/terminal-1.sym
@@ -17,7 +17,5 @@ T 310 600 8 10 0 0 0 0 1
 footprint=CONNECTOR 1 1
 T 300 900 8 10 0 1 0 0 1
 author=Karel 'Clock' Kulhavy <clock@xxxxxxxxxxxxx>
-T 300 1100 8 10 0 0 0 0 1
-numslots=0
 T 250 50 8 10 1 1 0 6 1
 refdes=T?
diff --git a/symbols/diode/led-3.sym b/symbols/diode/led-3.sym
index 546864a..0d8fdc3 100644
--- a/symbols/diode/led-3.sym
+++ b/symbols/diode/led-3.sym
@@ -39,5 +39,3 @@ L 400 500 425 450 3 0 0 0 -1 -1
 L 400 500 450 475 3 0 0 0 -1 -1
 T 950 550 5 10 0 0 0 0 1
 description=Generic LED
-T 950 450 5 10 0 0 0 0 1
-numslots=0
diff --git a/symbols/diode/sa52-11-1.sym b/symbols/diode/sa52-11-1.sym
index 671fb57..4f02ab3 100644
--- a/symbols/diode/sa52-11-1.sym
+++ b/symbols/diode/sa52-11-1.sym
@@ -5,8 +5,6 @@ T 300 3550 5 10 0 0 0 0 1
 device=sa52-11
 T 300 3750 5 10 0 0 0 0 1
 footprint=none
-T 300 3950 5 10 0 0 0 0 1
-numslots=0
 T 300 4150 5 10 0 0 0 0 1
 description=7-segment-display with common anode
 P 900 3500 900 3200 1 0 0
diff --git a/symbols/diode/sc52-11-1.sym b/symbols/diode/sc52-11-1.sym
index ef086b2..c7fa5af 100644
--- a/symbols/diode/sc52-11-1.sym
+++ b/symbols/diode/sc52-11-1.sym
@@ -5,8 +5,6 @@ T 300 3550 5 10 0 0 0 0 1
 device=sc52-11
 T 300 3750 5 10 0 0 0 0 1
 footprint=none
-T 300 3950 5 10 0 0 0 0 1
-numslots=0
 T 300 4150 5 10 0 0 0 0 1
 description=7-segment-display with common cathode
 P 900 0 900 300 1 0 0
diff --git a/symbols/diode/schottky-1.sym b/symbols/diode/schottky-1.sym
index 8a86375..929cef7 100644
--- a/symbols/diode/schottky-1.sym
+++ b/symbols/diode/schottky-1.sym
@@ -35,5 +35,3 @@ T 300 500 8 10 1 1 0 0 1
 refdes=D?
 T 341 832 8 10 0 1 0 0 1
 footprint=SOD80
-T 567 515 8 10 0 0 0 0 1
-numslots=0
diff --git a/symbols/gnetman/idc-1.sym b/symbols/gnetman/idc-1.sym
index 40cacaa..f604593 100644
--- a/symbols/gnetman/idc-1.sym
+++ b/symbols/gnetman/idc-1.sym
@@ -5,8 +5,6 @@ T 700 850 5 10 0 0 0 0 1
 spice-type=I
 T 700 1050 5 10 0 0 0 0 1
 footprint=none
-T 700 1250 5 10 0 0 0 0 1
-numslots=0
 T 700 1450 5 10 0 0 0 0 1
 description=dc current source
 P 300 1200 300 900 1 0 0
diff --git a/symbols/gnetman/vdc-1.sym b/symbols/gnetman/vdc-1.sym
index 8254504..da041b9 100644
--- a/symbols/gnetman/vdc-1.sym
+++ b/symbols/gnetman/vdc-1.sym
@@ -3,8 +3,6 @@ T 700 650 8 10 1 1 0 0 1
 refdes=V?
 T 700 850 5 10 0 0 0 0 1
 spicetype=V
-T 700 1250 5 10 0 0 0 0 1
-numslots=0
 T 700 1450 5 10 0 0 0 0 1
 description=dc power source
 P 300 1200 300 900 1 0 0
diff --git a/symbols/irf/ips021-1.sym b/symbols/irf/ips021-1.sym
index f1a2f23..87a6e9a 100644
--- a/symbols/irf/ips021-1.sym
+++ b/symbols/irf/ips021-1.sym
@@ -37,8 +37,6 @@ T 1100 950 8 10 1 1 0 0 1
 refdes=U?
 T 200 950 3 10 1 1 0 0 1
 device=IPS021
-T 2100 2100 8 10 0 0 0 0 1
-numslots=0
 T 2100 1800 8 10 0 0 0 0 1
 footprint=TO220
 T 2100 1200 8 10 0 0 0 0 1
diff --git a/symbols/linear/lm135-1.sym b/symbols/linear/lm135-1.sym
index c1c0a1e..79d951d 100644
--- a/symbols/linear/lm135-1.sym
+++ b/symbols/linear/lm135-1.sym
@@ -50,8 +50,6 @@ T 300 1400 5 10 0 0 0 0 1
 footprint=TO92
 T 300 1600 5 10 0 0 0 0 1
 description=precision temperature sensor
-T 300 1800 5 10 0 0 0 0 1
-numslots=0
 T 300 1200 5 10 0 0 0 0 1
 documentation=http://www.national.com/ds.cgi/LM/LM135.pdf
 T 200 650 9 8 1 0 0 0 1
diff --git a/symbols/linear/lm723-1.sym b/symbols/linear/lm723-1.sym
index ceb6284..ee39aea 100644
--- a/symbols/linear/lm723-1.sym
+++ b/symbols/linear/lm723-1.sym
@@ -135,5 +135,3 @@ T 300 4000 8 10 0 0 0 0 1
 description=Voltage regulator
 T 300 4400 8 10 0 0 0 0 1
 author=Radoslaw Korzeniewski <radoslaw@xxxxxxxxxxxxxxxx>
-T 300 4200 8 10 0 0 0 0 1
-numslots=0
diff --git a/symbols/linear/lm7912-1.sym b/symbols/linear/lm7912-1.sym
index 53516bb..9ed6e45 100644
--- a/symbols/linear/lm7912-1.sym
+++ b/symbols/linear/lm7912-1.sym
@@ -41,8 +41,6 @@ T 300 1750 5 10 0 0 0 0 1
 footprint=TO220
 T 300 1950 5 10 0 0 0 0 1
 description=negative voltage regulator
-T 300 1550 5 10 0 0 0 0 1
-numslots=0
 T 300 1350 5 10 0 0 0 0 1
 symversion=1.0
 T 300 2150 5 10 0 0 0 0 1
diff --git a/symbols/linear/lp2954IT-1.sym b/symbols/linear/lp2954IT-1.sym
index 22accb3..e678295 100644
--- a/symbols/linear/lp2954IT-1.sym
+++ b/symbols/linear/lp2954IT-1.sym
@@ -43,8 +43,6 @@ T 1600 1100 8 10 0 0 0 0 1
 pins=3
 T 1600 900 8 10 0 0 0 0 1
 net=GND:2
-T 1600 1470 8 10 0 0 0 0 1
-numslots=0
 T 1600 1620 8 10 0 0 0 0 1
 footprint=TO220
 T 1600 1820 8 10 0 0 0 0 1
diff --git a/symbols/linear/lt1160-1.sym b/symbols/linear/lt1160-1.sym
index f6005c8..284c361 100644
--- a/symbols/linear/lt1160-1.sym
+++ b/symbols/linear/lt1160-1.sym
@@ -6,8 +6,6 @@ T 400 4100 5 10 0 0 0 0 1
 description=Half-bridge N-channel Power MOSFET Driver
 T 400 4300 5 10 0 0 0 0 1
 documentation=http://www.linear.com/pdf/11602fa.pdf
-T 400 4500 5 10 0 0 0 0 1
-numslots=0
 T 400 3700 8 10 1 1 0 0 1
 refdes=U?
 T 400 3900 5 10 0 0 0 0 1
diff --git a/symbols/linear/lt1782-1.sym b/symbols/linear/lt1782-1.sym
index 73e7d3c..600a25d 100644
--- a/symbols/linear/lt1782-1.sym
+++ b/symbols/linear/lt1782-1.sym
@@ -50,8 +50,6 @@ T 200 1750 5 10 0 0 0 0 1
 device=LT1782
 T 200 1550 5 10 0 0 0 0 1
 description=rail-to-rail input and output opamp
-T 200 1950 5 10 0 0 0 0 1
-numslots=0
 T 200 1350 5 10 0 0 0 0 1
 documentation=http://www.linear.com.cn/pdf/1782fa.pdf
 T 200 900 9 10 1 0 0 0 1
diff --git a/symbols/maxim/DS1307-1.sym b/symbols/maxim/DS1307-1.sym
index a34b468..0fe19fd 100644
--- a/symbols/maxim/DS1307-1.sym
+++ b/symbols/maxim/DS1307-1.sym
@@ -13,8 +13,6 @@ T 300 3050 8 10 0 0 0 0 1
 documentation=http://www.maxim.com
 T 300 3250 8 10 0 0 0 0 1
 description=real time clock, 64x8, serial, i2c
-T 300 3450 8 10 0 0 0 0 1
-numslots=0
 P 0 1600 300 1600 1 0 0
 {
 T 200 1650 5 8 1 1 0 6 1
diff --git a/symbols/maxim/DS89C450-1.sym b/symbols/maxim/DS89C450-1.sym
index d09d3dd..778acf6 100644
--- a/symbols/maxim/DS89C450-1.sym
+++ b/symbols/maxim/DS89C450-1.sym
@@ -430,8 +430,6 @@ T 2500 600 5 8 0 1 0 3 1
 pintype=out
 }
 B 400 400 2600 8400 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
-T 400 9450 8 10 0 0 0 0 1
-numslots=0
 T 400 9250 8 10 0 0 0 0 1
 description=Ultra-High-Speed Flash Microcontroller
 T 400 10250 8 10 0 0 0 0 1
diff --git a/symbols/maxim/adc0820-1.sym b/symbols/maxim/adc0820-1.sym
index f3eacb6..d68c08c 100644
--- a/symbols/maxim/adc0820-1.sym
+++ b/symbols/maxim/adc0820-1.sym
@@ -198,8 +198,6 @@ T 300 4550 5 10 0 0 0 0 1
 footprint=DIP20
 T 300 4750 5 10 0 0 0 0 1
 description=8-bit A/D-converter with track/hold function
-T 300 4350 5 10 0 0 0 0 1
-numslots=0
 T 300 4950 5 10 0 0 0 0 1
 net=Vcc:20
 T 300 5150 5 10 0 0 0 0 1
diff --git a/symbols/maxim/adm202-1.sym b/symbols/maxim/adm202-1.sym
index e35ad44..dc3c2d4 100644
--- a/symbols/maxim/adm202-1.sym
+++ b/symbols/maxim/adm202-1.sym
@@ -162,8 +162,6 @@ T 300 3250 5 10 0 0 0 0 1
 footprint=DIP16
 T 300 3450 5 10 0 0 0 0 1
 description=5V-powered dual RS-232 driver/receiver
-T 300 4050 5 10 0 0 0 0 1
-numslots=0
 T 300 3650 5 10 0 0 0 0 1
 net=Vcc:16
 T 300 3850 5 10 0 0 0 0 1
diff --git a/symbols/maxim/adm202-2.sym b/symbols/maxim/adm202-2.sym
index 0828432..5df06cd 100644
--- a/symbols/maxim/adm202-2.sym
+++ b/symbols/maxim/adm202-2.sym
@@ -162,8 +162,6 @@ T 300 3850 5 10 0 0 0 0 1
 footprint=DIP16
 T 300 4050 5 10 0 0 0 0 1
 description=5V-powered dual RS-232 driver/receiver
-T 300 4650 5 10 0 0 0 0 1
-numslots=0
 T 300 4250 5 10 0 0 0 0 1
 net=Vcc:16
 T 300 4450 5 10 0 0 0 0 1
diff --git a/symbols/maxim/max038-1.sym b/symbols/maxim/max038-1.sym
index be255eb..1f9bf73 100644
--- a/symbols/maxim/max038-1.sym
+++ b/symbols/maxim/max038-1.sym
@@ -153,8 +153,6 @@ T 300 4050 9 10 1 0 0 0 1
 MAX038
 T 300 5250 5 10 0 0 0 0 1
 description=high frequency waveform generator
-T 300 5450 5 10 0 0 0 0 1
-numslots=0
 T 300 4650 5 10 0 0 0 0 1
 net=DV+:16
 T 300 4850 5 10 0 0 0 0 1
diff --git a/symbols/maxim/max038-2.sym b/symbols/maxim/max038-2.sym
index c20ba74..056be4e 100644
--- a/symbols/maxim/max038-2.sym
+++ b/symbols/maxim/max038-2.sym
@@ -129,8 +129,6 @@ T 300 3650 5 10 0 0 0 0 1
 footprint=DIP20
 T 300 3850 5 10 0 0 0 0 1
 description=high frequency waveform generator
-T 300 3450 5 10 0 0 0 0 1
-numslots=0
 T 300 4250 5 10 0 0 0 0 1
 net=V+:17
 T 300 4450 5 10 0 0 0 0 1
diff --git a/symbols/maxim/max100-1.sym b/symbols/maxim/max100-1.sym
index bdb9d99..337ceef 100644
--- a/symbols/maxim/max100-1.sym
+++ b/symbols/maxim/max100-1.sym
@@ -284,8 +284,6 @@ T 300 8450 5 10 0 0 0 0 1
 footprint=CFP84
 T 300 8650 5 10 0 0 0 0 1
 description=250Msps, 8-bit ADC with track/hold
-T 300 8250 5 10 0 0 0 0 1
-numslots=0
 T 300 8850 5 10 0 0 0 0 1
 net=GND:4,7,15,49,57,60,64,67,70,71,74,77,78,79,82,84
 T 300 9250 5 10 0 0 0 0 1
diff --git a/symbols/maxim/max1005-1.sym b/symbols/maxim/max1005-1.sym
index f148b88..2693412 100644
--- a/symbols/maxim/max1005-1.sym
+++ b/symbols/maxim/max1005-1.sym
@@ -142,8 +142,6 @@ T 300 4250 9 10 1 0 0 0 1
 MAX1005
 T 300 5050 5 10 0 0 0 0 1
 description=IF undersampler
-T 300 4650 5 10 0 0 0 0 1
-numslots=0
 T 300 5650 5 10 0 0 0 0 1
 net=VCCD:1
 T 300 5850 5 10 0 0 0 0 1
diff --git a/symbols/maxim/max1005-2.sym b/symbols/maxim/max1005-2.sym
index c306fbc..fce8792 100644
--- a/symbols/maxim/max1005-2.sym
+++ b/symbols/maxim/max1005-2.sym
@@ -142,8 +142,6 @@ T 300 4850 5 10 0 0 0 0 1
 footprint=QSOP16
 T 300 5050 5 10 0 0 0 0 1
 description=IF undersampler
-T 300 4650 5 10 0 0 0 0 1
-numslots=0
 T 300 5650 5 10 0 0 0 0 1
 net=VCCD:1
 T 300 5850 5 10 0 0 0 0 1
diff --git a/symbols/maxim/max1011-1.sym b/symbols/maxim/max1011-1.sym
index dd1c1a7..559c2f6 100644
--- a/symbols/maxim/max1011-1.sym
+++ b/symbols/maxim/max1011-1.sym
@@ -162,8 +162,6 @@ T 300 4050 5 10 0 0 0 0 1
 footprint=QSOP24
 T 300 4250 5 10 0 0 0 0 1
 description=low power, 90Msps, 6-bit ADC
-T 300 3850 5 10 0 0 0 0 1
-numslots=0
 T 300 4850 5 10 0 0 0 0 1
 net=VCC:6,11,14
 T 300 5050 5 10 0 0 0 0 1
diff --git a/symbols/maxim/max1011-2.sym b/symbols/maxim/max1011-2.sym
index b427fb2..c319eab 100644
--- a/symbols/maxim/max1011-2.sym
+++ b/symbols/maxim/max1011-2.sym
@@ -162,8 +162,6 @@ T 300 3650 5 10 0 0 0 0 1
 footprint=QSOP24
 T 300 3850 5 10 0 0 0 0 1
 description=low power, 90Msps, 6-bit ADC
-T 300 3450 5 10 0 0 0 0 1
-numslots=0
 T 300 4450 5 10 0 0 0 0 1
 net=VCC:6,11,14
 T 300 4650 5 10 0 0 0 0 1
diff --git a/symbols/maxim/max101A-1.sym b/symbols/maxim/max101A-1.sym
index 3bd7b1f..4101b8b 100644
--- a/symbols/maxim/max101A-1.sym
+++ b/symbols/maxim/max101A-1.sym
@@ -428,8 +428,6 @@ T 300 8450 5 10 0 0 0 0 1
 footprint=CFP84
 T 300 8650 5 10 0 0 0 0 1
 description=500Msps, 8-bit ADC with track/hold
-T 300 8250 5 10 0 0 0 0 1
-numslots=0
 V 250 5500 50 6 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 P 300 4100 0 4100 1 0 1
 {
diff --git a/symbols/maxim/max1080-1.sym b/symbols/maxim/max1080-1.sym
index 8421ae5..e4e2188 100644
--- a/symbols/maxim/max1080-1.sym
+++ b/symbols/maxim/max1080-1.sym
@@ -230,8 +230,6 @@ pintype=io
 T 1750 300 9 8 1 1 0 6 1
 pinlabel=REF
 }
-T 300 4150 5 10 0 0 0 0 1
-numslots=0
 T 300 4350 5 10 0 0 0 0 1
 documentation=http://pdfserv.maxim-ic.com/en/ds/MAX1080-MAX1081.pdf
 T 300 3950 5 10 0 0 0 0 1
diff --git a/symbols/maxim/max1081-1.sym b/symbols/maxim/max1081-1.sym
index 9762f78..bf15353 100644
--- a/symbols/maxim/max1081-1.sym
+++ b/symbols/maxim/max1081-1.sym
@@ -230,8 +230,6 @@ pintype=io
 T 1750 300 9 8 1 1 0 6 1
 pinlabel=REF
 }
-T 300 3950 5 10 0 0 0 0 1
-numslots=0
 T 300 4150 5 10 0 0 0 0 1
 description=8-channel, serial 10-bit ADC with internal reference
 T 300 4350 5 10 0 0 0 0 1
diff --git a/symbols/maxim/max1114-1.sym b/symbols/maxim/max1114-1.sym
index 4229323..036e0e9 100644
--- a/symbols/maxim/max1114-1.sym
+++ b/symbols/maxim/max1114-1.sym
@@ -277,8 +277,6 @@ T 300 6350 5 10 0 0 0 0 1
 device=MAX1114
 T 300 6550 5 10 0 0 0 0 1
 footprint=CERQUAD44
-T 300 6750 5 10 0 0 0 0 1
-numslots=0
 T 300 6950 5 10 0 0 0 0 1
 description=8-bit, 150Msps Flash ADC
 T 300 7150 5 10 0 0 0 0 1
diff --git a/symbols/maxim/max1114-2.sym b/symbols/maxim/max1114-2.sym
index 434416a..99f1673 100644
--- a/symbols/maxim/max1114-2.sym
+++ b/symbols/maxim/max1114-2.sym
@@ -7,8 +7,6 @@ T 300 5650 5 10 0 0 0 0 1
 device=MAX1114
 T 300 5850 5 10 0 0 0 0 1
 footprint=CERQUAD44
-T 300 6050 5 10 0 0 0 0 1
-numslots=0
 T 300 6250 5 10 0 0 0 0 1
 description=8-bit, 150Msps Flash ADC
 P 2600 5100 2300 5100 1 0 0
diff --git a/symbols/maxim/max1206-1.sym b/symbols/maxim/max1206-1.sym
index c844228..98e752c 100644
--- a/symbols/maxim/max1206-1.sym
+++ b/symbols/maxim/max1206-1.sym
@@ -459,7 +459,5 @@ pintype=pwr
 }
 T 1000 5400 8 10 1 1 0 0 1
 footprint=TQFN40_6_EP
-T 1600 5000 8 10 0 0 0 0 1
-numslots=0
 T 3800 5000 5 10 0 0 0 0 1
 documentation=http://pdfserv.maxim-ic.com/en/ds/MAX1206.pdf
diff --git a/symbols/maxim/max1207-1.sym b/symbols/maxim/max1207-1.sym
index b290d21..438f3aa 100644
--- a/symbols/maxim/max1207-1.sym
+++ b/symbols/maxim/max1207-1.sym
@@ -459,7 +459,5 @@ pintype=pwr
 }
 T 1000 5400 8 10 1 1 0 0 1
 footprint=TQFN40_6_EP
-T 1600 5000 8 10 0 0 0 0 1
-numslots=0
 T 3800 5000 5 10 0 0 0 0 1
 documentation=http://pdfserv.maxim-ic.com/en/ds/MAX1207.pdf
diff --git a/symbols/maxim/max1208-1.sym b/symbols/maxim/max1208-1.sym
index a76f495..19388dd 100644
--- a/symbols/maxim/max1208-1.sym
+++ b/symbols/maxim/max1208-1.sym
@@ -459,7 +459,5 @@ pintype=pwr
 }
 T 1000 5400 8 10 1 1 0 0 1
 footprint=TQFN40_6_EP
-T 1600 5000 8 10 0 0 0 0 1
-numslots=0
 T 3800 5000 5 10 0 0 0 0 1
 documentation=http://pdfserv.maxim-ic.com/en/ds/MAX1208.pdf
diff --git a/symbols/maxim/max1209-1.sym b/symbols/maxim/max1209-1.sym
index bae48c1..04f2892 100644
--- a/symbols/maxim/max1209-1.sym
+++ b/symbols/maxim/max1209-1.sym
@@ -459,7 +459,5 @@ pintype=pwr
 }
 T 1000 5400 8 10 1 1 0 0 1
 footprint=TQFN40_6_EP
-T 1600 5000 8 10 0 0 0 0 1
-numslots=0
 T 3800 5000 5 10 0 0 0 0 1
 documentation=http://pdfserv.maxim-ic.com/en/ds/MAX1209.pdf
diff --git a/symbols/maxim/max1211-1.sym b/symbols/maxim/max1211-1.sym
index d3b2be3..71b2fc2 100644
--- a/symbols/maxim/max1211-1.sym
+++ b/symbols/maxim/max1211-1.sym
@@ -457,8 +457,6 @@ pintype=pwr
 }
 T 3800 5400 5 10 0 0 0 0 1
 footprint=TQFN40_6_EP
-T 3800 6000 5 10 0 0 0 0 1
-numslots=0
 T 3800 5800 5 10 0 0 0 0 1
 symversion=1.0
 T 3800 5200 5 10 0 0 0 0 1
diff --git a/symbols/maxim/max122-1.sym b/symbols/maxim/max122-1.sym
index 17b0d43..90d7cd3 100644
--- a/symbols/maxim/max122-1.sym
+++ b/symbols/maxim/max122-1.sym
@@ -10,8 +10,6 @@ T 375 6850 5 10 0 0 0 0 1
 net=VDD:3
 T 375 7050 5 10 0 0 0 0 1
 net=VSS:2
-T 375 6050 5 10 0 0 0 0 1
-numslots=0
 T 375 6450 5 10 0 0 0 0 1
 net=AGND:6
 T 375 6650 5 10 0 0 0 0 1
diff --git a/symbols/maxim/max12527-1.sym b/symbols/maxim/max12527-1.sym
index e368476..4cff9bf 100644
--- a/symbols/maxim/max12527-1.sym
+++ b/symbols/maxim/max12527-1.sym
@@ -857,8 +857,6 @@ ADC - CH. B
 T 1500 10900 8 10 1 1 0 0 1
 footprint=TQFN68_10_EP
 B 400 400 4900 11800 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
-T 6400 5600 5 10 0 0 0 0 1
-numslots=0
 T 6400 5400 5 10 0 0 0 0 1
 symversion=1.0
 T 6400 5200 5 10 0 0 0 0 1
diff --git a/symbols/maxim/max12528-1.sym b/symbols/maxim/max12528-1.sym
index 9c124e4..bee8adf 100644
--- a/symbols/maxim/max12528-1.sym
+++ b/symbols/maxim/max12528-1.sym
@@ -857,8 +857,6 @@ ADC - CH. B
 T 1500 10900 8 10 1 1 0 0 1
 footprint=TQFN68_10_EP
 B 400 400 4900 11800 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
-T 6400 5600 5 10 0 0 0 0 1
-numslots=0
 T 6400 5400 5 10 0 0 0 0 1
 symversion=1.0
 T 6400 5200 5 10 0 0 0 0 1
diff --git a/symbols/maxim/max12529-1.sym b/symbols/maxim/max12529-1.sym
index 2a050f1..69c1b68 100644
--- a/symbols/maxim/max12529-1.sym
+++ b/symbols/maxim/max12529-1.sym
@@ -857,8 +857,6 @@ ADC - CH. B
 T 1500 10900 8 10 1 1 0 0 1
 footprint=TQFN68_10_EP
 B 400 400 4900 11800 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
-T 6400 5600 5 10 0 0 0 0 1
-numslots=0
 T 6400 5400 5 10 0 0 0 0 1
 symversion=1.0
 T 6400 5200 5 10 0 0 0 0 1
diff --git a/symbols/maxim/max12553-1.sym b/symbols/maxim/max12553-1.sym
index 893eb71..8b6b41d 100644
--- a/symbols/maxim/max12553-1.sym
+++ b/symbols/maxim/max12553-1.sym
@@ -459,8 +459,6 @@ pintype=pwr
 }
 T 1000 5400 8 10 1 1 0 0 1
 footprint=TQFN40_6_EP
-T 4100 5700 8 10 0 0 0 0 1
-numslots=0
 T 4100 5500 8 10 0 0 0 0 1
 description=14-Bit, 65Msps, 3.3V ADC
 T 4100 5200 8 10 0 0 0 0 1
diff --git a/symbols/maxim/max12554-1.sym b/symbols/maxim/max12554-1.sym
index 236e8e2..dc60563 100644
--- a/symbols/maxim/max12554-1.sym
+++ b/symbols/maxim/max12554-1.sym
@@ -459,8 +459,6 @@ pintype=pwr
 }
 T 1000 5400 8 10 1 1 0 0 1
 footprint=TQFN40_6_EP
-T 4100 5700 8 10 0 0 0 0 1
-numslots=0
 T 4100 5500 8 10 0 0 0 0 1
 description=14-Bit, 80Msps, 3.3V ADC
 T 4100 5200 8 10 0 0 0 0 1
diff --git a/symbols/maxim/max12555-1.sym b/symbols/maxim/max12555-1.sym
index 685cce8..72e9b4d 100644
--- a/symbols/maxim/max12555-1.sym
+++ b/symbols/maxim/max12555-1.sym
@@ -459,8 +459,6 @@ pintype=pwr
 }
 T 1000 5400 8 10 1 1 0 0 1
 footprint=TQFN40_6_EP
-T 4100 5700 8 10 0 0 0 0 1
-numslots=0
 T 4100 5500 8 10 0 0 0 0 1
 description=14-Bit, 95Msps, 3.3V ADC
 T 4100 5200 8 10 0 0 0 0 1
diff --git a/symbols/maxim/max12557-1.sym b/symbols/maxim/max12557-1.sym
index a39aaaa..30b7956 100644
--- a/symbols/maxim/max12557-1.sym
+++ b/symbols/maxim/max12557-1.sym
@@ -865,8 +865,6 @@ ADC - CH. B
 T 1500 10900 8 10 1 1 0 0 1
 footprint=TQFN68_10_EP
 B 400 400 4900 11800 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
-T 6400 5600 5 10 0 0 0 0 1
-numslots=0
 T 6400 5400 5 10 0 0 0 0 1
 symversion=1.0
 T 6400 5200 5 10 0 0 0 0 1
diff --git a/symbols/maxim/max12558-1.sym b/symbols/maxim/max12558-1.sym
index 09aec90..5b92baf 100644
--- a/symbols/maxim/max12558-1.sym
+++ b/symbols/maxim/max12558-1.sym
@@ -865,8 +865,6 @@ ADC - CH. B
 T 1500 10900 8 10 1 1 0 0 1
 footprint=TQFN68_10_EP
 B 400 400 4900 11800 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
-T 6400 5600 5 10 0 0 0 0 1
-numslots=0
 T 6400 5400 5 10 0 0 0 0 1
 symversion=1.0
 T 6400 5200 5 10 0 0 0 0 1
diff --git a/symbols/maxim/max12559-1.sym b/symbols/maxim/max12559-1.sym
index 33497c9..0c768de 100644
--- a/symbols/maxim/max12559-1.sym
+++ b/symbols/maxim/max12559-1.sym
@@ -865,8 +865,6 @@ ADC - CH. B
 T 1500 10900 8 10 1 1 0 0 1
 footprint=TQFN68_10_EP
 B 400 400 4900 11800 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
-T 6400 5600 5 10 0 0 0 0 1
-numslots=0
 T 6400 5400 5 10 0 0 0 0 1
 symversion=1.0
 T 6400 5200 5 10 0 0 0 0 1
diff --git a/symbols/maxim/max135-1.sym b/symbols/maxim/max135-1.sym
index c48bf07..42c67ff 100644
--- a/symbols/maxim/max135-1.sym
+++ b/symbols/maxim/max135-1.sym
@@ -264,8 +264,6 @@ T 300 5950 5 10 0 0 0 0 1
 footprint=DIP28
 T 300 6150 5 10 0 0 0 0 1
 description=15-bit ADC with parallel interface
-T 300 5750 5 10 0 0 0 0 1
-numslots=0
 T 300 6350 5 10 0 0 0 0 1
 net=DGND:14
 T 300 6550 5 10 0 0 0 0 1
diff --git a/symbols/maxim/max1407-1.sym b/symbols/maxim/max1407-1.sym
index 6227444..89a322a 100644
--- a/symbols/maxim/max1407-1.sym
+++ b/symbols/maxim/max1407-1.sym
@@ -327,8 +327,6 @@ pintype=out
 L 300 2900 300 1800 3 0 0 0 -1 -1
 T 1300 4200 5 12 0 0 0 3 1
 device=MAX1407
-T 380 4640 5 10 0 0 0 0 1
-numslots=0
 T 380 4840 5 10 0 0 0 0 1
 documentation=http://pdfserv.maxim-ic.com/en/ds/MAX1407-MAX1414.pdf
 T 380 5040 5 10 0 0 0 0 1
diff --git a/symbols/maxim/max147-1.sym b/symbols/maxim/max147-1.sym
index 4adefe1..7c8f21f 100644
--- a/symbols/maxim/max147-1.sym
+++ b/symbols/maxim/max147-1.sym
@@ -197,8 +197,6 @@ T 300 4750 5 10 0 0 0 0 1
 footprint=DIP20
 T 300 4950 5 10 0 0 0 0 1
 description=8-channel, serial 12-bit ADC
-T 300 4550 5 10 0 0 0 0 1
-numslots=0
 T 300 5750 5 10 0 0 0 0 1
 net=AGND:13
 T 300 5350 5 10 0 0 0 0 1
diff --git a/symbols/maxim/max1480A-1.sym b/symbols/maxim/max1480A-1.sym
index cf6f431..5d5c28e 100644
--- a/symbols/maxim/max1480A-1.sym
+++ b/symbols/maxim/max1480A-1.sym
@@ -7,8 +7,6 @@ T 300 4450 5 10 0 0 0 0 1
 device=MAX1480A
 T 300 4650 5 10 0 0 0 0 1
 footprint=DIP28
-T 300 4850 5 10 0 0 0 0 1
-numslots=0
 T 300 5050 5 10 0 0 0 0 1
 description=complete, isolated RS-485/RS-422 data interface
 T 300 5250 5 10 0 0 0 0 1
diff --git a/symbols/maxim/max1482-1.sym b/symbols/maxim/max1482-1.sym
index 3756422..d9b13a1 100644
--- a/symbols/maxim/max1482-1.sym
+++ b/symbols/maxim/max1482-1.sym
@@ -97,8 +97,6 @@ T 300 2650 5 10 0 0 0 0 1
 footprint=DIP14
 T 300 2850 5 10 0 0 0 0 1
 description=1/8-unit-load, slew-rate-limited RS-485 transceiver
-T 300 2450 5 10 0 0 0 0 1
-numslots=0
 T 300 3050 5 10 0 0 0 0 1
 net=GND:6,7
 T 300 3250 5 10 0 0 0 0 1
diff --git a/symbols/maxim/max1608-1.sym b/symbols/maxim/max1608-1.sym
index ce2ce7f..83dae67 100644
--- a/symbols/maxim/max1608-1.sym
+++ b/symbols/maxim/max1608-1.sym
@@ -186,8 +186,6 @@ pintype=pwr
 T 1750 300 9 8 1 1 0 6 1
 pinlabel=GND
 }
-T 300 2950 5 10 0 0 0 0 1
-numslots=0
 T 300 3550 5 10 0 0 0 0 1
 description=octal SMBus-to-parallel IO-expander
 T 300 3750 5 10 0 0 0 0 1
diff --git a/symbols/maxim/max1609-1.sym b/symbols/maxim/max1609-1.sym
index 9f27d95..6ca490c 100644
--- a/symbols/maxim/max1609-1.sym
+++ b/symbols/maxim/max1609-1.sym
@@ -186,8 +186,6 @@ pintype=pwr
 T 1750 300 9 8 1 1 0 6 1
 pinlabel=GND
 }
-T 300 2950 5 10 0 0 0 0 1
-numslots=0
 T 300 3550 5 10 0 0 0 0 1
 description=octal SMBus-to-parallel IO-expander
 T 300 3750 5 10 0 0 0 0 1
diff --git a/symbols/maxim/max1614-1.sym b/symbols/maxim/max1614-1.sym
index beb4e41..5d2a804 100644
--- a/symbols/maxim/max1614-1.sym
+++ b/symbols/maxim/max1614-1.sym
@@ -87,8 +87,6 @@ T 300 2850 5 10 0 0 0 0 1
 footprint=uMAX8
 T 300 3050 5 10 0 0 0 0 1
 description=high-side, N-Channel MOSFET Switch Driver
-T 300 2450 5 10 0 0 0 0 1
-numslots=0
 T 300 3250 5 10 0 0 0 0 1
 documentation=http://pdfserv.maxim-ic.com/en/ds/MAX1614.pdf
 T 300 2250 9 10 1 0 0 0 1
diff --git a/symbols/maxim/max1620-1.sym b/symbols/maxim/max1620-1.sym
index c227633..97106b0 100644
--- a/symbols/maxim/max1620-1.sym
+++ b/symbols/maxim/max1620-1.sym
@@ -152,8 +152,6 @@ T 300 4450 5 10 0 0 0 0 1
 footprint=QSOP16
 T 300 5050 5 10 0 0 0 0 1
 description=digitally adjustable LCD bias supplies
-T 300 4250 5 10 0 0 0 0 1
-numslots=0
 T 300 4850 5 10 0 0 0 0 1
 documentation=http://pdfserv.maxim-ic.com/en/ds/MAX1620-MAX1621.pdf
 T 300 4050 9 10 1 0 0 0 1
diff --git a/symbols/maxim/max1637-1.sym b/symbols/maxim/max1637-1.sym
index 02e63f1..4605398 100644
--- a/symbols/maxim/max1637-1.sym
+++ b/symbols/maxim/max1637-1.sym
@@ -141,8 +141,6 @@ T 300 4300 5 10 0 0 0 0 1
 footprint=QSOP16
 T 300 5300 5 10 0 0 0 0 1
 description=low voltage step-down controller
-T 300 4100 5 10 0 0 0 0 1
-numslots=0
 T 300 4500 5 10 0 0 0 0 1
 net=Vcc:9
 T 300 4700 5 10 0 0 0 0 1
diff --git a/symbols/maxim/max1674-1.sym b/symbols/maxim/max1674-1.sym
index 13be70f..f980192 100644
--- a/symbols/maxim/max1674-1.sym
+++ b/symbols/maxim/max1674-1.sym
@@ -96,8 +96,6 @@ T 300 3450 5 10 0 0 0 0 1
 footprint=uMAX8
 T 300 3650 5 10 0 0 0 0 1
 description=low-supply-current step-up DC-DC converter
-T 300 3050 5 10 0 0 0 0 1
-numslots=0
 T 300 3850 5 10 0 0 0 0 1
 documentation=http://pdfserv.maxim-ic.com/en/ds/MAX1674-MAX1676.pdf
 T 300 2850 9 10 1 0 0 0 1
diff --git a/symbols/maxim/max186-1.sym b/symbols/maxim/max186-1.sym
index 0ee921c..645987e 100644
--- a/symbols/maxim/max186-1.sym
+++ b/symbols/maxim/max186-1.sym
@@ -188,8 +188,6 @@ T 300 6450 5 10 0 0 0 0 1
 footprint=DIP20
 T 300 7450 5 10 0 0 0 0 1
 description=low-power, 8-channel, serial 12-bit ADC
-T 300 6250 5 10 0 0 0 0 1
-numslots=0
 T 300 6650 5 10 0 0 0 0 1
 net=Vdd:20
 T 300 6850 5 10 0 0 0 0 1
diff --git a/symbols/maxim/max186-2.sym b/symbols/maxim/max186-2.sym
index 11070ce..e10507d 100644
--- a/symbols/maxim/max186-2.sym
+++ b/symbols/maxim/max186-2.sym
@@ -230,8 +230,6 @@ T 300 4200 5 10 0 0 0 0 1
 footprint=DIP20
 T 300 4400 5 10 0 0 0 0 1
 description=low-power, 8-channel, serial 12-bit ADC
-T 300 3800 5 10 0 0 0 0 1
-numslots=0
 T 300 4600 5 10 0 0 0 0 1
 documentation=http://pdfserv.maxim-ic.com/en/ds/MAX186-MAX188.pdf
 T 300 3350 3 10 1 0 0 0 1
diff --git a/symbols/maxim/max189-1.sym b/symbols/maxim/max189-1.sym
index 7a547bb..953270f 100644
--- a/symbols/maxim/max189-1.sym
+++ b/symbols/maxim/max189-1.sym
@@ -100,8 +100,6 @@ T 300 3200 5 10 0 0 0 0 1
 footprint=DIP8
 T 300 3400 5 10 0 0 0 0 1
 description=low power, 12-bit serial ADC
-T 300 3000 5 10 0 0 0 0 1
-numslots=0
 T 300 3600 5 10 0 0 0 0 1
 documentation=http://pdfserv.maxim-ic.com/en/ds/MAX187-MAX189.pdf
 T 300 2150 3 10 1 0 0 0 1
diff --git a/symbols/maxim/max19538-1.sym b/symbols/maxim/max19538-1.sym
index 57747ad..8d62139 100644
--- a/symbols/maxim/max19538-1.sym
+++ b/symbols/maxim/max19538-1.sym
@@ -459,8 +459,6 @@ pintype=pwr
 }
 T 1000 5400 8 10 1 1 0 0 1
 footprint=TQFN40_6_EP
-T 3800 5700 8 10 0 0 0 0 1
-numslots=0
 T 3800 5000 5 10 0 0 0 0 1
 documentation=http://pdfserv.maxim-ic.com/en/ds/MAX19538.pdf
 T 3800 5300 5 10 0 0 0 0 1
diff --git a/symbols/maxim/max202-1.sym b/symbols/maxim/max202-1.sym
index 4224356..54ff1d8 100644
--- a/symbols/maxim/max202-1.sym
+++ b/symbols/maxim/max202-1.sym
@@ -189,8 +189,6 @@ T 300 4050 5 10 0 0 0 0 1
 footprint=DIP16
 T 300 4850 5 10 0 0 0 0 1
 description=RS-232 transceivers with 0.1uF external capacitors
-T 300 3650 5 10 0 0 0 0 1
-numslots=0
 T 300 4650 5 10 0 0 0 0 1
 documentation=http://pdfserv.maxim-ic.com/en/ds/MAX200-MAX213.pdf
 T 300 3450 3 8 1 0 0 0 1
diff --git a/symbols/maxim/max214-1.sym b/symbols/maxim/max214-1.sym
index cba76dd..08b846c 100644
--- a/symbols/maxim/max214-1.sym
+++ b/symbols/maxim/max214-1.sym
@@ -262,8 +262,6 @@ T 300 6750 5 10 0 0 0 0 1
 footprint=DIP28
 T 300 6950 5 10 0 0 0 0 1
 description=programmable DTE/DCE +5V RS-232 transceiver
-T 300 6550 5 10 0 0 0 0 1
-numslots=0
 T 300 7150 5 10 0 0 0 0 1
 net=GND:13
 T 300 7350 5 10 0 0 0 0 1
diff --git a/symbols/maxim/max218-1.sym b/symbols/maxim/max218-1.sym
index 7489874..dfb5526 100644
--- a/symbols/maxim/max218-1.sym
+++ b/symbols/maxim/max218-1.sym
@@ -174,8 +174,6 @@ T 300 4450 5 10 0 0 0 0 1
 footprint=DIP20
 T 300 4650 5 10 0 0 0 0 1
 description=1.8V to 4.25V-powered true RS-232 dual transceiver
-T 300 4250 5 10 0 0 0 0 1
-numslots=0
 T 300 4850 5 10 0 0 0 0 1
 net=GND:5,17,20
 T 300 5050 5 10 0 0 0 0 1
diff --git a/symbols/maxim/max232-1.sym b/symbols/maxim/max232-1.sym
index ce1027d..638adf6 100644
--- a/symbols/maxim/max232-1.sym
+++ b/symbols/maxim/max232-1.sym
@@ -162,8 +162,6 @@ T 300 3250 5 10 0 0 0 0 1
 footprint=DIP16
 T 300 3450 5 10 0 0 0 0 1
 description=5V-powered dual RS-232 driver/receiver
-T 300 4050 5 10 0 0 0 0 1
-numslots=0
 T 300 3650 5 10 0 0 0 0 1
 net=Vcc:16
 T 300 3850 5 10 0 0 0 0 1
diff --git a/symbols/maxim/max232-2.sym b/symbols/maxim/max232-2.sym
index b21fe0b..7e56163 100644
--- a/symbols/maxim/max232-2.sym
+++ b/symbols/maxim/max232-2.sym
@@ -162,8 +162,6 @@ T 300 3850 5 10 0 0 0 0 1
 footprint=DIP16
 T 300 4050 5 10 0 0 0 0 1
 description=5V-powered dual RS-232 driver/receiver
-T 300 4650 5 10 0 0 0 0 1
-numslots=0
 T 300 4250 5 10 0 0 0 0 1
 net=Vcc:16
 T 300 4450 5 10 0 0 0 0 1
diff --git a/symbols/maxim/max233-1.sym b/symbols/maxim/max233-1.sym
index 52dc2fb..d9c4b70 100644
--- a/symbols/maxim/max233-1.sym
+++ b/symbols/maxim/max233-1.sym
@@ -234,8 +234,6 @@ pintype=pas
 }
 T 300 6200 5 10 0 0 0 0 1
 description=multichannel RS-232 driver/receiver
-T 300 6000 5 10 0 0 0 0 1
-numslots=0
 T 300 6400 5 10 0 0 0 0 1
 documentation=http://pdfserv.maxim-ic.com/en/ds/MAX220-MAX249.pdf
 T 300 6600 5 10 0 0 0 0 1
diff --git a/symbols/maxim/max233-2.sym b/symbols/maxim/max233-2.sym
index 8b438bd..c76c8d5 100644
--- a/symbols/maxim/max233-2.sym
+++ b/symbols/maxim/max233-2.sym
@@ -205,8 +205,6 @@ T 300 5250 5 10 0 0 0 0 1
 net=GND:6,9
 T 300 5850 5 10 0 0 0 0 1
 description=multichannel RS-232 driver/receiver
-T 300 5650 5 10 0 0 0 0 1
-numslots=0
 T 300 6050 5 10 0 0 0 0 1
 documentation=http://pdfserv.maxim-ic.com/en/ds/MAX220-MAX249.pdf
 P 2300 1000 2600 1000 1 0 1
diff --git a/symbols/maxim/max237-1.sym b/symbols/maxim/max237-1.sym
index 32398c3..f5c9ab6 100644
--- a/symbols/maxim/max237-1.sym
+++ b/symbols/maxim/max237-1.sym
@@ -272,8 +272,6 @@ T 300 5600 5 10 0 0 0 0 1
 footprint=DIP24
 T 300 5800 5 10 0 0 0 0 1
 description=multichannel RS-232 driver/receiver
-T 300 5400 5 10 0 0 0 0 1
-numslots=0
 T 300 6000 5 10 0 0 0 0 1
 documentation=http://pdfserv.maxim-ic.com/en/ds/MAX220-MAX249.pdf
 T 300 4850 3 10 1 0 0 0 1
diff --git a/symbols/maxim/max238-1.sym b/symbols/maxim/max238-1.sym
index 44a6160..b149150 100644
--- a/symbols/maxim/max238-1.sym
+++ b/symbols/maxim/max238-1.sym
@@ -272,8 +272,6 @@ T 300 6250 5 10 0 0 0 0 1
 footprint=DIP24
 T 300 6450 5 10 0 0 0 0 1
 description=multichannel RS-232 driver/receiver
-T 300 6050 5 10 0 0 0 0 1
-numslots=0
 T 300 6650 5 10 0 0 0 0 1
 documentation=http://pdfserv.maxim-ic.com/en/ds/MAX220-MAX249.pdf
 T 300 5450 3 10 1 0 0 0 1
diff --git a/symbols/maxim/max3120-1.sym b/symbols/maxim/max3120-1.sym
index 6ced956..5821e56 100644
--- a/symbols/maxim/max3120-1.sym
+++ b/symbols/maxim/max3120-1.sym
@@ -64,8 +64,6 @@ T 300 1850 5 10 0 0 0 0 1
 footprint=uMAX8
 T 300 2050 5 10 0 0 0 0 1
 description=IrDA infrared transceiver
-T 300 1650 5 10 0 0 0 0 1
-numslots=0
 T 300 2250 5 10 0 0 0 0 1
 net=GND:3,6
 T 300 2450 5 10 0 0 0 0 1
diff --git a/symbols/maxim/max3223e-1.sym b/symbols/maxim/max3223e-1.sym
index 18705e1..8a8fdeb 100644
--- a/symbols/maxim/max3223e-1.sym
+++ b/symbols/maxim/max3223e-1.sym
@@ -17,8 +17,6 @@ T 400 6200 5 10 0 0 0 0 1
 fname=$Source$
 T 350 5900 5 10 0 0 0 0 1
 footprint=DIL 20 300
-T 350 5600 5 10 0 0 0 0 1
-numslots=0
 T 350 5300 5 10 0 0 0 0 1
 net=Vcc:19
 T 350 5000 5 10 0 0 0 0 1
diff --git a/symbols/maxim/max3226-1.sym b/symbols/maxim/max3226-1.sym
index fb1bcb1..1e2eb91 100644
--- a/symbols/maxim/max3226-1.sym
+++ b/symbols/maxim/max3226-1.sym
@@ -168,8 +168,6 @@ T 1200 -300 5 10 0 0 0 0 1
 net=GND:14
 T 300 3550 5 10 0 0 0 0 1
 description=1uA supply current, 1Mbps, 3V to 5.5V, RS-232 transceiver with autoshutdown
-T 300 2750 5 10 0 0 0 0 1
-numslots=0
 T 300 3350 5 10 0 0 0 0 1
 documentation=http://pdfserv.maxim-ic.com/en/ds/MAX3224-MAX3245.pdf
 T 300 2550 9 8 1 0 0 0 1
diff --git a/symbols/maxim/max3491-1.sym b/symbols/maxim/max3491-1.sym
index 2cb46fe..bfc6d5e 100644
--- a/symbols/maxim/max3491-1.sym
+++ b/symbols/maxim/max3491-1.sym
@@ -127,8 +127,6 @@ T 800 2550 5 10 0 0 0 0 1
 footprint=DIP14
 T 800 2750 5 10 0 0 0 0 1
 description=3.3V-powered, 10Mbps and slew-rate-limited true RS-485/RS-422 transceiver
-T 800 2350 5 10 0 0 0 0 1
-numslots=0
 T 800 2950 5 10 0 0 0 0 1
 net=GND:6,7
 T 800 3150 5 10 0 0 0 0 1
diff --git a/symbols/maxim/max3674-1.sym b/symbols/maxim/max3674-1.sym
index 5037320..b35087d 100644
--- a/symbols/maxim/max3674-1.sym
+++ b/symbols/maxim/max3674-1.sym
@@ -186,8 +186,6 @@ device=MAX3674
 B 300 300 5000 9400 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 1500 7700 8 10 1 1 0 0 1
 footprint=LQFP48_7
-T 6400 5600 5 10 0 0 0 0 1
-numslots=0
 T 6400 5400 5 10 0 0 0 0 1
 symversion=1.0
 T 6400 5200 5 10 0 0 0 0 1
diff --git a/symbols/maxim/max378-1.sym b/symbols/maxim/max378-1.sym
index b1b7181..695a304 100644
--- a/symbols/maxim/max378-1.sym
+++ b/symbols/maxim/max378-1.sym
@@ -140,8 +140,6 @@ T 300 5550 5 10 0 0 0 0 1
 footprint=DIP16
 T 300 5750 5 10 0 0 0 0 1
 description=high-voltage, fault-protrected analog multiplexer
-T 300 5350 5 10 0 0 0 0 1
-numslots=0
 T 300 5950 5 10 0 0 0 0 1
 net=GND:14
 T 300 6350 5 10 0 0 0 0 1
diff --git a/symbols/maxim/max400-1.sym b/symbols/maxim/max400-1.sym
index 08e481a..17a599a 100644
--- a/symbols/maxim/max400-1.sym
+++ b/symbols/maxim/max400-1.sym
@@ -63,8 +63,6 @@ T 300 2250 5 10 0 0 0 0 1
 footprint=DIP8
 T 300 2850 5 10 0 0 0 0 1
 description=ultra-low offset voltage operational amplifier
-T 300 2050 5 10 0 0 0 0 1
-numslots=0
 T 300 2450 5 10 0 0 0 0 1
 net=V+:7
 T 300 2650 5 10 0 0 0 0 1
diff --git a/symbols/maxim/max4106-1.sym b/symbols/maxim/max4106-1.sym
index e8f540a..b047bf9 100644
--- a/symbols/maxim/max4106-1.sym
+++ b/symbols/maxim/max4106-1.sym
@@ -68,8 +68,6 @@ T 200 1500 5 10 0 0 0 0 1
 footprint=SO8
 T 200 1700 5 10 0 0 0 0 1
 description=350MHz, ultra-low-noise opamp
-T 200 1300 5 10 0 0 0 0 1
-numslots=0
 T 200 1900 5 10 0 0 0 0 1
 documentation=http://pdfserv.maxim-ic.com/en/ds/MAX4106-MAX4107.pdf
 T 200 900 9 8 1 0 0 0 1
diff --git a/symbols/maxim/max4107-1.sym b/symbols/maxim/max4107-1.sym
index 6b00a6b..7139d36 100644
--- a/symbols/maxim/max4107-1.sym
+++ b/symbols/maxim/max4107-1.sym
@@ -68,8 +68,6 @@ T 200 1500 5 10 0 0 0 0 1
 footprint=SO8
 T 200 1700 5 10 0 0 0 0 1
 description=350MHz, ultra-low-noise opamp
-T 200 1300 5 10 0 0 0 0 1
-numslots=0
 T 200 1900 5 10 0 0 0 0 1
 documentation=http://pdfserv.maxim-ic.com/en/ds/MAX4106-MAX4107.pdf
 T 200 900 9 8 1 0 0 0 1
diff --git a/symbols/maxim/max436-1.sym b/symbols/maxim/max436-1.sym
index 7262cbc..12387be 100644
--- a/symbols/maxim/max436-1.sym
+++ b/symbols/maxim/max436-1.sym
@@ -76,8 +76,6 @@ T 900 2800 5 10 0 0 0 0 1
 footprint=DIP14
 T 900 3000 5 10 0 0 0 0 1
 description=wideband transconductance amplifier
-T 900 2600 5 10 0 0 0 0 1
-numslots=0
 T 900 3200 5 10 0 0 0 0 1
 net=V-:7,8,10
 T 900 3400 5 10 0 0 0 0 1
diff --git a/symbols/maxim/max4420-1.sym b/symbols/maxim/max4420-1.sym
index 86e4eeb..72e3fa0 100644
--- a/symbols/maxim/max4420-1.sym
+++ b/symbols/maxim/max4420-1.sym
@@ -8,8 +8,6 @@ T 600 2900 5 10 0 0 0 0 1
 footprint=DIP8
 T 600 2800 5 10 0 0 0 0 1
 description=High-Speed, 6A Single MOSFET Driver
-T 600 2700 5 10 0 0 0 0 1
-numslots=0
 P 1700 1400 2000 1400 1 0 1
 {
 T 1800 1450 5 10 1 1 0 0 1
diff --git a/symbols/maxim/max4429-1.sym b/symbols/maxim/max4429-1.sym
index db83dc1..3bd0ce9 100644
--- a/symbols/maxim/max4429-1.sym
+++ b/symbols/maxim/max4429-1.sym
@@ -8,8 +8,6 @@ T 600 2900 5 10 0 0 0 0 1
 footprint=DIP8
 T 600 2800 5 10 0 0 0 0 1
 description=High-Speed, 6A Single MOSFET Driver
-T 600 2700 5 10 0 0 0 0 1
-numslots=0
 V 1750 1400 50 6 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 P 1800 1400 2000 1400 1 0 1
 {
diff --git a/symbols/maxim/max488-1.sym b/symbols/maxim/max488-1.sym
index 9fcd1ef..59a1139 100644
--- a/symbols/maxim/max488-1.sym
+++ b/symbols/maxim/max488-1.sym
@@ -128,8 +128,6 @@ T 2000 1850 5 10 0 0 0 0 1
 footprint2=DIP8
 T 2000 1250 5 10 0 0 0 0 1
 description=low-power, slew-rat-limited RS-485/RS422 transceiver
-T 2000 1650 5 10 0 0 0 0 1
-numslots=0
 T 2000 1450 5 10 0 0 0 0 1
 documentation=http://pdfserv.maxim-ic.com/en/ds/MAX1487-MAX491.pdf
 T 1250 750 9 10 1 0 0 0 1
diff --git a/symbols/maxim/max489-1.sym b/symbols/maxim/max489-1.sym
index 2014952..ea33174 100644
--- a/symbols/maxim/max489-1.sym
+++ b/symbols/maxim/max489-1.sym
@@ -166,8 +166,6 @@ T 1650 1900 5 10 0 0 0 0 1
 footprint2=DIP14
 T 1650 1500 5 10 0 0 0 0 1
 description=low-power, slew-rate-limited RS-485/RS-422 transceiver
-T 1650 2500 5 10 0 0 0 0 1
-numslots=0
 T 1650 1700 5 10 0 0 0 0 1
 documentation=http://pdfserv.maxim-ic.com/en/ds/MAX1487-MAX491.pdf
 T 1250 750 9 10 1 0 0 0 1
diff --git a/symbols/maxim/max507-1.sym b/symbols/maxim/max507-1.sym
index 934e2a0..eb1dc3f 100644
--- a/symbols/maxim/max507-1.sym
+++ b/symbols/maxim/max507-1.sym
@@ -10,8 +10,6 @@ T 375 6450 5 10 0 0 0 0 1
 net=VDD:22
 T 375 6650 5 10 0 0 0 0 1
 net=VSS:1
-T 375 5650 5 10 0 0 0 0 1
-numslots=0
 T 375 6050 5 10 0 0 0 0 1
 net=AGND:4
 T 375 6250 5 10 0 0 0 0 1
diff --git a/symbols/maxim/max531-1.sym b/symbols/maxim/max531-1.sym
index 1b1ace0..a90ea79 100644
--- a/symbols/maxim/max531-1.sym
+++ b/symbols/maxim/max531-1.sym
@@ -166,8 +166,6 @@ T 300 4250 5 10 0 0 0 0 1
 footprint=DIP14
 T 300 4450 5 10 0 0 0 0 1
 description=low-power, voltage-output, serial 12-bit DAC
-T 300 4050 5 10 0 0 0 0 1
-numslots=0
 T 300 4650 5 10 0 0 0 0 1
 documentation=http://pdfserv.maxim-ic.com/en/ds/MAX531-MAX539.pdf
 T 300 3350 3 10 1 0 0 0 1
diff --git a/symbols/maxim/max535-1.sym b/symbols/maxim/max535-1.sym
index a041ba6..eb6c972 100644
--- a/symbols/maxim/max535-1.sym
+++ b/symbols/maxim/max535-1.sym
@@ -113,8 +113,6 @@ footprint=uMAX8
 B 300 300 1600 1400 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 800 2800 5 10 0 0 0 0 1
 description=low-power, serial 13-bit voltage-output DAC 
-T 800 2600 5 10 0 0 0 0 1
-numslots=0
 T 800 3000 5 10 0 0 0 0 1
 documentation=http://pdfserv.maxim-ic.com/en/ds/MAX535-MAX5351.pdf
 T 838 818 3 4 1 0 0 0 1
diff --git a/symbols/maxim/max6018-1.sym b/symbols/maxim/max6018-1.sym
index fb8aa5b..1ee2dcd 100644
--- a/symbols/maxim/max6018-1.sym
+++ b/symbols/maxim/max6018-1.sym
@@ -41,8 +41,6 @@ T 1500 1500 8 10 1 1 0 6 1
 refdes=U?
 T 100 2650 5 10 0 0 0 0 1
 description=precision, micropower, low-dropout, 1.8V voltage reference
-T 100 2450 5 10 0 0 0 0 1
-numslots=0
 T 100 2850 5 10 0 0 0 0 1
 documentation=http://pdfserv.maxim-ic.com/en/ds/MAX6018.pdf
 T 150 775 9 10 1 0 0 0 1
diff --git a/symbols/maxim/max6314-1.sym b/symbols/maxim/max6314-1.sym
index de7175d..3cd42af 100644
--- a/symbols/maxim/max6314-1.sym
+++ b/symbols/maxim/max6314-1.sym
@@ -52,8 +52,6 @@ T 2000 1650 8 10 1 1 0 6 1
 refdes=U?
 T 100 2250 5 10 0 0 0 0 1
 description=68HC11/bidirectional-compatible uP reset circuit
-T 100 1850 5 10 0 0 0 0 1
-numslots=0
 T 100 2650 5 10 0 0 0 0 1
 documentation=http://pdfserv.maxim-ic.com/en/ds/MAX6314.pdf
 T 100 1650 9 10 1 0 0 0 1
diff --git a/symbols/maxim/max662A-1.sym b/symbols/maxim/max662A-1.sym
index bdecb82..1443761 100644
--- a/symbols/maxim/max662A-1.sym
+++ b/symbols/maxim/max662A-1.sym
@@ -98,5 +98,3 @@ T 300 2400 8 10 0 0 0 0 1
 documentation=http://maxim-ic.com
 T 300 2800 8 10 0 0 0 0 1
 footprint=DIP8
-T 300 2600 8 10 0 0 0 0 1
-numslots=0
diff --git a/symbols/maxim/max663-1.sym b/symbols/maxim/max663-1.sym
index 23fbfc5..c026815 100644
--- a/symbols/maxim/max663-1.sym
+++ b/symbols/maxim/max663-1.sym
@@ -96,8 +96,6 @@ T 300 2750 5 10 0 0 0 0 1
 footprint=DIP8
 T 300 2950 5 10 0 0 0 0 1
 description=dual mode 5V/programmable voltage regulator
-T 300 2550 5 10 0 0 0 0 1
-numslots=0
 T 300 3150 5 10 0 0 0 0 1
 documentation=http://pdfserv.maxim-ic.com/en/ds/MAX663-MAX666.pdf
 T 300 2150 3 10 1 0 0 0 1
diff --git a/symbols/maxim/max664-1.sym b/symbols/maxim/max664-1.sym
index fe2f09e..0ab9a79 100644
--- a/symbols/maxim/max664-1.sym
+++ b/symbols/maxim/max664-1.sym
@@ -96,8 +96,6 @@ T 300 2750 5 10 0 0 0 0 1
 footprint=DIP8
 T 300 2950 5 10 0 0 0 0 1
 description=dual mode -5V/programmable voltage regulator
-T 300 2550 5 10 0 0 0 0 1
-numslots=0
 T 300 3150 5 10 0 0 0 0 1
 documentation=http://pdfserv.maxim-ic.com/en/ds/MAX663-MAX666.pdf
 T 300 2150 3 10 1 0 0 0 1
diff --git a/symbols/maxim/max6674-1.sym b/symbols/maxim/max6674-1.sym
index 572e63c..9798f16 100644
--- a/symbols/maxim/max6674-1.sym
+++ b/symbols/maxim/max6674-1.sym
@@ -8,8 +8,6 @@ T 1450 650 5 10 0 0 0 0 1
 description=Cold-Junction-Compensated K-Thermocuple-to-Digital Converter (0'C to +128'C)
 T 1450 850 5 10 0 0 0 0 1
 footprint=SO8
-T 1450 50 5 10 0 0 0 0 1
-numslots=0
 T 1450 450 5 10 0 0 0 0 1
 net=GND:1
 T 1450 250 5 10 0 0 0 0 1
diff --git a/symbols/maxim/max713-1.sym b/symbols/maxim/max713-1.sym
index 8d78ea7..32bf91a 100644
--- a/symbols/maxim/max713-1.sym
+++ b/symbols/maxim/max713-1.sym
@@ -5,8 +5,6 @@ T 300 4350 5 10 0 0 0 0 1
 device=MAX713
 T 300 4550 5 10 0 0 0 0 1
 footprint=DIP16
-T 300 4750 5 10 0 0 0 0 1
-numslots=0
 T 300 4950 5 10 0 0 0 0 1
 description=NiCd/NiMH Battery Fast-Charge Controllers
 T 300 5150 5 10 0 0 0 0 1
diff --git a/symbols/maxim/max7652-1.sym b/symbols/maxim/max7652-1.sym
index f185aa3..a9f6463 100644
--- a/symbols/maxim/max7652-1.sym
+++ b/symbols/maxim/max7652-1.sym
@@ -4,8 +4,6 @@ T 300 10050 5 10 0 0 0 0 1
 footprint=QFP64
 T 3200 9000 8 10 1 1 0 6 1
 refdes=U?
-T 300 9850 5 10 0 0 0 0 1
-numslots=0
 T 300 9250 5 10 0 0 0 0 1
 device=MAX7852
 P 1100 8900 1100 9200 1 0 1
diff --git a/symbols/maxim/max807-1.sym b/symbols/maxim/max807-1.sym
index 03983ba..6e96ffd 100644
--- a/symbols/maxim/max807-1.sym
+++ b/symbols/maxim/max807-1.sym
@@ -184,8 +184,6 @@ T 300 4150 5 10 0 0 0 0 1
 footprint=DIP16
 T 300 4350 5 10 0 0 0 0 1
 description=uP supervisory circuit with 1.5% reset accuracy
-T 300 3950 5 10 0 0 0 0 1
-numslots=0
 T 300 4550 5 10 0 0 0 0 1
 documentation=http://pdfserv.maxim-ic.com/en/ds/MAX807L-MAX807N.pdf
 T 300 3350 3 10 1 0 0 0 1
diff --git a/symbols/maxim/max865EUA-1.sym b/symbols/maxim/max865EUA-1.sym
index df3000c..eabdb5c 100644
--- a/symbols/maxim/max865EUA-1.sym
+++ b/symbols/maxim/max865EUA-1.sym
@@ -78,8 +78,6 @@ T 300 1750 5 10 0 0 0 0 1
 net=GND:5
 T 300 2750 5 10 0 0 0 0 1
 description=compact dual-output charge pump
-T 300 2550 5 10 0 0 0 0 1
-numslots=0
 T 300 2950 5 10 0 0 0 0 1
 documentation=http://pdfserv.maxim-ic.com/en/ds/MAX865.pdf
 T 300 1540 9 10 1 0 0 0 1
diff --git a/symbols/maxim/max872-1.sym b/symbols/maxim/max872-1.sym
index 10620ce..417f4e5 100644
--- a/symbols/maxim/max872-1.sym
+++ b/symbols/maxim/max872-1.sym
@@ -63,8 +63,6 @@ T 300 1850 5 10 0 0 0 0 1
 footprint=DIP8
 T 300 2450 5 10 0 0 0 0 1
 description=10uA, low-dropout, precision voltage reference
-T 300 1450 5 10 0 0 0 0 1
-numslots=0
 T 300 2050 5 10 0 0 0 0 1
 net=GND:4
 T 300 2250 5 10 0 0 0 0 1
diff --git a/symbols/maxim/max874-1.sym b/symbols/maxim/max874-1.sym
index 8e8a63f..31f9f12 100644
--- a/symbols/maxim/max874-1.sym
+++ b/symbols/maxim/max874-1.sym
@@ -63,8 +63,6 @@ T 300 1650 5 10 0 0 0 0 1
 footprint=DIP8
 T 300 1850 5 10 0 0 0 0 1
 description=10uA, low-dropout, precision voltage reference
-T 300 1450 5 10 0 0 0 0 1
-numslots=0
 T 300 2050 5 10 0 0 0 0 1
 net=GND:4
 T 300 2450 5 10 0 0 0 0 1
diff --git a/symbols/maxim/max982-1.sym b/symbols/maxim/max982-1.sym
index 6e4453f..5853a03 100644
--- a/symbols/maxim/max982-1.sym
+++ b/symbols/maxim/max982-1.sym
@@ -135,8 +135,6 @@ T 200 3250 5 10 0 0 0 0 1
 footprint=DIP8
 T 200 3450 5 10 0 0 0 0 1
 description=ultra-low-power, open-drain, single/dual-supply comparator
-T 200 3050 5 10 0 0 0 0 1
-numslots=0
 T 200 3650 5 10 0 0 0 0 1
 documentation=http://pdfserv.maxim-ic.com/en/ds/MAX971-MAX984.pdf
 T 200 2600 9 10 1 0 0 0 1
diff --git a/symbols/maxim/mxt429-1.sym b/symbols/maxim/mxt429-1.sym
index 3061b4b..430004f 100644
--- a/symbols/maxim/mxt429-1.sym
+++ b/symbols/maxim/mxt429-1.sym
@@ -8,8 +8,6 @@ T 600 2900 5 10 0 0 0 0 1
 footprint=DIP8
 T 600 3300 5 10 0 0 0 0 1
 description=High-Speed, 6A Single MOSFET Driver
-T 600 2700 5 10 0 0 0 0 1
-numslots=0
 V 1750 1400 50 6 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 P 1800 1400 2000 1400 1 0 1
 {
diff --git a/symbols/memory/24Cxx-1.sym b/symbols/memory/24Cxx-1.sym
index 170d34e..73abc82 100644
--- a/symbols/memory/24Cxx-1.sym
+++ b/symbols/memory/24Cxx-1.sym
@@ -74,8 +74,6 @@ T 300 1350 5 10 0 0 0 0 1
 footprint=DIP8
 T 300 2150 5 10 0 0 0 0 1
 description=2-wire serial cmos eeprom
-T 300 1950 5 10 0 0 0 0 1
-numslots=0
 T 300 2350 5 10 0 0 0 0 1
 author=Werner Hoch <werner.hoATgmx.de>
 T 300 1550 5 10 0 0 0 0 1
diff --git a/symbols/memory/25Cxx-1.sym b/symbols/memory/25Cxx-1.sym
index 4f25ffc..e878a15 100644
--- a/symbols/memory/25Cxx-1.sym
+++ b/symbols/memory/25Cxx-1.sym
@@ -74,8 +74,6 @@ T 300 1550 8 10 0 0 0 0 1
 footprint=DIP8
 T 300 2350 8 10 0 0 0 0 1
 description=SPI serial cmos eeprom
-T 300 2150 8 10 0 0 0 0 1
-numslots=0
 T 300 1750 8 10 0 0 0 0 1
 net=Vcc:8
 T 300 1950 8 10 0 0 0 0 1
diff --git a/symbols/memory/27256-1.sym b/symbols/memory/27256-1.sym
index c44d0a8..43585c1 100644
--- a/symbols/memory/27256-1.sym
+++ b/symbols/memory/27256-1.sym
@@ -296,8 +296,6 @@ T 300 6250 5 10 0 0 0 0 1
 footprint=DIP28
 T 300 6450 5 10 0 0 0 0 1
 description=256K (32Kx8) CMOS EPROM
-T 300 7050 5 10 0 0 0 0 1
-numslots=0
 T 300 7250 5 10 0 0 0 0 1
 author=Werner Hoch <werner.hoATgmx.de>
 T 300 7450 5 10 0 0 0 0 1
diff --git a/symbols/memory/2732-1.sym b/symbols/memory/2732-1.sym
index eb7aa0c..8123e75 100644
--- a/symbols/memory/2732-1.sym
+++ b/symbols/memory/2732-1.sym
@@ -252,8 +252,6 @@ T 300 6050 8 10 0 0 0 0 1
 footprint=DIP24
 T 300 5850 8 10 0 0 0 0 1
 description=32K (4Kx8) CMOS EPROM
-T 300 5250 8 10 0 0 0 0 1
-numslots=0
 T 300 5050 8 10 0 0 0 0 1
 author=Jens-Peter Kaps <kapsATwpi.de>
 T 300 5650 8 10 0 0 0 0 1
diff --git a/symbols/memory/27512-1.sym b/symbols/memory/27512-1.sym
index ebe23d0..e1df3c4 100644
--- a/symbols/memory/27512-1.sym
+++ b/symbols/memory/27512-1.sym
@@ -296,8 +296,6 @@ T 300 6150 5 10 0 0 0 0 1
 footprint=DIP28
 T 300 6950 5 10 0 0 0 0 1
 description=512K (64K*8) cmos eprom
-T 300 6750 5 10 0 0 0 0 1
-numslots=0
 T 300 7150 5 10 0 0 0 0 1
 author=Werner Hoch <werner.hoATgmx.de>
 T 300 7350 5 10 0 0 0 0 1
diff --git a/symbols/memory/27C2001-1.sym b/symbols/memory/27C2001-1.sym
index a278df2..4144e49 100644
--- a/symbols/memory/27C2001-1.sym
+++ b/symbols/memory/27C2001-1.sym
@@ -1,8 +1,6 @@
 v 20041228 1
 T 400 8000 8 10 0 0 0 0 1
 footprint=DIP32
-T 400 9300 8 10 0 0 0 0 1
-numslots=0
 T 400 8300 8 10 0 0 0 0 1
 pins=32
 T 400 8500 8 10 0 0 0 0 1
diff --git a/symbols/memory/27C256-1.sym b/symbols/memory/27C256-1.sym
index 0babc9d..c3c5798 100644
--- a/symbols/memory/27C256-1.sym
+++ b/symbols/memory/27C256-1.sym
@@ -318,8 +318,6 @@ T 300 6250 5 10 0 0 0 0 1
 footprint=DIP28
 T 300 6650 5 10 0 0 0 0 1
 description=256K (32K*8) cmos eprom
-T 300 6450 5 10 0 0 0 0 1
-numslots=0
 T 300 6850 5 10 0 0 0 0 1
 documentation=http://www.microchip.com/download/lit/pline/memory/arc/11001m.pdf
 T 300 7050 5 10 0 0 0 0 1
diff --git a/symbols/memory/4164-1.sym b/symbols/memory/4164-1.sym
index c5fb951..ceeed58 100644
--- a/symbols/memory/4164-1.sym
+++ b/symbols/memory/4164-1.sym
@@ -154,8 +154,6 @@ T 300 5050 5 10 0 0 0 0 1
 footprint=DIP16
 T 300 5850 5 10 0 0 0 0 1
 description=NMOS, 64k dynamic ram (dram), 150ns
-T 300 4850 5 10 0 0 0 0 1
-numslots=0
 T 300 5650 5 10 0 0 0 0 1
 author=Werner Hoch <werner.hoATgmx.de>
 T 300 5250 5 10 0 0 0 0 1
diff --git a/symbols/memory/581000-1.sym b/symbols/memory/581000-1.sym
index bfdbbd7..47605d9 100644
--- a/symbols/memory/581000-1.sym
+++ b/symbols/memory/581000-1.sym
@@ -242,8 +242,6 @@ T 300 5050 5 10 0 0 0 0 1
 footprint=none
 T 300 5650 5 10 0 0 0 0 1
 description=1Mx8 dram simm memory module
-T 300 4850 5 10 0 0 0 0 1
-numslots=0
 T 300 5850 5 10 0 0 0 0 1
 author=Werner Hoch <werner.hoATgmx.de>
 T 300 5250 5 10 0 0 0 0 1
diff --git a/symbols/memory/62256-1.sym b/symbols/memory/62256-1.sym
index b8f1722..33aa09d 100644
--- a/symbols/memory/62256-1.sym
+++ b/symbols/memory/62256-1.sym
@@ -296,8 +296,6 @@ T 300 6350 5 10 0 0 0 0 1
 footprint=DIP28
 T 300 6950 5 10 0 0 0 0 1
 description=32K-word x 8-bit high speed cmos static ram
-T 300 6150 5 10 0 0 0 0 1
-numslots=0
 T 300 7150 5 10 0 0 0 0 1
 author=Werner Hoch <werner.hoATgmx.de>
 T 300 6550 5 10 0 0 0 0 1
diff --git a/symbols/memory/62256-2.sym b/symbols/memory/62256-2.sym
index f552e16..35b2fd3 100644
--- a/symbols/memory/62256-2.sym
+++ b/symbols/memory/62256-2.sym
@@ -319,8 +319,6 @@ T 300 6450 5 10 0 0 0 0 1
 footprint=DIP28
 T 300 6650 5 10 0 0 0 0 1
 description=32K-word x 8-bit high speed cmos static ram
-T 300 6250 5 10 0 0 0 0 1
-numslots=0
 T 300 6850 5 10 0 0 0 0 1
 author=Werner Hoch <werner.hoATgmx.de>
 T 300 5850 9 10 1 0 0 0 1
diff --git a/symbols/memory/628512-1.sym b/symbols/memory/628512-1.sym
index 0c4638e..492ddb3 100644
--- a/symbols/memory/628512-1.sym
+++ b/symbols/memory/628512-1.sym
@@ -340,8 +340,6 @@ pinlabel=A18
 }
 T 2400 7400 5 10 0 0 0 0 1
 net=Vcc:32
-T 2400 7600 5 10 0 0 0 0 1
-numslots=0
 T 2400 7200 5 10 0 0 0 0 1
 net=GND:16
 T 2400 7800 5 10 0 0 0 0 1
diff --git a/symbols/memory/93Cx6-1.sym b/symbols/memory/93Cx6-1.sym
index 9cd2299..4b41caf 100644
--- a/symbols/memory/93Cx6-1.sym
+++ b/symbols/memory/93Cx6-1.sym
@@ -78,8 +78,6 @@ T 300 1950 5 10 0 0 0 0 1
 footprint=DIP8
 T 300 2350 5 10 0 0 0 0 1
 description=256 Bit/1k 5V cmos serial eeprom
-T 300 1750 5 10 0 0 0 0 1
-numslots=0
 T 300 2150 5 10 0 0 0 0 1
 author=Werner Hoch <werner.hoATgmx.de>
 T 300 950 9 8 1 0 0 0 1
diff --git a/symbols/memory/AT45db021bso8w-1.sym b/symbols/memory/AT45db021bso8w-1.sym
index c695ba5..b328d05 100644
--- a/symbols/memory/AT45db021bso8w-1.sym
+++ b/symbols/memory/AT45db021bso8w-1.sym
@@ -13,8 +13,6 @@ T 300 3550 8 10 0 0 0 0 1
 documentation=http://www.atmel.com/
 T 300 3750 8 10 0 0 0 0 1
 description=2-Megabit DataFlash
-T 300 3950 8 10 0 0 0 0 1
-numslots=0
 P 1100 2600 1100 2300 1 0 0
 {
 T 1050 2400 5 8 1 1 90 0 1
diff --git a/symbols/memory/HM6264P15-1.sym b/symbols/memory/HM6264P15-1.sym
index 3f216e5..36baf1b 100644
--- a/symbols/memory/HM6264P15-1.sym
+++ b/symbols/memory/HM6264P15-1.sym
@@ -316,8 +316,6 @@ T 300 6250 5 10 0 0 0 0 1
 footprint=DIP28
 T 300 6450 5 10 0 0 0 0 1
 description=8192word x 8-bit high speed cmos static ram
-T 300 6050 5 10 0 0 0 0 1
-numslots=0
 T 300 6650 5 10 0 0 0 0 1
 author=Werner Hoch <werner.hoATgmx.de>
 T 300 5650 9 10 1 0 0 0 1
diff --git a/symbols/memory/HM628511HC-SOJ36-1.sym b/symbols/memory/HM628511HC-SOJ36-1.sym
index 04ec6a6..16339a8 100644
--- a/symbols/memory/HM628511HC-SOJ36-1.sym
+++ b/symbols/memory/HM628511HC-SOJ36-1.sym
@@ -403,8 +403,6 @@ T 2200 5700 8 10 1 1 0 0 1
 refdes=U?
 T 300 6200 8 10 0 0 0 0 1
 device=HM628511HC
-T 300 5800 8 10 0 0 0 0 1
-numslots=0
 T 300 6000 8 10 0 0 0 0 1
 footprint=SOJ36
 T 300 6400 8 10 0 0 0 0 1
diff --git a/symbols/memory/N82S23N-1.sym b/symbols/memory/N82S23N-1.sym
index 014c414..2eba040 100644
--- a/symbols/memory/N82S23N-1.sym
+++ b/symbols/memory/N82S23N-1.sym
@@ -163,8 +163,6 @@ T 300 3850 5 10 0 0 0 0 1
 footprint=DIP16
 T 300 4450 5 10 0 0 0 0 1
 description=256-bit TTL bipolar prom
-T 300 3650 5 10 0 0 0 0 1
-numslots=0
 T 300 4650 5 10 0 0 0 0 1
 author=Werner Hoch <werner.hoATgmx.de>
 T 300 4050 5 10 0 0 0 0 1
diff --git a/symbols/memory/ST39SF020A-1.sym b/symbols/memory/ST39SF020A-1.sym
index 5ee299c..c3cd94a 100644
--- a/symbols/memory/ST39SF020A-1.sym
+++ b/symbols/memory/ST39SF020A-1.sym
@@ -330,8 +330,6 @@ T 300 7250 5 10 0 0 0 0 1
 footprint=DIP32
 T 300 7850 5 10 0 0 0 0 1
 description=2Mbit (256K x 8) multi-purpose flash memory
-T 300 7050 5 10 0 0 0 0 1
-numslots=0
 T 300 8050 5 10 0 0 0 0 1
 author=Werner Hoch <werner.hoATgmx.de>
 T 300 7450 5 10 0 0 0 0 1
diff --git a/symbols/memory/am27S13D-1.sym b/symbols/memory/am27S13D-1.sym
index bd8ddd0..f9d3611 100644
--- a/symbols/memory/am27S13D-1.sym
+++ b/symbols/memory/am27S13D-1.sym
@@ -141,8 +141,6 @@ T 300 4650 5 10 0 0 0 0 1
 footprint=DIP16
 T 300 5250 5 10 0 0 0 0 1
 description=2048-Bit (512x4) bipolar prom
-T 300 4450 5 10 0 0 0 0 1
-numslots=0
 T 300 5450 5 10 0 0 0 0 1
 author=Werner Hoch <werner.hoATgmx.de>
 T 300 4850 5 10 0 0 0 0 1
diff --git a/symbols/memory/am9128-1.sym b/symbols/memory/am9128-1.sym
index 996e931..79ce363 100644
--- a/symbols/memory/am9128-1.sym
+++ b/symbols/memory/am9128-1.sym
@@ -253,8 +253,6 @@ T 300 5450 5 10 0 0 0 0 1
 footprint=DIP24
 T 300 6050 5 10 0 0 0 0 1
 description=2048x8 static ram
-T 300 5250 5 10 0 0 0 0 1
-numslots=0
 T 300 6250 5 10 0 0 0 0 1
 author=Werner Hoch <werner.hoATgmx.de>
 T 300 5650 5 10 0 0 0 0 1
diff --git a/symbols/micro/6821-1.sym b/symbols/micro/6821-1.sym
index bee6142..d09b4cd 100644
--- a/symbols/micro/6821-1.sym
+++ b/symbols/micro/6821-1.sym
@@ -436,8 +436,6 @@ T 300 8350 5 10 0 0 0 0 1
 footprint=DIP40
 T 300 8950 5 10 0 0 0 0 1
 description=PIA peripheral interface line
-T 300 9150 5 10 0 0 0 0 1
-numslots=0
 T 300 9350 5 10 0 0 0 0 1
 author=Werner Hoch <werner.hoATgmx.de>
 T 300 7950 9 10 1 0 0 0 1
diff --git a/symbols/micro/6821-2.sym b/symbols/micro/6821-2.sym
index 7f5d969..266980c 100644
--- a/symbols/micro/6821-2.sym
+++ b/symbols/micro/6821-2.sym
@@ -453,8 +453,6 @@ T 400 8045 5 10 0 0 0 0 1
 footprint=DIP40
 T 400 8450 5 10 0 0 0 0 1
 description=PIA peripheral interface line
-T 400 8250 5 10 0 0 0 0 1
-numslots=0
 T 400 7650 9 10 1 0 0 0 1
 6821
 V 350 3300 50 6 0 0 0 -1 -1 0 0 -1 -1 -1 -1
diff --git a/symbols/micro/8031.sym b/symbols/micro/8031.sym
index 992649b..02364fe 100644
--- a/symbols/micro/8031.sym
+++ b/symbols/micro/8031.sym
@@ -417,8 +417,6 @@ T 300 7350 5 10 0 0 0 0 1
 footprint=DIP40
 T 300 8150 5 10 0 0 0 0 1
 description=8-bit micro controller
-T 300 7950 5 10 0 0 0 0 1
-numslots=0
 T 300 8350 5 10 0 0 0 0 1
 author=Werner Hoch <werner.hoATgmx.de>
 T 300 7550 5 10 0 0 0 0 1
diff --git a/symbols/micro/8052basic-1.sym b/symbols/micro/8052basic-1.sym
index 1a98015..54db682 100644
--- a/symbols/micro/8052basic-1.sym
+++ b/symbols/micro/8052basic-1.sym
@@ -432,7 +432,5 @@ T 300 6550 5 10 0 0 0 0 1
 device=80(C)52-BASIC
 T 300 7550 5 10 0 0 0 0 1
 description=8-bit micro controller
-T 300 7350 5 10 0 0 0 0 1
-numslots=0
 T 300 6300 9 10 1 0 0 0 1
 80(C)52-BASIC
diff --git a/symbols/micro/8086-1.sym b/symbols/micro/8086-1.sym
index 21b7001..4480948 100644
--- a/symbols/micro/8086-1.sym
+++ b/symbols/micro/8086-1.sym
@@ -452,8 +452,6 @@ T 300 7450 5 10 0 0 0 0 1
 footprint=DIP40
 T 300 7850 5 10 0 0 0 0 1
 description=16-bit HMOS microprocessor
-T 300 7650 5 10 0 0 0 0 1
-numslots=0
 T 300 8050 5 10 0 0 0 0 1
 author=Werner Hoch <werner.hoATgmx.de>
 T 300 7050 9 10 1 0 0 0 1
diff --git a/symbols/micro/8088-1.sym b/symbols/micro/8088-1.sym
index dda7347..e3da1b1 100644
--- a/symbols/micro/8088-1.sym
+++ b/symbols/micro/8088-1.sym
@@ -454,8 +454,6 @@ T 300 7450 5 10 0 0 0 0 1
 footprint=DIP40
 T 300 7850 5 10 0 0 0 0 1
 description=8-bit HMOS micro processor
-T 300 7650 5 10 0 0 0 0 1
-numslots=0
 T 300 7050 9 10 1 0 0 0 1
 8088
 L 375 800 300 850 3 0 0 0 -1 -1
diff --git a/symbols/micro/8254-1.sym b/symbols/micro/8254-1.sym
index b5fd0e9..07afc28 100644
--- a/symbols/micro/8254-1.sym
+++ b/symbols/micro/8254-1.sym
@@ -275,7 +275,5 @@ T 300 4950 5 10 0 0 0 0 1
 footprint=DIP24
 T 300 5150 5 10 0 0 0 0 1
 description=programmable interval timer
-T 300 4750 5 10 0 0 0 0 1
-numslots=0
 T 300 4350 9 10 1 0 0 0 1
 8254
diff --git a/symbols/micro/8255A-1.sym b/symbols/micro/8255A-1.sym
index fe35090..586d1ba 100644
--- a/symbols/micro/8255A-1.sym
+++ b/symbols/micro/8255A-1.sym
@@ -451,7 +451,5 @@ T 300 7300 5 10 0 0 0 0 1
 footprint=DIP40
 T 300 7700 5 10 0 0 0 0 1
 description=CHMOS programmable peripheral interface
-T 300 7500 5 10 0 0 0 0 1
-numslots=0
 T 300 6900 9 10 1 0 0 0 1
 8255A
diff --git a/symbols/micro/8259A-1.sym b/symbols/micro/8259A-1.sym
index 3df9d9a..4d07a54 100644
--- a/symbols/micro/8259A-1.sym
+++ b/symbols/micro/8259A-1.sym
@@ -320,7 +320,5 @@ T 300 5350 5 10 0 0 0 0 1
 footprint=DIP28
 T 300 5750 5 10 0 0 0 0 1
 description=programmable interrupt controller
-T 300 5550 5 10 0 0 0 0 1
-numslots=0
 T 300 4950 9 10 1 0 0 0 1
 8259A
diff --git a/symbols/micro/ACE1202-1.sym b/symbols/micro/ACE1202-1.sym
index a5f1676..2656f0f 100644
--- a/symbols/micro/ACE1202-1.sym
+++ b/symbols/micro/ACE1202-1.sym
@@ -161,8 +161,6 @@ T 2600 2900 8 10 1 1 0 6 1
 refdes=U?
 T 300 3450 5 10 0 0 0 0 1
 footprint=DIP14
-T 300 3250 5 10 0 0 0 0 1
-numslots=0
 T 300 3650 5 10 0 0 0 0 1
 description=8-bit micro controller for low power applications (FAIRCHILD)
 T 300 3850 5 10 0 0 0 0 1
diff --git a/symbols/micro/AT43USB320A.sym b/symbols/micro/AT43USB320A.sym
index 28259be..a4578d8 100644
--- a/symbols/micro/AT43USB320A.sym
+++ b/symbols/micro/AT43USB320A.sym
@@ -993,8 +993,6 @@ pintype=tp
 B 400 400 4800 10200 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 700 11950 5 10 0 0 0 0 1
 description=AVR 8-bit RISC uC and USB-Hub
-T 700 12150 5 10 0 0 0 0 1
-numslots=0
 T 700 12350 5 10 0 0 0 0 1
 author=Werner Hoch <werner.hoATgmx.de>
 T 2200 5050 9 10 1 0 0 0 1
diff --git a/symbols/micro/AT89C2051-1.sym b/symbols/micro/AT89C2051-1.sym
index ffe75c4..13d51e3 100644
--- a/symbols/micro/AT89C2051-1.sym
+++ b/symbols/micro/AT89C2051-1.sym
@@ -208,8 +208,6 @@ T 2100 500 5 8 0 1 0 3 1
 pintype=out
 }
 B 300 300 2200 3600 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
-T 300 4950 5 10 0 0 0 0 1
-numslots=0
 T 300 5150 5 10 0 0 0 0 1
 description=8-bit 8051-compatible micro controller (Atmel)
 T 300 3950 9 10 1 0 0 0 1
diff --git a/symbols/micro/AT89C5131_PLCC-1.sym b/symbols/micro/AT89C5131_PLCC-1.sym
index 6e92ecf..35395ea 100644
--- a/symbols/micro/AT89C5131_PLCC-1.sym
+++ b/symbols/micro/AT89C5131_PLCC-1.sym
@@ -476,8 +476,6 @@ T 2400 600 5 8 0 1 0 3 1
 pintype=out
 }
 B 400 400 2600 9500 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
-T 400 11550 5 10 0 0 0 0 1
-numslots=0
 P 3300 2600 3000 2600 1 0 0
 {
 T 3100 2650 5 8 1 1 0 0 1
diff --git a/symbols/micro/AT89C5132_TQFP-1.sym b/symbols/micro/AT89C5132_TQFP-1.sym
index 59a0f35..f7ad829 100644
--- a/symbols/micro/AT89C5132_TQFP-1.sym
+++ b/symbols/micro/AT89C5132_TQFP-1.sym
@@ -20,8 +20,6 @@ T 600 17800 8 10 0 0 0 0 1
 footprint=TQFP80
 T 600 17600 8 10 0 0 0 0 1
 device=AT89C5132_TQFP
-T 600 18000 8 10 0 0 0 0 1
-numslots=0
 T 4000 15700 3 8 0 1 0 0 1
 refdes=U?
 T 600 17400 8 10 0 0 0 0 1
diff --git a/symbols/micro/AT89C51_DIP.sym b/symbols/micro/AT89C51_DIP.sym
index 7907590..d7e3083 100644
--- a/symbols/micro/AT89C51_DIP.sym
+++ b/symbols/micro/AT89C51_DIP.sym
@@ -432,8 +432,6 @@ pintype=out
 B 400 400 2600 8400 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 400 10050 5 10 0 0 0 0 1
 description=8-bit 8051-compatibel micro controller (Atmel)
-T 400 9850 5 10 0 0 0 0 1
-numslots=0
 T 400 10250 5 10 0 0 0 0 1
 author=Werner Hoch <werner.hoATgmx.de>
 T 400 8850 9 10 1 0 0 0 1
diff --git a/symbols/micro/AT89C51_PLCC.sym b/symbols/micro/AT89C51_PLCC.sym
index 5d6f6b0..cb0fbbb 100644
--- a/symbols/micro/AT89C51_PLCC.sym
+++ b/symbols/micro/AT89C51_PLCC.sym
@@ -476,8 +476,6 @@ pintype=out
 B 400 400 2600 8400 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 400 10050 5 10 0 0 0 0 1
 description=8-bit 8051-compatible micro controller (Atmel)
-T 400 9850 5 10 0 0 0 0 1
-numslots=0
 T 400 10250 5 10 0 0 0 0 1
 author=Werner Hoch <werner.hoATgmx.de>
 T 400 8850 9 10 1 0 0 0 1
diff --git a/symbols/micro/AT89C51_TQFP.sym b/symbols/micro/AT89C51_TQFP.sym
index 8537de6..b2a45c2 100644
--- a/symbols/micro/AT89C51_TQFP.sym
+++ b/symbols/micro/AT89C51_TQFP.sym
@@ -465,8 +465,6 @@ pintype=out
 B 400 400 2600 8400 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 400 10050 5 10 0 0 0 0 1
 description=8-bit 8051-compatible micro controller (Atmel)
-T 400 9850 5 10 0 0 0 0 1
-numslots=0
 T 400 10250 5 10 0 0 0 0 1
 author=Werner Hoch <werner.hoATgmx.de>
 T 400 8850 9 10 1 0 0 0 1
diff --git a/symbols/micro/AT89S53-24PI-1.sym b/symbols/micro/AT89S53-24PI-1.sym
index a7e64cf..b994070 100644
--- a/symbols/micro/AT89S53-24PI-1.sym
+++ b/symbols/micro/AT89S53-24PI-1.sym
@@ -402,8 +402,6 @@ T 447 6748 8 10 0 0 0 0 1
 footprint=DIP40
 T 450 7350 8 10 0 0 0 0 1
 description=8-bit, 8051 compatible micro controller (Atmel)
-T 450 7150 8 10 0 0 0 0 1
-numslots=0
 T 286 6512 9 10 1 0 0 0 1
 AT89S53-24PI
 P 400 3700 100 3700 1 0 1
diff --git a/symbols/micro/AT89S8252-24PC-1.sym b/symbols/micro/AT89S8252-24PC-1.sym
index 99def9d..4161c36 100644
--- a/symbols/micro/AT89S8252-24PC-1.sym
+++ b/symbols/micro/AT89S8252-24PC-1.sym
@@ -436,7 +436,5 @@ T 347 7648 5 10 0 0 0 0 1
 footprint=DIP40
 T 350 8250 5 10 0 0 0 0 1
 description=8-bit, 8051 compatible micro controller (Atmel)
-T 350 8050 5 10 0 0 0 0 1
-numslots=0
 T 186 7412 9 10 1 0 0 0 1
 AT89S8252-24PC
diff --git a/symbols/micro/AT90S1200.sym b/symbols/micro/AT90S1200.sym
index 7ac8a38..76e6731 100644
--- a/symbols/micro/AT90S1200.sym
+++ b/symbols/micro/AT90S1200.sym
@@ -211,8 +211,6 @@ pintype=io
 B 300 300 2000 3600 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 300 4950 5 10 0 0 0 0 1
 description=8-bit RISC micro controller (Atmel)
-T 300 5150 5 10 0 0 0 0 1
-numslots=0
 T 300 5350 5 10 0 0 0 0 1
 author=Werner Hoch <werner.hoATgmx.de>
 T 300 3950 9 10 1 0 0 0 1
diff --git a/symbols/micro/AT90S2313.sym b/symbols/micro/AT90S2313.sym
index 86676bd..0621c47 100644
--- a/symbols/micro/AT90S2313.sym
+++ b/symbols/micro/AT90S2313.sym
@@ -211,8 +211,6 @@ pintype=io
 B 300 300 2000 3600 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 300 4950 5 10 0 0 0 0 1
 description=8-bit RISC micro controller (Atmel)
-T 300 5150 5 10 0 0 0 0 1
-numslots=0
 T 300 5350 5 10 0 0 0 0 1
 author=Werner Hoch <werner.hoATgmx.de>
 T 300 3950 9 10 1 0 0 0 1
diff --git a/symbols/micro/AT90S2323.sym b/symbols/micro/AT90S2323.sym
index 2687b5c..dd202c0 100644
--- a/symbols/micro/AT90S2323.sym
+++ b/symbols/micro/AT90S2323.sym
@@ -79,8 +79,6 @@ pintype=io
 B 300 0 2000 1400 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 300 2450 5 10 0 0 0 0 1
 description=8-bit RISC micro controller (Atmel)
-T 300 2650 5 10 0 0 0 0 1
-numslots=0
 T 300 2850 5 10 0 0 0 0 1
 author=Werner Hoch <werner.hoATgmx.de>
 T 300 1450 9 10 1 0 0 0 1
diff --git a/symbols/micro/AT90S2343.sym b/symbols/micro/AT90S2343.sym
index 4f1a0cd..d401e26 100644
--- a/symbols/micro/AT90S2343.sym
+++ b/symbols/micro/AT90S2343.sym
@@ -79,8 +79,6 @@ pintype=io
 B 300 0 2000 2200 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 300 3250 5 10 0 0 0 0 1
 description=8-bit RISC micro controller (Atmel)
-T 300 3450 5 10 0 0 0 0 1
-numslots=0
 T 300 3650 5 10 0 0 0 0 1
 author=Werner Hoch <werner.hoATgmx.de>
 T 300 2250 9 10 1 0 0 0 1
diff --git a/symbols/micro/AT90S4433_DIP.sym b/symbols/micro/AT90S4433_DIP.sym
index c431812..f56e279 100644
--- a/symbols/micro/AT90S4433_DIP.sym
+++ b/symbols/micro/AT90S4433_DIP.sym
@@ -281,8 +281,6 @@ pintype=io
 B 400 400 2000 5400 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 400 7250 5 10 0 0 0 0 1
 description=8-bit RISC micro controller (Atmel)
-T 400 7450 5 10 0 0 0 0 1
-numslots=0
 T 400 7650 5 10 0 0 0 0 1
 author=Werner Hoch <werner.hoATgmx.de>
 T 400 5850 9 10 1 0 0 0 1
diff --git a/symbols/micro/AT90S4433_TQFP.sym b/symbols/micro/AT90S4433_TQFP.sym
index c36e3f4..3cdb3be 100644
--- a/symbols/micro/AT90S4433_TQFP.sym
+++ b/symbols/micro/AT90S4433_TQFP.sym
@@ -325,8 +325,6 @@ pintype=io
 B 400 400 2000 5400 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 400 7250 5 10 0 0 0 0 1
 description=8-bit RISC micro controller (Atmel)
-T 400 7450 5 10 0 0 0 0 1
-numslots=0
 T 400 7650 5 10 0 0 0 0 1
 author=Werner Hoch <werner.hoATgmx.de>
 T 400 5850 9 10 1 0 0 0 1
diff --git a/symbols/micro/AT90S8515_DIP.sym b/symbols/micro/AT90S8515_DIP.sym
index 68f6588..64f2af7 100644
--- a/symbols/micro/AT90S8515_DIP.sym
+++ b/symbols/micro/AT90S8515_DIP.sym
@@ -431,8 +431,6 @@ pintype=out
 B 400 400 2600 8400 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 400 9850 5 10 0 0 0 0 1
 description=8-bit RISC micro controller (Atmel)
-T 400 10050 5 10 0 0 0 0 1
-numslots=0
 T 400 10250 5 10 0 0 0 0 1
 author=Werner Hoch <werner.hoATgmx.de>
 T 400 8850 9 10 1 0 0 0 1
diff --git a/symbols/micro/AT90S8515_PLCC.sym b/symbols/micro/AT90S8515_PLCC.sym
index da4ac78..1d4d80e 100644
--- a/symbols/micro/AT90S8515_PLCC.sym
+++ b/symbols/micro/AT90S8515_PLCC.sym
@@ -475,8 +475,6 @@ pintype=out
 B 400 400 2600 8400 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 400 9850 5 10 0 0 0 0 1
 description=8-bit RISC micro controller (Atmel)
-T 400 10050 5 10 0 0 0 0 1
-numslots=0
 T 400 10250 5 10 0 0 0 0 1
 author=Werner Hoch <werner.hoATgmx.de>
 T 400 8850 9 10 1 0 0 0 1
diff --git a/symbols/micro/AT90S8515_TQFP.sym b/symbols/micro/AT90S8515_TQFP.sym
index 32671b7..e4f9b93 100644
--- a/symbols/micro/AT90S8515_TQFP.sym
+++ b/symbols/micro/AT90S8515_TQFP.sym
@@ -475,8 +475,6 @@ pintype=out
 B 400 400 2600 8400 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 400 9850 5 10 0 0 0 0 1
 description=8-bit RISC micro controller (Atmel)
-T 400 10050 5 10 0 0 0 0 1
-numslots=0
 T 400 10250 5 10 0 0 0 0 1
 author=Werner Hoch <werner.hoATgmx.de>
 T 400 8850 9 10 1 0 0 0 1
diff --git a/symbols/micro/AT90S8535.sym b/symbols/micro/AT90S8535.sym
index 3000cf7..0ffbcb3 100644
--- a/symbols/micro/AT90S8535.sym
+++ b/symbols/micro/AT90S8535.sym
@@ -413,7 +413,5 @@ pintype=tri
 B 400 400 2300 7000 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 400 8850 5 10 0 0 0 0 1
 comment=dont_use this symbol: nonstandard symwidth
-T 400 9050 5 10 0 0 0 0 1
-numslots=0
 T 400 7450 9 10 1 0 0 0 1
 AT90S8535
diff --git a/symbols/micro/AT90S8535J-1.sym b/symbols/micro/AT90S8535J-1.sym
index af34a8e..e7e701a 100644
--- a/symbols/micro/AT90S8535J-1.sym
+++ b/symbols/micro/AT90S8535J-1.sym
@@ -431,7 +431,5 @@ T 300 7400 5 10 0 0 0 0 1
 footprint=PLCC44
 T 300 7600 5 10 0 0 0 0 1
 description=8-bit RISC micro controller (Atmel)
-T 300 7200 5 10 0 0 0 0 1
-numslots=0
 T 300 6350 9 10 1 0 0 0 1
 AT90S8535J
diff --git a/symbols/micro/AT90S8535P-1.sym b/symbols/micro/AT90S8535P-1.sym
index 3883145..0948287 100644
--- a/symbols/micro/AT90S8535P-1.sym
+++ b/symbols/micro/AT90S8535P-1.sym
@@ -431,7 +431,5 @@ T 300 7300 5 10 0 0 0 0 1
 footprint=DIP40
 T 300 7500 5 10 0 0 0 0 1
 description=8-bit RISC micro controller (Atmel)
-T 300 7150 5 10 0 0 0 0 1
-numslots=0
 T 300 6350 9 10 1 0 0 0 1
 AT90S8535P
diff --git a/symbols/micro/AT90S8535_DIP.sym b/symbols/micro/AT90S8535_DIP.sym
index dc889e7..e9199a8 100644
--- a/symbols/micro/AT90S8535_DIP.sym
+++ b/symbols/micro/AT90S8535_DIP.sym
@@ -413,8 +413,6 @@ pintype=io
 B 400 400 2600 7000 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 400 8850 5 10 0 0 0 0 1
 description=8-bit RISC micro controller (Atmel)
-T 400 9050 5 10 0 0 0 0 1
-numslots=0
 T 400 9250 5 10 0 0 0 0 1
 author=Werner Hoch <werner.hoATgmx.de>
 T 400 7450 9 10 1 0 0 0 1
diff --git a/symbols/micro/AT90S8535_PLCC.sym b/symbols/micro/AT90S8535_PLCC.sym
index 805092d..a584907 100644
--- a/symbols/micro/AT90S8535_PLCC.sym
+++ b/symbols/micro/AT90S8535_PLCC.sym
@@ -413,8 +413,6 @@ T 2950 7000 5 8 0 1 0 8 1
 pintype=io
 }
 B 400 400 2600 7000 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
-T 400 9050 5 10 0 0 0 0 1
-numslots=0
 T 400 9250 5 10 0 0 0 0 1
 author=Werner Hoch <werner.hoATgmx.de>
 T 400 7450 9 10 1 0 0 0 1
diff --git a/symbols/micro/AT90S8535_TQFP.sym b/symbols/micro/AT90S8535_TQFP.sym
index d414bef..f1a7c45 100644
--- a/symbols/micro/AT90S8535_TQFP.sym
+++ b/symbols/micro/AT90S8535_TQFP.sym
@@ -413,8 +413,6 @@ T 2950 7000 5 8 0 1 0 8 1
 pintype=io
 }
 B 400 400 2600 7000 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
-T 400 9050 5 10 0 0 0 0 1
-numslots=0
 T 400 9250 5 10 0 0 0 0 1
 author=Werner Hoch <werner.hoATgmx.de>
 T 400 7450 9 10 1 0 0 0 1
diff --git a/symbols/micro/ATmega103.sym b/symbols/micro/ATmega103.sym
index bf45476..8a34db8 100644
--- a/symbols/micro/ATmega103.sym
+++ b/symbols/micro/ATmega103.sym
@@ -658,8 +658,6 @@ pintype=out
 B 400 400 3200 11800 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 400 13650 5 10 0 0 0 0 1
 description=8-bit RISC micro controller (Atmel)
-T 400 13850 5 10 0 0 0 0 1
-numslots=0
 T 400 14050 5 10 0 0 0 0 1
 author=Werner Hoch <werner.hoATgmx.de>
 T 400 12250 9 10 1 0 0 0 1
diff --git a/symbols/micro/ATmega128-1.sym b/symbols/micro/ATmega128-1.sym
index 6ebefa5..7458b7e 100644
--- a/symbols/micro/ATmega128-1.sym
+++ b/symbols/micro/ATmega128-1.sym
@@ -656,8 +656,6 @@ pintype=io
 B 400 400 3200 11800 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 400 13650 8 10 0 0 0 0 1
 description=8-bit RISC micro controller (Atmel)
-T 400 13850 8 10 0 0 0 0 1
-numslots=0
 T 400 14050 8 10 0 0 0 0 1
 author=Cyrille Chepelov <cyrille@xxxxxxxxxxxx> based on ATmega103 by Werner Hoch <werner.hoATgmx.de>
 T 400 12250 9 10 1 0 0 0 1
diff --git a/symbols/micro/ATmega128-2.sym b/symbols/micro/ATmega128-2.sym
index 3244355..bd64733 100644
--- a/symbols/micro/ATmega128-2.sym
+++ b/symbols/micro/ATmega128-2.sym
@@ -658,8 +658,6 @@ pintype=out
 B 400 400 3200 11800 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 400 13650 8 10 0 0 0 0 1
 description=8-bit RISC micro controller (Atmel)
-T 400 13850 8 10 0 0 0 0 1
-numslots=0
 T 400 14050 8 10 0 0 0 0 1
 author=Werner Hoch <werner.hoATgmx.de>
 T 400 12250 9 10 1 0 0 0 1
diff --git a/symbols/micro/ATmega128-3.sym b/symbols/micro/ATmega128-3.sym
index 68ba21f..b1e6287 100644
--- a/symbols/micro/ATmega128-3.sym
+++ b/symbols/micro/ATmega128-3.sym
@@ -656,8 +656,6 @@ pintype=out
 B 400 400 3200 11800 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 400 13650 8 10 0 0 0 0 1
 description=8-bit RISC micro controller (Atmel)
-T 400 13850 8 10 0 0 0 0 1
-numslots=0
 T 400 14050 8 10 0 0 0 0 1
 author=Radoslaw Korzeniewski <radoslaw@xxxxxxxxxxxxxxxx>
 T 400 12250 9 10 1 0 0 0 1
diff --git a/symbols/micro/ATmega161_DIP.sym b/symbols/micro/ATmega161_DIP.sym
index dfae739..810d28b 100644
--- a/symbols/micro/ATmega161_DIP.sym
+++ b/symbols/micro/ATmega161_DIP.sym
@@ -431,8 +431,6 @@ pintype=io
 B 400 400 2600 8400 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 400 9850 5 10 0 0 0 0 1
 description=8-bit RISC micro controller (Atmel)
-T 400 10050 5 10 0 0 0 0 1
-numslots=0
 T 400 10250 5 10 0 0 0 0 1
 author=Werner Hoch <werner.hoATgmx.de>
 T 400 8850 9 10 1 0 0 0 1
diff --git a/symbols/micro/ATmega161_TQFP.sym b/symbols/micro/ATmega161_TQFP.sym
index e45aaa8..e3aa0d2 100644
--- a/symbols/micro/ATmega161_TQFP.sym
+++ b/symbols/micro/ATmega161_TQFP.sym
@@ -475,8 +475,6 @@ pintype=io
 B 400 400 2600 8400 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 400 9850 5 10 0 0 0 0 1
 description=8-bit RISC micro controller (Atmel)
-T 400 10050 5 10 0 0 0 0 1
-numslots=0
 T 400 10250 5 10 0 0 0 0 1
 author=Werner Hoch <werner.hoATgmx.de>
 T 400 8850 9 10 1 0 0 0 1
diff --git a/symbols/micro/ATmega163_DIP.sym b/symbols/micro/ATmega163_DIP.sym
index ee3c614..74ace43 100644
--- a/symbols/micro/ATmega163_DIP.sym
+++ b/symbols/micro/ATmega163_DIP.sym
@@ -413,8 +413,6 @@ pintype=io
 B 400 400 2600 7000 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 400 8850 5 10 0 0 0 0 1
 description=8-bit RISC micro controller (Atmel)
-T 400 9050 5 10 0 0 0 0 1
-numslots=0
 T 400 9250 5 10 0 0 0 0 1
 author=Werner Hoch <werner.hoATgmx.de>
 T 400 7450 9 10 1 0 0 0 1
diff --git a/symbols/micro/ATmega163_TQFP.sym b/symbols/micro/ATmega163_TQFP.sym
index 11fdc94..8538807 100644
--- a/symbols/micro/ATmega163_TQFP.sym
+++ b/symbols/micro/ATmega163_TQFP.sym
@@ -413,8 +413,6 @@ pintype=io
 B 400 400 2600 7000 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 400 8850 5 10 0 0 0 0 1
 description=8-bit RISC micro controller (Atmel)
-T 400 9050 5 10 0 0 0 0 1
-numslots=0
 T 400 9250 5 10 0 0 0 0 1
 author=Werner Hoch <werner.hoATgmx.de>
 T 400 7450 9 10 1 0 0 0 1
diff --git a/symbols/micro/ATmega16L-1.sym b/symbols/micro/ATmega16L-1.sym
index 75f933c..7f53329 100644
--- a/symbols/micro/ATmega16L-1.sym
+++ b/symbols/micro/ATmega16L-1.sym
@@ -298,8 +298,6 @@ pinseq=40
 B 400 100 2600 8400 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 400 9550 8 10 0 0 0 0 1
 description=8-bit RISC micro controller (Atmel)
-T 400 9750 8 10 0 0 0 0 1
-numslots=0
 T 400 9950 8 10 0 0 0 0 1
 author=Werner Hoch <werner.hoATgmx.de>
 T 400 8550 9 10 1 0 0 0 1
diff --git a/symbols/micro/ATmega16_DIP-1.sym b/symbols/micro/ATmega16_DIP-1.sym
index b453970..ce0c88d 100644
--- a/symbols/micro/ATmega16_DIP-1.sym
+++ b/symbols/micro/ATmega16_DIP-1.sym
@@ -413,8 +413,6 @@ pintype=io
 B 400 400 2600 7000 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 400 8850 8 10 0 0 0 0 1
 description=8-bit RISC micro controller (Atmel)
-T 400 9050 8 10 0 0 0 0 1
-numslots=0
 T 400 9250 8 10 0 0 0 0 1
 author=Jaroslaw Juda <jaroslaw.judaATintelli.pl>
 T 400 7450 9 10 1 0 0 0 1
diff --git a/symbols/micro/ATmega323-1.sym b/symbols/micro/ATmega323-1.sym
index 19afd6e..5f1d99a 100644
--- a/symbols/micro/ATmega323-1.sym
+++ b/symbols/micro/ATmega323-1.sym
@@ -4,8 +4,6 @@ T 400 9950 5 10 0 0 0 0 1
 device=ATmega323
 T 400 10150 5 10 0 0 0 0 1
 footprint=DIL 40 600
-T 400 9750 5 10 0 0 0 0 1
-numslots=0
 P 100 8600 400 8600 1 0 0
 {
 T 450 8600 5 8 0 1 0 2 1
diff --git a/symbols/micro/ATmega32MLF-1.sym b/symbols/micro/ATmega32MLF-1.sym
index 69cc0fe..c6ed924 100644
--- a/symbols/micro/ATmega32MLF-1.sym
+++ b/symbols/micro/ATmega32MLF-1.sym
@@ -4,8 +4,6 @@ T 1400 9400 8 10 0 0 0 0 1
 device=ATMEGA32
 T 1400 9600 8 10 0 0 0 0 1
 footprint=MLF 44
-T 1400 9800 8 10 0 0 0 0 1
-numslots=0
 T 2700 9000 9 10 1 0 0 0 1
 ATmega32 TQFP/MLF
 P 100 1700 400 1700 1 0 0
diff --git a/symbols/micro/ATmega64-1.sym b/symbols/micro/ATmega64-1.sym
index fa72704..df43d97 100644
--- a/symbols/micro/ATmega64-1.sym
+++ b/symbols/micro/ATmega64-1.sym
@@ -658,8 +658,6 @@ pintype=out
 B 400 400 3200 11800 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 400 13650 8 10 0 0 0 0 1
 description=8-bit RISC micro controller (Atmel)
-T 400 13850 8 10 0 0 0 0 1
-numslots=0
 T 400 14050 8 10 0 0 0 0 1
 author=Werner Hoch <werner.hoATgmx.de>
 T 400 12250 9 10 1 0 0 0 1
diff --git a/symbols/micro/ATmega8-1.sym b/symbols/micro/ATmega8-1.sym
index b066eed..787d261 100644
--- a/symbols/micro/ATmega8-1.sym
+++ b/symbols/micro/ATmega8-1.sym
@@ -11,8 +11,6 @@ T 100 4800 8 10 0 0 0 0 1
 footprint=DIP28N
 T 2300 4600 8 10 1 1 0 6 1
 refdes=U?
-T 1900 4600 8 10 0 1 0 6 1
-numslots=0
 P 2600 2100 2300 2100 1 0 0
 {
 T 2400 2150 5 8 1 1 0 0 1
diff --git a/symbols/micro/ATtiny11.sym b/symbols/micro/ATtiny11.sym
index 641173a..4756c6d 100644
--- a/symbols/micro/ATtiny11.sym
+++ b/symbols/micro/ATtiny11.sym
@@ -79,8 +79,6 @@ pintype=io
 B 300 0 2000 2200 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 300 3250 5 10 0 0 0 0 1
 description=8-bit RISC micro controller (Atmel)
-T 300 3450 5 10 0 0 0 0 1
-numslots=0
 T 300 3650 5 10 0 0 0 0 1
 author=Werner Hoch <werner.hoATgmx.de>
 T 300 2250 9 10 1 0 0 0 1
diff --git a/symbols/micro/ATtiny12.sym b/symbols/micro/ATtiny12.sym
index dd1308b..b9aacf1 100644
--- a/symbols/micro/ATtiny12.sym
+++ b/symbols/micro/ATtiny12.sym
@@ -78,8 +78,6 @@ pintype=io
 B 300 0 2000 2200 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 300 3250 5 10 0 0 0 0 1
 description=8-bit RISC micro controller (Atmel)
-T 300 3450 5 10 0 0 0 0 1
-numslots=0
 T 300 3650 5 10 0 0 0 0 1
 author=Werner Hoch <werner.hoATgmx.de>
 T 300 2250 9 10 1 0 0 0 1
diff --git a/symbols/micro/ATtiny15L-1.sym b/symbols/micro/ATtiny15L-1.sym
index e87b3f7..4e69d9f 100644
--- a/symbols/micro/ATtiny15L-1.sym
+++ b/symbols/micro/ATtiny15L-1.sym
@@ -78,8 +78,6 @@ pintype=io
 B 300 0 2600 2200 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 300 3250 8 10 0 0 0 0 1
 description=8-bit RISC micro controller (Atmel)
-T 300 3450 8 10 0 0 0 0 1
-numslots=0
 T 300 3650 8 10 0 0 0 0 1
 author=Werner Hoch <werner.hoATgmx.de>
 T 300 2250 9 10 1 0 0 0 1
diff --git a/symbols/micro/ATtiny28_DIP.sym b/symbols/micro/ATtiny28_DIP.sym
index 625e14c..fa653be 100644
--- a/symbols/micro/ATtiny28_DIP.sym
+++ b/symbols/micro/ATtiny28_DIP.sym
@@ -277,8 +277,6 @@ T 2350 5400 5 8 0 1 0 8 1
 pintype=io
 }
 B 400 400 2000 5400 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
-T 400 7050 5 10 0 0 0 0 1
-numslots=0
 T 400 7250 5 10 0 0 0 0 1
 author=Werner Hoch <werner.hoATgmx.de>
 T 400 5850 9 10 1 0 0 0 1
diff --git a/symbols/micro/ATtiny28_TQFP.sym b/symbols/micro/ATtiny28_TQFP.sym
index 8e94c4d..b1e1d96 100644
--- a/symbols/micro/ATtiny28_TQFP.sym
+++ b/symbols/micro/ATtiny28_TQFP.sym
@@ -321,8 +321,6 @@ T 2350 5400 5 8 0 1 0 8 1
 pintype=io
 }
 B 400 400 2000 5400 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
-T 400 7050 5 10 0 0 0 0 1
-numslots=0
 T 400 7250 5 10 0 0 0 0 1
 author=Werner Hoch <werner.hoATgmx.de>
 T 400 5850 9 10 1 0 0 0 1
diff --git a/symbols/micro/DS1602-1.sym b/symbols/micro/DS1602-1.sym
index 6dcc542..d722632 100644
--- a/symbols/micro/DS1602-1.sym
+++ b/symbols/micro/DS1602-1.sym
@@ -97,8 +97,6 @@ pinseq=5
 V 250 1300 50 6 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 300 1800 5 10 0 0 0 0 1
 device=DS1602
-T 300 2400 5 10 0 0 0 0 1
-numslots=0
 T 300 1550 9 10 1 0 0 0 1
 DS1602
 T 300 2600 5 10 0 0 0 0 1
diff --git a/symbols/micro/DS2450-1.sym b/symbols/micro/DS2450-1.sym
index 3bfad18..c9ab7e8 100644
--- a/symbols/micro/DS2450-1.sym
+++ b/symbols/micro/DS2450-1.sym
@@ -94,8 +94,6 @@ T 1800 1700 8 10 1 1 0 6 1
 refdes=U?
 T 400 2250 5 10 0 0 0 0 1
 footprint=SMD8
-T 400 2050 5 10 0 0 0 0 1
-numslots=0
 T 400 2450 5 10 0 0 0 0 1
 description=Dallas Semiconductor 1-Wire A/D Converter (Travis Sawyer)
 T 400 2650 5 10 0 0 0 0 1
diff --git a/symbols/micro/DS2480B-1.sym b/symbols/micro/DS2480B-1.sym
index af1e1ea..3e94296 100644
--- a/symbols/micro/DS2480B-1.sym
+++ b/symbols/micro/DS2480B-1.sym
@@ -94,8 +94,6 @@ T 1700 1700 8 10 1 1 0 6 1
 refdes=U?
 T 300 2250 5 10 0 0 0 0 1
 footprint=SMD8
-T 300 2050 5 10 0 0 0 0 1
-numslots=0
 T 300 2450 5 10 0 0 0 0 1
 description=Dallas Semiconductor 1-Wire Serial Line Driver w/Load Sensor (Travis Sawyer)
 T 300 2650 5 10 0 0 0 0 1
diff --git a/symbols/micro/DS80C310-1.sym b/symbols/micro/DS80C310-1.sym
index e204fa4..f1c4bea 100644
--- a/symbols/micro/DS80C310-1.sym
+++ b/symbols/micro/DS80C310-1.sym
@@ -432,8 +432,6 @@ T 2000 600 5 8 0 1 0 3 1
 pintype=out
 }
 B 400 400 2000 8000 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
-T 400 9650 5 10 0 0 0 0 1
-numslots=0
 T 400 9850 5 10 0 0 0 0 1
 author=Werner Hoch <werner.hoATgmx.de>
 T 400 8450 9 10 1 0 0 0 1
diff --git a/symbols/micro/DS80C320-1.sym b/symbols/micro/DS80C320-1.sym
index 21dbf66..3ccf789 100644
--- a/symbols/micro/DS80C320-1.sym
+++ b/symbols/micro/DS80C320-1.sym
@@ -432,8 +432,6 @@ pintype=out
 B 400 400 2000 8000 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 400 9450 5 10 0 0 0 0 1
 description=80C32 compatible micro controller
-T 400 9650 5 10 0 0 0 0 1
-numslots=0
 T 400 9850 5 10 0 0 0 0 1
 author=Werner Hoch <werner.hoATgmx.de>
 T 400 8450 9 10 1 0 0 0 1
diff --git a/symbols/micro/FT245BM-1.sym b/symbols/micro/FT245BM-1.sym
index b13f271..0844c23 100644
--- a/symbols/micro/FT245BM-1.sym
+++ b/symbols/micro/FT245BM-1.sym
@@ -294,8 +294,6 @@ T 300 7250 8 10 0 0 0 0 1
 footprint=TQFP32
 T 300 7450 8 10 0 0 0 0 1
 description=USB FIFO (USB - Parallel)
-T 300 7050 8 10 0 0 0 0 1
-numslots=0
 T 300 7650 8 10 0 0 0 0 1
 documentation=http://www.ftdichip.com/Documents/ds245b11.pdf
 T 300 6650 9 10 1 0 0 0 1
diff --git a/symbols/micro/M41T00-SO8-1.sym b/symbols/micro/M41T00-SO8-1.sym
index 75c0b05..c5dce51 100644
--- a/symbols/micro/M41T00-SO8-1.sym
+++ b/symbols/micro/M41T00-SO8-1.sym
@@ -80,7 +80,5 @@ T 310 3374 5 10 0 0 0 0 1
 net=GND:4
 T 310 3174 5 10 0 0 0 0 1
 net=Vcc:8
-T 300 2350 5 10 0 0 0 0 1
-numslots=0
 T 300 2100 9 10 1 0 0 2 1
 M41T00
diff --git a/symbols/micro/MSP430x11x1.sym b/symbols/micro/MSP430x11x1.sym
index 3fdcc5f..31200f1 100644
--- a/symbols/micro/MSP430x11x1.sym
+++ b/symbols/micro/MSP430x11x1.sym
@@ -228,8 +228,6 @@ T 300 4850 5 10 0 0 0 0 1
 footprint=none
 T 300 4650 5 10 0 0 0 0 1
 description=16-bit mixed signal microcontroller
-T 300 5050 5 10 0 0 0 0 1
-numslots=0
 T 300 4250 3 10 1 0 0 0 1
 MSP430x11x1
 V 250 1500 50 6 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
diff --git a/symbols/micro/MSP430x11x2.sym b/symbols/micro/MSP430x11x2.sym
index 9ad24e2..5792dda 100644
--- a/symbols/micro/MSP430x11x2.sym
+++ b/symbols/micro/MSP430x11x2.sym
@@ -228,8 +228,6 @@ T 300 5050 5 10 0 0 0 0 1
 footprint=none
 T 300 4650 5 10 0 0 0 0 1
 description=16-bit mixed signal microcontroller
-T 300 4850 5 10 0 0 0 0 1
-numslots=0
 T 300 4250 3 10 1 0 0 0 1
 MSP430x11x2
 V 250 1500 50 6 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
diff --git a/symbols/micro/MSP430x12x.sym b/symbols/micro/MSP430x12x.sym
index 20a88f2..509fe8d 100644
--- a/symbols/micro/MSP430x12x.sym
+++ b/symbols/micro/MSP430x12x.sym
@@ -316,8 +316,6 @@ T 400 6550 5 10 0 0 0 0 1
 footprint=none
 T 400 6750 5 10 0 0 0 0 1
 description=16-bit mixed signal microcontroller
-T 400 6350 5 10 0 0 0 0 1
-numslots=0
 T 400 5950 3 10 1 0 0 0 1
 MSP430x12x2
 V 350 3200 50 6 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
diff --git a/symbols/micro/MSP430x12x2.sym b/symbols/micro/MSP430x12x2.sym
index 55cba7c..57447a7 100644
--- a/symbols/micro/MSP430x12x2.sym
+++ b/symbols/micro/MSP430x12x2.sym
@@ -316,8 +316,6 @@ T 400 6550 5 10 0 0 0 0 1
 footprint=none
 T 400 6750 5 10 0 0 0 0 1
 description=16-bit mixed signal microcontroller
-T 400 6350 5 10 0 0 0 0 1
-numslots=0
 T 400 5950 3 10 1 0 0 0 1
 MSP430x12x2
 V 350 3200 50 6 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
diff --git a/symbols/micro/MSP430x13-4x.sym b/symbols/micro/MSP430x13-4x.sym
index be04e57..49ed888 100644
--- a/symbols/micro/MSP430x13-4x.sym
+++ b/symbols/micro/MSP430x13-4x.sym
@@ -712,8 +712,6 @@ T 2600 3550 5 10 0 0 0 0 1
 footprint=none
 T 2600 3750 5 10 0 0 0 0 1
 description=16-bit mixed signal microcontroller
-T 2600 3350 5 10 0 0 0 0 1
-numslots=0
 T 300 6750 3 10 1 0 0 0 1
 MSP430x13/4x
 V 4300 6750 50 6 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
diff --git a/symbols/micro/MSP430x15-6x.sym b/symbols/micro/MSP430x15-6x.sym
index e55e907..9dfbbc3 100644
--- a/symbols/micro/MSP430x15-6x.sym
+++ b/symbols/micro/MSP430x15-6x.sym
@@ -712,8 +712,6 @@ T 2600 3550 5 10 0 0 0 0 1
 footprint=none
 T 2600 3750 5 10 0 0 0 0 1
 description=16-bit mixed signal microcontroller
-T 2600 3350 5 10 0 0 0 0 1
-numslots=0
 T 300 6750 3 10 1 0 0 0 1
 MSP430x15/6x
 V 4300 6750 50 6 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
diff --git a/symbols/micro/MSP430x41x.sym b/symbols/micro/MSP430x41x.sym
index 0c1199b..d70c518 100644
--- a/symbols/micro/MSP430x41x.sym
+++ b/symbols/micro/MSP430x41x.sym
@@ -679,8 +679,6 @@ T 2600 3550 5 10 0 0 0 0 1
 footprint=none
 T 2600 3750 5 10 0 0 0 0 1
 description=16-bit mixed signal microcontroller
-T 2600 3350 5 10 0 0 0 0 1
-numslots=0
 T 300 6750 3 10 1 0 0 0 1
 MSP430x41x
 V 4300 6750 50 6 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
diff --git a/symbols/micro/MSP430x43x.sym b/symbols/micro/MSP430x43x.sym
index 3780b72..0c032f8 100644
--- a/symbols/micro/MSP430x43x.sym
+++ b/symbols/micro/MSP430x43x.sym
@@ -886,8 +886,6 @@ pintype=pwr
 }
 T 2700 5650 5 10 0 0 0 0 1
 footprint=none
-T 2700 5450 5 10 0 0 0 0 1
-numslots=0
 T 400 8450 3 10 1 0 0 0 1
 MSP430x43x
 T 2700 6075 5 10 0 0 0 0 1
diff --git a/symbols/micro/MSP430x44x.sym b/symbols/micro/MSP430x44x.sym
index 1ca97d5..7d603b5 100644
--- a/symbols/micro/MSP430x44x.sym
+++ b/symbols/micro/MSP430x44x.sym
@@ -1108,8 +1108,6 @@ T 2700 7250 5 10 0 0 0 0 1
 footprint=none
 T 2700 7450 5 10 0 0 0 0 1
 description=16-bit mixed signal microcontroller
-T 2700 7050 5 10 0 0 0 0 1
-numslots=0
 T 400 10450 3 10 1 0 0 0 1
 MSP430x44x
 V 4400 10450 50 6 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
diff --git a/symbols/micro/TINIm390-RevD.sym b/symbols/micro/TINIm390-RevD.sym
index 0aad1a1..849d7b3 100644
--- a/symbols/micro/TINIm390-RevD.sym
+++ b/symbols/micro/TINIm390-RevD.sym
@@ -8,8 +8,6 @@ T 450 12450 5 10 0 0 0 0 1
 footprint=SIMM72
 T 450 12650 5 10 0 0 0 0 1
 description=Tini Verification Module m390 RevD
-T 450 12250 5 10 0 0 0 0 1
-numslots=0
 P 400 6500 100 6500 1 0 1
 {
 T 220 6550 5 8 1 1 0 0 1
diff --git a/symbols/micro/basicstamp-1.sym b/symbols/micro/basicstamp-1.sym
index bd1bba5..a0c212e 100644
--- a/symbols/micro/basicstamp-1.sym
+++ b/symbols/micro/basicstamp-1.sym
@@ -273,8 +273,6 @@ T 300 4950 5 10 0 0 0 0 1
 documentation=http://www.parallax.com/dl/docs/prod/schem/bs2%20rev%20f.pdf
 T 300 4750 5 10 0 0 0 0 1
 description=pic microcontroller modul with basic support
-T 300 4150 5 10 0 0 0 0 1
-numslots=0
 T 300 3950 3 10 1 0 0 0 1
 BasicStamp2
 T 300 4550 5 10 0 0 0 0 1
diff --git a/symbols/micro/mc68hc05j1a-1.sym b/symbols/micro/mc68hc05j1a-1.sym
index 64fc8a1..48132c3 100644
--- a/symbols/micro/mc68hc05j1a-1.sym
+++ b/symbols/micro/mc68hc05j1a-1.sym
@@ -226,8 +226,6 @@ T 300 4200 5 10 0 0 0 0 1
 device=MC68HC05J1A
 T 300 4600 5 10 0 0 0 0 1
 footprint=DIP20
-T 300 4400 5 10 0 0 0 0 1
-numslots=0
 T 1300 2900 9 10 1 0 0 4 1
 MC68HC05J1A
 V 2350 3600 50 6 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
diff --git a/symbols/micro/mc68hc705kj1-1.sym b/symbols/micro/mc68hc705kj1-1.sym
index aee7cc0..4ef5297 100644
--- a/symbols/micro/mc68hc705kj1-1.sym
+++ b/symbols/micro/mc68hc705kj1-1.sym
@@ -182,8 +182,6 @@ T 200 4200 5 10 0 0 0 0 1
 device=MC68HC705KJ1
 T 200 4400 5 10 0 0 0 0 1
 footprint=DIP16
-T 200 4600 5 10 0 0 0 0 1
-numslots=0
 T 200 4800 5 10 0 0 0 0 1
 description=8-bit microcontroller (M68HC05 family)
 T 200 5000 5 10 0 0 0 0 1
diff --git a/symbols/micro/mc68hc811e2fn-1.sym b/symbols/micro/mc68hc811e2fn-1.sym
index 07b30e2..e32c052 100644
--- a/symbols/micro/mc68hc811e2fn-1.sym
+++ b/symbols/micro/mc68hc811e2fn-1.sym
@@ -582,7 +582,5 @@ T 3100 5500 8 10 1 1 0 6 1
 refdes=U?
 T 300 6250 5 10 0 0 0 0 1
 description=8-bit microcontroller (M68HC11 family)
-T 300 6050 5 10 0 0 0 0 1
-numslots=0
 T 300 6450 5 10 0 0 0 0 1
 documentation=http://e-www.motorola.com/files/microcontrollers/doc/data_sheet/M68HC11E.pdf
diff --git a/symbols/micro/mc68hc812a4-1.sym b/symbols/micro/mc68hc812a4-1.sym
index c698646..2a65f2e 100644
--- a/symbols/micro/mc68hc812a4-1.sym
+++ b/symbols/micro/mc68hc812a4-1.sym
@@ -1242,5 +1242,3 @@ T 3594 13000 8 10 1 1 0 6 1
 refdes=U?
 T 400 13750 5 10 0 0 0 0 1
 description=16-bit microcontroller (motorola)
-T 400 13550 5 10 0 0 0 0 1
-numslots=0
diff --git a/symbols/micro/mc68hc908gp32cp-1.sym b/symbols/micro/mc68hc908gp32cp-1.sym
index 356bdb9..c82ffd0 100644
--- a/symbols/micro/mc68hc908gp32cp-1.sym
+++ b/symbols/micro/mc68hc908gp32cp-1.sym
@@ -406,8 +406,6 @@ pintype=io
 T 2800 11850 5 8 0 1 0 2 1
 pinseq=40
 }
-T 400 12700 5 10 0 0 0 0 1
-numslots=0
 P 100 700 400 700 1 0 0
 {
 T 450 700 9 8 1 1 0 0 1
diff --git a/symbols/micro/mc68hc912b32-1.sym b/symbols/micro/mc68hc912b32-1.sym
index 6dd12a9..2937418 100644
--- a/symbols/micro/mc68hc912b32-1.sym
+++ b/symbols/micro/mc68hc912b32-1.sym
@@ -886,8 +886,6 @@ T 300 5600 5 10 0 0 0 0 1
 footprint=QFP80
 T 300 6000 5 10 0 0 0 0 1
 description=16-bit microcontroller (motorola)
-T 300 5800 5 10 0 0 0 0 1
-numslots=0
 T 300 5250 9 6 1 0 0 0 1
 MC68HC912B32
 T 1500 5250 5 6 1 1 0 6 1
diff --git a/symbols/micro/pic12F675-1.sym b/symbols/micro/pic12F675-1.sym
index 4ec6843..5b65df3 100644
--- a/symbols/micro/pic12F675-1.sym
+++ b/symbols/micro/pic12F675-1.sym
@@ -5,8 +5,6 @@ T 300 1340 8 10 0 0 0 0 1
 device=PIC12F675
 T 300 1550 8 10 0 0 0 0 1
 footprint=DIP8
-T 300 1750 8 10 0 0 0 0 1
-numslots=0
 B 300 0 4700 1100 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 P 0 800 300 800 1 0 0
 {
diff --git a/symbols/micro/pic12F675-2.sym b/symbols/micro/pic12F675-2.sym
index e37d312..20af4b7 100644
--- a/symbols/micro/pic12F675-2.sym
+++ b/symbols/micro/pic12F675-2.sym
@@ -5,8 +5,6 @@ T 300 1740 8 10 0 0 0 0 1
 device=PIC12F675
 T 300 1950 8 10 0 0 0 0 1
 footprint=DIP8
-T 300 2150 8 10 0 0 0 0 1
-numslots=0
 B 300 50 4700 1400 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 P 0 900 300 900 1 0 0
 {
diff --git a/symbols/micro/pic12c5xx-1.sym b/symbols/micro/pic12c5xx-1.sym
index 25dff11..82601ad 100644
--- a/symbols/micro/pic12c5xx-1.sym
+++ b/symbols/micro/pic12c5xx-1.sym
@@ -5,8 +5,6 @@ T 300 1340 5 10 0 0 0 0 1
 device=PIC12C5xx
 T 300 1550 5 10 0 0 0 0 1
 footprint=DIP8
-T 300 1750 5 10 0 0 0 0 1
-numslots=0
 B 300 0 2300 1100 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 P 0 800 300 800 1 0 0
 {
diff --git a/symbols/micro/pic16C74A-1.sym b/symbols/micro/pic16C74A-1.sym
index 9abc5a8..b076ffc 100644
--- a/symbols/micro/pic16C74A-1.sym
+++ b/symbols/micro/pic16C74A-1.sym
@@ -406,8 +406,6 @@ T 300 7950 5 10 0 0 0 0 1
 footprint=DIP40
 T 300 8550 5 10 0 0 0 0 1
 description=8-bit CMOS microcontroller with A/D converter
-T 300 7750 5 10 0 0 0 0 1
-numslots=0
 T 300 8150 5 10 0 0 0 0 1
 net=Vcc:11,32
 T 300 8350 5 10 0 0 0 0 1
diff --git a/symbols/micro/pic16C84.sym b/symbols/micro/pic16C84.sym
index 0d3c62c..135aab4 100644
--- a/symbols/micro/pic16C84.sym
+++ b/symbols/micro/pic16C84.sym
@@ -209,8 +209,6 @@ T 300 3450 5 10 0 0 0 0 1
 footprint=DIP18
 T 300 3850 5 10 0 0 0 0 1
 description=8-bit Flash/EEPROM microcontroller
-T 300 3650 5 10 0 0 0 0 1
-numslots=0
 T 300 4050 5 10 0 0 0 0 1
 documentation=http://www.microchip.com/download/lit/pline/picmicro/families/16f8x/30445c.pdf
 T 300 3050 3 10 1 0 0 0 1
diff --git a/symbols/micro/pic16F628-1.sym b/symbols/micro/pic16F628-1.sym
index 8582c9b..a25d9f9 100644
--- a/symbols/micro/pic16F628-1.sym
+++ b/symbols/micro/pic16F628-1.sym
@@ -204,8 +204,6 @@ T 300 3250 5 10 0 0 0 0 1
 footprint=DIP18
 T 300 3450 5 10 0 0 0 0 1
 device=PIC16F628
-T 300 3650 5 10 0 0 0 0 1
-numslots=0
 T 300 3850 5 10 0 0 0 0 1
 symversion=0.1
 T 300 4050 5 10 0 0 0 0 1
diff --git a/symbols/micro/pic16F628-2.sym b/symbols/micro/pic16F628-2.sym
index 9b25014..d7680b3 100644
--- a/symbols/micro/pic16F628-2.sym
+++ b/symbols/micro/pic16F628-2.sym
@@ -206,8 +206,6 @@ T 3300 3200 8 10 1 1 0 6 1
 refdes=U?
 T 300 3550 5 10 0 0 0 0 1
 footprint=DIP18
-T 300 3750 5 10 0 0 0 0 1
-numslots=0
 T 300 3950 5 10 0 0 0 0 1
 symversion=0.1
 T 300 4150 5 10 0 0 0 0 1
diff --git a/symbols/micro/pic16F876-1.sym b/symbols/micro/pic16F876-1.sym
index aad70a2..b9e5210 100644
--- a/symbols/micro/pic16F876-1.sym
+++ b/symbols/micro/pic16F876-1.sym
@@ -316,8 +316,6 @@ T 300 6650 5 10 0 0 0 0 1
 footprint=DIP28
 T 300 6850 5 10 0 0 0 0 1
 description=8-bit CMOS FLASH microcontroller
-T 300 6450 5 10 0 0 0 0 1
-numslots=0
 T 300 7050 5 10 0 0 0 0 1
 documentation=http://ww1.microchip.com/downloads/en/DeviceDoc/39582b.pdf
 T 300 6050 9 10 1 0 0 0 1
diff --git a/symbols/micro/pic16F877-1.sym b/symbols/micro/pic16F877-1.sym
index 8dea7a9..06dd2f7 100644
--- a/symbols/micro/pic16F877-1.sym
+++ b/symbols/micro/pic16F877-1.sym
@@ -448,8 +448,6 @@ T 400 8950 5 10 0 0 0 0 1
 footprint=PDIP40
 T 400 9350 5 10 0 0 0 0 1
 description=8-bit CMOS FLASH microcontroller
-T 400 9150 5 10 0 0 0 0 1
-numslots=0
 T 400 9550 5 10 0 0 0 0 1
 documentation=http://www.microchip.com/download/lit/pline/picmicro/families/16f87x/30292c.pdf
 T 400 8550 9 10 1 0 0 0 1
diff --git a/symbols/micro/pic16F877A-1.sym b/symbols/micro/pic16F877A-1.sym
index 83598f4..dc8ee14 100644
--- a/symbols/micro/pic16F877A-1.sym
+++ b/symbols/micro/pic16F877A-1.sym
@@ -451,8 +451,6 @@ T 400 9050 5 10 0 0 0 0 1
 footprint=DIP40
 T 400 9250 5 10 0 0 0 0 1
 description=8-bit CMOS FLASH microcontroller
-T 400 8850 5 10 0 0 0 0 1
-numslots=0
 T 400 9450 5 10 0 0 0 0 1
 documentation=http://www.microchip.com/download/lit/pline/picmicro/families/16f87x/39582b.pdf
 T 400 8450 9 10 1 0 180 8 1
diff --git a/symbols/micro/pic16c505-1.sym b/symbols/micro/pic16c505-1.sym
index 6da18e9..21830df 100644
--- a/symbols/micro/pic16c505-1.sym
+++ b/symbols/micro/pic16c505-1.sym
@@ -140,8 +140,6 @@ T 300 2450 5 10 0 0 0 0 1
 footprint=DIP14
 T 300 3250 5 10 0 0 0 0 1
 description=8-bit CMOS microcontroller
-T 300 2650 5 10 0 0 0 0 1
-numslots=0
 T 300 3450 5 10 0 0 0 0 1
 documentation=http://www.microchip.com/download/lit/pline/picmicro/families/16c5x/40192c.pdf
 T 300 2850 5 10 0 0 0 0 1
diff --git a/symbols/micro/pic16c5x-1.sym b/symbols/micro/pic16c5x-1.sym
index 0558aab..0940ffd 100644
--- a/symbols/micro/pic16c5x-1.sym
+++ b/symbols/micro/pic16c5x-1.sym
@@ -273,8 +273,6 @@ T 300 5050 5 10 0 0 0 0 1
 footprint=DIP28
 T 300 5650 5 10 0 0 0 0 1
 description=8-bit CMOS microcontroller
-T 300 4850 5 10 0 0 0 0 1
-numslots=0
 T 300 5250 5 10 0 0 0 0 1
 net=Vcc:2
 T 300 5450 5 10 0 0 0 0 1
diff --git a/symbols/micro/pic18F242-1.sym b/symbols/micro/pic18F242-1.sym
index 37156bd..d70bb2c 100644
--- a/symbols/micro/pic18F242-1.sym
+++ b/symbols/micro/pic18F242-1.sym
@@ -313,8 +313,6 @@ T 5400 2400 8 10 0 0 0 0 1
 description=Microchip PIC18F242 Microcontroller
 T 3800 6100 8 10 1 1 0 0 1
 refdes=U?
-T 5400 3300 8 10 0 0 0 0 1
-numslots=0
 T 5400 3000 8 10 0 0 0 0 1
 device=PIC18F242
 T 1750 5750 9 10 1 0 0 0 1
diff --git a/symbols/micro/pic18F4431-1.sym b/symbols/micro/pic18F4431-1.sym
index dc02c81..6d0e9ee 100644
--- a/symbols/micro/pic18F4431-1.sym
+++ b/symbols/micro/pic18F4431-1.sym
@@ -451,8 +451,6 @@ T 3200 8700 9 14 1 0 180 0 1
 PIC18F4431/4331-DIP
 T 400 9000 8 8 0 0 0 0 1
 device=PIC18F4431-DIP
-T 400 9200 8 8 0 0 0 0 1
-numslots=0
 T 400 9400 8 8 0 0 0 0 1
 footprint=DIP40
 T 400 9600 8 8 0 0 0 0 1
diff --git a/symbols/micro/staver24m32-1.sym b/symbols/micro/staver24m32-1.sym
index c0d3e06..a95379d 100644
--- a/symbols/micro/staver24m32-1.sym
+++ b/symbols/micro/staver24m32-1.sym
@@ -13,8 +13,6 @@ T 400 6250 8 10 0 0 0 0 1
 documentation=http://www.lawicel.com/
 T 400 6450 8 10 0 0 0 0 1
 description=microcontroller module based on Atmel ATMega32
-T 400 6650 8 10 0 0 0 0 1
-numslots=0
 P 100 5000 400 5000 1 0 0
 {
 T 300 5050 5 8 1 1 0 6 1
diff --git a/symbols/micro/sx28ac-1.sym b/symbols/micro/sx28ac-1.sym
index 810c6fb..6a5698b 100644
--- a/symbols/micro/sx28ac-1.sym
+++ b/symbols/micro/sx28ac-1.sym
@@ -273,8 +273,6 @@ T 300 5050 5 10 0 0 0 0 1
 footprint=DIP28
 T 300 5250 5 10 0 0 0 0 1
 description=8-bit configurable communication controller
-T 300 4850 5 10 0 0 0 0 1
-numslots=0
 T 300 5450 5 10 0 0 0 0 1
 net=Vcc:2
 T 300 5650 5 10 0 0 0 0 1
diff --git a/symbols/micro/tiny-tiger-1.sym b/symbols/micro/tiny-tiger-1.sym
index 85272cc..83cb196 100644
--- a/symbols/micro/tiny-tiger-1.sym
+++ b/symbols/micro/tiny-tiger-1.sym
@@ -17,8 +17,6 @@ T 400 9900 5 10 0 0 0 0 1
 fname=$Source$
 T 400 9600 5 10 0 0 0 0 1
 footprint=DIL 44 900
-T 400 9300 5 10 0 0 0 0 1
-numslots=0
 T 2400 8900 8 10 1 1 0 6 1
 refdes=U?
 T 400 8850 9 10 1 0 0 0 1
diff --git a/symbols/micro/z80pio-1.sym b/symbols/micro/z80pio-1.sym
index 45d6687..b7787a7 100644
--- a/symbols/micro/z80pio-1.sym
+++ b/symbols/micro/z80pio-1.sym
@@ -421,8 +421,6 @@ T 300 8550 5 10 0 0 0 0 1
 footprint=DIP40
 T 300 8750 5 10 0 0 0 0 1
 description=Z80 parallel I/O circuit
-T 300 8350 5 10 0 0 0 0 1
-numslots=0
 T 300 8950 5 10 0 0 0 0 1
 net=Vcc:26
 T 300 9150 5 10 0 0 0 0 1
diff --git a/symbols/misc/6A259-1.sym b/symbols/misc/6A259-1.sym
index 44b6eac..14dcb6e 100644
--- a/symbols/misc/6A259-1.sym
+++ b/symbols/misc/6A259-1.sym
@@ -166,8 +166,6 @@ T 300 4750 8 10 0 0 0 0 1
 footprint=DIP20
 T 300 4950 8 10 0 0 0 0 1
 description=Peripheral / Power Logic 8-Bit Addressable Latch
-T 300 5550 8 10 0 0 0 0 1
-numslots=0
 T 300 5150 8 10 0 0 0 0 1
 net=Vcc:17
 T 300 5350 8 10 0 0 0 0 1
diff --git a/symbols/misc/75176-1.sym b/symbols/misc/75176-1.sym
index 40e2d53..9406141 100644
--- a/symbols/misc/75176-1.sym
+++ b/symbols/misc/75176-1.sym
@@ -13,8 +13,6 @@ T 300 2950 8 10 0 0 0 0 1
 documentation=http://www.ti.com
 T 300 3150 8 10 0 0 0 0 1
 description=differential bus transciever rs422/485
-T 300 3350 8 10 0 0 0 0 1
-numslots=0
 P 0 1600 300 1600 1 0 0
 {
 T 200 1650 5 8 1 1 0 6 1
diff --git a/symbols/misc/ADG601-1.sym b/symbols/misc/ADG601-1.sym
index 105740f..87386de 100644
--- a/symbols/misc/ADG601-1.sym
+++ b/symbols/misc/ADG601-1.sym
@@ -90,8 +90,6 @@ pintype=pwr
 B 300 0 1000 1400 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 300 1750 5 10 0 0 0 0 1
 device=ADG601
-T 300 1950 5 10 0 0 0 0 1
-numslots=0
 T 1300 1600 8 10 1 1 0 6 1
 refdes=U?
 T 300 2150 5 10 0 0 0 0 1
diff --git a/symbols/misc/ADG602-1.sym b/symbols/misc/ADG602-1.sym
index 16e7ecc..ea50010 100644
--- a/symbols/misc/ADG602-1.sym
+++ b/symbols/misc/ADG602-1.sym
@@ -90,8 +90,6 @@ pintype=pwr
 B 300 0 1000 1400 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 300 1850 5 10 0 0 0 0 1
 device=ADG602
-T 300 2450 5 10 0 0 0 0 1
-numslots=0
 T 1300 1600 8 10 1 1 0 6 1
 refdes=U?
 T 300 2650 5 10 0 0 0 0 1
diff --git a/symbols/misc/ADG619-1.sym b/symbols/misc/ADG619-1.sym
index a0a57a5..14c9dcb 100644
--- a/symbols/misc/ADG619-1.sym
+++ b/symbols/misc/ADG619-1.sym
@@ -90,8 +90,6 @@ pintype=nc
 B 300 0 1000 1400 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 300 1850 5 10 0 0 0 0 1
 device=ADG619
-T 300 2450 5 10 0 0 0 0 1
-numslots=0
 T 1300 1600 8 10 1 1 0 6 1
 refdes=U?
 T 300 2650 5 10 0 0 0 0 1
diff --git a/symbols/misc/ADG620-1.sym b/symbols/misc/ADG620-1.sym
index cad1f7e..ebfdd42 100644
--- a/symbols/misc/ADG620-1.sym
+++ b/symbols/misc/ADG620-1.sym
@@ -90,8 +90,6 @@ pintype=nc
 B 300 0 1000 1400 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 300 1850 5 10 0 0 0 0 1
 device=ADG620
-T 300 2450 5 10 0 0 0 0 1
-numslots=0
 T 1300 1600 8 10 1 1 0 6 1
 refdes=U?
 T 300 2650 5 10 0 0 0 0 1
diff --git a/symbols/misc/HIP4080A-1.sym b/symbols/misc/HIP4080A-1.sym
index 50678b8..2d1c4ad 100644
--- a/symbols/misc/HIP4080A-1.sym
+++ b/symbols/misc/HIP4080A-1.sym
@@ -228,8 +228,6 @@ T 300 4700 5 10 0 0 0 0 1
 description=High Frequency Full Bridge FET Driver
 T 300 4900 5 10 0 0 0 0 1
 footprint=DIP20
-T 300 5100 5 10 0 0 0 0 1
-numslots=0
 T 300 5300 5 10 0 0 0 0 1
 net=AGND:4
 T 300 5500 5 10 0 0 0 0 1
diff --git a/symbols/misc/HIP4081A-1.sym b/symbols/misc/HIP4081A-1.sym
index 9d61306..76dbdd5 100644
--- a/symbols/misc/HIP4081A-1.sym
+++ b/symbols/misc/HIP4081A-1.sym
@@ -228,8 +228,6 @@ T 300 4700 5 10 0 0 0 0 1
 description=High Frequency Full Bridge FET Driver
 T 300 4900 5 10 0 0 0 0 1
 footprint=DIP20
-T 300 5100 5 10 0 0 0 0 1
-numslots=0
 T 300 5300 5 10 0 0 0 0 1
 net=AGND:4
 T 300 5500 5 10 0 0 0 0 1
diff --git a/symbols/misc/MC34063-1.sym b/symbols/misc/MC34063-1.sym
index ad4fd2b..8b8be87 100644
--- a/symbols/misc/MC34063-1.sym
+++ b/symbols/misc/MC34063-1.sym
@@ -96,8 +96,6 @@ pinseq=5
 }
 T 300 1600 8 10 0 0 0 0 1
 device=MC34063
-T 300 2200 8 10 0 0 0 0 1
-numslots=0
 T 300 1350 9 10 1 0 0 0 1
 MC34063
 T 300 2400 8 10 0 0 0 0 1
diff --git a/symbols/misc/QT60040-1.sym b/symbols/misc/QT60040-1.sym
index dd182ed..9024fec 100644
--- a/symbols/misc/QT60040-1.sym
+++ b/symbols/misc/QT60040-1.sym
@@ -17,8 +17,6 @@ T 300 4900 5 10 0 0 0 0 1
 fname=$Source$
 T 300 4600 5 10 0 0 0 0 1
 footprint=DIL 14 300
-T 300 4300 5 10 0 0 0 0 1
-numslots=0
 T 300 4000 5 10 0 0 0 0 1
 net=Vcc:1
 T 300 3700 5 10 0 0 0 0 1
diff --git a/symbols/misc/Si9986.sym b/symbols/misc/Si9986.sym
index ef008c6..e51863e 100644
--- a/symbols/misc/Si9986.sym
+++ b/symbols/misc/Si9986.sym
@@ -100,5 +100,3 @@ pintype=out
 T 1400 300 3 8 1 1 0 7 1
 pinlabel=OUTA
 }
-T 300 3000 5 10 0 0 0 0 1
-numslots=0
diff --git a/symbols/misc/ir2110-1.sym b/symbols/misc/ir2110-1.sym
index 17d4588..4a83e33 100644
--- a/symbols/misc/ir2110-1.sym
+++ b/symbols/misc/ir2110-1.sym
@@ -121,8 +121,6 @@ pinseq=7
 T 1650 1700 5 8 0 1 0 8 1
 pintype=out
 }
-T 300 2750 8 10 0 0 0 0 1
-numslots=0
 T 300 2550 8 10 0 0 0 0 1
 description=High and Low Side, Half Bridge Mosfet Gate Driver
 T 300 2350 8 10 0 0 0 0 1
diff --git a/symbols/misc/ltp-757g-1.sym b/symbols/misc/ltp-757g-1.sym
index 8b73f84..446fa62 100644
--- a/symbols/misc/ltp-757g-1.sym
+++ b/symbols/misc/ltp-757g-1.sym
@@ -5,8 +5,6 @@ T 2900 1000 8 10 0 0 0 0 1
 device=LTP-757-G
 T 2900 1200 8 10 0 0 0 0 1
 footprint=DIP12
-T 2900 800 8 10 0 0 0 0 1
-numslots=0
 P 0 0 200 0 1 0 0
 {
 T 100 50 5 8 0 0 0 0 1
diff --git a/symbols/misc/mc3479-1.sym b/symbols/misc/mc3479-1.sym
index d19d432..3bb69eb 100644
--- a/symbols/misc/mc3479-1.sym
+++ b/symbols/misc/mc3479-1.sym
@@ -131,8 +131,6 @@ T 2175 2425 8 8 0 0 0 0 1
 description=Stepper motor controler
 T 2350 2275 8 8 0 0 0 0 1
 author=Take Vos Take.Vos@xxxxxxxxxxx
-T 2475 2200 8 8 0 0 0 0 1
-numslots=0
 T 2625 2125 8 8 0 0 0 0 1
 footprint=DIP16
 T 2475 2175 8 8 0 0 0 0 1
diff --git a/symbols/misc/mc3487-1.sym b/symbols/misc/mc3487-1.sym
index 2c26328..bb3ec49 100644
--- a/symbols/misc/mc3487-1.sym
+++ b/symbols/misc/mc3487-1.sym
@@ -170,5 +170,3 @@ T 3100 3000 9 10 0 0 0 0 1
 net=GND:8
 T 3100 2800 9 10 0 0 0 0 1
 footprint=DIL 16 300
-T 2900 1800 9 10 0 0 0 0 1
-numslots=0
diff --git a/symbols/misc/osc-2.sym b/symbols/misc/osc-2.sym
index f91e228..d14214e 100644
--- a/symbols/misc/osc-2.sym
+++ b/symbols/misc/osc-2.sym
@@ -8,8 +8,6 @@ T 0 1100 5 10 0 0 0 0 1
 footprint=DIP8
 T 0 1300 5 10 0 0 0 0 1
 description=Generic Oscillator Half Can
-T 0 900 5 10 0 0 0 0 1
-numslots=0
 L 900 400 800 300 3 0 0 0 -1 -1
 L 800 300 900 200 3 0 0 0 -1 -1
 P 1200 300 900 300 1 0 0
diff --git a/symbols/misc/osc-3.sym b/symbols/misc/osc-3.sym
index 1ee8010..3d8c06b 100644
--- a/symbols/misc/osc-3.sym
+++ b/symbols/misc/osc-3.sym
@@ -8,8 +8,6 @@ T 1000 1400 8 10 0 0 0 0 1
 footprint=OSC14
 T 1000 1600 8 10 0 0 0 0 1
 description=Generic Oscillator Can
-T 1000 1200 8 10 0 0 0 0 1
-numslots=0
 P 1200 100 900 100 1 0 0
 {
 T 950 150 5 10 1 1 0 0 1
diff --git a/symbols/national/DS1620-1.sym b/symbols/national/DS1620-1.sym
index db5e2ea..1a640ec 100644
--- a/symbols/national/DS1620-1.sym
+++ b/symbols/national/DS1620-1.sym
@@ -97,8 +97,6 @@ pinseq=5
 V 250 500 50 6 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
 T 300 1600 8 10 0 0 0 0 1
 device=DS1602
-T 300 2200 8 10 0 0 0 0 1
-numslots=0
 T 300 1350 9 10 1 0 0 0 1
 DS1650
 T 300 2400 8 10 0 0 0 0 1
diff --git a/symbols/national/DS2405-1.sym b/symbols/national/DS2405-1.sym
index dd7bb6c..3d875a1 100644
--- a/symbols/national/DS2405-1.sym
+++ b/symbols/national/DS2405-1.sym
@@ -49,7 +49,5 @@ T 400 1750 5 10 0 0 0 0 1
 description=1-wire addressable switch
 T 400 1950 5 10 0 0 0 0 1
 footprint=TO-92
-T 400 2150 5 10 0 0 0 0 1
-numslots=0
 T 1000 900 8 10 1 1 0 0 1
 refdes=U?
diff --git a/symbols/national/DS26C31-1.sym b/symbols/national/DS26C31-1.sym
index fd18a69..f3fd9d9 100644
--- a/symbols/national/DS26C31-1.sym
+++ b/symbols/national/DS26C31-1.sym
@@ -195,5 +195,3 @@ T 0 4750 5 10 0 0 0 0 1
 net=Vcc:16
 T 0 4950 5 10 0 0 0 0 1
 net=GND:8
-T 0 5200 5 10 0 0 0 0 1
-numslots=0
diff --git a/symbols/national/DS26C32-2.sym b/symbols/national/DS26C32-2.sym
index bb593c8..2319b2e 100644
--- a/symbols/national/DS26C32-2.sym
+++ b/symbols/national/DS26C32-2.sym
@@ -195,5 +195,3 @@ T 0 4950 5 10 0 0 0 0 1
 net=GND:8
 T 0 4550 5 10 0 0 0 0 1
 documentation=TBD
-T 0 5100 5 10 0 0 0 0 1
-numslots=0
diff --git a/symbols/national/DS26LS31-1.sym b/symbols/national/DS26LS31-1.sym
index ad08759..50572da 100644
--- a/symbols/national/DS26LS31-1.sym
+++ b/symbols/national/DS26LS31-1.sym
@@ -165,7 +165,5 @@ T 300 3450 9 10 1 0 0 0 1
 DS26LS31
 T 2000 3500 8 10 1 1 0 6 1
 refdes=U?
-T 2700 3100 9 10 0 0 0 0 1
-numslots=0
 T 3400 2500 8 10 0 1 0 0 1
 footprint=DIL 16 300
diff --git a/symbols/national/DS2890_TO92-1.sym b/symbols/national/DS2890_TO92-1.sym
index ac8ddc1..e0abaf5 100644
--- a/symbols/national/DS2890_TO92-1.sym
+++ b/symbols/national/DS2890_TO92-1.sym
@@ -56,7 +56,5 @@ T 1100 900 8 10 1 1 0 0 1
 refdes=U?
 T 200 2000 5 10 0 0 0 0 1
 footprint=TO-92
-T 200 2200 5 10 0 0 0 0 1
-numslots=0
 T 1100 700 9 10 1 0 0 0 1
 DS2890
diff --git a/symbols/national/DS75176-1.sym b/symbols/national/DS75176-1.sym
index 62d2efd..00f6f41 100644
--- a/symbols/national/DS75176-1.sym
+++ b/symbols/national/DS75176-1.sym
@@ -74,8 +74,6 @@ T 300 1950 8 10 0 0 0 0 1
 footprint=DIP8
 T 300 2150 8 10 0 0 0 0 1
 description=Multipoint RS-485/RS-422 Transceivers
-T 300 2750 8 10 0 0 0 0 1
-numslots=0
 T 300 2350 8 10 0 0 0 0 1
 net=Vcc:8
 T 300 2550 8 10 0 0 0 0 1
diff --git a/symbols/national/pc16500d-1.sym b/symbols/national/pc16500d-1.sym
index 838b29e..34042be 100644
--- a/symbols/national/pc16500d-1.sym
+++ b/symbols/national/pc16500d-1.sym
@@ -4,8 +4,6 @@ T 1400 800 5 10 0 0 0 0 1
 device=PC16550D
 T 1000 11664 5 10 0 0 0 0 1
 description=UART w/ FIFOs
-T 1600 11900 5 10 0 0 0 0 1
-numslots=0
 T 1200 11400 5 10 0 0 0 0 1
 footprint=DIL 40 600
 P 2100 400 2100 100 1 0 1
diff --git a/symbols/opto/6N135-1.sym b/symbols/opto/6N135-1.sym
index ec2334e..aec501b 100644
--- a/symbols/opto/6N135-1.sym
+++ b/symbols/opto/6N135-1.sym
@@ -74,5 +74,3 @@ T 1500 1600 8 10 1 1 0 0 1
 refdes=U?
 T 300 2200 5 10 0 0 0 0 1
 description=Optocoupler/Optoisolator
-T 300 1800 5 10 0 0 0 0 1
-numslots=0
diff --git a/symbols/opto/6N136-1.sym b/symbols/opto/6N136-1.sym
index 65d629a..6a6ce23 100644
--- a/symbols/opto/6N136-1.sym
+++ b/symbols/opto/6N136-1.sym
@@ -74,5 +74,3 @@ T 1500 1600 8 10 1 1 0 0 1
 refdes=U?
 T 300 2200 5 10 0 0 0 0 1
 description=Optocoupler/Optoisolator
-T 300 1800 5 10 0 0 0 0 1
-numslots=0
diff --git a/symbols/opto/CNY17-1.sym b/symbols/opto/CNY17-1.sym
index 4e0df4e..74968ba 100644
--- a/symbols/opto/CNY17-1.sym
+++ b/symbols/opto/CNY17-1.sym
@@ -75,5 +75,3 @@ T 700 2200 5 10 0 0 0 0 1
 description=Phototransistor optocoupler
 T 700 2400 5 10 0 0 0 0 1
 footprint=DIL6
-T 700 2600 5 10 0 0 0 0 1
-numslots=0
diff --git a/symbols/opto/HCPL4502-1.sym b/symbols/opto/HCPL4502-1.sym
index 7f0d6c7..4f8761e 100644
--- a/symbols/opto/HCPL4502-1.sym
+++ b/symbols/opto/HCPL4502-1.sym
@@ -63,5 +63,3 @@ T 1500 1600 8 10 1 1 0 0 1
 refdes=U?
 T 300 2200 5 10 0 0 0 0 1
 description=Optocoupler/Optoisolator
-T 300 1800 5 10 0 0 0 0 1
-numslots=0
diff --git a/symbols/opto/HCTL-2000-1.sym b/symbols/opto/HCTL-2000-1.sym
index c07c509..dff1566 100644
--- a/symbols/opto/HCTL-2000-1.sym
+++ b/symbols/opto/HCTL-2000-1.sym
@@ -8,8 +8,6 @@ T 400 3200 5 10 0 0 0 0 1
 footprint=DIP16
 T 400 3600 5 10 0 1 0 0 1
 description=Quadrature Decoder/Counter Interface
-T 400 3400 5 10 0 0 0 0 1
-numslots=0
 T 708 2500 3 10 0 1 0 0 1
 net=Vcc:16
 T 682 50 3 10 0 1 0 0 1
diff --git a/symbols/opto/HCTL-2016-1.sym b/symbols/opto/HCTL-2016-1.sym
index 9dd9f4a..e40213b 100644
--- a/symbols/opto/HCTL-2016-1.sym
+++ b/symbols/opto/HCTL-2016-1.sym
@@ -8,8 +8,6 @@ T 400 3200 5 10 0 0 0 0 1
 footprint=DIP16
 T 400 3600 5 10 0 1 0 0 1
 description=Quadrature Decoder/Counter Interface
-T 400 3400 5 10 0 0 0 0 1
-numslots=0
 T 708 2500 3 10 0 1 0 0 1
 net=Vcc:16
 T 682 50 3 10 0 1 0 0 1
diff --git a/symbols/opto/hcnr201-1.sym b/symbols/opto/hcnr201-1.sym
index 7c6308c..23c7d86 100644
--- a/symbols/opto/hcnr201-1.sym
+++ b/symbols/opto/hcnr201-1.sym
@@ -122,5 +122,3 @@ L 1150 698 1110 739 3 0 0 0 -1 -1
 L 800 700 700 500 3 0 0 0 -1 -1
 L 700 499 709 559 3 0 0 0 -1 -1
 L 700 498 740 539 3 0 0 0 -1 -1
-T 0 0 8 10 0 1 0 0 1
-numslots=0
diff --git a/symbols/opto/hsdl3612-1.sym b/symbols/opto/hsdl3612-1.sym
index 6beedef..9412a97 100644
--- a/symbols/opto/hsdl3612-1.sym
+++ b/symbols/opto/hsdl3612-1.sym
@@ -109,8 +109,6 @@ T 2000 4900 8 10 0 1 0 0 1
 description=IrDA SIR integrated transceiver
 T 2000 5100 8 10 0 1 0 0 1
 documentation=http://www.home.agilent.com/cgi-bin/pub/agilent/Product/cp_Product.jsp?NAV_ID=-536893562.536885314.00&LANGUAGE_CODE=eng&CONTENT_KEY=HSDL-3612-007&ID=HSDL-3612-007&COUNTRY_CODE=US
-T 2000 5300 8 10 0 0 0 0 1
-numslots=0
 T 2000 5500 8 10 0 0 0 0 1
 device=HSDL-3612
 T 2000 5700 8 10 0 0 0 0 1
diff --git a/symbols/philips/PCA82C250-1.sym b/symbols/philips/PCA82C250-1.sym
index 9a0a121..2d812f0 100644
--- a/symbols/philips/PCA82C250-1.sym
+++ b/symbols/philips/PCA82C250-1.sym
@@ -8,8 +8,6 @@ T 400 2400 5 10 0 0 0 0 1
 footprint=DIP8
 T 400 2600 5 10 0 0 0 0 1
 description=CAN Controller Interface
-T 400 2200 5 10 0 0 0 0 1
-numslots=0
 P 1700 1400 2000 1400 1 0 1
 {
 T 1800 1450 5 10 1 1 0 0 1
diff --git a/symbols/philips/PCF8563-1.sym b/symbols/philips/PCF8563-1.sym
index 173d910..d4dc646 100644
--- a/symbols/philips/PCF8563-1.sym
+++ b/symbols/philips/PCF8563-1.sym
@@ -8,8 +8,6 @@ T 400 2500 8 10 0 0 0 0 1
 footprint=DIP8
 T 400 2700 8 10 0 0 0 0 1
 description=Real-time clock/calendar
-T 400 2300 8 10 0 0 0 0 1
-numslots=0
 P 1700 1500 2000 1500 1 0 1
 {
 T 1800 1550 5 10 1 1 0 0 1
diff --git a/symbols/pla/22V10-DIP-1.sym b/symbols/pla/22V10-DIP-1.sym
index b0cfce0..ca91e2e 100644
--- a/symbols/pla/22V10-DIP-1.sym
+++ b/symbols/pla/22V10-DIP-1.sym
@@ -8,8 +8,6 @@ T 300 4600 5 10 0 0 0 0 1
 footprint=DIP24
 T 300 4800 5 10 0 0 0 0 1
 description=Programmable Logic Device
-T 300 4400 5 10 0 0 0 0 1
-numslots=0
 T 1808 3800 3 8 0 1 0 0 1
 net=Vcc:24
 T 1782 50 3 8 0 1 0 0 1
diff --git a/symbols/pla/N82S100N-1.sym b/symbols/pla/N82S100N-1.sym
index 1c0eb37..84400a4 100644
--- a/symbols/pla/N82S100N-1.sym
+++ b/symbols/pla/N82S100N-1.sym
@@ -1,8 +1,6 @@
 v 20060906 1
 T 300 7450 5 10 0 0 0 0 1
 device=N82S100N
-T 300 7050 5 10 0 0 0 0 1
-numslots=0
 T 300 7250 5 10 0 0 0 0 1
 footprint=DIP28
 B 300 0 1400 6800 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
diff --git a/symbols/spice/cccs-1.sym b/symbols/spice/cccs-1.sym
index a529bad..a176da0 100644
--- a/symbols/spice/cccs-1.sym
+++ b/symbols/spice/cccs-1.sym
@@ -70,8 +70,6 @@ T 600 850 8 10 1 1 0 0 1
 refdes=F?
 T 200 2050 5 10 0 0 0 0 1
 description=current controlled current source
-T 200 1450 5 10 0 0 0 0 1
-numslots=0
 T 200 1250 5 10 0 0 0 0 1
 symversion=0.1
 T 200 1850 5 10 0 0 0 0 1
diff --git a/symbols/spice/ccvs-1.sym b/symbols/spice/ccvs-1.sym
index 195f3b8..840b216 100644
--- a/symbols/spice/ccvs-1.sym
+++ b/symbols/spice/ccvs-1.sym
@@ -67,8 +67,6 @@ T 600 850 8 10 1 1 0 0 1
 refdes=H?
 T 200 2050 5 10 0 0 0 0 1
 description=current controlled current source
-T 200 1450 5 10 0 0 0 0 1
-numslots=0
 T 200 1250 5 10 0 0 0 0 1
 symversion=0.1
 T 200 1850 5 10 0 0 0 0 1
diff --git a/symbols/spice/gnucap-directive-1.sym b/symbols/spice/gnucap-directive-1.sym
index a64d7c0..6a60c5f 100644
--- a/symbols/spice/gnucap-directive-1.sym
+++ b/symbols/spice/gnucap-directive-1.sym
@@ -10,5 +10,3 @@ T 100 0 8 10 1 1 0 0 1
 file=?
 T 100 0 8 10 1 1 0 0 1
 value=?
-T 100 600 8 10 0 0 0 0 1
-numslots=0
diff --git a/symbols/spice/gnucap-include-1.sym b/symbols/spice/gnucap-include-1.sym
index b679302..3240a84 100644
--- a/symbols/spice/gnucap-include-1.sym
+++ b/symbols/spice/gnucap-include-1.sym
@@ -10,5 +10,3 @@ T 500 0 8 10 1 1 0 0 1
 file=?
 T 100 0 9 10 1 0 0 0 1
 File:
-T 300 600 8 10 0 0 0 0 1
-numslots=0
diff --git a/symbols/spice/gnucap-model-1.sym b/symbols/spice/gnucap-model-1.sym
index 3e9421e..2abc96b 100644
--- a/symbols/spice/gnucap-model-1.sym
+++ b/symbols/spice/gnucap-model-1.sym
@@ -14,5 +14,3 @@ T 1300 200 8 10 1 1 0 0 1
 model-name=?
 T 500 0 8 10 1 1 0 0 1
 file=?
-T 100 800 8 10 0 0 0 0 1
-numslots=0
diff --git a/symbols/spice/gnucap-npn-1.sym b/symbols/spice/gnucap-npn-1.sym
index b27cdb4..4231554 100644
--- a/symbols/spice/gnucap-npn-1.sym
+++ b/symbols/spice/gnucap-npn-1.sym
@@ -55,5 +55,3 @@ pinnumber=4
 }
 T 100 1300 5 10 0 0 0 0 1
 description=http://geda.seul.org/tools/gnucap/gnucap-man-html/gnucap-man076.html
-T 600 700 8 10 0 0 0 0 1
-numslots=0
diff --git a/symbols/spice/gnucap-options-1.sym b/symbols/spice/gnucap-options-1.sym
index bf4a144..e7e809f 100644
--- a/symbols/spice/gnucap-options-1.sym
+++ b/symbols/spice/gnucap-options-1.sym
@@ -8,5 +8,3 @@ T 500 300 9 10 1 0 0 0 1
 Gnucap options
 T 100 0 8 10 1 1 0 0 1
 value=?
-T 100 600 8 10 0 0 0 0 1
-numslots=0
diff --git a/symbols/spice/idc-1.sym b/symbols/spice/idc-1.sym
index 884722a..4ed58b6 100644
--- a/symbols/spice/idc-1.sym
+++ b/symbols/spice/idc-1.sym
@@ -5,8 +5,6 @@ T 700 850 5 10 0 0 0 0 1
 device=CURRENT_SOURCE
 T 700 1050 5 10 0 0 0 0 1
 footprint=none
-T 700 1250 5 10 0 0 0 0 1
-numslots=0
 T 700 1450 5 10 0 0 0 0 1
 description=dc current source
 P 300 1200 300 900 1 0 0
diff --git a/symbols/spice/vac-1.sym b/symbols/spice/vac-1.sym
index 4e756d0..c84e967 100644
--- a/symbols/spice/vac-1.sym
+++ b/symbols/spice/vac-1.sym
@@ -5,8 +5,6 @@ T 700 850 5 10 0 0 0 0 1
 device=vac
 T 700 1050 5 10 0 0 0 0 1
 footprint=none
-T 700 1250 5 10 0 0 0 0 1
-numslots=0
 T 700 1450 5 10 0 0 0 0 1
 description=ac power source
 P 300 1200 300 900 1 0 0
diff --git a/symbols/spice/vccs-1.sym b/symbols/spice/vccs-1.sym
index d59b77d..be0b916 100644
--- a/symbols/spice/vccs-1.sym
+++ b/symbols/spice/vccs-1.sym
@@ -67,8 +67,6 @@ T 600 850 8 10 1 1 0 0 1
 refdes=G?
 T 200 1850 5 10 0 0 0 0 1
 description=voltage controlled current source
-T 200 1450 5 10 0 0 0 0 1
-numslots=0
 T 200 1250 5 10 0 0 0 0 1
 symversion=0.1
 T 200 1650 5 10 0 0 0 0 1
diff --git a/symbols/spice/vcvs-1.sym b/symbols/spice/vcvs-1.sym
index 39d5f7e..2514820 100644
--- a/symbols/spice/vcvs-1.sym
+++ b/symbols/spice/vcvs-1.sym
@@ -64,8 +64,6 @@ T 600 850 8 10 1 1 0 0 1
 refdes=E?
 T 200 1850 5 10 0 0 0 0 1
 description=voltage controlled voltage source
-T 200 1450 5 10 0 0 0 0 1
-numslots=0
 T 200 1250 5 10 0 0 0 0 1
 symversion=0.1
 T 200 1650 5 10 0 0 0 0 1
diff --git a/symbols/spice/vdc-1.sym b/symbols/spice/vdc-1.sym
index 636a083..a2ed4b0 100644
--- a/symbols/spice/vdc-1.sym
+++ b/symbols/spice/vdc-1.sym
@@ -5,8 +5,6 @@ T 700 850 5 10 0 0 0 0 1
 device=VOLTAGE_SOURCE
 T 700 1050 5 10 0 0 0 0 1
 footprint=none
-T 700 1250 5 10 0 0 0 0 1
-numslots=0
 T 700 1450 5 10 0 0 0 0 1
 description=dc power source
 P 300 1200 300 900 1 0 0
diff --git a/symbols/spice/vexp-1.sym b/symbols/spice/vexp-1.sym
index 5ce6bc7..117d554 100644
--- a/symbols/spice/vexp-1.sym
+++ b/symbols/spice/vexp-1.sym
@@ -5,8 +5,6 @@ T 700 850 5 10 0 0 0 0 1
 device=vexp
 T 700 1050 5 10 0 0 0 0 1
 footprint=none
-T 700 1250 5 10 0 0 0 0 1
-numslots=0
 T 700 1450 5 10 0 0 0 0 1
 description=exponential signal source
 P 300 1200 300 900 1 0 0
diff --git a/symbols/spice/vpulse-1.sym b/symbols/spice/vpulse-1.sym
index e8805fe..21e3952 100644
--- a/symbols/spice/vpulse-1.sym
+++ b/symbols/spice/vpulse-1.sym
@@ -5,8 +5,6 @@ T 700 850 5 10 0 0 0 0 1
 device=vpulse
 T 700 1050 5 10 0 0 0 0 1
 footprint=none
-T 700 1250 5 10 0 0 0 0 1
-numslots=0
 T 700 1450 5 10 0 0 0 0 1
 description=pulse power source, generator
 P 300 1200 300 900 1 0 0
diff --git a/symbols/spice/vpwl-1.sym b/symbols/spice/vpwl-1.sym
index 60e852b..5a33a86 100644
--- a/symbols/spice/vpwl-1.sym
+++ b/symbols/spice/vpwl-1.sym
@@ -5,8 +5,6 @@ T 700 850 5 10 0 0 0 0 1
 device=vpwl
 T 700 1050 5 10 0 0 0 0 1
 footprint=none
-T 700 1250 5 10 0 0 0 0 1
-numslots=0
 T 700 1450 5 10 0 0 0 0 1
 description=piece-wise linear signal source
 P 300 1200 300 900 1 0 0
diff --git a/symbols/spice/vsin-1.sym b/symbols/spice/vsin-1.sym
index 8ec8a32..55ad0d3 100644
--- a/symbols/spice/vsin-1.sym
+++ b/symbols/spice/vsin-1.sym
@@ -5,8 +5,6 @@ T 700 850 5 10 0 0 0 0 1
 device=vsin
 T 700 1050 5 10 0 0 0 0 1
 footprint=none
-T 700 1250 5 10 0 0 0 0 1
-numslots=0
 T 700 1450 5 10 0 0 0 0 1
 description=sinusoidal signal source
 P 300 1200 300 900 1 0 0
diff --git a/symbols/st/ST7538-1.sym b/symbols/st/ST7538-1.sym
index f89ccc1..36acaff 100644
--- a/symbols/st/ST7538-1.sym
+++ b/symbols/st/ST7538-1.sym
@@ -10,8 +10,6 @@ T 350 7100 8 10 0 0 0 0 1
 description=Power Line FSK Transceiver
 T 350 7300 8 10 0 0 0 0 1
 documentation=http://www.st.com/stonline/books/pdf/docs/9324.pdf
-T 350 7550 8 10 0 0 0 0 1
-numslots=0
 P 300 2400 0 2400 1 0 1
 {
 T 250 2430 5 8 1 1 0 6 1
diff --git a/symbols/switch/ssrelay-spdt-lcc110-1.sym b/symbols/switch/ssrelay-spdt-lcc110-1.sym
index b7bdc44..e1c5db4 100644
--- a/symbols/switch/ssrelay-spdt-lcc110-1.sym
+++ b/symbols/switch/ssrelay-spdt-lcc110-1.sym
@@ -1,7 +1,5 @@
 v 20041228 1
 B 300 200 1500 1500 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
-T 300 2000 5 10 0 0 0 0 1
-numslots=0
 T 300 2600 5 10 0 0 0 0 1
 device=LCC110
 T 300 2200 5 10 0 0 0 0 1
diff --git a/symbols/switch/switch-dip12.sym b/symbols/switch/switch-dip12.sym
index 8416a6d..c837ef7 100644
--- a/symbols/switch/switch-dip12.sym
+++ b/symbols/switch/switch-dip12.sym
@@ -1,8 +1,6 @@
 v 20041228 1
 T 300 4300 8 10 1 1 0 0 1
 footprint=SWITCH_DIP12
-T 300 4100 8 10 0 0 0 0 1
-numslots=0
 P 0 3700 300 3700 1 0 0
 {
 T 100 3750 5 8 1 1 0 0 1
diff --git a/symbols/transistor/2N3904-2.sym b/symbols/transistor/2N3904-2.sym
index fc7b7cb..ce1ffed 100644
--- a/symbols/transistor/2N3904-2.sym
+++ b/symbols/transistor/2N3904-2.sym
@@ -46,5 +46,3 @@ T 900 500 8 10 1 1 0 0 1
 refdes=Q?
 T 904 906 8 10 0 0 0 0 1
 footprint=TO92
-T 904 1098 8 10 0 0 0 0 1
-numslots=0
diff --git a/symbols/transistor/2N3906-1.sym b/symbols/transistor/2N3906-1.sym
index ac8b61c..c594368 100644
--- a/symbols/transistor/2N3906-1.sym
+++ b/symbols/transistor/2N3906-1.sym
@@ -48,7 +48,5 @@ T 600 1100 8 10 0 0 0 0 1
 description=2N3906 PNP transistor
 T 600 1300 8 10 0 0 0 0 1
 documentation=http://www.fairchildsemi.com/pf/2N/2N3906.html
-T 600 1500 8 10 0 0 0 0 1
-numslots=0
 T 600 1700 8 10 0 0 0 0 1
 footprint=TO92
diff --git a/symbols/transistor/2N5245-1.sym b/symbols/transistor/2N5245-1.sym
index 52c2cd7..653cff3 100644
--- a/symbols/transistor/2N5245-1.sym
+++ b/symbols/transistor/2N5245-1.sym
@@ -46,7 +46,5 @@ T 400 1350 5 10 0 0 0 0 1
 footprint=TO92
 T 400 1550 5 10 0 0 0 0 1
 description=n-channel rf amplifier
-T 400 1750 5 10 0 0 0 0 1
-numslots=0
 T 400 1150 5 10 0 0 0 0 1
 documentation=http://www.fairchildsemi.com/ds/2N/2N5245.pdf
diff --git a/symbols/transistor/BC182-1.sym b/symbols/transistor/BC182-1.sym
index e9457fd..d45e922 100644
--- a/symbols/transistor/BC182-1.sym
+++ b/symbols/transistor/BC182-1.sym
@@ -48,8 +48,6 @@ T 1000 500 5 8 0 0 0 0 1
 value=BC182
 T 1000 900 5 8 0 0 0 0 1
 footprint=TO92
-T 1000 1100 5 8 0 0 0 0 1
-numslots=0
 T 1000 1000 5 8 0 0 0 0 1
 description=Small Signal NPN Bipolar
 T 1000 400 9 10 1 0 0 0 1
diff --git a/symbols/transistor/BC307-1.sym b/symbols/transistor/BC307-1.sym
index 2939549..f3c74ba 100644
--- a/symbols/transistor/BC307-1.sym
+++ b/symbols/transistor/BC307-1.sym
@@ -48,5 +48,3 @@ T 900 300 9 10 0 0 0 0 1
 footprint=TO92
 T 900 100 8 10 0 1 0 0 1
 description=PNP transistor
-T 0 0 8 10 0 1 0 0 1
-numslots=0
diff --git a/symbols/transistor/BC547-2.sym b/symbols/transistor/BC547-2.sym
index a794142..491defa 100644
--- a/symbols/transistor/BC547-2.sym
+++ b/symbols/transistor/BC547-2.sym
@@ -48,8 +48,6 @@ T 1000 500 5 8 0 0 0 0 1
 value=BC547
 T 1000 900 5 8 0 0 0 0 1
 footprint=TO92
-T 1000 1100 5 8 0 0 0 0 1
-numslots=0
 T 1000 1000 5 8 0 0 0 0 1
 description=Small Signal Bipolar
 T 1000 400 9 10 1 0 0 0 1
diff --git a/symbols/transistor/BC547-3.sym b/symbols/transistor/BC547-3.sym
index ffee49b..cd696a5 100644
--- a/symbols/transistor/BC547-3.sym
+++ b/symbols/transistor/BC547-3.sym
@@ -46,8 +46,6 @@ T 900 500 8 10 1 1 0 0 1
 refdes=Q?
 T 900 1000 8 10 0 1 0 0 1
 footprint=TO92
-T 900 700 8 10 0 0 0 0 1
-numslots=0
 T 100 1200 8 10 0 1 0 0 1
 description=BC547 NPN general purpose transistor
 T 100 1400 8 10 0 1 0 0 1
diff --git a/symbols/transistor/BC557-1.sym b/symbols/transistor/BC557-1.sym
index 3d93a23..dcc49c6 100644
--- a/symbols/transistor/BC557-1.sym
+++ b/symbols/transistor/BC557-1.sym
@@ -48,8 +48,6 @@ T 1000 500 5 8 0 0 0 0 1
 value=BC557
 T 1000 900 5 8 0 0 0 0 1
 footprint=TO92
-T 1000 1100 5 8 0 0 0 0 1
-numslots=0
 T 1000 1000 5 8 0 0 0 0 1
 description=Small Signal PNP Bipolar
 T 1000 400 9 10 1 0 0 0 1
diff --git a/symbols/transistor/BC557-2.sym b/symbols/transistor/BC557-2.sym
index 5e24984..ffca0ad 100644
--- a/symbols/transistor/BC557-2.sym
+++ b/symbols/transistor/BC557-2.sym
@@ -48,8 +48,6 @@ T 1000 500 5 8 0 0 0 0 1
 value=BC557
 T 1000 900 5 8 0 0 0 0 1
 footprint=TO92
-T 1000 1100 5 8 0 0 0 0 1
-numslots=0
 T 1000 1000 5 8 0 0 0 0 1
 description=Small Signal PNP Bipolar
 T 1000 400 9 10 1 0 0 0 1
diff --git a/symbols/transistor/IRF1010N-1.sym b/symbols/transistor/IRF1010N-1.sym
index 49d7963..087cf63 100644
--- a/symbols/transistor/IRF1010N-1.sym
+++ b/symbols/transistor/IRF1010N-1.sym
@@ -1,8 +1,6 @@
 v 20031231 1
 T 600 200 5 10 1 1 0 0 1
 device=IRF1010N
-T 600 300 5 10 0 0 0 0 1
-numslots=0
 T 600 400 5 10 0 0 0 0 1
 description=HEXFET Power MOSFET
 T 600 500 5 10 0 0 0 0 1
diff --git a/symbols/transistor/IRLZ24N-1.sym b/symbols/transistor/IRLZ24N-1.sym
index ba74a79..adb2bc0 100644
--- a/symbols/transistor/IRLZ24N-1.sym
+++ b/symbols/transistor/IRLZ24N-1.sym
@@ -1,8 +1,6 @@
 v 20031231 1
 T 600 200 5 10 1 1 0 0 1
 device=IRLZ24N
-T 600 300 5 10 0 0 0 0 1
-numslots=0
 T 600 400 5 10 0 0 0 0 1
 description=HEXFET Power MOSFET
 T 600 500 5 10 0 0 0 0 1
diff --git a/symbols/transistor/ips3310-1.sym b/symbols/transistor/ips3310-1.sym
index beebab3..a4ad01a 100644
--- a/symbols/transistor/ips3310-1.sym
+++ b/symbols/transistor/ips3310-1.sym
@@ -7,8 +7,6 @@ T 500 4700 8 10 0 0 0 0 1
 documentation=http://www.irf.com/product-info/datasheets/data/ips3310.pdf
 T 500 4300 8 10 0 0 0 0 1
 description=Protected HEXFET Power MOSFET
-T 500 5300 8 10 0 0 0 0 1
-numslots=0
 T 500 5100 8 10 0 0 0 0 1
 footprint=TO-220AB5
 L 5050 2700 5300 2700 3 0 0 0 -1 -1
diff --git a/symbols/transistor/ips521-1.sym b/symbols/transistor/ips521-1.sym
index 0cc506c..df999ba 100644
--- a/symbols/transistor/ips521-1.sym
+++ b/symbols/transistor/ips521-1.sym
@@ -1,8 +1,6 @@
 v 20041228 1
 T 3600 3700 5 10 1 1 0 0 1
 device=IPS521
-T 800 4300 8 10 0 0 0 0 1
-numslots=0
 T 800 4500 8 10 0 0 0 0 1
 description=Protected HEXFET Power MOSFET
 T 800 4700 8 10 0 0 0 0 1
diff --git a/symbols/xilinx/XC95108-PC84.sym b/symbols/xilinx/XC95108-PC84.sym
index 39412a4..1ac0a02 100644
--- a/symbols/xilinx/XC95108-PC84.sym
+++ b/symbols/xilinx/XC95108-PC84.sym
@@ -767,7 +767,5 @@ T 2100 24000 9 10 1 0 0 0 1
 CPLD
 T 400 24600 8 10 1 1 0 0 1
 refdes=U?
-T 400 24800 5 10 0 0 0 0 1
-numslots=0
 T 400 25000 5 10 0 0 0 0 1
 symversion=1.0

_______________________________________________
geda-user mailing list
geda-user@xxxxxxxxxxxxxx
http://www.seul.org/cgi-bin/mailman/listinfo/geda-user