pibase_open

find open problems in topology from pibase
git clone https://a3nm.net/git/pibase_open/
Log | Files | Refs | README

commit c944ff7681832e943d63c588f421780f5e5b8cd7
Author: Antoine Amarilli <a3nm@a3nm.net>
Date:   Sat,  1 Jun 2019 15:30:55 +0200

import from git/misc/pibase_open

Diffstat:
README | 84+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
explore.py | 119+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
full_spaces | 136+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
get_properties.sh | 7+++++++
get_spaces.sh | 19+++++++++++++++++++
get_theorem.py | 78++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
get_theorems.sh | 7+++++++
list | 7705+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
properties | 126+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
spaces | 136+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
theorems | 202+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
11 files changed, 8619 insertions(+), 0 deletions(-)

diff --git a/README b/README @@ -0,0 +1,84 @@ +A project to generate "open problems" for the data of pibase +<https://github.com/pi-base/data>. Pibase contains: + +- properties, that have a name +- spaces, that have a partial valuation of properties (i.e., a list of positive + and negative properties) +- theorems, that say that a conjunction of properties (positive or negative) + implies a conjunction of properties (positive or negative) + +An "open problem" is a partial valuation of properties which is minimal under +inclusion and satisfies: + +- it is satisfiable, i.e., can be extended to a complete valuations that + satisfies the theorems +- it is not covered by a known space + +This code generates open problems. Here is how to use it: + +- store the pibase github repository in ~/apps/data + +- run ./get_properties.sh > properties + +The file "properties" will now contain a list of lines of the form: + + "Pxyz human-readable name" + +where Pxyz is the property identifier + +- run ./get_spaces.sh > spaces + +The file "spaces" will now contain a list of lines of the form: + + "Sxyz Qa Qb Qc" + +where Sxyz is the space identifier and each Qx is either of the form Pxyz (a +property) or -Pxyz (the negation of a property) + +- run ./get_theorems.sh > theorems + +The file "theorems" will now contain a list of lines of the form: + + Txyz Qa Qb Qc + +Where each theorem with identifier Txyz is rewritten to as many copies as it has +consequences (i.e., a b => d e f gets rewritten to a b => d, a b => e, a b => f) +and each of these consequences is written as a disjunctive clause, i.e., +a b -c => d is written as -a -b c d. + +Hence, the whole file theorems is a Boolean CNF formula. + +- run ./explore.py + +This will first "complete" the properties of the space, generating a file +"full_spaces" with lines of the same form as "spaces" that contain all +properties that logically follow from the known properties given the theorems. +The algorithm is that, for each property p such the space neither has p nor -p, +we run a SAT solver on the theorems plus the known properties plus p, and +another SAT solver on the theorems plus the known properties plus -p. If the +first (resp second) call is unsatisfiable, then -p (resp p) is added. + +IMPORTANT: the file "full_spaces" should be removed whenever the list of +properties, spaces, or theorems is changed! + +Next, "explore.py" performs a BFS on the partial valuations of properties (in +increasing order) and outputs the open problems. Here is the algorithm: + +- if a partial valuation covers a previously printed open problem, stop + exploring this partial valuation + (i.e., if "-b c" was reported as an open problem then "a -b c" should not be + explored) + +- else, if the partial valuation is unsatisfiable (checked with a SAT solver on + the partial valuation plus the theorems), then stop exploring this partial + valuation + +- else, if the partial valuation is not covered by any space (remembering that + they have been completed), then we have found a minimal open problem: output + it and stop exploring + +- otherwise, do not print the partial valuation, but try all possible ways to + extend it (by adding a property greater than the greatest property in the + valuation, with either positive or negative polarity) and add all such results + to the BFS's queue + diff --git a/explore.py b/explore.py @@ -0,0 +1,119 @@ +#!/usr/bin/python3 + +import pycosat +from collections import deque + +properties = {} +n = 1 +pn = {} +pnr = {} + +with open("properties", 'r') as pf: + for l in pf.readlines(): + f = l.strip().split(' ') + properties[f[0]] = ' '.join(f[1:]) + pn[n] = f[0] + pnr[f[0]] = n + n += 1 + +def props_to_nums(xx): + return [-pnr[x[1:]] if x[0] == '-' else +pnr[x] for x in xx] + +def props_to_names(xx): + return ["NOT " + properties[x[1:]] + " (" + x[1:] + ")" if x[0] == '-' + else properties[x] + " (" + x + ")" for x in xx] + +clauses = [] +with open("theorems", 'r') as pf: + for l in pf.readlines(): + f = l.strip().split(' ') + cl = props_to_nums(f[1:]) + clauses.append(cl) + +try: + spaces = {} + with open("full_spaces", 'r') as pf: + for l in pf.readlines(): + f = l.strip().split(' ') + spaces[f[0]] = set(f[1:]) +except FileNotFoundError: + # do the completion + spaces = {} + with open("spaces", 'r') as pf: + for l in pf.readlines(): + f = l.strip().split(' ') + spaces[f[0]] = set(f[1:]) + with open("full_spaces", 'w') as pw: + for s in spaces.keys(): + completion = set() + ss = spaces[s] + cl = [[x] for x in props_to_nums(ss)] + for p in properties.keys(): + if p not in ss and ("-" + p) not in ss: + res_pos = pycosat.solve(clauses + cl + [props_to_nums([p])]) + res_neg = pycosat.solve(clauses + cl + + [props_to_nums(["-"+p])]) + res_pos2 = (res_pos == "UNSAT") + res_neg2 = (res_neg == "UNSAT") + assert(not (res_pos2 and res_neg2)) + if res_pos2: + completion.add("-"+p) + if res_neg2: + completion.add(p) + spaces[s] = spaces[s].union(completion) + print(s + " " + " ".join(spaces[s]), file=pw) + +outputs = set() +q = deque([()]) +while q: + pref = q.popleft() + + # is it redundant? (does it cover an existing output?) + # TODO: this is super naive, we can probably do better + covers_one_out = False + for o in outputs: + covered = True + for op in o: + if op not in pref: + covered = False + break + if covered: + covers_one_out = True + break + if covers_one_out: + continue # do not investigate this + + # is it consistent? + res = pycosat.solve(clauses + [[x] for x in props_to_nums(pref)]) + if res == "UNSAT": + continue # forget about this + + # is it covered by a known space? + covered_by_one = False + for s in spaces.keys(): + ss = spaces[s] + covered = True + for p in pref: + if p not in ss: + covered = False + break + if covered: + covered_by_one = True + break + if not covered_by_one: + # it is not covered, we have a minimal open problem: + print (" AND ".join(props_to_names(pref))) + outputs.add(tuple(pref)) + continue + + # not redundant, consistent, but covered: continue exploring + for p in properties.keys(): + if (len(pref) > 0): + nlast = pref[-1] if pref[-1][0] != "-" else pref[-1][1:] + if p <= nlast: + continue # add properties in increasing order + if p not in pref and ("-" + p) not in pref: + q.append(pref + (p,)) + q.append(pref + ("-" + p,)) + + diff --git a/full_spaces b/full_spaces @@ -0,0 +1,136 @@ +S000001 -P000037 P000049 P000046 P000084 P000090 P000077 P000079 P000002 P000052 P000016 P000066 P000086 P000099 P000055 P000091 P000007 P000080 P000059 P000005 P000103 P000019 P000043 P000078 P000001 -P000044 P000056 P000035 P000071 P000013 P000023 P000111 P000081 P000012 P000061 P000032 P000058 -P000065 P000009 P000017 P000033 -P000039 P000018 P000011 P000030 P000004 P000022 P000031 P000069 P000072 P000014 P000029 P000041 P000026 P000003 P000010 P000021 P000100 -P000060 -P000101 P000034 P000070 -P000040 P000027 -P000038 P000047 -P100052 P000008 P000054 P000057 P000020 P000024 -P000036 P000053 P000006 P000063 P000082 P000062 P000073 -P000045 P000028 P000064 P000048 P000051 P000076 P000050 P000025 P000088 P000042 +S000002 -P000037 -P000039 P000069 P000072 P000066 P000029 P000041 P000026 -P000060 -P000078 P000059 P000070 -P000016 -P000040 -P000038 -P000075 -P100052 -P000019 P000057 P000024 -P000036 -P000044 P000062 -P000020 P000071 -P000045 P000023 P000081 P000111 P000025 P000058 -P000065 P000017 P000042 -P000022 P000018 +S000003 -P000057 -P000037 P000049 P000046 P000084 P000090 P000079 P000002 P000052 -P000111 P000086 P000099 P000055 -P000078 P000007 P000080 P000005 P000103 -P000075 P000043 P000001 -P000066 -P000044 P000056 P000035 P000013 P000023 P000081 P000012 -P000025 P000032 P000009 P000033 -P000039 P000011 -P000029 P000030 -P000017 P000004 P000031 -P000070 -P000027 P000041 P000003 P000010 -P000060 P000100 -P000101 -P000069 -P000124 -P000026 P000034 -P000016 -P000040 -P000038 P000047 -P100052 -P000072 -P000019 P000054 -P000068 P000024 -P000036 P000053 P000006 P000063 P000082 P000073 -P000018 -P000020 -P000045 P000028 P000064 P000048 P000051 -P000021 P000076 P000050 P000088 P000042 -P000071 -P000022 +S000004 P000079 P000039 -P000046 -P000015 P000016 P000066 -P000005 -P000067 P000080 -P000001 -P000048 -P000051 -P000075 -P000006 P000019 P100052 -P000055 -P000073 -P000044 P000056 -P000047 P000071 P000013 P000023 P000081 P000111 P000012 -P000099 -P000002 P000032 -P000061 P000017 -P000053 P000033 P000018 P000011 P000060 -P000007 P000030 P000031 P000022 -P000084 P000069 P000072 -P000009 P000014 P000029 P000041 P000026 -P000035 P000010 P000021 -P000103 -P000124 -P000008 P000034 P000070 P000027 P000054 P000020 -P000003 -P000100 P000024 -P000004 P000037 P000062 -P000049 -P000045 P000028 P000040 P000050 P000025 -P000052 P000042 P000036 +S000005 P000079 -P000046 -P000015 P000066 -P000005 -P000078 -P000067 P000080 P000059 -P000001 -P000048 -P000051 -P000075 -P000006 -P000055 -P000073 P000056 -P000047 P000071 P000013 P000023 P000081 P000111 P000012 -P000099 -P000002 P000032 P000058 -P000065 -P000061 P000017 -P000053 P000033 -P000039 P000018 P000011 -P000007 P000030 P000031 -P000084 P000069 P000072 -P000009 P000014 P000029 -P000043 P000041 P000026 -P000035 P000021 P000010 -P000060 -P000103 -P000124 -P000008 P000034 P000070 -P000016 -P000040 P000027 -P000038 -P100052 -P000019 P000057 P000054 -P000003 -P000100 P000024 -P000004 P000062 -P000049 -P000020 P000028 P000050 P000025 -P000052 P000042 -P000022 +S000006 -P000001 -P000048 -P000051 -P100052 -P000007 -P000006 -P000055 -P000075 -P000003 -P000100 -P000073 -P000004 -P000084 -P000049 -P000015 -P000047 P000013 -P000009 P000014 -P000099 -P000002 -P000035 P000021 -P000052 -P000067 -P000061 -P000103 -P000053 -P000124 -P000008 +S000007 P000079 P000039 -P000046 -P000015 P000016 P000066 -P000005 -P000086 -P000067 -P000012 P000080 P000059 -P000048 -P000006 P000019 -P000050 -P000055 -P000013 P000001 P000078 P000056 -P000047 P000071 P000023 P000081 P000111 -P000088 -P000099 -P000002 P000032 P000058 -P000065 -P000061 P000017 -P000053 P000033 P000018 P000060 -P000007 P000030 -P000014 P000031 P000022 -P000084 P000069 P000072 -P000011 -P000009 P000045 P000029 -P000043 P000041 P000026 -P000035 P000021 -P000103 -P000124 -P000008 P000070 -P000040 P000027 -P000038 -P100052 -P000034 P000054 P000020 P000057 -P000003 -P000100 P000024 -P000004 P000037 P000062 -P000049 P000028 P000051 P000025 -P000052 P000042 P000044 P000036 +S000008 P000079 P000039 -P000046 -P000015 P000066 -P000005 -P000086 -P000078 -P000067 -P000012 P000080 P000059 -P000048 -P000075 -P000006 -P000050 -P000055 -P000030 -P000013 P000001 P000056 -P000047 P000071 P000023 P000081 P000111 -P000088 -P000099 -P000002 P000058 -P000032 -P000065 -P000061 P000017 -P000053 P000018 P000060 -P000007 -P000014 -P000084 P000022 P000069 P000072 -P000011 -P000009 P000045 P000029 -P000043 P000041 P000026 -P000035 -P000031 -P000103 -P000124 -P000008 P000070 -P000016 -P000040 P000027 -P000038 -P100052 -P000034 -P000033 P000057 -P000019 P000054 -P000003 -P000100 -P000004 P000037 P000062 -P000049 -P000020 -P000024 P000028 P000051 -P000021 P000025 -P000052 P000042 P000044 P000036 +S000009 -P000057 P000079 P000039 -P000046 -P000015 -P000111 -P000086 -P000078 -P000067 -P000012 P000080 -P000048 -P000075 -P000006 -P000050 -P000055 -P000030 -P000013 P000001 -P000066 P000056 -P000047 P000023 P000081 -P000088 -P000099 -P000002 -P000025 -P000032 -P000061 -P000053 P000060 -P000007 -P000014 -P000017 -P000084 P000022 -P000070 -P000009 P000045 P000029 -P000043 -P000027 P000026 P000041 -P000035 -P000031 -P000103 -P000069 -P000124 -P000008 -P000016 -P000040 -P000038 -P000072 -P100052 -P000034 -P000033 -P000019 -P000068 -P000003 -P000100 -P000004 P000037 P000062 -P000049 -P000018 -P000020 -P000024 P000028 P000051 -P000021 -P000052 P000042 P000044 -P000071 P000036 +S000010 P000079 P000039 -P000046 -P000015 P000016 P000066 -P000005 -P000086 -P000067 -P000012 P000080 P000059 -P000048 -P000006 P000019 -P000050 -P000055 P000001 P000078 P000056 -P000047 P000071 P000013 P000023 P000081 P000111 -P000099 -P000002 P000032 P000058 -P000065 -P000061 P000017 -P000053 P000033 P000018 P000060 -P000007 P000030 P000031 P000022 -P000084 P000069 P000072 -P000011 -P000009 P000014 P000045 P000029 -P000043 P000041 P000026 -P000035 P000021 -P000103 -P000124 -P000008 P000034 P000070 P000027 -P000038 -P100052 P000057 P000054 P000020 -P000003 -P000100 P000024 -P000004 P000037 P000062 -P000049 P000028 P000040 P000051 P000025 -P000052 P000042 P000044 P000036 +S000011 P000079 -P000046 -P000015 P000016 P000066 -P000005 -P000086 -P000067 -P000012 P000080 P000059 -P000048 -P000006 P000019 -P000050 -P000055 P000001 P000078 P000056 -P000047 P000071 P000013 P000023 P000081 P000111 -P000099 -P000002 P000032 P000058 -P000065 -P000061 P000017 -P000053 P000033 -P000039 P000018 P000060 -P000007 P000030 P000031 P000022 -P000084 P000069 P000072 -P000011 -P000009 P000014 P000045 P000029 -P000043 P000041 P000026 -P000035 P000021 -P000103 -P000124 -P000008 P000034 P000070 P000027 -P000038 -P100052 P000054 P000057 P000020 -P000003 -P000100 P000024 -P000004 P000037 P000062 -P000049 P000028 P000040 P000051 P000025 -P000052 P000042 P000044 P000036 +S000012 P000079 -P000046 -P000015 P000016 P000066 -P000005 -P000086 -P000067 -P000012 P000080 P000059 -P000048 -P000006 P000019 -P000050 -P000055 P000001 P000056 -P000047 P000071 P000013 P000023 P000081 P000111 -P000099 -P000002 P000032 P000058 -P000065 -P000061 P000017 -P000053 P000033 -P000039 P000018 P000060 -P000007 P000030 P000031 P000022 -P000084 P000069 P000072 -P000011 -P000009 P000014 P000045 P000029 -P000043 P000041 P000026 -P000035 P000021 -P000103 -P000124 -P000008 P000034 P000070 P000027 -P000038 -P100052 P000057 P000054 P000020 -P000003 -P000100 P000024 -P000004 P000037 P000062 -P000049 P000028 P000040 P000051 P000025 -P000052 P000042 P000044 P000036 +S000013 -P000057 P000079 -P000046 -P000015 P000016 P000066 -P000005 -P000086 -P000078 -P000067 -P000012 P000080 -P000048 -P000006 P000019 -P000050 -P000055 P000001 P000056 -P000054 -P000047 P000071 P000013 P000023 P000081 P000111 -P000099 -P000002 P000032 -P000061 P000017 -P000053 P000033 -P000039 P000018 P000060 -P000007 -P000029 P000030 P000031 P000022 -P000084 P000069 P000072 -P000011 -P000009 P000014 P000045 -P000027 P000041 -P000035 P000021 -P000103 -P000124 -P000026 P000034 -P000008 P000070 -P000038 -P100052 P000020 -P000003 -P000100 P000024 -P000004 P000037 P000062 -P000049 P000028 P000040 P000051 P000025 -P000052 P000042 P000044 P000036 +S000014 -P000057 -P000037 P000079 -P000046 -P000015 P000016 P000066 -P000005 -P000086 -P000078 -P000067 -P000012 P000080 P000059 -P000048 -P000006 P000019 -P000050 -P000055 P000001 P000056 -P000044 -P000054 -P000047 P000071 P000013 P000023 P000081 P000111 -P000058 -P000099 -P000002 P000032 -P000061 P000017 -P000053 P000033 -P000039 P000018 -P000007 -P000029 P000030 P000031 P000022 -P000084 P000069 P000072 -P000011 -P000009 P000014 -P000043 -P000027 P000041 -P000035 P000021 -P000060 -P000103 -P000124 -P000026 P000034 -P000008 P000070 -P000040 -P000038 -P100052 P000020 -P000003 -P000100 -P000036 P000024 -P000004 P000062 -P000049 -P000045 P000028 P000051 P000025 -P000052 P000042 +S000015 -P000037 -P000056 P000046 P000079 P000002 P000039 -P000015 P000016 P000066 -P000005 -P000042 -P000078 -P000067 -P000012 P000080 P000059 -P000048 -P000051 -P000006 P000019 -P000050 -P000055 -P000013 P000001 -P000044 -P000047 P000071 P000023 P000081 P000111 -P000088 P000032 P000058 -P000065 -P000061 P000017 -P000053 P000033 P000018 P000060 -P000007 P000030 -P000014 P000031 P000022 P000069 P000072 -P000011 -P000009 P000029 -P000043 P000041 P000026 -P000035 P000021 -P000124 -P000008 P000070 -P000040 P000027 -P000038 -P100052 P000057 -P000034 P000020 P000054 -P000003 P000024 -P000004 P000062 -P000049 -P000064 -P000045 P000028 P000025 -P000052 P000036 +S000016 -P000057 P000002 P000039 -P000046 -P000015 P000016 P000066 -P000005 -P000078 -P000067 -P000012 P000059 -P000028 -P000048 P000038 -P000051 -P000006 P000019 -P000050 -P000055 P000043 -P000013 P000001 -P000044 P000056 -P000054 -P000047 P000071 P000023 P000111 -P000088 -P000058 P000032 -P000061 P000017 -P000053 P000033 P000018 P000060 -P000007 P000030 -P000014 P000031 P000022 P000069 P000072 -P000011 -P000009 P000029 -P000027 P000041 P000026 -P000035 P000021 -P000124 -P000008 P000070 -P000040 -P100052 -P000034 P000020 -P000003 P000024 -P000004 P000037 P000062 -P000049 -P000045 P000025 -P000052 P000042 P000036 +S000017 -P000057 -P000037 -P000023 P000046 P000002 P000039 -P000015 -P000111 -P000005 -P000042 -P000078 -P000067 -P000012 -P000028 -P000048 -P000051 -P000006 -P000050 -P000055 -P000030 -P000075 -P000013 P000001 -P000044 P000056 -P000054 -P000047 -P000088 -P000025 -P000032 -P000061 -P000053 P000018 P000060 -P000007 -P000014 -P000017 P000022 -P000011 -P000009 P000029 -P000027 P000041 -P000043 -P000035 -P000031 -P000124 -P000026 -P000008 -P000016 -P000040 -P000038 -P100052 -P000019 -P000033 -P000034 -P000003 -P000004 P000062 -P000049 -P000020 -P000024 -P000045 -P000021 -P000052 P000036 +S000018 -P000057 -P000037 -P000023 P000039 -P000046 -P000015 -P000111 -P000005 -P000042 -P000078 -P000067 -P000012 -P000001 -P000028 -P000048 -P000051 -P000075 -P000006 -P000050 -P000030 -P000055 -P000013 -P000073 -P000044 P000056 -P000054 -P000047 -P000088 -P000099 -P000002 -P000025 -P000032 -P000061 -P000053 P000018 P000060 -P000007 -P000014 -P000017 -P000084 P000022 -P000011 -P000009 P000029 -P000027 P000041 -P000043 -P000035 P000021 -P000031 -P000103 -P000124 -P000026 -P000008 -P000016 -P000040 -P000038 -P100052 -P000019 -P000033 -P000034 -P000003 -P000100 -P000004 P000062 -P000049 -P000020 -P000024 -P000045 -P000052 P000036 +S000019 -P000057 -P000056 P000079 P000002 P000039 -P000046 -P000015 P000016 P000066 -P000005 -P000078 -P000067 -P000012 P000080 P000059 -P000048 P000038 -P000051 -P000006 P000019 -P000050 -P000055 P000043 -P000013 P000001 -P000044 -P000047 P000071 P000023 P000081 P000111 -P000088 -P000058 P000032 -P000061 P000017 -P000053 P000033 P000018 P000060 -P000007 P000030 -P000014 P000031 P000022 P000069 P000072 -P000011 -P000009 P000029 P000041 P000026 -P000035 P000021 -P000124 -P000008 P000070 -P000040 P000027 -P100052 -P000034 P000054 P000020 -P000003 P000024 -P000004 P000037 P000062 -P000049 -P000064 -P000045 P000028 P000025 -P000052 P000042 P000036 +S000020 -P000037 P000046 P000084 P000077 P000079 P000002 P000016 P000066 -P000086 P000067 -P000042 P000099 P000055 P000091 -P000078 P000007 P000080 P000059 P000005 P000103 P000019 P000001 -P000044 P000056 P000035 P000071 P000013 P000023 P000111 P000081 P000015 P000012 P000061 P000032 P000058 -P000065 P000009 P000017 P000033 -P000039 P000018 P000011 P000030 P000004 P000022 P000031 P000069 P000072 -P000041 P000014 P000029 -P000043 P000026 P000003 P000010 P000021 P000100 -P000060 -P000101 P000034 P000070 -P000040 P000027 -P000038 P000047 -P100052 P000057 P000008 P000020 P000054 P000024 -P000036 P000053 P000006 P000063 P000082 -P000049 P000062 P000073 -P000045 P000028 P000064 P000048 P000051 P000076 P000050 P000025 -P000052 P000088 +S000021 -P000057 -P000056 -P000023 P000084 P000002 -P000046 P000066 P000099 -P000078 P000007 P000059 P000005 -P000048 P000038 -P000051 -P000055 -P000050 -P000075 P000043 P000001 -P000054 P000035 -P000047 P000071 P000065 P000013 -P000058 P000012 P000061 -P000025 P000032 P000009 P000017 -P000053 P000033 -P000039 P000018 P000011 P000036 P000030 P000004 P000031 P000069 P000072 -P000082 P000029 -P000027 P000041 P000026 P000003 P000010 -P000060 P000100 -P000101 -P000124 P000034 P000070 -P000016 -P000040 -P100052 -P000019 P000006 P000037 P000062 -P000049 P000073 -P000064 -P000020 -P000024 -P000021 -P000052 P000088 P000042 P000087 -P000022 +S000022 -P000057 -P000037 -P000023 P000046 P000084 P000002 -P000015 -P000111 -P000086 -P000042 P000099 -P000078 P000007 -P000067 P000005 -P000028 -P000075 -P000055 P000001 P000056 -P000044 -P000054 P000035 P000013 P000012 -P000025 P000032 P000009 -P000053 P000033 -P000039 P000018 P000011 -P000029 P000030 -P000017 P000004 P000031 -P000082 -P000070 -P000041 P000014 -P000027 -P000043 P000003 P000010 -P000060 P000100 -P000101 -P000124 -P000026 P000034 -P000016 -P000040 -P000038 P000008 -P100052 P000047 -P000019 -P000036 P000006 P000062 -P000049 P000073 -P000020 -P000024 -P000045 P000048 P000051 -P000021 P000050 -P000052 P000088 -P000071 -P000022 +S000023 -P000037 -P000023 P000046 P000084 P000002 P000066 -P000086 P000067 -P000042 P000099 -P000078 P000007 P000059 P000005 -P000028 -P000075 -P000055 P000001 P000056 -P000044 -P000054 P000035 P000071 P000013 P000081 P000015 P000012 P000061 -P000025 P000032 P000058 -P000065 P000009 P000017 -P000053 P000033 -P000039 P000018 P000011 P000030 P000004 P000031 P000069 P000072 -P000082 -P000041 P000014 P000029 -P000027 -P000043 P000026 P000003 P000010 -P000060 P000100 -P000101 -P000124 P000034 P000070 -P000016 -P000040 -P000038 P000008 -P100052 P000057 P000047 -P000019 -P000036 P000006 P000062 -P000049 P000073 -P000020 -P000024 -P000045 P000048 P000051 -P000021 P000050 -P000052 P000088 -P000022 +S000024 -P000057 -P000037 P000046 P000002 -P000015 P000016 P000066 -P000005 -P000086 -P000042 -P000078 -P000067 -P000012 -P000028 -P000048 -P000006 P000019 -P000050 -P000055 -P000013 P000001 P000056 -P000044 -P000054 P000071 P000023 P000111 -P000088 P000032 -P000061 P000017 -P000053 P000033 -P000039 P000018 -P000007 -P000029 P000030 -P000014 P000031 P000022 P000069 P000072 -P000011 -P000041 -P000009 -P000027 -P000043 -P000035 P000021 -P000060 -P000124 -P000008 -P000026 P000070 -P000040 P000047 -P000038 -P100052 -P000034 -P000003 P000024 -P000036 -P000004 P000062 -P000049 -P000045 P000051 P000025 -P000052 +S000025 -P000057 P000084 P000079 P000002 -P000046 P000066 P000099 P000055 -P000078 P000007 P000080 P000059 P000005 P000103 -P000048 P000038 -P000051 -P000075 -P000050 P000043 P000001 P000056 P000035 -P000047 P000071 P000013 P000023 P000081 P000111 -P000058 P000012 P000061 P000032 P000009 P000017 P000033 -P000039 P000018 P000011 P000030 P000004 P000031 P000069 P000072 P000014 P000029 P000041 P000026 P000003 P000010 -P000060 P000100 -P000101 P000034 P000070 -P000016 -P000040 P000027 P000008 -P100052 -P000019 P000054 P000024 P000053 P000006 P000037 P000062 -P000049 P000063 P000073 P000082 -P000020 P000028 P000064 -P000021 P000076 P000025 -P000052 P000088 P000042 P000036 -P000022 +S000026 -P000057 -P000037 P000046 P000084 P000077 P000079 P000002 P000016 P000066 -P000042 P000099 P000055 P000091 -P000078 P000007 P000080 P000059 P000005 P000103 -P000051 P000019 P000001 -P000044 P000056 P000035 P000071 P000013 P000023 P000111 P000081 -P000058 P000012 P000061 P000032 P000009 P000017 P000033 -P000039 P000018 P000011 P000030 P000004 P000022 P000031 P000069 P000072 -P000041 P000014 P000029 -P000043 P000026 P000003 P000010 P000021 P000100 -P000060 -P000101 P000034 P000070 -P000040 P000027 -P000038 P000047 -P100052 P000008 P000054 P000020 P000024 -P000036 P000053 P000006 P000063 P000082 P000062 -P000049 P000073 -P000045 P000028 P000064 P000048 P000076 P000050 P000025 -P000052 P000088 +S000027 -P000037 -P000056 -P000023 P000046 P000084 P000079 P000002 -P000063 P000066 -P000042 P000099 -P000078 P000007 P000080 P000059 P000005 P000103 -P000051 -P000055 -P000075 P000001 -P000044 P000035 P000071 P000013 P000081 P000012 P000061 -P000025 P000032 P000058 -P000065 P000009 P000017 P000033 -P000039 P000018 P000011 P000030 P000004 P000031 P000069 P000072 -P000041 P000014 P000029 -P000043 P000026 P000003 P000010 -P000060 P000100 -P000101 P000034 P000070 -P000016 -P000040 P000027 -P000038 P000008 -P100052 P000057 P000047 -P000019 P000054 P000053 -P000036 P000006 P000082 P000062 -P000049 P000073 -P000064 -P000020 -P000024 -P000045 P000028 P000048 -P000021 P000076 P000050 -P000052 P000088 -P000022 +S000028 -P000057 -P000037 -P000023 P000046 P000084 P000079 P000002 -P000111 -P000042 P000099 P000055 -P000078 P000007 P000080 P000059 P000005 P000103 -P000051 -P000075 P000001 -P000044 P000056 P000035 P000013 P000081 -P000058 P000012 P000061 -P000025 P000032 P000009 P000033 -P000039 P000018 P000011 P000030 -P000017 P000004 P000031 -P000070 -P000041 P000014 P000029 -P000043 P000026 P000003 P000010 -P000060 P000100 -P000101 -P000069 P000034 -P000016 -P000040 P000027 -P000038 P000008 -P100052 P000047 -P000019 P000054 -P000072 P000053 -P000036 P000006 P000063 P000062 -P000049 P000073 P000082 -P000020 -P000024 -P000045 P000028 P000064 P000048 -P000021 P000076 P000050 -P000052 P000088 -P000071 -P000022 +S000029 -P000037 -P000056 P000046 P000002 -P000015 P000016 P000066 -P000005 -P000042 -P000078 -P000067 -P000012 P000059 -P000028 -P000048 -P000051 -P000006 P000019 -P000050 -P000055 -P000013 P000001 -P000054 -P000047 P000071 P000023 P000081 P000111 -P000088 P000032 P000058 -P000065 -P000061 P000017 -P000053 P000033 -P000039 P000018 -P000007 P000030 -P000014 P000031 P000022 P000069 P000072 -P000011 -P000041 -P000009 P000045 P000029 -P000027 -P000043 P000026 -P000035 P000021 -P000124 -P000008 P000070 -P000040 -P000038 -P100052 P000057 -P000034 P000020 -P000003 P000024 -P000004 P000062 -P000049 -P000064 P000025 -P000052 P000044 P000036 +S000030 -P000057 -P000023 P000084 P000079 P000002 -P000046 -P000111 P000099 P000055 -P000078 P000007 P000080 P000059 P000005 P000103 -P000048 P000038 -P000051 -P000075 -P000050 P000043 P000001 -P000044 P000056 P000035 -P000047 P000013 P000081 -P000058 P000012 P000061 -P000025 P000032 P000009 P000033 -P000039 P000018 P000011 P000030 -P000017 P000004 P000031 -P000070 P000014 P000029 P000041 P000026 P000003 P000010 -P000060 P000100 -P000101 -P000069 P000034 -P000016 -P000040 P000027 P000008 -P100052 -P000019 P000054 -P000072 P000053 P000006 P000037 P000062 -P000049 P000063 P000073 P000082 -P000020 -P000024 -P000045 P000028 P000064 -P000021 P000076 -P000052 P000088 P000042 -P000071 P000036 -P000022 +S000032 -P000057 P000084 P000077 P000079 P000002 -P000046 P000016 P000066 P000099 P000055 P000091 -P000078 P000007 P000080 P000059 P000005 P000103 -P000048 P000038 -P000051 P000019 -P000050 P000043 P000001 -P000044 P000056 P000035 -P000047 P000071 P000013 P000023 P000111 P000081 -P000058 P000012 P000061 P000032 P000009 P000017 P000033 -P000039 P000018 P000011 P000030 P000004 P000022 P000031 P000069 P000072 P000014 P000029 P000041 P000026 P000003 P000010 P000021 P000100 -P000060 -P000101 P000034 P000070 -P000040 P000027 P000008 -P100052 P000054 P000020 P000053 P000024 P000006 P000063 P000037 P000062 -P000049 P000073 P000082 -P000045 P000028 P000064 P000076 P000025 -P000052 P000088 P000042 P000036 +S000033 -P000037 P000046 P000084 P000079 P000002 P000066 -P000086 -P000042 P000099 P000055 -P000078 P000007 P000080 P000059 P000005 P000103 -P000075 P000001 -P000044 P000056 P000035 P000071 P000013 P000023 P000111 P000081 P000012 P000061 P000032 P000058 -P000065 P000009 P000017 P000033 -P000039 P000018 P000011 P000030 P000004 P000031 P000069 P000072 -P000041 P000014 P000029 -P000043 P000026 P000003 P000010 P000100 -P000060 -P000101 P000034 P000070 -P000016 -P000040 P000027 -P000038 P000008 -P100052 P000057 P000047 -P000019 P000054 P000024 -P000036 P000053 P000006 P000063 P000082 -P000049 P000062 P000073 -P000020 -P000045 P000028 P000064 P000048 P000051 -P000021 P000076 P000050 P000025 -P000052 P000088 -P000022 +S000034 -P000037 P000046 P000084 P000077 P000079 P000002 P000016 P000066 -P000086 -P000042 P000099 P000055 P000091 -P000078 P000007 P000080 P000059 P000005 P000103 P000019 P000001 -P000044 P000056 P000035 P000071 P000013 P000023 P000111 P000081 P000012 P000061 P000032 P000058 -P000065 P000009 P000017 P000033 -P000039 P000018 P000011 P000030 P000004 P000022 P000031 P000069 P000072 -P000041 P000014 P000029 -P000043 P000026 P000003 P000010 P000021 P000100 -P000060 -P000101 P000034 P000070 -P000040 P000027 -P000038 P000008 -P100052 P000057 P000047 P000054 P000020 P000024 -P000036 P000053 P000006 P000063 P000082 -P000049 P000062 P000073 -P000045 P000028 P000064 P000048 P000051 P000076 P000050 P000025 -P000052 P000088 +S000035 -P000057 -P000037 P000046 P000084 P000079 P000002 -P000015 -P000111 -P000086 -P000042 P000099 -P000078 P000007 -P000067 P000080 P000059 P000005 P000103 -P000075 -P000055 P000019 -P000030 P000001 -P000066 -P000044 P000056 -P000054 P000013 P000023 P000081 P000012 -P000025 P000032 P000009 -P000053 P000033 -P000039 P000011 -P000029 -P000017 P000004 P000022 -P000070 -P000041 P000014 -P000027 -P000043 P000003 -P000035 P000010 P000021 -P000031 -P000060 P000100 -P000101 -P000069 -P000124 -P000026 -P000016 -P000040 -P000038 P000008 -P100052 P000047 -P000034 -P000072 P000020 -P000068 P000024 -P000036 P000006 P000063 -P000049 -P000018 P000073 -P000045 P000028 P000064 P000048 P000051 P000050 -P000052 -P000071 +S000036 -P000057 -P000037 P000046 P000084 P000002 P000016 P000066 -P000086 -P000042 P000099 -P000078 P000007 P000059 P000005 -P000028 -P000055 P000019 P000001 -P000044 P000056 -P000054 P000035 P000071 P000013 P000023 P000111 P000012 P000032 P000009 P000017 -P000053 P000033 -P000039 P000018 P000011 -P000029 P000030 P000004 P000022 P000031 P000069 P000072 -P000082 -P000041 P000014 -P000027 -P000043 P000003 P000010 P000021 -P000060 P000100 -P000101 -P000124 -P000026 P000034 P000070 -P000040 -P000038 P000008 -P100052 P000047 P000020 P000024 -P000036 P000006 P000063 P000062 -P000049 P000073 -P000045 P000064 P000048 P000051 P000050 P000025 -P000052 P000088 +S000038 -P000057 P000084 P000079 P000002 -P000046 -P000111 P000099 -P000078 P000007 P000080 P000059 P000005 P000103 -P000048 P000038 -P000051 -P000055 P000019 -P000050 -P000030 -P000075 P000043 P000001 -P000066 P000056 -P000054 -P000047 P000013 P000023 P000081 -P000058 P000012 -P000025 P000032 P000009 -P000053 P000033 -P000039 P000011 -P000029 -P000017 P000004 P000022 -P000070 P000014 -P000027 P000041 P000003 -P000035 P000010 P000021 -P000031 -P000060 P000100 -P000101 -P000069 -P000124 -P000026 -P000016 -P000040 P000008 -P100052 -P000034 -P000072 P000020 -P000068 P000024 P000006 P000037 P000063 -P000049 -P000018 P000073 P000028 P000064 -P000052 P000042 -P000071 P000036 +S000039 -P000057 -P000037 P000084 P000002 -P000046 P000016 P000066 -P000042 P000099 -P000078 P000007 P000059 P000005 -P000028 -P000048 -P000051 -P000055 P000019 -P000050 P000001 P000056 -P000054 P000035 -P000047 P000071 P000013 P000023 P000111 P000012 P000032 P000009 P000017 -P000053 P000033 -P000039 P000018 P000011 -P000029 P000030 P000004 P000022 P000031 P000069 P000072 -P000082 P000014 -P000027 P000041 -P000043 P000003 P000010 P000021 -P000060 P000100 -P000101 -P000124 -P000026 P000034 P000070 -P000040 -P000038 P000008 -P100052 P000020 P000024 P000006 P000063 P000062 -P000049 P000073 P000064 P000025 -P000052 P000088 P000036 +S000040 -P000057 -P000037 -P000023 P000084 P000002 -P000046 -P000015 -P000111 -P000005 -P000042 P000099 -P000078 -P000067 -P000012 P000059 -P000028 -P000048 -P000051 -P000006 P000019 -P000050 -P000030 -P000055 -P000075 -P000013 P000001 -P000066 -P000044 P000056 -P000054 -P000047 -P000088 -P000025 P000032 P000009 -P000061 -P000053 P000033 -P000039 -P000007 -P000029 -P000014 -P000017 P000004 P000022 -P000011 -P000070 -P000041 -P000027 -P000043 P000003 -P000035 P000021 -P000060 -P000031 P000100 -P000101 -P000069 -P000124 -P000026 -P000008 -P000016 -P000040 -P000038 -P000072 -P100052 -P000034 P000020 -P000068 -P000049 -P000018 P000073 -P000024 -P000045 -P000052 -P000071 P000036 +S000041 -P000057 -P000037 P000084 P000079 P000002 -P000046 -P000015 P000016 P000066 -P000042 P000099 -P000078 P000007 -P000067 P000080 P000059 P000005 P000103 -P000048 -P000051 -P000055 P000019 -P000050 P000001 -P000044 P000056 -P000054 P000035 -P000047 P000071 P000013 P000023 P000081 P000111 P000012 P000032 P000009 P000017 -P000053 P000033 -P000039 P000018 P000011 -P000029 P000030 P000004 P000022 P000031 P000069 P000072 -P000082 P000014 -P000027 P000041 -P000043 P000003 P000010 P000021 -P000060 P000100 -P000101 -P000124 -P000026 P000034 P000070 -P000040 -P000038 P000008 -P100052 P000020 P000024 P000006 P000063 P000062 -P000049 P000073 -P000045 P000028 P000064 P000025 -P000052 P000088 P000036 +S000042 -P000057 -P000056 P000079 P000039 -P000046 -P000015 P000066 -P000005 -P000078 -P000067 -P000012 P000080 P000059 -P000048 P000038 -P000051 -P000075 -P000006 -P000050 -P000030 -P000055 P000043 P000001 -P000044 -P000047 P000071 P000013 P000023 P000081 P000111 -P000058 -P000099 -P000002 -P000032 -P000061 P000017 -P000053 P000018 P000060 -P000007 -P000084 P000022 P000069 P000072 -P000011 -P000009 P000014 P000029 P000041 P000026 -P000035 P000021 -P000031 -P000103 -P000124 -P000008 P000070 -P000016 P000027 -P100052 -P000034 -P000033 -P000019 P000054 -P000003 -P000100 -P000004 P000037 P000062 -P000049 -P000064 -P000020 -P000024 -P000045 P000028 P000040 P000025 -P000052 P000042 P000036 +S000043 -P000057 -P000037 -P000023 P000046 P000084 P000079 P000002 -P000111 P000067 -P000042 P000099 -P000078 P000007 P000080 P000059 P000005 P000103 -P000051 -P000055 -P000075 P000001 P000056 -P000044 -P000054 P000035 P000013 P000081 P000015 -P000058 P000012 P000061 -P000025 P000032 P000009 -P000053 P000033 -P000039 P000018 P000011 P000030 -P000017 P000004 P000031 -P000082 -P000070 -P000041 P000014 P000029 -P000027 -P000043 P000026 P000003 P000010 -P000060 P000100 -P000101 -P000124 P000034 -P000016 -P000040 -P000038 P000008 -P100052 P000047 -P000019 -P000036 P000006 P000062 -P000049 P000073 -P000020 -P000024 -P000045 P000028 P000048 -P000021 P000050 -P000052 P000088 -P000071 -P000022 +S000044 -P000057 P000079 P000039 -P000046 -P000015 P000066 -P000005 -P000078 -P000067 -P000012 P000080 P000059 -P000001 -P000048 P000038 -P000051 -P000075 -P000006 -P000050 -P000030 -P000055 P000043 -P000073 -P000044 P000056 -P000047 P000071 P000013 P000023 P000081 P000111 -P000058 -P000099 -P000002 -P000032 -P000061 P000017 -P000053 P000018 P000060 -P000007 -P000084 P000022 P000069 P000072 -P000011 -P000009 P000014 P000029 P000041 P000026 -P000035 P000021 -P000031 -P000103 -P000124 -P000008 P000070 -P000016 P000027 -P100052 -P000034 -P000033 -P000019 P000054 -P000003 -P000100 -P000004 P000037 P000062 -P000049 -P000020 -P000024 -P000045 P000028 P000040 P000025 -P000052 P000042 P000036 +S000045 -P000057 P000079 P000039 -P000046 -P000015 P000016 P000066 -P000005 -P000078 -P000067 -P000012 P000080 P000059 -P000048 P000038 -P000051 -P000006 P000019 -P000050 -P000055 P000043 -P000013 P000001 -P000044 P000056 -P000047 P000071 P000023 P000081 P000111 -P000088 -P000058 -P000099 -P000002 P000032 -P000061 P000017 -P000053 P000033 P000018 P000060 -P000007 P000030 -P000014 P000031 P000022 -P000084 P000069 P000072 -P000011 -P000009 P000029 P000041 P000026 -P000035 P000021 -P000103 -P000124 -P000008 P000070 -P000040 P000027 -P100052 -P000034 P000054 P000020 -P000003 -P000100 P000024 -P000004 P000037 P000062 -P000049 -P000045 P000028 P000025 -P000052 P000042 P000036 +S000046 -P000057 -P000056 P000079 P000039 -P000046 -P000015 P000066 -P000005 -P000078 -P000067 -P000012 P000080 P000059 -P000001 -P000048 -P000051 -P000075 -P000006 -P000050 -P000030 -P000055 -P000013 -P000073 -P000047 P000071 P000023 P000081 P000111 -P000088 -P000058 -P000099 -P000002 -P000032 -P000061 P000017 -P000053 P000033 P000018 P000060 -P000007 -P000014 P000031 -P000084 P000022 P000069 P000072 -P000011 -P000009 P000029 P000041 P000026 -P000035 P000021 -P000103 -P000124 -P000008 P000070 -P000016 -P000040 P000027 -P100052 -P000019 -P000034 P000054 -P000003 -P000100 -P000004 P000062 -P000049 -P000064 -P000020 -P000024 P000028 P000025 -P000052 P000036 +S000047 P000079 -P000046 -P000015 P000066 -P000005 -P000086 -P000078 -P000067 -P000012 P000080 P000059 -P000048 -P000075 -P000006 -P000050 -P000055 P000001 P000056 -P000047 P000071 P000013 P000023 P000081 P000111 -P000099 -P000002 P000032 P000058 -P000065 -P000061 P000017 -P000053 P000033 -P000039 P000018 -P000007 P000030 P000031 -P000084 P000069 P000072 -P000011 -P000009 P000014 P000029 -P000043 P000041 P000026 -P000035 -P000060 -P000103 -P000124 -P000008 P000034 P000070 -P000016 -P000040 P000027 -P000038 -P100052 P000057 -P000019 P000054 -P000003 -P000100 P000024 -P000004 P000062 -P000049 -P000020 P000028 P000051 -P000021 P000025 -P000052 P000042 -P000022 +S000048 P000079 P000039 -P000046 -P000015 P000016 P000066 -P000005 -P000067 -P000012 P000080 P000059 -P000048 -P000051 -P000006 P000019 -P000050 -P000055 -P000013 P000001 -P000044 P000056 -P000047 P000071 P000023 P000081 P000111 -P000088 -P000099 -P000002 P000032 P000058 -P000065 -P000061 P000017 -P000053 P000033 P000018 P000060 -P000007 P000030 -P000014 P000031 P000022 -P000084 P000069 P000072 -P000011 -P000009 P000029 -P000043 P000041 P000026 -P000035 P000021 -P000103 -P000124 -P000008 P000070 -P000040 P000027 -P000038 -P100052 P000057 -P000034 P000020 P000054 -P000003 -P000100 P000024 -P000004 P000037 P000062 -P000049 -P000045 P000028 P000025 -P000052 P000042 P000036 +S000049 P000079 -P000046 -P000015 P000066 -P000005 -P000086 -P000078 -P000067 -P000012 P000080 P000059 -P000048 -P000075 -P000006 -P000050 -P000055 -P000030 P000001 -P000044 P000056 -P000047 P000071 P000013 P000023 P000081 P000111 -P000099 -P000002 P000058 -P000032 -P000065 -P000061 P000017 -P000053 -P000039 P000018 P000060 -P000007 -P000014 -P000084 P000022 P000069 P000072 -P000011 -P000009 P000029 -P000043 P000041 P000026 -P000035 P000021 -P000031 -P000103 -P000124 -P000008 P000070 -P000016 P000027 -P000038 -P100052 -P000019 -P000033 -P000034 P000057 P000054 -P000003 -P000100 -P000004 P000037 P000062 -P000049 -P000020 -P000024 -P000045 P000028 P000040 P000051 P000025 -P000052 P000042 P000036 +S000050 -P000037 -P000056 -P000023 P000046 P000084 P000079 P000002 -P000063 P000066 -P000042 P000099 -P000078 P000007 P000080 P000059 P000005 P000103 -P000051 -P000075 -P000055 P000001 -P000044 P000035 P000071 P000013 P000081 P000012 P000061 -P000025 P000032 P000058 -P000065 P000009 P000017 P000033 -P000039 P000018 P000011 P000030 P000004 P000031 P000069 P000072 -P000041 P000014 P000029 -P000043 P000026 P000003 P000010 P000100 -P000060 -P000101 P000034 P000070 -P000016 -P000040 P000027 -P000038 P000047 -P100052 P000057 P000008 -P000019 P000054 P000053 -P000036 P000006 P000082 P000062 -P000049 P000073 -P000064 -P000020 -P000024 -P000045 P000028 P000048 -P000021 P000076 P000050 -P000052 P000088 -P000022 +S000051 -P000037 -P000023 P000046 P000084 P000079 P000002 -P000042 P000099 -P000078 P000007 P000080 P000059 P000005 P000103 -P000075 P000001 -P000044 P000035 P000013 P000081 P000012 P000061 -P000025 P000032 P000009 P000033 -P000039 P000018 P000011 P000030 P000031 P000004 -P000041 P000014 P000029 -P000043 P000026 P000003 P000010 -P000060 P000100 -P000101 P000034 -P000016 -P000040 P000027 -P000038 P000008 -P100052 P000047 -P000019 P000054 P000053 -P000036 P000006 P000082 P000062 -P000049 P000073 -P000020 -P000024 -P000045 P000028 P000048 -P000021 P000076 P000050 -P000052 P000088 -P000022 +S000052 -P000037 -P000023 P000046 P000084 P000079 P000002 -P000015 P000066 -P000005 -P000042 P000099 -P000078 -P000067 -P000012 P000080 P000059 P000103 -P000048 -P000051 -P000006 -P000050 -P000055 -P000030 -P000075 -P000013 P000001 -P000044 -P000047 P000071 P000081 -P000088 -P000025 P000058 -P000032 -P000065 -P000061 P000017 -P000053 P000033 -P000039 P000018 -P000007 -P000014 P000031 P000022 P000069 P000072 -P000011 -P000009 P000029 -P000043 P000026 P000003 -P000035 P000100 -P000101 -P000008 P000070 -P000016 -P000040 P000027 -P000038 -P100052 P000057 -P000019 -P000034 P000054 -P000004 P000062 -P000049 P000073 -P000020 -P000024 -P000045 P000028 -P000021 -P000052 P000036 +S000053 -P000023 P000084 P000079 P000002 -P000015 P000066 -P000005 P000099 -P000078 -P000067 -P000012 P000080 P000059 P000103 -P000048 -P000051 -P000075 -P000006 -P000050 -P000030 -P000055 -P000013 P000001 -P000047 P000071 P000081 -P000088 -P000025 P000058 -P000032 -P000065 -P000061 P000017 -P000053 P000018 -P000007 -P000014 P000022 P000069 P000072 -P000011 P000029 -P000043 P000026 P000003 -P000035 P000100 -P000101 -P000008 P000070 -P000016 -P000040 P000027 -P000038 -P100052 P000057 -P000019 -P000034 P000054 P000062 -P000049 P000073 -P000020 -P000024 P000028 -P000021 -P000052 P000036 +S000054 -P000057 -P000056 P000079 -P000046 -P000015 P000066 -P000005 -P000078 -P000067 P000080 P000059 -P000001 -P000048 P000038 -P000051 -P000075 -P000050 -P000006 -P000055 P000043 -P000073 -P000044 -P000047 P000071 P000013 P000023 P000081 P000111 -P000058 P000012 -P000099 -P000002 P000032 -P000061 P000017 -P000053 P000033 -P000039 P000018 P000011 -P000007 P000030 P000031 -P000084 P000069 P000072 -P000009 P000014 P000029 P000041 P000026 -P000035 P000021 P000010 -P000060 -P000103 -P000124 -P000008 P000034 P000070 -P000016 -P000040 P000027 -P100052 -P000019 P000054 -P000003 -P000100 P000024 -P000004 P000037 P000062 -P000049 -P000064 -P000020 -P000045 P000028 P000025 -P000052 P000042 P000036 -P000022 +S000055 -P000057 -P000037 -P000007 -P000023 P000046 P000084 -P000014 -P000017 P000004 P000002 -P000015 -P000011 -P000111 -P000005 -P000027 -P000043 -P000042 P000003 P000099 -P000035 P000100 -P000078 -P000067 -P000101 -P000012 -P000124 -P000026 -P000008 -P000016 -P000028 -P000040 -P000048 -P000038 -P000051 -P100052 -P000006 -P000019 -P000034 -P000030 -P000050 -P000055 -P000075 -P000013 P000001 P000062 -P000049 P000073 -P000054 -P000047 -P000020 -P000024 -P000088 -P000021 -P000025 -P000052 -P000032 -P000061 -P000010 -P000053 P000036 P000018 +S000056 -P000037 -P000023 P000084 P000079 P000002 -P000046 -P000015 P000066 -P000005 -P000042 P000099 -P000078 -P000067 -P000012 P000080 P000059 P000103 -P000048 -P000051 -P000006 -P000050 -P000055 -P000030 -P000075 -P000013 P000001 -P000044 P000056 -P000047 P000071 P000081 -P000088 -P000025 -P000032 P000009 -P000061 P000017 -P000010 -P000053 P000033 -P000039 P000018 -P000007 -P000014 P000031 P000004 P000069 P000072 -P000011 -P000041 P000029 -P000043 P000026 P000003 -P000035 -P000060 P000100 -P000101 -P000008 P000070 -P000016 -P000040 P000027 -P000038 -P100052 -P000019 -P000034 P000054 P000062 -P000049 P000073 -P000020 -P000024 -P000045 P000028 -P000021 -P000052 P000036 -P000022 +S000057 -P000057 -P000037 P000046 P000084 P000079 P000002 -P000015 -P000111 -P000086 -P000042 P000099 -P000078 -P000067 P000080 P000059 P000005 P000103 -P000075 -P000055 -P000030 -P000013 P000001 -P000066 -P000044 P000056 -P000054 P000023 P000081 -P000088 -P000058 P000012 P000061 -P000025 P000009 -P000053 P000033 -P000039 P000011 -P000007 -P000014 -P000017 P000004 -P000070 -P000041 P000029 -P000027 -P000043 P000026 P000003 -P000035 P000010 -P000060 -P000031 P000100 -P000101 -P000069 -P000124 -P000008 -P000016 -P000040 -P000038 P000047 -P100052 -P000019 -P000034 -P000072 -P000068 P000024 -P000036 P000006 P000063 P000062 -P000049 -P000018 P000073 -P000020 -P000045 P000028 P000064 P000048 P000051 -P000021 P000050 -P000052 -P000071 -P000022 +S000058 -P000057 -P000037 -P000023 P000046 P000084 P000079 P000002 -P000015 -P000111 -P000005 -P000042 P000099 -P000078 -P000067 -P000012 P000080 P000059 P000103 -P000048 -P000051 -P000006 -P000050 -P000055 -P000030 -P000075 -P000013 P000001 -P000044 -P000047 P000081 -P000088 -P000025 -P000032 P000009 -P000061 -P000010 -P000053 P000033 -P000039 P000018 -P000007 -P000014 -P000017 P000031 P000004 -P000011 -P000041 P000029 -P000043 P000026 P000003 -P000035 -P000060 P000100 -P000101 -P000008 -P000016 -P000040 P000027 -P000038 -P100052 -P000019 -P000034 P000054 P000062 -P000049 P000073 -P000020 -P000024 -P000045 P000028 -P000021 -P000052 P000036 -P000022 +S000059 -P000057 -P000037 -P000023 P000046 P000084 P000079 P000002 -P000015 -P000111 -P000005 -P000042 P000099 -P000078 -P000067 -P000012 P000080 P000059 P000103 -P000048 -P000051 -P000006 -P000050 -P000055 -P000030 -P000075 -P000013 P000001 -P000044 -P000047 P000081 -P000088 -P000025 -P000032 P000009 -P000061 -P000010 -P000053 P000033 -P000039 P000018 -P000007 -P000014 -P000017 P000031 P000004 -P000011 -P000041 P000029 -P000043 P000026 P000003 -P000035 -P000060 P000100 -P000101 -P000008 -P000016 -P000040 P000027 -P000038 -P100052 -P000019 -P000034 P000054 P000062 -P000049 P000073 -P000020 -P000024 -P000045 P000028 -P000021 -P000052 P000036 -P000022 +S000060 -P000057 -P000037 -P000023 P000046 P000084 P000079 P000002 -P000015 -P000111 -P000005 -P000042 P000099 -P000078 -P000067 -P000012 P000080 P000059 P000103 -P000048 -P000051 -P000006 -P000050 -P000055 -P000030 -P000075 -P000013 P000001 -P000066 -P000044 -P000047 P000081 -P000088 -P000025 -P000032 P000009 -P000061 -P000010 -P000053 -P000039 -P000007 -P000014 -P000017 P000004 -P000011 -P000070 -P000041 P000029 -P000027 -P000043 P000026 P000003 -P000035 -P000060 -P000031 P000100 -P000101 -P000069 -P000124 -P000008 -P000016 -P000040 -P000038 -P000072 -P100052 -P000019 -P000033 -P000034 -P000068 P000062 -P000049 -P000018 P000073 -P000020 -P000024 -P000045 P000028 -P000021 -P000052 -P000071 P000036 -P000022 +S000061 -P000057 -P000037 -P000023 P000046 P000084 P000079 P000002 -P000015 -P000111 -P000005 -P000042 P000099 -P000078 -P000067 -P000012 P000080 P000059 P000103 -P000048 -P000051 -P000006 -P000050 -P000055 -P000030 -P000075 -P000013 P000001 -P000044 -P000047 P000081 -P000088 -P000025 -P000032 P000009 -P000061 -P000010 -P000053 -P000039 P000018 -P000007 -P000014 -P000017 P000004 -P000011 -P000041 P000029 -P000043 P000026 P000003 -P000035 -P000060 -P000031 P000100 -P000101 -P000008 -P000016 -P000040 P000027 -P000038 -P100052 -P000019 -P000033 -P000034 P000054 P000062 -P000049 P000073 -P000020 -P000024 -P000045 P000028 -P000021 -P000052 P000036 -P000022 +S000062 -P000057 -P000037 -P000023 P000046 P000084 P000079 P000002 -P000111 -P000042 P000099 -P000078 P000007 P000080 P000059 P000005 P000103 -P000051 -P000075 P000001 P000056 -P000044 P000035 P000013 P000081 -P000058 P000012 P000061 -P000025 P000032 P000009 P000033 -P000039 P000018 P000011 P000030 -P000017 P000004 P000031 -P000070 -P000041 P000014 P000029 -P000043 P000026 P000003 P000010 -P000060 P000100 -P000101 -P000069 P000034 -P000016 -P000040 P000027 -P000038 P000008 -P100052 P000047 -P000072 -P000019 P000054 -P000036 P000053 P000006 P000082 P000062 -P000049 P000073 -P000020 -P000024 -P000045 P000028 P000048 -P000021 P000076 P000050 -P000052 P000088 -P000071 -P000022 +S000063 -P000057 -P000040 -P000037 -P000038 -P000051 -P100052 -P000075 -P000019 -P000023 -P000039 -P000036 P000056 -P000044 -P000020 -P000024 -P000045 -P000041 -P000058 -P000043 -P000042 -P000025 -P000052 -P000060 -P000078 -P000022 -P000016 +S000064 -P000057 -P000037 -P000023 P000046 P000084 P000079 P000002 -P000015 -P000111 -P000005 -P000086 -P000042 P000099 -P000078 -P000067 -P000012 P000080 P000059 P000103 -P000048 -P000075 -P000006 -P000050 -P000055 -P000030 -P000013 P000001 -P000066 -P000044 P000081 -P000088 -P000058 -P000025 -P000032 P000009 -P000061 -P000053 P000033 -P000039 -P000007 -P000014 -P000017 P000004 -P000011 -P000070 -P000041 P000029 -P000027 -P000043 P000026 P000003 -P000035 -P000060 -P000031 P000100 -P000101 -P000069 -P000124 -P000008 -P000016 -P000040 -P000038 P000047 -P100052 -P000019 -P000034 -P000068 -P000072 -P000036 P000062 -P000049 -P000018 P000073 -P000020 -P000024 -P000045 P000028 P000051 -P000021 -P000052 -P000071 -P000022 +S000065 -P000057 P000079 P000002 -P000046 -P000015 P000016 P000066 -P000005 -P000078 -P000067 -P000012 P000080 P000059 -P000048 P000038 -P000051 -P000006 P000019 -P000050 -P000055 P000043 -P000013 P000001 -P000044 P000056 -P000047 P000071 P000023 P000081 P000111 -P000088 -P000058 P000032 -P000061 P000017 -P000053 P000033 -P000039 P000018 -P000007 P000030 -P000014 P000031 P000022 P000069 P000072 -P000011 -P000009 P000029 P000041 P000026 -P000035 P000021 -P000124 -P000008 P000070 -P000040 P000027 -P100052 -P000034 P000054 P000020 -P000003 P000024 -P000004 P000037 P000062 -P000049 -P000045 P000028 P000025 -P000052 P000042 P000036 +S000066 -P000057 -P000023 P000084 P000079 P000002 -P000046 -P000015 P000066 -P000005 P000099 -P000078 -P000067 -P000012 P000080 P000059 P000103 -P000048 P000038 -P000051 -P000006 -P000050 -P000055 -P000030 -P000075 P000043 -P000013 P000001 -P000044 P000056 -P000047 P000071 P000081 -P000088 -P000058 -P000025 -P000032 -P000061 P000017 -P000053 P000033 -P000039 P000018 -P000007 -P000014 P000031 P000069 P000072 -P000011 -P000009 P000029 P000041 P000026 P000003 -P000035 P000010 -P000060 P000100 -P000101 -P000008 P000070 -P000016 -P000040 P000027 -P100052 -P000019 -P000034 P000054 -P000004 P000037 P000062 -P000049 P000073 -P000020 -P000024 -P000045 P000028 -P000021 -P000052 P000042 P000036 -P000022 +S000067 -P000037 -P000056 -P000023 P000046 P000084 P000079 P000002 -P000015 P000066 -P000005 -P000042 P000099 -P000078 -P000067 -P000012 P000080 P000059 P000103 -P000048 -P000051 -P000006 -P000050 -P000055 -P000030 -P000075 -P000013 P000001 -P000044 -P000047 P000071 P000081 -P000088 -P000025 P000058 -P000032 -P000065 -P000061 -P000010 P000017 -P000053 P000033 -P000039 P000018 -P000007 -P000014 P000031 P000022 P000069 P000072 -P000011 -P000041 -P000009 P000029 -P000043 P000026 P000003 -P000035 P000100 -P000101 -P000008 P000070 -P000016 -P000040 P000027 -P000038 -P100052 P000057 -P000019 -P000034 P000054 -P000004 P000062 -P000049 P000073 -P000064 -P000020 -P000024 -P000045 P000028 -P000021 -P000052 P000036 +S000068 -P000057 -P000023 P000084 P000079 P000002 -P000046 -P000015 -P000111 -P000005 P000099 -P000078 -P000067 -P000012 P000080 P000059 P000103 -P000048 P000038 -P000051 -P000006 -P000050 -P000055 -P000030 -P000075 P000043 -P000013 P000001 -P000066 -P000044 -P000047 P000081 -P000088 -P000058 -P000025 -P000032 P000009 -P000061 -P000010 -P000053 P000033 -P000039 -P000007 -P000014 -P000017 P000004 -P000011 -P000070 P000029 -P000027 P000041 P000026 P000003 -P000035 -P000060 -P000031 P000100 -P000101 -P000069 -P000124 -P000008 -P000016 -P000040 -P000072 -P100052 -P000019 -P000034 -P000068 P000037 P000062 -P000049 -P000018 P000073 -P000020 -P000024 -P000045 P000028 -P000021 -P000052 P000042 -P000071 P000036 -P000022 +S000069 -P000057 -P000023 P000084 P000079 P000002 -P000046 -P000015 -P000111 -P000005 P000099 -P000078 -P000067 -P000012 P000080 P000059 P000103 -P000048 P000038 -P000051 -P000006 -P000050 -P000055 -P000030 -P000075 P000043 -P000013 P000001 -P000044 -P000047 P000081 -P000088 -P000058 -P000025 -P000032 P000009 -P000061 -P000010 -P000053 -P000039 P000018 -P000007 -P000014 -P000017 P000004 -P000011 P000029 -P000027 P000041 P000026 P000003 -P000035 -P000060 -P000031 P000100 -P000101 -P000124 -P000008 -P000016 -P000040 -P100052 -P000019 -P000034 -P000033 P000037 P000062 -P000049 P000073 -P000020 -P000024 -P000045 P000028 -P000021 -P000052 P000042 P000036 -P000022 +S000070 -P000057 -P000023 P000084 P000079 P000002 -P000046 -P000015 -P000111 -P000005 P000099 -P000078 -P000067 -P000012 P000080 P000059 P000103 -P000048 P000038 -P000051 -P000006 -P000050 -P000055 -P000030 -P000075 P000043 -P000013 P000001 -P000066 -P000044 -P000047 P000081 -P000088 -P000058 -P000025 -P000032 P000009 -P000061 -P000010 -P000053 P000033 -P000039 -P000007 -P000014 -P000017 P000004 -P000011 -P000070 P000029 -P000027 P000041 P000026 P000003 -P000035 -P000060 -P000031 P000100 -P000101 -P000069 -P000124 -P000008 -P000016 -P000040 -P000072 -P100052 -P000019 -P000034 -P000068 P000037 P000062 -P000049 -P000018 P000073 -P000020 -P000024 -P000045 P000028 -P000021 -P000052 P000042 -P000071 P000036 -P000022 +S000071 -P000037 -P000023 P000046 P000084 P000079 P000002 -P000015 P000066 -P000005 -P000086 -P000042 P000099 -P000078 -P000067 -P000012 P000080 P000059 P000103 -P000075 -P000006 -P000050 -P000055 -P000030 -P000013 P000001 P000056 -P000044 P000071 P000081 -P000088 -P000025 P000058 -P000032 -P000065 P000009 -P000061 -P000010 P000017 -P000053 P000033 -P000039 P000018 -P000007 -P000014 P000031 P000004 P000069 P000072 -P000011 -P000041 P000029 -P000043 P000026 P000003 -P000035 -P000060 P000100 -P000101 -P000008 P000070 -P000016 -P000040 P000027 -P000038 P000047 -P100052 P000057 -P000019 -P000034 P000054 -P000036 P000062 -P000049 P000073 -P000020 -P000024 -P000045 P000028 P000048 P000051 -P000021 -P000052 -P000022 +S000072 -P000037 -P000056 -P000023 P000046 P000084 P000079 P000002 -P000015 P000066 -P000005 -P000042 P000099 -P000078 -P000067 -P000012 P000080 P000059 P000103 -P000048 -P000051 -P000075 -P000006 -P000050 -P000030 -P000055 -P000013 P000001 -P000044 P000071 P000081 -P000088 -P000025 P000058 -P000032 -P000065 -P000061 P000017 -P000053 P000033 -P000039 P000018 -P000007 -P000014 P000031 P000004 P000069 P000072 -P000011 -P000041 -P000009 P000029 -P000043 P000026 P000003 -P000035 P000010 -P000060 P000100 -P000101 -P000008 P000070 -P000016 -P000040 P000027 P000047 -P000038 -P100052 P000057 -P000019 -P000034 P000054 -P000036 P000062 -P000049 P000073 -P000064 -P000020 -P000024 -P000045 P000028 -P000021 -P000052 -P000022 +S000073 -P000057 -P000023 P000084 P000079 P000002 -P000046 -P000015 P000066 -P000005 P000099 -P000078 -P000067 -P000012 P000080 P000059 P000103 -P000048 P000038 -P000051 -P000006 -P000050 -P000055 -P000030 -P000075 P000043 -P000013 P000001 -P000044 P000056 -P000047 P000071 P000081 -P000088 -P000058 -P000025 -P000032 -P000061 P000017 -P000053 P000033 -P000039 P000018 -P000007 -P000014 P000031 P000069 P000072 -P000011 -P000009 P000029 P000041 P000026 P000003 -P000035 P000010 -P000060 P000100 -P000101 -P000008 P000070 -P000016 -P000040 P000027 -P100052 -P000019 -P000034 P000054 -P000004 P000037 P000062 -P000049 P000073 -P000020 -P000024 -P000045 P000028 -P000021 -P000052 P000042 P000036 -P000022 +S000074 -P000057 -P000023 P000084 P000079 P000002 -P000046 -P000015 -P000111 P000099 -P000078 -P000067 P000080 P000059 P000005 P000103 -P000048 P000038 -P000051 -P000055 -P000050 -P000075 -P000030 P000043 -P000013 P000001 -P000066 -P000044 P000056 -P000054 -P000047 P000081 -P000088 -P000058 P000012 P000061 -P000025 -P000032 P000009 -P000053 P000033 -P000039 P000011 -P000007 -P000014 -P000017 P000004 -P000070 P000029 -P000027 P000041 P000026 P000003 -P000035 P000010 -P000060 -P000031 P000100 -P000101 -P000069 -P000124 -P000008 -P000016 -P000040 -P000072 -P100052 -P000019 -P000034 -P000068 P000006 P000037 P000062 -P000049 -P000018 P000073 -P000020 -P000024 -P000045 P000028 -P000021 -P000052 P000042 -P000071 P000036 -P000022 +S000075 -P000057 -P000023 P000084 P000079 P000002 -P000046 P000099 -P000078 P000007 P000080 P000059 P000005 P000103 -P000048 P000038 -P000051 -P000075 -P000050 P000043 P000001 -P000044 P000056 P000035 -P000047 P000013 P000081 -P000058 P000012 P000061 -P000025 P000032 P000009 P000033 -P000039 P000018 P000011 P000030 P000004 P000031 P000014 P000029 P000041 P000026 P000003 P000010 -P000060 P000100 -P000101 P000034 -P000016 -P000040 P000027 P000008 -P100052 -P000019 P000054 P000053 P000006 P000037 P000062 -P000049 P000073 P000082 -P000020 -P000024 -P000045 P000028 -P000021 P000076 -P000052 P000088 P000042 P000036 -P000022 +S000076 -P000057 -P000037 P000046 P000084 P000079 P000002 -P000015 -P000111 -P000042 P000099 -P000078 -P000067 P000080 P000059 P000005 P000103 -P000075 -P000055 -P000030 -P000013 P000001 -P000066 -P000044 -P000054 P000081 -P000088 -P000025 P000009 -P000053 -P000039 P000011 -P000007 -P000014 -P000017 P000004 -P000070 -P000041 P000029 -P000027 -P000043 P000026 P000003 -P000035 P000010 -P000060 -P000031 P000100 -P000101 -P000069 -P000124 -P000008 -P000016 -P000040 -P000038 P000047 -P100052 -P000034 -P000072 -P000068 -P000036 P000062 -P000049 -P000018 P000073 -P000045 P000028 P000048 P000050 -P000052 -P000071 +S000077 -P000057 P000011 -P000007 -P000014 -P000017 P000031 -P000015 -P000111 -P000070 -P000027 -P000035 P000010 -P000078 -P000067 -P000069 -P000124 -P000026 -P000008 -P000016 -P000040 -P000072 -P100052 -P000055 -P000019 -P000034 -P000068 -P000075 -P000013 -P000066 -P000018 -P000020 -P000088 -P000025 -P000052 -P000053 -P000071 P000033 +S000078 -P000057 -P000037 P000046 P000084 P000002 -P000015 P000016 P000066 -P000086 -P000042 P000099 -P000078 P000007 -P000067 P000005 -P000055 P000019 P000001 -P000044 P000056 -P000054 P000035 P000071 P000013 P000023 P000111 P000012 P000032 P000009 P000017 -P000053 P000033 -P000039 P000018 P000011 P000030 -P000014 P000004 P000022 P000031 P000069 P000072 -P000082 -P000041 -P000027 -P000043 P000003 P000010 P000021 -P000060 P000100 -P000101 -P000124 -P000026 -P000008 P000034 P000070 -P000040 -P000038 P000047 -P100052 P000024 -P000036 P000006 P000063 P000062 -P000049 P000073 -P000045 P000064 P000048 P000051 P000050 P000025 -P000052 P000088 +S000079 -P000057 -P000037 P000046 P000084 P000002 -P000015 -P000111 -P000086 -P000042 P000099 -P000078 -P000067 P000059 P000005 -P000028 -P000075 -P000055 -P000030 -P000013 P000001 -P000066 -P000044 P000056 -P000054 P000023 -P000088 P000012 -P000025 -P000032 P000009 -P000053 P000033 -P000039 P000011 -P000007 -P000029 -P000014 -P000017 P000004 P000022 -P000070 -P000041 -P000027 -P000043 P000003 -P000035 P000010 -P000060 -P000031 P000100 -P000101 -P000069 -P000124 -P000008 -P000026 -P000016 -P000040 -P000038 P000047 -P100052 -P000019 -P000034 -P000068 -P000072 P000024 -P000036 P000006 P000063 -P000049 P000073 -P000018 -P000020 -P000045 P000064 P000048 P000051 -P000021 P000050 -P000052 -P000071 +S000081 -P000057 -P000037 -P000023 P000084 P000002 -P000046 -P000015 -P000111 -P000005 -P000042 P000099 -P000078 -P000067 -P000012 P000059 -P000028 -P000048 -P000051 -P000006 -P000055 -P000050 -P000030 -P000075 -P000013 P000001 -P000066 P000056 -P000044 -P000054 -P000047 -P000088 -P000058 -P000025 P000009 -P000061 -P000053 -P000039 -P000007 -P000029 -P000014 -P000017 P000004 -P000011 -P000070 -P000041 -P000027 -P000043 P000003 -P000035 P000010 -P000060 -P000031 P000100 -P000101 -P000069 -P000124 -P000026 -P000008 -P000016 -P000040 -P000038 -P000072 -P100052 -P000019 -P000034 -P000068 -P000036 -P000049 -P000018 P000073 -P000020 -P000024 -P000045 -P000021 -P000052 -P000071 +S000087 -P000057 P000011 -P000007 P000084 -P000014 -P000017 P000031 P000004 P000002 -P000015 -P000111 -P000070 -P000027 P000003 P000099 -P000035 P000010 P000100 -P000078 -P000067 -P000101 -P000069 -P000124 -P000026 -P000008 P000005 -P000016 -P000040 -P000072 -P100052 -P000055 -P000019 -P000034 -P000030 -P000068 -P000075 -P000013 P000001 -P000066 P000073 -P000018 -P000054 -P000020 -P000088 -P000021 -P000025 -P000052 -P000032 -P000053 -P000071 P000033 +S000088 -P000057 P000011 -P000007 -P000014 -P000017 P000022 -P000015 -P000111 -P000070 -P000027 -P000035 P000010 -P000078 -P000067 -P000069 -P000124 -P000008 -P000016 -P000040 -P000072 -P100052 -P000055 -P000034 -P000075 -P000068 -P000013 -P000066 -P000018 -P000088 -P000025 -P000052 -P000053 -P000071 +S000089 -P000057 -P000037 -P000023 P000046 P000084 P000002 -P000015 -P000111 -P000086 -P000042 P000099 -P000078 -P000067 -P000012 P000059 P000005 -P000028 -P000075 -P000006 -P000050 -P000055 -P000030 -P000013 P000001 -P000066 -P000044 -P000054 -P000088 -P000025 P000009 -P000061 -P000053 -P000039 P000011 -P000007 -P000029 -P000014 -P000017 P000004 -P000070 -P000041 -P000027 -P000043 P000003 -P000035 P000010 -P000060 P000100 -P000101 -P000069 -P000124 -P000008 -P000026 -P000016 -P000040 -P000038 P000047 -P100052 -P000019 -P000034 -P000068 -P000072 -P000036 -P000049 P000073 -P000018 -P000020 -P000024 -P000045 P000048 P000051 -P000021 -P000052 -P000071 +S000090 -P000057 P000011 P000060 -P000007 -P000014 -P000017 P000022 -P000015 -P000111 -P000070 -P000009 -P000027 -P000035 P000010 -P000078 -P000067 -P000069 -P000124 P000059 P000005 -P000008 -P000016 -P000040 -P000048 -P000072 -P100052 -P000006 -P000034 -P000055 -P000068 -P000075 -P000013 -P000066 -P000049 -P000018 -P000054 -P000047 -P000088 -P000025 -P000052 -P000061 -P000053 -P000071 P000036 -P000039 +S000091 -P000057 -P000037 P000046 P000084 P000002 -P000015 -P000111 -P000086 -P000042 P000099 -P000078 -P000067 P000059 P000005 -P000028 -P000075 -P000055 -P000030 -P000013 P000001 -P000066 -P000044 P000056 -P000054 P000023 -P000088 -P000058 P000012 -P000025 -P000032 P000009 -P000053 P000033 -P000039 P000011 -P000007 -P000029 -P000014 -P000017 P000031 P000004 -P000070 -P000041 -P000027 -P000043 P000003 -P000035 P000010 -P000060 P000100 -P000101 -P000069 -P000124 -P000008 -P000026 -P000016 -P000040 -P000038 P000047 -P100052 -P000019 -P000034 -P000068 -P000072 P000024 -P000036 P000006 P000063 -P000049 -P000018 P000073 -P000020 -P000045 P000064 P000048 P000051 -P000021 P000050 -P000052 -P000071 -P000022 +S000092 -P000057 P000011 -P000007 -P000014 -P000017 -P000015 -P000111 -P000070 -P000027 -P000035 P000010 -P000078 -P000067 -P000069 -P000124 -P000008 -P000016 -P000040 -P000072 -P100052 -P000055 -P000034 -P000075 -P000068 -P000013 -P000066 -P000018 -P000088 -P000025 -P000052 -P000053 -P000071 +S000093 -P000057 -P000037 P000046 P000084 P000079 P000002 P000016 P000066 P000067 -P000042 P000099 -P000078 P000007 P000080 P000059 P000005 P000103 -P000051 -P000055 P000019 P000001 -P000044 P000056 -P000054 P000035 P000071 P000013 P000023 P000081 P000111 P000015 P000012 P000061 P000032 P000009 P000017 -P000053 P000033 -P000039 P000018 P000011 P000030 P000004 P000022 P000031 P000069 P000072 -P000082 -P000041 P000014 P000029 -P000027 -P000043 P000026 P000003 P000010 P000021 -P000060 P000100 -P000101 -P000124 P000034 P000070 -P000040 -P000038 P000008 -P100052 P000047 P000020 P000024 -P000036 P000006 P000063 P000062 -P000049 P000073 -P000045 P000028 P000064 P000048 P000050 P000025 -P000052 P000088 +S000094 -P000057 -P000037 -P000023 P000046 P000084 P000079 P000002 -P000015 -P000111 -P000005 -P000042 P000099 -P000078 -P000067 -P000012 P000080 P000059 P000103 -P000051 -P000006 -P000050 -P000055 -P000030 -P000075 -P000013 P000001 -P000044 P000081 -P000088 -P000058 -P000025 -P000032 P000009 -P000061 -P000010 -P000053 P000033 -P000039 P000018 -P000007 -P000014 -P000017 P000031 P000004 -P000011 -P000041 P000029 -P000027 -P000043 P000026 P000003 -P000035 -P000060 P000100 -P000101 -P000124 -P000008 -P000016 -P000040 -P000038 P000047 -P100052 -P000019 -P000034 -P000036 P000062 -P000049 P000073 -P000020 -P000024 -P000045 P000028 P000048 -P000021 -P000052 +S000095 -P000057 -P000037 P000084 P000079 P000002 -P000046 -P000015 P000016 P000066 -P000042 P000099 -P000078 P000007 -P000067 P000080 P000059 P000005 P000103 -P000048 -P000051 -P000055 P000019 -P000050 P000001 -P000044 P000056 -P000054 P000035 -P000047 P000071 P000065 P000013 P000023 P000081 P000111 -P000058 P000012 P000032 P000009 P000017 -P000053 P000033 -P000039 P000018 P000011 -P000029 P000030 P000004 P000022 P000031 P000069 P000072 -P000082 -P000041 P000014 -P000027 -P000043 P000003 P000010 P000021 -P000060 P000100 -P000101 -P000124 -P000026 P000034 P000070 -P000040 -P000038 P000008 -P100052 P000020 -P000036 P000024 P000006 P000063 P000062 -P000049 P000073 -P000045 P000028 P000064 P000025 -P000052 P000088 +S000096 -P000037 -P000023 P000046 P000084 P000002 P000066 -P000086 P000067 -P000042 P000099 -P000078 P000007 P000059 P000005 -P000028 -P000075 -P000055 P000001 P000056 -P000044 -P000054 P000035 P000071 P000013 P000081 P000015 P000012 P000061 -P000025 P000032 P000058 -P000065 P000009 P000017 -P000053 P000033 -P000039 P000018 P000011 P000030 P000004 P000031 P000069 P000072 -P000082 -P000041 P000014 P000029 -P000027 -P000043 P000026 P000003 P000010 -P000060 P000100 -P000101 -P000124 P000034 P000070 -P000016 -P000040 -P000038 P000008 -P100052 P000057 P000047 -P000019 -P000036 P000006 P000062 -P000049 P000073 -P000020 -P000024 -P000045 P000048 P000051 -P000021 P000050 -P000052 P000088 -P000022 +S000097 -P000037 P000046 P000002 -P000015 P000016 P000066 -P000005 -P000086 -P000042 -P000078 -P000067 -P000012 P000059 -P000028 -P000048 -P000006 P000019 -P000050 -P000055 -P000013 P000001 P000056 -P000044 -P000054 P000071 P000023 P000081 P000111 -P000088 P000032 P000058 -P000065 -P000061 P000017 -P000053 P000033 -P000039 P000018 -P000007 P000030 -P000014 P000031 P000022 P000069 P000072 -P000011 -P000041 -P000009 P000029 -P000027 -P000043 P000026 -P000035 P000021 -P000060 -P000124 -P000008 P000070 -P000040 P000047 -P000038 -P100052 P000057 -P000034 P000020 -P000003 P000024 -P000036 -P000004 P000062 -P000049 -P000045 P000051 P000025 -P000052 +S000098 -P000037 -P000023 P000046 P000084 P000079 P000002 -P000015 P000066 -P000005 -P000042 P000099 -P000078 -P000067 -P000012 P000080 P000059 P000103 -P000048 -P000075 -P000006 -P000050 -P000055 -P000030 -P000013 P000001 -P000044 P000056 P000071 P000081 -P000088 -P000025 P000058 -P000032 -P000065 -P000061 P000017 -P000053 P000033 -P000039 P000018 -P000007 -P000014 P000031 P000022 P000069 P000072 -P000011 -P000041 -P000009 P000029 -P000043 P000026 P000003 -P000035 P000010 -P000060 P000100 -P000101 -P000008 P000070 -P000016 -P000040 P000027 -P000038 -P100052 P000057 -P000019 -P000034 P000054 -P000036 -P000004 P000062 -P000049 P000073 -P000020 -P000024 -P000045 P000028 -P000021 -P000052 +S000099 -P000057 P000084 P000002 -P000046 -P000015 P000016 P000066 -P000042 P000099 -P000078 P000007 -P000067 P000059 P000005 -P000028 -P000048 P000038 -P000051 -P000055 P000019 -P000050 P000001 -P000044 P000056 -P000054 P000035 -P000047 P000071 P000013 P000023 P000111 -P000058 P000012 P000032 P000009 P000017 -P000053 P000033 -P000039 P000018 P000011 -P000029 P000030 -P000014 P000004 P000022 P000031 P000069 P000072 -P000082 -P000041 -P000027 -P000043 P000003 P000010 P000021 -P000060 P000100 -P000101 -P000124 -P000008 -P000026 P000034 P000070 -P000040 -P100052 P000020 P000024 P000006 P000037 P000062 -P000049 P000063 P000073 -P000045 P000064 P000025 -P000052 P000088 P000036 +S000100 -P000057 -P000037 -P000023 P000046 P000084 P000079 P000002 -P000111 -P000042 P000099 P000055 -P000078 P000007 P000080 P000059 P000005 P000103 -P000051 -P000075 P000001 -P000044 P000056 P000035 P000065 P000013 P000081 -P000058 P000012 P000061 -P000025 P000032 P000009 P000033 -P000039 P000018 P000011 P000030 -P000017 P000004 P000031 -P000070 -P000041 P000014 P000029 -P000043 P000026 P000003 P000010 -P000060 P000100 -P000101 -P000069 P000034 -P000016 -P000040 P000027 -P000038 P000008 -P100052 P000047 -P000019 P000054 -P000072 -P000036 P000053 P000006 P000063 P000062 -P000049 P000073 P000082 -P000020 -P000024 -P000045 P000028 P000064 P000048 -P000021 P000076 P000050 -P000052 P000088 -P000071 -P000022 +S000101 -P000057 -P000037 -P000023 P000046 P000084 P000002 -P000015 -P000111 -P000042 P000099 -P000078 -P000067 P000059 P000005 -P000028 -P000051 -P000055 -P000075 -P000030 -P000013 P000001 -P000066 -P000044 -P000054 -P000088 P000012 P000061 -P000025 P000009 -P000053 -P000039 P000011 -P000007 -P000014 -P000017 P000004 -P000070 -P000041 P000029 -P000027 -P000043 P000026 P000003 -P000035 P000010 -P000060 -P000031 P000100 -P000101 -P000069 -P000124 -P000008 -P000016 -P000040 -P000038 P000047 -P100052 -P000034 -P000072 -P000068 -P000036 P000006 P000062 P000073 -P000018 -P000024 -P000045 P000048 P000050 -P000052 -P000071 +S000102 -P000057 -P000037 -P000023 P000046 P000084 P000079 P000002 -P000111 P000067 -P000042 P000099 -P000078 P000007 P000080 P000059 P000005 P000103 -P000051 -P000075 P000001 -P000066 P000056 -P000044 P000035 P000065 P000013 P000081 P000015 -P000058 P000012 P000061 -P000025 P000032 P000009 P000033 -P000039 P000011 -P000029 P000030 -P000017 P000031 P000004 -P000070 -P000041 P000014 -P000027 -P000043 P000003 P000010 -P000060 P000100 -P000101 -P000069 -P000124 -P000026 P000034 -P000016 -P000040 -P000038 P000008 -P100052 -P000019 P000047 -P000072 -P000068 -P000036 P000006 -P000049 -P000018 P000073 -P000020 -P000024 -P000045 P000028 P000048 -P000021 P000050 -P000052 P000088 -P000071 -P000022 +S000103 -P000057 P000084 P000002 -P000015 P000016 P000066 P000099 -P000078 P000007 -P000067 P000059 P000005 -P000028 -P000048 -P000051 -P000055 P000019 -P000050 P000001 P000056 -P000054 P000035 -P000047 P000071 P000013 P000023 P000111 -P000058 P000012 P000061 P000032 P000009 -P000076 P000017 -P000053 P000033 -P000039 P000018 P000011 P000030 -P000091 -P000014 -P000080 P000004 P000022 P000031 P000069 P000072 -P000082 -P000077 P000029 -P000027 P000026 P000003 P000010 P000021 -P000060 P000100 -P000101 -P000124 -P000008 P000034 P000070 -P000040 -P100052 P000024 P000006 P000063 P000062 -P000049 P000073 -P000020 -P000079 P000064 P000025 -P000052 P000088 P000036 +S000104 -P000057 -P000037 P000084 P000002 -P000015 -P000111 -P000042 P000099 -P000078 -P000067 P000059 P000005 -P000028 -P000075 -P000055 P000019 -P000030 -P000013 P000001 -P000066 P000056 -P000044 -P000054 P000023 -P000088 -P000058 P000012 -P000025 P000032 P000009 -P000053 P000033 -P000039 P000011 -P000007 -P000029 -P000014 -P000017 P000004 P000022 -P000070 -P000041 -P000027 -P000043 P000003 -P000035 P000010 P000021 -P000031 -P000060 P000100 -P000101 -P000069 -P000124 -P000008 -P000026 -P000016 -P000040 -P000038 -P000072 -P100052 -P000034 -P000068 -P000036 P000024 P000006 P000063 P000073 -P000018 -P000045 P000064 -P000052 -P000071 +S000105 -P000057 P000030 P000079 P000031 P000022 -P000046 -P000015 P000069 P000016 P000072 P000066 P000029 -P000027 P000026 P000021 -P000078 -P000067 -P000124 P000080 -P000008 P000070 -P000048 P000038 -P000051 -P100052 -P000055 P000019 P000020 P000024 P000037 P000062 -P000049 -P000047 P000071 P000023 P000081 P000028 P000111 -P000058 P000032 P000025 -P000052 P000017 -P000053 P000033 P000036 P000018 +S000106 -P000057 -P000023 P000084 P000079 P000002 -P000046 -P000111 P000099 P000055 -P000078 P000007 P000080 P000059 P000005 P000103 -P000048 P000038 -P000051 -P000075 -P000050 P000043 P000001 P000056 P000035 -P000047 P000013 P000081 -P000058 P000012 P000061 -P000025 P000032 P000009 P000033 -P000039 P000018 P000011 P000030 -P000017 P000004 P000031 -P000070 P000014 P000029 P000041 P000026 P000003 P000010 -P000060 P000100 -P000101 -P000069 P000034 -P000016 -P000040 P000027 P000008 -P100052 -P000019 P000054 -P000072 P000053 P000006 P000037 P000062 -P000049 P000063 P000073 P000082 -P000020 -P000024 P000028 P000064 -P000021 P000076 -P000052 P000088 P000042 -P000071 P000036 -P000022 +S000107 -P000057 P000011 -P000037 -P000029 -P000023 P000084 -P000039 -P000017 P000002 P000004 -P000111 -P000070 P000014 -P000027 P000003 P000099 P000010 -P000060 P000100 -P000078 P000007 -P000101 -P000069 -P000124 P000059 -P000026 P000005 -P000016 -P000028 -P000040 -P000038 P000008 -P100052 -P000072 -P000055 -P000019 -P000075 -P000068 -P000036 P000001 -P000066 P000006 -P000044 P000073 -P000018 -P000054 -P000020 -P000024 P000013 -P000045 -P000021 P000012 -P000025 -P000052 P000009 -P000053 -P000071 -P000022 +S000108 -P000057 -P000037 P000049 P000046 P000084 P000002 -P000015 P000016 P000066 -P000042 P000099 -P000078 P000007 -P000067 P000059 P000005 -P000028 -P000051 -P000055 P000019 P000001 -P000044 P000056 -P000054 P000035 P000071 P000013 P000023 P000111 -P000058 P000012 P000061 P000032 P000009 -P000076 P000017 -P000053 P000033 -P000039 P000018 P000011 P000030 -P000091 -P000014 -P000080 P000004 P000022 P000031 P000069 P000072 -P000082 -P000077 -P000041 P000029 -P000027 -P000043 P000026 P000003 P000010 P000021 -P000060 P000100 -P000101 -P000124 -P000008 P000034 P000070 -P000040 -P000038 P000047 -P100052 P000024 -P000036 P000006 P000063 P000062 P000073 -P000020 -P000045 -P000079 P000064 P000048 P000050 P000025 -P000052 P000088 +S000109 -P000057 P000011 P000084 -P000039 -P000017 P000002 P000004 P000022 -P000111 -P000070 P000029 -P000027 P000026 P000003 P000099 -P000035 P000010 P000021 -P000031 -P000060 -P000078 P000100 -P000101 -P000069 -P000124 P000059 P000005 -P000016 -P000040 -P000072 -P100052 P000019 -P000055 -P000034 -P000075 -P000030 -P000068 P000001 -P000066 P000056 P000006 P000062 P000073 -P000018 -P000054 P000012 P000061 -P000025 P000032 -P000052 P000009 -P000053 -P000071 P000033 +S000110 -P000057 -P000037 P000049 -P000023 P000046 P000084 P000002 -P000015 -P000111 -P000005 -P000086 -P000042 P000099 -P000078 -P000067 -P000012 P000059 -P000028 -P000075 -P000006 -P000050 -P000055 -P000030 -P000013 P000001 -P000066 -P000044 -P000054 -P000088 -P000025 P000009 -P000061 -P000053 -P000039 -P000007 -P000014 -P000017 P000004 P000022 -P000011 -P000070 -P000041 P000029 -P000027 -P000043 P000026 P000003 -P000035 -P000060 -P000031 P000100 -P000101 -P000069 -P000124 -P000008 -P000016 -P000040 -P000038 P000047 -P100052 -P000019 -P000034 -P000068 -P000072 -P000036 P000062 P000073 -P000018 -P000020 -P000024 -P000045 P000048 P000051 -P000021 -P000052 -P000071 +S000111 -P000037 P000049 -P000023 P000046 P000084 P000002 P000066 -P000086 P000067 -P000042 P000099 -P000078 P000007 P000059 P000005 -P000028 -P000075 -P000055 P000001 P000056 -P000044 -P000054 P000035 P000071 P000013 P000081 P000015 P000012 P000061 P000032 -P000025 P000058 -P000065 P000009 P000017 -P000053 P000033 -P000039 P000018 P000011 P000030 P000031 P000004 P000069 P000072 -P000082 -P000041 P000014 P000029 -P000027 -P000043 P000026 P000003 P000010 -P000060 P000100 -P000101 -P000124 P000034 P000070 -P000016 -P000040 -P000038 P000008 -P100052 P000057 P000047 -P000019 -P000036 P000006 P000062 P000073 -P000020 -P000024 -P000045 P000048 P000051 -P000021 P000050 -P000052 P000088 -P000022 +S000112 -P000057 -P000037 -P000023 P000084 P000079 P000002 -P000046 P000066 -P000042 P000099 P000055 -P000078 P000007 P000080 P000059 P000005 P000103 -P000048 -P000051 -P000075 -P000050 P000001 -P000044 P000056 P000035 -P000047 P000071 P000013 P000081 -P000058 P000012 P000061 -P000025 P000032 P000009 P000017 P000033 -P000039 P000018 P000011 P000030 P000004 P000031 P000069 P000072 -P000041 P000014 P000029 -P000043 P000026 P000003 P000010 -P000060 P000100 -P000101 P000034 P000070 -P000016 -P000040 P000027 -P000038 P000008 -P100052 -P000019 P000054 -P000036 P000053 P000006 P000063 P000062 -P000049 P000073 P000082 -P000020 -P000024 -P000045 P000028 P000064 -P000021 P000076 -P000052 P000088 -P000022 +S000113 -P000057 -P000037 -P000023 P000084 P000079 P000002 -P000046 P000066 -P000042 P000099 -P000078 P000007 P000080 P000059 P000005 P000103 -P000048 -P000051 -P000075 -P000050 P000001 -P000044 P000056 P000035 -P000047 P000071 P000013 P000081 P000012 P000061 -P000025 P000032 P000009 P000017 P000033 -P000039 P000018 P000011 P000030 P000004 P000031 P000069 P000072 -P000041 P000014 P000029 -P000043 P000026 P000003 P000010 -P000060 P000100 -P000101 P000034 P000070 -P000016 -P000040 P000027 -P000038 P000008 -P100052 -P000019 P000054 P000053 P000006 P000082 P000062 -P000049 P000073 -P000020 -P000024 -P000045 P000028 -P000021 P000076 -P000052 P000088 P000036 -P000022 +S000114 -P000057 -P000037 P000084 P000077 P000079 P000002 -P000046 P000016 P000066 -P000042 P000099 P000055 P000091 -P000078 P000007 P000080 P000059 P000005 P000103 -P000048 -P000051 P000019 -P000050 P000001 -P000044 P000056 P000035 -P000047 P000071 P000013 P000023 P000081 P000111 P000012 P000061 P000032 P000009 P000017 P000033 -P000039 P000018 P000011 P000030 P000004 P000022 P000031 P000069 P000072 -P000041 P000014 P000029 -P000043 P000026 P000003 P000010 P000021 -P000060 P000100 -P000101 P000034 P000070 -P000040 P000027 -P000038 P000008 -P100052 P000054 P000020 P000053 P000024 P000006 P000063 P000062 -P000049 P000073 P000082 -P000045 P000028 P000064 P000076 P000025 -P000052 P000088 P000036 +S000115 -P000057 P000084 P000077 P000079 P000002 -P000046 P000016 P000066 -P000042 P000099 P000055 P000091 -P000078 P000007 P000080 P000059 P000005 P000103 -P000048 P000038 -P000051 P000019 -P000050 P000001 -P000044 P000056 P000035 -P000047 P000071 P000013 P000023 P000111 P000081 -P000058 P000012 P000061 P000032 P000009 P000017 P000033 -P000039 P000018 P000011 P000030 P000004 P000022 P000031 P000069 P000072 -P000041 P000014 P000029 -P000043 P000026 P000003 P000010 P000021 P000100 -P000060 -P000101 P000034 P000070 -P000040 P000027 P000008 -P100052 P000054 P000020 P000053 P000024 P000006 P000063 P000037 P000062 -P000049 P000073 P000082 -P000045 P000028 P000064 P000076 P000025 -P000052 P000088 P000036 +S000116 -P000057 -P000037 P000084 P000079 P000002 -P000046 P000066 -P000042 P000099 P000055 -P000078 P000007 P000080 P000059 P000005 P000103 -P000048 -P000051 -P000075 -P000050 P000001 -P000044 P000056 P000035 -P000047 P000071 P000013 P000023 P000081 P000111 P000012 P000061 P000032 P000009 P000017 P000033 -P000039 P000018 P000011 P000030 P000004 P000031 P000069 P000072 -P000041 P000014 P000029 -P000043 P000026 P000003 P000010 -P000060 P000100 -P000101 P000034 P000070 -P000016 -P000040 P000027 -P000038 P000008 -P100052 -P000019 P000054 P000024 P000053 P000006 P000063 P000062 -P000049 P000073 P000082 -P000020 -P000045 P000028 P000064 -P000021 P000076 P000025 -P000052 P000088 P000036 -P000022 +S000117 -P000057 P000084 P000077 P000079 P000002 -P000046 P000016 P000066 -P000042 P000099 P000055 P000091 -P000078 P000007 P000080 P000059 P000005 P000103 -P000048 P000038 -P000051 P000019 -P000050 P000001 -P000044 P000056 P000035 -P000047 P000071 P000013 P000023 P000111 P000081 -P000058 P000012 P000061 P000032 P000009 P000017 P000033 -P000039 P000018 P000011 P000030 P000004 P000022 P000031 P000069 P000072 -P000041 P000014 P000029 -P000043 P000026 P000003 P000010 P000021 P000100 -P000060 -P000101 P000034 P000070 -P000040 P000027 P000008 -P100052 P000054 P000020 P000053 P000024 P000006 P000063 P000037 P000062 -P000049 P000073 P000082 -P000045 P000028 P000064 P000076 P000025 -P000052 P000088 P000036 +S000118 -P000056 -P000046 -P000015 P000016 P000066 -P000005 -P000042 -P000067 -P000012 P000059 -P000048 -P000006 P000019 -P000050 -P000055 P000001 -P000044 -P000047 P000071 P000013 P000023 P000081 P000111 -P000099 -P000002 P000032 P000058 -P000065 -P000061 P000017 -P000053 P000033 -P000039 P000018 P000060 -P000007 P000030 P000031 P000022 -P000084 P000069 P000072 -P000011 -P000041 -P000009 P000014 P000029 -P000043 P000026 -P000035 P000021 -P000103 -P000124 -P000008 P000070 -P000038 -P100052 P000057 -P000003 -P000100 P000024 -P000004 P000037 P000062 -P000049 -P000064 -P000045 P000040 P000025 -P000052 P000036 +S000119 -P000057 -P000037 P000084 P000079 P000002 -P000046 P000066 -P000042 P000099 P000055 -P000078 P000007 P000080 P000059 P000005 P000103 -P000048 -P000051 -P000075 -P000050 P000001 -P000044 P000056 P000035 -P000047 P000071 P000013 P000023 P000081 P000111 P000012 P000061 P000032 P000009 P000017 P000033 -P000039 P000018 P000011 P000030 P000004 P000031 P000069 P000072 -P000041 P000014 P000029 -P000043 P000026 P000003 P000010 -P000060 P000100 -P000101 P000034 P000070 -P000016 -P000040 P000027 -P000038 P000008 -P100052 -P000019 P000054 P000024 P000053 P000006 P000063 P000062 -P000049 P000073 P000082 -P000020 -P000045 P000028 P000064 -P000021 P000076 P000025 -P000052 P000088 P000036 -P000022 +S000120 -P000057 -P000037 P000084 P000079 P000002 -P000046 P000066 -P000042 P000099 P000055 -P000078 P000007 P000080 P000059 P000005 P000103 -P000048 -P000051 -P000075 -P000050 P000001 -P000044 P000056 P000035 -P000047 P000071 P000013 P000023 P000081 P000111 P000012 P000061 P000032 P000009 P000017 P000033 -P000039 P000018 P000011 P000030 P000004 P000031 P000069 P000072 -P000041 P000014 P000029 -P000043 P000026 P000003 P000010 -P000060 P000100 -P000101 P000034 P000070 -P000016 -P000040 P000027 -P000038 P000008 -P100052 -P000019 P000054 P000024 P000053 P000006 P000063 P000062 -P000049 P000073 P000082 -P000020 -P000045 P000028 P000064 -P000021 P000076 P000025 -P000052 P000088 P000036 -P000022 +S000121 -P000052 -P000048 -P000049 -P100052 P000036 -P000047 +S000122 -P000037 -P000023 P000046 P000084 P000002 -P000015 P000066 -P000005 -P000042 P000099 -P000078 -P000067 -P000012 P000059 -P000048 -P000051 -P000006 -P000050 -P000055 -P000030 -P000075 -P000013 P000001 -P000047 P000071 P000081 -P000088 -P000025 P000058 -P000032 -P000065 -P000061 P000017 -P000053 -P000039 P000018 -P000007 -P000014 P000069 P000072 -P000011 P000029 -P000043 P000026 P000003 -P000035 P000100 -P000101 -P000008 P000070 -P000016 -P000040 -P000038 -P100052 P000057 -P000019 -P000034 P000062 -P000049 P000073 -P000020 -P000024 -P000021 -P000052 P000036 +S000123 -P000037 -P000056 -P000023 P000046 P000084 P000079 P000002 -P000015 P000066 -P000005 -P000042 P000099 -P000078 -P000067 -P000012 P000080 P000059 P000103 -P000048 -P000051 -P000006 -P000050 -P000055 -P000030 -P000075 -P000013 P000001 -P000047 P000071 P000081 -P000088 -P000025 P000058 -P000032 -P000065 -P000061 -P000010 -P000053 P000017 -P000039 P000018 -P000007 -P000014 P000004 P000069 P000072 -P000011 -P000041 P000045 P000029 -P000043 P000026 P000003 -P000035 P000100 -P000101 -P000008 P000070 -P000016 -P000040 P000027 -P000038 -P100052 P000057 -P000019 -P000034 P000054 P000062 -P000049 P000073 -P000064 -P000020 -P000024 P000028 -P000021 -P000052 P000044 P000036 +S000124 -P000037 -P000056 -P000023 P000046 P000084 P000079 P000002 -P000015 P000066 -P000005 -P000042 P000099 -P000078 -P000067 -P000012 P000080 P000059 P000103 -P000051 -P000006 -P000050 -P000055 -P000030 -P000075 -P000013 P000001 -P000044 P000071 P000081 -P000088 -P000025 P000058 -P000032 -P000065 P000009 -P000061 P000017 -P000053 -P000039 P000018 -P000007 -P000014 P000004 P000069 P000072 -P000011 -P000041 P000029 -P000043 P000026 P000003 -P000035 -P000060 P000100 -P000101 -P000008 P000070 -P000016 -P000040 P000027 -P000038 P000047 -P100052 P000057 -P000019 -P000034 P000054 -P000036 P000062 -P000049 P000073 -P000064 -P000020 -P000024 -P000045 P000028 P000048 -P000021 -P000052 +S000125 -P000057 -P000037 -P000023 P000084 P000079 P000002 -P000042 P000099 -P000078 P000007 P000080 P000059 P000005 P000103 -P000048 -P000051 -P000075 -P000050 P000001 P000035 -P000047 P000013 P000081 -P000058 P000012 P000061 -P000025 P000032 P000009 P000033 -P000039 P000018 P000011 P000030 P000004 P000031 -P000041 P000045 P000014 P000029 -P000043 P000026 P000003 P000010 -P000060 P000100 -P000101 P000034 -P000016 -P000040 P000027 -P000038 P000008 -P100052 -P000019 P000054 P000053 P000006 P000082 P000062 -P000049 P000073 -P000020 -P000024 P000028 -P000021 P000076 -P000052 P000088 P000044 P000036 -P000022 +S000126 -P000057 -P000037 -P000023 P000046 P000084 P000079 P000002 -P000042 P000099 -P000078 P000007 P000080 P000059 P000005 P000103 -P000048 -P000051 -P000075 -P000050 P000001 -P000044 P000035 P000013 P000081 -P000058 P000012 P000061 -P000025 P000032 P000009 P000033 -P000039 P000018 P000011 P000030 P000004 P000031 -P000041 P000014 P000029 -P000043 P000026 P000003 P000010 -P000060 P000100 -P000101 P000034 -P000016 -P000040 P000027 P000047 -P000038 -P100052 P000008 -P000019 P000054 P000053 -P000036 P000006 P000082 P000062 -P000049 P000073 -P000020 -P000024 -P000045 P000028 -P000021 P000076 -P000052 P000088 -P000022 +S000127 -P000057 -P000037 P000046 P000084 P000077 P000079 P000002 P000016 P000066 -P000042 P000099 P000055 P000091 -P000078 P000007 P000080 P000059 P000005 P000103 -P000048 -P000051 P000019 -P000050 P000001 P000056 P000035 -P000047 P000071 P000013 P000023 P000081 P000111 P000012 P000061 P000032 P000009 P000017 P000033 -P000039 P000018 P000011 P000030 P000004 P000022 P000031 P000069 P000072 P000014 P000029 -P000043 P000026 P000003 P000010 P000021 -P000060 P000100 -P000101 P000034 P000070 -P000040 P000027 -P000038 P000008 -P100052 P000054 P000020 P000053 P000024 P000006 P000063 P000062 -P000049 P000073 P000082 P000028 P000064 P000076 P000025 -P000052 P000088 P000036 +S000128 -P000057 P000011 P000030 P000084 P000079 P000002 P000031 P000004 P000029 P000003 P000099 P000010 -P000060 P000100 -P000078 P000007 -P000101 P000080 P000059 P000034 P000005 -P000040 P000103 -P000048 -P000051 -P100052 -P000050 P000054 P000053 P000001 P000006 P000082 -P000049 P000073 P000035 -P000047 P000013 P000081 P000028 P000076 P000012 P000061 P000032 -P000052 P000088 P000009 P000044 P000033 P000036 -P000039 +S000129 -P000057 P000011 P000030 -P000023 P000084 P000079 P000002 P000004 P000031 -P000046 P000003 P000099 P000010 -P000060 P000100 -P000078 P000007 -P000101 P000080 P000005 P000034 -P000016 -P000040 P000103 -P000048 P000038 -P000051 -P100052 -P000075 -P000019 -P000050 P000054 P000053 P000001 P000006 P000037 P000082 -P000049 P000073 P000035 -P000047 -P000022 -P000020 -P000024 P000013 P000081 P000028 -P000021 -P000058 P000076 P000012 -P000025 P000032 -P000052 P000088 P000009 P000033 P000036 -P000039 +S000130 -P000007 -P000023 P000084 -P000014 P000002 P000004 -P000015 -P000011 -P000005 P000003 P000099 -P000035 -P000060 P000100 -P000078 -P000067 -P000101 -P000012 -P000008 -P000016 -P000040 -P000048 -P000051 -P100052 -P000006 -P000034 -P000050 -P000030 -P000055 -P000075 -P000013 P000001 -P000049 P000073 -P000047 -P000024 -P000088 -P000025 -P000052 P000009 -P000061 -P000010 -P000053 P000036 -P000039 +S000131 -P000037 P000049 P000046 P000084 P000090 P000079 P000002 P000052 P000066 P000086 P000099 P000055 -P000078 P000007 P000080 P000059 P000005 P000103 -P000075 P000043 P000001 -P000044 P000056 P000035 P000071 P000013 P000023 P000111 P000081 P000012 P000061 P000032 P000058 -P000065 P000009 P000017 P000033 -P000039 P000018 P000011 P000030 P000004 P000031 P000069 P000072 P000014 P000029 P000041 P000026 P000003 P000010 P000100 -P000060 -P000101 P000034 P000070 -P000016 -P000040 P000027 -P000038 P000047 -P100052 P000057 P000008 -P000019 P000054 P000053 P000024 -P000036 P000006 P000063 P000082 P000062 P000073 -P000020 -P000045 P000028 P000064 P000048 P000051 -P000021 P000076 P000050 P000025 P000088 P000042 -P000022 +S000132 -P000057 -P000037 -P000023 P000046 P000084 P000079 P000002 -P000111 -P000042 P000099 -P000078 P000007 P000080 P000059 P000005 P000103 -P000051 -P000075 P000001 -P000044 P000035 P000013 P000081 -P000058 P000012 P000061 -P000025 P000032 P000009 P000033 -P000039 P000018 P000011 P000030 -P000017 P000004 P000031 -P000070 -P000041 P000014 P000029 -P000043 P000026 P000003 P000010 -P000060 P000100 -P000101 -P000069 P000034 -P000016 -P000040 P000027 -P000038 P000008 -P100052 P000047 -P000019 P000054 -P000072 P000053 -P000036 P000006 P000082 P000062 -P000049 P000073 -P000020 -P000024 -P000045 P000028 P000048 -P000021 P000076 -P000052 P000088 -P000071 -P000022 +S000133 -P000057 -P000037 -P000023 P000046 P000084 P000079 P000002 -P000111 -P000086 -P000042 P000099 P000055 -P000078 P000007 P000080 P000059 P000005 P000103 -P000075 P000001 -P000066 -P000044 P000056 P000035 P000065 P000013 P000081 -P000058 P000012 -P000025 P000032 P000009 P000033 -P000039 P000011 -P000029 P000030 -P000017 P000004 P000031 -P000070 -P000041 -P000027 -P000043 P000003 P000010 -P000060 P000100 -P000101 -P000069 -P000124 -P000026 P000034 -P000016 -P000040 -P000038 P000047 -P100052 -P000072 -P000019 P000054 -P000068 P000053 -P000036 P000006 P000063 P000082 -P000049 -P000018 P000073 -P000020 -P000024 -P000045 P000028 P000064 P000048 P000051 -P000021 P000076 P000050 -P000052 P000088 -P000071 -P000022 +S000134 -P000057 -P000023 P000084 P000079 P000002 -P000046 -P000111 P000099 P000055 -P000078 P000007 P000080 P000059 P000005 P000103 -P000048 P000038 -P000051 -P000075 -P000050 P000043 P000001 -P000066 -P000044 P000056 P000035 -P000047 P000013 P000081 -P000058 P000012 -P000025 P000032 P000009 P000033 -P000039 P000011 -P000029 P000030 -P000017 P000004 P000031 -P000070 -P000027 P000041 P000003 P000010 -P000060 P000100 -P000101 -P000069 -P000124 -P000026 P000034 -P000016 -P000040 -P000072 -P100052 -P000019 P000054 -P000068 P000053 P000006 P000037 P000063 -P000049 -P000018 P000073 P000082 -P000020 -P000024 -P000045 P000028 P000064 -P000021 P000076 -P000052 P000088 P000042 -P000071 P000036 -P000022 +S000135 -P000057 -P000023 P000084 P000002 -P000046 -P000111 P000099 -P000078 P000007 P000059 P000005 -P000028 -P000048 P000038 -P000051 -P000055 -P000050 -P000075 P000043 P000001 -P000066 -P000044 P000056 -P000054 P000035 -P000047 P000013 -P000058 P000012 -P000025 P000032 P000009 -P000053 P000033 -P000039 P000011 -P000029 P000030 -P000017 P000004 P000031 -P000082 -P000070 P000014 -P000027 P000041 P000003 P000010 -P000060 P000100 -P000101 -P000069 -P000124 -P000026 P000034 -P000016 -P000040 P000008 -P100052 -P000019 -P000072 -P000068 P000006 P000037 -P000049 -P000018 P000073 -P000020 -P000024 -P000045 -P000021 -P000052 P000088 P000042 -P000071 P000036 -P000022 +S000136 -P000057 P000011 P000084 -P000017 P000002 P000004 -P000111 -P000070 -P000027 -P000059 P000003 P000099 -P000035 P000010 -P000060 -P000031 P000100 P000007 -P000078 -P000101 -P000069 -P000124 -P000026 P000005 -P000016 -P000040 -P000072 -P100052 -P000055 -P000034 -P000030 -P000075 -P000068 P000001 -P000066 P000056 P000006 P000073 -P000018 -P000054 P000013 -P000058 P000012 -P000025 -P000052 -P000065 P000009 -P000053 -P000071 -P000039 +S000137 -P000057 P000011 P000084 P000033 -P000017 P000031 P000002 P000004 -P000111 -P000070 -P000027 -P000059 P000003 P000099 -P000035 P000010 -P000060 P000100 -P000078 P000007 -P000101 -P000069 -P000124 -P000026 P000005 -P000016 -P000040 -P000072 -P100052 -P000055 -P000019 -P000030 -P000034 -P000068 -P000075 P000001 -P000066 P000006 P000073 -P000018 -P000054 -P000022 -P000020 P000013 -P000021 -P000058 P000012 P000032 -P000025 -P000052 -P000065 P000009 -P000053 -P000071 -P000039 +S000138 -P000040 P000011 -P100052 P000084 P000001 P000006 P000002 P000004 P000073 P000013 P000012 P000003 P000099 P000010 -P000060 P000100 P000007 P000009 -P000101 P000005 -P000039 +S000147 -P000057 -P000023 P000084 P000079 P000002 P000066 -P000111 P000099 -P000078 P000007 P000080 P000059 P000005 P000103 -P000075 P000001 P000035 P000013 P000081 P000012 P000061 -P000025 P000032 P000009 P000033 -P000039 P000018 P000011 P000030 -P000017 P000004 P000031 -P000070 P000014 P000029 P000026 P000003 P000010 -P000060 P000100 -P000101 -P000069 P000034 -P000016 -P000040 P000027 P000008 -P100052 -P000072 -P000019 P000054 P000053 P000006 P000082 P000062 P000073 -P000020 -P000024 P000028 -P000021 P000076 P000088 -P000071 -P000022 +S000154 -P000057 -P000037 P000046 P000084 P000079 P000002 -P000015 P000016 P000066 -P000086 -P000042 P000099 -P000078 P000007 -P000067 P000080 P000005 -P000028 P000103 -P000055 P000019 P000001 -P000044 P000056 -P000054 P000035 P000071 P000013 P000023 P000081 P000111 P000012 P000061 P000032 P000009 P000017 -P000053 P000033 -P000039 P000018 P000011 P000030 P000004 P000022 P000031 P000069 P000072 -P000082 -P000041 P000029 P000014 -P000027 -P000043 P000003 P000010 P000021 -P000060 P000100 -P000101 -P000124 -P000026 P000034 P000070 -P000040 -P000038 P000008 -P100052 P000047 P000020 P000024 -P000036 P000006 P000063 P000062 -P000049 P000073 -P000045 P000064 P000048 P000051 P000050 P000025 -P000052 P000088 +S000156 -P000028 -P000038 -P100052 P000057 -P000055 P000018 -P000091 -P000080 P000062 -P000054 P000069 P000072 P000066 -P000077 P000071 P000081 P000029 -P000027 -P000043 P000026 -P000052 P000058 -P000078 -P000065 P000017 -P000053 -P000124 P000059 P000070 +S000158 -P000057 P000084 P000077 P000079 P000002 -P000046 P000016 P000066 P000099 P000055 P000091 -P000078 P000007 P000080 P000059 P000005 P000103 -P000048 P000038 -P000051 P000019 -P000050 P000001 P000056 P000035 -P000047 P000071 P000013 P000023 P000081 P000111 -P000058 P000012 P000061 P000032 P000009 P000017 P000033 -P000039 P000018 P000011 P000030 P000004 P000022 P000031 P000069 P000072 P000014 P000029 P000026 P000003 P000010 P000021 -P000060 P000100 -P000101 P000034 P000070 -P000040 P000027 P000008 -P100052 P000054 P000020 P000053 P000024 P000006 P000037 P000062 -P000049 P000063 P000073 P000082 P000028 P000064 P000076 P000025 -P000052 P000088 P000036 +S000161 -P100052 +S001103 -P000057 -P000037 -P000023 P000046 P000084 P000002 -P000015 -P000111 -P000042 P000099 -P000078 -P000067 P000005 -P000028 -P000051 -P000055 -P000075 -P000030 -P000013 P000001 -P000066 -P000044 -P000054 -P000088 P000012 -P000025 P000009 -P000053 -P000039 P000011 -P000007 -P000014 -P000017 P000004 -P000070 -P000041 -P000027 -P000043 P000003 -P000035 P000010 -P000060 P000100 -P000101 -P000069 -P000124 -P000026 -P000008 -P000016 -P000040 -P000038 P000047 -P100052 -P000034 -P000072 -P000068 -P000036 P000006 P000073 -P000018 -P000024 -P000045 P000048 P000050 -P000052 -P000071 diff --git a/get_properties.sh b/get_properties.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +for a in ~/apps/data/properties/*; do + echo -n $(basename "$a" | sed 's/\.md$//'); + grep "^name:" "$a" | sed 's/name://'; +done | grep -vE 'P000126|P000127|P000128' # duplicates + diff --git a/get_spaces.sh b/get_spaces.sh @@ -0,0 +1,19 @@ +#!/bin/bash + +for a in ~/apps/data/spaces/*; do + N=$(basename "$a"); + echo -n "$N"; + for P in $a/properties/* + do + PNAME=$(cat "$P" | grep '^property:' | cut -d' ' -f2) + PVAL=$(cat "$P" | grep '^value:' | cut -d' ' -f2) + if [ "$PVAL" = "false" ] + then + echo -n " -$PNAME" + else + echo -n " $PNAME" + fi + done + echo; +done + diff --git a/get_theorem.py b/get_theorem.py @@ -0,0 +1,78 @@ +#!/usr/bin/python + +import sys + +readif = False +readif_and = False +readthen = False +readthen_and = False + +ifs = [] +thens = [] + +def myfmt(x, pol=1): + if x[1] == ("true" if pol==1 else "false"): + return x[0] + else: + assert(x[1] == "false" if pol==1 else "true") + return "-" + x[0] + +def parse_one(l, pref=" "): + assert(l[0:len(pref)] == pref) + f = l[len(pref):].split(":") + p = f[0].strip() + pp = f[1].strip() + assert(p.startswith("P")) + assert(pp in ["true", "false"]) + return (p, pp) + +for l in sys.stdin.readlines(): + assert(l[-1] == '\n') + l = l[:-1] + if l == "if:": + assert(not readif) + assert(not readthen) + readif = True + continue + if l == " and:" and readif: + assert(not readif_and) + readif_and = True + continue + if l == "then:": + readif = False + assert(not readthen) + assert(len(ifs) > 0) + readthen = True + continue + if l == " and:" and readthen: + assert(not readthen_and) + readthen_and = True + continue + if not readif and not readthen: + continue + if readif: + if not readif_and: + assert(len(ifs) == 0) + ifs.append(parse_one(l)) + readif = False + else: + if not l.startswith(" "): + readif = False + else: + ifs.append(parse_one(l, pref=" - ")) + if readthen: + if not readthen_and: + assert(len(thens) == 0) + thens.append(parse_one(l)) + readthen = False + else: + if not l.startswith(" "): + readthen = False + else: + thens.append(parse_one(l, pref=" - ")) + +for t in thens: + print sys.argv[1], ' '.join([myfmt(x, pol=-1) for x in ifs]), myfmt(t) + + + diff --git a/get_theorems.sh b/get_theorems.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +for a in ~/apps/data/theorems/*; do + B=$(basename "$a" | sed 's/\.md//') + ./get_theorem.py "$B" <$a +done + diff --git a/list b/list @@ -0,0 +1,7705 @@ +NOT Weakly Lindelof (P000062) +Rothberger (P000068) +Cosmic (P000074) +NOT Cosmic (P000074) +Spectral space (P000075) +NOT Countably tight (P000081) +Almost Čech Complete (P000083) +NOT Almost Čech Complete (P000083) +Ascoli (P000085) +NOT Ascoli (P000085) +NOT Groupable topology (P000087) +Fixed Point Property (P000089) +NOT Fixed Point Property (P000089) +NOT Alexandrov (P000090) +Moving Off Property (P000092) +NOT Moving Off Property (P000092) +Locally countable (P000093) +NOT Locally countable (P000093) +q Space (P000094) +NOT q Space (P000094) +I-tactic Banach-Mazur (P000095) +NOT I-tactic Banach-Mazur (P000095) +II-tactic Banach-Mazur (P000096) +NOT II-tactic Banach-Mazur (P000096) +Homotopy Dense (P000097) +NOT Homotopy Dense (P000097) +$k_omega$ (P000098) +NOT $k_omega$ (P000098) +Anti-Hausdorff (P000101) +semimetrizable (P000102) +NOT semimetrizable (P000102) +K Analytic (P000104) +NOT K Analytic (P000104) +Angelic (P000105) +NOT Angelic (P000105) +Strictly Angelic (P000106) +NOT Strictly Angelic (P000106) +Pointwise Countable Type (P000107) +NOT Pointwise Countable Type (P000107) +Locally Čech Complete (P000108) +NOT Locally Čech Complete (P000108) +Countable Type (P000109) +NOT Countable Type (P000109) +Has A Compact Resolution (P000110) +NOT Has A Compact Resolution (P000110) +Submetrizable (P000112) +NOT Submetrizable (P000112) +k$\mathbb{R}$ Space (P000113) +NOT k$\mathbb{R}$ Space (P000113) +$\aleph_0$ (P000114) +NOT $\aleph_0$ (P000114) +Weakly K Analytic (P000115) +NOT Weakly K Analytic (P000115) +Pseudocomplete (P000116) +NOT Pseudocomplete (P000116) +M Space (P000117) +NOT M Space (P000117) +Pseudo-Polish (P000118) +NOT Pseudo-Polish (P000118) +Z-Compact (P000119) +NOT Z-Compact (P000119) +r Space (P000120) +NOT r Space (P000120) +Pseudo-Metrizable (P000121) +NOT Pseudo-Metrizable (P000121) +S space (P000122) +NOT S space (P000122) +Locally Euclidean (P000123) +NOT Locally Euclidean (P000123) +Topological manifold (P000124) +$k$-Lindelöf (P000125) +NOT $k$-Lindelöf (P000125) +"$T_0$" (P000001) AND NOT Sober (P000073) +"$T_0$" (P000001) AND Trivial (P100052) +NOT "$T_0$" (P000001) AND "$T_3$" (P000005) +NOT "$T_0$" (P000001) AND NOT Semiregular (P000010) +NOT "$T_0$" (P000001) AND NOT Lindelof (P000018) +NOT "$T_0$" (P000001) AND NOT Weakly Countably Compact (P000021) +NOT "$T_0$" (P000001) AND NOT Countable chain condition (P000029) +NOT "$T_0$" (P000001) AND NOT Connected (P000036) +NOT "$T_0$" (P000001) AND NOT Locally Connected (P000041) +NOT "$T_0$" (P000001) AND Biconnected (P000044) +NOT "$T_0$" (P000001) AND Has Dispersion Point (P000045) +NOT "$T_0$" (P000001) AND Totally Path Disconnected (P000046) +NOT "$T_0$" (P000001) AND NOT Smaller or same as the continuum (P000059) +NOT "$T_0$" (P000001) AND Čech complete (P000063) +NOT "$T_0$" (P000001) AND NOT Čech complete (P000063) +NOT "$T_0$" (P000001) AND Baire (P000064) +NOT "$T_0$" (P000001) AND Continuum-sized (P000065) +NOT "$T_0$" (P000001) AND NOT Menger (P000066) +NOT "$T_0$" (P000001) AND NOT Rothberger (P000068) +NOT "$T_0$" (P000001) AND NOT Strategic Menger (P000069) +NOT "$T_0$" (P000001) AND NOT Markov Menger (P000070) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_0$" (P000001) AND NOT 2-Markov Menger (P000072) +NOT "$T_0$" (P000001) AND Proximal (P000076) +NOT "$T_0$" (P000001) AND NOT Proximal (P000076) +NOT "$T_0$" (P000001) AND Corson compact (P000077) +NOT "$T_0$" (P000001) AND NOT Corson compact (P000077) +NOT "$T_0$" (P000001) AND Finite (P000078) +NOT "$T_0$" (P000001) AND NOT sequential (P000079) +NOT "$T_0$" (P000001) AND NOT Fréchet Urysohn (P000080) +NOT "$T_0$" (P000001) AND Locally metrizable (P000082) +NOT "$T_0$" (P000001) AND NOT Locally metrizable (P000082) +NOT "$T_0$" (P000001) AND homogenous (P000086) +NOT "$T_0$" (P000001) AND NOT homogenous (P000086) +NOT "$T_0$" (P000001) AND Groupable topology (P000087) +NOT "$T_0$" (P000001) AND Collectionwise normal (P000088) +NOT "$T_0$" (P000001) AND Alexandrov (P000090) +NOT "$T_0$" (P000001) AND Eberlein compact (P000091) +NOT "$T_0$" (P000001) AND NOT Eberlein compact (P000091) +NOT "$T_0$" (P000001) AND NOT Anti-Hausdorff (P000101) +"$T_1$" (P000002) AND NOT Sober (P000073) +"$T_1$" (P000002) AND NOT locally Hausdorff (P000084) +"$T_1$" (P000002) AND NOT Sequentially Hausdorff (P000099) +"$T_1$" (P000002) AND NOT KC (P000100) +"$T_1$" (P000002) AND NOT Strongly KC (P000103) +"$T_1$" (P000002) AND Trivial (P100052) +NOT "$T_1$" (P000002) AND "$T_3$" (P000005) +NOT "$T_1$" (P000002) AND NOT Semiregular (P000010) +NOT "$T_1$" (P000002) AND Totally Path Disconnected (P000046) +NOT "$T_1$" (P000002) AND NOT Smaller or same as the continuum (P000059) +NOT "$T_1$" (P000002) AND Čech complete (P000063) +NOT "$T_1$" (P000002) AND NOT Čech complete (P000063) +NOT "$T_1$" (P000002) AND Baire (P000064) +NOT "$T_1$" (P000002) AND Continuum-sized (P000065) +NOT "$T_1$" (P000002) AND Sober (P000073) +NOT "$T_1$" (P000002) AND Proximal (P000076) +NOT "$T_1$" (P000002) AND NOT Proximal (P000076) +NOT "$T_1$" (P000002) AND Corson compact (P000077) +NOT "$T_1$" (P000002) AND NOT Corson compact (P000077) +NOT "$T_1$" (P000002) AND NOT sequential (P000079) +NOT "$T_1$" (P000002) AND NOT Fréchet Urysohn (P000080) +NOT "$T_1$" (P000002) AND Locally metrizable (P000082) +NOT "$T_1$" (P000002) AND NOT Locally metrizable (P000082) +NOT "$T_1$" (P000002) AND homogenous (P000086) +NOT "$T_1$" (P000002) AND Groupable topology (P000087) +NOT "$T_1$" (P000002) AND Collectionwise normal (P000088) +NOT "$T_1$" (P000002) AND Alexandrov (P000090) +NOT "$T_1$" (P000002) AND Eberlein compact (P000091) +NOT "$T_1$" (P000002) AND NOT Eberlein compact (P000091) +NOT "$T_1$" (P000002) AND NOT Anti-Hausdorff (P000101) +"$T_2$" (P000003) AND Hyperconnected (P000039) +"$T_2$" (P000003) AND Strongly Connected (P000060) +"$T_2$" (P000003) AND NOT Strongly KC (P000103) +"$T_2$" (P000003) AND Trivial (P100052) +NOT "$T_2$" (P000003) AND "$T_3$" (P000005) +NOT "$T_2$" (P000003) AND NOT Semiregular (P000010) +NOT "$T_2$" (P000003) AND NOT Smaller or same as the continuum (P000059) +NOT "$T_2$" (P000003) AND Čech complete (P000063) +NOT "$T_2$" (P000003) AND NOT Čech complete (P000063) +NOT "$T_2$" (P000003) AND Baire (P000064) +NOT "$T_2$" (P000003) AND Continuum-sized (P000065) +NOT "$T_2$" (P000003) AND Sober (P000073) +NOT "$T_2$" (P000003) AND Proximal (P000076) +NOT "$T_2$" (P000003) AND NOT Proximal (P000076) +NOT "$T_2$" (P000003) AND Corson compact (P000077) +NOT "$T_2$" (P000003) AND NOT Corson compact (P000077) +NOT "$T_2$" (P000003) AND NOT sequential (P000079) +NOT "$T_2$" (P000003) AND NOT Fréchet Urysohn (P000080) +NOT "$T_2$" (P000003) AND Locally metrizable (P000082) +NOT "$T_2$" (P000003) AND NOT Locally metrizable (P000082) +NOT "$T_2$" (P000003) AND locally Hausdorff (P000084) +NOT "$T_2$" (P000003) AND homogenous (P000086) +NOT "$T_2$" (P000003) AND Groupable topology (P000087) +NOT "$T_2$" (P000003) AND Collectionwise normal (P000088) +NOT "$T_2$" (P000003) AND Alexandrov (P000090) +NOT "$T_2$" (P000003) AND Eberlein compact (P000091) +NOT "$T_2$" (P000003) AND NOT Eberlein compact (P000091) +NOT "$T_2$" (P000003) AND Sequentially Hausdorff (P000099) +NOT "$T_2$" (P000003) AND KC (P000100) +NOT "$T_2$" (P000003) AND NOT Anti-Hausdorff (P000101) +NOT "$T_2$" (P000003) AND Strongly KC (P000103) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Hyperconnected (P000039) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Strongly Connected (P000060) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Strongly KC (P000103) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Trivial (P100052) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND "$T_3$" (P000005) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Smaller or same as the continuum (P000059) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Čech complete (P000063) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Čech complete (P000063) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Baire (P000064) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Continuum-sized (P000065) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Proximal (P000076) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Proximal (P000076) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Corson compact (P000077) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Corson compact (P000077) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT sequential (P000079) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Fréchet Urysohn (P000080) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Locally metrizable (P000082) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Locally metrizable (P000082) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND homogenous (P000086) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Groupable topology (P000087) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Collectionwise normal (P000088) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Alexandrov (P000090) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Eberlein compact (P000091) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Eberlein compact (P000091) +"$T_3$" (P000005) AND NOT Countably metacompact (P000033) +"$T_3$" (P000005) AND Hyperconnected (P000039) +"$T_3$" (P000005) AND Ultraconnected (P000040) +"$T_3$" (P000005) AND NOT Sober (P000073) +"$T_3$" (P000005) AND NOT locally Hausdorff (P000084) +"$T_3$" (P000005) AND NOT Sequentially Hausdorff (P000099) +"$T_3$" (P000005) AND NOT KC (P000100) +"$T_3$" (P000005) AND NOT Strongly KC (P000103) +"$T_3$" (P000005) AND Trivial (P100052) +NOT "$T_3$" (P000005) AND NOT Smaller or same as the continuum (P000059) +NOT "$T_3$" (P000005) AND Čech complete (P000063) +NOT "$T_3$" (P000005) AND NOT Čech complete (P000063) +NOT "$T_3$" (P000005) AND Baire (P000064) +NOT "$T_3$" (P000005) AND Continuum-sized (P000065) +NOT "$T_3$" (P000005) AND Proximal (P000076) +NOT "$T_3$" (P000005) AND NOT Proximal (P000076) +NOT "$T_3$" (P000005) AND Corson compact (P000077) +NOT "$T_3$" (P000005) AND NOT Corson compact (P000077) +NOT "$T_3$" (P000005) AND NOT sequential (P000079) +NOT "$T_3$" (P000005) AND NOT Fréchet Urysohn (P000080) +NOT "$T_3$" (P000005) AND Locally metrizable (P000082) +NOT "$T_3$" (P000005) AND NOT Locally metrizable (P000082) +NOT "$T_3$" (P000005) AND homogenous (P000086) +NOT "$T_3$" (P000005) AND Groupable topology (P000087) +NOT "$T_3$" (P000005) AND Collectionwise normal (P000088) +NOT "$T_3$" (P000005) AND Alexandrov (P000090) +NOT "$T_3$" (P000005) AND Eberlein compact (P000091) +NOT "$T_3$" (P000005) AND NOT Eberlein compact (P000091) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Countably metacompact (P000033) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Cozero complemented (P000061) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Strongly KC (P000103) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Trivial (P100052) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Smaller or same as the continuum (P000059) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Čech complete (P000063) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Čech complete (P000063) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Baire (P000064) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Continuum-sized (P000065) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Proximal (P000076) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Proximal (P000076) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Corson compact (P000077) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Corson compact (P000077) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT sequential (P000079) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Fréchet Urysohn (P000080) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Locally metrizable (P000082) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Locally metrizable (P000082) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND homogenous (P000086) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Groupable topology (P000087) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Collectionwise normal (P000088) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Alexandrov (P000090) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Eberlein compact (P000091) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Eberlein compact (P000091) +"$T_4$" (P000007) AND NOT Countably paracompact (P000032) +"$T_4$" (P000007) AND NOT Countably metacompact (P000033) +"$T_4$" (P000007) AND NOT Cozero complemented (P000061) +"$T_4$" (P000007) AND NOT Collectionwise normal (P000088) +"$T_4$" (P000007) AND NOT Strongly KC (P000103) +"$T_4$" (P000007) AND Trivial (P100052) +NOT "$T_4$" (P000007) AND NOT Smaller or same as the continuum (P000059) +NOT "$T_4$" (P000007) AND NOT Čech complete (P000063) +NOT "$T_4$" (P000007) AND Continuum-sized (P000065) +NOT "$T_4$" (P000007) AND Proximal (P000076) +NOT "$T_4$" (P000007) AND NOT Proximal (P000076) +NOT "$T_4$" (P000007) AND Corson compact (P000077) +NOT "$T_4$" (P000007) AND NOT Corson compact (P000077) +NOT "$T_4$" (P000007) AND NOT sequential (P000079) +NOT "$T_4$" (P000007) AND NOT Fréchet Urysohn (P000080) +NOT "$T_4$" (P000007) AND Locally metrizable (P000082) +NOT "$T_4$" (P000007) AND NOT Locally metrizable (P000082) +NOT "$T_4$" (P000007) AND homogenous (P000086) +NOT "$T_4$" (P000007) AND Groupable topology (P000087) +NOT "$T_4$" (P000007) AND Collectionwise normal (P000088) +NOT "$T_4$" (P000007) AND Alexandrov (P000090) +NOT "$T_4$" (P000007) AND Eberlein compact (P000091) +NOT "$T_4$" (P000007) AND NOT Eberlein compact (P000091) +"$T_5$" (P000008) AND NOT Countably paracompact (P000032) +"$T_5$" (P000008) AND NOT Countably metacompact (P000033) +"$T_5$" (P000008) AND NOT Smaller or same as the continuum (P000059) +"$T_5$" (P000008) AND NOT Cozero complemented (P000061) +"$T_5$" (P000008) AND NOT Proximal (P000076) +"$T_5$" (P000008) AND NOT Corson compact (P000077) +"$T_5$" (P000008) AND NOT sequential (P000079) +"$T_5$" (P000008) AND NOT Fréchet Urysohn (P000080) +"$T_5$" (P000008) AND Groupable topology (P000087) +"$T_5$" (P000008) AND NOT Collectionwise normal (P000088) +"$T_5$" (P000008) AND NOT Eberlein compact (P000091) +"$T_5$" (P000008) AND NOT Strongly KC (P000103) +"$T_5$" (P000008) AND Trivial (P100052) +NOT "$T_5$" (P000008) AND Discrete (P000052) +NOT "$T_5$" (P000008) AND Metrizable (P000053) +NOT "$T_5$" (P000008) AND Completely metrizable (P000055) +NOT "$T_5$" (P000008) AND NOT Smaller or same as the continuum (P000059) +NOT "$T_5$" (P000008) AND NOT Čech complete (P000063) +NOT "$T_5$" (P000008) AND Continuum-sized (P000065) +NOT "$T_5$" (P000008) AND Proximal (P000076) +NOT "$T_5$" (P000008) AND Corson compact (P000077) +NOT "$T_5$" (P000008) AND Locally metrizable (P000082) +NOT "$T_5$" (P000008) AND homogenous (P000086) +NOT "$T_5$" (P000008) AND Groupable topology (P000087) +NOT "$T_5$" (P000008) AND Alexandrov (P000090) +NOT "$T_5$" (P000008) AND Eberlein compact (P000091) +Completely Hausdorff (P000009) AND NOT Strongly KC (P000103) +Completely Hausdorff (P000009) AND Trivial (P100052) +NOT Completely Hausdorff (P000009) AND NOT Smaller or same as the continuum (P000059) +NOT Completely Hausdorff (P000009) AND Čech complete (P000063) +NOT Completely Hausdorff (P000009) AND NOT Čech complete (P000063) +NOT Completely Hausdorff (P000009) AND Baire (P000064) +NOT Completely Hausdorff (P000009) AND Continuum-sized (P000065) +NOT Completely Hausdorff (P000009) AND Proximal (P000076) +NOT Completely Hausdorff (P000009) AND NOT Proximal (P000076) +NOT Completely Hausdorff (P000009) AND Corson compact (P000077) +NOT Completely Hausdorff (P000009) AND NOT Corson compact (P000077) +NOT Completely Hausdorff (P000009) AND NOT sequential (P000079) +NOT Completely Hausdorff (P000009) AND NOT Fréchet Urysohn (P000080) +NOT Completely Hausdorff (P000009) AND Locally metrizable (P000082) +NOT Completely Hausdorff (P000009) AND NOT Locally metrizable (P000082) +NOT Completely Hausdorff (P000009) AND homogenous (P000086) +NOT Completely Hausdorff (P000009) AND Groupable topology (P000087) +NOT Completely Hausdorff (P000009) AND Collectionwise normal (P000088) +NOT Completely Hausdorff (P000009) AND Alexandrov (P000090) +NOT Completely Hausdorff (P000009) AND Eberlein compact (P000091) +NOT Completely Hausdorff (P000009) AND NOT Eberlein compact (P000091) +Semiregular (P000010) AND NOT Countably metacompact (P000033) +NOT Semiregular (P000010) AND Normal (P000013) +NOT Semiregular (P000010) AND Completely normal (P000014) +NOT Semiregular (P000010) AND Compact (P000016) +NOT Semiregular (P000010) AND Countably compact (P000019) +NOT Semiregular (P000010) AND Sequentially Compact (P000020) +NOT Semiregular (P000010) AND Weakly Countably Compact (P000021) +NOT Semiregular (P000010) AND Locally Compact (P000023) +NOT Semiregular (P000010) AND Strongly Locally Compact (P000024) +NOT Semiregular (P000010) AND "$\\sigma$-Locally Compact" (P000025) +NOT Semiregular (P000010) AND NOT Countable chain condition (P000029) +NOT Semiregular (P000010) AND Paracompact (P000030) +NOT Semiregular (P000010) AND Countably paracompact (P000032) +NOT Semiregular (P000010) AND Fully normal (P000034) +NOT Semiregular (P000010) AND Hyperconnected (P000039) +NOT Semiregular (P000010) AND Ultraconnected (P000040) +NOT Semiregular (P000010) AND Extremally Disconnected (P000049) +NOT Semiregular (P000010) AND NOT Smaller or same as the continuum (P000059) +NOT Semiregular (P000010) AND Strongly Connected (P000060) +NOT Semiregular (P000010) AND Čech complete (P000063) +NOT Semiregular (P000010) AND NOT Čech complete (P000063) +NOT Semiregular (P000010) AND Baire (P000064) +NOT Semiregular (P000010) AND Continuum-sized (P000065) +NOT Semiregular (P000010) AND NOT Sober (P000073) +NOT Semiregular (P000010) AND Proximal (P000076) +NOT Semiregular (P000010) AND NOT Proximal (P000076) +NOT Semiregular (P000010) AND Corson compact (P000077) +NOT Semiregular (P000010) AND NOT Corson compact (P000077) +NOT Semiregular (P000010) AND Finite (P000078) +NOT Semiregular (P000010) AND NOT sequential (P000079) +NOT Semiregular (P000010) AND NOT Fréchet Urysohn (P000080) +NOT Semiregular (P000010) AND Locally metrizable (P000082) +NOT Semiregular (P000010) AND NOT Locally metrizable (P000082) +NOT Semiregular (P000010) AND NOT locally Hausdorff (P000084) +NOT Semiregular (P000010) AND homogenous (P000086) +NOT Semiregular (P000010) AND Groupable topology (P000087) +NOT Semiregular (P000010) AND Collectionwise normal (P000088) +NOT Semiregular (P000010) AND Alexandrov (P000090) +NOT Semiregular (P000010) AND Eberlein compact (P000091) +NOT Semiregular (P000010) AND NOT Eberlein compact (P000091) +NOT Semiregular (P000010) AND NOT Sequentially Hausdorff (P000099) +NOT Semiregular (P000010) AND NOT KC (P000100) +NOT Semiregular (P000010) AND NOT Strongly KC (P000103) +NOT Semiregular (P000010) AND Hemicompact (P000111) +NOT Semiregular (P000010) AND Trivial (P100052) +Regular (P000011) AND NOT Countably metacompact (P000033) +NOT Regular (P000011) AND NOT Smaller or same as the continuum (P000059) +NOT Regular (P000011) AND Čech complete (P000063) +NOT Regular (P000011) AND NOT Čech complete (P000063) +NOT Regular (P000011) AND Baire (P000064) +NOT Regular (P000011) AND Continuum-sized (P000065) +NOT Regular (P000011) AND Proximal (P000076) +NOT Regular (P000011) AND NOT Proximal (P000076) +NOT Regular (P000011) AND Corson compact (P000077) +NOT Regular (P000011) AND NOT Corson compact (P000077) +NOT Regular (P000011) AND NOT sequential (P000079) +NOT Regular (P000011) AND NOT Fréchet Urysohn (P000080) +NOT Regular (P000011) AND Locally metrizable (P000082) +NOT Regular (P000011) AND NOT Locally metrizable (P000082) +NOT Regular (P000011) AND homogenous (P000086) +NOT Regular (P000011) AND Groupable topology (P000087) +NOT Regular (P000011) AND Collectionwise normal (P000088) +NOT Regular (P000011) AND Alexandrov (P000090) +NOT Regular (P000011) AND Eberlein compact (P000091) +NOT Regular (P000011) AND NOT Eberlein compact (P000091) +NOT Regular (P000011) AND Trivial (P100052) +Completely regular (P000012) AND NOT Countably metacompact (P000033) +NOT Completely regular (P000012) AND Zero Dimensional (P000050) +NOT Completely regular (P000012) AND NOT Smaller or same as the continuum (P000059) +NOT Completely regular (P000012) AND Čech complete (P000063) +NOT Completely regular (P000012) AND NOT Čech complete (P000063) +NOT Completely regular (P000012) AND Baire (P000064) +NOT Completely regular (P000012) AND Continuum-sized (P000065) +NOT Completely regular (P000012) AND Proximal (P000076) +NOT Completely regular (P000012) AND NOT Proximal (P000076) +NOT Completely regular (P000012) AND Corson compact (P000077) +NOT Completely regular (P000012) AND NOT Corson compact (P000077) +NOT Completely regular (P000012) AND NOT sequential (P000079) +NOT Completely regular (P000012) AND NOT Fréchet Urysohn (P000080) +NOT Completely regular (P000012) AND Locally metrizable (P000082) +NOT Completely regular (P000012) AND NOT Locally metrizable (P000082) +NOT Completely regular (P000012) AND homogenous (P000086) +NOT Completely regular (P000012) AND Groupable topology (P000087) +NOT Completely regular (P000012) AND Collectionwise normal (P000088) +NOT Completely regular (P000012) AND Alexandrov (P000090) +NOT Completely regular (P000012) AND Eberlein compact (P000091) +NOT Completely regular (P000012) AND NOT Eberlein compact (P000091) +NOT Completely regular (P000012) AND Trivial (P100052) +Normal (P000013) AND NOT Collectionwise normal (P000088) +NOT Normal (P000013) AND NOT Smaller or same as the continuum (P000059) +NOT Normal (P000013) AND NOT Čech complete (P000063) +NOT Normal (P000013) AND Continuum-sized (P000065) +NOT Normal (P000013) AND Proximal (P000076) +NOT Normal (P000013) AND NOT Proximal (P000076) +NOT Normal (P000013) AND Corson compact (P000077) +NOT Normal (P000013) AND NOT Corson compact (P000077) +NOT Normal (P000013) AND NOT sequential (P000079) +NOT Normal (P000013) AND NOT Fréchet Urysohn (P000080) +NOT Normal (P000013) AND Locally metrizable (P000082) +NOT Normal (P000013) AND NOT Locally metrizable (P000082) +NOT Normal (P000013) AND homogenous (P000086) +NOT Normal (P000013) AND Groupable topology (P000087) +NOT Normal (P000013) AND Alexandrov (P000090) +NOT Normal (P000013) AND Eberlein compact (P000091) +NOT Normal (P000013) AND NOT Eberlein compact (P000091) +NOT Normal (P000013) AND Trivial (P100052) +Completely normal (P000014) AND NOT Smaller or same as the continuum (P000059) +Completely normal (P000014) AND NOT Proximal (P000076) +Completely normal (P000014) AND NOT Corson compact (P000077) +Completely normal (P000014) AND NOT sequential (P000079) +Completely normal (P000014) AND NOT Fréchet Urysohn (P000080) +Completely normal (P000014) AND Groupable topology (P000087) +Completely normal (P000014) AND NOT Collectionwise normal (P000088) +Completely normal (P000014) AND NOT Eberlein compact (P000091) +NOT Completely normal (P000014) AND Discrete (P000052) +NOT Completely normal (P000014) AND Metrizable (P000053) +NOT Completely normal (P000014) AND Completely metrizable (P000055) +NOT Completely normal (P000014) AND NOT Smaller or same as the continuum (P000059) +NOT Completely normal (P000014) AND NOT Čech complete (P000063) +NOT Completely normal (P000014) AND Continuum-sized (P000065) +NOT Completely normal (P000014) AND Proximal (P000076) +NOT Completely normal (P000014) AND Corson compact (P000077) +NOT Completely normal (P000014) AND Locally metrizable (P000082) +NOT Completely normal (P000014) AND homogenous (P000086) +NOT Completely normal (P000014) AND Groupable topology (P000087) +NOT Completely normal (P000014) AND Alexandrov (P000090) +NOT Completely normal (P000014) AND Eberlein compact (P000091) +NOT Completely normal (P000014) AND Trivial (P100052) +Perfectly Normal (P000015) AND NOT Paracompact (P000030) +Perfectly Normal (P000015) AND NOT Metacompact (P000031) +Perfectly Normal (P000015) AND NOT Countably paracompact (P000032) +Perfectly Normal (P000015) AND NOT Countably metacompact (P000033) +Perfectly Normal (P000015) AND NOT Fully normal (P000034) +Perfectly Normal (P000015) AND NOT Fully $T_4$ (P000035) +Perfectly Normal (P000015) AND Connected (P000036) +Perfectly Normal (P000015) AND Path Connected (P000037) +Perfectly Normal (P000015) AND Arc connected (P000038) +Perfectly Normal (P000015) AND Locally Connected (P000041) +Perfectly Normal (P000015) AND Locally Path Connected (P000042) +Perfectly Normal (P000015) AND Locally Arc Connected (P000043) +Perfectly Normal (P000015) AND Biconnected (P000044) +Perfectly Normal (P000015) AND Has Dispersion Point (P000045) +Perfectly Normal (P000015) AND NOT Totally Path Disconnected (P000046) +Perfectly Normal (P000015) AND NOT Totally Disconnected (P000047) +Perfectly Normal (P000015) AND NOT Totally Separated (P000048) +Perfectly Normal (P000015) AND NOT Zero Dimensional (P000050) +Perfectly Normal (P000015) AND Discrete (P000052) +Perfectly Normal (P000015) AND NOT Non-meager (P000056) +Perfectly Normal (P000015) AND NOT Smaller or same as the continuum (P000059) +Perfectly Normal (P000015) AND NOT Čech complete (P000063) +Perfectly Normal (P000015) AND NOT Baire (P000064) +Perfectly Normal (P000015) AND NOT Proximal (P000076) +Perfectly Normal (P000015) AND NOT Corson compact (P000077) +Perfectly Normal (P000015) AND Finite (P000078) +Perfectly Normal (P000015) AND NOT sequential (P000079) +Perfectly Normal (P000015) AND NOT Fréchet Urysohn (P000080) +Perfectly Normal (P000015) AND homogenous (P000086) +Perfectly Normal (P000015) AND Groupable topology (P000087) +Perfectly Normal (P000015) AND NOT Collectionwise normal (P000088) +Perfectly Normal (P000015) AND Alexandrov (P000090) +Perfectly Normal (P000015) AND NOT Eberlein compact (P000091) +Perfectly Normal (P000015) AND NOT Strongly KC (P000103) +Perfectly Normal (P000015) AND Trivial (P100052) +NOT Perfectly Normal (P000015) AND Discrete (P000052) +NOT Perfectly Normal (P000015) AND Metrizable (P000053) +NOT Perfectly Normal (P000015) AND Completely metrizable (P000055) +NOT Perfectly Normal (P000015) AND NOT Smaller or same as the continuum (P000059) +NOT Perfectly Normal (P000015) AND NOT Čech complete (P000063) +NOT Perfectly Normal (P000015) AND Proximal (P000076) +NOT Perfectly Normal (P000015) AND Corson compact (P000077) +NOT Perfectly Normal (P000015) AND Locally metrizable (P000082) +NOT Perfectly Normal (P000015) AND homogenous (P000086) +NOT Perfectly Normal (P000015) AND Groupable topology (P000087) +NOT Perfectly Normal (P000015) AND Alexandrov (P000090) +NOT Perfectly Normal (P000015) AND Eberlein compact (P000091) +Compact (P000016) AND NOT Smaller or same as the continuum (P000059) +Compact (P000016) AND NOT Čech complete (P000063) +Compact (P000016) AND NOT Rothberger (P000068) +Compact (P000016) AND Groupable topology (P000087) +NOT Compact (P000016) AND NOT Proximal (P000076) +NOT Compact (P000016) AND Corson compact (P000077) +NOT Compact (P000016) AND NOT Corson compact (P000077) +NOT Compact (P000016) AND NOT sequential (P000079) +NOT Compact (P000016) AND NOT Fréchet Urysohn (P000080) +NOT Compact (P000016) AND Eberlein compact (P000091) +NOT Compact (P000016) AND NOT Eberlein compact (P000091) +NOT Compact (P000016) AND Trivial (P100052) +"$\\sigma$-compact" (P000017) AND NOT Smaller or same as the continuum (P000059) +"$\\sigma$-compact" (P000017) AND NOT Rothberger (P000068) +"$\\sigma$-compact" (P000017) AND NOT Hemicompact (P000111) +NOT "$\\sigma$-compact" (P000017) AND Ultraconnected (P000040) +NOT "$\\sigma$-compact" (P000017) AND NOT Non-meager (P000056) +NOT "$\\sigma$-compact" (P000017) AND Smaller than the continuum (P000058) +NOT "$\\sigma$-compact" (P000017) AND NOT Čech complete (P000063) +NOT "$\\sigma$-compact" (P000017) AND NOT Baire (P000064) +NOT "$\\sigma$-compact" (P000017) AND Strategic Menger (P000069) +NOT "$\\sigma$-compact" (P000017) AND Markov Menger (P000070) +NOT "$\\sigma$-compact" (P000017) AND "$\\sigma$-relatively-compact" (P000071) +NOT "$\\sigma$-compact" (P000017) AND 2-Markov Menger (P000072) +NOT "$\\sigma$-compact" (P000017) AND NOT Proximal (P000076) +NOT "$\\sigma$-compact" (P000017) AND Corson compact (P000077) +NOT "$\\sigma$-compact" (P000017) AND NOT Corson compact (P000077) +NOT "$\\sigma$-compact" (P000017) AND NOT sequential (P000079) +NOT "$\\sigma$-compact" (P000017) AND NOT Fréchet Urysohn (P000080) +NOT "$\\sigma$-compact" (P000017) AND Groupable topology (P000087) +NOT "$\\sigma$-compact" (P000017) AND Eberlein compact (P000091) +NOT "$\\sigma$-compact" (P000017) AND NOT Eberlein compact (P000091) +NOT "$\\sigma$-compact" (P000017) AND Trivial (P100052) +Lindelof (P000018) AND NOT Smaller or same as the continuum (P000059) +Lindelof (P000018) AND NOT Menger (P000066) +Lindelof (P000018) AND NOT Rothberger (P000068) +NOT Lindelof (P000018) AND Ultraconnected (P000040) +NOT Lindelof (P000018) AND NOT Non-meager (P000056) +NOT Lindelof (P000018) AND Smaller than the continuum (P000058) +NOT Lindelof (P000018) AND NOT Čech complete (P000063) +NOT Lindelof (P000018) AND NOT Baire (P000064) +NOT Lindelof (P000018) AND NOT Sober (P000073) +NOT Lindelof (P000018) AND NOT Proximal (P000076) +NOT Lindelof (P000018) AND Corson compact (P000077) +NOT Lindelof (P000018) AND NOT Corson compact (P000077) +NOT Lindelof (P000018) AND NOT sequential (P000079) +NOT Lindelof (P000018) AND NOT Fréchet Urysohn (P000080) +NOT Lindelof (P000018) AND Groupable topology (P000087) +NOT Lindelof (P000018) AND Eberlein compact (P000091) +NOT Lindelof (P000018) AND NOT Eberlein compact (P000091) +NOT Lindelof (P000018) AND Trivial (P100052) +Countably compact (P000019) AND NOT Smaller or same as the continuum (P000059) +Countably compact (P000019) AND NOT Čech complete (P000063) +Countably compact (P000019) AND Groupable topology (P000087) +NOT Countably compact (P000019) AND NOT Proximal (P000076) +NOT Countably compact (P000019) AND Corson compact (P000077) +NOT Countably compact (P000019) AND NOT Corson compact (P000077) +NOT Countably compact (P000019) AND NOT sequential (P000079) +NOT Countably compact (P000019) AND NOT Fréchet Urysohn (P000080) +NOT Countably compact (P000019) AND Eberlein compact (P000091) +NOT Countably compact (P000019) AND NOT Eberlein compact (P000091) +NOT Countably compact (P000019) AND Trivial (P100052) +Sequentially Compact (P000020) AND NOT Smaller or same as the continuum (P000059) +Sequentially Compact (P000020) AND NOT Čech complete (P000063) +Sequentially Compact (P000020) AND NOT Proximal (P000076) +Sequentially Compact (P000020) AND NOT Corson compact (P000077) +Sequentially Compact (P000020) AND NOT sequential (P000079) +Sequentially Compact (P000020) AND NOT Fréchet Urysohn (P000080) +Sequentially Compact (P000020) AND Groupable topology (P000087) +Sequentially Compact (P000020) AND NOT Eberlein compact (P000091) +NOT Sequentially Compact (P000020) AND Corson compact (P000077) +NOT Sequentially Compact (P000020) AND Eberlein compact (P000091) +NOT Sequentially Compact (P000020) AND Trivial (P100052) +Weakly Countably Compact (P000021) AND NOT Smaller or same as the continuum (P000059) +Weakly Countably Compact (P000021) AND NOT Čech complete (P000063) +Weakly Countably Compact (P000021) AND Groupable topology (P000087) +NOT Weakly Countably Compact (P000021) AND Ultraconnected (P000040) +NOT Weakly Countably Compact (P000021) AND NOT Sober (P000073) +NOT Weakly Countably Compact (P000021) AND NOT Proximal (P000076) +NOT Weakly Countably Compact (P000021) AND Corson compact (P000077) +NOT Weakly Countably Compact (P000021) AND NOT Corson compact (P000077) +NOT Weakly Countably Compact (P000021) AND NOT sequential (P000079) +NOT Weakly Countably Compact (P000021) AND NOT Fréchet Urysohn (P000080) +NOT Weakly Countably Compact (P000021) AND Eberlein compact (P000091) +NOT Weakly Countably Compact (P000021) AND NOT Eberlein compact (P000091) +NOT Weakly Countably Compact (P000021) AND Trivial (P100052) +Pseudocompact (P000022) AND NOT Smaller or same as the continuum (P000059) +Pseudocompact (P000022) AND NOT Čech complete (P000063) +Pseudocompact (P000022) AND Groupable topology (P000087) +NOT Pseudocompact (P000022) AND NOT Proximal (P000076) +NOT Pseudocompact (P000022) AND Corson compact (P000077) +NOT Pseudocompact (P000022) AND NOT Corson compact (P000077) +NOT Pseudocompact (P000022) AND NOT sequential (P000079) +NOT Pseudocompact (P000022) AND NOT Fréchet Urysohn (P000080) +NOT Pseudocompact (P000022) AND Eberlein compact (P000091) +NOT Pseudocompact (P000022) AND NOT Eberlein compact (P000091) +NOT Pseudocompact (P000022) AND Trivial (P100052) +Locally Compact (P000023) AND NOT Smaller or same as the continuum (P000059) +Locally Compact (P000023) AND NOT Čech complete (P000063) +Locally Compact (P000023) AND Groupable topology (P000087) +NOT Locally Compact (P000023) AND Ultraconnected (P000040) +NOT Locally Compact (P000023) AND Discrete (P000052) +NOT Locally Compact (P000023) AND NOT Smaller or same as the continuum (P000059) +NOT Locally Compact (P000023) AND NOT Proximal (P000076) +NOT Locally Compact (P000023) AND Corson compact (P000077) +NOT Locally Compact (P000023) AND NOT Corson compact (P000077) +NOT Locally Compact (P000023) AND NOT sequential (P000079) +NOT Locally Compact (P000023) AND NOT Fréchet Urysohn (P000080) +NOT Locally Compact (P000023) AND homogenous (P000086) +NOT Locally Compact (P000023) AND Alexandrov (P000090) +NOT Locally Compact (P000023) AND Eberlein compact (P000091) +NOT Locally Compact (P000023) AND NOT Eberlein compact (P000091) +NOT Locally Compact (P000023) AND Hemicompact (P000111) +NOT Locally Compact (P000023) AND Trivial (P100052) +Strongly Locally Compact (P000024) AND NOT Countably metacompact (P000033) +Strongly Locally Compact (P000024) AND NOT Smaller or same as the continuum (P000059) +Strongly Locally Compact (P000024) AND NOT Čech complete (P000063) +Strongly Locally Compact (P000024) AND Groupable topology (P000087) +NOT Strongly Locally Compact (P000024) AND Discrete (P000052) +NOT Strongly Locally Compact (P000024) AND NOT Smaller or same as the continuum (P000059) +NOT Strongly Locally Compact (P000024) AND NOT Proximal (P000076) +NOT Strongly Locally Compact (P000024) AND Corson compact (P000077) +NOT Strongly Locally Compact (P000024) AND NOT Corson compact (P000077) +NOT Strongly Locally Compact (P000024) AND NOT sequential (P000079) +NOT Strongly Locally Compact (P000024) AND NOT Fréchet Urysohn (P000080) +NOT Strongly Locally Compact (P000024) AND homogenous (P000086) +NOT Strongly Locally Compact (P000024) AND Alexandrov (P000090) +NOT Strongly Locally Compact (P000024) AND Eberlein compact (P000091) +NOT Strongly Locally Compact (P000024) AND NOT Eberlein compact (P000091) +NOT Strongly Locally Compact (P000024) AND Trivial (P100052) +"$\\sigma$-Locally Compact" (P000025) AND NOT Smaller or same as the continuum (P000059) +"$\\sigma$-Locally Compact" (P000025) AND NOT Čech complete (P000063) +"$\\sigma$-Locally Compact" (P000025) AND NOT Rothberger (P000068) +"$\\sigma$-Locally Compact" (P000025) AND Groupable topology (P000087) +NOT "$\\sigma$-Locally Compact" (P000025) AND Ultraconnected (P000040) +NOT "$\\sigma$-Locally Compact" (P000025) AND NOT Proximal (P000076) +NOT "$\\sigma$-Locally Compact" (P000025) AND Corson compact (P000077) +NOT "$\\sigma$-Locally Compact" (P000025) AND NOT Corson compact (P000077) +NOT "$\\sigma$-Locally Compact" (P000025) AND NOT sequential (P000079) +NOT "$\\sigma$-Locally Compact" (P000025) AND NOT Fréchet Urysohn (P000080) +NOT "$\\sigma$-Locally Compact" (P000025) AND Eberlein compact (P000091) +NOT "$\\sigma$-Locally Compact" (P000025) AND NOT Eberlein compact (P000091) +NOT "$\\sigma$-Locally Compact" (P000025) AND Hemicompact (P000111) +NOT "$\\sigma$-Locally Compact" (P000025) AND Trivial (P100052) +Separable (P000026) AND NOT Smaller or same as the continuum (P000059) +NOT Separable (P000026) AND NOT Non-meager (P000056) +NOT Separable (P000026) AND Smaller than the continuum (P000058) +NOT Separable (P000026) AND NOT Čech complete (P000063) +NOT Separable (P000026) AND NOT Baire (P000064) +NOT Separable (P000026) AND NOT Proximal (P000076) +NOT Separable (P000026) AND Corson compact (P000077) +NOT Separable (P000026) AND NOT Corson compact (P000077) +NOT Separable (P000026) AND NOT sequential (P000079) +NOT Separable (P000026) AND NOT Fréchet Urysohn (P000080) +NOT Separable (P000026) AND Groupable topology (P000087) +NOT Separable (P000026) AND Eberlein compact (P000091) +NOT Separable (P000026) AND NOT Eberlein compact (P000091) +NOT Separable (P000026) AND Trivial (P100052) +Second Countable (P000027) AND NOT Smaller or same as the continuum (P000059) +Second Countable (P000027) AND NOT Menger (P000066) +Second Countable (P000027) AND NOT Rothberger (P000068) +Second Countable (P000027) AND NOT Proximal (P000076) +Second Countable (P000027) AND NOT Corson compact (P000077) +Second Countable (P000027) AND NOT Locally metrizable (P000082) +Second Countable (P000027) AND Groupable topology (P000087) +Second Countable (P000027) AND NOT Eberlein compact (P000091) +NOT Second Countable (P000027) AND NOT Čech complete (P000063) +NOT Second Countable (P000027) AND Corson compact (P000077) +NOT Second Countable (P000027) AND Eberlein compact (P000091) +NOT Second Countable (P000027) AND Trivial (P100052) +First Countable (P000028) AND NOT Smaller or same as the continuum (P000059) +First Countable (P000028) AND NOT Proximal (P000076) +First Countable (P000028) AND NOT Corson compact (P000077) +First Countable (P000028) AND Groupable topology (P000087) +First Countable (P000028) AND NOT Eberlein compact (P000091) +NOT First Countable (P000028) AND Ultraconnected (P000040) +NOT First Countable (P000028) AND NOT Smaller or same as the continuum (P000059) +NOT First Countable (P000028) AND NOT Čech complete (P000063) +NOT First Countable (P000028) AND Continuum-sized (P000065) +NOT First Countable (P000028) AND Proximal (P000076) +NOT First Countable (P000028) AND Corson compact (P000077) +NOT First Countable (P000028) AND Locally metrizable (P000082) +NOT First Countable (P000028) AND homogenous (P000086) +NOT First Countable (P000028) AND Groupable topology (P000087) +NOT First Countable (P000028) AND Alexandrov (P000090) +NOT First Countable (P000028) AND Eberlein compact (P000091) +NOT First Countable (P000028) AND Trivial (P100052) +Countable chain condition (P000029) AND NOT Smaller or same as the continuum (P000059) +NOT Countable chain condition (P000029) AND NOT Countably metacompact (P000033) +NOT Countable chain condition (P000029) AND Hyperconnected (P000039) +NOT Countable chain condition (P000029) AND NOT Non-meager (P000056) +NOT Countable chain condition (P000029) AND Smaller than the continuum (P000058) +NOT Countable chain condition (P000029) AND NOT Smaller or same as the continuum (P000059) +NOT Countable chain condition (P000029) AND NOT Čech complete (P000063) +NOT Countable chain condition (P000029) AND NOT Baire (P000064) +NOT Countable chain condition (P000029) AND NOT Continuum-sized (P000065) +NOT Countable chain condition (P000029) AND NOT Sober (P000073) +NOT Countable chain condition (P000029) AND NOT Proximal (P000076) +NOT Countable chain condition (P000029) AND Corson compact (P000077) +NOT Countable chain condition (P000029) AND NOT Corson compact (P000077) +NOT Countable chain condition (P000029) AND NOT sequential (P000079) +NOT Countable chain condition (P000029) AND NOT Fréchet Urysohn (P000080) +NOT Countable chain condition (P000029) AND Groupable topology (P000087) +NOT Countable chain condition (P000029) AND Eberlein compact (P000091) +NOT Countable chain condition (P000029) AND NOT Eberlein compact (P000091) +NOT Countable chain condition (P000029) AND Trivial (P100052) +Paracompact (P000030) AND NOT Smaller or same as the continuum (P000059) +NOT Paracompact (P000030) AND Fully normal (P000034) +NOT Paracompact (P000030) AND NOT Čech complete (P000063) +NOT Paracompact (P000030) AND Continuum-sized (P000065) +NOT Paracompact (P000030) AND "$T_6$" (P000067) +NOT Paracompact (P000030) AND Proximal (P000076) +NOT Paracompact (P000030) AND NOT Proximal (P000076) +NOT Paracompact (P000030) AND Corson compact (P000077) +NOT Paracompact (P000030) AND NOT Corson compact (P000077) +NOT Paracompact (P000030) AND NOT sequential (P000079) +NOT Paracompact (P000030) AND NOT Fréchet Urysohn (P000080) +NOT Paracompact (P000030) AND Locally metrizable (P000082) +NOT Paracompact (P000030) AND NOT Locally metrizable (P000082) +NOT Paracompact (P000030) AND homogenous (P000086) +NOT Paracompact (P000030) AND Groupable topology (P000087) +NOT Paracompact (P000030) AND Collectionwise normal (P000088) +NOT Paracompact (P000030) AND Alexandrov (P000090) +NOT Paracompact (P000030) AND Eberlein compact (P000091) +NOT Paracompact (P000030) AND NOT Eberlein compact (P000091) +NOT Paracompact (P000030) AND Trivial (P100052) +NOT Metacompact (P000031) AND Fully normal (P000034) +NOT Metacompact (P000031) AND NOT Čech complete (P000063) +NOT Metacompact (P000031) AND Continuum-sized (P000065) +NOT Metacompact (P000031) AND "$T_6$" (P000067) +NOT Metacompact (P000031) AND Proximal (P000076) +NOT Metacompact (P000031) AND NOT Proximal (P000076) +NOT Metacompact (P000031) AND Corson compact (P000077) +NOT Metacompact (P000031) AND NOT Corson compact (P000077) +NOT Metacompact (P000031) AND NOT sequential (P000079) +NOT Metacompact (P000031) AND NOT Fréchet Urysohn (P000080) +NOT Metacompact (P000031) AND Locally metrizable (P000082) +NOT Metacompact (P000031) AND NOT Locally metrizable (P000082) +NOT Metacompact (P000031) AND homogenous (P000086) +NOT Metacompact (P000031) AND Groupable topology (P000087) +NOT Metacompact (P000031) AND Collectionwise normal (P000088) +NOT Metacompact (P000031) AND Alexandrov (P000090) +NOT Metacompact (P000031) AND Eberlein compact (P000091) +NOT Metacompact (P000031) AND NOT Eberlein compact (P000091) +NOT Metacompact (P000031) AND Trivial (P100052) +NOT Countably paracompact (P000032) AND Fully normal (P000034) +NOT Countably paracompact (P000032) AND Extremally Disconnected (P000049) +NOT Countably paracompact (P000032) AND NOT Smaller or same as the continuum (P000059) +NOT Countably paracompact (P000032) AND NOT Čech complete (P000063) +NOT Countably paracompact (P000032) AND Continuum-sized (P000065) +NOT Countably paracompact (P000032) AND "$T_6$" (P000067) +NOT Countably paracompact (P000032) AND Proximal (P000076) +NOT Countably paracompact (P000032) AND NOT Proximal (P000076) +NOT Countably paracompact (P000032) AND Corson compact (P000077) +NOT Countably paracompact (P000032) AND NOT Corson compact (P000077) +NOT Countably paracompact (P000032) AND NOT sequential (P000079) +NOT Countably paracompact (P000032) AND NOT Fréchet Urysohn (P000080) +NOT Countably paracompact (P000032) AND Locally metrizable (P000082) +NOT Countably paracompact (P000032) AND NOT Locally metrizable (P000082) +NOT Countably paracompact (P000032) AND homogenous (P000086) +NOT Countably paracompact (P000032) AND Groupable topology (P000087) +NOT Countably paracompact (P000032) AND Collectionwise normal (P000088) +NOT Countably paracompact (P000032) AND Alexandrov (P000090) +NOT Countably paracompact (P000032) AND Eberlein compact (P000091) +NOT Countably paracompact (P000032) AND NOT Eberlein compact (P000091) +NOT Countably paracompact (P000032) AND Trivial (P100052) +NOT Countably metacompact (P000033) AND Fully normal (P000034) +NOT Countably metacompact (P000033) AND NOT Connected (P000036) +NOT Countably metacompact (P000033) AND Totally Disconnected (P000047) +NOT Countably metacompact (P000033) AND Totally Separated (P000048) +NOT Countably metacompact (P000033) AND Extremally Disconnected (P000049) +NOT Countably metacompact (P000033) AND Zero Dimensional (P000050) +NOT Countably metacompact (P000033) AND NOT Smaller or same as the continuum (P000059) +NOT Countably metacompact (P000033) AND Cozero complemented (P000061) +NOT Countably metacompact (P000033) AND Čech complete (P000063) +NOT Countably metacompact (P000033) AND NOT Čech complete (P000063) +NOT Countably metacompact (P000033) AND Baire (P000064) +NOT Countably metacompact (P000033) AND Continuum-sized (P000065) +NOT Countably metacompact (P000033) AND "$T_6$" (P000067) +NOT Countably metacompact (P000033) AND Proximal (P000076) +NOT Countably metacompact (P000033) AND NOT Proximal (P000076) +NOT Countably metacompact (P000033) AND Corson compact (P000077) +NOT Countably metacompact (P000033) AND NOT Corson compact (P000077) +NOT Countably metacompact (P000033) AND NOT sequential (P000079) +NOT Countably metacompact (P000033) AND NOT Fréchet Urysohn (P000080) +NOT Countably metacompact (P000033) AND Locally metrizable (P000082) +NOT Countably metacompact (P000033) AND NOT Locally metrizable (P000082) +NOT Countably metacompact (P000033) AND homogenous (P000086) +NOT Countably metacompact (P000033) AND Groupable topology (P000087) +NOT Countably metacompact (P000033) AND Collectionwise normal (P000088) +NOT Countably metacompact (P000033) AND Alexandrov (P000090) +NOT Countably metacompact (P000033) AND Eberlein compact (P000091) +NOT Countably metacompact (P000033) AND NOT Eberlein compact (P000091) +NOT Countably metacompact (P000033) AND Trivial (P100052) +Fully normal (P000034) AND NOT Smaller or same as the continuum (P000059) +Fully normal (P000034) AND NOT Collectionwise normal (P000088) +NOT Fully normal (P000034) AND NOT Čech complete (P000063) +NOT Fully normal (P000034) AND Continuum-sized (P000065) +NOT Fully normal (P000034) AND "$T_6$" (P000067) +NOT Fully normal (P000034) AND Proximal (P000076) +NOT Fully normal (P000034) AND NOT Proximal (P000076) +NOT Fully normal (P000034) AND Corson compact (P000077) +NOT Fully normal (P000034) AND NOT Corson compact (P000077) +NOT Fully normal (P000034) AND NOT sequential (P000079) +NOT Fully normal (P000034) AND NOT Fréchet Urysohn (P000080) +NOT Fully normal (P000034) AND Locally metrizable (P000082) +NOT Fully normal (P000034) AND NOT Locally metrizable (P000082) +NOT Fully normal (P000034) AND homogenous (P000086) +NOT Fully normal (P000034) AND Groupable topology (P000087) +NOT Fully normal (P000034) AND Collectionwise normal (P000088) +NOT Fully normal (P000034) AND Alexandrov (P000090) +NOT Fully normal (P000034) AND Eberlein compact (P000091) +NOT Fully normal (P000034) AND NOT Eberlein compact (P000091) +NOT Fully normal (P000034) AND Trivial (P100052) +Fully $T_4$ (P000035) AND NOT Smaller or same as the continuum (P000059) +Fully $T_4$ (P000035) AND NOT Cozero complemented (P000061) +Fully $T_4$ (P000035) AND NOT Strongly KC (P000103) +Fully $T_4$ (P000035) AND Trivial (P100052) +NOT Fully $T_4$ (P000035) AND NOT Čech complete (P000063) +NOT Fully $T_4$ (P000035) AND Continuum-sized (P000065) +NOT Fully $T_4$ (P000035) AND "$T_6$" (P000067) +NOT Fully $T_4$ (P000035) AND Proximal (P000076) +NOT Fully $T_4$ (P000035) AND NOT Proximal (P000076) +NOT Fully $T_4$ (P000035) AND Corson compact (P000077) +NOT Fully $T_4$ (P000035) AND NOT Corson compact (P000077) +NOT Fully $T_4$ (P000035) AND NOT sequential (P000079) +NOT Fully $T_4$ (P000035) AND NOT Fréchet Urysohn (P000080) +NOT Fully $T_4$ (P000035) AND Locally metrizable (P000082) +NOT Fully $T_4$ (P000035) AND NOT Locally metrizable (P000082) +NOT Fully $T_4$ (P000035) AND homogenous (P000086) +NOT Fully $T_4$ (P000035) AND Groupable topology (P000087) +NOT Fully $T_4$ (P000035) AND Collectionwise normal (P000088) +NOT Fully $T_4$ (P000035) AND Alexandrov (P000090) +NOT Fully $T_4$ (P000035) AND Eberlein compact (P000091) +NOT Fully $T_4$ (P000035) AND NOT Eberlein compact (P000091) +Connected (P000036) AND Totally Disconnected (P000047) +Connected (P000036) AND Totally Separated (P000048) +Connected (P000036) AND Extremally Disconnected (P000049) +Connected (P000036) AND Discrete (P000052) +Connected (P000036) AND NOT Smaller or same as the continuum (P000059) +Connected (P000036) AND NOT Čech complete (P000063) +Connected (P000036) AND "$T_6$" (P000067) +Connected (P000036) AND homogenous (P000086) +Connected (P000036) AND Alexandrov (P000090) +NOT Connected (P000036) AND NOT Smaller or same as the continuum (P000059) +NOT Connected (P000036) AND NOT Sober (P000073) +NOT Connected (P000036) AND Groupable topology (P000087) +NOT Connected (P000036) AND Trivial (P100052) +Path Connected (P000037) AND Totally Path Disconnected (P000046) +Path Connected (P000037) AND Totally Disconnected (P000047) +Path Connected (P000037) AND Totally Separated (P000048) +Path Connected (P000037) AND Extremally Disconnected (P000049) +Path Connected (P000037) AND Discrete (P000052) +Path Connected (P000037) AND NOT Smaller or same as the continuum (P000059) +Path Connected (P000037) AND NOT Čech complete (P000063) +Path Connected (P000037) AND "$T_6$" (P000067) +Path Connected (P000037) AND NOT Proximal (P000076) +Path Connected (P000037) AND NOT Corson compact (P000077) +Path Connected (P000037) AND NOT sequential (P000079) +Path Connected (P000037) AND NOT Fréchet Urysohn (P000080) +Path Connected (P000037) AND homogenous (P000086) +Path Connected (P000037) AND Alexandrov (P000090) +Path Connected (P000037) AND NOT Eberlein compact (P000091) +NOT Path Connected (P000037) AND NOT Smaller or same as the continuum (P000059) +NOT Path Connected (P000037) AND Groupable topology (P000087) +NOT Path Connected (P000037) AND Trivial (P100052) +Arc connected (P000038) AND Biconnected (P000044) +Arc connected (P000038) AND Has Dispersion Point (P000045) +Arc connected (P000038) AND Totally Path Disconnected (P000046) +Arc connected (P000038) AND Totally Disconnected (P000047) +Arc connected (P000038) AND Totally Separated (P000048) +Arc connected (P000038) AND Extremally Disconnected (P000049) +Arc connected (P000038) AND Zero Dimensional (P000050) +Arc connected (P000038) AND Scattered (P000051) +Arc connected (P000038) AND Discrete (P000052) +Arc connected (P000038) AND Countable (P000057) +Arc connected (P000038) AND Smaller than the continuum (P000058) +Arc connected (P000038) AND NOT Smaller or same as the continuum (P000059) +Arc connected (P000038) AND NOT Čech complete (P000063) +Arc connected (P000038) AND NOT Continuum-sized (P000065) +Arc connected (P000038) AND "$T_6$" (P000067) +Arc connected (P000038) AND NOT Proximal (P000076) +Arc connected (P000038) AND NOT Corson compact (P000077) +Arc connected (P000038) AND Finite (P000078) +Arc connected (P000038) AND NOT sequential (P000079) +Arc connected (P000038) AND NOT Fréchet Urysohn (P000080) +Arc connected (P000038) AND homogenous (P000086) +Arc connected (P000038) AND NOT homogenous (P000086) +Arc connected (P000038) AND Alexandrov (P000090) +Arc connected (P000038) AND NOT Eberlein compact (P000091) +Arc connected (P000038) AND Trivial (P100052) +NOT Arc connected (P000038) AND NOT Smaller or same as the continuum (P000059) +NOT Arc connected (P000038) AND Groupable topology (P000087) +NOT Arc connected (P000038) AND Trivial (P100052) +Hyperconnected (P000039) AND NOT Smaller or same as the continuum (P000059) +Hyperconnected (P000039) AND Čech complete (P000063) +Hyperconnected (P000039) AND NOT Čech complete (P000063) +Hyperconnected (P000039) AND Baire (P000064) +Hyperconnected (P000039) AND Continuum-sized (P000065) +Hyperconnected (P000039) AND Sober (P000073) +Hyperconnected (P000039) AND Proximal (P000076) +Hyperconnected (P000039) AND NOT Proximal (P000076) +Hyperconnected (P000039) AND Corson compact (P000077) +Hyperconnected (P000039) AND NOT Corson compact (P000077) +Hyperconnected (P000039) AND NOT sequential (P000079) +Hyperconnected (P000039) AND NOT Fréchet Urysohn (P000080) +Hyperconnected (P000039) AND Locally metrizable (P000082) +Hyperconnected (P000039) AND NOT Locally metrizable (P000082) +Hyperconnected (P000039) AND locally Hausdorff (P000084) +Hyperconnected (P000039) AND homogenous (P000086) +Hyperconnected (P000039) AND Groupable topology (P000087) +Hyperconnected (P000039) AND Collectionwise normal (P000088) +Hyperconnected (P000039) AND Alexandrov (P000090) +Hyperconnected (P000039) AND Eberlein compact (P000091) +Hyperconnected (P000039) AND NOT Eberlein compact (P000091) +Hyperconnected (P000039) AND Sequentially Hausdorff (P000099) +Hyperconnected (P000039) AND KC (P000100) +Hyperconnected (P000039) AND NOT Anti-Hausdorff (P000101) +Hyperconnected (P000039) AND Strongly KC (P000103) +NOT Hyperconnected (P000039) AND Trivial (P100052) +Ultraconnected (P000040) AND Totally Path Disconnected (P000046) +Ultraconnected (P000040) AND NOT Smaller or same as the continuum (P000059) +Ultraconnected (P000040) AND Čech complete (P000063) +Ultraconnected (P000040) AND NOT Čech complete (P000063) +Ultraconnected (P000040) AND Baire (P000064) +Ultraconnected (P000040) AND Continuum-sized (P000065) +Ultraconnected (P000040) AND NOT Menger (P000066) +Ultraconnected (P000040) AND NOT Rothberger (P000068) +Ultraconnected (P000040) AND NOT Strategic Menger (P000069) +Ultraconnected (P000040) AND NOT Markov Menger (P000070) +Ultraconnected (P000040) AND NOT "$\\sigma$-relatively-compact" (P000071) +Ultraconnected (P000040) AND NOT 2-Markov Menger (P000072) +Ultraconnected (P000040) AND Sober (P000073) +Ultraconnected (P000040) AND Proximal (P000076) +Ultraconnected (P000040) AND NOT Proximal (P000076) +Ultraconnected (P000040) AND Corson compact (P000077) +Ultraconnected (P000040) AND NOT Corson compact (P000077) +Ultraconnected (P000040) AND NOT sequential (P000079) +Ultraconnected (P000040) AND NOT Fréchet Urysohn (P000080) +Ultraconnected (P000040) AND Locally metrizable (P000082) +Ultraconnected (P000040) AND NOT Locally metrizable (P000082) +Ultraconnected (P000040) AND homogenous (P000086) +Ultraconnected (P000040) AND Groupable topology (P000087) +Ultraconnected (P000040) AND Collectionwise normal (P000088) +Ultraconnected (P000040) AND NOT Collectionwise normal (P000088) +Ultraconnected (P000040) AND Alexandrov (P000090) +Ultraconnected (P000040) AND Eberlein compact (P000091) +Ultraconnected (P000040) AND NOT Eberlein compact (P000091) +Ultraconnected (P000040) AND NOT Anti-Hausdorff (P000101) +Ultraconnected (P000040) AND NOT Hemicompact (P000111) +NOT Ultraconnected (P000040) AND Trivial (P100052) +Locally Connected (P000041) AND NOT Smaller or same as the continuum (P000059) +Locally Connected (P000041) AND NOT Čech complete (P000063) +Locally Connected (P000041) AND "$T_6$" (P000067) +Locally Connected (P000041) AND NOT Proximal (P000076) +Locally Connected (P000041) AND NOT Corson compact (P000077) +Locally Connected (P000041) AND NOT sequential (P000079) +Locally Connected (P000041) AND NOT Fréchet Urysohn (P000080) +Locally Connected (P000041) AND NOT Eberlein compact (P000091) +NOT Locally Connected (P000041) AND NOT Smaller or same as the continuum (P000059) +NOT Locally Connected (P000041) AND NOT Sober (P000073) +NOT Locally Connected (P000041) AND Finite (P000078) +NOT Locally Connected (P000041) AND homogenous (P000086) +NOT Locally Connected (P000041) AND Groupable topology (P000087) +NOT Locally Connected (P000041) AND Alexandrov (P000090) +NOT Locally Connected (P000041) AND Trivial (P100052) +Locally Path Connected (P000042) AND NOT Smaller or same as the continuum (P000059) +Locally Path Connected (P000042) AND NOT Čech complete (P000063) +Locally Path Connected (P000042) AND "$T_6$" (P000067) +Locally Path Connected (P000042) AND NOT Proximal (P000076) +Locally Path Connected (P000042) AND NOT Corson compact (P000077) +Locally Path Connected (P000042) AND NOT sequential (P000079) +Locally Path Connected (P000042) AND NOT Fréchet Urysohn (P000080) +Locally Path Connected (P000042) AND NOT Eberlein compact (P000091) +NOT Locally Path Connected (P000042) AND NOT Smaller or same as the continuum (P000059) +NOT Locally Path Connected (P000042) AND Finite (P000078) +NOT Locally Path Connected (P000042) AND homogenous (P000086) +NOT Locally Path Connected (P000042) AND Groupable topology (P000087) +NOT Locally Path Connected (P000042) AND Alexandrov (P000090) +NOT Locally Path Connected (P000042) AND Trivial (P100052) +Locally Arc Connected (P000043) AND Biconnected (P000044) +Locally Arc Connected (P000043) AND Has Dispersion Point (P000045) +Locally Arc Connected (P000043) AND NOT Smaller or same as the continuum (P000059) +Locally Arc Connected (P000043) AND NOT Čech complete (P000063) +Locally Arc Connected (P000043) AND "$T_6$" (P000067) +Locally Arc Connected (P000043) AND NOT Proximal (P000076) +Locally Arc Connected (P000043) AND NOT Corson compact (P000077) +Locally Arc Connected (P000043) AND NOT sequential (P000079) +Locally Arc Connected (P000043) AND NOT Fréchet Urysohn (P000080) +Locally Arc Connected (P000043) AND NOT homogenous (P000086) +Locally Arc Connected (P000043) AND NOT Eberlein compact (P000091) +Locally Arc Connected (P000043) AND Trivial (P100052) +NOT Locally Arc Connected (P000043) AND NOT Smaller or same as the continuum (P000059) +NOT Locally Arc Connected (P000043) AND homogenous (P000086) +NOT Locally Arc Connected (P000043) AND Groupable topology (P000087) +NOT Locally Arc Connected (P000043) AND Alexandrov (P000090) +NOT Locally Arc Connected (P000043) AND Trivial (P100052) +Biconnected (P000044) AND NOT Has Dispersion Point (P000045) +Biconnected (P000044) AND Totally Disconnected (P000047) +Biconnected (P000044) AND Totally Separated (P000048) +Biconnected (P000044) AND Extremally Disconnected (P000049) +Biconnected (P000044) AND Zero Dimensional (P000050) +Biconnected (P000044) AND Discrete (P000052) +Biconnected (P000044) AND Completely metrizable (P000055) +Biconnected (P000044) AND NOT Smaller or same as the continuum (P000059) +Biconnected (P000044) AND Čech complete (P000063) +Biconnected (P000044) AND NOT Čech complete (P000063) +Biconnected (P000044) AND Baire (P000064) +Biconnected (P000044) AND Continuum-sized (P000065) +Biconnected (P000044) AND "$T_6$" (P000067) +Biconnected (P000044) AND NOT Sober (P000073) +Biconnected (P000044) AND NOT Proximal (P000076) +Biconnected (P000044) AND Corson compact (P000077) +Biconnected (P000044) AND NOT Corson compact (P000077) +Biconnected (P000044) AND NOT sequential (P000079) +Biconnected (P000044) AND NOT Fréchet Urysohn (P000080) +Biconnected (P000044) AND NOT Locally metrizable (P000082) +Biconnected (P000044) AND homogenous (P000086) +Biconnected (P000044) AND Groupable topology (P000087) +Biconnected (P000044) AND Alexandrov (P000090) +Biconnected (P000044) AND Eberlein compact (P000091) +Biconnected (P000044) AND NOT Eberlein compact (P000091) +Biconnected (P000044) AND Trivial (P100052) +NOT Biconnected (P000044) AND NOT Smaller or same as the continuum (P000059) +NOT Biconnected (P000044) AND Groupable topology (P000087) +Has Dispersion Point (P000045) AND Totally Disconnected (P000047) +Has Dispersion Point (P000045) AND Totally Separated (P000048) +Has Dispersion Point (P000045) AND Extremally Disconnected (P000049) +Has Dispersion Point (P000045) AND Zero Dimensional (P000050) +Has Dispersion Point (P000045) AND Discrete (P000052) +Has Dispersion Point (P000045) AND Completely metrizable (P000055) +Has Dispersion Point (P000045) AND NOT Smaller or same as the continuum (P000059) +Has Dispersion Point (P000045) AND Čech complete (P000063) +Has Dispersion Point (P000045) AND NOT Čech complete (P000063) +Has Dispersion Point (P000045) AND Baire (P000064) +Has Dispersion Point (P000045) AND Continuum-sized (P000065) +Has Dispersion Point (P000045) AND "$T_6$" (P000067) +Has Dispersion Point (P000045) AND NOT Sober (P000073) +Has Dispersion Point (P000045) AND NOT Proximal (P000076) +Has Dispersion Point (P000045) AND Corson compact (P000077) +Has Dispersion Point (P000045) AND NOT Corson compact (P000077) +Has Dispersion Point (P000045) AND NOT sequential (P000079) +Has Dispersion Point (P000045) AND NOT Fréchet Urysohn (P000080) +Has Dispersion Point (P000045) AND NOT Locally metrizable (P000082) +Has Dispersion Point (P000045) AND homogenous (P000086) +Has Dispersion Point (P000045) AND Groupable topology (P000087) +Has Dispersion Point (P000045) AND Alexandrov (P000090) +Has Dispersion Point (P000045) AND Eberlein compact (P000091) +Has Dispersion Point (P000045) AND NOT Eberlein compact (P000091) +Has Dispersion Point (P000045) AND Trivial (P100052) +NOT Has Dispersion Point (P000045) AND NOT Smaller or same as the continuum (P000059) +NOT Has Dispersion Point (P000045) AND Groupable topology (P000087) +Totally Path Disconnected (P000046) AND NOT Smaller or same as the continuum (P000059) +Totally Path Disconnected (P000046) AND NOT Sober (P000073) +Totally Path Disconnected (P000046) AND NOT locally Hausdorff (P000084) +Totally Path Disconnected (P000046) AND Groupable topology (P000087) +Totally Path Disconnected (P000046) AND NOT Sequentially Hausdorff (P000099) +Totally Path Disconnected (P000046) AND NOT KC (P000100) +Totally Path Disconnected (P000046) AND NOT Strongly KC (P000103) +Totally Path Disconnected (P000046) AND Trivial (P100052) +NOT Totally Path Disconnected (P000046) AND NOT Smaller or same as the continuum (P000059) +NOT Totally Path Disconnected (P000046) AND NOT Čech complete (P000063) +NOT Totally Path Disconnected (P000046) AND "$T_6$" (P000067) +NOT Totally Path Disconnected (P000046) AND NOT Proximal (P000076) +NOT Totally Path Disconnected (P000046) AND NOT Corson compact (P000077) +NOT Totally Path Disconnected (P000046) AND NOT sequential (P000079) +NOT Totally Path Disconnected (P000046) AND NOT Fréchet Urysohn (P000080) +NOT Totally Path Disconnected (P000046) AND homogenous (P000086) +NOT Totally Path Disconnected (P000046) AND Alexandrov (P000090) +NOT Totally Path Disconnected (P000046) AND NOT Eberlein compact (P000091) +Totally Disconnected (P000047) AND NOT Smaller or same as the continuum (P000059) +Totally Disconnected (P000047) AND Strongly Connected (P000060) +Totally Disconnected (P000047) AND NOT Sober (P000073) +Totally Disconnected (P000047) AND NOT locally Hausdorff (P000084) +Totally Disconnected (P000047) AND Groupable topology (P000087) +Totally Disconnected (P000047) AND NOT Sequentially Hausdorff (P000099) +Totally Disconnected (P000047) AND NOT KC (P000100) +Totally Disconnected (P000047) AND NOT Strongly KC (P000103) +Totally Disconnected (P000047) AND Trivial (P100052) +NOT Totally Disconnected (P000047) AND NOT Smaller or same as the continuum (P000059) +NOT Totally Disconnected (P000047) AND NOT Čech complete (P000063) +NOT Totally Disconnected (P000047) AND "$T_6$" (P000067) +NOT Totally Disconnected (P000047) AND homogenous (P000086) +NOT Totally Disconnected (P000047) AND Alexandrov (P000090) +Totally Separated (P000048) AND NOT Smaller or same as the continuum (P000059) +Totally Separated (P000048) AND Groupable topology (P000087) +Totally Separated (P000048) AND NOT Strongly KC (P000103) +Totally Separated (P000048) AND Trivial (P100052) +NOT Totally Separated (P000048) AND NOT Smaller or same as the continuum (P000059) +NOT Totally Separated (P000048) AND NOT Čech complete (P000063) +NOT Totally Separated (P000048) AND "$T_6$" (P000067) +NOT Totally Separated (P000048) AND homogenous (P000086) +NOT Totally Separated (P000048) AND Alexandrov (P000090) +Extremally Disconnected (P000049) AND NOT Non-meager (P000056) +Extremally Disconnected (P000049) AND NOT Smaller or same as the continuum (P000059) +Extremally Disconnected (P000049) AND NOT Čech complete (P000063) +Extremally Disconnected (P000049) AND NOT Baire (P000064) +Extremally Disconnected (P000049) AND Continuum-sized (P000065) +Extremally Disconnected (P000049) AND Groupable topology (P000087) +Extremally Disconnected (P000049) AND NOT Strongly KC (P000103) +Extremally Disconnected (P000049) AND Trivial (P100052) +NOT Extremally Disconnected (P000049) AND NOT Smaller or same as the continuum (P000059) +NOT Extremally Disconnected (P000049) AND homogenous (P000086) +NOT Extremally Disconnected (P000049) AND Alexandrov (P000090) +Zero Dimensional (P000050) AND NOT Smaller or same as the continuum (P000059) +Zero Dimensional (P000050) AND Groupable topology (P000087) +NOT Zero Dimensional (P000050) AND NOT Smaller or same as the continuum (P000059) +NOT Zero Dimensional (P000050) AND NOT Čech complete (P000063) +NOT Zero Dimensional (P000050) AND "$T_6$" (P000067) +NOT Zero Dimensional (P000050) AND homogenous (P000086) +NOT Zero Dimensional (P000050) AND Alexandrov (P000090) +NOT Zero Dimensional (P000050) AND Trivial (P100052) +Scattered (P000051) AND NOT Non-meager (P000056) +Scattered (P000051) AND NOT Smaller or same as the continuum (P000059) +Scattered (P000051) AND NOT Čech complete (P000063) +Scattered (P000051) AND NOT Baire (P000064) +Scattered (P000051) AND NOT Sober (P000073) +Scattered (P000051) AND NOT Proximal (P000076) +Scattered (P000051) AND NOT Corson compact (P000077) +Scattered (P000051) AND NOT sequential (P000079) +Scattered (P000051) AND NOT Fréchet Urysohn (P000080) +Scattered (P000051) AND Groupable topology (P000087) +Scattered (P000051) AND NOT Eberlein compact (P000091) +Scattered (P000051) AND Trivial (P100052) +NOT Scattered (P000051) AND NOT Smaller or same as the continuum (P000059) +NOT Scattered (P000051) AND Finite (P000078) +NOT Scattered (P000051) AND homogenous (P000086) +NOT Scattered (P000051) AND NOT homogenous (P000086) +NOT Scattered (P000051) AND Alexandrov (P000090) +Discrete (P000052) AND NOT Smaller than the continuum (P000058) +Discrete (P000052) AND NOT Smaller or same as the continuum (P000059) +Discrete (P000052) AND NOT Cozero complemented (P000061) +Discrete (P000052) AND Continuum-sized (P000065) +Discrete (P000052) AND "$T_6$" (P000067) +Discrete (P000052) AND NOT "$T_6$" (P000067) +Discrete (P000052) AND NOT Corson compact (P000077) +Discrete (P000052) AND Groupable topology (P000087) +Discrete (P000052) AND NOT Eberlein compact (P000091) +Discrete (P000052) AND Trivial (P100052) +NOT Discrete (P000052) AND homogenous (P000086) +NOT Discrete (P000052) AND Alexandrov (P000090) +Metrizable (P000053) AND NOT Smaller or same as the continuum (P000059) +Metrizable (P000053) AND NOT Cozero complemented (P000061) +Metrizable (P000053) AND NOT "$T_6$" (P000067) +Metrizable (P000053) AND NOT Corson compact (P000077) +Metrizable (P000053) AND Groupable topology (P000087) +Metrizable (P000053) AND NOT Eberlein compact (P000091) +Metrizable (P000053) AND Trivial (P100052) +NOT Metrizable (P000053) AND NOT Čech complete (P000063) +NOT Metrizable (P000053) AND Proximal (P000076) +NOT Metrizable (P000053) AND Corson compact (P000077) +NOT Metrizable (P000053) AND Locally metrizable (P000082) +NOT Metrizable (P000053) AND homogenous (P000086) +NOT Metrizable (P000053) AND Alexandrov (P000090) +NOT Metrizable (P000053) AND Eberlein compact (P000091) +"$\\sigma$-Locally Finite Base" (P000054) AND NOT Smaller or same as the continuum (P000059) +"$\\sigma$-Locally Finite Base" (P000054) AND NOT Proximal (P000076) +"$\\sigma$-Locally Finite Base" (P000054) AND NOT Corson compact (P000077) +"$\\sigma$-Locally Finite Base" (P000054) AND NOT Locally metrizable (P000082) +"$\\sigma$-Locally Finite Base" (P000054) AND Groupable topology (P000087) +"$\\sigma$-Locally Finite Base" (P000054) AND NOT Eberlein compact (P000091) +NOT "$\\sigma$-Locally Finite Base" (P000054) AND NOT Čech complete (P000063) +NOT "$\\sigma$-Locally Finite Base" (P000054) AND Proximal (P000076) +NOT "$\\sigma$-Locally Finite Base" (P000054) AND Corson compact (P000077) +NOT "$\\sigma$-Locally Finite Base" (P000054) AND Locally metrizable (P000082) +NOT "$\\sigma$-Locally Finite Base" (P000054) AND homogenous (P000086) +NOT "$\\sigma$-Locally Finite Base" (P000054) AND Alexandrov (P000090) +NOT "$\\sigma$-Locally Finite Base" (P000054) AND Eberlein compact (P000091) +NOT "$\\sigma$-Locally Finite Base" (P000054) AND Trivial (P100052) +Completely metrizable (P000055) AND NOT Smaller or same as the continuum (P000059) +Completely metrizable (P000055) AND NOT Cozero complemented (P000061) +Completely metrizable (P000055) AND NOT "$T_6$" (P000067) +Completely metrizable (P000055) AND NOT Corson compact (P000077) +Completely metrizable (P000055) AND Groupable topology (P000087) +Completely metrizable (P000055) AND NOT Eberlein compact (P000091) +Completely metrizable (P000055) AND Trivial (P100052) +NOT Completely metrizable (P000055) AND Corson compact (P000077) +NOT Completely metrizable (P000055) AND homogenous (P000086) +NOT Completely metrizable (P000055) AND Alexandrov (P000090) +NOT Completely metrizable (P000055) AND Eberlein compact (P000091) +Non-meager (P000056) AND NOT Čech complete (P000063) +Non-meager (P000056) AND NOT Baire (P000064) +Non-meager (P000056) AND Groupable topology (P000087) +NOT Non-meager (P000056) AND NOT Smaller or same as the continuum (P000059) +NOT Non-meager (P000056) AND Čech complete (P000063) +NOT Non-meager (P000056) AND NOT Menger (P000066) +NOT Non-meager (P000056) AND "$T_6$" (P000067) +NOT Non-meager (P000056) AND NOT Rothberger (P000068) +NOT Non-meager (P000056) AND NOT Strategic Menger (P000069) +NOT Non-meager (P000056) AND NOT Markov Menger (P000070) +NOT Non-meager (P000056) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT Non-meager (P000056) AND NOT 2-Markov Menger (P000072) +NOT Non-meager (P000056) AND NOT Proximal (P000076) +NOT Non-meager (P000056) AND Corson compact (P000077) +NOT Non-meager (P000056) AND NOT Corson compact (P000077) +NOT Non-meager (P000056) AND Finite (P000078) +NOT Non-meager (P000056) AND NOT sequential (P000079) +NOT Non-meager (P000056) AND NOT Fréchet Urysohn (P000080) +NOT Non-meager (P000056) AND homogenous (P000086) +NOT Non-meager (P000056) AND NOT homogenous (P000086) +NOT Non-meager (P000056) AND Alexandrov (P000090) +NOT Non-meager (P000056) AND Eberlein compact (P000091) +NOT Non-meager (P000056) AND NOT Eberlein compact (P000091) +NOT Non-meager (P000056) AND NOT Hemicompact (P000111) +NOT Non-meager (P000056) AND Trivial (P100052) +Countable (P000057) AND NOT Rothberger (P000068) +Countable (P000057) AND NOT Proximal (P000076) +Countable (P000057) AND NOT sequential (P000079) +Countable (P000057) AND Groupable topology (P000087) +Countable (P000057) AND NOT Hemicompact (P000111) +Countable (P000057) AND Trivial (P100052) +NOT Countable (P000057) AND Smaller than the continuum (P000058) +NOT Countable (P000057) AND NOT Čech complete (P000063) +NOT Countable (P000057) AND Trivial (P100052) +Smaller than the continuum (P000058) AND NOT Menger (P000066) +Smaller than the continuum (P000058) AND NOT Rothberger (P000068) +Smaller than the continuum (P000058) AND NOT Strategic Menger (P000069) +Smaller than the continuum (P000058) AND NOT Markov Menger (P000070) +Smaller than the continuum (P000058) AND NOT "$\\sigma$-relatively-compact" (P000071) +Smaller than the continuum (P000058) AND NOT 2-Markov Menger (P000072) +Smaller than the continuum (P000058) AND NOT Proximal (P000076) +Smaller than the continuum (P000058) AND NOT sequential (P000079) +Smaller than the continuum (P000058) AND Groupable topology (P000087) +Smaller than the continuum (P000058) AND NOT Hemicompact (P000111) +Smaller than the continuum (P000058) AND Trivial (P100052) +NOT Smaller than the continuum (P000058) AND NOT Čech complete (P000063) +NOT Smaller than the continuum (P000058) AND homogenous (P000086) +NOT Smaller than the continuum (P000058) AND Alexandrov (P000090) +NOT Smaller than the continuum (P000058) AND Trivial (P100052) +Smaller or same as the continuum (P000059) AND Trivial (P100052) +NOT Smaller or same as the continuum (P000059) AND Strongly Connected (P000060) +NOT Smaller or same as the continuum (P000059) AND Cozero complemented (P000061) +NOT Smaller or same as the continuum (P000059) AND NOT Cozero complemented (P000061) +NOT Smaller or same as the continuum (P000059) AND Weakly Lindelof (P000062) +NOT Smaller or same as the continuum (P000059) AND Čech complete (P000063) +NOT Smaller or same as the continuum (P000059) AND NOT Čech complete (P000063) +NOT Smaller or same as the continuum (P000059) AND Baire (P000064) +NOT Smaller or same as the continuum (P000059) AND NOT Baire (P000064) +NOT Smaller or same as the continuum (P000059) AND Menger (P000066) +NOT Smaller or same as the continuum (P000059) AND "$T_6$" (P000067) +NOT Smaller or same as the continuum (P000059) AND NOT "$T_6$" (P000067) +NOT Smaller or same as the continuum (P000059) AND Strategic Menger (P000069) +NOT Smaller or same as the continuum (P000059) AND Markov Menger (P000070) +NOT Smaller or same as the continuum (P000059) AND "$\\sigma$-relatively-compact" (P000071) +NOT Smaller or same as the continuum (P000059) AND 2-Markov Menger (P000072) +NOT Smaller or same as the continuum (P000059) AND NOT Sober (P000073) +NOT Smaller or same as the continuum (P000059) AND Proximal (P000076) +NOT Smaller or same as the continuum (P000059) AND NOT Proximal (P000076) +NOT Smaller or same as the continuum (P000059) AND Corson compact (P000077) +NOT Smaller or same as the continuum (P000059) AND NOT Corson compact (P000077) +NOT Smaller or same as the continuum (P000059) AND sequential (P000079) +NOT Smaller or same as the continuum (P000059) AND NOT sequential (P000079) +NOT Smaller or same as the continuum (P000059) AND Fréchet Urysohn (P000080) +NOT Smaller or same as the continuum (P000059) AND NOT Fréchet Urysohn (P000080) +NOT Smaller or same as the continuum (P000059) AND Countably tight (P000081) +NOT Smaller or same as the continuum (P000059) AND Locally metrizable (P000082) +NOT Smaller or same as the continuum (P000059) AND NOT Locally metrizable (P000082) +NOT Smaller or same as the continuum (P000059) AND NOT locally Hausdorff (P000084) +NOT Smaller or same as the continuum (P000059) AND homogenous (P000086) +NOT Smaller or same as the continuum (P000059) AND NOT homogenous (P000086) +NOT Smaller or same as the continuum (P000059) AND Groupable topology (P000087) +NOT Smaller or same as the continuum (P000059) AND Collectionwise normal (P000088) +NOT Smaller or same as the continuum (P000059) AND NOT Collectionwise normal (P000088) +NOT Smaller or same as the continuum (P000059) AND Alexandrov (P000090) +NOT Smaller or same as the continuum (P000059) AND Eberlein compact (P000091) +NOT Smaller or same as the continuum (P000059) AND NOT Eberlein compact (P000091) +NOT Smaller or same as the continuum (P000059) AND NOT Sequentially Hausdorff (P000099) +NOT Smaller or same as the continuum (P000059) AND NOT KC (P000100) +NOT Smaller or same as the continuum (P000059) AND Strongly KC (P000103) +NOT Smaller or same as the continuum (P000059) AND NOT Strongly KC (P000103) +NOT Smaller or same as the continuum (P000059) AND Hemicompact (P000111) +NOT Smaller or same as the continuum (P000059) AND Trivial (P100052) +Strongly Connected (P000060) AND Čech complete (P000063) +Strongly Connected (P000060) AND NOT Čech complete (P000063) +Strongly Connected (P000060) AND Baire (P000064) +Strongly Connected (P000060) AND Continuum-sized (P000065) +Strongly Connected (P000060) AND Sober (P000073) +Strongly Connected (P000060) AND Proximal (P000076) +Strongly Connected (P000060) AND NOT Proximal (P000076) +Strongly Connected (P000060) AND Corson compact (P000077) +Strongly Connected (P000060) AND NOT Corson compact (P000077) +Strongly Connected (P000060) AND NOT sequential (P000079) +Strongly Connected (P000060) AND NOT Fréchet Urysohn (P000080) +Strongly Connected (P000060) AND Locally metrizable (P000082) +Strongly Connected (P000060) AND NOT Locally metrizable (P000082) +Strongly Connected (P000060) AND locally Hausdorff (P000084) +Strongly Connected (P000060) AND homogenous (P000086) +Strongly Connected (P000060) AND Groupable topology (P000087) +Strongly Connected (P000060) AND Collectionwise normal (P000088) +Strongly Connected (P000060) AND Alexandrov (P000090) +Strongly Connected (P000060) AND Eberlein compact (P000091) +Strongly Connected (P000060) AND NOT Eberlein compact (P000091) +Strongly Connected (P000060) AND Sequentially Hausdorff (P000099) +Strongly Connected (P000060) AND KC (P000100) +Strongly Connected (P000060) AND NOT Anti-Hausdorff (P000101) +Strongly Connected (P000060) AND Strongly KC (P000103) +NOT Strongly Connected (P000060) AND Trivial (P100052) +Cozero complemented (P000061) AND NOT Strongly KC (P000103) +Cozero complemented (P000061) AND Trivial (P100052) +NOT Cozero complemented (P000061) AND Čech complete (P000063) +NOT Cozero complemented (P000061) AND NOT Čech complete (P000063) +NOT Cozero complemented (P000061) AND Baire (P000064) +NOT Cozero complemented (P000061) AND Continuum-sized (P000065) +NOT Cozero complemented (P000061) AND Proximal (P000076) +NOT Cozero complemented (P000061) AND NOT Proximal (P000076) +NOT Cozero complemented (P000061) AND Corson compact (P000077) +NOT Cozero complemented (P000061) AND NOT Corson compact (P000077) +NOT Cozero complemented (P000061) AND NOT sequential (P000079) +NOT Cozero complemented (P000061) AND NOT Fréchet Urysohn (P000080) +NOT Cozero complemented (P000061) AND Locally metrizable (P000082) +NOT Cozero complemented (P000061) AND NOT Locally metrizable (P000082) +NOT Cozero complemented (P000061) AND homogenous (P000086) +NOT Cozero complemented (P000061) AND Groupable topology (P000087) +NOT Cozero complemented (P000061) AND Collectionwise normal (P000088) +NOT Cozero complemented (P000061) AND Alexandrov (P000090) +NOT Cozero complemented (P000061) AND Eberlein compact (P000091) +NOT Cozero complemented (P000061) AND NOT Eberlein compact (P000091) +Čech complete (P000063) AND NOT Baire (P000064) +Čech complete (P000063) AND NOT Sober (P000073) +Čech complete (P000063) AND NOT locally Hausdorff (P000084) +Čech complete (P000063) AND Groupable topology (P000087) +Čech complete (P000063) AND NOT Sequentially Hausdorff (P000099) +Čech complete (P000063) AND NOT KC (P000100) +Čech complete (P000063) AND NOT Strongly KC (P000103) +Čech complete (P000063) AND Trivial (P100052) +NOT Čech complete (P000063) AND Baire (P000064) +NOT Čech complete (P000063) AND Continuum-sized (P000065) +NOT Čech complete (P000063) AND NOT Menger (P000066) +NOT Čech complete (P000063) AND "$T_6$" (P000067) +NOT Čech complete (P000063) AND NOT "$T_6$" (P000067) +NOT Čech complete (P000063) AND NOT Rothberger (P000068) +NOT Čech complete (P000063) AND NOT Strategic Menger (P000069) +NOT Čech complete (P000063) AND NOT Markov Menger (P000070) +NOT Čech complete (P000063) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT Čech complete (P000063) AND NOT 2-Markov Menger (P000072) +NOT Čech complete (P000063) AND NOT Sober (P000073) +NOT Čech complete (P000063) AND NOT Proximal (P000076) +NOT Čech complete (P000063) AND Corson compact (P000077) +NOT Čech complete (P000063) AND NOT Corson compact (P000077) +NOT Čech complete (P000063) AND Finite (P000078) +NOT Čech complete (P000063) AND NOT sequential (P000079) +NOT Čech complete (P000063) AND NOT Fréchet Urysohn (P000080) +NOT Čech complete (P000063) AND NOT Locally metrizable (P000082) +NOT Čech complete (P000063) AND NOT locally Hausdorff (P000084) +NOT Čech complete (P000063) AND homogenous (P000086) +NOT Čech complete (P000063) AND NOT homogenous (P000086) +NOT Čech complete (P000063) AND Groupable topology (P000087) +NOT Čech complete (P000063) AND NOT Collectionwise normal (P000088) +NOT Čech complete (P000063) AND Alexandrov (P000090) +NOT Čech complete (P000063) AND Eberlein compact (P000091) +NOT Čech complete (P000063) AND NOT Eberlein compact (P000091) +NOT Čech complete (P000063) AND NOT Sequentially Hausdorff (P000099) +NOT Čech complete (P000063) AND NOT KC (P000100) +NOT Čech complete (P000063) AND NOT Strongly KC (P000103) +NOT Čech complete (P000063) AND Hemicompact (P000111) +NOT Čech complete (P000063) AND NOT Hemicompact (P000111) +NOT Čech complete (P000063) AND NOT Topological manifold (P000124) +NOT Čech complete (P000063) AND Trivial (P100052) +Baire (P000064) AND NOT Sober (P000073) +Baire (P000064) AND NOT locally Hausdorff (P000084) +Baire (P000064) AND Groupable topology (P000087) +Baire (P000064) AND NOT Sequentially Hausdorff (P000099) +Baire (P000064) AND NOT KC (P000100) +Baire (P000064) AND NOT Strongly KC (P000103) +Baire (P000064) AND Trivial (P100052) +NOT Baire (P000064) AND NOT Menger (P000066) +NOT Baire (P000064) AND "$T_6$" (P000067) +NOT Baire (P000064) AND NOT Rothberger (P000068) +NOT Baire (P000064) AND NOT Strategic Menger (P000069) +NOT Baire (P000064) AND NOT Markov Menger (P000070) +NOT Baire (P000064) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT Baire (P000064) AND NOT 2-Markov Menger (P000072) +NOT Baire (P000064) AND NOT Proximal (P000076) +NOT Baire (P000064) AND Corson compact (P000077) +NOT Baire (P000064) AND NOT Corson compact (P000077) +NOT Baire (P000064) AND Finite (P000078) +NOT Baire (P000064) AND NOT sequential (P000079) +NOT Baire (P000064) AND NOT Fréchet Urysohn (P000080) +NOT Baire (P000064) AND homogenous (P000086) +NOT Baire (P000064) AND NOT homogenous (P000086) +NOT Baire (P000064) AND Alexandrov (P000090) +NOT Baire (P000064) AND Eberlein compact (P000091) +NOT Baire (P000064) AND NOT Eberlein compact (P000091) +NOT Baire (P000064) AND NOT Hemicompact (P000111) +NOT Baire (P000064) AND Trivial (P100052) +Continuum-sized (P000065) AND NOT Sober (P000073) +Continuum-sized (P000065) AND NOT Proximal (P000076) +Continuum-sized (P000065) AND Corson compact (P000077) +Continuum-sized (P000065) AND NOT Corson compact (P000077) +Continuum-sized (P000065) AND NOT sequential (P000079) +Continuum-sized (P000065) AND NOT Fréchet Urysohn (P000080) +Continuum-sized (P000065) AND NOT locally Hausdorff (P000084) +Continuum-sized (P000065) AND homogenous (P000086) +Continuum-sized (P000065) AND NOT Collectionwise normal (P000088) +Continuum-sized (P000065) AND Alexandrov (P000090) +Continuum-sized (P000065) AND Eberlein compact (P000091) +Continuum-sized (P000065) AND NOT Eberlein compact (P000091) +Continuum-sized (P000065) AND NOT Sequentially Hausdorff (P000099) +Continuum-sized (P000065) AND NOT KC (P000100) +Continuum-sized (P000065) AND NOT Strongly KC (P000103) +Continuum-sized (P000065) AND Trivial (P100052) +NOT Continuum-sized (P000065) AND NOT Proximal (P000076) +NOT Continuum-sized (P000065) AND NOT sequential (P000079) +NOT Continuum-sized (P000065) AND Groupable topology (P000087) +NOT Continuum-sized (P000065) AND Trivial (P100052) +Menger (P000066) AND NOT Rothberger (P000068) +NOT Menger (P000066) AND NOT Sober (P000073) +NOT Menger (P000066) AND NOT Proximal (P000076) +NOT Menger (P000066) AND Corson compact (P000077) +NOT Menger (P000066) AND NOT Corson compact (P000077) +NOT Menger (P000066) AND NOT sequential (P000079) +NOT Menger (P000066) AND NOT Fréchet Urysohn (P000080) +NOT Menger (P000066) AND Groupable topology (P000087) +NOT Menger (P000066) AND Eberlein compact (P000091) +NOT Menger (P000066) AND NOT Eberlein compact (P000091) +NOT Menger (P000066) AND Trivial (P100052) +"$T_6$" (P000067) AND NOT Proximal (P000076) +"$T_6$" (P000067) AND NOT Corson compact (P000077) +"$T_6$" (P000067) AND Finite (P000078) +"$T_6$" (P000067) AND NOT sequential (P000079) +"$T_6$" (P000067) AND NOT Fréchet Urysohn (P000080) +"$T_6$" (P000067) AND homogenous (P000086) +"$T_6$" (P000067) AND Groupable topology (P000087) +"$T_6$" (P000067) AND NOT Collectionwise normal (P000088) +"$T_6$" (P000067) AND Alexandrov (P000090) +"$T_6$" (P000067) AND NOT Eberlein compact (P000091) +"$T_6$" (P000067) AND NOT Strongly KC (P000103) +"$T_6$" (P000067) AND Trivial (P100052) +NOT "$T_6$" (P000067) AND Proximal (P000076) +NOT "$T_6$" (P000067) AND Corson compact (P000077) +NOT "$T_6$" (P000067) AND Locally metrizable (P000082) +NOT "$T_6$" (P000067) AND homogenous (P000086) +NOT "$T_6$" (P000067) AND Groupable topology (P000087) +NOT "$T_6$" (P000067) AND Alexandrov (P000090) +NOT "$T_6$" (P000067) AND Eberlein compact (P000091) +NOT Rothberger (P000068) AND Strategic Menger (P000069) +NOT Rothberger (P000068) AND Markov Menger (P000070) +NOT Rothberger (P000068) AND "$\\sigma$-relatively-compact" (P000071) +NOT Rothberger (P000068) AND 2-Markov Menger (P000072) +NOT Rothberger (P000068) AND NOT Sober (P000073) +NOT Rothberger (P000068) AND NOT Proximal (P000076) +NOT Rothberger (P000068) AND Corson compact (P000077) +NOT Rothberger (P000068) AND NOT Corson compact (P000077) +NOT Rothberger (P000068) AND Finite (P000078) +NOT Rothberger (P000068) AND NOT sequential (P000079) +NOT Rothberger (P000068) AND NOT Fréchet Urysohn (P000080) +NOT Rothberger (P000068) AND Groupable topology (P000087) +NOT Rothberger (P000068) AND Eberlein compact (P000091) +NOT Rothberger (P000068) AND NOT Eberlein compact (P000091) +NOT Rothberger (P000068) AND Hemicompact (P000111) +NOT Rothberger (P000068) AND Trivial (P100052) +Strategic Menger (P000069) AND NOT Markov Menger (P000070) +Strategic Menger (P000069) AND NOT "$\\sigma$-relatively-compact" (P000071) +Strategic Menger (P000069) AND NOT 2-Markov Menger (P000072) +Strategic Menger (P000069) AND NOT Hemicompact (P000111) +NOT Strategic Menger (P000069) AND NOT Sober (P000073) +NOT Strategic Menger (P000069) AND NOT Proximal (P000076) +NOT Strategic Menger (P000069) AND Corson compact (P000077) +NOT Strategic Menger (P000069) AND NOT Corson compact (P000077) +NOT Strategic Menger (P000069) AND NOT sequential (P000079) +NOT Strategic Menger (P000069) AND NOT Fréchet Urysohn (P000080) +NOT Strategic Menger (P000069) AND Groupable topology (P000087) +NOT Strategic Menger (P000069) AND Eberlein compact (P000091) +NOT Strategic Menger (P000069) AND NOT Eberlein compact (P000091) +NOT Strategic Menger (P000069) AND Trivial (P100052) +Markov Menger (P000070) AND NOT Hemicompact (P000111) +NOT Markov Menger (P000070) AND 2-Markov Menger (P000072) +NOT Markov Menger (P000070) AND NOT Sober (P000073) +NOT Markov Menger (P000070) AND NOT Proximal (P000076) +NOT Markov Menger (P000070) AND Corson compact (P000077) +NOT Markov Menger (P000070) AND NOT Corson compact (P000077) +NOT Markov Menger (P000070) AND NOT sequential (P000079) +NOT Markov Menger (P000070) AND NOT Fréchet Urysohn (P000080) +NOT Markov Menger (P000070) AND Groupable topology (P000087) +NOT Markov Menger (P000070) AND Eberlein compact (P000091) +NOT Markov Menger (P000070) AND NOT Eberlein compact (P000091) +NOT Markov Menger (P000070) AND Trivial (P100052) +"$\\sigma$-relatively-compact" (P000071) AND NOT Hemicompact (P000111) +NOT "$\\sigma$-relatively-compact" (P000071) AND 2-Markov Menger (P000072) +NOT "$\\sigma$-relatively-compact" (P000071) AND NOT Sober (P000073) +NOT "$\\sigma$-relatively-compact" (P000071) AND NOT Proximal (P000076) +NOT "$\\sigma$-relatively-compact" (P000071) AND Corson compact (P000077) +NOT "$\\sigma$-relatively-compact" (P000071) AND NOT Corson compact (P000077) +NOT "$\\sigma$-relatively-compact" (P000071) AND NOT sequential (P000079) +NOT "$\\sigma$-relatively-compact" (P000071) AND NOT Fréchet Urysohn (P000080) +NOT "$\\sigma$-relatively-compact" (P000071) AND Groupable topology (P000087) +NOT "$\\sigma$-relatively-compact" (P000071) AND Eberlein compact (P000091) +NOT "$\\sigma$-relatively-compact" (P000071) AND NOT Eberlein compact (P000091) +NOT "$\\sigma$-relatively-compact" (P000071) AND Trivial (P100052) +2-Markov Menger (P000072) AND NOT Hemicompact (P000111) +NOT 2-Markov Menger (P000072) AND NOT Sober (P000073) +NOT 2-Markov Menger (P000072) AND NOT Proximal (P000076) +NOT 2-Markov Menger (P000072) AND Corson compact (P000077) +NOT 2-Markov Menger (P000072) AND NOT Corson compact (P000077) +NOT 2-Markov Menger (P000072) AND NOT sequential (P000079) +NOT 2-Markov Menger (P000072) AND NOT Fréchet Urysohn (P000080) +NOT 2-Markov Menger (P000072) AND Groupable topology (P000087) +NOT 2-Markov Menger (P000072) AND Eberlein compact (P000091) +NOT 2-Markov Menger (P000072) AND NOT Eberlein compact (P000091) +NOT 2-Markov Menger (P000072) AND Trivial (P100052) +Sober (P000073) AND NOT locally Hausdorff (P000084) +Sober (P000073) AND NOT Sequentially Hausdorff (P000099) +Sober (P000073) AND NOT KC (P000100) +Sober (P000073) AND NOT Strongly KC (P000103) +Sober (P000073) AND Trivial (P100052) +NOT Sober (P000073) AND Proximal (P000076) +NOT Sober (P000073) AND NOT Proximal (P000076) +NOT Sober (P000073) AND Corson compact (P000077) +NOT Sober (P000073) AND NOT Corson compact (P000077) +NOT Sober (P000073) AND Finite (P000078) +NOT Sober (P000073) AND NOT sequential (P000079) +NOT Sober (P000073) AND NOT Fréchet Urysohn (P000080) +NOT Sober (P000073) AND Locally metrizable (P000082) +NOT Sober (P000073) AND NOT Locally metrizable (P000082) +NOT Sober (P000073) AND locally Hausdorff (P000084) +NOT Sober (P000073) AND homogenous (P000086) +NOT Sober (P000073) AND NOT homogenous (P000086) +NOT Sober (P000073) AND Groupable topology (P000087) +NOT Sober (P000073) AND Collectionwise normal (P000088) +NOT Sober (P000073) AND Alexandrov (P000090) +NOT Sober (P000073) AND Eberlein compact (P000091) +NOT Sober (P000073) AND NOT Eberlein compact (P000091) +NOT Sober (P000073) AND Sequentially Hausdorff (P000099) +NOT Sober (P000073) AND KC (P000100) +NOT Sober (P000073) AND NOT Anti-Hausdorff (P000101) +NOT Sober (P000073) AND Strongly KC (P000103) +NOT Spectral space (P000075) AND NOT Proximal (P000076) +NOT Spectral space (P000075) AND Corson compact (P000077) +NOT Spectral space (P000075) AND NOT Corson compact (P000077) +NOT Spectral space (P000075) AND Finite (P000078) +NOT Spectral space (P000075) AND NOT sequential (P000079) +NOT Spectral space (P000075) AND NOT Fréchet Urysohn (P000080) +NOT Spectral space (P000075) AND Eberlein compact (P000091) +NOT Spectral space (P000075) AND NOT Eberlein compact (P000091) +Proximal (P000076) AND NOT Corson compact (P000077) +Proximal (P000076) AND NOT sequential (P000079) +Proximal (P000076) AND NOT Fréchet Urysohn (P000080) +Proximal (P000076) AND NOT Locally metrizable (P000082) +Proximal (P000076) AND NOT locally Hausdorff (P000084) +Proximal (P000076) AND Groupable topology (P000087) +Proximal (P000076) AND NOT Collectionwise normal (P000088) +Proximal (P000076) AND NOT Eberlein compact (P000091) +Proximal (P000076) AND NOT Sequentially Hausdorff (P000099) +Proximal (P000076) AND NOT KC (P000100) +Proximal (P000076) AND NOT Strongly KC (P000103) +Proximal (P000076) AND Trivial (P100052) +NOT Proximal (P000076) AND Finite (P000078) +NOT Proximal (P000076) AND sequential (P000079) +NOT Proximal (P000076) AND Fréchet Urysohn (P000080) +NOT Proximal (P000076) AND Countably tight (P000081) +NOT Proximal (P000076) AND Locally metrizable (P000082) +NOT Proximal (P000076) AND NOT locally Hausdorff (P000084) +NOT Proximal (P000076) AND homogenous (P000086) +NOT Proximal (P000076) AND NOT homogenous (P000086) +NOT Proximal (P000076) AND Groupable topology (P000087) +NOT Proximal (P000076) AND NOT Collectionwise normal (P000088) +NOT Proximal (P000076) AND Alexandrov (P000090) +NOT Proximal (P000076) AND NOT Sequentially Hausdorff (P000099) +NOT Proximal (P000076) AND NOT KC (P000100) +NOT Proximal (P000076) AND Strongly KC (P000103) +NOT Proximal (P000076) AND NOT Strongly KC (P000103) +NOT Proximal (P000076) AND NOT Hemicompact (P000111) +NOT Proximal (P000076) AND Trivial (P100052) +Corson compact (P000077) AND NOT Locally metrizable (P000082) +Corson compact (P000077) AND NOT locally Hausdorff (P000084) +Corson compact (P000077) AND Groupable topology (P000087) +Corson compact (P000077) AND NOT Collectionwise normal (P000088) +Corson compact (P000077) AND NOT Eberlein compact (P000091) +Corson compact (P000077) AND NOT Sequentially Hausdorff (P000099) +Corson compact (P000077) AND NOT KC (P000100) +Corson compact (P000077) AND NOT Strongly KC (P000103) +Corson compact (P000077) AND NOT Hemicompact (P000111) +Corson compact (P000077) AND NOT Topological manifold (P000124) +Corson compact (P000077) AND Trivial (P100052) +NOT Corson compact (P000077) AND Finite (P000078) +NOT Corson compact (P000077) AND sequential (P000079) +NOT Corson compact (P000077) AND Fréchet Urysohn (P000080) +NOT Corson compact (P000077) AND Locally metrizable (P000082) +NOT Corson compact (P000077) AND NOT locally Hausdorff (P000084) +NOT Corson compact (P000077) AND homogenous (P000086) +NOT Corson compact (P000077) AND NOT homogenous (P000086) +NOT Corson compact (P000077) AND Groupable topology (P000087) +NOT Corson compact (P000077) AND NOT Collectionwise normal (P000088) +NOT Corson compact (P000077) AND Alexandrov (P000090) +NOT Corson compact (P000077) AND NOT Sequentially Hausdorff (P000099) +NOT Corson compact (P000077) AND NOT KC (P000100) +NOT Corson compact (P000077) AND Strongly KC (P000103) +NOT Corson compact (P000077) AND NOT Strongly KC (P000103) +NOT Corson compact (P000077) AND NOT Hemicompact (P000111) +NOT Corson compact (P000077) AND Trivial (P100052) +Finite (P000078) AND NOT Locally metrizable (P000082) +Finite (P000078) AND Groupable topology (P000087) +Finite (P000078) AND NOT Eberlein compact (P000091) +Finite (P000078) AND Trivial (P100052) +NOT Finite (P000078) AND Trivial (P100052) +sequential (P000079) AND NOT Fréchet Urysohn (P000080) +sequential (P000079) AND Groupable topology (P000087) +sequential (P000079) AND NOT Eberlein compact (P000091) +NOT sequential (P000079) AND Countably tight (P000081) +NOT sequential (P000079) AND Locally metrizable (P000082) +NOT sequential (P000079) AND NOT locally Hausdorff (P000084) +NOT sequential (P000079) AND homogenous (P000086) +NOT sequential (P000079) AND NOT homogenous (P000086) +NOT sequential (P000079) AND Groupable topology (P000087) +NOT sequential (P000079) AND NOT Collectionwise normal (P000088) +NOT sequential (P000079) AND Alexandrov (P000090) +NOT sequential (P000079) AND NOT Sequentially Hausdorff (P000099) +NOT sequential (P000079) AND NOT KC (P000100) +NOT sequential (P000079) AND Strongly KC (P000103) +NOT sequential (P000079) AND NOT Strongly KC (P000103) +NOT sequential (P000079) AND NOT Hemicompact (P000111) +NOT sequential (P000079) AND Trivial (P100052) +Fréchet Urysohn (P000080) AND Groupable topology (P000087) +Fréchet Urysohn (P000080) AND NOT Eberlein compact (P000091) +NOT Fréchet Urysohn (P000080) AND Locally metrizable (P000082) +NOT Fréchet Urysohn (P000080) AND NOT locally Hausdorff (P000084) +NOT Fréchet Urysohn (P000080) AND homogenous (P000086) +NOT Fréchet Urysohn (P000080) AND NOT homogenous (P000086) +NOT Fréchet Urysohn (P000080) AND Groupable topology (P000087) +NOT Fréchet Urysohn (P000080) AND NOT Collectionwise normal (P000088) +NOT Fréchet Urysohn (P000080) AND Alexandrov (P000090) +NOT Fréchet Urysohn (P000080) AND NOT Sequentially Hausdorff (P000099) +NOT Fréchet Urysohn (P000080) AND NOT KC (P000100) +NOT Fréchet Urysohn (P000080) AND Strongly KC (P000103) +NOT Fréchet Urysohn (P000080) AND NOT Strongly KC (P000103) +NOT Fréchet Urysohn (P000080) AND NOT Hemicompact (P000111) +NOT Fréchet Urysohn (P000080) AND Trivial (P100052) +Countably tight (P000081) AND Groupable topology (P000087) +Locally metrizable (P000082) AND NOT locally Hausdorff (P000084) +Locally metrizable (P000082) AND Groupable topology (P000087) +Locally metrizable (P000082) AND NOT Collectionwise normal (P000088) +Locally metrizable (P000082) AND NOT Eberlein compact (P000091) +Locally metrizable (P000082) AND NOT Sequentially Hausdorff (P000099) +Locally metrizable (P000082) AND NOT KC (P000100) +Locally metrizable (P000082) AND NOT Strongly KC (P000103) +Locally metrizable (P000082) AND Trivial (P100052) +NOT Locally metrizable (P000082) AND NOT locally Hausdorff (P000084) +NOT Locally metrizable (P000082) AND homogenous (P000086) +NOT Locally metrizable (P000082) AND NOT Collectionwise normal (P000088) +NOT Locally metrizable (P000082) AND Alexandrov (P000090) +NOT Locally metrizable (P000082) AND Eberlein compact (P000091) +NOT Locally metrizable (P000082) AND NOT Sequentially Hausdorff (P000099) +NOT Locally metrizable (P000082) AND NOT KC (P000100) +NOT Locally metrizable (P000082) AND NOT Strongly KC (P000103) +NOT Locally metrizable (P000082) AND Trivial (P100052) +locally Hausdorff (P000084) AND NOT Sequentially Hausdorff (P000099) +locally Hausdorff (P000084) AND NOT KC (P000100) +locally Hausdorff (P000084) AND NOT Strongly KC (P000103) +locally Hausdorff (P000084) AND Trivial (P100052) +NOT locally Hausdorff (P000084) AND homogenous (P000086) +NOT locally Hausdorff (P000084) AND Groupable topology (P000087) +NOT locally Hausdorff (P000084) AND Collectionwise normal (P000088) +NOT locally Hausdorff (P000084) AND Alexandrov (P000090) +NOT locally Hausdorff (P000084) AND Eberlein compact (P000091) +NOT locally Hausdorff (P000084) AND NOT Eberlein compact (P000091) +NOT locally Hausdorff (P000084) AND Sequentially Hausdorff (P000099) +NOT locally Hausdorff (P000084) AND KC (P000100) +NOT locally Hausdorff (P000084) AND NOT Anti-Hausdorff (P000101) +NOT locally Hausdorff (P000084) AND Strongly KC (P000103) +homogenous (P000086) AND Groupable topology (P000087) +homogenous (P000086) AND NOT Collectionwise normal (P000088) +homogenous (P000086) AND NOT Eberlein compact (P000091) +homogenous (P000086) AND NOT Sequentially Hausdorff (P000099) +homogenous (P000086) AND NOT KC (P000100) +homogenous (P000086) AND NOT Strongly KC (P000103) +homogenous (P000086) AND Trivial (P100052) +NOT homogenous (P000086) AND Groupable topology (P000087) +NOT homogenous (P000086) AND Alexandrov (P000090) +NOT homogenous (P000086) AND NOT Eberlein compact (P000091) +NOT homogenous (P000086) AND Trivial (P100052) +Groupable topology (P000087) AND NOT Collectionwise normal (P000088) +Groupable topology (P000087) AND Alexandrov (P000090) +Groupable topology (P000087) AND Eberlein compact (P000091) +Groupable topology (P000087) AND NOT Eberlein compact (P000091) +Groupable topology (P000087) AND NOT Sequentially Hausdorff (P000099) +Groupable topology (P000087) AND NOT KC (P000100) +Groupable topology (P000087) AND Strongly KC (P000103) +Groupable topology (P000087) AND NOT Strongly KC (P000103) +Groupable topology (P000087) AND Hemicompact (P000111) +Groupable topology (P000087) AND NOT Hemicompact (P000111) +Groupable topology (P000087) AND Trivial (P100052) +Collectionwise normal (P000088) AND NOT Sequentially Hausdorff (P000099) +Collectionwise normal (P000088) AND NOT KC (P000100) +Collectionwise normal (P000088) AND NOT Strongly KC (P000103) +Collectionwise normal (P000088) AND Trivial (P100052) +NOT Collectionwise normal (P000088) AND Alexandrov (P000090) +NOT Collectionwise normal (P000088) AND Eberlein compact (P000091) +NOT Collectionwise normal (P000088) AND NOT Eberlein compact (P000091) +NOT Collectionwise normal (P000088) AND Trivial (P100052) +Alexandrov (P000090) AND NOT Eberlein compact (P000091) +Alexandrov (P000090) AND NOT Sequentially Hausdorff (P000099) +Alexandrov (P000090) AND NOT KC (P000100) +Alexandrov (P000090) AND NOT Strongly KC (P000103) +Alexandrov (P000090) AND Trivial (P100052) +Eberlein compact (P000091) AND NOT Sequentially Hausdorff (P000099) +Eberlein compact (P000091) AND NOT KC (P000100) +Eberlein compact (P000091) AND NOT Strongly KC (P000103) +Eberlein compact (P000091) AND NOT Hemicompact (P000111) +Eberlein compact (P000091) AND NOT Topological manifold (P000124) +Eberlein compact (P000091) AND Trivial (P100052) +NOT Eberlein compact (P000091) AND NOT Sequentially Hausdorff (P000099) +NOT Eberlein compact (P000091) AND NOT KC (P000100) +NOT Eberlein compact (P000091) AND Strongly KC (P000103) +NOT Eberlein compact (P000091) AND NOT Strongly KC (P000103) +NOT Eberlein compact (P000091) AND NOT Hemicompact (P000111) +NOT Eberlein compact (P000091) AND Trivial (P100052) +Sequentially Hausdorff (P000099) AND NOT KC (P000100) +Sequentially Hausdorff (P000099) AND NOT Strongly KC (P000103) +Sequentially Hausdorff (P000099) AND Trivial (P100052) +NOT Sequentially Hausdorff (P000099) AND NOT Anti-Hausdorff (P000101) +KC (P000100) AND NOT Strongly KC (P000103) +KC (P000100) AND Trivial (P100052) +NOT KC (P000100) AND NOT Anti-Hausdorff (P000101) +NOT Anti-Hausdorff (P000101) AND NOT Strongly KC (P000103) +NOT Anti-Hausdorff (P000101) AND Trivial (P100052) +Strongly KC (P000103) AND Trivial (P100052) +NOT Hemicompact (P000111) AND Trivial (P100052) +"$T_0$" (P000001) AND NOT "$T_1$" (P000002) AND Semiregular (P000010) +"$T_0$" (P000001) AND NOT "$T_1$" (P000002) AND Regular (P000011) +"$T_0$" (P000001) AND NOT "$T_1$" (P000002) AND NOT Locally Compact (P000023) +"$T_0$" (P000001) AND NOT "$T_1$" (P000002) AND NOT First Countable (P000028) +"$T_0$" (P000001) AND NOT "$T_2$" (P000003) AND Semiregular (P000010) +"$T_0$" (P000001) AND NOT "$T_2$" (P000003) AND Regular (P000011) +"$T_0$" (P000001) AND NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Regular (P000011) +"$T_0$" (P000001) AND "$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) +"$T_0$" (P000001) AND "$T_3$" (P000005) AND Strongly Connected (P000060) +"$T_0$" (P000001) AND NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Zero Dimensional (P000050) +"$T_0$" (P000001) AND NOT Completely Hausdorff (P000009) AND Regular (P000011) +"$T_0$" (P000001) AND Semiregular (P000010) AND Hyperconnected (P000039) +"$T_0$" (P000001) AND Semiregular (P000010) AND Ultraconnected (P000040) +"$T_0$" (P000001) AND Semiregular (P000010) AND Strongly Connected (P000060) +"$T_0$" (P000001) AND Semiregular (P000010) AND NOT locally Hausdorff (P000084) +"$T_0$" (P000001) AND Semiregular (P000010) AND NOT Sequentially Hausdorff (P000099) +"$T_0$" (P000001) AND Semiregular (P000010) AND NOT KC (P000100) +"$T_0$" (P000001) AND Semiregular (P000010) AND NOT Strongly KC (P000103) +"$T_0$" (P000001) AND Regular (P000011) AND Hyperconnected (P000039) +"$T_0$" (P000001) AND Regular (P000011) AND Strongly Connected (P000060) +"$T_0$" (P000001) AND Regular (P000011) AND NOT locally Hausdorff (P000084) +"$T_0$" (P000001) AND Regular (P000011) AND NOT Sequentially Hausdorff (P000099) +"$T_0$" (P000001) AND Regular (P000011) AND NOT KC (P000100) +"$T_0$" (P000001) AND Regular (P000011) AND NOT Strongly KC (P000103) +"$T_0$" (P000001) AND Completely regular (P000012) AND NOT Cozero complemented (P000061) +"$T_0$" (P000001) AND Completely regular (P000012) AND NOT Strongly KC (P000103) +"$T_0$" (P000001) AND Compact (P000016) AND NOT Spectral space (P000075) +"$T_0$" (P000001) AND Weakly Countably Compact (P000021) AND NOT Pseudocompact (P000022) +"$T_0$" (P000001) AND NOT Locally Compact (P000023) AND NOT locally Hausdorff (P000084) +"$T_0$" (P000001) AND NOT Locally Compact (P000023) AND NOT Sequentially Hausdorff (P000099) +"$T_0$" (P000001) AND NOT Locally Compact (P000023) AND NOT KC (P000100) +"$T_0$" (P000001) AND NOT Locally Compact (P000023) AND NOT Strongly KC (P000103) +"$T_0$" (P000001) AND NOT First Countable (P000028) AND NOT locally Hausdorff (P000084) +"$T_0$" (P000001) AND NOT First Countable (P000028) AND NOT Sequentially Hausdorff (P000099) +"$T_0$" (P000001) AND NOT First Countable (P000028) AND NOT KC (P000100) +"$T_0$" (P000001) AND NOT First Countable (P000028) AND NOT Strongly KC (P000103) +"$T_0$" (P000001) AND Connected (P000036) AND Zero Dimensional (P000050) +"$T_0$" (P000001) AND Path Connected (P000037) AND Zero Dimensional (P000050) +"$T_0$" (P000001) AND Zero Dimensional (P000050) AND NOT Cozero complemented (P000061) +"$T_0$" (P000001) AND Zero Dimensional (P000050) AND NOT Strongly KC (P000103) +"$T_0$" (P000001) AND Countable (P000057) AND NOT Corson compact (P000077) +"$T_0$" (P000001) AND Countable (P000057) AND NOT Fréchet Urysohn (P000080) +"$T_0$" (P000001) AND Countable (P000057) AND NOT Eberlein compact (P000091) +"$T_0$" (P000001) AND Smaller than the continuum (P000058) AND NOT Corson compact (P000077) +"$T_0$" (P000001) AND Smaller than the continuum (P000058) AND NOT Fréchet Urysohn (P000080) +"$T_0$" (P000001) AND Smaller than the continuum (P000058) AND NOT Eberlein compact (P000091) +"$T_0$" (P000001) AND NOT Continuum-sized (P000065) AND NOT Corson compact (P000077) +"$T_0$" (P000001) AND NOT Continuum-sized (P000065) AND NOT Fréchet Urysohn (P000080) +"$T_0$" (P000001) AND NOT Continuum-sized (P000065) AND NOT Eberlein compact (P000091) +"$T_0$" (P000001) AND NOT Corson compact (P000077) AND Countably tight (P000081) +"$T_0$" (P000001) AND NOT Fréchet Urysohn (P000080) AND Countably tight (P000081) +"$T_0$" (P000001) AND Countably tight (P000081) AND NOT Eberlein compact (P000091) +NOT "$T_0$" (P000001) AND Semiregular (P000010) AND NOT Regular (P000011) +NOT "$T_0$" (P000001) AND Semiregular (P000010) AND NOT Completely regular (P000012) +NOT "$T_0$" (P000001) AND Semiregular (P000010) AND NOT Normal (P000013) +NOT "$T_0$" (P000001) AND Semiregular (P000010) AND NOT Completely normal (P000014) +NOT "$T_0$" (P000001) AND Semiregular (P000010) AND NOT "$\\sigma$-compact" (P000017) +NOT "$T_0$" (P000001) AND Semiregular (P000010) AND NOT Locally Compact (P000023) +NOT "$T_0$" (P000001) AND Semiregular (P000010) AND NOT Strongly Locally Compact (P000024) +NOT "$T_0$" (P000001) AND Semiregular (P000010) AND NOT "$\\sigma$-Locally Compact" (P000025) +NOT "$T_0$" (P000001) AND Semiregular (P000010) AND NOT Separable (P000026) +NOT "$T_0$" (P000001) AND Semiregular (P000010) AND NOT Second Countable (P000027) +NOT "$T_0$" (P000001) AND Semiregular (P000010) AND NOT First Countable (P000028) +NOT "$T_0$" (P000001) AND Semiregular (P000010) AND NOT Paracompact (P000030) +NOT "$T_0$" (P000001) AND Semiregular (P000010) AND NOT Metacompact (P000031) +NOT "$T_0$" (P000001) AND Semiregular (P000010) AND NOT Countably paracompact (P000032) +NOT "$T_0$" (P000001) AND Semiregular (P000010) AND NOT Fully normal (P000034) +NOT "$T_0$" (P000001) AND Semiregular (P000010) AND NOT Path Connected (P000037) +NOT "$T_0$" (P000001) AND Semiregular (P000010) AND NOT Locally Path Connected (P000042) +NOT "$T_0$" (P000001) AND Semiregular (P000010) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_0$" (P000001) AND Semiregular (P000010) AND NOT Collectionwise normal (P000088) +NOT "$T_0$" (P000001) AND Semiregular (P000010) AND NOT Hemicompact (P000111) +NOT "$T_0$" (P000001) AND Regular (P000011) AND NOT Completely regular (P000012) +NOT "$T_0$" (P000001) AND Regular (P000011) AND NOT Normal (P000013) +NOT "$T_0$" (P000001) AND Regular (P000011) AND NOT Completely normal (P000014) +NOT "$T_0$" (P000001) AND Regular (P000011) AND NOT "$\\sigma$-compact" (P000017) +NOT "$T_0$" (P000001) AND Regular (P000011) AND NOT Locally Compact (P000023) +NOT "$T_0$" (P000001) AND Regular (P000011) AND NOT Strongly Locally Compact (P000024) +NOT "$T_0$" (P000001) AND Regular (P000011) AND NOT "$\\sigma$-Locally Compact" (P000025) +NOT "$T_0$" (P000001) AND Regular (P000011) AND NOT Separable (P000026) +NOT "$T_0$" (P000001) AND Regular (P000011) AND NOT Second Countable (P000027) +NOT "$T_0$" (P000001) AND Regular (P000011) AND NOT First Countable (P000028) +NOT "$T_0$" (P000001) AND Regular (P000011) AND NOT Paracompact (P000030) +NOT "$T_0$" (P000001) AND Regular (P000011) AND NOT Metacompact (P000031) +NOT "$T_0$" (P000001) AND Regular (P000011) AND NOT Countably paracompact (P000032) +NOT "$T_0$" (P000001) AND Regular (P000011) AND NOT Fully normal (P000034) +NOT "$T_0$" (P000001) AND Regular (P000011) AND NOT Path Connected (P000037) +NOT "$T_0$" (P000001) AND Regular (P000011) AND NOT Locally Path Connected (P000042) +NOT "$T_0$" (P000001) AND Regular (P000011) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_0$" (P000001) AND Regular (P000011) AND NOT Collectionwise normal (P000088) +NOT "$T_0$" (P000001) AND Regular (P000011) AND NOT Hemicompact (P000111) +NOT "$T_0$" (P000001) AND NOT Regular (P000011) AND Compact (P000016) +NOT "$T_0$" (P000001) AND NOT Regular (P000011) AND Countably compact (P000019) +NOT "$T_0$" (P000001) AND NOT Regular (P000011) AND Sequentially Compact (P000020) +NOT "$T_0$" (P000001) AND NOT Regular (P000011) AND NOT Pseudocompact (P000022) +NOT "$T_0$" (P000001) AND NOT Regular (P000011) AND Strongly Locally Compact (P000024) +NOT "$T_0$" (P000001) AND NOT Regular (P000011) AND Paracompact (P000030) +NOT "$T_0$" (P000001) AND NOT Regular (P000011) AND Countably paracompact (P000032) +NOT "$T_0$" (P000001) AND NOT Regular (P000011) AND Fully normal (P000034) +NOT "$T_0$" (P000001) AND NOT Regular (P000011) AND NOT Hyperconnected (P000039) +NOT "$T_0$" (P000001) AND NOT Regular (P000011) AND Countable (P000057) +NOT "$T_0$" (P000001) AND NOT Regular (P000011) AND Smaller than the continuum (P000058) +NOT "$T_0$" (P000001) AND NOT Regular (P000011) AND NOT Strongly Connected (P000060) +NOT "$T_0$" (P000001) AND NOT Regular (P000011) AND NOT Continuum-sized (P000065) +NOT "$T_0$" (P000001) AND Completely regular (P000012) AND NOT Normal (P000013) +NOT "$T_0$" (P000001) AND Completely regular (P000012) AND NOT Completely normal (P000014) +NOT "$T_0$" (P000001) AND Completely regular (P000012) AND NOT "$\\sigma$-compact" (P000017) +NOT "$T_0$" (P000001) AND Completely regular (P000012) AND NOT Locally Compact (P000023) +NOT "$T_0$" (P000001) AND Completely regular (P000012) AND NOT Strongly Locally Compact (P000024) +NOT "$T_0$" (P000001) AND Completely regular (P000012) AND NOT "$\\sigma$-Locally Compact" (P000025) +NOT "$T_0$" (P000001) AND Completely regular (P000012) AND NOT Separable (P000026) +NOT "$T_0$" (P000001) AND Completely regular (P000012) AND NOT Second Countable (P000027) +NOT "$T_0$" (P000001) AND Completely regular (P000012) AND NOT First Countable (P000028) +NOT "$T_0$" (P000001) AND Completely regular (P000012) AND NOT Paracompact (P000030) +NOT "$T_0$" (P000001) AND Completely regular (P000012) AND NOT Metacompact (P000031) +NOT "$T_0$" (P000001) AND Completely regular (P000012) AND NOT Countably paracompact (P000032) +NOT "$T_0$" (P000001) AND Completely regular (P000012) AND NOT Fully normal (P000034) +NOT "$T_0$" (P000001) AND Completely regular (P000012) AND NOT Path Connected (P000037) +NOT "$T_0$" (P000001) AND Completely regular (P000012) AND NOT Locally Path Connected (P000042) +NOT "$T_0$" (P000001) AND Completely regular (P000012) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_0$" (P000001) AND Completely regular (P000012) AND NOT Collectionwise normal (P000088) +NOT "$T_0$" (P000001) AND Completely regular (P000012) AND NOT Hemicompact (P000111) +NOT "$T_0$" (P000001) AND NOT Completely regular (P000012) AND Compact (P000016) +NOT "$T_0$" (P000001) AND NOT Completely regular (P000012) AND Countably compact (P000019) +NOT "$T_0$" (P000001) AND NOT Completely regular (P000012) AND Sequentially Compact (P000020) +NOT "$T_0$" (P000001) AND NOT Completely regular (P000012) AND NOT Pseudocompact (P000022) +NOT "$T_0$" (P000001) AND NOT Completely regular (P000012) AND Strongly Locally Compact (P000024) +NOT "$T_0$" (P000001) AND NOT Completely regular (P000012) AND Paracompact (P000030) +NOT "$T_0$" (P000001) AND NOT Completely regular (P000012) AND Countably paracompact (P000032) +NOT "$T_0$" (P000001) AND NOT Completely regular (P000012) AND Fully normal (P000034) +NOT "$T_0$" (P000001) AND NOT Completely regular (P000012) AND NOT Hyperconnected (P000039) +NOT "$T_0$" (P000001) AND NOT Completely regular (P000012) AND Countable (P000057) +NOT "$T_0$" (P000001) AND NOT Completely regular (P000012) AND Smaller than the continuum (P000058) +NOT "$T_0$" (P000001) AND NOT Completely regular (P000012) AND NOT Strongly Connected (P000060) +NOT "$T_0$" (P000001) AND NOT Completely regular (P000012) AND NOT Continuum-sized (P000065) +NOT "$T_0$" (P000001) AND Normal (P000013) AND NOT Completely normal (P000014) +NOT "$T_0$" (P000001) AND Normal (P000013) AND NOT "$\\sigma$-compact" (P000017) +NOT "$T_0$" (P000001) AND Normal (P000013) AND NOT Locally Compact (P000023) +NOT "$T_0$" (P000001) AND Normal (P000013) AND NOT "$\\sigma$-Locally Compact" (P000025) +NOT "$T_0$" (P000001) AND Normal (P000013) AND NOT Separable (P000026) +NOT "$T_0$" (P000001) AND Normal (P000013) AND NOT Second Countable (P000027) +NOT "$T_0$" (P000001) AND Normal (P000013) AND NOT First Countable (P000028) +NOT "$T_0$" (P000001) AND Normal (P000013) AND NOT Path Connected (P000037) +NOT "$T_0$" (P000001) AND Normal (P000013) AND NOT Locally Path Connected (P000042) +NOT "$T_0$" (P000001) AND Normal (P000013) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_0$" (P000001) AND Normal (P000013) AND NOT Hemicompact (P000111) +NOT "$T_0$" (P000001) AND NOT Normal (P000013) AND Compact (P000016) +NOT "$T_0$" (P000001) AND NOT Normal (P000013) AND Countably compact (P000019) +NOT "$T_0$" (P000001) AND NOT Normal (P000013) AND Sequentially Compact (P000020) +NOT "$T_0$" (P000001) AND NOT Normal (P000013) AND NOT Pseudocompact (P000022) +NOT "$T_0$" (P000001) AND NOT Normal (P000013) AND Strongly Locally Compact (P000024) +NOT "$T_0$" (P000001) AND NOT Normal (P000013) AND Paracompact (P000030) +NOT "$T_0$" (P000001) AND NOT Normal (P000013) AND Countably paracompact (P000032) +NOT "$T_0$" (P000001) AND NOT Normal (P000013) AND Path Connected (P000037) +NOT "$T_0$" (P000001) AND NOT Normal (P000013) AND Arc connected (P000038) +NOT "$T_0$" (P000001) AND NOT Normal (P000013) AND NOT Hyperconnected (P000039) +NOT "$T_0$" (P000001) AND NOT Normal (P000013) AND Locally Path Connected (P000042) +NOT "$T_0$" (P000001) AND NOT Normal (P000013) AND Locally Arc Connected (P000043) +NOT "$T_0$" (P000001) AND NOT Normal (P000013) AND Zero Dimensional (P000050) +NOT "$T_0$" (P000001) AND NOT Normal (P000013) AND Countable (P000057) +NOT "$T_0$" (P000001) AND NOT Normal (P000013) AND Smaller than the continuum (P000058) +NOT "$T_0$" (P000001) AND NOT Normal (P000013) AND NOT Strongly Connected (P000060) +NOT "$T_0$" (P000001) AND NOT Normal (P000013) AND NOT Continuum-sized (P000065) +NOT "$T_0$" (P000001) AND Completely normal (P000014) AND NOT "$\\sigma$-compact" (P000017) +NOT "$T_0$" (P000001) AND Completely normal (P000014) AND NOT Locally Compact (P000023) +NOT "$T_0$" (P000001) AND Completely normal (P000014) AND NOT "$\\sigma$-Locally Compact" (P000025) +NOT "$T_0$" (P000001) AND Completely normal (P000014) AND NOT Separable (P000026) +NOT "$T_0$" (P000001) AND Completely normal (P000014) AND NOT Second Countable (P000027) +NOT "$T_0$" (P000001) AND Completely normal (P000014) AND NOT First Countable (P000028) +NOT "$T_0$" (P000001) AND Completely normal (P000014) AND NOT Path Connected (P000037) +NOT "$T_0$" (P000001) AND Completely normal (P000014) AND NOT Locally Path Connected (P000042) +NOT "$T_0$" (P000001) AND Completely normal (P000014) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_0$" (P000001) AND Completely normal (P000014) AND NOT Hemicompact (P000111) +NOT "$T_0$" (P000001) AND NOT Completely normal (P000014) AND Compact (P000016) +NOT "$T_0$" (P000001) AND NOT Completely normal (P000014) AND Countably compact (P000019) +NOT "$T_0$" (P000001) AND NOT Completely normal (P000014) AND Sequentially Compact (P000020) +NOT "$T_0$" (P000001) AND NOT Completely normal (P000014) AND NOT Pseudocompact (P000022) +NOT "$T_0$" (P000001) AND NOT Completely normal (P000014) AND Strongly Locally Compact (P000024) +NOT "$T_0$" (P000001) AND NOT Completely normal (P000014) AND Paracompact (P000030) +NOT "$T_0$" (P000001) AND NOT Completely normal (P000014) AND Countably paracompact (P000032) +NOT "$T_0$" (P000001) AND NOT Completely normal (P000014) AND Fully normal (P000034) +NOT "$T_0$" (P000001) AND NOT Completely normal (P000014) AND Path Connected (P000037) +NOT "$T_0$" (P000001) AND NOT Completely normal (P000014) AND Arc connected (P000038) +NOT "$T_0$" (P000001) AND NOT Completely normal (P000014) AND NOT Hyperconnected (P000039) +NOT "$T_0$" (P000001) AND NOT Completely normal (P000014) AND Ultraconnected (P000040) +NOT "$T_0$" (P000001) AND NOT Completely normal (P000014) AND Locally Path Connected (P000042) +NOT "$T_0$" (P000001) AND NOT Completely normal (P000014) AND Locally Arc Connected (P000043) +NOT "$T_0$" (P000001) AND NOT Completely normal (P000014) AND Zero Dimensional (P000050) +NOT "$T_0$" (P000001) AND NOT Completely normal (P000014) AND Countable (P000057) +NOT "$T_0$" (P000001) AND NOT Completely normal (P000014) AND Smaller than the continuum (P000058) +NOT "$T_0$" (P000001) AND NOT Completely normal (P000014) AND NOT Strongly Connected (P000060) +NOT "$T_0$" (P000001) AND NOT Completely normal (P000014) AND NOT Continuum-sized (P000065) +NOT "$T_0$" (P000001) AND Compact (P000016) AND NOT Sequentially Compact (P000020) +NOT "$T_0$" (P000001) AND Compact (P000016) AND NOT Separable (P000026) +NOT "$T_0$" (P000001) AND Compact (P000016) AND NOT Second Countable (P000027) +NOT "$T_0$" (P000001) AND Compact (P000016) AND NOT First Countable (P000028) +NOT "$T_0$" (P000001) AND Compact (P000016) AND NOT Fully normal (P000034) +NOT "$T_0$" (P000001) AND Compact (P000016) AND NOT Path Connected (P000037) +NOT "$T_0$" (P000001) AND Compact (P000016) AND Arc connected (P000038) +NOT "$T_0$" (P000001) AND Compact (P000016) AND NOT Arc connected (P000038) +NOT "$T_0$" (P000001) AND Compact (P000016) AND NOT Hyperconnected (P000039) +NOT "$T_0$" (P000001) AND Compact (P000016) AND NOT Ultraconnected (P000040) +NOT "$T_0$" (P000001) AND Compact (P000016) AND NOT Locally Path Connected (P000042) +NOT "$T_0$" (P000001) AND Compact (P000016) AND Locally Arc Connected (P000043) +NOT "$T_0$" (P000001) AND Compact (P000016) AND NOT Locally Arc Connected (P000043) +NOT "$T_0$" (P000001) AND Compact (P000016) AND NOT Zero Dimensional (P000050) +NOT "$T_0$" (P000001) AND Compact (P000016) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_0$" (P000001) AND Compact (P000016) AND NOT Non-meager (P000056) +NOT "$T_0$" (P000001) AND Compact (P000016) AND Countable (P000057) +NOT "$T_0$" (P000001) AND Compact (P000016) AND NOT Countable (P000057) +NOT "$T_0$" (P000001) AND Compact (P000016) AND Smaller than the continuum (P000058) +NOT "$T_0$" (P000001) AND Compact (P000016) AND NOT Smaller than the continuum (P000058) +NOT "$T_0$" (P000001) AND Compact (P000016) AND Smaller or same as the continuum (P000059) +NOT "$T_0$" (P000001) AND Compact (P000016) AND NOT Strongly Connected (P000060) +NOT "$T_0$" (P000001) AND Compact (P000016) AND NOT Baire (P000064) +NOT "$T_0$" (P000001) AND Compact (P000016) AND NOT Continuum-sized (P000065) +NOT "$T_0$" (P000001) AND Compact (P000016) AND NOT Finite (P000078) +NOT "$T_0$" (P000001) AND Compact (P000016) AND NOT Collectionwise normal (P000088) +NOT "$T_0$" (P000001) AND Compact (P000016) AND NOT Trivial (P100052) +NOT "$T_0$" (P000001) AND NOT Compact (P000016) AND Countably compact (P000019) +NOT "$T_0$" (P000001) AND NOT Compact (P000016) AND Sequentially Compact (P000020) +NOT "$T_0$" (P000001) AND "$\\sigma$-compact" (P000017) AND NOT Locally Compact (P000023) +NOT "$T_0$" (P000001) AND "$\\sigma$-compact" (P000017) AND NOT "$\\sigma$-Locally Compact" (P000025) +NOT "$T_0$" (P000001) AND "$\\sigma$-compact" (P000017) AND NOT Separable (P000026) +NOT "$T_0$" (P000001) AND "$\\sigma$-compact" (P000017) AND NOT Second Countable (P000027) +NOT "$T_0$" (P000001) AND "$\\sigma$-compact" (P000017) AND NOT First Countable (P000028) +NOT "$T_0$" (P000001) AND "$\\sigma$-compact" (P000017) AND NOT Path Connected (P000037) +NOT "$T_0$" (P000001) AND "$\\sigma$-compact" (P000017) AND NOT Locally Path Connected (P000042) +NOT "$T_0$" (P000001) AND "$\\sigma$-compact" (P000017) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-compact" (P000017) AND Countably compact (P000019) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-compact" (P000017) AND Sequentially Compact (P000020) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-compact" (P000017) AND NOT Pseudocompact (P000022) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-compact" (P000017) AND Locally Compact (P000023) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-compact" (P000017) AND Strongly Locally Compact (P000024) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-compact" (P000017) AND Separable (P000026) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-compact" (P000017) AND Second Countable (P000027) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-compact" (P000017) AND First Countable (P000028) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-compact" (P000017) AND Paracompact (P000030) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-compact" (P000017) AND Metacompact (P000031) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-compact" (P000017) AND Countably paracompact (P000032) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-compact" (P000017) AND Countably metacompact (P000033) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-compact" (P000017) AND Fully normal (P000034) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-compact" (P000017) AND Path Connected (P000037) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-compact" (P000017) AND Arc connected (P000038) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-compact" (P000017) AND NOT Hyperconnected (P000039) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-compact" (P000017) AND Locally Path Connected (P000042) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-compact" (P000017) AND Locally Arc Connected (P000043) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-compact" (P000017) AND Zero Dimensional (P000050) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-compact" (P000017) AND "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-compact" (P000017) AND NOT Smaller than the continuum (P000058) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-compact" (P000017) AND Smaller or same as the continuum (P000059) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-compact" (P000017) AND NOT Strongly Connected (P000060) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-compact" (P000017) AND NOT Continuum-sized (P000065) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-compact" (P000017) AND Menger (P000066) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-compact" (P000017) AND sequential (P000079) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-compact" (P000017) AND Fréchet Urysohn (P000080) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-compact" (P000017) AND Countably tight (P000081) +NOT "$T_0$" (P000001) AND Countably compact (P000019) AND NOT Sequentially Compact (P000020) +NOT "$T_0$" (P000001) AND Countably compact (P000019) AND NOT Locally Compact (P000023) +NOT "$T_0$" (P000001) AND Countably compact (P000019) AND NOT Strongly Locally Compact (P000024) +NOT "$T_0$" (P000001) AND Countably compact (P000019) AND NOT "$\\sigma$-Locally Compact" (P000025) +NOT "$T_0$" (P000001) AND Countably compact (P000019) AND NOT Separable (P000026) +NOT "$T_0$" (P000001) AND Countably compact (P000019) AND NOT Second Countable (P000027) +NOT "$T_0$" (P000001) AND Countably compact (P000019) AND NOT First Countable (P000028) +NOT "$T_0$" (P000001) AND Countably compact (P000019) AND NOT Paracompact (P000030) +NOT "$T_0$" (P000001) AND Countably compact (P000019) AND NOT Metacompact (P000031) +NOT "$T_0$" (P000001) AND Countably compact (P000019) AND NOT Fully normal (P000034) +NOT "$T_0$" (P000001) AND Countably compact (P000019) AND NOT Path Connected (P000037) +NOT "$T_0$" (P000001) AND Countably compact (P000019) AND Arc connected (P000038) +NOT "$T_0$" (P000001) AND Countably compact (P000019) AND NOT Arc connected (P000038) +NOT "$T_0$" (P000001) AND Countably compact (P000019) AND NOT Hyperconnected (P000039) +NOT "$T_0$" (P000001) AND Countably compact (P000019) AND NOT Ultraconnected (P000040) +NOT "$T_0$" (P000001) AND Countably compact (P000019) AND NOT Locally Path Connected (P000042) +NOT "$T_0$" (P000001) AND Countably compact (P000019) AND Locally Arc Connected (P000043) +NOT "$T_0$" (P000001) AND Countably compact (P000019) AND NOT Locally Arc Connected (P000043) +NOT "$T_0$" (P000001) AND Countably compact (P000019) AND NOT Zero Dimensional (P000050) +NOT "$T_0$" (P000001) AND Countably compact (P000019) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_0$" (P000001) AND Countably compact (P000019) AND NOT Non-meager (P000056) +NOT "$T_0$" (P000001) AND Countably compact (P000019) AND Countable (P000057) +NOT "$T_0$" (P000001) AND Countably compact (P000019) AND NOT Countable (P000057) +NOT "$T_0$" (P000001) AND Countably compact (P000019) AND Smaller than the continuum (P000058) +NOT "$T_0$" (P000001) AND Countably compact (P000019) AND NOT Smaller than the continuum (P000058) +NOT "$T_0$" (P000001) AND Countably compact (P000019) AND Smaller or same as the continuum (P000059) +NOT "$T_0$" (P000001) AND Countably compact (P000019) AND NOT Strongly Connected (P000060) +NOT "$T_0$" (P000001) AND Countably compact (P000019) AND NOT Baire (P000064) +NOT "$T_0$" (P000001) AND Countably compact (P000019) AND NOT Continuum-sized (P000065) +NOT "$T_0$" (P000001) AND Countably compact (P000019) AND NOT Finite (P000078) +NOT "$T_0$" (P000001) AND Countably compact (P000019) AND NOT Collectionwise normal (P000088) +NOT "$T_0$" (P000001) AND Countably compact (P000019) AND NOT Hemicompact (P000111) +NOT "$T_0$" (P000001) AND Countably compact (P000019) AND NOT Trivial (P100052) +NOT "$T_0$" (P000001) AND Sequentially Compact (P000020) AND NOT Locally Compact (P000023) +NOT "$T_0$" (P000001) AND Sequentially Compact (P000020) AND NOT Strongly Locally Compact (P000024) +NOT "$T_0$" (P000001) AND Sequentially Compact (P000020) AND NOT "$\\sigma$-Locally Compact" (P000025) +NOT "$T_0$" (P000001) AND Sequentially Compact (P000020) AND NOT Separable (P000026) +NOT "$T_0$" (P000001) AND Sequentially Compact (P000020) AND NOT Second Countable (P000027) +NOT "$T_0$" (P000001) AND Sequentially Compact (P000020) AND NOT First Countable (P000028) +NOT "$T_0$" (P000001) AND Sequentially Compact (P000020) AND NOT Paracompact (P000030) +NOT "$T_0$" (P000001) AND Sequentially Compact (P000020) AND NOT Metacompact (P000031) +NOT "$T_0$" (P000001) AND Sequentially Compact (P000020) AND NOT Fully normal (P000034) +NOT "$T_0$" (P000001) AND Sequentially Compact (P000020) AND NOT Path Connected (P000037) +NOT "$T_0$" (P000001) AND Sequentially Compact (P000020) AND Arc connected (P000038) +NOT "$T_0$" (P000001) AND Sequentially Compact (P000020) AND NOT Arc connected (P000038) +NOT "$T_0$" (P000001) AND Sequentially Compact (P000020) AND NOT Hyperconnected (P000039) +NOT "$T_0$" (P000001) AND Sequentially Compact (P000020) AND NOT Ultraconnected (P000040) +NOT "$T_0$" (P000001) AND Sequentially Compact (P000020) AND NOT Locally Path Connected (P000042) +NOT "$T_0$" (P000001) AND Sequentially Compact (P000020) AND Locally Arc Connected (P000043) +NOT "$T_0$" (P000001) AND Sequentially Compact (P000020) AND NOT Locally Arc Connected (P000043) +NOT "$T_0$" (P000001) AND Sequentially Compact (P000020) AND NOT Zero Dimensional (P000050) +NOT "$T_0$" (P000001) AND Sequentially Compact (P000020) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_0$" (P000001) AND Sequentially Compact (P000020) AND NOT Non-meager (P000056) +NOT "$T_0$" (P000001) AND Sequentially Compact (P000020) AND Countable (P000057) +NOT "$T_0$" (P000001) AND Sequentially Compact (P000020) AND NOT Countable (P000057) +NOT "$T_0$" (P000001) AND Sequentially Compact (P000020) AND Smaller than the continuum (P000058) +NOT "$T_0$" (P000001) AND Sequentially Compact (P000020) AND NOT Smaller than the continuum (P000058) +NOT "$T_0$" (P000001) AND Sequentially Compact (P000020) AND Smaller or same as the continuum (P000059) +NOT "$T_0$" (P000001) AND Sequentially Compact (P000020) AND NOT Strongly Connected (P000060) +NOT "$T_0$" (P000001) AND Sequentially Compact (P000020) AND NOT Baire (P000064) +NOT "$T_0$" (P000001) AND Sequentially Compact (P000020) AND NOT Continuum-sized (P000065) +NOT "$T_0$" (P000001) AND Sequentially Compact (P000020) AND NOT Finite (P000078) +NOT "$T_0$" (P000001) AND Sequentially Compact (P000020) AND NOT Collectionwise normal (P000088) +NOT "$T_0$" (P000001) AND Sequentially Compact (P000020) AND NOT Hemicompact (P000111) +NOT "$T_0$" (P000001) AND Sequentially Compact (P000020) AND NOT Trivial (P100052) +NOT "$T_0$" (P000001) AND Pseudocompact (P000022) AND NOT Hyperconnected (P000039) +NOT "$T_0$" (P000001) AND Pseudocompact (P000022) AND Countable (P000057) +NOT "$T_0$" (P000001) AND Pseudocompact (P000022) AND Smaller than the continuum (P000058) +NOT "$T_0$" (P000001) AND Pseudocompact (P000022) AND NOT Strongly Connected (P000060) +NOT "$T_0$" (P000001) AND Pseudocompact (P000022) AND NOT Continuum-sized (P000065) +NOT "$T_0$" (P000001) AND NOT Pseudocompact (P000022) AND NOT Locally Compact (P000023) +NOT "$T_0$" (P000001) AND NOT Pseudocompact (P000022) AND NOT Strongly Locally Compact (P000024) +NOT "$T_0$" (P000001) AND NOT Pseudocompact (P000022) AND NOT "$\\sigma$-Locally Compact" (P000025) +NOT "$T_0$" (P000001) AND NOT Pseudocompact (P000022) AND NOT Separable (P000026) +NOT "$T_0$" (P000001) AND NOT Pseudocompact (P000022) AND NOT Second Countable (P000027) +NOT "$T_0$" (P000001) AND NOT Pseudocompact (P000022) AND NOT First Countable (P000028) +NOT "$T_0$" (P000001) AND NOT Pseudocompact (P000022) AND NOT Paracompact (P000030) +NOT "$T_0$" (P000001) AND NOT Pseudocompact (P000022) AND NOT Metacompact (P000031) +NOT "$T_0$" (P000001) AND NOT Pseudocompact (P000022) AND NOT Countably paracompact (P000032) +NOT "$T_0$" (P000001) AND NOT Pseudocompact (P000022) AND NOT Countably metacompact (P000033) +NOT "$T_0$" (P000001) AND NOT Pseudocompact (P000022) AND NOT Fully normal (P000034) +NOT "$T_0$" (P000001) AND NOT Pseudocompact (P000022) AND NOT Path Connected (P000037) +NOT "$T_0$" (P000001) AND NOT Pseudocompact (P000022) AND NOT Locally Path Connected (P000042) +NOT "$T_0$" (P000001) AND NOT Pseudocompact (P000022) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_0$" (P000001) AND NOT Pseudocompact (P000022) AND NOT Collectionwise normal (P000088) +NOT "$T_0$" (P000001) AND NOT Pseudocompact (P000022) AND NOT Hemicompact (P000111) +NOT "$T_0$" (P000001) AND Locally Compact (P000023) AND NOT "$\\sigma$-Locally Compact" (P000025) +NOT "$T_0$" (P000001) AND Locally Compact (P000023) AND NOT Separable (P000026) +NOT "$T_0$" (P000001) AND Locally Compact (P000023) AND NOT Second Countable (P000027) +NOT "$T_0$" (P000001) AND Locally Compact (P000023) AND NOT First Countable (P000028) +NOT "$T_0$" (P000001) AND Locally Compact (P000023) AND NOT Path Connected (P000037) +NOT "$T_0$" (P000001) AND Locally Compact (P000023) AND NOT Locally Path Connected (P000042) +NOT "$T_0$" (P000001) AND Locally Compact (P000023) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_0$" (P000001) AND Locally Compact (P000023) AND NOT Hemicompact (P000111) +NOT "$T_0$" (P000001) AND NOT Locally Compact (P000023) AND Separable (P000026) +NOT "$T_0$" (P000001) AND NOT Locally Compact (P000023) AND Second Countable (P000027) +NOT "$T_0$" (P000001) AND NOT Locally Compact (P000023) AND First Countable (P000028) +NOT "$T_0$" (P000001) AND NOT Locally Compact (P000023) AND Paracompact (P000030) +NOT "$T_0$" (P000001) AND NOT Locally Compact (P000023) AND Metacompact (P000031) +NOT "$T_0$" (P000001) AND NOT Locally Compact (P000023) AND Countably paracompact (P000032) +NOT "$T_0$" (P000001) AND NOT Locally Compact (P000023) AND Countably metacompact (P000033) +NOT "$T_0$" (P000001) AND NOT Locally Compact (P000023) AND Fully normal (P000034) +NOT "$T_0$" (P000001) AND NOT Locally Compact (P000023) AND Path Connected (P000037) +NOT "$T_0$" (P000001) AND NOT Locally Compact (P000023) AND Arc connected (P000038) +NOT "$T_0$" (P000001) AND NOT Locally Compact (P000023) AND NOT Hyperconnected (P000039) +NOT "$T_0$" (P000001) AND NOT Locally Compact (P000023) AND Locally Path Connected (P000042) +NOT "$T_0$" (P000001) AND NOT Locally Compact (P000023) AND Locally Arc Connected (P000043) +NOT "$T_0$" (P000001) AND NOT Locally Compact (P000023) AND Zero Dimensional (P000050) +NOT "$T_0$" (P000001) AND NOT Locally Compact (P000023) AND "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_0$" (P000001) AND NOT Locally Compact (P000023) AND NOT Non-meager (P000056) +NOT "$T_0$" (P000001) AND NOT Locally Compact (P000023) AND Countable (P000057) +NOT "$T_0$" (P000001) AND NOT Locally Compact (P000023) AND Smaller than the continuum (P000058) +NOT "$T_0$" (P000001) AND NOT Locally Compact (P000023) AND NOT Smaller than the continuum (P000058) +NOT "$T_0$" (P000001) AND NOT Locally Compact (P000023) AND Smaller or same as the continuum (P000059) +NOT "$T_0$" (P000001) AND NOT Locally Compact (P000023) AND NOT Strongly Connected (P000060) +NOT "$T_0$" (P000001) AND NOT Locally Compact (P000023) AND NOT Baire (P000064) +NOT "$T_0$" (P000001) AND NOT Locally Compact (P000023) AND NOT Continuum-sized (P000065) +NOT "$T_0$" (P000001) AND NOT Locally Compact (P000023) AND Menger (P000066) +NOT "$T_0$" (P000001) AND NOT Locally Compact (P000023) AND Strategic Menger (P000069) +NOT "$T_0$" (P000001) AND NOT Locally Compact (P000023) AND Markov Menger (P000070) +NOT "$T_0$" (P000001) AND NOT Locally Compact (P000023) AND "$\\sigma$-relatively-compact" (P000071) +NOT "$T_0$" (P000001) AND NOT Locally Compact (P000023) AND 2-Markov Menger (P000072) +NOT "$T_0$" (P000001) AND NOT Locally Compact (P000023) AND sequential (P000079) +NOT "$T_0$" (P000001) AND NOT Locally Compact (P000023) AND Fréchet Urysohn (P000080) +NOT "$T_0$" (P000001) AND NOT Locally Compact (P000023) AND Countably tight (P000081) +NOT "$T_0$" (P000001) AND Strongly Locally Compact (P000024) AND NOT "$\\sigma$-Locally Compact" (P000025) +NOT "$T_0$" (P000001) AND Strongly Locally Compact (P000024) AND NOT Separable (P000026) +NOT "$T_0$" (P000001) AND Strongly Locally Compact (P000024) AND NOT Second Countable (P000027) +NOT "$T_0$" (P000001) AND Strongly Locally Compact (P000024) AND NOT First Countable (P000028) +NOT "$T_0$" (P000001) AND Strongly Locally Compact (P000024) AND NOT Paracompact (P000030) +NOT "$T_0$" (P000001) AND Strongly Locally Compact (P000024) AND NOT Metacompact (P000031) +NOT "$T_0$" (P000001) AND Strongly Locally Compact (P000024) AND NOT Countably paracompact (P000032) +NOT "$T_0$" (P000001) AND Strongly Locally Compact (P000024) AND NOT Fully normal (P000034) +NOT "$T_0$" (P000001) AND Strongly Locally Compact (P000024) AND NOT Path Connected (P000037) +NOT "$T_0$" (P000001) AND Strongly Locally Compact (P000024) AND NOT Locally Path Connected (P000042) +NOT "$T_0$" (P000001) AND Strongly Locally Compact (P000024) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_0$" (P000001) AND Strongly Locally Compact (P000024) AND NOT Collectionwise normal (P000088) +NOT "$T_0$" (P000001) AND Strongly Locally Compact (P000024) AND NOT Hemicompact (P000111) +NOT "$T_0$" (P000001) AND NOT Strongly Locally Compact (P000024) AND Paracompact (P000030) +NOT "$T_0$" (P000001) AND NOT Strongly Locally Compact (P000024) AND Countably paracompact (P000032) +NOT "$T_0$" (P000001) AND NOT Strongly Locally Compact (P000024) AND Fully normal (P000034) +NOT "$T_0$" (P000001) AND NOT Strongly Locally Compact (P000024) AND NOT Hyperconnected (P000039) +NOT "$T_0$" (P000001) AND NOT Strongly Locally Compact (P000024) AND Zero Dimensional (P000050) +NOT "$T_0$" (P000001) AND NOT Strongly Locally Compact (P000024) AND Countable (P000057) +NOT "$T_0$" (P000001) AND NOT Strongly Locally Compact (P000024) AND Smaller than the continuum (P000058) +NOT "$T_0$" (P000001) AND NOT Strongly Locally Compact (P000024) AND NOT Strongly Connected (P000060) +NOT "$T_0$" (P000001) AND NOT Strongly Locally Compact (P000024) AND NOT Continuum-sized (P000065) +NOT "$T_0$" (P000001) AND "$\\sigma$-Locally Compact" (P000025) AND NOT Separable (P000026) +NOT "$T_0$" (P000001) AND "$\\sigma$-Locally Compact" (P000025) AND NOT Second Countable (P000027) +NOT "$T_0$" (P000001) AND "$\\sigma$-Locally Compact" (P000025) AND NOT First Countable (P000028) +NOT "$T_0$" (P000001) AND "$\\sigma$-Locally Compact" (P000025) AND NOT Path Connected (P000037) +NOT "$T_0$" (P000001) AND "$\\sigma$-Locally Compact" (P000025) AND NOT Locally Path Connected (P000042) +NOT "$T_0$" (P000001) AND "$\\sigma$-Locally Compact" (P000025) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Separable (P000026) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Second Countable (P000027) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-Locally Compact" (P000025) AND First Countable (P000028) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Paracompact (P000030) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Metacompact (P000031) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Countably paracompact (P000032) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Countably metacompact (P000033) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Fully normal (P000034) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Path Connected (P000037) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Arc connected (P000038) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-Locally Compact" (P000025) AND NOT Hyperconnected (P000039) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Locally Path Connected (P000042) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Locally Arc Connected (P000043) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Zero Dimensional (P000050) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-Locally Compact" (P000025) AND "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-Locally Compact" (P000025) AND NOT Non-meager (P000056) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Countable (P000057) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Smaller than the continuum (P000058) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-Locally Compact" (P000025) AND NOT Smaller than the continuum (P000058) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Smaller or same as the continuum (P000059) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-Locally Compact" (P000025) AND NOT Strongly Connected (P000060) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-Locally Compact" (P000025) AND NOT Baire (P000064) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-Locally Compact" (P000025) AND NOT Continuum-sized (P000065) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Menger (P000066) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Strategic Menger (P000069) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Markov Menger (P000070) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-Locally Compact" (P000025) AND "$\\sigma$-relatively-compact" (P000071) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-Locally Compact" (P000025) AND 2-Markov Menger (P000072) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-Locally Compact" (P000025) AND sequential (P000079) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Fréchet Urysohn (P000080) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Countably tight (P000081) +NOT "$T_0$" (P000001) AND Separable (P000026) AND NOT Second Countable (P000027) +NOT "$T_0$" (P000001) AND Separable (P000026) AND NOT First Countable (P000028) +NOT "$T_0$" (P000001) AND Separable (P000026) AND NOT Path Connected (P000037) +NOT "$T_0$" (P000001) AND Separable (P000026) AND NOT Locally Path Connected (P000042) +NOT "$T_0$" (P000001) AND Separable (P000026) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_0$" (P000001) AND Separable (P000026) AND NOT Hemicompact (P000111) +NOT "$T_0$" (P000001) AND NOT Separable (P000026) AND First Countable (P000028) +NOT "$T_0$" (P000001) AND NOT Separable (P000026) AND Paracompact (P000030) +NOT "$T_0$" (P000001) AND NOT Separable (P000026) AND Metacompact (P000031) +NOT "$T_0$" (P000001) AND NOT Separable (P000026) AND Countably paracompact (P000032) +NOT "$T_0$" (P000001) AND NOT Separable (P000026) AND Countably metacompact (P000033) +NOT "$T_0$" (P000001) AND NOT Separable (P000026) AND Fully normal (P000034) +NOT "$T_0$" (P000001) AND NOT Separable (P000026) AND Path Connected (P000037) +NOT "$T_0$" (P000001) AND NOT Separable (P000026) AND Arc connected (P000038) +NOT "$T_0$" (P000001) AND NOT Separable (P000026) AND NOT Hyperconnected (P000039) +NOT "$T_0$" (P000001) AND NOT Separable (P000026) AND Ultraconnected (P000040) +NOT "$T_0$" (P000001) AND NOT Separable (P000026) AND Locally Path Connected (P000042) +NOT "$T_0$" (P000001) AND NOT Separable (P000026) AND Locally Arc Connected (P000043) +NOT "$T_0$" (P000001) AND NOT Separable (P000026) AND Zero Dimensional (P000050) +NOT "$T_0$" (P000001) AND NOT Separable (P000026) AND "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_0$" (P000001) AND NOT Separable (P000026) AND NOT Smaller than the continuum (P000058) +NOT "$T_0$" (P000001) AND NOT Separable (P000026) AND Smaller or same as the continuum (P000059) +NOT "$T_0$" (P000001) AND NOT Separable (P000026) AND NOT Strongly Connected (P000060) +NOT "$T_0$" (P000001) AND NOT Separable (P000026) AND NOT Continuum-sized (P000065) +NOT "$T_0$" (P000001) AND NOT Separable (P000026) AND Menger (P000066) +NOT "$T_0$" (P000001) AND NOT Separable (P000026) AND Strategic Menger (P000069) +NOT "$T_0$" (P000001) AND NOT Separable (P000026) AND Markov Menger (P000070) +NOT "$T_0$" (P000001) AND NOT Separable (P000026) AND "$\\sigma$-relatively-compact" (P000071) +NOT "$T_0$" (P000001) AND NOT Separable (P000026) AND 2-Markov Menger (P000072) +NOT "$T_0$" (P000001) AND NOT Separable (P000026) AND sequential (P000079) +NOT "$T_0$" (P000001) AND NOT Separable (P000026) AND Fréchet Urysohn (P000080) +NOT "$T_0$" (P000001) AND NOT Separable (P000026) AND Countably tight (P000081) +NOT "$T_0$" (P000001) AND NOT Separable (P000026) AND Hemicompact (P000111) +NOT "$T_0$" (P000001) AND Second Countable (P000027) AND NOT Path Connected (P000037) +NOT "$T_0$" (P000001) AND Second Countable (P000027) AND NOT Locally Path Connected (P000042) +NOT "$T_0$" (P000001) AND Second Countable (P000027) AND NOT Hemicompact (P000111) +NOT "$T_0$" (P000001) AND NOT Second Countable (P000027) AND First Countable (P000028) +NOT "$T_0$" (P000001) AND NOT Second Countable (P000027) AND Paracompact (P000030) +NOT "$T_0$" (P000001) AND NOT Second Countable (P000027) AND Metacompact (P000031) +NOT "$T_0$" (P000001) AND NOT Second Countable (P000027) AND Countably paracompact (P000032) +NOT "$T_0$" (P000001) AND NOT Second Countable (P000027) AND Countably metacompact (P000033) +NOT "$T_0$" (P000001) AND NOT Second Countable (P000027) AND Fully normal (P000034) +NOT "$T_0$" (P000001) AND NOT Second Countable (P000027) AND Path Connected (P000037) +NOT "$T_0$" (P000001) AND NOT Second Countable (P000027) AND Arc connected (P000038) +NOT "$T_0$" (P000001) AND NOT Second Countable (P000027) AND NOT Hyperconnected (P000039) +NOT "$T_0$" (P000001) AND NOT Second Countable (P000027) AND Ultraconnected (P000040) +NOT "$T_0$" (P000001) AND NOT Second Countable (P000027) AND Locally Path Connected (P000042) +NOT "$T_0$" (P000001) AND NOT Second Countable (P000027) AND Locally Arc Connected (P000043) +NOT "$T_0$" (P000001) AND NOT Second Countable (P000027) AND Zero Dimensional (P000050) +NOT "$T_0$" (P000001) AND NOT Second Countable (P000027) AND "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_0$" (P000001) AND NOT Second Countable (P000027) AND NOT Non-meager (P000056) +NOT "$T_0$" (P000001) AND NOT Second Countable (P000027) AND Countable (P000057) +NOT "$T_0$" (P000001) AND NOT Second Countable (P000027) AND Smaller than the continuum (P000058) +NOT "$T_0$" (P000001) AND NOT Second Countable (P000027) AND NOT Smaller than the continuum (P000058) +NOT "$T_0$" (P000001) AND NOT Second Countable (P000027) AND Smaller or same as the continuum (P000059) +NOT "$T_0$" (P000001) AND NOT Second Countable (P000027) AND NOT Strongly Connected (P000060) +NOT "$T_0$" (P000001) AND NOT Second Countable (P000027) AND NOT Baire (P000064) +NOT "$T_0$" (P000001) AND NOT Second Countable (P000027) AND NOT Continuum-sized (P000065) +NOT "$T_0$" (P000001) AND NOT Second Countable (P000027) AND Menger (P000066) +NOT "$T_0$" (P000001) AND NOT Second Countable (P000027) AND Strategic Menger (P000069) +NOT "$T_0$" (P000001) AND NOT Second Countable (P000027) AND Markov Menger (P000070) +NOT "$T_0$" (P000001) AND NOT Second Countable (P000027) AND "$\\sigma$-relatively-compact" (P000071) +NOT "$T_0$" (P000001) AND NOT Second Countable (P000027) AND 2-Markov Menger (P000072) +NOT "$T_0$" (P000001) AND NOT Second Countable (P000027) AND sequential (P000079) +NOT "$T_0$" (P000001) AND NOT Second Countable (P000027) AND Fréchet Urysohn (P000080) +NOT "$T_0$" (P000001) AND NOT Second Countable (P000027) AND Countably tight (P000081) +NOT "$T_0$" (P000001) AND NOT Second Countable (P000027) AND Hemicompact (P000111) +NOT "$T_0$" (P000001) AND First Countable (P000028) AND NOT Path Connected (P000037) +NOT "$T_0$" (P000001) AND First Countable (P000028) AND NOT Locally Path Connected (P000042) +NOT "$T_0$" (P000001) AND First Countable (P000028) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_0$" (P000001) AND First Countable (P000028) AND NOT Hemicompact (P000111) +NOT "$T_0$" (P000001) AND NOT First Countable (P000028) AND Paracompact (P000030) +NOT "$T_0$" (P000001) AND NOT First Countable (P000028) AND Metacompact (P000031) +NOT "$T_0$" (P000001) AND NOT First Countable (P000028) AND Countably paracompact (P000032) +NOT "$T_0$" (P000001) AND NOT First Countable (P000028) AND Countably metacompact (P000033) +NOT "$T_0$" (P000001) AND NOT First Countable (P000028) AND Fully normal (P000034) +NOT "$T_0$" (P000001) AND NOT First Countable (P000028) AND Path Connected (P000037) +NOT "$T_0$" (P000001) AND NOT First Countable (P000028) AND Arc connected (P000038) +NOT "$T_0$" (P000001) AND NOT First Countable (P000028) AND NOT Hyperconnected (P000039) +NOT "$T_0$" (P000001) AND NOT First Countable (P000028) AND Locally Path Connected (P000042) +NOT "$T_0$" (P000001) AND NOT First Countable (P000028) AND Locally Arc Connected (P000043) +NOT "$T_0$" (P000001) AND NOT First Countable (P000028) AND Zero Dimensional (P000050) +NOT "$T_0$" (P000001) AND NOT First Countable (P000028) AND NOT Non-meager (P000056) +NOT "$T_0$" (P000001) AND NOT First Countable (P000028) AND Countable (P000057) +NOT "$T_0$" (P000001) AND NOT First Countable (P000028) AND Smaller than the continuum (P000058) +NOT "$T_0$" (P000001) AND NOT First Countable (P000028) AND NOT Smaller than the continuum (P000058) +NOT "$T_0$" (P000001) AND NOT First Countable (P000028) AND Smaller or same as the continuum (P000059) +NOT "$T_0$" (P000001) AND NOT First Countable (P000028) AND NOT Strongly Connected (P000060) +NOT "$T_0$" (P000001) AND NOT First Countable (P000028) AND NOT Baire (P000064) +NOT "$T_0$" (P000001) AND NOT First Countable (P000028) AND NOT Continuum-sized (P000065) +NOT "$T_0$" (P000001) AND NOT First Countable (P000028) AND Menger (P000066) +NOT "$T_0$" (P000001) AND NOT First Countable (P000028) AND Strategic Menger (P000069) +NOT "$T_0$" (P000001) AND NOT First Countable (P000028) AND Markov Menger (P000070) +NOT "$T_0$" (P000001) AND NOT First Countable (P000028) AND "$\\sigma$-relatively-compact" (P000071) +NOT "$T_0$" (P000001) AND NOT First Countable (P000028) AND 2-Markov Menger (P000072) +NOT "$T_0$" (P000001) AND NOT First Countable (P000028) AND sequential (P000079) +NOT "$T_0$" (P000001) AND NOT First Countable (P000028) AND Fréchet Urysohn (P000080) +NOT "$T_0$" (P000001) AND NOT First Countable (P000028) AND Countably tight (P000081) +NOT "$T_0$" (P000001) AND NOT First Countable (P000028) AND Hemicompact (P000111) +NOT "$T_0$" (P000001) AND Paracompact (P000030) AND NOT Fully normal (P000034) +NOT "$T_0$" (P000001) AND Paracompact (P000030) AND NOT Path Connected (P000037) +NOT "$T_0$" (P000001) AND Paracompact (P000030) AND NOT Locally Path Connected (P000042) +NOT "$T_0$" (P000001) AND Paracompact (P000030) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_0$" (P000001) AND Paracompact (P000030) AND NOT Collectionwise normal (P000088) +NOT "$T_0$" (P000001) AND Paracompact (P000030) AND NOT Hemicompact (P000111) +NOT "$T_0$" (P000001) AND NOT Paracompact (P000030) AND Countably paracompact (P000032) +NOT "$T_0$" (P000001) AND NOT Paracompact (P000030) AND NOT Hyperconnected (P000039) +NOT "$T_0$" (P000001) AND NOT Paracompact (P000030) AND Zero Dimensional (P000050) +NOT "$T_0$" (P000001) AND NOT Paracompact (P000030) AND Countable (P000057) +NOT "$T_0$" (P000001) AND NOT Paracompact (P000030) AND Smaller than the continuum (P000058) +NOT "$T_0$" (P000001) AND NOT Paracompact (P000030) AND NOT Strongly Connected (P000060) +NOT "$T_0$" (P000001) AND NOT Paracompact (P000030) AND NOT Continuum-sized (P000065) +NOT "$T_0$" (P000001) AND Metacompact (P000031) AND NOT Path Connected (P000037) +NOT "$T_0$" (P000001) AND Metacompact (P000031) AND NOT Locally Path Connected (P000042) +NOT "$T_0$" (P000001) AND Metacompact (P000031) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_0$" (P000001) AND Metacompact (P000031) AND NOT Hemicompact (P000111) +NOT "$T_0$" (P000001) AND NOT Metacompact (P000031) AND Countably paracompact (P000032) +NOT "$T_0$" (P000001) AND NOT Metacompact (P000031) AND Countably metacompact (P000033) +NOT "$T_0$" (P000001) AND NOT Metacompact (P000031) AND NOT Hyperconnected (P000039) +NOT "$T_0$" (P000001) AND NOT Metacompact (P000031) AND Zero Dimensional (P000050) +NOT "$T_0$" (P000001) AND NOT Metacompact (P000031) AND NOT Non-meager (P000056) +NOT "$T_0$" (P000001) AND NOT Metacompact (P000031) AND Countable (P000057) +NOT "$T_0$" (P000001) AND NOT Metacompact (P000031) AND Smaller than the continuum (P000058) +NOT "$T_0$" (P000001) AND NOT Metacompact (P000031) AND NOT Strongly Connected (P000060) +NOT "$T_0$" (P000001) AND NOT Metacompact (P000031) AND NOT Baire (P000064) +NOT "$T_0$" (P000001) AND NOT Metacompact (P000031) AND NOT Continuum-sized (P000065) +NOT "$T_0$" (P000001) AND Countably paracompact (P000032) AND NOT Fully normal (P000034) +NOT "$T_0$" (P000001) AND Countably paracompact (P000032) AND NOT Path Connected (P000037) +NOT "$T_0$" (P000001) AND Countably paracompact (P000032) AND NOT Locally Path Connected (P000042) +NOT "$T_0$" (P000001) AND Countably paracompact (P000032) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_0$" (P000001) AND Countably paracompact (P000032) AND NOT Collectionwise normal (P000088) +NOT "$T_0$" (P000001) AND Countably paracompact (P000032) AND NOT Hemicompact (P000111) +NOT "$T_0$" (P000001) AND NOT Countably paracompact (P000032) AND NOT Hyperconnected (P000039) +NOT "$T_0$" (P000001) AND NOT Countably paracompact (P000032) AND Zero Dimensional (P000050) +NOT "$T_0$" (P000001) AND NOT Countably paracompact (P000032) AND Countable (P000057) +NOT "$T_0$" (P000001) AND NOT Countably paracompact (P000032) AND Smaller than the continuum (P000058) +NOT "$T_0$" (P000001) AND NOT Countably paracompact (P000032) AND NOT Strongly Connected (P000060) +NOT "$T_0$" (P000001) AND NOT Countably paracompact (P000032) AND NOT Continuum-sized (P000065) +NOT "$T_0$" (P000001) AND Countably metacompact (P000033) AND NOT Path Connected (P000037) +NOT "$T_0$" (P000001) AND Countably metacompact (P000033) AND NOT Locally Path Connected (P000042) +NOT "$T_0$" (P000001) AND Countably metacompact (P000033) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_0$" (P000001) AND Countably metacompact (P000033) AND NOT Hemicompact (P000111) +NOT "$T_0$" (P000001) AND NOT Countably metacompact (P000033) AND NOT Hyperconnected (P000039) +NOT "$T_0$" (P000001) AND NOT Countably metacompact (P000033) AND NOT Non-meager (P000056) +NOT "$T_0$" (P000001) AND NOT Countably metacompact (P000033) AND Countable (P000057) +NOT "$T_0$" (P000001) AND NOT Countably metacompact (P000033) AND Smaller than the continuum (P000058) +NOT "$T_0$" (P000001) AND NOT Countably metacompact (P000033) AND NOT Strongly Connected (P000060) +NOT "$T_0$" (P000001) AND NOT Countably metacompact (P000033) AND NOT Baire (P000064) +NOT "$T_0$" (P000001) AND NOT Countably metacompact (P000033) AND NOT Continuum-sized (P000065) +NOT "$T_0$" (P000001) AND Fully normal (P000034) AND NOT Path Connected (P000037) +NOT "$T_0$" (P000001) AND Fully normal (P000034) AND NOT Locally Path Connected (P000042) +NOT "$T_0$" (P000001) AND Fully normal (P000034) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_0$" (P000001) AND Fully normal (P000034) AND NOT Hemicompact (P000111) +NOT "$T_0$" (P000001) AND NOT Fully normal (P000034) AND NOT Hyperconnected (P000039) +NOT "$T_0$" (P000001) AND NOT Fully normal (P000034) AND Zero Dimensional (P000050) +NOT "$T_0$" (P000001) AND NOT Fully normal (P000034) AND Countable (P000057) +NOT "$T_0$" (P000001) AND NOT Fully normal (P000034) AND Smaller than the continuum (P000058) +NOT "$T_0$" (P000001) AND NOT Fully normal (P000034) AND NOT Strongly Connected (P000060) +NOT "$T_0$" (P000001) AND NOT Fully normal (P000034) AND NOT Continuum-sized (P000065) +NOT "$T_0$" (P000001) AND Connected (P000036) AND Countable (P000057) +NOT "$T_0$" (P000001) AND Connected (P000036) AND Smaller than the continuum (P000058) +NOT "$T_0$" (P000001) AND Connected (P000036) AND NOT Continuum-sized (P000065) +NOT "$T_0$" (P000001) AND Path Connected (P000037) AND NOT Arc connected (P000038) +NOT "$T_0$" (P000001) AND Path Connected (P000037) AND NOT Locally Path Connected (P000042) +NOT "$T_0$" (P000001) AND Path Connected (P000037) AND NOT Locally Arc Connected (P000043) +NOT "$T_0$" (P000001) AND Path Connected (P000037) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_0$" (P000001) AND Path Connected (P000037) AND Countable (P000057) +NOT "$T_0$" (P000001) AND Path Connected (P000037) AND Smaller than the continuum (P000058) +NOT "$T_0$" (P000001) AND Path Connected (P000037) AND NOT Continuum-sized (P000065) +NOT "$T_0$" (P000001) AND Path Connected (P000037) AND NOT Collectionwise normal (P000088) +NOT "$T_0$" (P000001) AND Path Connected (P000037) AND NOT Hemicompact (P000111) +NOT "$T_0$" (P000001) AND NOT Path Connected (P000037) AND NOT Hyperconnected (P000039) +NOT "$T_0$" (P000001) AND NOT Path Connected (P000037) AND Locally Path Connected (P000042) +NOT "$T_0$" (P000001) AND NOT Path Connected (P000037) AND Locally Arc Connected (P000043) +NOT "$T_0$" (P000001) AND NOT Path Connected (P000037) AND Zero Dimensional (P000050) +NOT "$T_0$" (P000001) AND NOT Path Connected (P000037) AND "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_0$" (P000001) AND NOT Path Connected (P000037) AND NOT Non-meager (P000056) +NOT "$T_0$" (P000001) AND NOT Path Connected (P000037) AND Countable (P000057) +NOT "$T_0$" (P000001) AND NOT Path Connected (P000037) AND Smaller than the continuum (P000058) +NOT "$T_0$" (P000001) AND NOT Path Connected (P000037) AND NOT Smaller than the continuum (P000058) +NOT "$T_0$" (P000001) AND NOT Path Connected (P000037) AND Smaller or same as the continuum (P000059) +NOT "$T_0$" (P000001) AND NOT Path Connected (P000037) AND NOT Strongly Connected (P000060) +NOT "$T_0$" (P000001) AND NOT Path Connected (P000037) AND NOT Baire (P000064) +NOT "$T_0$" (P000001) AND NOT Path Connected (P000037) AND NOT Continuum-sized (P000065) +NOT "$T_0$" (P000001) AND NOT Path Connected (P000037) AND Menger (P000066) +NOT "$T_0$" (P000001) AND NOT Path Connected (P000037) AND Strategic Menger (P000069) +NOT "$T_0$" (P000001) AND NOT Path Connected (P000037) AND Markov Menger (P000070) +NOT "$T_0$" (P000001) AND NOT Path Connected (P000037) AND "$\\sigma$-relatively-compact" (P000071) +NOT "$T_0$" (P000001) AND NOT Path Connected (P000037) AND 2-Markov Menger (P000072) +NOT "$T_0$" (P000001) AND NOT Path Connected (P000037) AND sequential (P000079) +NOT "$T_0$" (P000001) AND NOT Path Connected (P000037) AND Fréchet Urysohn (P000080) +NOT "$T_0$" (P000001) AND NOT Path Connected (P000037) AND Countably tight (P000081) +NOT "$T_0$" (P000001) AND NOT Path Connected (P000037) AND Hemicompact (P000111) +NOT "$T_0$" (P000001) AND Arc connected (P000038) AND NOT Locally Path Connected (P000042) +NOT "$T_0$" (P000001) AND Arc connected (P000038) AND NOT Locally Arc Connected (P000043) +NOT "$T_0$" (P000001) AND Arc connected (P000038) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_0$" (P000001) AND Arc connected (P000038) AND NOT Collectionwise normal (P000088) +NOT "$T_0$" (P000001) AND Arc connected (P000038) AND NOT Hemicompact (P000111) +NOT "$T_0$" (P000001) AND NOT Arc connected (P000038) AND Ultraconnected (P000040) +NOT "$T_0$" (P000001) AND NOT Arc connected (P000038) AND Locally Arc Connected (P000043) +NOT "$T_0$" (P000001) AND NOT Arc connected (P000038) AND NOT Non-meager (P000056) +NOT "$T_0$" (P000001) AND NOT Arc connected (P000038) AND NOT Smaller than the continuum (P000058) +NOT "$T_0$" (P000001) AND NOT Arc connected (P000038) AND NOT Baire (P000064) +NOT "$T_0$" (P000001) AND Hyperconnected (P000039) AND Countable (P000057) +NOT "$T_0$" (P000001) AND Hyperconnected (P000039) AND Smaller than the continuum (P000058) +NOT "$T_0$" (P000001) AND Hyperconnected (P000039) AND NOT Continuum-sized (P000065) +NOT "$T_0$" (P000001) AND NOT Hyperconnected (P000039) AND Ultraconnected (P000040) +NOT "$T_0$" (P000001) AND NOT Hyperconnected (P000039) AND NOT Locally Path Connected (P000042) +NOT "$T_0$" (P000001) AND NOT Hyperconnected (P000039) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_0$" (P000001) AND NOT Hyperconnected (P000039) AND Strongly Connected (P000060) +NOT "$T_0$" (P000001) AND NOT Hyperconnected (P000039) AND NOT Collectionwise normal (P000088) +NOT "$T_0$" (P000001) AND NOT Hyperconnected (P000039) AND NOT Hemicompact (P000111) +NOT "$T_0$" (P000001) AND Ultraconnected (P000040) AND NOT Locally Path Connected (P000042) +NOT "$T_0$" (P000001) AND Ultraconnected (P000040) AND NOT Locally Arc Connected (P000043) +NOT "$T_0$" (P000001) AND Ultraconnected (P000040) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_0$" (P000001) AND Ultraconnected (P000040) AND NOT Non-meager (P000056) +NOT "$T_0$" (P000001) AND Ultraconnected (P000040) AND Countable (P000057) +NOT "$T_0$" (P000001) AND Ultraconnected (P000040) AND Smaller than the continuum (P000058) +NOT "$T_0$" (P000001) AND Ultraconnected (P000040) AND NOT Baire (P000064) +NOT "$T_0$" (P000001) AND Ultraconnected (P000040) AND NOT Continuum-sized (P000065) +NOT "$T_0$" (P000001) AND Locally Path Connected (P000042) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_0$" (P000001) AND Locally Path Connected (P000042) AND NOT Collectionwise normal (P000088) +NOT "$T_0$" (P000001) AND Locally Path Connected (P000042) AND NOT Hemicompact (P000111) +NOT "$T_0$" (P000001) AND NOT Locally Path Connected (P000042) AND Zero Dimensional (P000050) +NOT "$T_0$" (P000001) AND NOT Locally Path Connected (P000042) AND "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_0$" (P000001) AND NOT Locally Path Connected (P000042) AND NOT Non-meager (P000056) +NOT "$T_0$" (P000001) AND NOT Locally Path Connected (P000042) AND Countable (P000057) +NOT "$T_0$" (P000001) AND NOT Locally Path Connected (P000042) AND Smaller than the continuum (P000058) +NOT "$T_0$" (P000001) AND NOT Locally Path Connected (P000042) AND NOT Smaller than the continuum (P000058) +NOT "$T_0$" (P000001) AND NOT Locally Path Connected (P000042) AND Smaller or same as the continuum (P000059) +NOT "$T_0$" (P000001) AND NOT Locally Path Connected (P000042) AND NOT Strongly Connected (P000060) +NOT "$T_0$" (P000001) AND NOT Locally Path Connected (P000042) AND NOT Baire (P000064) +NOT "$T_0$" (P000001) AND NOT Locally Path Connected (P000042) AND NOT Continuum-sized (P000065) +NOT "$T_0$" (P000001) AND NOT Locally Path Connected (P000042) AND Menger (P000066) +NOT "$T_0$" (P000001) AND NOT Locally Path Connected (P000042) AND Strategic Menger (P000069) +NOT "$T_0$" (P000001) AND NOT Locally Path Connected (P000042) AND Markov Menger (P000070) +NOT "$T_0$" (P000001) AND NOT Locally Path Connected (P000042) AND "$\\sigma$-relatively-compact" (P000071) +NOT "$T_0$" (P000001) AND NOT Locally Path Connected (P000042) AND 2-Markov Menger (P000072) +NOT "$T_0$" (P000001) AND NOT Locally Path Connected (P000042) AND sequential (P000079) +NOT "$T_0$" (P000001) AND NOT Locally Path Connected (P000042) AND Fréchet Urysohn (P000080) +NOT "$T_0$" (P000001) AND NOT Locally Path Connected (P000042) AND Countably tight (P000081) +NOT "$T_0$" (P000001) AND NOT Locally Path Connected (P000042) AND Hemicompact (P000111) +NOT "$T_0$" (P000001) AND Locally Arc Connected (P000043) AND Zero Dimensional (P000050) +NOT "$T_0$" (P000001) AND Locally Arc Connected (P000043) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_0$" (P000001) AND Locally Arc Connected (P000043) AND Countable (P000057) +NOT "$T_0$" (P000001) AND Locally Arc Connected (P000043) AND Smaller than the continuum (P000058) +NOT "$T_0$" (P000001) AND Locally Arc Connected (P000043) AND NOT Continuum-sized (P000065) +NOT "$T_0$" (P000001) AND Locally Arc Connected (P000043) AND NOT Collectionwise normal (P000088) +NOT "$T_0$" (P000001) AND Locally Arc Connected (P000043) AND NOT Hemicompact (P000111) +NOT "$T_0$" (P000001) AND NOT Locally Arc Connected (P000043) AND NOT Non-meager (P000056) +NOT "$T_0$" (P000001) AND NOT Locally Arc Connected (P000043) AND NOT Smaller than the continuum (P000058) +NOT "$T_0$" (P000001) AND NOT Locally Arc Connected (P000043) AND NOT Baire (P000064) +NOT "$T_0$" (P000001) AND NOT Biconnected (P000044) AND Countable (P000057) +NOT "$T_0$" (P000001) AND NOT Biconnected (P000044) AND Smaller than the continuum (P000058) +NOT "$T_0$" (P000001) AND NOT Biconnected (P000044) AND NOT Continuum-sized (P000065) +NOT "$T_0$" (P000001) AND NOT Has Dispersion Point (P000045) AND Countable (P000057) +NOT "$T_0$" (P000001) AND NOT Has Dispersion Point (P000045) AND Smaller than the continuum (P000058) +NOT "$T_0$" (P000001) AND NOT Has Dispersion Point (P000045) AND NOT Continuum-sized (P000065) +NOT "$T_0$" (P000001) AND Zero Dimensional (P000050) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_0$" (P000001) AND Zero Dimensional (P000050) AND NOT Non-meager (P000056) +NOT "$T_0$" (P000001) AND Zero Dimensional (P000050) AND NOT Countable (P000057) +NOT "$T_0$" (P000001) AND Zero Dimensional (P000050) AND NOT Smaller than the continuum (P000058) +NOT "$T_0$" (P000001) AND Zero Dimensional (P000050) AND NOT Baire (P000064) +NOT "$T_0$" (P000001) AND Zero Dimensional (P000050) AND NOT Collectionwise normal (P000088) +NOT "$T_0$" (P000001) AND Zero Dimensional (P000050) AND NOT Hemicompact (P000111) +NOT "$T_0$" (P000001) AND NOT Zero Dimensional (P000050) AND Countable (P000057) +NOT "$T_0$" (P000001) AND NOT Zero Dimensional (P000050) AND Smaller than the continuum (P000058) +NOT "$T_0$" (P000001) AND NOT Zero Dimensional (P000050) AND NOT Continuum-sized (P000065) +NOT "$T_0$" (P000001) AND "$\\sigma$-Locally Finite Base" (P000054) AND NOT Hemicompact (P000111) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-Locally Finite Base" (P000054) AND NOT Non-meager (P000056) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-Locally Finite Base" (P000054) AND Countable (P000057) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-Locally Finite Base" (P000054) AND Smaller than the continuum (P000058) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-Locally Finite Base" (P000054) AND NOT Smaller than the continuum (P000058) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-Locally Finite Base" (P000054) AND Smaller or same as the continuum (P000059) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-Locally Finite Base" (P000054) AND NOT Strongly Connected (P000060) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-Locally Finite Base" (P000054) AND NOT Baire (P000064) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-Locally Finite Base" (P000054) AND NOT Continuum-sized (P000065) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-Locally Finite Base" (P000054) AND Menger (P000066) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-Locally Finite Base" (P000054) AND Strategic Menger (P000069) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-Locally Finite Base" (P000054) AND Markov Menger (P000070) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-Locally Finite Base" (P000054) AND "$\\sigma$-relatively-compact" (P000071) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-Locally Finite Base" (P000054) AND 2-Markov Menger (P000072) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-Locally Finite Base" (P000054) AND sequential (P000079) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-Locally Finite Base" (P000054) AND Fréchet Urysohn (P000080) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-Locally Finite Base" (P000054) AND Countably tight (P000081) +NOT "$T_0$" (P000001) AND NOT "$\\sigma$-Locally Finite Base" (P000054) AND Hemicompact (P000111) +NOT "$T_0$" (P000001) AND NOT Non-meager (P000056) AND Countable (P000057) +NOT "$T_0$" (P000001) AND NOT Non-meager (P000056) AND Smaller than the continuum (P000058) +NOT "$T_0$" (P000001) AND NOT Non-meager (P000056) AND NOT Continuum-sized (P000065) +NOT "$T_0$" (P000001) AND Countable (P000057) AND Strongly Connected (P000060) +NOT "$T_0$" (P000001) AND Countable (P000057) AND NOT Baire (P000064) +NOT "$T_0$" (P000001) AND Countable (P000057) AND NOT Collectionwise normal (P000088) +NOT "$T_0$" (P000001) AND NOT Countable (P000057) AND NOT Continuum-sized (P000065) +NOT "$T_0$" (P000001) AND Smaller than the continuum (P000058) AND Strongly Connected (P000060) +NOT "$T_0$" (P000001) AND Smaller than the continuum (P000058) AND NOT Baire (P000064) +NOT "$T_0$" (P000001) AND Smaller than the continuum (P000058) AND NOT Collectionwise normal (P000088) +NOT "$T_0$" (P000001) AND NOT Smaller than the continuum (P000058) AND NOT Continuum-sized (P000065) +NOT "$T_0$" (P000001) AND NOT Smaller than the continuum (P000058) AND NOT Hemicompact (P000111) +NOT "$T_0$" (P000001) AND Smaller or same as the continuum (P000059) AND NOT Hemicompact (P000111) +NOT "$T_0$" (P000001) AND Strongly Connected (P000060) AND NOT Continuum-sized (P000065) +NOT "$T_0$" (P000001) AND NOT Strongly Connected (P000060) AND NOT Collectionwise normal (P000088) +NOT "$T_0$" (P000001) AND NOT Strongly Connected (P000060) AND NOT Hemicompact (P000111) +NOT "$T_0$" (P000001) AND NOT Baire (P000064) AND NOT Continuum-sized (P000065) +NOT "$T_0$" (P000001) AND NOT Continuum-sized (P000065) AND NOT Collectionwise normal (P000088) +NOT "$T_0$" (P000001) AND NOT Continuum-sized (P000065) AND NOT Hemicompact (P000111) +NOT "$T_0$" (P000001) AND Menger (P000066) AND NOT Hemicompact (P000111) +NOT "$T_0$" (P000001) AND sequential (P000079) AND NOT Hemicompact (P000111) +NOT "$T_0$" (P000001) AND Fréchet Urysohn (P000080) AND NOT Hemicompact (P000111) +NOT "$T_0$" (P000001) AND Countably tight (P000081) AND NOT Hemicompact (P000111) +"$T_1$" (P000002) AND NOT "$T_2$" (P000003) AND Semiregular (P000010) +"$T_1$" (P000002) AND NOT "$T_2$" (P000003) AND Regular (P000011) +"$T_1$" (P000002) AND NOT "$T_2$" (P000003) AND NOT Lindelof (P000018) +"$T_1$" (P000002) AND NOT "$T_2$" (P000003) AND NOT Pseudocompact (P000022) +"$T_1$" (P000002) AND NOT "$T_2$" (P000003) AND NOT Menger (P000066) +"$T_1$" (P000002) AND NOT "$T_2$" (P000003) AND NOT Rothberger (P000068) +"$T_1$" (P000002) AND NOT "$T_2$" (P000003) AND NOT Strategic Menger (P000069) +"$T_1$" (P000002) AND NOT "$T_2$" (P000003) AND NOT Markov Menger (P000070) +"$T_1$" (P000002) AND NOT "$T_2$" (P000003) AND NOT "$\\sigma$-relatively-compact" (P000071) +"$T_1$" (P000002) AND NOT "$T_2$" (P000003) AND NOT 2-Markov Menger (P000072) +"$T_1$" (P000002) AND NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Regular (P000011) +"$T_1$" (P000002) AND NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Lindelof (P000018) +"$T_1$" (P000002) AND NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Menger (P000066) +"$T_1$" (P000002) AND NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Rothberger (P000068) +"$T_1$" (P000002) AND NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Strategic Menger (P000069) +"$T_1$" (P000002) AND NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Markov Menger (P000070) +"$T_1$" (P000002) AND NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$\\sigma$-relatively-compact" (P000071) +"$T_1$" (P000002) AND NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT 2-Markov Menger (P000072) +"$T_1$" (P000002) AND "$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) +"$T_1$" (P000002) AND "$T_3$" (P000005) AND Strongly Connected (P000060) +"$T_1$" (P000002) AND NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Zero Dimensional (P000050) +"$T_1$" (P000002) AND NOT Completely Hausdorff (P000009) AND Regular (P000011) +"$T_1$" (P000002) AND NOT Completely Hausdorff (P000009) AND NOT Lindelof (P000018) +"$T_1$" (P000002) AND NOT Completely Hausdorff (P000009) AND NOT Menger (P000066) +"$T_1$" (P000002) AND NOT Completely Hausdorff (P000009) AND NOT Rothberger (P000068) +"$T_1$" (P000002) AND NOT Completely Hausdorff (P000009) AND NOT Strategic Menger (P000069) +"$T_1$" (P000002) AND NOT Completely Hausdorff (P000009) AND NOT Markov Menger (P000070) +"$T_1$" (P000002) AND NOT Completely Hausdorff (P000009) AND NOT "$\\sigma$-relatively-compact" (P000071) +"$T_1$" (P000002) AND NOT Completely Hausdorff (P000009) AND NOT 2-Markov Menger (P000072) +"$T_1$" (P000002) AND Semiregular (P000010) AND Hyperconnected (P000039) +"$T_1$" (P000002) AND Semiregular (P000010) AND Strongly Connected (P000060) +"$T_1$" (P000002) AND Regular (P000011) AND Hyperconnected (P000039) +"$T_1$" (P000002) AND Regular (P000011) AND Strongly Connected (P000060) +"$T_1$" (P000002) AND Completely regular (P000012) AND NOT Cozero complemented (P000061) +"$T_1$" (P000002) AND Normal (P000013) AND NOT Countably paracompact (P000032) +"$T_1$" (P000002) AND Normal (P000013) AND NOT Countably metacompact (P000033) +"$T_1$" (P000002) AND Normal (P000013) AND NOT Cozero complemented (P000061) +"$T_1$" (P000002) AND Completely normal (P000014) AND NOT Countably paracompact (P000032) +"$T_1$" (P000002) AND Completely normal (P000014) AND NOT Countably metacompact (P000033) +"$T_1$" (P000002) AND Completely normal (P000014) AND NOT Cozero complemented (P000061) +"$T_1$" (P000002) AND NOT Perfectly Normal (P000015) AND Finite (P000078) +"$T_1$" (P000002) AND Compact (P000016) AND NOT Spectral space (P000075) +"$T_1$" (P000002) AND "$\\sigma$-compact" (P000017) AND NOT Metacompact (P000031) +"$T_1$" (P000002) AND "$\\sigma$-compact" (P000017) AND NOT Countably metacompact (P000033) +"$T_1$" (P000002) AND NOT "$\\sigma$-compact" (P000017) AND Biconnected (P000044) +"$T_1$" (P000002) AND NOT "$\\sigma$-compact" (P000017) AND Has Dispersion Point (P000045) +"$T_1$" (P000002) AND NOT Lindelof (P000018) AND Hyperconnected (P000039) +"$T_1$" (P000002) AND NOT Lindelof (P000018) AND Biconnected (P000044) +"$T_1$" (P000002) AND NOT Lindelof (P000018) AND Has Dispersion Point (P000045) +"$T_1$" (P000002) AND NOT Lindelof (P000018) AND Strongly Connected (P000060) +"$T_1$" (P000002) AND Locally Compact (P000023) AND NOT Strongly Locally Compact (P000024) +"$T_1$" (P000002) AND Locally Compact (P000023) AND NOT Countably metacompact (P000033) +"$T_1$" (P000002) AND NOT Strongly Locally Compact (P000024) AND "$\\sigma$-Locally Compact" (P000025) +"$T_1$" (P000002) AND NOT Strongly Locally Compact (P000024) AND Hemicompact (P000111) +"$T_1$" (P000002) AND "$\\sigma$-Locally Compact" (P000025) AND NOT Paracompact (P000030) +"$T_1$" (P000002) AND "$\\sigma$-Locally Compact" (P000025) AND NOT Metacompact (P000031) +"$T_1$" (P000002) AND "$\\sigma$-Locally Compact" (P000025) AND NOT Countably paracompact (P000032) +"$T_1$" (P000002) AND "$\\sigma$-Locally Compact" (P000025) AND NOT Countably metacompact (P000033) +"$T_1$" (P000002) AND NOT Separable (P000026) AND Biconnected (P000044) +"$T_1$" (P000002) AND NOT Separable (P000026) AND Has Dispersion Point (P000045) +"$T_1$" (P000002) AND NOT Countable chain condition (P000029) AND Biconnected (P000044) +"$T_1$" (P000002) AND NOT Countable chain condition (P000029) AND Has Dispersion Point (P000045) +"$T_1$" (P000002) AND NOT Countable chain condition (P000029) AND Strongly Connected (P000060) +"$T_1$" (P000002) AND NOT Paracompact (P000030) AND Hemicompact (P000111) +"$T_1$" (P000002) AND NOT Metacompact (P000031) AND Biconnected (P000044) +"$T_1$" (P000002) AND NOT Metacompact (P000031) AND Has Dispersion Point (P000045) +"$T_1$" (P000002) AND NOT Metacompact (P000031) AND NOT Non-meager (P000056) +"$T_1$" (P000002) AND NOT Metacompact (P000031) AND Countable (P000057) +"$T_1$" (P000002) AND NOT Metacompact (P000031) AND Smaller than the continuum (P000058) +"$T_1$" (P000002) AND NOT Metacompact (P000031) AND NOT Baire (P000064) +"$T_1$" (P000002) AND NOT Metacompact (P000031) AND Menger (P000066) +"$T_1$" (P000002) AND NOT Metacompact (P000031) AND Strategic Menger (P000069) +"$T_1$" (P000002) AND NOT Metacompact (P000031) AND Markov Menger (P000070) +"$T_1$" (P000002) AND NOT Metacompact (P000031) AND "$\\sigma$-relatively-compact" (P000071) +"$T_1$" (P000002) AND NOT Metacompact (P000031) AND 2-Markov Menger (P000072) +"$T_1$" (P000002) AND NOT Metacompact (P000031) AND Hemicompact (P000111) +"$T_1$" (P000002) AND NOT Countably paracompact (P000032) AND Hemicompact (P000111) +"$T_1$" (P000002) AND NOT Countably metacompact (P000033) AND Biconnected (P000044) +"$T_1$" (P000002) AND NOT Countably metacompact (P000033) AND Has Dispersion Point (P000045) +"$T_1$" (P000002) AND NOT Countably metacompact (P000033) AND Scattered (P000051) +"$T_1$" (P000002) AND NOT Countably metacompact (P000033) AND NOT Non-meager (P000056) +"$T_1$" (P000002) AND NOT Countably metacompact (P000033) AND Countable (P000057) +"$T_1$" (P000002) AND NOT Countably metacompact (P000033) AND Smaller than the continuum (P000058) +"$T_1$" (P000002) AND NOT Countably metacompact (P000033) AND NOT Baire (P000064) +"$T_1$" (P000002) AND NOT Countably metacompact (P000033) AND NOT Continuum-sized (P000065) +"$T_1$" (P000002) AND NOT Countably metacompact (P000033) AND Menger (P000066) +"$T_1$" (P000002) AND NOT Countably metacompact (P000033) AND Strategic Menger (P000069) +"$T_1$" (P000002) AND NOT Countably metacompact (P000033) AND Markov Menger (P000070) +"$T_1$" (P000002) AND NOT Countably metacompact (P000033) AND "$\\sigma$-relatively-compact" (P000071) +"$T_1$" (P000002) AND NOT Countably metacompact (P000033) AND 2-Markov Menger (P000072) +"$T_1$" (P000002) AND NOT Countably metacompact (P000033) AND NOT homogenous (P000086) +"$T_1$" (P000002) AND NOT Countably metacompact (P000033) AND Hemicompact (P000111) +"$T_1$" (P000002) AND Fully normal (P000034) AND NOT Cozero complemented (P000061) +"$T_1$" (P000002) AND Connected (P000036) AND Zero Dimensional (P000050) +"$T_1$" (P000002) AND Connected (P000036) AND Scattered (P000051) +"$T_1$" (P000002) AND Connected (P000036) AND Finite (P000078) +"$T_1$" (P000002) AND Connected (P000036) AND NOT homogenous (P000086) +"$T_1$" (P000002) AND Path Connected (P000037) AND NOT Arc connected (P000038) +"$T_1$" (P000002) AND Path Connected (P000037) AND Biconnected (P000044) +"$T_1$" (P000002) AND Path Connected (P000037) AND Has Dispersion Point (P000045) +"$T_1$" (P000002) AND Path Connected (P000037) AND Zero Dimensional (P000050) +"$T_1$" (P000002) AND Path Connected (P000037) AND Scattered (P000051) +"$T_1$" (P000002) AND Path Connected (P000037) AND Countable (P000057) +"$T_1$" (P000002) AND Path Connected (P000037) AND Smaller than the continuum (P000058) +"$T_1$" (P000002) AND Path Connected (P000037) AND NOT Continuum-sized (P000065) +"$T_1$" (P000002) AND Path Connected (P000037) AND Finite (P000078) +"$T_1$" (P000002) AND Path Connected (P000037) AND NOT homogenous (P000086) +"$T_1$" (P000002) AND Hyperconnected (P000039) AND Biconnected (P000044) +"$T_1$" (P000002) AND Hyperconnected (P000039) AND Has Dispersion Point (P000045) +"$T_1$" (P000002) AND Hyperconnected (P000039) AND NOT Menger (P000066) +"$T_1$" (P000002) AND Hyperconnected (P000039) AND NOT Rothberger (P000068) +"$T_1$" (P000002) AND Hyperconnected (P000039) AND NOT Strategic Menger (P000069) +"$T_1$" (P000002) AND Hyperconnected (P000039) AND NOT Markov Menger (P000070) +"$T_1$" (P000002) AND Hyperconnected (P000039) AND NOT "$\\sigma$-relatively-compact" (P000071) +"$T_1$" (P000002) AND Hyperconnected (P000039) AND NOT 2-Markov Menger (P000072) +"$T_1$" (P000002) AND Hyperconnected (P000039) AND NOT homogenous (P000086) +"$T_1$" (P000002) AND NOT Hyperconnected (P000039) AND Strongly Connected (P000060) +"$T_1$" (P000002) AND Locally Connected (P000041) AND Biconnected (P000044) +"$T_1$" (P000002) AND Locally Connected (P000041) AND Has Dispersion Point (P000045) +"$T_1$" (P000002) AND Locally Connected (P000041) AND NOT homogenous (P000086) +"$T_1$" (P000002) AND NOT Locally Connected (P000041) AND Strongly Connected (P000060) +"$T_1$" (P000002) AND Locally Path Connected (P000042) AND NOT Locally Arc Connected (P000043) +"$T_1$" (P000002) AND Locally Path Connected (P000042) AND Biconnected (P000044) +"$T_1$" (P000002) AND Locally Path Connected (P000042) AND Has Dispersion Point (P000045) +"$T_1$" (P000002) AND Locally Path Connected (P000042) AND NOT homogenous (P000086) +"$T_1$" (P000002) AND Biconnected (P000044) AND NOT Totally Path Disconnected (P000046) +"$T_1$" (P000002) AND Biconnected (P000044) AND Scattered (P000051) +"$T_1$" (P000002) AND Biconnected (P000044) AND Non-meager (P000056) +"$T_1$" (P000002) AND Biconnected (P000044) AND Strongly Connected (P000060) +"$T_1$" (P000002) AND Biconnected (P000044) AND NOT Menger (P000066) +"$T_1$" (P000002) AND Biconnected (P000044) AND NOT Rothberger (P000068) +"$T_1$" (P000002) AND Biconnected (P000044) AND NOT Strategic Menger (P000069) +"$T_1$" (P000002) AND Biconnected (P000044) AND NOT Markov Menger (P000070) +"$T_1$" (P000002) AND Biconnected (P000044) AND NOT "$\\sigma$-relatively-compact" (P000071) +"$T_1$" (P000002) AND Biconnected (P000044) AND NOT 2-Markov Menger (P000072) +"$T_1$" (P000002) AND Biconnected (P000044) AND Finite (P000078) +"$T_1$" (P000002) AND Biconnected (P000044) AND NOT homogenous (P000086) +"$T_1$" (P000002) AND Biconnected (P000044) AND NOT Hemicompact (P000111) +"$T_1$" (P000002) AND Has Dispersion Point (P000045) AND NOT Totally Path Disconnected (P000046) +"$T_1$" (P000002) AND Has Dispersion Point (P000045) AND Scattered (P000051) +"$T_1$" (P000002) AND Has Dispersion Point (P000045) AND Non-meager (P000056) +"$T_1$" (P000002) AND Has Dispersion Point (P000045) AND Strongly Connected (P000060) +"$T_1$" (P000002) AND Has Dispersion Point (P000045) AND NOT Menger (P000066) +"$T_1$" (P000002) AND Has Dispersion Point (P000045) AND NOT Rothberger (P000068) +"$T_1$" (P000002) AND Has Dispersion Point (P000045) AND NOT Strategic Menger (P000069) +"$T_1$" (P000002) AND Has Dispersion Point (P000045) AND NOT Markov Menger (P000070) +"$T_1$" (P000002) AND Has Dispersion Point (P000045) AND NOT "$\\sigma$-relatively-compact" (P000071) +"$T_1$" (P000002) AND Has Dispersion Point (P000045) AND NOT 2-Markov Menger (P000072) +"$T_1$" (P000002) AND Has Dispersion Point (P000045) AND Finite (P000078) +"$T_1$" (P000002) AND Has Dispersion Point (P000045) AND NOT homogenous (P000086) +"$T_1$" (P000002) AND Has Dispersion Point (P000045) AND NOT Hemicompact (P000111) +"$T_1$" (P000002) AND NOT Totally Path Disconnected (P000046) AND Countable (P000057) +"$T_1$" (P000002) AND NOT Totally Path Disconnected (P000046) AND Smaller than the continuum (P000058) +"$T_1$" (P000002) AND NOT Totally Path Disconnected (P000046) AND NOT Continuum-sized (P000065) +"$T_1$" (P000002) AND NOT Totally Path Disconnected (P000046) AND NOT homogenous (P000086) +"$T_1$" (P000002) AND NOT Totally Disconnected (P000047) AND NOT homogenous (P000086) +"$T_1$" (P000002) AND Zero Dimensional (P000050) AND NOT Cozero complemented (P000061) +"$T_1$" (P000002) AND Scattered (P000051) AND Strongly Connected (P000060) +"$T_1$" (P000002) AND Countable (P000057) AND NOT Corson compact (P000077) +"$T_1$" (P000002) AND Countable (P000057) AND NOT Fréchet Urysohn (P000080) +"$T_1$" (P000002) AND Countable (P000057) AND NOT Eberlein compact (P000091) +"$T_1$" (P000002) AND Smaller than the continuum (P000058) AND NOT Corson compact (P000077) +"$T_1$" (P000002) AND Smaller than the continuum (P000058) AND NOT Fréchet Urysohn (P000080) +"$T_1$" (P000002) AND Smaller than the continuum (P000058) AND NOT Eberlein compact (P000091) +"$T_1$" (P000002) AND Strongly Connected (P000060) AND NOT Menger (P000066) +"$T_1$" (P000002) AND Strongly Connected (P000060) AND NOT Rothberger (P000068) +"$T_1$" (P000002) AND Strongly Connected (P000060) AND NOT Strategic Menger (P000069) +"$T_1$" (P000002) AND Strongly Connected (P000060) AND NOT Markov Menger (P000070) +"$T_1$" (P000002) AND Strongly Connected (P000060) AND NOT "$\\sigma$-relatively-compact" (P000071) +"$T_1$" (P000002) AND Strongly Connected (P000060) AND NOT 2-Markov Menger (P000072) +"$T_1$" (P000002) AND Strongly Connected (P000060) AND NOT homogenous (P000086) +"$T_1$" (P000002) AND NOT Continuum-sized (P000065) AND NOT Corson compact (P000077) +"$T_1$" (P000002) AND NOT Continuum-sized (P000065) AND NOT Fréchet Urysohn (P000080) +"$T_1$" (P000002) AND NOT Continuum-sized (P000065) AND NOT Eberlein compact (P000091) +"$T_1$" (P000002) AND NOT "$T_6$" (P000067) AND Finite (P000078) +"$T_1$" (P000002) AND NOT Corson compact (P000077) AND Countably tight (P000081) +"$T_1$" (P000002) AND Finite (P000078) AND NOT Topological manifold (P000124) +"$T_1$" (P000002) AND NOT Fréchet Urysohn (P000080) AND Countably tight (P000081) +"$T_1$" (P000002) AND Countably tight (P000081) AND NOT Eberlein compact (P000091) +NOT "$T_1$" (P000002) AND NOT "$T_3$" (P000005) AND NOT Lindelof (P000018) +NOT "$T_1$" (P000002) AND NOT "$T_3$" (P000005) AND NOT Menger (P000066) +NOT "$T_1$" (P000002) AND NOT "$T_3$" (P000005) AND NOT Rothberger (P000068) +NOT "$T_1$" (P000002) AND NOT "$T_3$" (P000005) AND NOT Strategic Menger (P000069) +NOT "$T_1$" (P000002) AND NOT "$T_3$" (P000005) AND NOT Markov Menger (P000070) +NOT "$T_1$" (P000002) AND NOT "$T_3$" (P000005) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_1$" (P000002) AND NOT "$T_3$" (P000005) AND NOT 2-Markov Menger (P000072) +NOT "$T_1$" (P000002) AND Semiregular (P000010) AND NOT Regular (P000011) +NOT "$T_1$" (P000002) AND Semiregular (P000010) AND NOT Completely regular (P000012) +NOT "$T_1$" (P000002) AND Semiregular (P000010) AND NOT Normal (P000013) +NOT "$T_1$" (P000002) AND Semiregular (P000010) AND NOT Completely normal (P000014) +NOT "$T_1$" (P000002) AND Semiregular (P000010) AND NOT "$\\sigma$-compact" (P000017) +NOT "$T_1$" (P000002) AND Semiregular (P000010) AND NOT Lindelof (P000018) +NOT "$T_1$" (P000002) AND Semiregular (P000010) AND NOT Weakly Countably Compact (P000021) +NOT "$T_1$" (P000002) AND Semiregular (P000010) AND NOT Locally Compact (P000023) +NOT "$T_1$" (P000002) AND Semiregular (P000010) AND NOT Strongly Locally Compact (P000024) +NOT "$T_1$" (P000002) AND Semiregular (P000010) AND NOT "$\\sigma$-Locally Compact" (P000025) +NOT "$T_1$" (P000002) AND Semiregular (P000010) AND NOT Separable (P000026) +NOT "$T_1$" (P000002) AND Semiregular (P000010) AND NOT Second Countable (P000027) +NOT "$T_1$" (P000002) AND Semiregular (P000010) AND NOT First Countable (P000028) +NOT "$T_1$" (P000002) AND Semiregular (P000010) AND NOT Countable chain condition (P000029) +NOT "$T_1$" (P000002) AND Semiregular (P000010) AND NOT Paracompact (P000030) +NOT "$T_1$" (P000002) AND Semiregular (P000010) AND NOT Metacompact (P000031) +NOT "$T_1$" (P000002) AND Semiregular (P000010) AND NOT Countably paracompact (P000032) +NOT "$T_1$" (P000002) AND Semiregular (P000010) AND NOT Fully normal (P000034) +NOT "$T_1$" (P000002) AND Semiregular (P000010) AND NOT Connected (P000036) +NOT "$T_1$" (P000002) AND Semiregular (P000010) AND NOT Path Connected (P000037) +NOT "$T_1$" (P000002) AND Semiregular (P000010) AND NOT Locally Connected (P000041) +NOT "$T_1$" (P000002) AND Semiregular (P000010) AND NOT Locally Path Connected (P000042) +NOT "$T_1$" (P000002) AND Semiregular (P000010) AND Biconnected (P000044) +NOT "$T_1$" (P000002) AND Semiregular (P000010) AND Has Dispersion Point (P000045) +NOT "$T_1$" (P000002) AND Semiregular (P000010) AND Scattered (P000051) +NOT "$T_1$" (P000002) AND Semiregular (P000010) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_1$" (P000002) AND Semiregular (P000010) AND NOT Menger (P000066) +NOT "$T_1$" (P000002) AND Semiregular (P000010) AND NOT Rothberger (P000068) +NOT "$T_1$" (P000002) AND Semiregular (P000010) AND NOT Strategic Menger (P000069) +NOT "$T_1$" (P000002) AND Semiregular (P000010) AND NOT Markov Menger (P000070) +NOT "$T_1$" (P000002) AND Semiregular (P000010) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_1$" (P000002) AND Semiregular (P000010) AND NOT 2-Markov Menger (P000072) +NOT "$T_1$" (P000002) AND Semiregular (P000010) AND Finite (P000078) +NOT "$T_1$" (P000002) AND Semiregular (P000010) AND NOT homogenous (P000086) +NOT "$T_1$" (P000002) AND Semiregular (P000010) AND NOT Collectionwise normal (P000088) +NOT "$T_1$" (P000002) AND Semiregular (P000010) AND NOT Hemicompact (P000111) +NOT "$T_1$" (P000002) AND Regular (P000011) AND NOT Completely regular (P000012) +NOT "$T_1$" (P000002) AND Regular (P000011) AND NOT Normal (P000013) +NOT "$T_1$" (P000002) AND Regular (P000011) AND NOT Completely normal (P000014) +NOT "$T_1$" (P000002) AND Regular (P000011) AND NOT "$\\sigma$-compact" (P000017) +NOT "$T_1$" (P000002) AND Regular (P000011) AND NOT Lindelof (P000018) +NOT "$T_1$" (P000002) AND Regular (P000011) AND NOT Weakly Countably Compact (P000021) +NOT "$T_1$" (P000002) AND Regular (P000011) AND NOT Locally Compact (P000023) +NOT "$T_1$" (P000002) AND Regular (P000011) AND NOT Strongly Locally Compact (P000024) +NOT "$T_1$" (P000002) AND Regular (P000011) AND NOT "$\\sigma$-Locally Compact" (P000025) +NOT "$T_1$" (P000002) AND Regular (P000011) AND NOT Separable (P000026) +NOT "$T_1$" (P000002) AND Regular (P000011) AND NOT Second Countable (P000027) +NOT "$T_1$" (P000002) AND Regular (P000011) AND NOT First Countable (P000028) +NOT "$T_1$" (P000002) AND Regular (P000011) AND NOT Countable chain condition (P000029) +NOT "$T_1$" (P000002) AND Regular (P000011) AND NOT Paracompact (P000030) +NOT "$T_1$" (P000002) AND Regular (P000011) AND NOT Metacompact (P000031) +NOT "$T_1$" (P000002) AND Regular (P000011) AND NOT Countably paracompact (P000032) +NOT "$T_1$" (P000002) AND Regular (P000011) AND NOT Fully normal (P000034) +NOT "$T_1$" (P000002) AND Regular (P000011) AND NOT Connected (P000036) +NOT "$T_1$" (P000002) AND Regular (P000011) AND NOT Path Connected (P000037) +NOT "$T_1$" (P000002) AND Regular (P000011) AND NOT Locally Connected (P000041) +NOT "$T_1$" (P000002) AND Regular (P000011) AND NOT Locally Path Connected (P000042) +NOT "$T_1$" (P000002) AND Regular (P000011) AND Biconnected (P000044) +NOT "$T_1$" (P000002) AND Regular (P000011) AND Has Dispersion Point (P000045) +NOT "$T_1$" (P000002) AND Regular (P000011) AND Scattered (P000051) +NOT "$T_1$" (P000002) AND Regular (P000011) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_1$" (P000002) AND Regular (P000011) AND NOT Menger (P000066) +NOT "$T_1$" (P000002) AND Regular (P000011) AND NOT Rothberger (P000068) +NOT "$T_1$" (P000002) AND Regular (P000011) AND NOT Strategic Menger (P000069) +NOT "$T_1$" (P000002) AND Regular (P000011) AND NOT Markov Menger (P000070) +NOT "$T_1$" (P000002) AND Regular (P000011) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_1$" (P000002) AND Regular (P000011) AND NOT 2-Markov Menger (P000072) +NOT "$T_1$" (P000002) AND Regular (P000011) AND Finite (P000078) +NOT "$T_1$" (P000002) AND Regular (P000011) AND NOT homogenous (P000086) +NOT "$T_1$" (P000002) AND Regular (P000011) AND NOT Collectionwise normal (P000088) +NOT "$T_1$" (P000002) AND Regular (P000011) AND NOT Hemicompact (P000111) +NOT "$T_1$" (P000002) AND NOT Regular (P000011) AND NOT Lindelof (P000018) +NOT "$T_1$" (P000002) AND NOT Regular (P000011) AND NOT Menger (P000066) +NOT "$T_1$" (P000002) AND NOT Regular (P000011) AND NOT Rothberger (P000068) +NOT "$T_1$" (P000002) AND NOT Regular (P000011) AND NOT Strategic Menger (P000069) +NOT "$T_1$" (P000002) AND NOT Regular (P000011) AND NOT Markov Menger (P000070) +NOT "$T_1$" (P000002) AND NOT Regular (P000011) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_1$" (P000002) AND NOT Regular (P000011) AND NOT 2-Markov Menger (P000072) +NOT "$T_1$" (P000002) AND Completely regular (P000012) AND NOT Normal (P000013) +NOT "$T_1$" (P000002) AND Completely regular (P000012) AND NOT Completely normal (P000014) +NOT "$T_1$" (P000002) AND Completely regular (P000012) AND NOT "$\\sigma$-compact" (P000017) +NOT "$T_1$" (P000002) AND Completely regular (P000012) AND NOT Lindelof (P000018) +NOT "$T_1$" (P000002) AND Completely regular (P000012) AND NOT Weakly Countably Compact (P000021) +NOT "$T_1$" (P000002) AND Completely regular (P000012) AND NOT Locally Compact (P000023) +NOT "$T_1$" (P000002) AND Completely regular (P000012) AND NOT Strongly Locally Compact (P000024) +NOT "$T_1$" (P000002) AND Completely regular (P000012) AND NOT "$\\sigma$-Locally Compact" (P000025) +NOT "$T_1$" (P000002) AND Completely regular (P000012) AND NOT Separable (P000026) +NOT "$T_1$" (P000002) AND Completely regular (P000012) AND NOT Second Countable (P000027) +NOT "$T_1$" (P000002) AND Completely regular (P000012) AND NOT First Countable (P000028) +NOT "$T_1$" (P000002) AND Completely regular (P000012) AND NOT Countable chain condition (P000029) +NOT "$T_1$" (P000002) AND Completely regular (P000012) AND NOT Paracompact (P000030) +NOT "$T_1$" (P000002) AND Completely regular (P000012) AND NOT Metacompact (P000031) +NOT "$T_1$" (P000002) AND Completely regular (P000012) AND NOT Countably paracompact (P000032) +NOT "$T_1$" (P000002) AND Completely regular (P000012) AND NOT Fully normal (P000034) +NOT "$T_1$" (P000002) AND Completely regular (P000012) AND NOT Connected (P000036) +NOT "$T_1$" (P000002) AND Completely regular (P000012) AND NOT Path Connected (P000037) +NOT "$T_1$" (P000002) AND Completely regular (P000012) AND NOT Locally Connected (P000041) +NOT "$T_1$" (P000002) AND Completely regular (P000012) AND NOT Locally Path Connected (P000042) +NOT "$T_1$" (P000002) AND Completely regular (P000012) AND Biconnected (P000044) +NOT "$T_1$" (P000002) AND Completely regular (P000012) AND Has Dispersion Point (P000045) +NOT "$T_1$" (P000002) AND Completely regular (P000012) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_1$" (P000002) AND Completely regular (P000012) AND NOT Menger (P000066) +NOT "$T_1$" (P000002) AND Completely regular (P000012) AND NOT Rothberger (P000068) +NOT "$T_1$" (P000002) AND Completely regular (P000012) AND NOT Strategic Menger (P000069) +NOT "$T_1$" (P000002) AND Completely regular (P000012) AND NOT Markov Menger (P000070) +NOT "$T_1$" (P000002) AND Completely regular (P000012) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_1$" (P000002) AND Completely regular (P000012) AND NOT 2-Markov Menger (P000072) +NOT "$T_1$" (P000002) AND Completely regular (P000012) AND Finite (P000078) +NOT "$T_1$" (P000002) AND Completely regular (P000012) AND NOT homogenous (P000086) +NOT "$T_1$" (P000002) AND Completely regular (P000012) AND NOT Collectionwise normal (P000088) +NOT "$T_1$" (P000002) AND Completely regular (P000012) AND NOT Hemicompact (P000111) +NOT "$T_1$" (P000002) AND Normal (P000013) AND NOT "$\\sigma$-compact" (P000017) +NOT "$T_1$" (P000002) AND Normal (P000013) AND NOT Lindelof (P000018) +NOT "$T_1$" (P000002) AND Normal (P000013) AND NOT Locally Compact (P000023) +NOT "$T_1$" (P000002) AND Normal (P000013) AND NOT "$\\sigma$-Locally Compact" (P000025) +NOT "$T_1$" (P000002) AND Normal (P000013) AND NOT First Countable (P000028) +NOT "$T_1$" (P000002) AND Normal (P000013) AND NOT Menger (P000066) +NOT "$T_1$" (P000002) AND Normal (P000013) AND NOT Rothberger (P000068) +NOT "$T_1$" (P000002) AND Normal (P000013) AND NOT Strategic Menger (P000069) +NOT "$T_1$" (P000002) AND Normal (P000013) AND NOT Markov Menger (P000070) +NOT "$T_1$" (P000002) AND Normal (P000013) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_1$" (P000002) AND Normal (P000013) AND NOT 2-Markov Menger (P000072) +NOT "$T_1$" (P000002) AND Normal (P000013) AND NOT Hemicompact (P000111) +NOT "$T_1$" (P000002) AND NOT Normal (P000013) AND NOT Pseudocompact (P000022) +NOT "$T_1$" (P000002) AND NOT Normal (P000013) AND NOT Countable chain condition (P000029) +NOT "$T_1$" (P000002) AND NOT Normal (P000013) AND NOT Connected (P000036) +NOT "$T_1$" (P000002) AND NOT Normal (P000013) AND NOT Hyperconnected (P000039) +NOT "$T_1$" (P000002) AND NOT Normal (P000013) AND NOT Locally Connected (P000041) +NOT "$T_1$" (P000002) AND NOT Normal (P000013) AND Zero Dimensional (P000050) +NOT "$T_1$" (P000002) AND NOT Normal (P000013) AND NOT Strongly Connected (P000060) +NOT "$T_1$" (P000002) AND Completely normal (P000014) AND NOT "$\\sigma$-compact" (P000017) +NOT "$T_1$" (P000002) AND Completely normal (P000014) AND NOT Lindelof (P000018) +NOT "$T_1$" (P000002) AND Completely normal (P000014) AND NOT Locally Compact (P000023) +NOT "$T_1$" (P000002) AND Completely normal (P000014) AND NOT "$\\sigma$-Locally Compact" (P000025) +NOT "$T_1$" (P000002) AND Completely normal (P000014) AND NOT First Countable (P000028) +NOT "$T_1$" (P000002) AND Completely normal (P000014) AND NOT Menger (P000066) +NOT "$T_1$" (P000002) AND Completely normal (P000014) AND NOT Rothberger (P000068) +NOT "$T_1$" (P000002) AND Completely normal (P000014) AND NOT Strategic Menger (P000069) +NOT "$T_1$" (P000002) AND Completely normal (P000014) AND NOT Markov Menger (P000070) +NOT "$T_1$" (P000002) AND Completely normal (P000014) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_1$" (P000002) AND Completely normal (P000014) AND NOT 2-Markov Menger (P000072) +NOT "$T_1$" (P000002) AND Completely normal (P000014) AND NOT Hemicompact (P000111) +NOT "$T_1$" (P000002) AND NOT Completely normal (P000014) AND NOT Pseudocompact (P000022) +NOT "$T_1$" (P000002) AND NOT Completely normal (P000014) AND NOT Countable chain condition (P000029) +NOT "$T_1$" (P000002) AND NOT Completely normal (P000014) AND Fully normal (P000034) +NOT "$T_1$" (P000002) AND NOT Completely normal (P000014) AND NOT Connected (P000036) +NOT "$T_1$" (P000002) AND NOT Completely normal (P000014) AND NOT Locally Connected (P000041) +NOT "$T_1$" (P000002) AND NOT Completely normal (P000014) AND Zero Dimensional (P000050) +NOT "$T_1$" (P000002) AND NOT Completely normal (P000014) AND NOT Strongly Connected (P000060) +NOT "$T_1$" (P000002) AND Compact (P000016) AND NOT Sequentially Compact (P000020) +NOT "$T_1$" (P000002) AND Compact (P000016) AND NOT First Countable (P000028) +NOT "$T_1$" (P000002) AND NOT Compact (P000016) AND Countably compact (P000019) +NOT "$T_1$" (P000002) AND NOT Compact (P000016) AND Sequentially Compact (P000020) +NOT "$T_1$" (P000002) AND NOT Compact (P000016) AND NOT Countable chain condition (P000029) +NOT "$T_1$" (P000002) AND NOT Compact (P000016) AND NOT Connected (P000036) +NOT "$T_1$" (P000002) AND NOT Compact (P000016) AND NOT Locally Connected (P000041) +NOT "$T_1$" (P000002) AND "$\\sigma$-compact" (P000017) AND NOT Locally Compact (P000023) +NOT "$T_1$" (P000002) AND "$\\sigma$-compact" (P000017) AND NOT "$\\sigma$-Locally Compact" (P000025) +NOT "$T_1$" (P000002) AND "$\\sigma$-compact" (P000017) AND NOT First Countable (P000028) +NOT "$T_1$" (P000002) AND NOT "$\\sigma$-compact" (P000017) AND Countably compact (P000019) +NOT "$T_1$" (P000002) AND NOT "$\\sigma$-compact" (P000017) AND Sequentially Compact (P000020) +NOT "$T_1$" (P000002) AND NOT "$\\sigma$-compact" (P000017) AND NOT Pseudocompact (P000022) +NOT "$T_1$" (P000002) AND NOT "$\\sigma$-compact" (P000017) AND Strongly Locally Compact (P000024) +NOT "$T_1$" (P000002) AND NOT "$\\sigma$-compact" (P000017) AND Second Countable (P000027) +NOT "$T_1$" (P000002) AND NOT "$\\sigma$-compact" (P000017) AND NOT Countable chain condition (P000029) +NOT "$T_1$" (P000002) AND NOT "$\\sigma$-compact" (P000017) AND Paracompact (P000030) +NOT "$T_1$" (P000002) AND NOT "$\\sigma$-compact" (P000017) AND Metacompact (P000031) +NOT "$T_1$" (P000002) AND NOT "$\\sigma$-compact" (P000017) AND Countably paracompact (P000032) +NOT "$T_1$" (P000002) AND NOT "$\\sigma$-compact" (P000017) AND Countably metacompact (P000033) +NOT "$T_1$" (P000002) AND NOT "$\\sigma$-compact" (P000017) AND Fully normal (P000034) +NOT "$T_1$" (P000002) AND NOT "$\\sigma$-compact" (P000017) AND NOT Connected (P000036) +NOT "$T_1$" (P000002) AND NOT "$\\sigma$-compact" (P000017) AND Arc connected (P000038) +NOT "$T_1$" (P000002) AND NOT "$\\sigma$-compact" (P000017) AND NOT Hyperconnected (P000039) +NOT "$T_1$" (P000002) AND NOT "$\\sigma$-compact" (P000017) AND NOT Locally Connected (P000041) +NOT "$T_1$" (P000002) AND NOT "$\\sigma$-compact" (P000017) AND Locally Arc Connected (P000043) +NOT "$T_1$" (P000002) AND NOT "$\\sigma$-compact" (P000017) AND Zero Dimensional (P000050) +NOT "$T_1$" (P000002) AND NOT "$\\sigma$-compact" (P000017) AND "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_1$" (P000002) AND NOT "$\\sigma$-compact" (P000017) AND NOT Smaller than the continuum (P000058) +NOT "$T_1$" (P000002) AND NOT "$\\sigma$-compact" (P000017) AND Smaller or same as the continuum (P000059) +NOT "$T_1$" (P000002) AND NOT "$\\sigma$-compact" (P000017) AND NOT Strongly Connected (P000060) +NOT "$T_1$" (P000002) AND NOT "$\\sigma$-compact" (P000017) AND NOT Continuum-sized (P000065) +NOT "$T_1$" (P000002) AND NOT "$\\sigma$-compact" (P000017) AND Menger (P000066) +NOT "$T_1$" (P000002) AND Lindelof (P000018) AND NOT Strategic Menger (P000069) +NOT "$T_1$" (P000002) AND Lindelof (P000018) AND NOT Markov Menger (P000070) +NOT "$T_1$" (P000002) AND Lindelof (P000018) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_1$" (P000002) AND Lindelof (P000018) AND NOT 2-Markov Menger (P000072) +NOT "$T_1$" (P000002) AND NOT Lindelof (P000018) AND Countably compact (P000019) +NOT "$T_1$" (P000002) AND NOT Lindelof (P000018) AND Sequentially Compact (P000020) +NOT "$T_1$" (P000002) AND NOT Lindelof (P000018) AND Weakly Countably Compact (P000021) +NOT "$T_1$" (P000002) AND NOT Lindelof (P000018) AND NOT Pseudocompact (P000022) +NOT "$T_1$" (P000002) AND NOT Lindelof (P000018) AND NOT Locally Compact (P000023) +NOT "$T_1$" (P000002) AND NOT Lindelof (P000018) AND Strongly Locally Compact (P000024) +NOT "$T_1$" (P000002) AND NOT Lindelof (P000018) AND NOT Separable (P000026) +NOT "$T_1$" (P000002) AND NOT Lindelof (P000018) AND NOT First Countable (P000028) +NOT "$T_1$" (P000002) AND NOT Lindelof (P000018) AND NOT Countable chain condition (P000029) +NOT "$T_1$" (P000002) AND NOT Lindelof (P000018) AND Paracompact (P000030) +NOT "$T_1$" (P000002) AND NOT Lindelof (P000018) AND Metacompact (P000031) +NOT "$T_1$" (P000002) AND NOT Lindelof (P000018) AND Countably paracompact (P000032) +NOT "$T_1$" (P000002) AND NOT Lindelof (P000018) AND Countably metacompact (P000033) +NOT "$T_1$" (P000002) AND NOT Lindelof (P000018) AND Fully normal (P000034) +NOT "$T_1$" (P000002) AND NOT Lindelof (P000018) AND NOT Connected (P000036) +NOT "$T_1$" (P000002) AND NOT Lindelof (P000018) AND NOT Path Connected (P000037) +NOT "$T_1$" (P000002) AND NOT Lindelof (P000018) AND Arc connected (P000038) +NOT "$T_1$" (P000002) AND NOT Lindelof (P000018) AND NOT Hyperconnected (P000039) +NOT "$T_1$" (P000002) AND NOT Lindelof (P000018) AND NOT Locally Connected (P000041) +NOT "$T_1$" (P000002) AND NOT Lindelof (P000018) AND NOT Locally Path Connected (P000042) +NOT "$T_1$" (P000002) AND NOT Lindelof (P000018) AND Locally Arc Connected (P000043) +NOT "$T_1$" (P000002) AND NOT Lindelof (P000018) AND NOT Biconnected (P000044) +NOT "$T_1$" (P000002) AND NOT Lindelof (P000018) AND NOT Has Dispersion Point (P000045) +NOT "$T_1$" (P000002) AND NOT Lindelof (P000018) AND Zero Dimensional (P000050) +NOT "$T_1$" (P000002) AND NOT Lindelof (P000018) AND NOT Scattered (P000051) +NOT "$T_1$" (P000002) AND NOT Lindelof (P000018) AND "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_1$" (P000002) AND NOT Lindelof (P000018) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_1$" (P000002) AND NOT Lindelof (P000018) AND NOT Smaller than the continuum (P000058) +NOT "$T_1$" (P000002) AND NOT Lindelof (P000018) AND Smaller or same as the continuum (P000059) +NOT "$T_1$" (P000002) AND NOT Lindelof (P000018) AND NOT Strongly Connected (P000060) +NOT "$T_1$" (P000002) AND NOT Lindelof (P000018) AND NOT Continuum-sized (P000065) +NOT "$T_1$" (P000002) AND Countably compact (P000019) AND NOT Sequentially Compact (P000020) +NOT "$T_1$" (P000002) AND Countably compact (P000019) AND NOT Locally Compact (P000023) +NOT "$T_1$" (P000002) AND Countably compact (P000019) AND NOT Strongly Locally Compact (P000024) +NOT "$T_1$" (P000002) AND Countably compact (P000019) AND NOT "$\\sigma$-Locally Compact" (P000025) +NOT "$T_1$" (P000002) AND Countably compact (P000019) AND NOT First Countable (P000028) +NOT "$T_1$" (P000002) AND Countably compact (P000019) AND NOT Paracompact (P000030) +NOT "$T_1$" (P000002) AND Countably compact (P000019) AND NOT Metacompact (P000031) +NOT "$T_1$" (P000002) AND Countably compact (P000019) AND NOT Menger (P000066) +NOT "$T_1$" (P000002) AND Countably compact (P000019) AND NOT Rothberger (P000068) +NOT "$T_1$" (P000002) AND Countably compact (P000019) AND NOT Strategic Menger (P000069) +NOT "$T_1$" (P000002) AND Countably compact (P000019) AND NOT Markov Menger (P000070) +NOT "$T_1$" (P000002) AND Countably compact (P000019) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_1$" (P000002) AND Countably compact (P000019) AND NOT 2-Markov Menger (P000072) +NOT "$T_1$" (P000002) AND Countably compact (P000019) AND NOT Hemicompact (P000111) +NOT "$T_1$" (P000002) AND NOT Countably compact (P000019) AND NOT Countable chain condition (P000029) +NOT "$T_1$" (P000002) AND NOT Countably compact (P000019) AND NOT Connected (P000036) +NOT "$T_1$" (P000002) AND NOT Countably compact (P000019) AND NOT Locally Connected (P000041) +NOT "$T_1$" (P000002) AND Sequentially Compact (P000020) AND NOT Locally Compact (P000023) +NOT "$T_1$" (P000002) AND Sequentially Compact (P000020) AND NOT Strongly Locally Compact (P000024) +NOT "$T_1$" (P000002) AND Sequentially Compact (P000020) AND NOT "$\\sigma$-Locally Compact" (P000025) +NOT "$T_1$" (P000002) AND Sequentially Compact (P000020) AND NOT First Countable (P000028) +NOT "$T_1$" (P000002) AND Sequentially Compact (P000020) AND NOT Paracompact (P000030) +NOT "$T_1$" (P000002) AND Sequentially Compact (P000020) AND NOT Metacompact (P000031) +NOT "$T_1$" (P000002) AND Sequentially Compact (P000020) AND NOT Locally Connected (P000041) +NOT "$T_1$" (P000002) AND Sequentially Compact (P000020) AND NOT Locally Path Connected (P000042) +NOT "$T_1$" (P000002) AND Sequentially Compact (P000020) AND NOT Non-meager (P000056) +NOT "$T_1$" (P000002) AND Sequentially Compact (P000020) AND NOT Baire (P000064) +NOT "$T_1$" (P000002) AND Sequentially Compact (P000020) AND NOT Menger (P000066) +NOT "$T_1$" (P000002) AND Sequentially Compact (P000020) AND NOT Rothberger (P000068) +NOT "$T_1$" (P000002) AND Sequentially Compact (P000020) AND NOT Strategic Menger (P000069) +NOT "$T_1$" (P000002) AND Sequentially Compact (P000020) AND NOT Markov Menger (P000070) +NOT "$T_1$" (P000002) AND Sequentially Compact (P000020) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_1$" (P000002) AND Sequentially Compact (P000020) AND NOT 2-Markov Menger (P000072) +NOT "$T_1$" (P000002) AND Sequentially Compact (P000020) AND NOT Hemicompact (P000111) +NOT "$T_1$" (P000002) AND NOT Sequentially Compact (P000020) AND NOT Countable chain condition (P000029) +NOT "$T_1$" (P000002) AND NOT Sequentially Compact (P000020) AND NOT Connected (P000036) +NOT "$T_1$" (P000002) AND NOT Sequentially Compact (P000020) AND NOT Locally Connected (P000041) +NOT "$T_1$" (P000002) AND Weakly Countably Compact (P000021) AND NOT Menger (P000066) +NOT "$T_1$" (P000002) AND Weakly Countably Compact (P000021) AND NOT Rothberger (P000068) +NOT "$T_1$" (P000002) AND Weakly Countably Compact (P000021) AND NOT Strategic Menger (P000069) +NOT "$T_1$" (P000002) AND Weakly Countably Compact (P000021) AND NOT Markov Menger (P000070) +NOT "$T_1$" (P000002) AND Weakly Countably Compact (P000021) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_1$" (P000002) AND Weakly Countably Compact (P000021) AND NOT 2-Markov Menger (P000072) +NOT "$T_1$" (P000002) AND NOT Weakly Countably Compact (P000021) AND NOT Locally Compact (P000023) +NOT "$T_1$" (P000002) AND NOT Weakly Countably Compact (P000021) AND NOT Separable (P000026) +NOT "$T_1$" (P000002) AND NOT Weakly Countably Compact (P000021) AND NOT First Countable (P000028) +NOT "$T_1$" (P000002) AND NOT Weakly Countably Compact (P000021) AND NOT Countable chain condition (P000029) +NOT "$T_1$" (P000002) AND NOT Weakly Countably Compact (P000021) AND NOT Connected (P000036) +NOT "$T_1$" (P000002) AND NOT Weakly Countably Compact (P000021) AND NOT Path Connected (P000037) +NOT "$T_1$" (P000002) AND NOT Weakly Countably Compact (P000021) AND Arc connected (P000038) +NOT "$T_1$" (P000002) AND NOT Weakly Countably Compact (P000021) AND NOT Locally Connected (P000041) +NOT "$T_1$" (P000002) AND NOT Weakly Countably Compact (P000021) AND NOT Locally Path Connected (P000042) +NOT "$T_1$" (P000002) AND NOT Weakly Countably Compact (P000021) AND Locally Arc Connected (P000043) +NOT "$T_1$" (P000002) AND NOT Weakly Countably Compact (P000021) AND NOT Biconnected (P000044) +NOT "$T_1$" (P000002) AND NOT Weakly Countably Compact (P000021) AND NOT Has Dispersion Point (P000045) +NOT "$T_1$" (P000002) AND NOT Weakly Countably Compact (P000021) AND Zero Dimensional (P000050) +NOT "$T_1$" (P000002) AND NOT Weakly Countably Compact (P000021) AND NOT Scattered (P000051) +NOT "$T_1$" (P000002) AND NOT Weakly Countably Compact (P000021) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_1$" (P000002) AND NOT Weakly Countably Compact (P000021) AND NOT Non-meager (P000056) +NOT "$T_1$" (P000002) AND NOT Weakly Countably Compact (P000021) AND NOT Smaller than the continuum (P000058) +NOT "$T_1$" (P000002) AND NOT Weakly Countably Compact (P000021) AND NOT Baire (P000064) +NOT "$T_1$" (P000002) AND NOT Pseudocompact (P000022) AND NOT Locally Compact (P000023) +NOT "$T_1$" (P000002) AND NOT Pseudocompact (P000022) AND NOT Strongly Locally Compact (P000024) +NOT "$T_1$" (P000002) AND NOT Pseudocompact (P000022) AND NOT "$\\sigma$-Locally Compact" (P000025) +NOT "$T_1$" (P000002) AND NOT Pseudocompact (P000022) AND NOT Separable (P000026) +NOT "$T_1$" (P000002) AND NOT Pseudocompact (P000022) AND NOT Second Countable (P000027) +NOT "$T_1$" (P000002) AND NOT Pseudocompact (P000022) AND NOT First Countable (P000028) +NOT "$T_1$" (P000002) AND NOT Pseudocompact (P000022) AND NOT Countable chain condition (P000029) +NOT "$T_1$" (P000002) AND NOT Pseudocompact (P000022) AND NOT Paracompact (P000030) +NOT "$T_1$" (P000002) AND NOT Pseudocompact (P000022) AND NOT Metacompact (P000031) +NOT "$T_1$" (P000002) AND NOT Pseudocompact (P000022) AND NOT Countably paracompact (P000032) +NOT "$T_1$" (P000002) AND NOT Pseudocompact (P000022) AND NOT Countably metacompact (P000033) +NOT "$T_1$" (P000002) AND NOT Pseudocompact (P000022) AND NOT Fully normal (P000034) +NOT "$T_1$" (P000002) AND NOT Pseudocompact (P000022) AND NOT Connected (P000036) +NOT "$T_1$" (P000002) AND NOT Pseudocompact (P000022) AND NOT Path Connected (P000037) +NOT "$T_1$" (P000002) AND NOT Pseudocompact (P000022) AND NOT Locally Connected (P000041) +NOT "$T_1$" (P000002) AND NOT Pseudocompact (P000022) AND NOT Locally Path Connected (P000042) +NOT "$T_1$" (P000002) AND NOT Pseudocompact (P000022) AND Biconnected (P000044) +NOT "$T_1$" (P000002) AND NOT Pseudocompact (P000022) AND Has Dispersion Point (P000045) +NOT "$T_1$" (P000002) AND NOT Pseudocompact (P000022) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_1$" (P000002) AND NOT Pseudocompact (P000022) AND NOT Menger (P000066) +NOT "$T_1$" (P000002) AND NOT Pseudocompact (P000022) AND NOT Rothberger (P000068) +NOT "$T_1$" (P000002) AND NOT Pseudocompact (P000022) AND NOT Strategic Menger (P000069) +NOT "$T_1$" (P000002) AND NOT Pseudocompact (P000022) AND NOT Markov Menger (P000070) +NOT "$T_1$" (P000002) AND NOT Pseudocompact (P000022) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_1$" (P000002) AND NOT Pseudocompact (P000022) AND NOT 2-Markov Menger (P000072) +NOT "$T_1$" (P000002) AND NOT Pseudocompact (P000022) AND NOT Collectionwise normal (P000088) +NOT "$T_1$" (P000002) AND NOT Pseudocompact (P000022) AND NOT Hemicompact (P000111) +NOT "$T_1$" (P000002) AND Locally Compact (P000023) AND NOT First Countable (P000028) +NOT "$T_1$" (P000002) AND NOT Locally Compact (P000023) AND Separable (P000026) +NOT "$T_1$" (P000002) AND NOT Locally Compact (P000023) AND Second Countable (P000027) +NOT "$T_1$" (P000002) AND NOT Locally Compact (P000023) AND First Countable (P000028) +NOT "$T_1$" (P000002) AND NOT Locally Compact (P000023) AND NOT Countable chain condition (P000029) +NOT "$T_1$" (P000002) AND NOT Locally Compact (P000023) AND Paracompact (P000030) +NOT "$T_1$" (P000002) AND NOT Locally Compact (P000023) AND Metacompact (P000031) +NOT "$T_1$" (P000002) AND NOT Locally Compact (P000023) AND Countably paracompact (P000032) +NOT "$T_1$" (P000002) AND NOT Locally Compact (P000023) AND Countably metacompact (P000033) +NOT "$T_1$" (P000002) AND NOT Locally Compact (P000023) AND Fully normal (P000034) +NOT "$T_1$" (P000002) AND NOT Locally Compact (P000023) AND NOT Connected (P000036) +NOT "$T_1$" (P000002) AND NOT Locally Compact (P000023) AND Path Connected (P000037) +NOT "$T_1$" (P000002) AND NOT Locally Compact (P000023) AND Arc connected (P000038) +NOT "$T_1$" (P000002) AND NOT Locally Compact (P000023) AND NOT Hyperconnected (P000039) +NOT "$T_1$" (P000002) AND NOT Locally Compact (P000023) AND NOT Locally Connected (P000041) +NOT "$T_1$" (P000002) AND NOT Locally Compact (P000023) AND Locally Path Connected (P000042) +NOT "$T_1$" (P000002) AND NOT Locally Compact (P000023) AND Locally Arc Connected (P000043) +NOT "$T_1$" (P000002) AND NOT Locally Compact (P000023) AND Biconnected (P000044) +NOT "$T_1$" (P000002) AND NOT Locally Compact (P000023) AND Has Dispersion Point (P000045) +NOT "$T_1$" (P000002) AND NOT Locally Compact (P000023) AND Zero Dimensional (P000050) +NOT "$T_1$" (P000002) AND NOT Locally Compact (P000023) AND Scattered (P000051) +NOT "$T_1$" (P000002) AND NOT Locally Compact (P000023) AND "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_1$" (P000002) AND NOT Locally Compact (P000023) AND NOT Non-meager (P000056) +NOT "$T_1$" (P000002) AND NOT Locally Compact (P000023) AND Countable (P000057) +NOT "$T_1$" (P000002) AND NOT Locally Compact (P000023) AND Smaller than the continuum (P000058) +NOT "$T_1$" (P000002) AND NOT Locally Compact (P000023) AND NOT Smaller than the continuum (P000058) +NOT "$T_1$" (P000002) AND NOT Locally Compact (P000023) AND Smaller or same as the continuum (P000059) +NOT "$T_1$" (P000002) AND NOT Locally Compact (P000023) AND NOT Strongly Connected (P000060) +NOT "$T_1$" (P000002) AND NOT Locally Compact (P000023) AND NOT Baire (P000064) +NOT "$T_1$" (P000002) AND NOT Locally Compact (P000023) AND NOT Continuum-sized (P000065) +NOT "$T_1$" (P000002) AND NOT Locally Compact (P000023) AND Menger (P000066) +NOT "$T_1$" (P000002) AND NOT Locally Compact (P000023) AND NOT Menger (P000066) +NOT "$T_1$" (P000002) AND NOT Locally Compact (P000023) AND NOT Rothberger (P000068) +NOT "$T_1$" (P000002) AND NOT Locally Compact (P000023) AND Strategic Menger (P000069) +NOT "$T_1$" (P000002) AND NOT Locally Compact (P000023) AND NOT Strategic Menger (P000069) +NOT "$T_1$" (P000002) AND NOT Locally Compact (P000023) AND Markov Menger (P000070) +NOT "$T_1$" (P000002) AND NOT Locally Compact (P000023) AND NOT Markov Menger (P000070) +NOT "$T_1$" (P000002) AND NOT Locally Compact (P000023) AND "$\\sigma$-relatively-compact" (P000071) +NOT "$T_1$" (P000002) AND NOT Locally Compact (P000023) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_1$" (P000002) AND NOT Locally Compact (P000023) AND 2-Markov Menger (P000072) +NOT "$T_1$" (P000002) AND NOT Locally Compact (P000023) AND NOT 2-Markov Menger (P000072) +NOT "$T_1$" (P000002) AND NOT Locally Compact (P000023) AND sequential (P000079) +NOT "$T_1$" (P000002) AND NOT Locally Compact (P000023) AND Fréchet Urysohn (P000080) +NOT "$T_1$" (P000002) AND NOT Locally Compact (P000023) AND Countably tight (P000081) +NOT "$T_1$" (P000002) AND NOT Locally Compact (P000023) AND NOT homogenous (P000086) +NOT "$T_1$" (P000002) AND Strongly Locally Compact (P000024) AND NOT "$\\sigma$-Locally Compact" (P000025) +NOT "$T_1$" (P000002) AND Strongly Locally Compact (P000024) AND NOT First Countable (P000028) +NOT "$T_1$" (P000002) AND Strongly Locally Compact (P000024) AND NOT Paracompact (P000030) +NOT "$T_1$" (P000002) AND Strongly Locally Compact (P000024) AND NOT Metacompact (P000031) +NOT "$T_1$" (P000002) AND Strongly Locally Compact (P000024) AND NOT Countably paracompact (P000032) +NOT "$T_1$" (P000002) AND Strongly Locally Compact (P000024) AND NOT Menger (P000066) +NOT "$T_1$" (P000002) AND Strongly Locally Compact (P000024) AND NOT Rothberger (P000068) +NOT "$T_1$" (P000002) AND Strongly Locally Compact (P000024) AND NOT Strategic Menger (P000069) +NOT "$T_1$" (P000002) AND Strongly Locally Compact (P000024) AND NOT Markov Menger (P000070) +NOT "$T_1$" (P000002) AND Strongly Locally Compact (P000024) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_1$" (P000002) AND Strongly Locally Compact (P000024) AND NOT 2-Markov Menger (P000072) +NOT "$T_1$" (P000002) AND Strongly Locally Compact (P000024) AND NOT Hemicompact (P000111) +NOT "$T_1$" (P000002) AND NOT Strongly Locally Compact (P000024) AND NOT Countable chain condition (P000029) +NOT "$T_1$" (P000002) AND NOT Strongly Locally Compact (P000024) AND Paracompact (P000030) +NOT "$T_1$" (P000002) AND NOT Strongly Locally Compact (P000024) AND Countably paracompact (P000032) +NOT "$T_1$" (P000002) AND NOT Strongly Locally Compact (P000024) AND Fully normal (P000034) +NOT "$T_1$" (P000002) AND NOT Strongly Locally Compact (P000024) AND NOT Connected (P000036) +NOT "$T_1$" (P000002) AND NOT Strongly Locally Compact (P000024) AND NOT Locally Connected (P000041) +NOT "$T_1$" (P000002) AND NOT Strongly Locally Compact (P000024) AND Zero Dimensional (P000050) +NOT "$T_1$" (P000002) AND NOT Strongly Locally Compact (P000024) AND NOT Strongly Connected (P000060) +NOT "$T_1$" (P000002) AND "$\\sigma$-Locally Compact" (P000025) AND NOT First Countable (P000028) +NOT "$T_1$" (P000002) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Second Countable (P000027) +NOT "$T_1$" (P000002) AND NOT "$\\sigma$-Locally Compact" (P000025) AND NOT Countable chain condition (P000029) +NOT "$T_1$" (P000002) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Paracompact (P000030) +NOT "$T_1$" (P000002) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Metacompact (P000031) +NOT "$T_1$" (P000002) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Countably paracompact (P000032) +NOT "$T_1$" (P000002) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Countably metacompact (P000033) +NOT "$T_1$" (P000002) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Fully normal (P000034) +NOT "$T_1$" (P000002) AND NOT "$\\sigma$-Locally Compact" (P000025) AND NOT Connected (P000036) +NOT "$T_1$" (P000002) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Arc connected (P000038) +NOT "$T_1$" (P000002) AND NOT "$\\sigma$-Locally Compact" (P000025) AND NOT Hyperconnected (P000039) +NOT "$T_1$" (P000002) AND NOT "$\\sigma$-Locally Compact" (P000025) AND NOT Locally Connected (P000041) +NOT "$T_1$" (P000002) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Locally Arc Connected (P000043) +NOT "$T_1$" (P000002) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Zero Dimensional (P000050) +NOT "$T_1$" (P000002) AND NOT "$\\sigma$-Locally Compact" (P000025) AND "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_1$" (P000002) AND NOT "$\\sigma$-Locally Compact" (P000025) AND NOT Non-meager (P000056) +NOT "$T_1$" (P000002) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Countable (P000057) +NOT "$T_1$" (P000002) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Smaller than the continuum (P000058) +NOT "$T_1$" (P000002) AND NOT "$\\sigma$-Locally Compact" (P000025) AND NOT Smaller than the continuum (P000058) +NOT "$T_1$" (P000002) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Smaller or same as the continuum (P000059) +NOT "$T_1$" (P000002) AND NOT "$\\sigma$-Locally Compact" (P000025) AND NOT Strongly Connected (P000060) +NOT "$T_1$" (P000002) AND NOT "$\\sigma$-Locally Compact" (P000025) AND NOT Baire (P000064) +NOT "$T_1$" (P000002) AND NOT "$\\sigma$-Locally Compact" (P000025) AND NOT Continuum-sized (P000065) +NOT "$T_1$" (P000002) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Menger (P000066) +NOT "$T_1$" (P000002) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Strategic Menger (P000069) +NOT "$T_1$" (P000002) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Markov Menger (P000070) +NOT "$T_1$" (P000002) AND NOT "$\\sigma$-Locally Compact" (P000025) AND "$\\sigma$-relatively-compact" (P000071) +NOT "$T_1$" (P000002) AND NOT "$\\sigma$-Locally Compact" (P000025) AND 2-Markov Menger (P000072) +NOT "$T_1$" (P000002) AND Separable (P000026) AND NOT First Countable (P000028) +NOT "$T_1$" (P000002) AND Separable (P000026) AND NOT Connected (P000036) +NOT "$T_1$" (P000002) AND Separable (P000026) AND NOT Path Connected (P000037) +NOT "$T_1$" (P000002) AND Separable (P000026) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_1$" (P000002) AND NOT Separable (P000026) AND Arc connected (P000038) +NOT "$T_1$" (P000002) AND NOT Separable (P000026) AND NOT Locally Connected (P000041) +NOT "$T_1$" (P000002) AND NOT Separable (P000026) AND Locally Arc Connected (P000043) +NOT "$T_1$" (P000002) AND NOT Separable (P000026) AND Zero Dimensional (P000050) +NOT "$T_1$" (P000002) AND NOT Separable (P000026) AND "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_1$" (P000002) AND NOT Separable (P000026) AND NOT Continuum-sized (P000065) +NOT "$T_1$" (P000002) AND NOT Separable (P000026) AND NOT Menger (P000066) +NOT "$T_1$" (P000002) AND NOT Separable (P000026) AND NOT Rothberger (P000068) +NOT "$T_1$" (P000002) AND NOT Separable (P000026) AND NOT Strategic Menger (P000069) +NOT "$T_1$" (P000002) AND NOT Separable (P000026) AND NOT Markov Menger (P000070) +NOT "$T_1$" (P000002) AND NOT Separable (P000026) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_1$" (P000002) AND NOT Separable (P000026) AND NOT 2-Markov Menger (P000072) +NOT "$T_1$" (P000002) AND Second Countable (P000027) AND NOT Connected (P000036) +NOT "$T_1$" (P000002) AND Second Countable (P000027) AND NOT Path Connected (P000037) +NOT "$T_1$" (P000002) AND Second Countable (P000027) AND NOT Locally Connected (P000041) +NOT "$T_1$" (P000002) AND Second Countable (P000027) AND NOT Locally Path Connected (P000042) +NOT "$T_1$" (P000002) AND Second Countable (P000027) AND NOT Strategic Menger (P000069) +NOT "$T_1$" (P000002) AND Second Countable (P000027) AND NOT Markov Menger (P000070) +NOT "$T_1$" (P000002) AND Second Countable (P000027) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_1$" (P000002) AND Second Countable (P000027) AND NOT 2-Markov Menger (P000072) +NOT "$T_1$" (P000002) AND Second Countable (P000027) AND NOT Hemicompact (P000111) +NOT "$T_1$" (P000002) AND NOT Second Countable (P000027) AND Arc connected (P000038) +NOT "$T_1$" (P000002) AND NOT Second Countable (P000027) AND NOT Locally Connected (P000041) +NOT "$T_1$" (P000002) AND NOT Second Countable (P000027) AND Locally Arc Connected (P000043) +NOT "$T_1$" (P000002) AND NOT Second Countable (P000027) AND Zero Dimensional (P000050) +NOT "$T_1$" (P000002) AND NOT Second Countable (P000027) AND "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_1$" (P000002) AND NOT Second Countable (P000027) AND NOT Non-meager (P000056) +NOT "$T_1$" (P000002) AND NOT Second Countable (P000027) AND Countable (P000057) +NOT "$T_1$" (P000002) AND NOT Second Countable (P000027) AND Smaller than the continuum (P000058) +NOT "$T_1$" (P000002) AND NOT Second Countable (P000027) AND NOT Baire (P000064) +NOT "$T_1$" (P000002) AND NOT Second Countable (P000027) AND NOT Continuum-sized (P000065) +NOT "$T_1$" (P000002) AND First Countable (P000028) AND NOT Locally Connected (P000041) +NOT "$T_1$" (P000002) AND First Countable (P000028) AND NOT Locally Path Connected (P000042) +NOT "$T_1$" (P000002) AND NOT First Countable (P000028) AND NOT Countable chain condition (P000029) +NOT "$T_1$" (P000002) AND NOT First Countable (P000028) AND Paracompact (P000030) +NOT "$T_1$" (P000002) AND NOT First Countable (P000028) AND Metacompact (P000031) +NOT "$T_1$" (P000002) AND NOT First Countable (P000028) AND Countably paracompact (P000032) +NOT "$T_1$" (P000002) AND NOT First Countable (P000028) AND Countably metacompact (P000033) +NOT "$T_1$" (P000002) AND NOT First Countable (P000028) AND Fully normal (P000034) +NOT "$T_1$" (P000002) AND NOT First Countable (P000028) AND NOT Connected (P000036) +NOT "$T_1$" (P000002) AND NOT First Countable (P000028) AND Path Connected (P000037) +NOT "$T_1$" (P000002) AND NOT First Countable (P000028) AND Arc connected (P000038) +NOT "$T_1$" (P000002) AND NOT First Countable (P000028) AND NOT Hyperconnected (P000039) +NOT "$T_1$" (P000002) AND NOT First Countable (P000028) AND NOT Locally Connected (P000041) +NOT "$T_1$" (P000002) AND NOT First Countable (P000028) AND Locally Path Connected (P000042) +NOT "$T_1$" (P000002) AND NOT First Countable (P000028) AND Locally Arc Connected (P000043) +NOT "$T_1$" (P000002) AND NOT First Countable (P000028) AND Biconnected (P000044) +NOT "$T_1$" (P000002) AND NOT First Countable (P000028) AND Has Dispersion Point (P000045) +NOT "$T_1$" (P000002) AND NOT First Countable (P000028) AND Zero Dimensional (P000050) +NOT "$T_1$" (P000002) AND NOT First Countable (P000028) AND Scattered (P000051) +NOT "$T_1$" (P000002) AND NOT First Countable (P000028) AND NOT Non-meager (P000056) +NOT "$T_1$" (P000002) AND NOT First Countable (P000028) AND Countable (P000057) +NOT "$T_1$" (P000002) AND NOT First Countable (P000028) AND Smaller than the continuum (P000058) +NOT "$T_1$" (P000002) AND NOT First Countable (P000028) AND NOT Smaller than the continuum (P000058) +NOT "$T_1$" (P000002) AND NOT First Countable (P000028) AND Smaller or same as the continuum (P000059) +NOT "$T_1$" (P000002) AND NOT First Countable (P000028) AND NOT Strongly Connected (P000060) +NOT "$T_1$" (P000002) AND NOT First Countable (P000028) AND NOT Baire (P000064) +NOT "$T_1$" (P000002) AND NOT First Countable (P000028) AND NOT Continuum-sized (P000065) +NOT "$T_1$" (P000002) AND NOT First Countable (P000028) AND Menger (P000066) +NOT "$T_1$" (P000002) AND NOT First Countable (P000028) AND NOT Menger (P000066) +NOT "$T_1$" (P000002) AND NOT First Countable (P000028) AND NOT Rothberger (P000068) +NOT "$T_1$" (P000002) AND NOT First Countable (P000028) AND Strategic Menger (P000069) +NOT "$T_1$" (P000002) AND NOT First Countable (P000028) AND NOT Strategic Menger (P000069) +NOT "$T_1$" (P000002) AND NOT First Countable (P000028) AND Markov Menger (P000070) +NOT "$T_1$" (P000002) AND NOT First Countable (P000028) AND NOT Markov Menger (P000070) +NOT "$T_1$" (P000002) AND NOT First Countable (P000028) AND "$\\sigma$-relatively-compact" (P000071) +NOT "$T_1$" (P000002) AND NOT First Countable (P000028) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_1$" (P000002) AND NOT First Countable (P000028) AND 2-Markov Menger (P000072) +NOT "$T_1$" (P000002) AND NOT First Countable (P000028) AND NOT 2-Markov Menger (P000072) +NOT "$T_1$" (P000002) AND NOT First Countable (P000028) AND sequential (P000079) +NOT "$T_1$" (P000002) AND NOT First Countable (P000028) AND Fréchet Urysohn (P000080) +NOT "$T_1$" (P000002) AND NOT First Countable (P000028) AND Countably tight (P000081) +NOT "$T_1$" (P000002) AND NOT First Countable (P000028) AND NOT homogenous (P000086) +NOT "$T_1$" (P000002) AND NOT First Countable (P000028) AND Hemicompact (P000111) +NOT "$T_1$" (P000002) AND Countable chain condition (P000029) AND NOT Connected (P000036) +NOT "$T_1$" (P000002) AND NOT Countable chain condition (P000029) AND NOT Paracompact (P000030) +NOT "$T_1$" (P000002) AND NOT Countable chain condition (P000029) AND NOT Metacompact (P000031) +NOT "$T_1$" (P000002) AND NOT Countable chain condition (P000029) AND NOT Countably paracompact (P000032) +NOT "$T_1$" (P000002) AND NOT Countable chain condition (P000029) AND NOT Fully normal (P000034) +NOT "$T_1$" (P000002) AND NOT Countable chain condition (P000029) AND Arc connected (P000038) +NOT "$T_1$" (P000002) AND NOT Countable chain condition (P000029) AND NOT Locally Connected (P000041) +NOT "$T_1$" (P000002) AND NOT Countable chain condition (P000029) AND NOT Locally Path Connected (P000042) +NOT "$T_1$" (P000002) AND NOT Countable chain condition (P000029) AND Locally Arc Connected (P000043) +NOT "$T_1$" (P000002) AND NOT Countable chain condition (P000029) AND Zero Dimensional (P000050) +NOT "$T_1$" (P000002) AND NOT Countable chain condition (P000029) AND NOT Scattered (P000051) +NOT "$T_1$" (P000002) AND NOT Countable chain condition (P000029) AND "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_1$" (P000002) AND NOT Countable chain condition (P000029) AND NOT Menger (P000066) +NOT "$T_1$" (P000002) AND NOT Countable chain condition (P000029) AND NOT Rothberger (P000068) +NOT "$T_1$" (P000002) AND NOT Countable chain condition (P000029) AND NOT Strategic Menger (P000069) +NOT "$T_1$" (P000002) AND NOT Countable chain condition (P000029) AND NOT Markov Menger (P000070) +NOT "$T_1$" (P000002) AND NOT Countable chain condition (P000029) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_1$" (P000002) AND NOT Countable chain condition (P000029) AND NOT 2-Markov Menger (P000072) +NOT "$T_1$" (P000002) AND NOT Countable chain condition (P000029) AND NOT Spectral space (P000075) +NOT "$T_1$" (P000002) AND NOT Countable chain condition (P000029) AND NOT Collectionwise normal (P000088) +NOT "$T_1$" (P000002) AND NOT Countable chain condition (P000029) AND NOT Hemicompact (P000111) +NOT "$T_1$" (P000002) AND Paracompact (P000030) AND NOT Menger (P000066) +NOT "$T_1$" (P000002) AND Paracompact (P000030) AND NOT Rothberger (P000068) +NOT "$T_1$" (P000002) AND Paracompact (P000030) AND NOT Strategic Menger (P000069) +NOT "$T_1$" (P000002) AND Paracompact (P000030) AND NOT Markov Menger (P000070) +NOT "$T_1$" (P000002) AND Paracompact (P000030) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_1$" (P000002) AND Paracompact (P000030) AND NOT 2-Markov Menger (P000072) +NOT "$T_1$" (P000002) AND Paracompact (P000030) AND NOT Hemicompact (P000111) +NOT "$T_1$" (P000002) AND NOT Paracompact (P000030) AND Countably paracompact (P000032) +NOT "$T_1$" (P000002) AND NOT Paracompact (P000030) AND NOT Connected (P000036) +NOT "$T_1$" (P000002) AND NOT Paracompact (P000030) AND NOT Locally Connected (P000041) +NOT "$T_1$" (P000002) AND NOT Paracompact (P000030) AND Zero Dimensional (P000050) +NOT "$T_1$" (P000002) AND NOT Paracompact (P000030) AND NOT Strongly Connected (P000060) +NOT "$T_1$" (P000002) AND Metacompact (P000031) AND NOT Menger (P000066) +NOT "$T_1$" (P000002) AND Metacompact (P000031) AND NOT Rothberger (P000068) +NOT "$T_1$" (P000002) AND Metacompact (P000031) AND NOT Strategic Menger (P000069) +NOT "$T_1$" (P000002) AND Metacompact (P000031) AND NOT Markov Menger (P000070) +NOT "$T_1$" (P000002) AND Metacompact (P000031) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_1$" (P000002) AND Metacompact (P000031) AND NOT 2-Markov Menger (P000072) +NOT "$T_1$" (P000002) AND Metacompact (P000031) AND NOT Hemicompact (P000111) +NOT "$T_1$" (P000002) AND NOT Metacompact (P000031) AND Countably paracompact (P000032) +NOT "$T_1$" (P000002) AND NOT Metacompact (P000031) AND Countably metacompact (P000033) +NOT "$T_1$" (P000002) AND NOT Metacompact (P000031) AND NOT Connected (P000036) +NOT "$T_1$" (P000002) AND NOT Metacompact (P000031) AND NOT Locally Connected (P000041) +NOT "$T_1$" (P000002) AND NOT Metacompact (P000031) AND Zero Dimensional (P000050) +NOT "$T_1$" (P000002) AND NOT Metacompact (P000031) AND NOT Strongly Connected (P000060) +NOT "$T_1$" (P000002) AND Countably paracompact (P000032) AND NOT Menger (P000066) +NOT "$T_1$" (P000002) AND Countably paracompact (P000032) AND NOT Rothberger (P000068) +NOT "$T_1$" (P000002) AND Countably paracompact (P000032) AND NOT Strategic Menger (P000069) +NOT "$T_1$" (P000002) AND Countably paracompact (P000032) AND NOT Markov Menger (P000070) +NOT "$T_1$" (P000002) AND Countably paracompact (P000032) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_1$" (P000002) AND Countably paracompact (P000032) AND NOT 2-Markov Menger (P000072) +NOT "$T_1$" (P000002) AND Countably paracompact (P000032) AND NOT Hemicompact (P000111) +NOT "$T_1$" (P000002) AND NOT Countably paracompact (P000032) AND NOT Connected (P000036) +NOT "$T_1$" (P000002) AND NOT Countably paracompact (P000032) AND NOT Locally Connected (P000041) +NOT "$T_1$" (P000002) AND NOT Countably paracompact (P000032) AND Zero Dimensional (P000050) +NOT "$T_1$" (P000002) AND NOT Countably paracompact (P000032) AND NOT Strongly Connected (P000060) +NOT "$T_1$" (P000002) AND Countably metacompact (P000033) AND NOT Menger (P000066) +NOT "$T_1$" (P000002) AND Countably metacompact (P000033) AND NOT Rothberger (P000068) +NOT "$T_1$" (P000002) AND Countably metacompact (P000033) AND NOT Strategic Menger (P000069) +NOT "$T_1$" (P000002) AND Countably metacompact (P000033) AND NOT Markov Menger (P000070) +NOT "$T_1$" (P000002) AND Countably metacompact (P000033) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_1$" (P000002) AND Countably metacompact (P000033) AND NOT 2-Markov Menger (P000072) +NOT "$T_1$" (P000002) AND Countably metacompact (P000033) AND NOT Hemicompact (P000111) +NOT "$T_1$" (P000002) AND NOT Countably metacompact (P000033) AND NOT Locally Connected (P000041) +NOT "$T_1$" (P000002) AND NOT Countably metacompact (P000033) AND NOT Strongly Connected (P000060) +NOT "$T_1$" (P000002) AND Fully normal (P000034) AND NOT Locally Connected (P000041) +NOT "$T_1$" (P000002) AND Fully normal (P000034) AND NOT Locally Path Connected (P000042) +NOT "$T_1$" (P000002) AND Fully normal (P000034) AND NOT Menger (P000066) +NOT "$T_1$" (P000002) AND Fully normal (P000034) AND NOT Rothberger (P000068) +NOT "$T_1$" (P000002) AND Fully normal (P000034) AND NOT Strategic Menger (P000069) +NOT "$T_1$" (P000002) AND Fully normal (P000034) AND NOT Markov Menger (P000070) +NOT "$T_1$" (P000002) AND Fully normal (P000034) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_1$" (P000002) AND Fully normal (P000034) AND NOT 2-Markov Menger (P000072) +NOT "$T_1$" (P000002) AND Fully normal (P000034) AND NOT Hemicompact (P000111) +NOT "$T_1$" (P000002) AND NOT Fully normal (P000034) AND NOT Connected (P000036) +NOT "$T_1$" (P000002) AND NOT Fully normal (P000034) AND NOT Locally Connected (P000041) +NOT "$T_1$" (P000002) AND NOT Fully normal (P000034) AND Zero Dimensional (P000050) +NOT "$T_1$" (P000002) AND NOT Fully normal (P000034) AND NOT Strongly Connected (P000060) +NOT "$T_1$" (P000002) AND NOT Connected (P000036) AND NOT Locally Connected (P000041) +NOT "$T_1$" (P000002) AND NOT Connected (P000036) AND NOT Locally Path Connected (P000042) +NOT "$T_1$" (P000002) AND NOT Connected (P000036) AND Locally Arc Connected (P000043) +NOT "$T_1$" (P000002) AND NOT Connected (P000036) AND Zero Dimensional (P000050) +NOT "$T_1$" (P000002) AND NOT Connected (P000036) AND NOT Scattered (P000051) +NOT "$T_1$" (P000002) AND NOT Connected (P000036) AND "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_1$" (P000002) AND NOT Connected (P000036) AND NOT Non-meager (P000056) +NOT "$T_1$" (P000002) AND NOT Connected (P000036) AND Countable (P000057) +NOT "$T_1$" (P000002) AND NOT Connected (P000036) AND Smaller than the continuum (P000058) +NOT "$T_1$" (P000002) AND NOT Connected (P000036) AND NOT Baire (P000064) +NOT "$T_1$" (P000002) AND NOT Connected (P000036) AND NOT Continuum-sized (P000065) +NOT "$T_1$" (P000002) AND NOT Connected (P000036) AND NOT Menger (P000066) +NOT "$T_1$" (P000002) AND NOT Connected (P000036) AND NOT Rothberger (P000068) +NOT "$T_1$" (P000002) AND NOT Connected (P000036) AND NOT Strategic Menger (P000069) +NOT "$T_1$" (P000002) AND NOT Connected (P000036) AND NOT Markov Menger (P000070) +NOT "$T_1$" (P000002) AND NOT Connected (P000036) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_1$" (P000002) AND NOT Connected (P000036) AND NOT 2-Markov Menger (P000072) +NOT "$T_1$" (P000002) AND NOT Connected (P000036) AND NOT Spectral space (P000075) +NOT "$T_1$" (P000002) AND NOT Connected (P000036) AND Finite (P000078) +NOT "$T_1$" (P000002) AND NOT Connected (P000036) AND NOT Collectionwise normal (P000088) +NOT "$T_1$" (P000002) AND NOT Connected (P000036) AND NOT Hemicompact (P000111) +NOT "$T_1$" (P000002) AND NOT Path Connected (P000037) AND NOT Locally Connected (P000041) +NOT "$T_1$" (P000002) AND NOT Path Connected (P000037) AND Locally Arc Connected (P000043) +NOT "$T_1$" (P000002) AND NOT Path Connected (P000037) AND Biconnected (P000044) +NOT "$T_1$" (P000002) AND NOT Path Connected (P000037) AND Has Dispersion Point (P000045) +NOT "$T_1$" (P000002) AND NOT Path Connected (P000037) AND Zero Dimensional (P000050) +NOT "$T_1$" (P000002) AND NOT Path Connected (P000037) AND "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_1$" (P000002) AND NOT Path Connected (P000037) AND NOT Non-meager (P000056) +NOT "$T_1$" (P000002) AND NOT Path Connected (P000037) AND Countable (P000057) +NOT "$T_1$" (P000002) AND NOT Path Connected (P000037) AND Smaller than the continuum (P000058) +NOT "$T_1$" (P000002) AND NOT Path Connected (P000037) AND NOT Baire (P000064) +NOT "$T_1$" (P000002) AND NOT Path Connected (P000037) AND NOT Continuum-sized (P000065) +NOT "$T_1$" (P000002) AND NOT Path Connected (P000037) AND NOT Menger (P000066) +NOT "$T_1$" (P000002) AND NOT Path Connected (P000037) AND NOT Rothberger (P000068) +NOT "$T_1$" (P000002) AND NOT Path Connected (P000037) AND NOT Strategic Menger (P000069) +NOT "$T_1$" (P000002) AND NOT Path Connected (P000037) AND NOT Markov Menger (P000070) +NOT "$T_1$" (P000002) AND NOT Path Connected (P000037) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_1$" (P000002) AND NOT Path Connected (P000037) AND NOT 2-Markov Menger (P000072) +NOT "$T_1$" (P000002) AND NOT Path Connected (P000037) AND Finite (P000078) +NOT "$T_1$" (P000002) AND Arc connected (P000038) AND NOT Locally Connected (P000041) +NOT "$T_1$" (P000002) AND Arc connected (P000038) AND NOT Locally Path Connected (P000042) +NOT "$T_1$" (P000002) AND Arc connected (P000038) AND NOT Locally Arc Connected (P000043) +NOT "$T_1$" (P000002) AND Arc connected (P000038) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_1$" (P000002) AND Arc connected (P000038) AND NOT Menger (P000066) +NOT "$T_1$" (P000002) AND Arc connected (P000038) AND NOT Rothberger (P000068) +NOT "$T_1$" (P000002) AND Arc connected (P000038) AND NOT Strategic Menger (P000069) +NOT "$T_1$" (P000002) AND Arc connected (P000038) AND NOT Markov Menger (P000070) +NOT "$T_1$" (P000002) AND Arc connected (P000038) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_1$" (P000002) AND Arc connected (P000038) AND NOT 2-Markov Menger (P000072) +NOT "$T_1$" (P000002) AND Arc connected (P000038) AND NOT Hemicompact (P000111) +NOT "$T_1$" (P000002) AND NOT Arc connected (P000038) AND Locally Arc Connected (P000043) +NOT "$T_1$" (P000002) AND NOT Hyperconnected (P000039) AND NOT Menger (P000066) +NOT "$T_1$" (P000002) AND NOT Hyperconnected (P000039) AND NOT Rothberger (P000068) +NOT "$T_1$" (P000002) AND NOT Hyperconnected (P000039) AND NOT Strategic Menger (P000069) +NOT "$T_1$" (P000002) AND NOT Hyperconnected (P000039) AND NOT Markov Menger (P000070) +NOT "$T_1$" (P000002) AND NOT Hyperconnected (P000039) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_1$" (P000002) AND NOT Hyperconnected (P000039) AND NOT 2-Markov Menger (P000072) +NOT "$T_1$" (P000002) AND NOT Hyperconnected (P000039) AND NOT Collectionwise normal (P000088) +NOT "$T_1$" (P000002) AND NOT Hyperconnected (P000039) AND NOT Hemicompact (P000111) +NOT "$T_1$" (P000002) AND NOT Ultraconnected (P000040) AND NOT Locally Connected (P000041) +NOT "$T_1$" (P000002) AND NOT Locally Connected (P000041) AND Biconnected (P000044) +NOT "$T_1$" (P000002) AND NOT Locally Connected (P000041) AND Has Dispersion Point (P000045) +NOT "$T_1$" (P000002) AND NOT Locally Connected (P000041) AND Zero Dimensional (P000050) +NOT "$T_1$" (P000002) AND NOT Locally Connected (P000041) AND Scattered (P000051) +NOT "$T_1$" (P000002) AND NOT Locally Connected (P000041) AND NOT Scattered (P000051) +NOT "$T_1$" (P000002) AND NOT Locally Connected (P000041) AND "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_1$" (P000002) AND NOT Locally Connected (P000041) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_1$" (P000002) AND NOT Locally Connected (P000041) AND Non-meager (P000056) +NOT "$T_1$" (P000002) AND NOT Locally Connected (P000041) AND NOT Countable (P000057) +NOT "$T_1$" (P000002) AND NOT Locally Connected (P000041) AND NOT Smaller than the continuum (P000058) +NOT "$T_1$" (P000002) AND NOT Locally Connected (P000041) AND NOT Strongly Connected (P000060) +NOT "$T_1$" (P000002) AND NOT Locally Connected (P000041) AND NOT Menger (P000066) +NOT "$T_1$" (P000002) AND NOT Locally Connected (P000041) AND NOT Rothberger (P000068) +NOT "$T_1$" (P000002) AND NOT Locally Connected (P000041) AND NOT Strategic Menger (P000069) +NOT "$T_1$" (P000002) AND NOT Locally Connected (P000041) AND NOT Markov Menger (P000070) +NOT "$T_1$" (P000002) AND NOT Locally Connected (P000041) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_1$" (P000002) AND NOT Locally Connected (P000041) AND NOT 2-Markov Menger (P000072) +NOT "$T_1$" (P000002) AND NOT Locally Connected (P000041) AND NOT Spectral space (P000075) +NOT "$T_1$" (P000002) AND NOT Locally Connected (P000041) AND NOT Finite (P000078) +NOT "$T_1$" (P000002) AND NOT Locally Connected (P000041) AND sequential (P000079) +NOT "$T_1$" (P000002) AND NOT Locally Connected (P000041) AND Fréchet Urysohn (P000080) +NOT "$T_1$" (P000002) AND NOT Locally Connected (P000041) AND NOT homogenous (P000086) +NOT "$T_1$" (P000002) AND NOT Locally Connected (P000041) AND NOT Collectionwise normal (P000088) +NOT "$T_1$" (P000002) AND NOT Locally Connected (P000041) AND NOT Hemicompact (P000111) +NOT "$T_1$" (P000002) AND NOT Locally Path Connected (P000042) AND Biconnected (P000044) +NOT "$T_1$" (P000002) AND NOT Locally Path Connected (P000042) AND Has Dispersion Point (P000045) +NOT "$T_1$" (P000002) AND NOT Locally Path Connected (P000042) AND Zero Dimensional (P000050) +NOT "$T_1$" (P000002) AND NOT Locally Path Connected (P000042) AND Scattered (P000051) +NOT "$T_1$" (P000002) AND NOT Locally Path Connected (P000042) AND "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_1$" (P000002) AND NOT Locally Path Connected (P000042) AND NOT Smaller than the continuum (P000058) +NOT "$T_1$" (P000002) AND NOT Locally Path Connected (P000042) AND NOT Strongly Connected (P000060) +NOT "$T_1$" (P000002) AND NOT Locally Path Connected (P000042) AND NOT Menger (P000066) +NOT "$T_1$" (P000002) AND NOT Locally Path Connected (P000042) AND NOT Rothberger (P000068) +NOT "$T_1$" (P000002) AND NOT Locally Path Connected (P000042) AND NOT Strategic Menger (P000069) +NOT "$T_1$" (P000002) AND NOT Locally Path Connected (P000042) AND NOT Markov Menger (P000070) +NOT "$T_1$" (P000002) AND NOT Locally Path Connected (P000042) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_1$" (P000002) AND NOT Locally Path Connected (P000042) AND NOT 2-Markov Menger (P000072) +NOT "$T_1$" (P000002) AND NOT Locally Path Connected (P000042) AND sequential (P000079) +NOT "$T_1$" (P000002) AND NOT Locally Path Connected (P000042) AND Fréchet Urysohn (P000080) +NOT "$T_1$" (P000002) AND NOT Locally Path Connected (P000042) AND NOT homogenous (P000086) +NOT "$T_1$" (P000002) AND Locally Arc Connected (P000043) AND Zero Dimensional (P000050) +NOT "$T_1$" (P000002) AND Locally Arc Connected (P000043) AND Scattered (P000051) +NOT "$T_1$" (P000002) AND Locally Arc Connected (P000043) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_1$" (P000002) AND Locally Arc Connected (P000043) AND Countable (P000057) +NOT "$T_1$" (P000002) AND Locally Arc Connected (P000043) AND Smaller than the continuum (P000058) +NOT "$T_1$" (P000002) AND Locally Arc Connected (P000043) AND NOT Continuum-sized (P000065) +NOT "$T_1$" (P000002) AND Locally Arc Connected (P000043) AND NOT Menger (P000066) +NOT "$T_1$" (P000002) AND Locally Arc Connected (P000043) AND NOT Rothberger (P000068) +NOT "$T_1$" (P000002) AND Locally Arc Connected (P000043) AND NOT Strategic Menger (P000069) +NOT "$T_1$" (P000002) AND Locally Arc Connected (P000043) AND NOT Markov Menger (P000070) +NOT "$T_1$" (P000002) AND Locally Arc Connected (P000043) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_1$" (P000002) AND Locally Arc Connected (P000043) AND NOT 2-Markov Menger (P000072) +NOT "$T_1$" (P000002) AND Locally Arc Connected (P000043) AND Finite (P000078) +NOT "$T_1$" (P000002) AND Locally Arc Connected (P000043) AND NOT Hemicompact (P000111) +NOT "$T_1$" (P000002) AND Biconnected (P000044) AND NOT Scattered (P000051) +NOT "$T_1$" (P000002) AND Biconnected (P000044) AND NOT Non-meager (P000056) +NOT "$T_1$" (P000002) AND Biconnected (P000044) AND NOT Smaller than the continuum (P000058) +NOT "$T_1$" (P000002) AND Biconnected (P000044) AND NOT Strongly Connected (P000060) +NOT "$T_1$" (P000002) AND Biconnected (P000044) AND NOT Baire (P000064) +NOT "$T_1$" (P000002) AND NOT Biconnected (P000044) AND NOT Menger (P000066) +NOT "$T_1$" (P000002) AND NOT Biconnected (P000044) AND NOT Rothberger (P000068) +NOT "$T_1$" (P000002) AND NOT Biconnected (P000044) AND NOT Strategic Menger (P000069) +NOT "$T_1$" (P000002) AND NOT Biconnected (P000044) AND NOT Markov Menger (P000070) +NOT "$T_1$" (P000002) AND NOT Biconnected (P000044) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_1$" (P000002) AND NOT Biconnected (P000044) AND NOT 2-Markov Menger (P000072) +NOT "$T_1$" (P000002) AND NOT Biconnected (P000044) AND Finite (P000078) +NOT "$T_1$" (P000002) AND Has Dispersion Point (P000045) AND NOT Scattered (P000051) +NOT "$T_1$" (P000002) AND Has Dispersion Point (P000045) AND NOT Non-meager (P000056) +NOT "$T_1$" (P000002) AND Has Dispersion Point (P000045) AND NOT Smaller than the continuum (P000058) +NOT "$T_1$" (P000002) AND Has Dispersion Point (P000045) AND NOT Strongly Connected (P000060) +NOT "$T_1$" (P000002) AND Has Dispersion Point (P000045) AND NOT Baire (P000064) +NOT "$T_1$" (P000002) AND NOT Has Dispersion Point (P000045) AND NOT Menger (P000066) +NOT "$T_1$" (P000002) AND NOT Has Dispersion Point (P000045) AND NOT Rothberger (P000068) +NOT "$T_1$" (P000002) AND NOT Has Dispersion Point (P000045) AND NOT Strategic Menger (P000069) +NOT "$T_1$" (P000002) AND NOT Has Dispersion Point (P000045) AND NOT Markov Menger (P000070) +NOT "$T_1$" (P000002) AND NOT Has Dispersion Point (P000045) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_1$" (P000002) AND NOT Has Dispersion Point (P000045) AND NOT 2-Markov Menger (P000072) +NOT "$T_1$" (P000002) AND NOT Has Dispersion Point (P000045) AND Finite (P000078) +NOT "$T_1$" (P000002) AND Zero Dimensional (P000050) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_1$" (P000002) AND Zero Dimensional (P000050) AND NOT Non-meager (P000056) +NOT "$T_1$" (P000002) AND Zero Dimensional (P000050) AND NOT Countable (P000057) +NOT "$T_1$" (P000002) AND Zero Dimensional (P000050) AND NOT Smaller than the continuum (P000058) +NOT "$T_1$" (P000002) AND Zero Dimensional (P000050) AND NOT Baire (P000064) +NOT "$T_1$" (P000002) AND Zero Dimensional (P000050) AND NOT Menger (P000066) +NOT "$T_1$" (P000002) AND Zero Dimensional (P000050) AND NOT Rothberger (P000068) +NOT "$T_1$" (P000002) AND Zero Dimensional (P000050) AND NOT Strategic Menger (P000069) +NOT "$T_1$" (P000002) AND Zero Dimensional (P000050) AND NOT Markov Menger (P000070) +NOT "$T_1$" (P000002) AND Zero Dimensional (P000050) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_1$" (P000002) AND Zero Dimensional (P000050) AND NOT 2-Markov Menger (P000072) +NOT "$T_1$" (P000002) AND Zero Dimensional (P000050) AND Finite (P000078) +NOT "$T_1$" (P000002) AND Zero Dimensional (P000050) AND NOT homogenous (P000086) +NOT "$T_1$" (P000002) AND Zero Dimensional (P000050) AND NOT Collectionwise normal (P000088) +NOT "$T_1$" (P000002) AND Zero Dimensional (P000050) AND NOT Hemicompact (P000111) +NOT "$T_1$" (P000002) AND NOT Scattered (P000051) AND NOT Menger (P000066) +NOT "$T_1$" (P000002) AND NOT Scattered (P000051) AND NOT Rothberger (P000068) +NOT "$T_1$" (P000002) AND NOT Scattered (P000051) AND NOT Strategic Menger (P000069) +NOT "$T_1$" (P000002) AND NOT Scattered (P000051) AND NOT Markov Menger (P000070) +NOT "$T_1$" (P000002) AND NOT Scattered (P000051) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_1$" (P000002) AND NOT Scattered (P000051) AND NOT 2-Markov Menger (P000072) +NOT "$T_1$" (P000002) AND "$\\sigma$-Locally Finite Base" (P000054) AND NOT Menger (P000066) +NOT "$T_1$" (P000002) AND "$\\sigma$-Locally Finite Base" (P000054) AND NOT Rothberger (P000068) +NOT "$T_1$" (P000002) AND "$\\sigma$-Locally Finite Base" (P000054) AND NOT Strategic Menger (P000069) +NOT "$T_1$" (P000002) AND "$\\sigma$-Locally Finite Base" (P000054) AND NOT Markov Menger (P000070) +NOT "$T_1$" (P000002) AND "$\\sigma$-Locally Finite Base" (P000054) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_1$" (P000002) AND "$\\sigma$-Locally Finite Base" (P000054) AND NOT 2-Markov Menger (P000072) +NOT "$T_1$" (P000002) AND "$\\sigma$-Locally Finite Base" (P000054) AND NOT Hemicompact (P000111) +NOT "$T_1$" (P000002) AND NOT "$\\sigma$-Locally Finite Base" (P000054) AND NOT Non-meager (P000056) +NOT "$T_1$" (P000002) AND NOT "$\\sigma$-Locally Finite Base" (P000054) AND Countable (P000057) +NOT "$T_1$" (P000002) AND NOT "$\\sigma$-Locally Finite Base" (P000054) AND Smaller than the continuum (P000058) +NOT "$T_1$" (P000002) AND NOT "$\\sigma$-Locally Finite Base" (P000054) AND NOT Baire (P000064) +NOT "$T_1$" (P000002) AND NOT "$\\sigma$-Locally Finite Base" (P000054) AND NOT Continuum-sized (P000065) +NOT "$T_1$" (P000002) AND NOT "$\\sigma$-Locally Finite Base" (P000054) AND NOT Menger (P000066) +NOT "$T_1$" (P000002) AND NOT "$\\sigma$-Locally Finite Base" (P000054) AND NOT Rothberger (P000068) +NOT "$T_1$" (P000002) AND NOT "$\\sigma$-Locally Finite Base" (P000054) AND NOT Strategic Menger (P000069) +NOT "$T_1$" (P000002) AND NOT "$\\sigma$-Locally Finite Base" (P000054) AND NOT Markov Menger (P000070) +NOT "$T_1$" (P000002) AND NOT "$\\sigma$-Locally Finite Base" (P000054) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_1$" (P000002) AND NOT "$\\sigma$-Locally Finite Base" (P000054) AND NOT 2-Markov Menger (P000072) +NOT "$T_1$" (P000002) AND NOT Countable (P000057) AND NOT Continuum-sized (P000065) +NOT "$T_1$" (P000002) AND NOT Smaller than the continuum (P000058) AND NOT Continuum-sized (P000065) +NOT "$T_1$" (P000002) AND NOT Smaller than the continuum (P000058) AND NOT Menger (P000066) +NOT "$T_1$" (P000002) AND NOT Smaller than the continuum (P000058) AND NOT Rothberger (P000068) +NOT "$T_1$" (P000002) AND NOT Smaller than the continuum (P000058) AND NOT Strategic Menger (P000069) +NOT "$T_1$" (P000002) AND NOT Smaller than the continuum (P000058) AND NOT Markov Menger (P000070) +NOT "$T_1$" (P000002) AND NOT Smaller than the continuum (P000058) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_1$" (P000002) AND NOT Smaller than the continuum (P000058) AND NOT 2-Markov Menger (P000072) +NOT "$T_1$" (P000002) AND NOT Smaller than the continuum (P000058) AND NOT Hemicompact (P000111) +NOT "$T_1$" (P000002) AND Smaller or same as the continuum (P000059) AND NOT Menger (P000066) +NOT "$T_1$" (P000002) AND Smaller or same as the continuum (P000059) AND NOT Rothberger (P000068) +NOT "$T_1$" (P000002) AND Smaller or same as the continuum (P000059) AND NOT Strategic Menger (P000069) +NOT "$T_1$" (P000002) AND Smaller or same as the continuum (P000059) AND NOT Markov Menger (P000070) +NOT "$T_1$" (P000002) AND Smaller or same as the continuum (P000059) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_1$" (P000002) AND Smaller or same as the continuum (P000059) AND NOT 2-Markov Menger (P000072) +NOT "$T_1$" (P000002) AND Smaller or same as the continuum (P000059) AND NOT Hemicompact (P000111) +NOT "$T_1$" (P000002) AND NOT Strongly Connected (P000060) AND NOT Menger (P000066) +NOT "$T_1$" (P000002) AND NOT Strongly Connected (P000060) AND NOT Rothberger (P000068) +NOT "$T_1$" (P000002) AND NOT Strongly Connected (P000060) AND NOT Strategic Menger (P000069) +NOT "$T_1$" (P000002) AND NOT Strongly Connected (P000060) AND NOT Markov Menger (P000070) +NOT "$T_1$" (P000002) AND NOT Strongly Connected (P000060) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_1$" (P000002) AND NOT Strongly Connected (P000060) AND NOT 2-Markov Menger (P000072) +NOT "$T_1$" (P000002) AND NOT Strongly Connected (P000060) AND Finite (P000078) +NOT "$T_1$" (P000002) AND NOT Strongly Connected (P000060) AND NOT Collectionwise normal (P000088) +NOT "$T_1$" (P000002) AND NOT Strongly Connected (P000060) AND NOT Hemicompact (P000111) +NOT "$T_1$" (P000002) AND NOT Continuum-sized (P000065) AND NOT Menger (P000066) +NOT "$T_1$" (P000002) AND NOT Continuum-sized (P000065) AND NOT Rothberger (P000068) +NOT "$T_1$" (P000002) AND NOT Continuum-sized (P000065) AND NOT Strategic Menger (P000069) +NOT "$T_1$" (P000002) AND NOT Continuum-sized (P000065) AND NOT Markov Menger (P000070) +NOT "$T_1$" (P000002) AND NOT Continuum-sized (P000065) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_1$" (P000002) AND NOT Continuum-sized (P000065) AND NOT 2-Markov Menger (P000072) +NOT "$T_1$" (P000002) AND NOT Continuum-sized (P000065) AND NOT Hemicompact (P000111) +NOT "$T_1$" (P000002) AND Menger (P000066) AND NOT Strategic Menger (P000069) +NOT "$T_1$" (P000002) AND Menger (P000066) AND NOT Markov Menger (P000070) +NOT "$T_1$" (P000002) AND Menger (P000066) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_1$" (P000002) AND Menger (P000066) AND NOT 2-Markov Menger (P000072) +NOT "$T_1$" (P000002) AND Menger (P000066) AND NOT Hemicompact (P000111) +"$T_2$" (P000003) AND NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$\\sigma$-compact" (P000017) +"$T_2$" (P000003) AND NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Lindelof (P000018) +"$T_2$" (P000003) AND NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Countably compact (P000019) +"$T_2$" (P000003) AND NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Sequentially Compact (P000020) +"$T_2$" (P000003) AND NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Weakly Countably Compact (P000021) +"$T_2$" (P000003) AND NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Separable (P000026) +"$T_2$" (P000003) AND NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Second Countable (P000027) +"$T_2$" (P000003) AND NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT First Countable (P000028) +"$T_2$" (P000003) AND NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Countable chain condition (P000029) +"$T_2$" (P000003) AND NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Metacompact (P000031) +"$T_2$" (P000003) AND NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Countably paracompact (P000032) +"$T_2$" (P000003) AND NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Countably metacompact (P000033) +"$T_2$" (P000003) AND NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Biconnected (P000044) +"$T_2$" (P000003) AND NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Has Dispersion Point (P000045) +"$T_2$" (P000003) AND NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Totally Disconnected (P000047) +"$T_2$" (P000003) AND NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Scattered (P000051) +"$T_2$" (P000003) AND NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +"$T_2$" (P000003) AND NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Menger (P000066) +"$T_2$" (P000003) AND NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Rothberger (P000068) +"$T_2$" (P000003) AND NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Strategic Menger (P000069) +"$T_2$" (P000003) AND NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Markov Menger (P000070) +"$T_2$" (P000003) AND NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$\\sigma$-relatively-compact" (P000071) +"$T_2$" (P000003) AND NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT 2-Markov Menger (P000072) +"$T_2$" (P000003) AND NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT homogenous (P000086) +"$T_2$" (P000003) AND NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Hemicompact (P000111) +"$T_2$" (P000003) AND NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Hemicompact (P000111) +"$T_2$" (P000003) AND NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Topological manifold (P000124) +"$T_2$" (P000003) AND "$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) +"$T_2$" (P000003) AND NOT "$T_3$" (P000005) AND Hemicompact (P000111) +"$T_2$" (P000003) AND NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Zero Dimensional (P000050) +"$T_2$" (P000003) AND NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Hemicompact (P000111) +"$T_2$" (P000003) AND NOT "$T_4$" (P000007) AND Hemicompact (P000111) +"$T_2$" (P000003) AND NOT Completely Hausdorff (P000009) AND Regular (P000011) +"$T_2$" (P000003) AND NOT Completely Hausdorff (P000009) AND NOT "$\\sigma$-compact" (P000017) +"$T_2$" (P000003) AND NOT Completely Hausdorff (P000009) AND NOT Lindelof (P000018) +"$T_2$" (P000003) AND NOT Completely Hausdorff (P000009) AND Countably compact (P000019) +"$T_2$" (P000003) AND NOT Completely Hausdorff (P000009) AND Sequentially Compact (P000020) +"$T_2$" (P000003) AND NOT Completely Hausdorff (P000009) AND Weakly Countably Compact (P000021) +"$T_2$" (P000003) AND NOT Completely Hausdorff (P000009) AND NOT Separable (P000026) +"$T_2$" (P000003) AND NOT Completely Hausdorff (P000009) AND NOT Second Countable (P000027) +"$T_2$" (P000003) AND NOT Completely Hausdorff (P000009) AND NOT First Countable (P000028) +"$T_2$" (P000003) AND NOT Completely Hausdorff (P000009) AND NOT Countable chain condition (P000029) +"$T_2$" (P000003) AND NOT Completely Hausdorff (P000009) AND NOT Metacompact (P000031) +"$T_2$" (P000003) AND NOT Completely Hausdorff (P000009) AND Countably paracompact (P000032) +"$T_2$" (P000003) AND NOT Completely Hausdorff (P000009) AND NOT Countably metacompact (P000033) +"$T_2$" (P000003) AND NOT Completely Hausdorff (P000009) AND Biconnected (P000044) +"$T_2$" (P000003) AND NOT Completely Hausdorff (P000009) AND Has Dispersion Point (P000045) +"$T_2$" (P000003) AND NOT Completely Hausdorff (P000009) AND Scattered (P000051) +"$T_2$" (P000003) AND NOT Completely Hausdorff (P000009) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +"$T_2$" (P000003) AND NOT Completely Hausdorff (P000009) AND NOT Menger (P000066) +"$T_2$" (P000003) AND NOT Completely Hausdorff (P000009) AND NOT Rothberger (P000068) +"$T_2$" (P000003) AND NOT Completely Hausdorff (P000009) AND NOT Strategic Menger (P000069) +"$T_2$" (P000003) AND NOT Completely Hausdorff (P000009) AND NOT Markov Menger (P000070) +"$T_2$" (P000003) AND NOT Completely Hausdorff (P000009) AND NOT "$\\sigma$-relatively-compact" (P000071) +"$T_2$" (P000003) AND NOT Completely Hausdorff (P000009) AND NOT 2-Markov Menger (P000072) +"$T_2$" (P000003) AND NOT Completely Hausdorff (P000009) AND NOT homogenous (P000086) +"$T_2$" (P000003) AND NOT Completely Hausdorff (P000009) AND Hemicompact (P000111) +"$T_2$" (P000003) AND NOT Completely Hausdorff (P000009) AND NOT Hemicompact (P000111) +"$T_2$" (P000003) AND NOT Completely Hausdorff (P000009) AND NOT Topological manifold (P000124) +"$T_2$" (P000003) AND NOT Regular (P000011) AND Hemicompact (P000111) +"$T_2$" (P000003) AND Completely regular (P000012) AND NOT Cozero complemented (P000061) +"$T_2$" (P000003) AND NOT Completely regular (P000012) AND Hemicompact (P000111) +"$T_2$" (P000003) AND Normal (P000013) AND NOT Countably paracompact (P000032) +"$T_2$" (P000003) AND Normal (P000013) AND NOT Countably metacompact (P000033) +"$T_2$" (P000003) AND Normal (P000013) AND NOT Cozero complemented (P000061) +"$T_2$" (P000003) AND NOT Normal (P000013) AND Hemicompact (P000111) +"$T_2$" (P000003) AND Completely normal (P000014) AND NOT Countably paracompact (P000032) +"$T_2$" (P000003) AND Completely normal (P000014) AND NOT Countably metacompact (P000033) +"$T_2$" (P000003) AND Completely normal (P000014) AND NOT Cozero complemented (P000061) +"$T_2$" (P000003) AND NOT Perfectly Normal (P000015) AND Finite (P000078) +"$T_2$" (P000003) AND Compact (P000016) AND Biconnected (P000044) +"$T_2$" (P000003) AND Compact (P000016) AND Has Dispersion Point (P000045) +"$T_2$" (P000003) AND Compact (P000016) AND NOT Cozero complemented (P000061) +"$T_2$" (P000003) AND Compact (P000016) AND NOT Spectral space (P000075) +"$T_2$" (P000003) AND "$\\sigma$-compact" (P000017) AND NOT Metacompact (P000031) +"$T_2$" (P000003) AND "$\\sigma$-compact" (P000017) AND NOT Countably metacompact (P000033) +"$T_2$" (P000003) AND NOT "$\\sigma$-compact" (P000017) AND Biconnected (P000044) +"$T_2$" (P000003) AND NOT "$\\sigma$-compact" (P000017) AND Has Dispersion Point (P000045) +"$T_2$" (P000003) AND NOT Lindelof (P000018) AND Biconnected (P000044) +"$T_2$" (P000003) AND NOT Lindelof (P000018) AND Has Dispersion Point (P000045) +"$T_2$" (P000003) AND Countably compact (P000019) AND Biconnected (P000044) +"$T_2$" (P000003) AND Countably compact (P000019) AND Has Dispersion Point (P000045) +"$T_2$" (P000003) AND Countably compact (P000019) AND NOT Non-meager (P000056) +"$T_2$" (P000003) AND Countably compact (P000019) AND NOT Baire (P000064) +"$T_2$" (P000003) AND Sequentially Compact (P000020) AND Biconnected (P000044) +"$T_2$" (P000003) AND Sequentially Compact (P000020) AND Has Dispersion Point (P000045) +"$T_2$" (P000003) AND Sequentially Compact (P000020) AND NOT Non-meager (P000056) +"$T_2$" (P000003) AND Sequentially Compact (P000020) AND NOT Baire (P000064) +"$T_2$" (P000003) AND Weakly Countably Compact (P000021) AND Biconnected (P000044) +"$T_2$" (P000003) AND Weakly Countably Compact (P000021) AND Has Dispersion Point (P000045) +"$T_2$" (P000003) AND Weakly Countably Compact (P000021) AND NOT Non-meager (P000056) +"$T_2$" (P000003) AND Weakly Countably Compact (P000021) AND NOT Baire (P000064) +"$T_2$" (P000003) AND Pseudocompact (P000022) AND NOT Countably metacompact (P000033) +"$T_2$" (P000003) AND Pseudocompact (P000022) AND Biconnected (P000044) +"$T_2$" (P000003) AND Pseudocompact (P000022) AND Has Dispersion Point (P000045) +"$T_2$" (P000003) AND Locally Compact (P000023) AND NOT Countably metacompact (P000033) +"$T_2$" (P000003) AND Locally Compact (P000023) AND Biconnected (P000044) +"$T_2$" (P000003) AND Locally Compact (P000023) AND Has Dispersion Point (P000045) +"$T_2$" (P000003) AND Locally Compact (P000023) AND NOT Cozero complemented (P000061) +"$T_2$" (P000003) AND Strongly Locally Compact (P000024) AND Biconnected (P000044) +"$T_2$" (P000003) AND Strongly Locally Compact (P000024) AND Has Dispersion Point (P000045) +"$T_2$" (P000003) AND Strongly Locally Compact (P000024) AND NOT Cozero complemented (P000061) +"$T_2$" (P000003) AND NOT Strongly Locally Compact (P000024) AND Hemicompact (P000111) +"$T_2$" (P000003) AND "$\\sigma$-Locally Compact" (P000025) AND Biconnected (P000044) +"$T_2$" (P000003) AND "$\\sigma$-Locally Compact" (P000025) AND Has Dispersion Point (P000045) +"$T_2$" (P000003) AND "$\\sigma$-Locally Compact" (P000025) AND NOT Cozero complemented (P000061) +"$T_2$" (P000003) AND NOT Separable (P000026) AND NOT Countably metacompact (P000033) +"$T_2$" (P000003) AND NOT Separable (P000026) AND Biconnected (P000044) +"$T_2$" (P000003) AND NOT Separable (P000026) AND Has Dispersion Point (P000045) +"$T_2$" (P000003) AND Second Countable (P000027) AND NOT Topological manifold (P000124) +"$T_2$" (P000003) AND NOT Second Countable (P000027) AND Biconnected (P000044) +"$T_2$" (P000003) AND NOT Second Countable (P000027) AND Has Dispersion Point (P000045) +"$T_2$" (P000003) AND NOT First Countable (P000028) AND NOT Countably metacompact (P000033) +"$T_2$" (P000003) AND NOT First Countable (P000028) AND Biconnected (P000044) +"$T_2$" (P000003) AND NOT First Countable (P000028) AND Has Dispersion Point (P000045) +"$T_2$" (P000003) AND NOT First Countable (P000028) AND NOT Non-meager (P000056) +"$T_2$" (P000003) AND NOT First Countable (P000028) AND NOT Baire (P000064) +"$T_2$" (P000003) AND NOT Countable chain condition (P000029) AND Biconnected (P000044) +"$T_2$" (P000003) AND NOT Countable chain condition (P000029) AND Has Dispersion Point (P000045) +"$T_2$" (P000003) AND Paracompact (P000030) AND NOT Cozero complemented (P000061) +"$T_2$" (P000003) AND NOT Paracompact (P000030) AND Hemicompact (P000111) +"$T_2$" (P000003) AND NOT Metacompact (P000031) AND Biconnected (P000044) +"$T_2$" (P000003) AND NOT Metacompact (P000031) AND Has Dispersion Point (P000045) +"$T_2$" (P000003) AND NOT Metacompact (P000031) AND NOT Non-meager (P000056) +"$T_2$" (P000003) AND NOT Metacompact (P000031) AND Countable (P000057) +"$T_2$" (P000003) AND NOT Metacompact (P000031) AND Smaller than the continuum (P000058) +"$T_2$" (P000003) AND NOT Metacompact (P000031) AND NOT Baire (P000064) +"$T_2$" (P000003) AND NOT Metacompact (P000031) AND Menger (P000066) +"$T_2$" (P000003) AND NOT Metacompact (P000031) AND Strategic Menger (P000069) +"$T_2$" (P000003) AND NOT Metacompact (P000031) AND Markov Menger (P000070) +"$T_2$" (P000003) AND NOT Metacompact (P000031) AND "$\\sigma$-relatively-compact" (P000071) +"$T_2$" (P000003) AND NOT Metacompact (P000031) AND 2-Markov Menger (P000072) +"$T_2$" (P000003) AND NOT Metacompact (P000031) AND Hemicompact (P000111) +"$T_2$" (P000003) AND NOT Countably paracompact (P000032) AND Hemicompact (P000111) +"$T_2$" (P000003) AND NOT Countably metacompact (P000033) AND Biconnected (P000044) +"$T_2$" (P000003) AND NOT Countably metacompact (P000033) AND Has Dispersion Point (P000045) +"$T_2$" (P000003) AND NOT Countably metacompact (P000033) AND Scattered (P000051) +"$T_2$" (P000003) AND NOT Countably metacompact (P000033) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +"$T_2$" (P000003) AND NOT Countably metacompact (P000033) AND Non-meager (P000056) +"$T_2$" (P000003) AND NOT Countably metacompact (P000033) AND NOT Non-meager (P000056) +"$T_2$" (P000003) AND NOT Countably metacompact (P000033) AND Countable (P000057) +"$T_2$" (P000003) AND NOT Countably metacompact (P000033) AND Smaller than the continuum (P000058) +"$T_2$" (P000003) AND NOT Countably metacompact (P000033) AND NOT Baire (P000064) +"$T_2$" (P000003) AND NOT Countably metacompact (P000033) AND NOT Continuum-sized (P000065) +"$T_2$" (P000003) AND NOT Countably metacompact (P000033) AND Menger (P000066) +"$T_2$" (P000003) AND NOT Countably metacompact (P000033) AND Strategic Menger (P000069) +"$T_2$" (P000003) AND NOT Countably metacompact (P000033) AND Markov Menger (P000070) +"$T_2$" (P000003) AND NOT Countably metacompact (P000033) AND "$\\sigma$-relatively-compact" (P000071) +"$T_2$" (P000003) AND NOT Countably metacompact (P000033) AND 2-Markov Menger (P000072) +"$T_2$" (P000003) AND NOT Countably metacompact (P000033) AND NOT homogenous (P000086) +"$T_2$" (P000003) AND NOT Countably metacompact (P000033) AND Hemicompact (P000111) +"$T_2$" (P000003) AND Fully normal (P000034) AND NOT Cozero complemented (P000061) +"$T_2$" (P000003) AND NOT Fully normal (P000034) AND Hemicompact (P000111) +"$T_2$" (P000003) AND NOT Fully $T_4$ (P000035) AND Hemicompact (P000111) +"$T_2$" (P000003) AND Connected (P000036) AND Zero Dimensional (P000050) +"$T_2$" (P000003) AND Connected (P000036) AND Scattered (P000051) +"$T_2$" (P000003) AND Connected (P000036) AND Finite (P000078) +"$T_2$" (P000003) AND Connected (P000036) AND NOT homogenous (P000086) +"$T_2$" (P000003) AND Path Connected (P000037) AND NOT Arc connected (P000038) +"$T_2$" (P000003) AND Path Connected (P000037) AND Biconnected (P000044) +"$T_2$" (P000003) AND Path Connected (P000037) AND Has Dispersion Point (P000045) +"$T_2$" (P000003) AND Path Connected (P000037) AND Zero Dimensional (P000050) +"$T_2$" (P000003) AND Path Connected (P000037) AND Scattered (P000051) +"$T_2$" (P000003) AND Path Connected (P000037) AND Countable (P000057) +"$T_2$" (P000003) AND Path Connected (P000037) AND Smaller than the continuum (P000058) +"$T_2$" (P000003) AND Path Connected (P000037) AND NOT Continuum-sized (P000065) +"$T_2$" (P000003) AND Path Connected (P000037) AND Finite (P000078) +"$T_2$" (P000003) AND Path Connected (P000037) AND NOT homogenous (P000086) +"$T_2$" (P000003) AND Locally Connected (P000041) AND Biconnected (P000044) +"$T_2$" (P000003) AND Locally Connected (P000041) AND Has Dispersion Point (P000045) +"$T_2$" (P000003) AND Locally Connected (P000041) AND NOT homogenous (P000086) +"$T_2$" (P000003) AND Locally Path Connected (P000042) AND NOT Locally Arc Connected (P000043) +"$T_2$" (P000003) AND Locally Path Connected (P000042) AND Biconnected (P000044) +"$T_2$" (P000003) AND Locally Path Connected (P000042) AND Has Dispersion Point (P000045) +"$T_2$" (P000003) AND Locally Path Connected (P000042) AND NOT homogenous (P000086) +"$T_2$" (P000003) AND Biconnected (P000044) AND NOT Totally Path Disconnected (P000046) +"$T_2$" (P000003) AND Biconnected (P000044) AND Scattered (P000051) +"$T_2$" (P000003) AND Biconnected (P000044) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +"$T_2$" (P000003) AND Biconnected (P000044) AND Non-meager (P000056) +"$T_2$" (P000003) AND Biconnected (P000044) AND NOT Menger (P000066) +"$T_2$" (P000003) AND Biconnected (P000044) AND NOT Rothberger (P000068) +"$T_2$" (P000003) AND Biconnected (P000044) AND NOT Strategic Menger (P000069) +"$T_2$" (P000003) AND Biconnected (P000044) AND NOT Markov Menger (P000070) +"$T_2$" (P000003) AND Biconnected (P000044) AND NOT "$\\sigma$-relatively-compact" (P000071) +"$T_2$" (P000003) AND Biconnected (P000044) AND NOT 2-Markov Menger (P000072) +"$T_2$" (P000003) AND Biconnected (P000044) AND Finite (P000078) +"$T_2$" (P000003) AND Biconnected (P000044) AND NOT homogenous (P000086) +"$T_2$" (P000003) AND Biconnected (P000044) AND Hemicompact (P000111) +"$T_2$" (P000003) AND Biconnected (P000044) AND NOT Hemicompact (P000111) +"$T_2$" (P000003) AND Biconnected (P000044) AND NOT Topological manifold (P000124) +"$T_2$" (P000003) AND Has Dispersion Point (P000045) AND NOT Totally Path Disconnected (P000046) +"$T_2$" (P000003) AND Has Dispersion Point (P000045) AND Scattered (P000051) +"$T_2$" (P000003) AND Has Dispersion Point (P000045) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +"$T_2$" (P000003) AND Has Dispersion Point (P000045) AND Non-meager (P000056) +"$T_2$" (P000003) AND Has Dispersion Point (P000045) AND NOT Menger (P000066) +"$T_2$" (P000003) AND Has Dispersion Point (P000045) AND NOT Rothberger (P000068) +"$T_2$" (P000003) AND Has Dispersion Point (P000045) AND NOT Strategic Menger (P000069) +"$T_2$" (P000003) AND Has Dispersion Point (P000045) AND NOT Markov Menger (P000070) +"$T_2$" (P000003) AND Has Dispersion Point (P000045) AND NOT "$\\sigma$-relatively-compact" (P000071) +"$T_2$" (P000003) AND Has Dispersion Point (P000045) AND NOT 2-Markov Menger (P000072) +"$T_2$" (P000003) AND Has Dispersion Point (P000045) AND Finite (P000078) +"$T_2$" (P000003) AND Has Dispersion Point (P000045) AND NOT homogenous (P000086) +"$T_2$" (P000003) AND Has Dispersion Point (P000045) AND Hemicompact (P000111) +"$T_2$" (P000003) AND Has Dispersion Point (P000045) AND NOT Hemicompact (P000111) +"$T_2$" (P000003) AND Has Dispersion Point (P000045) AND NOT Topological manifold (P000124) +"$T_2$" (P000003) AND NOT Totally Path Disconnected (P000046) AND Countable (P000057) +"$T_2$" (P000003) AND NOT Totally Path Disconnected (P000046) AND Smaller than the continuum (P000058) +"$T_2$" (P000003) AND NOT Totally Path Disconnected (P000046) AND NOT Continuum-sized (P000065) +"$T_2$" (P000003) AND NOT Totally Path Disconnected (P000046) AND NOT homogenous (P000086) +"$T_2$" (P000003) AND NOT Totally Disconnected (P000047) AND NOT homogenous (P000086) +"$T_2$" (P000003) AND Zero Dimensional (P000050) AND NOT Cozero complemented (P000061) +"$T_2$" (P000003) AND NOT Non-meager (P000056) AND Hemicompact (P000111) +"$T_2$" (P000003) AND Countable (P000057) AND NOT Corson compact (P000077) +"$T_2$" (P000003) AND Countable (P000057) AND NOT Fréchet Urysohn (P000080) +"$T_2$" (P000003) AND Countable (P000057) AND NOT Eberlein compact (P000091) +"$T_2$" (P000003) AND Smaller than the continuum (P000058) AND NOT Corson compact (P000077) +"$T_2$" (P000003) AND Smaller than the continuum (P000058) AND NOT Fréchet Urysohn (P000080) +"$T_2$" (P000003) AND Smaller than the continuum (P000058) AND NOT Eberlein compact (P000091) +"$T_2$" (P000003) AND NOT Cozero complemented (P000061) AND Hemicompact (P000111) +"$T_2$" (P000003) AND NOT Baire (P000064) AND Hemicompact (P000111) +"$T_2$" (P000003) AND NOT Continuum-sized (P000065) AND NOT Corson compact (P000077) +"$T_2$" (P000003) AND NOT Continuum-sized (P000065) AND NOT Fréchet Urysohn (P000080) +"$T_2$" (P000003) AND NOT Continuum-sized (P000065) AND NOT Eberlein compact (P000091) +"$T_2$" (P000003) AND NOT "$T_6$" (P000067) AND Finite (P000078) +"$T_2$" (P000003) AND NOT Corson compact (P000077) AND Countably tight (P000081) +"$T_2$" (P000003) AND Finite (P000078) AND NOT Topological manifold (P000124) +"$T_2$" (P000003) AND NOT Fréchet Urysohn (P000080) AND Countably tight (P000081) +"$T_2$" (P000003) AND Countably tight (P000081) AND NOT Eberlein compact (P000091) +"$T_2$" (P000003) AND NOT Collectionwise normal (P000088) AND Hemicompact (P000111) +NOT "$T_2$" (P000003) AND NOT "$T_3$" (P000005) AND NOT Lindelof (P000018) +NOT "$T_2$" (P000003) AND NOT "$T_3$" (P000005) AND NOT Menger (P000066) +NOT "$T_2$" (P000003) AND NOT "$T_3$" (P000005) AND NOT Rothberger (P000068) +NOT "$T_2$" (P000003) AND NOT "$T_3$" (P000005) AND NOT Strategic Menger (P000069) +NOT "$T_2$" (P000003) AND NOT "$T_3$" (P000005) AND NOT Markov Menger (P000070) +NOT "$T_2$" (P000003) AND NOT "$T_3$" (P000005) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_2$" (P000003) AND NOT "$T_3$" (P000005) AND NOT 2-Markov Menger (P000072) +NOT "$T_2$" (P000003) AND Semiregular (P000010) AND NOT Regular (P000011) +NOT "$T_2$" (P000003) AND Semiregular (P000010) AND NOT Completely regular (P000012) +NOT "$T_2$" (P000003) AND Semiregular (P000010) AND NOT Normal (P000013) +NOT "$T_2$" (P000003) AND Semiregular (P000010) AND NOT Completely normal (P000014) +NOT "$T_2$" (P000003) AND Semiregular (P000010) AND NOT "$\\sigma$-compact" (P000017) +NOT "$T_2$" (P000003) AND Semiregular (P000010) AND NOT Lindelof (P000018) +NOT "$T_2$" (P000003) AND Semiregular (P000010) AND NOT Weakly Countably Compact (P000021) +NOT "$T_2$" (P000003) AND Semiregular (P000010) AND NOT Locally Compact (P000023) +NOT "$T_2$" (P000003) AND Semiregular (P000010) AND NOT Strongly Locally Compact (P000024) +NOT "$T_2$" (P000003) AND Semiregular (P000010) AND NOT "$\\sigma$-Locally Compact" (P000025) +NOT "$T_2$" (P000003) AND Semiregular (P000010) AND NOT Separable (P000026) +NOT "$T_2$" (P000003) AND Semiregular (P000010) AND NOT Second Countable (P000027) +NOT "$T_2$" (P000003) AND Semiregular (P000010) AND NOT First Countable (P000028) +NOT "$T_2$" (P000003) AND Semiregular (P000010) AND NOT Countable chain condition (P000029) +NOT "$T_2$" (P000003) AND Semiregular (P000010) AND NOT Paracompact (P000030) +NOT "$T_2$" (P000003) AND Semiregular (P000010) AND NOT Metacompact (P000031) +NOT "$T_2$" (P000003) AND Semiregular (P000010) AND NOT Countably paracompact (P000032) +NOT "$T_2$" (P000003) AND Semiregular (P000010) AND NOT Fully normal (P000034) +NOT "$T_2$" (P000003) AND Semiregular (P000010) AND NOT Connected (P000036) +NOT "$T_2$" (P000003) AND Semiregular (P000010) AND NOT Path Connected (P000037) +NOT "$T_2$" (P000003) AND Semiregular (P000010) AND NOT Locally Connected (P000041) +NOT "$T_2$" (P000003) AND Semiregular (P000010) AND NOT Locally Path Connected (P000042) +NOT "$T_2$" (P000003) AND Semiregular (P000010) AND Biconnected (P000044) +NOT "$T_2$" (P000003) AND Semiregular (P000010) AND Has Dispersion Point (P000045) +NOT "$T_2$" (P000003) AND Semiregular (P000010) AND Totally Path Disconnected (P000046) +NOT "$T_2$" (P000003) AND Semiregular (P000010) AND Totally Disconnected (P000047) +NOT "$T_2$" (P000003) AND Semiregular (P000010) AND Scattered (P000051) +NOT "$T_2$" (P000003) AND Semiregular (P000010) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_2$" (P000003) AND Semiregular (P000010) AND NOT Menger (P000066) +NOT "$T_2$" (P000003) AND Semiregular (P000010) AND NOT Rothberger (P000068) +NOT "$T_2$" (P000003) AND Semiregular (P000010) AND NOT Strategic Menger (P000069) +NOT "$T_2$" (P000003) AND Semiregular (P000010) AND NOT Markov Menger (P000070) +NOT "$T_2$" (P000003) AND Semiregular (P000010) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_2$" (P000003) AND Semiregular (P000010) AND NOT 2-Markov Menger (P000072) +NOT "$T_2$" (P000003) AND Semiregular (P000010) AND Finite (P000078) +NOT "$T_2$" (P000003) AND Semiregular (P000010) AND NOT homogenous (P000086) +NOT "$T_2$" (P000003) AND Semiregular (P000010) AND NOT Collectionwise normal (P000088) +NOT "$T_2$" (P000003) AND Semiregular (P000010) AND NOT Hemicompact (P000111) +NOT "$T_2$" (P000003) AND Regular (P000011) AND NOT Completely regular (P000012) +NOT "$T_2$" (P000003) AND Regular (P000011) AND NOT Normal (P000013) +NOT "$T_2$" (P000003) AND Regular (P000011) AND NOT Completely normal (P000014) +NOT "$T_2$" (P000003) AND Regular (P000011) AND NOT "$\\sigma$-compact" (P000017) +NOT "$T_2$" (P000003) AND Regular (P000011) AND NOT Lindelof (P000018) +NOT "$T_2$" (P000003) AND Regular (P000011) AND NOT Weakly Countably Compact (P000021) +NOT "$T_2$" (P000003) AND Regular (P000011) AND NOT Locally Compact (P000023) +NOT "$T_2$" (P000003) AND Regular (P000011) AND NOT Strongly Locally Compact (P000024) +NOT "$T_2$" (P000003) AND Regular (P000011) AND NOT "$\\sigma$-Locally Compact" (P000025) +NOT "$T_2$" (P000003) AND Regular (P000011) AND NOT Separable (P000026) +NOT "$T_2$" (P000003) AND Regular (P000011) AND NOT Second Countable (P000027) +NOT "$T_2$" (P000003) AND Regular (P000011) AND NOT First Countable (P000028) +NOT "$T_2$" (P000003) AND Regular (P000011) AND NOT Countable chain condition (P000029) +NOT "$T_2$" (P000003) AND Regular (P000011) AND NOT Paracompact (P000030) +NOT "$T_2$" (P000003) AND Regular (P000011) AND NOT Metacompact (P000031) +NOT "$T_2$" (P000003) AND Regular (P000011) AND NOT Countably paracompact (P000032) +NOT "$T_2$" (P000003) AND Regular (P000011) AND NOT Fully normal (P000034) +NOT "$T_2$" (P000003) AND Regular (P000011) AND NOT Connected (P000036) +NOT "$T_2$" (P000003) AND Regular (P000011) AND NOT Path Connected (P000037) +NOT "$T_2$" (P000003) AND Regular (P000011) AND NOT Locally Connected (P000041) +NOT "$T_2$" (P000003) AND Regular (P000011) AND NOT Locally Path Connected (P000042) +NOT "$T_2$" (P000003) AND Regular (P000011) AND Biconnected (P000044) +NOT "$T_2$" (P000003) AND Regular (P000011) AND Has Dispersion Point (P000045) +NOT "$T_2$" (P000003) AND Regular (P000011) AND Totally Path Disconnected (P000046) +NOT "$T_2$" (P000003) AND Regular (P000011) AND Totally Disconnected (P000047) +NOT "$T_2$" (P000003) AND Regular (P000011) AND Scattered (P000051) +NOT "$T_2$" (P000003) AND Regular (P000011) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_2$" (P000003) AND Regular (P000011) AND NOT Menger (P000066) +NOT "$T_2$" (P000003) AND Regular (P000011) AND NOT Rothberger (P000068) +NOT "$T_2$" (P000003) AND Regular (P000011) AND NOT Strategic Menger (P000069) +NOT "$T_2$" (P000003) AND Regular (P000011) AND NOT Markov Menger (P000070) +NOT "$T_2$" (P000003) AND Regular (P000011) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_2$" (P000003) AND Regular (P000011) AND NOT 2-Markov Menger (P000072) +NOT "$T_2$" (P000003) AND Regular (P000011) AND Finite (P000078) +NOT "$T_2$" (P000003) AND Regular (P000011) AND NOT homogenous (P000086) +NOT "$T_2$" (P000003) AND Regular (P000011) AND NOT Collectionwise normal (P000088) +NOT "$T_2$" (P000003) AND Regular (P000011) AND NOT Hemicompact (P000111) +NOT "$T_2$" (P000003) AND NOT Regular (P000011) AND NOT Lindelof (P000018) +NOT "$T_2$" (P000003) AND NOT Regular (P000011) AND NOT Menger (P000066) +NOT "$T_2$" (P000003) AND NOT Regular (P000011) AND NOT Rothberger (P000068) +NOT "$T_2$" (P000003) AND NOT Regular (P000011) AND NOT Strategic Menger (P000069) +NOT "$T_2$" (P000003) AND NOT Regular (P000011) AND NOT Markov Menger (P000070) +NOT "$T_2$" (P000003) AND NOT Regular (P000011) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_2$" (P000003) AND NOT Regular (P000011) AND NOT 2-Markov Menger (P000072) +NOT "$T_2$" (P000003) AND Completely regular (P000012) AND NOT Normal (P000013) +NOT "$T_2$" (P000003) AND Completely regular (P000012) AND NOT Completely normal (P000014) +NOT "$T_2$" (P000003) AND Completely regular (P000012) AND NOT "$\\sigma$-compact" (P000017) +NOT "$T_2$" (P000003) AND Completely regular (P000012) AND NOT Lindelof (P000018) +NOT "$T_2$" (P000003) AND Completely regular (P000012) AND NOT Weakly Countably Compact (P000021) +NOT "$T_2$" (P000003) AND Completely regular (P000012) AND NOT Locally Compact (P000023) +NOT "$T_2$" (P000003) AND Completely regular (P000012) AND NOT Strongly Locally Compact (P000024) +NOT "$T_2$" (P000003) AND Completely regular (P000012) AND NOT "$\\sigma$-Locally Compact" (P000025) +NOT "$T_2$" (P000003) AND Completely regular (P000012) AND NOT Separable (P000026) +NOT "$T_2$" (P000003) AND Completely regular (P000012) AND NOT Second Countable (P000027) +NOT "$T_2$" (P000003) AND Completely regular (P000012) AND NOT First Countable (P000028) +NOT "$T_2$" (P000003) AND Completely regular (P000012) AND NOT Countable chain condition (P000029) +NOT "$T_2$" (P000003) AND Completely regular (P000012) AND NOT Paracompact (P000030) +NOT "$T_2$" (P000003) AND Completely regular (P000012) AND NOT Metacompact (P000031) +NOT "$T_2$" (P000003) AND Completely regular (P000012) AND NOT Countably paracompact (P000032) +NOT "$T_2$" (P000003) AND Completely regular (P000012) AND NOT Fully normal (P000034) +NOT "$T_2$" (P000003) AND Completely regular (P000012) AND NOT Connected (P000036) +NOT "$T_2$" (P000003) AND Completely regular (P000012) AND NOT Path Connected (P000037) +NOT "$T_2$" (P000003) AND Completely regular (P000012) AND NOT Locally Connected (P000041) +NOT "$T_2$" (P000003) AND Completely regular (P000012) AND NOT Locally Path Connected (P000042) +NOT "$T_2$" (P000003) AND Completely regular (P000012) AND Biconnected (P000044) +NOT "$T_2$" (P000003) AND Completely regular (P000012) AND Has Dispersion Point (P000045) +NOT "$T_2$" (P000003) AND Completely regular (P000012) AND Totally Path Disconnected (P000046) +NOT "$T_2$" (P000003) AND Completely regular (P000012) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_2$" (P000003) AND Completely regular (P000012) AND NOT Menger (P000066) +NOT "$T_2$" (P000003) AND Completely regular (P000012) AND NOT Rothberger (P000068) +NOT "$T_2$" (P000003) AND Completely regular (P000012) AND NOT Strategic Menger (P000069) +NOT "$T_2$" (P000003) AND Completely regular (P000012) AND NOT Markov Menger (P000070) +NOT "$T_2$" (P000003) AND Completely regular (P000012) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_2$" (P000003) AND Completely regular (P000012) AND NOT 2-Markov Menger (P000072) +NOT "$T_2$" (P000003) AND Completely regular (P000012) AND Finite (P000078) +NOT "$T_2$" (P000003) AND Completely regular (P000012) AND NOT homogenous (P000086) +NOT "$T_2$" (P000003) AND Completely regular (P000012) AND NOT Collectionwise normal (P000088) +NOT "$T_2$" (P000003) AND Completely regular (P000012) AND NOT Hemicompact (P000111) +NOT "$T_2$" (P000003) AND Normal (P000013) AND NOT "$\\sigma$-compact" (P000017) +NOT "$T_2$" (P000003) AND Normal (P000013) AND NOT Lindelof (P000018) +NOT "$T_2$" (P000003) AND Normal (P000013) AND NOT Locally Compact (P000023) +NOT "$T_2$" (P000003) AND Normal (P000013) AND NOT "$\\sigma$-Locally Compact" (P000025) +NOT "$T_2$" (P000003) AND Normal (P000013) AND NOT First Countable (P000028) +NOT "$T_2$" (P000003) AND Normal (P000013) AND Totally Path Disconnected (P000046) +NOT "$T_2$" (P000003) AND Normal (P000013) AND NOT Menger (P000066) +NOT "$T_2$" (P000003) AND Normal (P000013) AND NOT Rothberger (P000068) +NOT "$T_2$" (P000003) AND Normal (P000013) AND NOT Strategic Menger (P000069) +NOT "$T_2$" (P000003) AND Normal (P000013) AND NOT Markov Menger (P000070) +NOT "$T_2$" (P000003) AND Normal (P000013) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_2$" (P000003) AND Normal (P000013) AND NOT 2-Markov Menger (P000072) +NOT "$T_2$" (P000003) AND Normal (P000013) AND NOT Hemicompact (P000111) +NOT "$T_2$" (P000003) AND NOT Normal (P000013) AND NOT Pseudocompact (P000022) +NOT "$T_2$" (P000003) AND NOT Normal (P000013) AND Zero Dimensional (P000050) +NOT "$T_2$" (P000003) AND Completely normal (P000014) AND NOT "$\\sigma$-compact" (P000017) +NOT "$T_2$" (P000003) AND Completely normal (P000014) AND NOT Lindelof (P000018) +NOT "$T_2$" (P000003) AND Completely normal (P000014) AND NOT Locally Compact (P000023) +NOT "$T_2$" (P000003) AND Completely normal (P000014) AND NOT "$\\sigma$-Locally Compact" (P000025) +NOT "$T_2$" (P000003) AND Completely normal (P000014) AND NOT First Countable (P000028) +NOT "$T_2$" (P000003) AND Completely normal (P000014) AND Totally Path Disconnected (P000046) +NOT "$T_2$" (P000003) AND Completely normal (P000014) AND NOT Menger (P000066) +NOT "$T_2$" (P000003) AND Completely normal (P000014) AND NOT Rothberger (P000068) +NOT "$T_2$" (P000003) AND Completely normal (P000014) AND NOT Strategic Menger (P000069) +NOT "$T_2$" (P000003) AND Completely normal (P000014) AND NOT Markov Menger (P000070) +NOT "$T_2$" (P000003) AND Completely normal (P000014) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_2$" (P000003) AND Completely normal (P000014) AND NOT 2-Markov Menger (P000072) +NOT "$T_2$" (P000003) AND Completely normal (P000014) AND NOT Hemicompact (P000111) +NOT "$T_2$" (P000003) AND NOT Completely normal (P000014) AND NOT Pseudocompact (P000022) +NOT "$T_2$" (P000003) AND NOT Completely normal (P000014) AND Fully normal (P000034) +NOT "$T_2$" (P000003) AND NOT Completely normal (P000014) AND Zero Dimensional (P000050) +NOT "$T_2$" (P000003) AND Compact (P000016) AND NOT Sequentially Compact (P000020) +NOT "$T_2$" (P000003) AND NOT Compact (P000016) AND Countably compact (P000019) +NOT "$T_2$" (P000003) AND NOT Compact (P000016) AND Sequentially Compact (P000020) +NOT "$T_2$" (P000003) AND NOT Compact (P000016) AND NOT Countable chain condition (P000029) +NOT "$T_2$" (P000003) AND NOT Compact (P000016) AND NOT Connected (P000036) +NOT "$T_2$" (P000003) AND NOT Compact (P000016) AND NOT Locally Connected (P000041) +NOT "$T_2$" (P000003) AND NOT Compact (P000016) AND Totally Disconnected (P000047) +NOT "$T_2$" (P000003) AND "$\\sigma$-compact" (P000017) AND NOT Locally Compact (P000023) +NOT "$T_2$" (P000003) AND "$\\sigma$-compact" (P000017) AND NOT "$\\sigma$-Locally Compact" (P000025) +NOT "$T_2$" (P000003) AND NOT "$\\sigma$-compact" (P000017) AND Countably compact (P000019) +NOT "$T_2$" (P000003) AND NOT "$\\sigma$-compact" (P000017) AND Sequentially Compact (P000020) +NOT "$T_2$" (P000003) AND NOT "$\\sigma$-compact" (P000017) AND NOT Pseudocompact (P000022) +NOT "$T_2$" (P000003) AND NOT "$\\sigma$-compact" (P000017) AND Strongly Locally Compact (P000024) +NOT "$T_2$" (P000003) AND NOT "$\\sigma$-compact" (P000017) AND Second Countable (P000027) +NOT "$T_2$" (P000003) AND NOT "$\\sigma$-compact" (P000017) AND NOT Countable chain condition (P000029) +NOT "$T_2$" (P000003) AND NOT "$\\sigma$-compact" (P000017) AND Paracompact (P000030) +NOT "$T_2$" (P000003) AND NOT "$\\sigma$-compact" (P000017) AND Metacompact (P000031) +NOT "$T_2$" (P000003) AND NOT "$\\sigma$-compact" (P000017) AND Countably paracompact (P000032) +NOT "$T_2$" (P000003) AND NOT "$\\sigma$-compact" (P000017) AND Countably metacompact (P000033) +NOT "$T_2$" (P000003) AND NOT "$\\sigma$-compact" (P000017) AND Fully normal (P000034) +NOT "$T_2$" (P000003) AND NOT "$\\sigma$-compact" (P000017) AND NOT Connected (P000036) +NOT "$T_2$" (P000003) AND NOT "$\\sigma$-compact" (P000017) AND Arc connected (P000038) +NOT "$T_2$" (P000003) AND NOT "$\\sigma$-compact" (P000017) AND NOT Hyperconnected (P000039) +NOT "$T_2$" (P000003) AND NOT "$\\sigma$-compact" (P000017) AND NOT Locally Connected (P000041) +NOT "$T_2$" (P000003) AND NOT "$\\sigma$-compact" (P000017) AND Locally Arc Connected (P000043) +NOT "$T_2$" (P000003) AND NOT "$\\sigma$-compact" (P000017) AND Totally Disconnected (P000047) +NOT "$T_2$" (P000003) AND NOT "$\\sigma$-compact" (P000017) AND Zero Dimensional (P000050) +NOT "$T_2$" (P000003) AND NOT "$\\sigma$-compact" (P000017) AND "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_2$" (P000003) AND NOT "$\\sigma$-compact" (P000017) AND NOT Smaller than the continuum (P000058) +NOT "$T_2$" (P000003) AND NOT "$\\sigma$-compact" (P000017) AND Smaller or same as the continuum (P000059) +NOT "$T_2$" (P000003) AND NOT "$\\sigma$-compact" (P000017) AND NOT Strongly Connected (P000060) +NOT "$T_2$" (P000003) AND NOT "$\\sigma$-compact" (P000017) AND NOT Continuum-sized (P000065) +NOT "$T_2$" (P000003) AND NOT "$\\sigma$-compact" (P000017) AND Menger (P000066) +NOT "$T_2$" (P000003) AND Lindelof (P000018) AND NOT Strategic Menger (P000069) +NOT "$T_2$" (P000003) AND Lindelof (P000018) AND NOT Markov Menger (P000070) +NOT "$T_2$" (P000003) AND Lindelof (P000018) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_2$" (P000003) AND Lindelof (P000018) AND NOT 2-Markov Menger (P000072) +NOT "$T_2$" (P000003) AND NOT Lindelof (P000018) AND Countably compact (P000019) +NOT "$T_2$" (P000003) AND NOT Lindelof (P000018) AND Sequentially Compact (P000020) +NOT "$T_2$" (P000003) AND NOT Lindelof (P000018) AND Weakly Countably Compact (P000021) +NOT "$T_2$" (P000003) AND NOT Lindelof (P000018) AND NOT Pseudocompact (P000022) +NOT "$T_2$" (P000003) AND NOT Lindelof (P000018) AND NOT Locally Compact (P000023) +NOT "$T_2$" (P000003) AND NOT Lindelof (P000018) AND Strongly Locally Compact (P000024) +NOT "$T_2$" (P000003) AND NOT Lindelof (P000018) AND NOT Separable (P000026) +NOT "$T_2$" (P000003) AND NOT Lindelof (P000018) AND NOT First Countable (P000028) +NOT "$T_2$" (P000003) AND NOT Lindelof (P000018) AND NOT Countable chain condition (P000029) +NOT "$T_2$" (P000003) AND NOT Lindelof (P000018) AND Paracompact (P000030) +NOT "$T_2$" (P000003) AND NOT Lindelof (P000018) AND Metacompact (P000031) +NOT "$T_2$" (P000003) AND NOT Lindelof (P000018) AND Countably paracompact (P000032) +NOT "$T_2$" (P000003) AND NOT Lindelof (P000018) AND Countably metacompact (P000033) +NOT "$T_2$" (P000003) AND NOT Lindelof (P000018) AND Fully normal (P000034) +NOT "$T_2$" (P000003) AND NOT Lindelof (P000018) AND NOT Connected (P000036) +NOT "$T_2$" (P000003) AND NOT Lindelof (P000018) AND NOT Path Connected (P000037) +NOT "$T_2$" (P000003) AND NOT Lindelof (P000018) AND Arc connected (P000038) +NOT "$T_2$" (P000003) AND NOT Lindelof (P000018) AND NOT Hyperconnected (P000039) +NOT "$T_2$" (P000003) AND NOT Lindelof (P000018) AND NOT Locally Connected (P000041) +NOT "$T_2$" (P000003) AND NOT Lindelof (P000018) AND NOT Locally Path Connected (P000042) +NOT "$T_2$" (P000003) AND NOT Lindelof (P000018) AND Locally Arc Connected (P000043) +NOT "$T_2$" (P000003) AND NOT Lindelof (P000018) AND NOT Biconnected (P000044) +NOT "$T_2$" (P000003) AND NOT Lindelof (P000018) AND NOT Has Dispersion Point (P000045) +NOT "$T_2$" (P000003) AND NOT Lindelof (P000018) AND Totally Path Disconnected (P000046) +NOT "$T_2$" (P000003) AND NOT Lindelof (P000018) AND Totally Disconnected (P000047) +NOT "$T_2$" (P000003) AND NOT Lindelof (P000018) AND Zero Dimensional (P000050) +NOT "$T_2$" (P000003) AND NOT Lindelof (P000018) AND NOT Scattered (P000051) +NOT "$T_2$" (P000003) AND NOT Lindelof (P000018) AND "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_2$" (P000003) AND NOT Lindelof (P000018) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_2$" (P000003) AND NOT Lindelof (P000018) AND NOT Smaller than the continuum (P000058) +NOT "$T_2$" (P000003) AND NOT Lindelof (P000018) AND Smaller or same as the continuum (P000059) +NOT "$T_2$" (P000003) AND NOT Lindelof (P000018) AND NOT Strongly Connected (P000060) +NOT "$T_2$" (P000003) AND NOT Lindelof (P000018) AND NOT Continuum-sized (P000065) +NOT "$T_2$" (P000003) AND Countably compact (P000019) AND NOT Sequentially Compact (P000020) +NOT "$T_2$" (P000003) AND Countably compact (P000019) AND NOT Locally Compact (P000023) +NOT "$T_2$" (P000003) AND Countably compact (P000019) AND NOT Strongly Locally Compact (P000024) +NOT "$T_2$" (P000003) AND Countably compact (P000019) AND NOT "$\\sigma$-Locally Compact" (P000025) +NOT "$T_2$" (P000003) AND Countably compact (P000019) AND NOT Paracompact (P000030) +NOT "$T_2$" (P000003) AND Countably compact (P000019) AND NOT Metacompact (P000031) +NOT "$T_2$" (P000003) AND Countably compact (P000019) AND NOT Menger (P000066) +NOT "$T_2$" (P000003) AND Countably compact (P000019) AND NOT Rothberger (P000068) +NOT "$T_2$" (P000003) AND Countably compact (P000019) AND NOT Strategic Menger (P000069) +NOT "$T_2$" (P000003) AND Countably compact (P000019) AND NOT Markov Menger (P000070) +NOT "$T_2$" (P000003) AND Countably compact (P000019) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_2$" (P000003) AND Countably compact (P000019) AND NOT 2-Markov Menger (P000072) +NOT "$T_2$" (P000003) AND Countably compact (P000019) AND NOT Hemicompact (P000111) +NOT "$T_2$" (P000003) AND NOT Countably compact (P000019) AND NOT Countable chain condition (P000029) +NOT "$T_2$" (P000003) AND NOT Countably compact (P000019) AND NOT Connected (P000036) +NOT "$T_2$" (P000003) AND NOT Countably compact (P000019) AND NOT Locally Connected (P000041) +NOT "$T_2$" (P000003) AND NOT Countably compact (P000019) AND Totally Disconnected (P000047) +NOT "$T_2$" (P000003) AND Sequentially Compact (P000020) AND NOT Locally Compact (P000023) +NOT "$T_2$" (P000003) AND Sequentially Compact (P000020) AND NOT Strongly Locally Compact (P000024) +NOT "$T_2$" (P000003) AND Sequentially Compact (P000020) AND NOT "$\\sigma$-Locally Compact" (P000025) +NOT "$T_2$" (P000003) AND Sequentially Compact (P000020) AND NOT Paracompact (P000030) +NOT "$T_2$" (P000003) AND Sequentially Compact (P000020) AND NOT Metacompact (P000031) +NOT "$T_2$" (P000003) AND Sequentially Compact (P000020) AND NOT Menger (P000066) +NOT "$T_2$" (P000003) AND Sequentially Compact (P000020) AND NOT Rothberger (P000068) +NOT "$T_2$" (P000003) AND Sequentially Compact (P000020) AND NOT Strategic Menger (P000069) +NOT "$T_2$" (P000003) AND Sequentially Compact (P000020) AND NOT Markov Menger (P000070) +NOT "$T_2$" (P000003) AND Sequentially Compact (P000020) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_2$" (P000003) AND Sequentially Compact (P000020) AND NOT 2-Markov Menger (P000072) +NOT "$T_2$" (P000003) AND Sequentially Compact (P000020) AND NOT Hemicompact (P000111) +NOT "$T_2$" (P000003) AND NOT Sequentially Compact (P000020) AND NOT Countable chain condition (P000029) +NOT "$T_2$" (P000003) AND NOT Sequentially Compact (P000020) AND NOT Connected (P000036) +NOT "$T_2$" (P000003) AND NOT Sequentially Compact (P000020) AND NOT Locally Connected (P000041) +NOT "$T_2$" (P000003) AND NOT Sequentially Compact (P000020) AND Totally Disconnected (P000047) +NOT "$T_2$" (P000003) AND Weakly Countably Compact (P000021) AND NOT Menger (P000066) +NOT "$T_2$" (P000003) AND Weakly Countably Compact (P000021) AND NOT Rothberger (P000068) +NOT "$T_2$" (P000003) AND Weakly Countably Compact (P000021) AND NOT Strategic Menger (P000069) +NOT "$T_2$" (P000003) AND Weakly Countably Compact (P000021) AND NOT Markov Menger (P000070) +NOT "$T_2$" (P000003) AND Weakly Countably Compact (P000021) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_2$" (P000003) AND Weakly Countably Compact (P000021) AND NOT 2-Markov Menger (P000072) +NOT "$T_2$" (P000003) AND NOT Weakly Countably Compact (P000021) AND NOT Countable chain condition (P000029) +NOT "$T_2$" (P000003) AND NOT Weakly Countably Compact (P000021) AND NOT Connected (P000036) +NOT "$T_2$" (P000003) AND NOT Weakly Countably Compact (P000021) AND Arc connected (P000038) +NOT "$T_2$" (P000003) AND NOT Weakly Countably Compact (P000021) AND NOT Locally Connected (P000041) +NOT "$T_2$" (P000003) AND NOT Weakly Countably Compact (P000021) AND Locally Arc Connected (P000043) +NOT "$T_2$" (P000003) AND NOT Weakly Countably Compact (P000021) AND Totally Disconnected (P000047) +NOT "$T_2$" (P000003) AND NOT Weakly Countably Compact (P000021) AND Zero Dimensional (P000050) +NOT "$T_2$" (P000003) AND NOT Weakly Countably Compact (P000021) AND NOT Non-meager (P000056) +NOT "$T_2$" (P000003) AND NOT Weakly Countably Compact (P000021) AND NOT Smaller than the continuum (P000058) +NOT "$T_2$" (P000003) AND NOT Weakly Countably Compact (P000021) AND NOT Baire (P000064) +NOT "$T_2$" (P000003) AND NOT Pseudocompact (P000022) AND NOT Locally Compact (P000023) +NOT "$T_2$" (P000003) AND NOT Pseudocompact (P000022) AND NOT Strongly Locally Compact (P000024) +NOT "$T_2$" (P000003) AND NOT Pseudocompact (P000022) AND NOT "$\\sigma$-Locally Compact" (P000025) +NOT "$T_2$" (P000003) AND NOT Pseudocompact (P000022) AND NOT Separable (P000026) +NOT "$T_2$" (P000003) AND NOT Pseudocompact (P000022) AND NOT Second Countable (P000027) +NOT "$T_2$" (P000003) AND NOT Pseudocompact (P000022) AND NOT First Countable (P000028) +NOT "$T_2$" (P000003) AND NOT Pseudocompact (P000022) AND NOT Countable chain condition (P000029) +NOT "$T_2$" (P000003) AND NOT Pseudocompact (P000022) AND NOT Paracompact (P000030) +NOT "$T_2$" (P000003) AND NOT Pseudocompact (P000022) AND NOT Metacompact (P000031) +NOT "$T_2$" (P000003) AND NOT Pseudocompact (P000022) AND NOT Countably paracompact (P000032) +NOT "$T_2$" (P000003) AND NOT Pseudocompact (P000022) AND NOT Countably metacompact (P000033) +NOT "$T_2$" (P000003) AND NOT Pseudocompact (P000022) AND NOT Fully normal (P000034) +NOT "$T_2$" (P000003) AND NOT Pseudocompact (P000022) AND NOT Connected (P000036) +NOT "$T_2$" (P000003) AND NOT Pseudocompact (P000022) AND NOT Path Connected (P000037) +NOT "$T_2$" (P000003) AND NOT Pseudocompact (P000022) AND NOT Locally Connected (P000041) +NOT "$T_2$" (P000003) AND NOT Pseudocompact (P000022) AND NOT Locally Path Connected (P000042) +NOT "$T_2$" (P000003) AND NOT Pseudocompact (P000022) AND Biconnected (P000044) +NOT "$T_2$" (P000003) AND NOT Pseudocompact (P000022) AND Has Dispersion Point (P000045) +NOT "$T_2$" (P000003) AND NOT Pseudocompact (P000022) AND Totally Path Disconnected (P000046) +NOT "$T_2$" (P000003) AND NOT Pseudocompact (P000022) AND Totally Disconnected (P000047) +NOT "$T_2$" (P000003) AND NOT Pseudocompact (P000022) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_2$" (P000003) AND NOT Pseudocompact (P000022) AND NOT Menger (P000066) +NOT "$T_2$" (P000003) AND NOT Pseudocompact (P000022) AND NOT Rothberger (P000068) +NOT "$T_2$" (P000003) AND NOT Pseudocompact (P000022) AND NOT Strategic Menger (P000069) +NOT "$T_2$" (P000003) AND NOT Pseudocompact (P000022) AND NOT Markov Menger (P000070) +NOT "$T_2$" (P000003) AND NOT Pseudocompact (P000022) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_2$" (P000003) AND NOT Pseudocompact (P000022) AND NOT 2-Markov Menger (P000072) +NOT "$T_2$" (P000003) AND NOT Pseudocompact (P000022) AND NOT Collectionwise normal (P000088) +NOT "$T_2$" (P000003) AND NOT Pseudocompact (P000022) AND NOT Hemicompact (P000111) +NOT "$T_2$" (P000003) AND NOT Locally Compact (P000023) AND Separable (P000026) +NOT "$T_2$" (P000003) AND NOT Locally Compact (P000023) AND Second Countable (P000027) +NOT "$T_2$" (P000003) AND NOT Locally Compact (P000023) AND First Countable (P000028) +NOT "$T_2$" (P000003) AND NOT Locally Compact (P000023) AND NOT Countable chain condition (P000029) +NOT "$T_2$" (P000003) AND NOT Locally Compact (P000023) AND Paracompact (P000030) +NOT "$T_2$" (P000003) AND NOT Locally Compact (P000023) AND Metacompact (P000031) +NOT "$T_2$" (P000003) AND NOT Locally Compact (P000023) AND Countably paracompact (P000032) +NOT "$T_2$" (P000003) AND NOT Locally Compact (P000023) AND Countably metacompact (P000033) +NOT "$T_2$" (P000003) AND NOT Locally Compact (P000023) AND Fully normal (P000034) +NOT "$T_2$" (P000003) AND NOT Locally Compact (P000023) AND NOT Connected (P000036) +NOT "$T_2$" (P000003) AND NOT Locally Compact (P000023) AND Path Connected (P000037) +NOT "$T_2$" (P000003) AND NOT Locally Compact (P000023) AND Arc connected (P000038) +NOT "$T_2$" (P000003) AND NOT Locally Compact (P000023) AND NOT Hyperconnected (P000039) +NOT "$T_2$" (P000003) AND NOT Locally Compact (P000023) AND NOT Locally Connected (P000041) +NOT "$T_2$" (P000003) AND NOT Locally Compact (P000023) AND Locally Path Connected (P000042) +NOT "$T_2$" (P000003) AND NOT Locally Compact (P000023) AND Locally Arc Connected (P000043) +NOT "$T_2$" (P000003) AND NOT Locally Compact (P000023) AND Biconnected (P000044) +NOT "$T_2$" (P000003) AND NOT Locally Compact (P000023) AND Has Dispersion Point (P000045) +NOT "$T_2$" (P000003) AND NOT Locally Compact (P000023) AND Totally Disconnected (P000047) +NOT "$T_2$" (P000003) AND NOT Locally Compact (P000023) AND Zero Dimensional (P000050) +NOT "$T_2$" (P000003) AND NOT Locally Compact (P000023) AND Scattered (P000051) +NOT "$T_2$" (P000003) AND NOT Locally Compact (P000023) AND "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_2$" (P000003) AND NOT Locally Compact (P000023) AND NOT Non-meager (P000056) +NOT "$T_2$" (P000003) AND NOT Locally Compact (P000023) AND Countable (P000057) +NOT "$T_2$" (P000003) AND NOT Locally Compact (P000023) AND Smaller than the continuum (P000058) +NOT "$T_2$" (P000003) AND NOT Locally Compact (P000023) AND NOT Smaller than the continuum (P000058) +NOT "$T_2$" (P000003) AND NOT Locally Compact (P000023) AND Smaller or same as the continuum (P000059) +NOT "$T_2$" (P000003) AND NOT Locally Compact (P000023) AND NOT Strongly Connected (P000060) +NOT "$T_2$" (P000003) AND NOT Locally Compact (P000023) AND NOT Baire (P000064) +NOT "$T_2$" (P000003) AND NOT Locally Compact (P000023) AND NOT Continuum-sized (P000065) +NOT "$T_2$" (P000003) AND NOT Locally Compact (P000023) AND Menger (P000066) +NOT "$T_2$" (P000003) AND NOT Locally Compact (P000023) AND NOT Menger (P000066) +NOT "$T_2$" (P000003) AND NOT Locally Compact (P000023) AND NOT Rothberger (P000068) +NOT "$T_2$" (P000003) AND NOT Locally Compact (P000023) AND Strategic Menger (P000069) +NOT "$T_2$" (P000003) AND NOT Locally Compact (P000023) AND NOT Strategic Menger (P000069) +NOT "$T_2$" (P000003) AND NOT Locally Compact (P000023) AND Markov Menger (P000070) +NOT "$T_2$" (P000003) AND NOT Locally Compact (P000023) AND NOT Markov Menger (P000070) +NOT "$T_2$" (P000003) AND NOT Locally Compact (P000023) AND "$\\sigma$-relatively-compact" (P000071) +NOT "$T_2$" (P000003) AND NOT Locally Compact (P000023) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_2$" (P000003) AND NOT Locally Compact (P000023) AND 2-Markov Menger (P000072) +NOT "$T_2$" (P000003) AND NOT Locally Compact (P000023) AND NOT 2-Markov Menger (P000072) +NOT "$T_2$" (P000003) AND NOT Locally Compact (P000023) AND sequential (P000079) +NOT "$T_2$" (P000003) AND NOT Locally Compact (P000023) AND Fréchet Urysohn (P000080) +NOT "$T_2$" (P000003) AND NOT Locally Compact (P000023) AND Countably tight (P000081) +NOT "$T_2$" (P000003) AND NOT Locally Compact (P000023) AND NOT homogenous (P000086) +NOT "$T_2$" (P000003) AND Strongly Locally Compact (P000024) AND NOT "$\\sigma$-Locally Compact" (P000025) +NOT "$T_2$" (P000003) AND Strongly Locally Compact (P000024) AND NOT Paracompact (P000030) +NOT "$T_2$" (P000003) AND Strongly Locally Compact (P000024) AND NOT Metacompact (P000031) +NOT "$T_2$" (P000003) AND Strongly Locally Compact (P000024) AND NOT Countably paracompact (P000032) +NOT "$T_2$" (P000003) AND Strongly Locally Compact (P000024) AND NOT Menger (P000066) +NOT "$T_2$" (P000003) AND Strongly Locally Compact (P000024) AND NOT Rothberger (P000068) +NOT "$T_2$" (P000003) AND Strongly Locally Compact (P000024) AND NOT Strategic Menger (P000069) +NOT "$T_2$" (P000003) AND Strongly Locally Compact (P000024) AND NOT Markov Menger (P000070) +NOT "$T_2$" (P000003) AND Strongly Locally Compact (P000024) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_2$" (P000003) AND Strongly Locally Compact (P000024) AND NOT 2-Markov Menger (P000072) +NOT "$T_2$" (P000003) AND Strongly Locally Compact (P000024) AND NOT Hemicompact (P000111) +NOT "$T_2$" (P000003) AND NOT Strongly Locally Compact (P000024) AND NOT Countable chain condition (P000029) +NOT "$T_2$" (P000003) AND NOT Strongly Locally Compact (P000024) AND Paracompact (P000030) +NOT "$T_2$" (P000003) AND NOT Strongly Locally Compact (P000024) AND Countably paracompact (P000032) +NOT "$T_2$" (P000003) AND NOT Strongly Locally Compact (P000024) AND Fully normal (P000034) +NOT "$T_2$" (P000003) AND NOT Strongly Locally Compact (P000024) AND NOT Connected (P000036) +NOT "$T_2$" (P000003) AND NOT Strongly Locally Compact (P000024) AND NOT Locally Connected (P000041) +NOT "$T_2$" (P000003) AND NOT Strongly Locally Compact (P000024) AND Totally Disconnected (P000047) +NOT "$T_2$" (P000003) AND NOT Strongly Locally Compact (P000024) AND Zero Dimensional (P000050) +NOT "$T_2$" (P000003) AND NOT Strongly Locally Compact (P000024) AND NOT Strongly Connected (P000060) +NOT "$T_2$" (P000003) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Second Countable (P000027) +NOT "$T_2$" (P000003) AND NOT "$\\sigma$-Locally Compact" (P000025) AND NOT Countable chain condition (P000029) +NOT "$T_2$" (P000003) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Paracompact (P000030) +NOT "$T_2$" (P000003) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Metacompact (P000031) +NOT "$T_2$" (P000003) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Countably paracompact (P000032) +NOT "$T_2$" (P000003) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Countably metacompact (P000033) +NOT "$T_2$" (P000003) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Fully normal (P000034) +NOT "$T_2$" (P000003) AND NOT "$\\sigma$-Locally Compact" (P000025) AND NOT Connected (P000036) +NOT "$T_2$" (P000003) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Arc connected (P000038) +NOT "$T_2$" (P000003) AND NOT "$\\sigma$-Locally Compact" (P000025) AND NOT Hyperconnected (P000039) +NOT "$T_2$" (P000003) AND NOT "$\\sigma$-Locally Compact" (P000025) AND NOT Locally Connected (P000041) +NOT "$T_2$" (P000003) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Locally Arc Connected (P000043) +NOT "$T_2$" (P000003) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Totally Disconnected (P000047) +NOT "$T_2$" (P000003) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Zero Dimensional (P000050) +NOT "$T_2$" (P000003) AND NOT "$\\sigma$-Locally Compact" (P000025) AND "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_2$" (P000003) AND NOT "$\\sigma$-Locally Compact" (P000025) AND NOT Non-meager (P000056) +NOT "$T_2$" (P000003) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Countable (P000057) +NOT "$T_2$" (P000003) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Smaller than the continuum (P000058) +NOT "$T_2$" (P000003) AND NOT "$\\sigma$-Locally Compact" (P000025) AND NOT Smaller than the continuum (P000058) +NOT "$T_2$" (P000003) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Smaller or same as the continuum (P000059) +NOT "$T_2$" (P000003) AND NOT "$\\sigma$-Locally Compact" (P000025) AND NOT Strongly Connected (P000060) +NOT "$T_2$" (P000003) AND NOT "$\\sigma$-Locally Compact" (P000025) AND NOT Baire (P000064) +NOT "$T_2$" (P000003) AND NOT "$\\sigma$-Locally Compact" (P000025) AND NOT Continuum-sized (P000065) +NOT "$T_2$" (P000003) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Menger (P000066) +NOT "$T_2$" (P000003) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Strategic Menger (P000069) +NOT "$T_2$" (P000003) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Markov Menger (P000070) +NOT "$T_2$" (P000003) AND NOT "$\\sigma$-Locally Compact" (P000025) AND "$\\sigma$-relatively-compact" (P000071) +NOT "$T_2$" (P000003) AND NOT "$\\sigma$-Locally Compact" (P000025) AND 2-Markov Menger (P000072) +NOT "$T_2$" (P000003) AND NOT Separable (P000026) AND Arc connected (P000038) +NOT "$T_2$" (P000003) AND NOT Separable (P000026) AND Locally Arc Connected (P000043) +NOT "$T_2$" (P000003) AND NOT Separable (P000026) AND Zero Dimensional (P000050) +NOT "$T_2$" (P000003) AND NOT Separable (P000026) AND "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_2$" (P000003) AND NOT Separable (P000026) AND NOT Continuum-sized (P000065) +NOT "$T_2$" (P000003) AND NOT Separable (P000026) AND NOT Menger (P000066) +NOT "$T_2$" (P000003) AND NOT Separable (P000026) AND NOT Rothberger (P000068) +NOT "$T_2$" (P000003) AND NOT Separable (P000026) AND NOT Strategic Menger (P000069) +NOT "$T_2$" (P000003) AND NOT Separable (P000026) AND NOT Markov Menger (P000070) +NOT "$T_2$" (P000003) AND NOT Separable (P000026) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_2$" (P000003) AND NOT Separable (P000026) AND NOT 2-Markov Menger (P000072) +NOT "$T_2$" (P000003) AND Second Countable (P000027) AND NOT Connected (P000036) +NOT "$T_2$" (P000003) AND Second Countable (P000027) AND NOT Locally Connected (P000041) +NOT "$T_2$" (P000003) AND Second Countable (P000027) AND Totally Disconnected (P000047) +NOT "$T_2$" (P000003) AND Second Countable (P000027) AND NOT Strategic Menger (P000069) +NOT "$T_2$" (P000003) AND Second Countable (P000027) AND NOT Markov Menger (P000070) +NOT "$T_2$" (P000003) AND Second Countable (P000027) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_2$" (P000003) AND Second Countable (P000027) AND NOT 2-Markov Menger (P000072) +NOT "$T_2$" (P000003) AND Second Countable (P000027) AND NOT Hemicompact (P000111) +NOT "$T_2$" (P000003) AND NOT Second Countable (P000027) AND Zero Dimensional (P000050) +NOT "$T_2$" (P000003) AND NOT Second Countable (P000027) AND "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_2$" (P000003) AND First Countable (P000028) AND NOT Locally Connected (P000041) +NOT "$T_2$" (P000003) AND First Countable (P000028) AND Totally Disconnected (P000047) +NOT "$T_2$" (P000003) AND NOT First Countable (P000028) AND Fully normal (P000034) +NOT "$T_2$" (P000003) AND NOT First Countable (P000028) AND Zero Dimensional (P000050) +NOT "$T_2$" (P000003) AND NOT First Countable (P000028) AND NOT Menger (P000066) +NOT "$T_2$" (P000003) AND NOT First Countable (P000028) AND NOT Rothberger (P000068) +NOT "$T_2$" (P000003) AND NOT First Countable (P000028) AND NOT Strategic Menger (P000069) +NOT "$T_2$" (P000003) AND NOT First Countable (P000028) AND NOT Markov Menger (P000070) +NOT "$T_2$" (P000003) AND NOT First Countable (P000028) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_2$" (P000003) AND NOT First Countable (P000028) AND NOT 2-Markov Menger (P000072) +NOT "$T_2$" (P000003) AND NOT First Countable (P000028) AND sequential (P000079) +NOT "$T_2$" (P000003) AND NOT First Countable (P000028) AND Fréchet Urysohn (P000080) +NOT "$T_2$" (P000003) AND NOT Countable chain condition (P000029) AND NOT Paracompact (P000030) +NOT "$T_2$" (P000003) AND NOT Countable chain condition (P000029) AND NOT Metacompact (P000031) +NOT "$T_2$" (P000003) AND NOT Countable chain condition (P000029) AND NOT Countably paracompact (P000032) +NOT "$T_2$" (P000003) AND NOT Countable chain condition (P000029) AND Arc connected (P000038) +NOT "$T_2$" (P000003) AND NOT Countable chain condition (P000029) AND Locally Arc Connected (P000043) +NOT "$T_2$" (P000003) AND NOT Countable chain condition (P000029) AND Zero Dimensional (P000050) +NOT "$T_2$" (P000003) AND NOT Countable chain condition (P000029) AND NOT Scattered (P000051) +NOT "$T_2$" (P000003) AND NOT Countable chain condition (P000029) AND "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_2$" (P000003) AND NOT Countable chain condition (P000029) AND NOT Menger (P000066) +NOT "$T_2$" (P000003) AND NOT Countable chain condition (P000029) AND NOT Rothberger (P000068) +NOT "$T_2$" (P000003) AND NOT Countable chain condition (P000029) AND NOT Strategic Menger (P000069) +NOT "$T_2$" (P000003) AND NOT Countable chain condition (P000029) AND NOT Markov Menger (P000070) +NOT "$T_2$" (P000003) AND NOT Countable chain condition (P000029) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_2$" (P000003) AND NOT Countable chain condition (P000029) AND NOT 2-Markov Menger (P000072) +NOT "$T_2$" (P000003) AND NOT Countable chain condition (P000029) AND NOT Spectral space (P000075) +NOT "$T_2$" (P000003) AND NOT Countable chain condition (P000029) AND NOT Hemicompact (P000111) +NOT "$T_2$" (P000003) AND Paracompact (P000030) AND NOT Menger (P000066) +NOT "$T_2$" (P000003) AND Paracompact (P000030) AND NOT Rothberger (P000068) +NOT "$T_2$" (P000003) AND Paracompact (P000030) AND NOT Strategic Menger (P000069) +NOT "$T_2$" (P000003) AND Paracompact (P000030) AND NOT Markov Menger (P000070) +NOT "$T_2$" (P000003) AND Paracompact (P000030) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_2$" (P000003) AND Paracompact (P000030) AND NOT 2-Markov Menger (P000072) +NOT "$T_2$" (P000003) AND Paracompact (P000030) AND NOT Hemicompact (P000111) +NOT "$T_2$" (P000003) AND NOT Paracompact (P000030) AND Countably paracompact (P000032) +NOT "$T_2$" (P000003) AND NOT Paracompact (P000030) AND NOT Connected (P000036) +NOT "$T_2$" (P000003) AND NOT Paracompact (P000030) AND NOT Locally Connected (P000041) +NOT "$T_2$" (P000003) AND NOT Paracompact (P000030) AND Totally Disconnected (P000047) +NOT "$T_2$" (P000003) AND NOT Paracompact (P000030) AND Zero Dimensional (P000050) +NOT "$T_2$" (P000003) AND NOT Paracompact (P000030) AND NOT Strongly Connected (P000060) +NOT "$T_2$" (P000003) AND Metacompact (P000031) AND NOT Menger (P000066) +NOT "$T_2$" (P000003) AND Metacompact (P000031) AND NOT Rothberger (P000068) +NOT "$T_2$" (P000003) AND Metacompact (P000031) AND NOT Strategic Menger (P000069) +NOT "$T_2$" (P000003) AND Metacompact (P000031) AND NOT Markov Menger (P000070) +NOT "$T_2$" (P000003) AND Metacompact (P000031) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_2$" (P000003) AND Metacompact (P000031) AND NOT 2-Markov Menger (P000072) +NOT "$T_2$" (P000003) AND Metacompact (P000031) AND NOT Hemicompact (P000111) +NOT "$T_2$" (P000003) AND NOT Metacompact (P000031) AND Countably paracompact (P000032) +NOT "$T_2$" (P000003) AND NOT Metacompact (P000031) AND Countably metacompact (P000033) +NOT "$T_2$" (P000003) AND NOT Metacompact (P000031) AND NOT Connected (P000036) +NOT "$T_2$" (P000003) AND NOT Metacompact (P000031) AND NOT Locally Connected (P000041) +NOT "$T_2$" (P000003) AND NOT Metacompact (P000031) AND Totally Disconnected (P000047) +NOT "$T_2$" (P000003) AND NOT Metacompact (P000031) AND Zero Dimensional (P000050) +NOT "$T_2$" (P000003) AND NOT Metacompact (P000031) AND NOT Strongly Connected (P000060) +NOT "$T_2$" (P000003) AND Countably paracompact (P000032) AND NOT Menger (P000066) +NOT "$T_2$" (P000003) AND Countably paracompact (P000032) AND NOT Rothberger (P000068) +NOT "$T_2$" (P000003) AND Countably paracompact (P000032) AND NOT Strategic Menger (P000069) +NOT "$T_2$" (P000003) AND Countably paracompact (P000032) AND NOT Markov Menger (P000070) +NOT "$T_2$" (P000003) AND Countably paracompact (P000032) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_2$" (P000003) AND Countably paracompact (P000032) AND NOT 2-Markov Menger (P000072) +NOT "$T_2$" (P000003) AND Countably paracompact (P000032) AND NOT Hemicompact (P000111) +NOT "$T_2$" (P000003) AND NOT Countably paracompact (P000032) AND NOT Connected (P000036) +NOT "$T_2$" (P000003) AND NOT Countably paracompact (P000032) AND NOT Locally Connected (P000041) +NOT "$T_2$" (P000003) AND NOT Countably paracompact (P000032) AND Totally Disconnected (P000047) +NOT "$T_2$" (P000003) AND NOT Countably paracompact (P000032) AND Zero Dimensional (P000050) +NOT "$T_2$" (P000003) AND NOT Countably paracompact (P000032) AND NOT Strongly Connected (P000060) +NOT "$T_2$" (P000003) AND Countably metacompact (P000033) AND NOT Menger (P000066) +NOT "$T_2$" (P000003) AND Countably metacompact (P000033) AND NOT Rothberger (P000068) +NOT "$T_2$" (P000003) AND Countably metacompact (P000033) AND NOT Strategic Menger (P000069) +NOT "$T_2$" (P000003) AND Countably metacompact (P000033) AND NOT Markov Menger (P000070) +NOT "$T_2$" (P000003) AND Countably metacompact (P000033) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_2$" (P000003) AND Countably metacompact (P000033) AND NOT 2-Markov Menger (P000072) +NOT "$T_2$" (P000003) AND Countably metacompact (P000033) AND NOT Hemicompact (P000111) +NOT "$T_2$" (P000003) AND NOT Countably metacompact (P000033) AND NOT Locally Connected (P000041) +NOT "$T_2$" (P000003) AND NOT Countably metacompact (P000033) AND NOT Strongly Connected (P000060) +NOT "$T_2$" (P000003) AND Fully normal (P000034) AND NOT Locally Connected (P000041) +NOT "$T_2$" (P000003) AND Fully normal (P000034) AND NOT Locally Path Connected (P000042) +NOT "$T_2$" (P000003) AND Fully normal (P000034) AND Totally Path Disconnected (P000046) +NOT "$T_2$" (P000003) AND Fully normal (P000034) AND NOT Menger (P000066) +NOT "$T_2$" (P000003) AND Fully normal (P000034) AND NOT Rothberger (P000068) +NOT "$T_2$" (P000003) AND Fully normal (P000034) AND NOT Strategic Menger (P000069) +NOT "$T_2$" (P000003) AND Fully normal (P000034) AND NOT Markov Menger (P000070) +NOT "$T_2$" (P000003) AND Fully normal (P000034) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_2$" (P000003) AND Fully normal (P000034) AND NOT 2-Markov Menger (P000072) +NOT "$T_2$" (P000003) AND Fully normal (P000034) AND NOT Hemicompact (P000111) +NOT "$T_2$" (P000003) AND NOT Fully normal (P000034) AND Zero Dimensional (P000050) +NOT "$T_2$" (P000003) AND NOT Connected (P000036) AND Locally Arc Connected (P000043) +NOT "$T_2$" (P000003) AND NOT Connected (P000036) AND Zero Dimensional (P000050) +NOT "$T_2$" (P000003) AND NOT Connected (P000036) AND NOT Scattered (P000051) +NOT "$T_2$" (P000003) AND NOT Connected (P000036) AND "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_2$" (P000003) AND NOT Connected (P000036) AND NOT Non-meager (P000056) +NOT "$T_2$" (P000003) AND NOT Connected (P000036) AND NOT Baire (P000064) +NOT "$T_2$" (P000003) AND NOT Connected (P000036) AND NOT Menger (P000066) +NOT "$T_2$" (P000003) AND NOT Connected (P000036) AND NOT Rothberger (P000068) +NOT "$T_2$" (P000003) AND NOT Connected (P000036) AND NOT Strategic Menger (P000069) +NOT "$T_2$" (P000003) AND NOT Connected (P000036) AND NOT Markov Menger (P000070) +NOT "$T_2$" (P000003) AND NOT Connected (P000036) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_2$" (P000003) AND NOT Connected (P000036) AND NOT 2-Markov Menger (P000072) +NOT "$T_2$" (P000003) AND NOT Connected (P000036) AND NOT Spectral space (P000075) +NOT "$T_2$" (P000003) AND NOT Connected (P000036) AND Finite (P000078) +NOT "$T_2$" (P000003) AND NOT Connected (P000036) AND NOT Hemicompact (P000111) +NOT "$T_2$" (P000003) AND NOT Path Connected (P000037) AND Locally Arc Connected (P000043) +NOT "$T_2$" (P000003) AND NOT Path Connected (P000037) AND Zero Dimensional (P000050) +NOT "$T_2$" (P000003) AND NOT Path Connected (P000037) AND NOT Menger (P000066) +NOT "$T_2$" (P000003) AND NOT Path Connected (P000037) AND NOT Rothberger (P000068) +NOT "$T_2$" (P000003) AND NOT Path Connected (P000037) AND NOT Strategic Menger (P000069) +NOT "$T_2$" (P000003) AND NOT Path Connected (P000037) AND NOT Markov Menger (P000070) +NOT "$T_2$" (P000003) AND NOT Path Connected (P000037) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_2$" (P000003) AND NOT Path Connected (P000037) AND NOT 2-Markov Menger (P000072) +NOT "$T_2$" (P000003) AND NOT Path Connected (P000037) AND Finite (P000078) +NOT "$T_2$" (P000003) AND Arc connected (P000038) AND NOT Locally Connected (P000041) +NOT "$T_2$" (P000003) AND Arc connected (P000038) AND NOT Locally Path Connected (P000042) +NOT "$T_2$" (P000003) AND Arc connected (P000038) AND NOT Locally Arc Connected (P000043) +NOT "$T_2$" (P000003) AND Arc connected (P000038) AND NOT Menger (P000066) +NOT "$T_2$" (P000003) AND Arc connected (P000038) AND NOT Rothberger (P000068) +NOT "$T_2$" (P000003) AND Arc connected (P000038) AND NOT Strategic Menger (P000069) +NOT "$T_2$" (P000003) AND Arc connected (P000038) AND NOT Markov Menger (P000070) +NOT "$T_2$" (P000003) AND Arc connected (P000038) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_2$" (P000003) AND Arc connected (P000038) AND NOT 2-Markov Menger (P000072) +NOT "$T_2$" (P000003) AND Arc connected (P000038) AND NOT Hemicompact (P000111) +NOT "$T_2$" (P000003) AND NOT Arc connected (P000038) AND Locally Arc Connected (P000043) +NOT "$T_2$" (P000003) AND NOT Hyperconnected (P000039) AND NOT Menger (P000066) +NOT "$T_2$" (P000003) AND NOT Hyperconnected (P000039) AND NOT Rothberger (P000068) +NOT "$T_2$" (P000003) AND NOT Hyperconnected (P000039) AND NOT Strategic Menger (P000069) +NOT "$T_2$" (P000003) AND NOT Hyperconnected (P000039) AND NOT Markov Menger (P000070) +NOT "$T_2$" (P000003) AND NOT Hyperconnected (P000039) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_2$" (P000003) AND NOT Hyperconnected (P000039) AND NOT 2-Markov Menger (P000072) +NOT "$T_2$" (P000003) AND NOT Hyperconnected (P000039) AND NOT Hemicompact (P000111) +NOT "$T_2$" (P000003) AND NOT Locally Connected (P000041) AND Zero Dimensional (P000050) +NOT "$T_2$" (P000003) AND NOT Locally Connected (P000041) AND "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_2$" (P000003) AND NOT Locally Connected (P000041) AND NOT Smaller than the continuum (P000058) +NOT "$T_2$" (P000003) AND NOT Locally Connected (P000041) AND NOT Menger (P000066) +NOT "$T_2$" (P000003) AND NOT Locally Connected (P000041) AND NOT Rothberger (P000068) +NOT "$T_2$" (P000003) AND NOT Locally Connected (P000041) AND NOT Strategic Menger (P000069) +NOT "$T_2$" (P000003) AND NOT Locally Connected (P000041) AND NOT Markov Menger (P000070) +NOT "$T_2$" (P000003) AND NOT Locally Connected (P000041) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_2$" (P000003) AND NOT Locally Connected (P000041) AND NOT 2-Markov Menger (P000072) +NOT "$T_2$" (P000003) AND NOT Locally Connected (P000041) AND NOT Spectral space (P000075) +NOT "$T_2$" (P000003) AND NOT Locally Connected (P000041) AND sequential (P000079) +NOT "$T_2$" (P000003) AND NOT Locally Connected (P000041) AND Fréchet Urysohn (P000080) +NOT "$T_2$" (P000003) AND NOT Locally Connected (P000041) AND NOT Hemicompact (P000111) +NOT "$T_2$" (P000003) AND NOT Locally Path Connected (P000042) AND Zero Dimensional (P000050) +NOT "$T_2$" (P000003) AND NOT Locally Path Connected (P000042) AND NOT Smaller than the continuum (P000058) +NOT "$T_2$" (P000003) AND NOT Locally Path Connected (P000042) AND NOT Menger (P000066) +NOT "$T_2$" (P000003) AND NOT Locally Path Connected (P000042) AND NOT Rothberger (P000068) +NOT "$T_2$" (P000003) AND NOT Locally Path Connected (P000042) AND NOT Strategic Menger (P000069) +NOT "$T_2$" (P000003) AND NOT Locally Path Connected (P000042) AND NOT Markov Menger (P000070) +NOT "$T_2$" (P000003) AND NOT Locally Path Connected (P000042) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_2$" (P000003) AND NOT Locally Path Connected (P000042) AND NOT 2-Markov Menger (P000072) +NOT "$T_2$" (P000003) AND Locally Arc Connected (P000043) AND Zero Dimensional (P000050) +NOT "$T_2$" (P000003) AND Locally Arc Connected (P000043) AND Scattered (P000051) +NOT "$T_2$" (P000003) AND Locally Arc Connected (P000043) AND Countable (P000057) +NOT "$T_2$" (P000003) AND Locally Arc Connected (P000043) AND Smaller than the continuum (P000058) +NOT "$T_2$" (P000003) AND Locally Arc Connected (P000043) AND NOT Continuum-sized (P000065) +NOT "$T_2$" (P000003) AND Locally Arc Connected (P000043) AND NOT Menger (P000066) +NOT "$T_2$" (P000003) AND Locally Arc Connected (P000043) AND NOT Rothberger (P000068) +NOT "$T_2$" (P000003) AND Locally Arc Connected (P000043) AND NOT Strategic Menger (P000069) +NOT "$T_2$" (P000003) AND Locally Arc Connected (P000043) AND NOT Markov Menger (P000070) +NOT "$T_2$" (P000003) AND Locally Arc Connected (P000043) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_2$" (P000003) AND Locally Arc Connected (P000043) AND NOT 2-Markov Menger (P000072) +NOT "$T_2$" (P000003) AND Locally Arc Connected (P000043) AND Finite (P000078) +NOT "$T_2$" (P000003) AND Locally Arc Connected (P000043) AND NOT Hemicompact (P000111) +NOT "$T_2$" (P000003) AND Biconnected (P000044) AND NOT Smaller than the continuum (P000058) +NOT "$T_2$" (P000003) AND Biconnected (P000044) AND NOT Strongly Connected (P000060) +NOT "$T_2$" (P000003) AND NOT Biconnected (P000044) AND NOT Menger (P000066) +NOT "$T_2$" (P000003) AND NOT Biconnected (P000044) AND NOT Rothberger (P000068) +NOT "$T_2$" (P000003) AND NOT Biconnected (P000044) AND NOT Strategic Menger (P000069) +NOT "$T_2$" (P000003) AND NOT Biconnected (P000044) AND NOT Markov Menger (P000070) +NOT "$T_2$" (P000003) AND NOT Biconnected (P000044) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_2$" (P000003) AND NOT Biconnected (P000044) AND NOT 2-Markov Menger (P000072) +NOT "$T_2$" (P000003) AND NOT Biconnected (P000044) AND Finite (P000078) +NOT "$T_2$" (P000003) AND Has Dispersion Point (P000045) AND NOT Smaller than the continuum (P000058) +NOT "$T_2$" (P000003) AND Has Dispersion Point (P000045) AND NOT Strongly Connected (P000060) +NOT "$T_2$" (P000003) AND NOT Has Dispersion Point (P000045) AND NOT Menger (P000066) +NOT "$T_2$" (P000003) AND NOT Has Dispersion Point (P000045) AND NOT Rothberger (P000068) +NOT "$T_2$" (P000003) AND NOT Has Dispersion Point (P000045) AND NOT Strategic Menger (P000069) +NOT "$T_2$" (P000003) AND NOT Has Dispersion Point (P000045) AND NOT Markov Menger (P000070) +NOT "$T_2$" (P000003) AND NOT Has Dispersion Point (P000045) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_2$" (P000003) AND NOT Has Dispersion Point (P000045) AND NOT 2-Markov Menger (P000072) +NOT "$T_2$" (P000003) AND NOT Has Dispersion Point (P000045) AND Finite (P000078) +NOT "$T_2$" (P000003) AND Totally Path Disconnected (P000046) AND Zero Dimensional (P000050) +NOT "$T_2$" (P000003) AND Totally Path Disconnected (P000046) AND NOT Smaller than the continuum (P000058) +NOT "$T_2$" (P000003) AND Totally Path Disconnected (P000046) AND NOT Menger (P000066) +NOT "$T_2$" (P000003) AND Totally Path Disconnected (P000046) AND NOT Rothberger (P000068) +NOT "$T_2$" (P000003) AND Totally Path Disconnected (P000046) AND NOT Strategic Menger (P000069) +NOT "$T_2$" (P000003) AND Totally Path Disconnected (P000046) AND NOT Markov Menger (P000070) +NOT "$T_2$" (P000003) AND Totally Path Disconnected (P000046) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_2$" (P000003) AND Totally Path Disconnected (P000046) AND NOT 2-Markov Menger (P000072) +NOT "$T_2$" (P000003) AND Totally Path Disconnected (P000046) AND Finite (P000078) +NOT "$T_2$" (P000003) AND Totally Disconnected (P000047) AND NOT Scattered (P000051) +NOT "$T_2$" (P000003) AND Totally Disconnected (P000047) AND "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_2$" (P000003) AND Totally Disconnected (P000047) AND NOT Non-meager (P000056) +NOT "$T_2$" (P000003) AND Totally Disconnected (P000047) AND NOT Smaller than the continuum (P000058) +NOT "$T_2$" (P000003) AND Totally Disconnected (P000047) AND NOT Baire (P000064) +NOT "$T_2$" (P000003) AND Totally Disconnected (P000047) AND NOT Menger (P000066) +NOT "$T_2$" (P000003) AND Totally Disconnected (P000047) AND NOT Rothberger (P000068) +NOT "$T_2$" (P000003) AND Totally Disconnected (P000047) AND NOT Strategic Menger (P000069) +NOT "$T_2$" (P000003) AND Totally Disconnected (P000047) AND NOT Markov Menger (P000070) +NOT "$T_2$" (P000003) AND Totally Disconnected (P000047) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_2$" (P000003) AND Totally Disconnected (P000047) AND NOT 2-Markov Menger (P000072) +NOT "$T_2$" (P000003) AND Totally Disconnected (P000047) AND NOT Spectral space (P000075) +NOT "$T_2$" (P000003) AND Totally Disconnected (P000047) AND sequential (P000079) +NOT "$T_2$" (P000003) AND Totally Disconnected (P000047) AND Fréchet Urysohn (P000080) +NOT "$T_2$" (P000003) AND Totally Disconnected (P000047) AND NOT Hemicompact (P000111) +NOT "$T_2$" (P000003) AND Zero Dimensional (P000050) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_2$" (P000003) AND Zero Dimensional (P000050) AND NOT Non-meager (P000056) +NOT "$T_2$" (P000003) AND Zero Dimensional (P000050) AND NOT Countable (P000057) +NOT "$T_2$" (P000003) AND Zero Dimensional (P000050) AND NOT Smaller than the continuum (P000058) +NOT "$T_2$" (P000003) AND Zero Dimensional (P000050) AND NOT Baire (P000064) +NOT "$T_2$" (P000003) AND Zero Dimensional (P000050) AND NOT Menger (P000066) +NOT "$T_2$" (P000003) AND Zero Dimensional (P000050) AND NOT Rothberger (P000068) +NOT "$T_2$" (P000003) AND Zero Dimensional (P000050) AND NOT Strategic Menger (P000069) +NOT "$T_2$" (P000003) AND Zero Dimensional (P000050) AND NOT Markov Menger (P000070) +NOT "$T_2$" (P000003) AND Zero Dimensional (P000050) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_2$" (P000003) AND Zero Dimensional (P000050) AND NOT 2-Markov Menger (P000072) +NOT "$T_2$" (P000003) AND Zero Dimensional (P000050) AND Finite (P000078) +NOT "$T_2$" (P000003) AND Zero Dimensional (P000050) AND NOT homogenous (P000086) +NOT "$T_2$" (P000003) AND Zero Dimensional (P000050) AND NOT Collectionwise normal (P000088) +NOT "$T_2$" (P000003) AND Zero Dimensional (P000050) AND NOT Hemicompact (P000111) +NOT "$T_2$" (P000003) AND NOT Scattered (P000051) AND NOT Menger (P000066) +NOT "$T_2$" (P000003) AND NOT Scattered (P000051) AND NOT Rothberger (P000068) +NOT "$T_2$" (P000003) AND NOT Scattered (P000051) AND NOT Strategic Menger (P000069) +NOT "$T_2$" (P000003) AND NOT Scattered (P000051) AND NOT Markov Menger (P000070) +NOT "$T_2$" (P000003) AND NOT Scattered (P000051) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_2$" (P000003) AND NOT Scattered (P000051) AND NOT 2-Markov Menger (P000072) +NOT "$T_2$" (P000003) AND "$\\sigma$-Locally Finite Base" (P000054) AND NOT Menger (P000066) +NOT "$T_2$" (P000003) AND "$\\sigma$-Locally Finite Base" (P000054) AND NOT Rothberger (P000068) +NOT "$T_2$" (P000003) AND "$\\sigma$-Locally Finite Base" (P000054) AND NOT Strategic Menger (P000069) +NOT "$T_2$" (P000003) AND "$\\sigma$-Locally Finite Base" (P000054) AND NOT Markov Menger (P000070) +NOT "$T_2$" (P000003) AND "$\\sigma$-Locally Finite Base" (P000054) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_2$" (P000003) AND "$\\sigma$-Locally Finite Base" (P000054) AND NOT 2-Markov Menger (P000072) +NOT "$T_2$" (P000003) AND "$\\sigma$-Locally Finite Base" (P000054) AND NOT Hemicompact (P000111) +NOT "$T_2$" (P000003) AND NOT "$\\sigma$-Locally Finite Base" (P000054) AND NOT Menger (P000066) +NOT "$T_2$" (P000003) AND NOT "$\\sigma$-Locally Finite Base" (P000054) AND NOT Rothberger (P000068) +NOT "$T_2$" (P000003) AND NOT "$\\sigma$-Locally Finite Base" (P000054) AND NOT Strategic Menger (P000069) +NOT "$T_2$" (P000003) AND NOT "$\\sigma$-Locally Finite Base" (P000054) AND NOT Markov Menger (P000070) +NOT "$T_2$" (P000003) AND NOT "$\\sigma$-Locally Finite Base" (P000054) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_2$" (P000003) AND NOT "$\\sigma$-Locally Finite Base" (P000054) AND NOT 2-Markov Menger (P000072) +NOT "$T_2$" (P000003) AND NOT Countable (P000057) AND NOT Continuum-sized (P000065) +NOT "$T_2$" (P000003) AND NOT Smaller than the continuum (P000058) AND NOT Continuum-sized (P000065) +NOT "$T_2$" (P000003) AND NOT Smaller than the continuum (P000058) AND NOT Menger (P000066) +NOT "$T_2$" (P000003) AND NOT Smaller than the continuum (P000058) AND NOT Rothberger (P000068) +NOT "$T_2$" (P000003) AND NOT Smaller than the continuum (P000058) AND NOT Strategic Menger (P000069) +NOT "$T_2$" (P000003) AND NOT Smaller than the continuum (P000058) AND NOT Markov Menger (P000070) +NOT "$T_2$" (P000003) AND NOT Smaller than the continuum (P000058) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_2$" (P000003) AND NOT Smaller than the continuum (P000058) AND NOT 2-Markov Menger (P000072) +NOT "$T_2$" (P000003) AND NOT Smaller than the continuum (P000058) AND NOT Hemicompact (P000111) +NOT "$T_2$" (P000003) AND Smaller or same as the continuum (P000059) AND NOT Menger (P000066) +NOT "$T_2$" (P000003) AND Smaller or same as the continuum (P000059) AND NOT Rothberger (P000068) +NOT "$T_2$" (P000003) AND Smaller or same as the continuum (P000059) AND NOT Strategic Menger (P000069) +NOT "$T_2$" (P000003) AND Smaller or same as the continuum (P000059) AND NOT Markov Menger (P000070) +NOT "$T_2$" (P000003) AND Smaller or same as the continuum (P000059) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_2$" (P000003) AND Smaller or same as the continuum (P000059) AND NOT 2-Markov Menger (P000072) +NOT "$T_2$" (P000003) AND Smaller or same as the continuum (P000059) AND NOT Hemicompact (P000111) +NOT "$T_2$" (P000003) AND NOT Strongly Connected (P000060) AND NOT Menger (P000066) +NOT "$T_2$" (P000003) AND NOT Strongly Connected (P000060) AND NOT Rothberger (P000068) +NOT "$T_2$" (P000003) AND NOT Strongly Connected (P000060) AND NOT Strategic Menger (P000069) +NOT "$T_2$" (P000003) AND NOT Strongly Connected (P000060) AND NOT Markov Menger (P000070) +NOT "$T_2$" (P000003) AND NOT Strongly Connected (P000060) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_2$" (P000003) AND NOT Strongly Connected (P000060) AND NOT 2-Markov Menger (P000072) +NOT "$T_2$" (P000003) AND NOT Strongly Connected (P000060) AND Finite (P000078) +NOT "$T_2$" (P000003) AND NOT Strongly Connected (P000060) AND NOT Hemicompact (P000111) +NOT "$T_2$" (P000003) AND NOT Continuum-sized (P000065) AND NOT Menger (P000066) +NOT "$T_2$" (P000003) AND NOT Continuum-sized (P000065) AND NOT Rothberger (P000068) +NOT "$T_2$" (P000003) AND NOT Continuum-sized (P000065) AND NOT Strategic Menger (P000069) +NOT "$T_2$" (P000003) AND NOT Continuum-sized (P000065) AND NOT Markov Menger (P000070) +NOT "$T_2$" (P000003) AND NOT Continuum-sized (P000065) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_2$" (P000003) AND NOT Continuum-sized (P000065) AND NOT 2-Markov Menger (P000072) +NOT "$T_2$" (P000003) AND NOT Continuum-sized (P000065) AND NOT Hemicompact (P000111) +NOT "$T_2$" (P000003) AND Menger (P000066) AND NOT Strategic Menger (P000069) +NOT "$T_2$" (P000003) AND Menger (P000066) AND NOT Markov Menger (P000070) +NOT "$T_2$" (P000003) AND Menger (P000066) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_2$" (P000003) AND Menger (P000066) AND NOT 2-Markov Menger (P000072) +NOT "$T_2$" (P000003) AND Menger (P000066) AND NOT Hemicompact (P000111) +"$T_{2 \\frac{1}{2}}$" (P000004) AND "$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$T_3$" (P000005) AND Hemicompact (P000111) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Zero Dimensional (P000050) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Hemicompact (P000111) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$T_4$" (P000007) AND Hemicompact (P000111) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Completely Hausdorff (P000009) AND NOT Semiregular (P000010) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Completely Hausdorff (P000009) AND Regular (P000011) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Completely Hausdorff (P000009) AND NOT "$\\sigma$-compact" (P000017) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Completely Hausdorff (P000009) AND NOT Lindelof (P000018) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Completely Hausdorff (P000009) AND Countably compact (P000019) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Completely Hausdorff (P000009) AND Sequentially Compact (P000020) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Completely Hausdorff (P000009) AND Weakly Countably Compact (P000021) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Completely Hausdorff (P000009) AND Pseudocompact (P000022) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Completely Hausdorff (P000009) AND NOT Separable (P000026) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Completely Hausdorff (P000009) AND NOT Second Countable (P000027) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Completely Hausdorff (P000009) AND NOT First Countable (P000028) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Completely Hausdorff (P000009) AND NOT Countable chain condition (P000029) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Completely Hausdorff (P000009) AND NOT Metacompact (P000031) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Completely Hausdorff (P000009) AND Countably paracompact (P000032) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Completely Hausdorff (P000009) AND NOT Countably metacompact (P000033) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Completely Hausdorff (P000009) AND Connected (P000036) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Completely Hausdorff (P000009) AND Path Connected (P000037) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Completely Hausdorff (P000009) AND Arc connected (P000038) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Completely Hausdorff (P000009) AND Locally Connected (P000041) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Completely Hausdorff (P000009) AND Locally Path Connected (P000042) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Completely Hausdorff (P000009) AND Locally Arc Connected (P000043) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Completely Hausdorff (P000009) AND Biconnected (P000044) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Completely Hausdorff (P000009) AND Has Dispersion Point (P000045) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Completely Hausdorff (P000009) AND NOT Totally Path Disconnected (P000046) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Completely Hausdorff (P000009) AND NOT Totally Disconnected (P000047) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Completely Hausdorff (P000009) AND Scattered (P000051) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Completely Hausdorff (P000009) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Completely Hausdorff (P000009) AND Non-meager (P000056) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Completely Hausdorff (P000009) AND NOT Countable (P000057) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Completely Hausdorff (P000009) AND NOT Smaller than the continuum (P000058) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Completely Hausdorff (P000009) AND NOT Menger (P000066) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Completely Hausdorff (P000009) AND NOT Rothberger (P000068) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Completely Hausdorff (P000009) AND NOT Strategic Menger (P000069) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Completely Hausdorff (P000009) AND NOT Markov Menger (P000070) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Completely Hausdorff (P000009) AND NOT "$\\sigma$-relatively-compact" (P000071) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Completely Hausdorff (P000009) AND NOT 2-Markov Menger (P000072) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Completely Hausdorff (P000009) AND NOT homogenous (P000086) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Completely Hausdorff (P000009) AND Hemicompact (P000111) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Completely Hausdorff (P000009) AND NOT Hemicompact (P000111) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Completely Hausdorff (P000009) AND NOT Topological manifold (P000124) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Semiregular (P000010) AND Pseudocompact (P000022) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Regular (P000011) AND Hemicompact (P000111) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Completely regular (P000012) AND NOT Cozero complemented (P000061) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Completely regular (P000012) AND Hemicompact (P000111) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Normal (P000013) AND NOT Countably paracompact (P000032) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Normal (P000013) AND NOT Countably metacompact (P000033) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Normal (P000013) AND NOT Cozero complemented (P000061) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Normal (P000013) AND Hemicompact (P000111) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Completely normal (P000014) AND NOT Countably paracompact (P000032) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Completely normal (P000014) AND NOT Countably metacompact (P000033) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Completely normal (P000014) AND NOT Cozero complemented (P000061) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Perfectly Normal (P000015) AND Finite (P000078) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Compact (P000016) AND Biconnected (P000044) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Compact (P000016) AND Has Dispersion Point (P000045) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Compact (P000016) AND NOT Cozero complemented (P000061) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Compact (P000016) AND NOT Spectral space (P000075) +"$T_{2 \\frac{1}{2}}$" (P000004) AND "$\\sigma$-compact" (P000017) AND NOT Metacompact (P000031) +"$T_{2 \\frac{1}{2}}$" (P000004) AND "$\\sigma$-compact" (P000017) AND NOT Countably metacompact (P000033) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$\\sigma$-compact" (P000017) AND Biconnected (P000044) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$\\sigma$-compact" (P000017) AND Has Dispersion Point (P000045) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Lindelof (P000018) AND Biconnected (P000044) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Lindelof (P000018) AND Has Dispersion Point (P000045) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Countably compact (P000019) AND Biconnected (P000044) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Countably compact (P000019) AND Has Dispersion Point (P000045) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Countably compact (P000019) AND NOT Non-meager (P000056) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Countably compact (P000019) AND NOT Baire (P000064) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Sequentially Compact (P000020) AND Biconnected (P000044) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Sequentially Compact (P000020) AND Has Dispersion Point (P000045) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Sequentially Compact (P000020) AND NOT Non-meager (P000056) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Sequentially Compact (P000020) AND NOT Baire (P000064) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Weakly Countably Compact (P000021) AND Biconnected (P000044) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Weakly Countably Compact (P000021) AND Has Dispersion Point (P000045) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Weakly Countably Compact (P000021) AND NOT Non-meager (P000056) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Weakly Countably Compact (P000021) AND NOT Baire (P000064) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Pseudocompact (P000022) AND NOT Countably metacompact (P000033) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Pseudocompact (P000022) AND Biconnected (P000044) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Pseudocompact (P000022) AND Has Dispersion Point (P000045) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Pseudocompact (P000022) AND NOT Non-meager (P000056) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Pseudocompact (P000022) AND NOT Baire (P000064) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Locally Compact (P000023) AND NOT Countably metacompact (P000033) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Locally Compact (P000023) AND Biconnected (P000044) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Locally Compact (P000023) AND Has Dispersion Point (P000045) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Locally Compact (P000023) AND NOT Cozero complemented (P000061) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Strongly Locally Compact (P000024) AND Biconnected (P000044) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Strongly Locally Compact (P000024) AND Has Dispersion Point (P000045) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Strongly Locally Compact (P000024) AND NOT Cozero complemented (P000061) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Strongly Locally Compact (P000024) AND Hemicompact (P000111) +"$T_{2 \\frac{1}{2}}$" (P000004) AND "$\\sigma$-Locally Compact" (P000025) AND Biconnected (P000044) +"$T_{2 \\frac{1}{2}}$" (P000004) AND "$\\sigma$-Locally Compact" (P000025) AND Has Dispersion Point (P000045) +"$T_{2 \\frac{1}{2}}$" (P000004) AND "$\\sigma$-Locally Compact" (P000025) AND NOT Cozero complemented (P000061) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Separable (P000026) AND NOT Countably metacompact (P000033) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Separable (P000026) AND Biconnected (P000044) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Separable (P000026) AND Has Dispersion Point (P000045) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Second Countable (P000027) AND NOT Topological manifold (P000124) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Second Countable (P000027) AND Biconnected (P000044) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Second Countable (P000027) AND Has Dispersion Point (P000045) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT First Countable (P000028) AND NOT Countably metacompact (P000033) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT First Countable (P000028) AND Biconnected (P000044) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT First Countable (P000028) AND Has Dispersion Point (P000045) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT First Countable (P000028) AND NOT Non-meager (P000056) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT First Countable (P000028) AND NOT Baire (P000064) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Countable chain condition (P000029) AND Biconnected (P000044) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Countable chain condition (P000029) AND Has Dispersion Point (P000045) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Paracompact (P000030) AND NOT Cozero complemented (P000061) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Paracompact (P000030) AND Hemicompact (P000111) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Metacompact (P000031) AND Biconnected (P000044) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Metacompact (P000031) AND Has Dispersion Point (P000045) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Metacompact (P000031) AND NOT Non-meager (P000056) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Metacompact (P000031) AND Countable (P000057) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Metacompact (P000031) AND Smaller than the continuum (P000058) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Metacompact (P000031) AND NOT Baire (P000064) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Metacompact (P000031) AND Menger (P000066) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Metacompact (P000031) AND Strategic Menger (P000069) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Metacompact (P000031) AND Markov Menger (P000070) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Metacompact (P000031) AND "$\\sigma$-relatively-compact" (P000071) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Metacompact (P000031) AND 2-Markov Menger (P000072) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Metacompact (P000031) AND Hemicompact (P000111) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Countably paracompact (P000032) AND Hemicompact (P000111) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Countably metacompact (P000033) AND Biconnected (P000044) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Countably metacompact (P000033) AND Has Dispersion Point (P000045) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Countably metacompact (P000033) AND Scattered (P000051) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Countably metacompact (P000033) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Countably metacompact (P000033) AND Non-meager (P000056) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Countably metacompact (P000033) AND NOT Non-meager (P000056) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Countably metacompact (P000033) AND Countable (P000057) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Countably metacompact (P000033) AND Smaller than the continuum (P000058) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Countably metacompact (P000033) AND NOT Baire (P000064) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Countably metacompact (P000033) AND NOT Continuum-sized (P000065) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Countably metacompact (P000033) AND Menger (P000066) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Countably metacompact (P000033) AND Strategic Menger (P000069) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Countably metacompact (P000033) AND Markov Menger (P000070) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Countably metacompact (P000033) AND "$\\sigma$-relatively-compact" (P000071) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Countably metacompact (P000033) AND 2-Markov Menger (P000072) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Countably metacompact (P000033) AND NOT homogenous (P000086) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Countably metacompact (P000033) AND Hemicompact (P000111) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Fully normal (P000034) AND NOT Cozero complemented (P000061) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Fully normal (P000034) AND Hemicompact (P000111) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Fully $T_4$ (P000035) AND Hemicompact (P000111) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Connected (P000036) AND Zero Dimensional (P000050) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Connected (P000036) AND Scattered (P000051) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Connected (P000036) AND Finite (P000078) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Connected (P000036) AND NOT homogenous (P000086) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Path Connected (P000037) AND NOT Arc connected (P000038) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Path Connected (P000037) AND Biconnected (P000044) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Path Connected (P000037) AND Has Dispersion Point (P000045) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Path Connected (P000037) AND Zero Dimensional (P000050) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Path Connected (P000037) AND Scattered (P000051) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Path Connected (P000037) AND Countable (P000057) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Path Connected (P000037) AND Smaller than the continuum (P000058) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Path Connected (P000037) AND NOT Continuum-sized (P000065) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Path Connected (P000037) AND Finite (P000078) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Path Connected (P000037) AND NOT homogenous (P000086) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Locally Connected (P000041) AND Biconnected (P000044) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Locally Connected (P000041) AND Has Dispersion Point (P000045) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Locally Connected (P000041) AND NOT homogenous (P000086) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Locally Path Connected (P000042) AND NOT Locally Arc Connected (P000043) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Locally Path Connected (P000042) AND Biconnected (P000044) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Locally Path Connected (P000042) AND Has Dispersion Point (P000045) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Locally Path Connected (P000042) AND NOT homogenous (P000086) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Biconnected (P000044) AND NOT Totally Path Disconnected (P000046) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Biconnected (P000044) AND Scattered (P000051) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Biconnected (P000044) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Biconnected (P000044) AND Non-meager (P000056) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Biconnected (P000044) AND NOT Menger (P000066) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Biconnected (P000044) AND NOT Rothberger (P000068) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Biconnected (P000044) AND NOT Strategic Menger (P000069) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Biconnected (P000044) AND NOT Markov Menger (P000070) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Biconnected (P000044) AND NOT "$\\sigma$-relatively-compact" (P000071) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Biconnected (P000044) AND NOT 2-Markov Menger (P000072) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Biconnected (P000044) AND Finite (P000078) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Biconnected (P000044) AND NOT homogenous (P000086) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Biconnected (P000044) AND Hemicompact (P000111) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Biconnected (P000044) AND NOT Hemicompact (P000111) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Biconnected (P000044) AND NOT Topological manifold (P000124) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Has Dispersion Point (P000045) AND NOT Totally Path Disconnected (P000046) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Has Dispersion Point (P000045) AND Scattered (P000051) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Has Dispersion Point (P000045) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Has Dispersion Point (P000045) AND Non-meager (P000056) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Has Dispersion Point (P000045) AND NOT Menger (P000066) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Has Dispersion Point (P000045) AND NOT Rothberger (P000068) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Has Dispersion Point (P000045) AND NOT Strategic Menger (P000069) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Has Dispersion Point (P000045) AND NOT Markov Menger (P000070) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Has Dispersion Point (P000045) AND NOT "$\\sigma$-relatively-compact" (P000071) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Has Dispersion Point (P000045) AND NOT 2-Markov Menger (P000072) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Has Dispersion Point (P000045) AND Finite (P000078) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Has Dispersion Point (P000045) AND NOT homogenous (P000086) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Has Dispersion Point (P000045) AND Hemicompact (P000111) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Has Dispersion Point (P000045) AND NOT Hemicompact (P000111) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Has Dispersion Point (P000045) AND NOT Topological manifold (P000124) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Totally Path Disconnected (P000046) AND Countable (P000057) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Totally Path Disconnected (P000046) AND Smaller than the continuum (P000058) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Totally Path Disconnected (P000046) AND NOT Continuum-sized (P000065) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Totally Path Disconnected (P000046) AND NOT homogenous (P000086) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Totally Disconnected (P000047) AND NOT homogenous (P000086) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Zero Dimensional (P000050) AND NOT Cozero complemented (P000061) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Non-meager (P000056) AND Hemicompact (P000111) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Countable (P000057) AND NOT Corson compact (P000077) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Countable (P000057) AND NOT Fréchet Urysohn (P000080) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Countable (P000057) AND NOT Eberlein compact (P000091) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Smaller than the continuum (P000058) AND NOT Corson compact (P000077) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Smaller than the continuum (P000058) AND NOT Fréchet Urysohn (P000080) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Smaller than the continuum (P000058) AND NOT Eberlein compact (P000091) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Cozero complemented (P000061) AND Hemicompact (P000111) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Baire (P000064) AND Hemicompact (P000111) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Continuum-sized (P000065) AND NOT Corson compact (P000077) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Continuum-sized (P000065) AND NOT Fréchet Urysohn (P000080) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Continuum-sized (P000065) AND NOT Eberlein compact (P000091) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$T_6$" (P000067) AND Finite (P000078) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Corson compact (P000077) AND Countably tight (P000081) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Finite (P000078) AND NOT Topological manifold (P000124) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Fréchet Urysohn (P000080) AND Countably tight (P000081) +"$T_{2 \\frac{1}{2}}$" (P000004) AND Countably tight (P000081) AND NOT Eberlein compact (P000091) +"$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Collectionwise normal (P000088) AND Hemicompact (P000111) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$T_3$" (P000005) AND NOT Lindelof (P000018) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$T_3$" (P000005) AND NOT Menger (P000066) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$T_3$" (P000005) AND NOT Rothberger (P000068) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$T_3$" (P000005) AND NOT Strategic Menger (P000069) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$T_3$" (P000005) AND NOT Markov Menger (P000070) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$T_3$" (P000005) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$T_3$" (P000005) AND NOT 2-Markov Menger (P000072) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Semiregular (P000010) AND NOT "$\\sigma$-compact" (P000017) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Semiregular (P000010) AND NOT Lindelof (P000018) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Semiregular (P000010) AND NOT Separable (P000026) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Semiregular (P000010) AND NOT Second Countable (P000027) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Semiregular (P000010) AND NOT First Countable (P000028) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Semiregular (P000010) AND NOT Countable chain condition (P000029) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Semiregular (P000010) AND NOT Metacompact (P000031) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Semiregular (P000010) AND Biconnected (P000044) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Semiregular (P000010) AND Has Dispersion Point (P000045) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Semiregular (P000010) AND Totally Disconnected (P000047) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Semiregular (P000010) AND Scattered (P000051) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Semiregular (P000010) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Semiregular (P000010) AND NOT Menger (P000066) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Semiregular (P000010) AND NOT Rothberger (P000068) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Semiregular (P000010) AND NOT Strategic Menger (P000069) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Semiregular (P000010) AND NOT Markov Menger (P000070) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Semiregular (P000010) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Semiregular (P000010) AND NOT 2-Markov Menger (P000072) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Semiregular (P000010) AND Finite (P000078) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Semiregular (P000010) AND NOT homogenous (P000086) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Semiregular (P000010) AND NOT Hemicompact (P000111) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Semiregular (P000010) AND NOT "$\\sigma$-compact" (P000017) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Semiregular (P000010) AND NOT Lindelof (P000018) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Semiregular (P000010) AND NOT Pseudocompact (P000022) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Semiregular (P000010) AND NOT Separable (P000026) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Semiregular (P000010) AND NOT Second Countable (P000027) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Semiregular (P000010) AND NOT First Countable (P000028) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Semiregular (P000010) AND NOT Metacompact (P000031) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Semiregular (P000010) AND NOT Countably metacompact (P000033) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Semiregular (P000010) AND NOT Connected (P000036) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Semiregular (P000010) AND Path Connected (P000037) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Semiregular (P000010) AND Arc connected (P000038) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Semiregular (P000010) AND Locally Connected (P000041) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Semiregular (P000010) AND Locally Path Connected (P000042) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Semiregular (P000010) AND Locally Arc Connected (P000043) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Semiregular (P000010) AND Biconnected (P000044) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Semiregular (P000010) AND Has Dispersion Point (P000045) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Semiregular (P000010) AND NOT Totally Path Disconnected (P000046) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Semiregular (P000010) AND Totally Disconnected (P000047) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Semiregular (P000010) AND Scattered (P000051) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Semiregular (P000010) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Semiregular (P000010) AND Non-meager (P000056) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Semiregular (P000010) AND NOT Countable (P000057) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Semiregular (P000010) AND NOT Smaller than the continuum (P000058) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Semiregular (P000010) AND NOT Strongly Connected (P000060) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Semiregular (P000010) AND NOT Menger (P000066) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Semiregular (P000010) AND NOT Rothberger (P000068) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Semiregular (P000010) AND NOT Strategic Menger (P000069) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Semiregular (P000010) AND NOT Markov Menger (P000070) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Semiregular (P000010) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Semiregular (P000010) AND NOT 2-Markov Menger (P000072) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Semiregular (P000010) AND NOT homogenous (P000086) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Semiregular (P000010) AND NOT Hemicompact (P000111) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Semiregular (P000010) AND NOT Topological manifold (P000124) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Regular (P000011) AND NOT Completely regular (P000012) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Regular (P000011) AND NOT Normal (P000013) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Regular (P000011) AND NOT Completely normal (P000014) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Regular (P000011) AND NOT "$\\sigma$-compact" (P000017) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Regular (P000011) AND NOT Lindelof (P000018) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Regular (P000011) AND NOT Weakly Countably Compact (P000021) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Regular (P000011) AND NOT Locally Compact (P000023) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Regular (P000011) AND NOT Strongly Locally Compact (P000024) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Regular (P000011) AND NOT "$\\sigma$-Locally Compact" (P000025) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Regular (P000011) AND NOT Separable (P000026) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Regular (P000011) AND NOT Second Countable (P000027) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Regular (P000011) AND NOT First Countable (P000028) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Regular (P000011) AND NOT Countable chain condition (P000029) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Regular (P000011) AND NOT Paracompact (P000030) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Regular (P000011) AND NOT Metacompact (P000031) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Regular (P000011) AND NOT Countably paracompact (P000032) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Regular (P000011) AND NOT Fully normal (P000034) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Regular (P000011) AND NOT Connected (P000036) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Regular (P000011) AND NOT Path Connected (P000037) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Regular (P000011) AND NOT Locally Connected (P000041) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Regular (P000011) AND NOT Locally Path Connected (P000042) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Regular (P000011) AND Biconnected (P000044) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Regular (P000011) AND Has Dispersion Point (P000045) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Regular (P000011) AND Totally Path Disconnected (P000046) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Regular (P000011) AND Totally Disconnected (P000047) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Regular (P000011) AND Scattered (P000051) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Regular (P000011) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Regular (P000011) AND NOT Menger (P000066) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Regular (P000011) AND NOT Rothberger (P000068) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Regular (P000011) AND NOT Strategic Menger (P000069) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Regular (P000011) AND NOT Markov Menger (P000070) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Regular (P000011) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Regular (P000011) AND NOT 2-Markov Menger (P000072) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Regular (P000011) AND Sober (P000073) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Regular (P000011) AND Finite (P000078) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Regular (P000011) AND locally Hausdorff (P000084) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Regular (P000011) AND NOT homogenous (P000086) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Regular (P000011) AND NOT Collectionwise normal (P000088) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Regular (P000011) AND Sequentially Hausdorff (P000099) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Regular (P000011) AND KC (P000100) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Regular (P000011) AND NOT Anti-Hausdorff (P000101) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Regular (P000011) AND Strongly KC (P000103) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Regular (P000011) AND NOT Hemicompact (P000111) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Regular (P000011) AND NOT Lindelof (P000018) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Regular (P000011) AND NOT Menger (P000066) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Regular (P000011) AND NOT Rothberger (P000068) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Regular (P000011) AND NOT Strategic Menger (P000069) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Regular (P000011) AND NOT Markov Menger (P000070) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Regular (P000011) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Regular (P000011) AND NOT 2-Markov Menger (P000072) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Completely regular (P000012) AND NOT Normal (P000013) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Completely regular (P000012) AND NOT Completely normal (P000014) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Completely regular (P000012) AND NOT "$\\sigma$-compact" (P000017) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Completely regular (P000012) AND NOT Lindelof (P000018) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Completely regular (P000012) AND NOT Weakly Countably Compact (P000021) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Completely regular (P000012) AND NOT Locally Compact (P000023) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Completely regular (P000012) AND NOT Strongly Locally Compact (P000024) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Completely regular (P000012) AND NOT "$\\sigma$-Locally Compact" (P000025) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Completely regular (P000012) AND NOT Separable (P000026) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Completely regular (P000012) AND NOT Second Countable (P000027) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Completely regular (P000012) AND NOT First Countable (P000028) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Completely regular (P000012) AND NOT Countable chain condition (P000029) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Completely regular (P000012) AND NOT Paracompact (P000030) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Completely regular (P000012) AND NOT Metacompact (P000031) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Completely regular (P000012) AND NOT Countably paracompact (P000032) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Completely regular (P000012) AND NOT Fully normal (P000034) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Completely regular (P000012) AND NOT Connected (P000036) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Completely regular (P000012) AND NOT Path Connected (P000037) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Completely regular (P000012) AND NOT Locally Connected (P000041) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Completely regular (P000012) AND NOT Locally Path Connected (P000042) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Completely regular (P000012) AND Biconnected (P000044) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Completely regular (P000012) AND Has Dispersion Point (P000045) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Completely regular (P000012) AND Totally Path Disconnected (P000046) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Completely regular (P000012) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Completely regular (P000012) AND NOT Menger (P000066) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Completely regular (P000012) AND NOT Rothberger (P000068) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Completely regular (P000012) AND NOT Strategic Menger (P000069) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Completely regular (P000012) AND NOT Markov Menger (P000070) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Completely regular (P000012) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Completely regular (P000012) AND NOT 2-Markov Menger (P000072) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Completely regular (P000012) AND Finite (P000078) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Completely regular (P000012) AND NOT homogenous (P000086) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Completely regular (P000012) AND NOT Collectionwise normal (P000088) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Completely regular (P000012) AND NOT Anti-Hausdorff (P000101) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Completely regular (P000012) AND NOT Hemicompact (P000111) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Normal (P000013) AND NOT "$\\sigma$-compact" (P000017) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Normal (P000013) AND NOT Lindelof (P000018) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Normal (P000013) AND NOT Locally Compact (P000023) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Normal (P000013) AND NOT "$\\sigma$-Locally Compact" (P000025) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Normal (P000013) AND NOT First Countable (P000028) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Normal (P000013) AND Totally Path Disconnected (P000046) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Normal (P000013) AND NOT Menger (P000066) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Normal (P000013) AND NOT Rothberger (P000068) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Normal (P000013) AND NOT Strategic Menger (P000069) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Normal (P000013) AND NOT Markov Menger (P000070) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Normal (P000013) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Normal (P000013) AND NOT 2-Markov Menger (P000072) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Normal (P000013) AND Sober (P000073) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Normal (P000013) AND NOT Anti-Hausdorff (P000101) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Normal (P000013) AND NOT Hemicompact (P000111) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Normal (P000013) AND Zero Dimensional (P000050) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Completely normal (P000014) AND NOT "$\\sigma$-compact" (P000017) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Completely normal (P000014) AND NOT Lindelof (P000018) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Completely normal (P000014) AND NOT Locally Compact (P000023) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Completely normal (P000014) AND NOT "$\\sigma$-Locally Compact" (P000025) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Completely normal (P000014) AND NOT First Countable (P000028) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Completely normal (P000014) AND Totally Path Disconnected (P000046) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Completely normal (P000014) AND NOT Menger (P000066) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Completely normal (P000014) AND NOT Rothberger (P000068) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Completely normal (P000014) AND NOT Strategic Menger (P000069) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Completely normal (P000014) AND NOT Markov Menger (P000070) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Completely normal (P000014) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Completely normal (P000014) AND NOT 2-Markov Menger (P000072) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Completely normal (P000014) AND Sober (P000073) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Completely normal (P000014) AND NOT Anti-Hausdorff (P000101) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Completely normal (P000014) AND NOT Hemicompact (P000111) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Completely normal (P000014) AND Fully normal (P000034) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Completely normal (P000014) AND Zero Dimensional (P000050) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Compact (P000016) AND NOT Sequentially Compact (P000020) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Compact (P000016) AND Sober (P000073) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Compact (P000016) AND locally Hausdorff (P000084) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Compact (P000016) AND Sequentially Hausdorff (P000099) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Compact (P000016) AND KC (P000100) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Compact (P000016) AND NOT Anti-Hausdorff (P000101) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Compact (P000016) AND Strongly KC (P000103) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Compact (P000016) AND Countably compact (P000019) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Compact (P000016) AND Sequentially Compact (P000020) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Compact (P000016) AND NOT Countable chain condition (P000029) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Compact (P000016) AND Totally Disconnected (P000047) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$\\sigma$-compact" (P000017) AND Countably compact (P000019) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$\\sigma$-compact" (P000017) AND Sequentially Compact (P000020) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$\\sigma$-compact" (P000017) AND NOT Pseudocompact (P000022) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$\\sigma$-compact" (P000017) AND Strongly Locally Compact (P000024) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$\\sigma$-compact" (P000017) AND Second Countable (P000027) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$\\sigma$-compact" (P000017) AND NOT Countable chain condition (P000029) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$\\sigma$-compact" (P000017) AND Paracompact (P000030) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$\\sigma$-compact" (P000017) AND Metacompact (P000031) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$\\sigma$-compact" (P000017) AND Countably paracompact (P000032) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$\\sigma$-compact" (P000017) AND Countably metacompact (P000033) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$\\sigma$-compact" (P000017) AND Fully normal (P000034) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$\\sigma$-compact" (P000017) AND NOT Connected (P000036) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$\\sigma$-compact" (P000017) AND Arc connected (P000038) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$\\sigma$-compact" (P000017) AND NOT Hyperconnected (P000039) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$\\sigma$-compact" (P000017) AND NOT Locally Connected (P000041) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$\\sigma$-compact" (P000017) AND Locally Arc Connected (P000043) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$\\sigma$-compact" (P000017) AND Totally Disconnected (P000047) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$\\sigma$-compact" (P000017) AND Zero Dimensional (P000050) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$\\sigma$-compact" (P000017) AND "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$\\sigma$-compact" (P000017) AND NOT Smaller than the continuum (P000058) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$\\sigma$-compact" (P000017) AND Smaller or same as the continuum (P000059) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$\\sigma$-compact" (P000017) AND NOT Strongly Connected (P000060) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$\\sigma$-compact" (P000017) AND NOT Continuum-sized (P000065) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$\\sigma$-compact" (P000017) AND Menger (P000066) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$\\sigma$-compact" (P000017) AND Sober (P000073) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$\\sigma$-compact" (P000017) AND locally Hausdorff (P000084) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$\\sigma$-compact" (P000017) AND Sequentially Hausdorff (P000099) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$\\sigma$-compact" (P000017) AND KC (P000100) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$\\sigma$-compact" (P000017) AND NOT Anti-Hausdorff (P000101) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$\\sigma$-compact" (P000017) AND Strongly KC (P000103) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Lindelof (P000018) AND NOT Strategic Menger (P000069) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Lindelof (P000018) AND NOT Markov Menger (P000070) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Lindelof (P000018) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Lindelof (P000018) AND NOT 2-Markov Menger (P000072) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Lindelof (P000018) AND Countably compact (P000019) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Lindelof (P000018) AND Sequentially Compact (P000020) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Lindelof (P000018) AND Weakly Countably Compact (P000021) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Lindelof (P000018) AND NOT Pseudocompact (P000022) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Lindelof (P000018) AND NOT Locally Compact (P000023) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Lindelof (P000018) AND Strongly Locally Compact (P000024) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Lindelof (P000018) AND NOT Separable (P000026) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Lindelof (P000018) AND NOT First Countable (P000028) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Lindelof (P000018) AND NOT Countable chain condition (P000029) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Lindelof (P000018) AND Paracompact (P000030) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Lindelof (P000018) AND Metacompact (P000031) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Lindelof (P000018) AND Countably paracompact (P000032) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Lindelof (P000018) AND Countably metacompact (P000033) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Lindelof (P000018) AND Fully normal (P000034) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Lindelof (P000018) AND NOT Connected (P000036) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Lindelof (P000018) AND NOT Path Connected (P000037) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Lindelof (P000018) AND Arc connected (P000038) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Lindelof (P000018) AND NOT Hyperconnected (P000039) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Lindelof (P000018) AND NOT Locally Connected (P000041) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Lindelof (P000018) AND NOT Locally Path Connected (P000042) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Lindelof (P000018) AND Locally Arc Connected (P000043) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Lindelof (P000018) AND NOT Biconnected (P000044) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Lindelof (P000018) AND NOT Has Dispersion Point (P000045) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Lindelof (P000018) AND Totally Path Disconnected (P000046) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Lindelof (P000018) AND Totally Disconnected (P000047) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Lindelof (P000018) AND Zero Dimensional (P000050) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Lindelof (P000018) AND NOT Scattered (P000051) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Lindelof (P000018) AND "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Lindelof (P000018) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Lindelof (P000018) AND NOT Smaller than the continuum (P000058) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Lindelof (P000018) AND Smaller or same as the continuum (P000059) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Lindelof (P000018) AND NOT Strongly Connected (P000060) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Lindelof (P000018) AND NOT Continuum-sized (P000065) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Lindelof (P000018) AND Sober (P000073) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Lindelof (P000018) AND locally Hausdorff (P000084) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Lindelof (P000018) AND Sequentially Hausdorff (P000099) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Lindelof (P000018) AND KC (P000100) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Lindelof (P000018) AND NOT Anti-Hausdorff (P000101) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Lindelof (P000018) AND Strongly KC (P000103) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Countably compact (P000019) AND NOT Sequentially Compact (P000020) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Countably compact (P000019) AND NOT Locally Compact (P000023) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Countably compact (P000019) AND NOT Strongly Locally Compact (P000024) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Countably compact (P000019) AND NOT "$\\sigma$-Locally Compact" (P000025) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Countably compact (P000019) AND NOT Paracompact (P000030) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Countably compact (P000019) AND NOT Metacompact (P000031) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Countably compact (P000019) AND NOT Menger (P000066) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Countably compact (P000019) AND NOT Rothberger (P000068) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Countably compact (P000019) AND NOT Strategic Menger (P000069) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Countably compact (P000019) AND NOT Markov Menger (P000070) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Countably compact (P000019) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Countably compact (P000019) AND NOT 2-Markov Menger (P000072) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Countably compact (P000019) AND Sober (P000073) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Countably compact (P000019) AND locally Hausdorff (P000084) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Countably compact (P000019) AND Sequentially Hausdorff (P000099) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Countably compact (P000019) AND KC (P000100) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Countably compact (P000019) AND NOT Anti-Hausdorff (P000101) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Countably compact (P000019) AND Strongly KC (P000103) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Countably compact (P000019) AND NOT Hemicompact (P000111) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Countably compact (P000019) AND NOT Countable chain condition (P000029) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Countably compact (P000019) AND Totally Disconnected (P000047) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Sequentially Compact (P000020) AND NOT Locally Compact (P000023) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Sequentially Compact (P000020) AND NOT Strongly Locally Compact (P000024) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Sequentially Compact (P000020) AND NOT "$\\sigma$-Locally Compact" (P000025) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Sequentially Compact (P000020) AND NOT Paracompact (P000030) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Sequentially Compact (P000020) AND NOT Metacompact (P000031) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Sequentially Compact (P000020) AND NOT Menger (P000066) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Sequentially Compact (P000020) AND NOT Rothberger (P000068) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Sequentially Compact (P000020) AND NOT Strategic Menger (P000069) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Sequentially Compact (P000020) AND NOT Markov Menger (P000070) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Sequentially Compact (P000020) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Sequentially Compact (P000020) AND NOT 2-Markov Menger (P000072) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Sequentially Compact (P000020) AND Sober (P000073) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Sequentially Compact (P000020) AND locally Hausdorff (P000084) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Sequentially Compact (P000020) AND Sequentially Hausdorff (P000099) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Sequentially Compact (P000020) AND KC (P000100) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Sequentially Compact (P000020) AND NOT Anti-Hausdorff (P000101) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Sequentially Compact (P000020) AND Strongly KC (P000103) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Sequentially Compact (P000020) AND NOT Hemicompact (P000111) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Sequentially Compact (P000020) AND NOT Countable chain condition (P000029) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Sequentially Compact (P000020) AND Totally Disconnected (P000047) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Weakly Countably Compact (P000021) AND NOT Menger (P000066) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Weakly Countably Compact (P000021) AND NOT Rothberger (P000068) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Weakly Countably Compact (P000021) AND NOT Strategic Menger (P000069) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Weakly Countably Compact (P000021) AND NOT Markov Menger (P000070) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Weakly Countably Compact (P000021) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Weakly Countably Compact (P000021) AND NOT 2-Markov Menger (P000072) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Weakly Countably Compact (P000021) AND Sober (P000073) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Weakly Countably Compact (P000021) AND locally Hausdorff (P000084) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Weakly Countably Compact (P000021) AND Sequentially Hausdorff (P000099) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Weakly Countably Compact (P000021) AND KC (P000100) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Weakly Countably Compact (P000021) AND NOT Anti-Hausdorff (P000101) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Weakly Countably Compact (P000021) AND Strongly KC (P000103) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Weakly Countably Compact (P000021) AND NOT Countable chain condition (P000029) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Weakly Countably Compact (P000021) AND Totally Disconnected (P000047) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Weakly Countably Compact (P000021) AND Zero Dimensional (P000050) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Pseudocompact (P000022) AND NOT Separable (P000026) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Pseudocompact (P000022) AND NOT Second Countable (P000027) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Pseudocompact (P000022) AND NOT First Countable (P000028) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Pseudocompact (P000022) AND NOT Countable chain condition (P000029) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Pseudocompact (P000022) AND NOT Metacompact (P000031) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Pseudocompact (P000022) AND NOT Countably metacompact (P000033) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Pseudocompact (P000022) AND NOT Connected (P000036) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Pseudocompact (P000022) AND NOT Path Connected (P000037) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Pseudocompact (P000022) AND NOT Locally Connected (P000041) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Pseudocompact (P000022) AND NOT Locally Path Connected (P000042) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Pseudocompact (P000022) AND Biconnected (P000044) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Pseudocompact (P000022) AND Has Dispersion Point (P000045) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Pseudocompact (P000022) AND Totally Path Disconnected (P000046) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Pseudocompact (P000022) AND Totally Disconnected (P000047) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Pseudocompact (P000022) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Pseudocompact (P000022) AND NOT Menger (P000066) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Pseudocompact (P000022) AND NOT Rothberger (P000068) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Pseudocompact (P000022) AND NOT Strategic Menger (P000069) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Pseudocompact (P000022) AND NOT Markov Menger (P000070) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Pseudocompact (P000022) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Pseudocompact (P000022) AND NOT 2-Markov Menger (P000072) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Pseudocompact (P000022) AND NOT Hemicompact (P000111) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Locally Compact (P000023) AND Sober (P000073) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Locally Compact (P000023) AND locally Hausdorff (P000084) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Locally Compact (P000023) AND Sequentially Hausdorff (P000099) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Locally Compact (P000023) AND KC (P000100) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Locally Compact (P000023) AND NOT Anti-Hausdorff (P000101) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Locally Compact (P000023) AND Strongly KC (P000103) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Locally Compact (P000023) AND NOT Countable chain condition (P000029) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Locally Compact (P000023) AND Paracompact (P000030) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Locally Compact (P000023) AND Countably paracompact (P000032) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Locally Compact (P000023) AND Fully normal (P000034) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Locally Compact (P000023) AND Biconnected (P000044) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Locally Compact (P000023) AND Has Dispersion Point (P000045) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Locally Compact (P000023) AND Totally Disconnected (P000047) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Locally Compact (P000023) AND Zero Dimensional (P000050) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Locally Compact (P000023) AND Scattered (P000051) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Locally Compact (P000023) AND NOT Menger (P000066) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Locally Compact (P000023) AND NOT Rothberger (P000068) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Locally Compact (P000023) AND NOT Strategic Menger (P000069) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Locally Compact (P000023) AND NOT Markov Menger (P000070) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Locally Compact (P000023) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Locally Compact (P000023) AND NOT 2-Markov Menger (P000072) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Locally Compact (P000023) AND NOT homogenous (P000086) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Strongly Locally Compact (P000024) AND NOT "$\\sigma$-Locally Compact" (P000025) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Strongly Locally Compact (P000024) AND NOT Paracompact (P000030) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Strongly Locally Compact (P000024) AND NOT Metacompact (P000031) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Strongly Locally Compact (P000024) AND NOT Countably paracompact (P000032) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Strongly Locally Compact (P000024) AND NOT Menger (P000066) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Strongly Locally Compact (P000024) AND NOT Rothberger (P000068) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Strongly Locally Compact (P000024) AND NOT Strategic Menger (P000069) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Strongly Locally Compact (P000024) AND NOT Markov Menger (P000070) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Strongly Locally Compact (P000024) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Strongly Locally Compact (P000024) AND NOT 2-Markov Menger (P000072) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Strongly Locally Compact (P000024) AND Sober (P000073) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Strongly Locally Compact (P000024) AND locally Hausdorff (P000084) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Strongly Locally Compact (P000024) AND Sequentially Hausdorff (P000099) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Strongly Locally Compact (P000024) AND KC (P000100) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Strongly Locally Compact (P000024) AND NOT Anti-Hausdorff (P000101) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Strongly Locally Compact (P000024) AND Strongly KC (P000103) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Strongly Locally Compact (P000024) AND NOT Hemicompact (P000111) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Strongly Locally Compact (P000024) AND NOT Countable chain condition (P000029) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Strongly Locally Compact (P000024) AND Paracompact (P000030) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Strongly Locally Compact (P000024) AND Countably paracompact (P000032) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Strongly Locally Compact (P000024) AND Fully normal (P000034) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Strongly Locally Compact (P000024) AND Totally Disconnected (P000047) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Strongly Locally Compact (P000024) AND Zero Dimensional (P000050) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND "$\\sigma$-Locally Compact" (P000025) AND Sober (P000073) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND "$\\sigma$-Locally Compact" (P000025) AND locally Hausdorff (P000084) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND "$\\sigma$-Locally Compact" (P000025) AND Sequentially Hausdorff (P000099) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND "$\\sigma$-Locally Compact" (P000025) AND KC (P000100) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND "$\\sigma$-Locally Compact" (P000025) AND NOT Anti-Hausdorff (P000101) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND "$\\sigma$-Locally Compact" (P000025) AND Strongly KC (P000103) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$\\sigma$-Locally Compact" (P000025) AND NOT Countable chain condition (P000029) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Paracompact (P000030) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Countably paracompact (P000032) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Fully normal (P000034) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Totally Disconnected (P000047) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Zero Dimensional (P000050) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Separable (P000026) AND Arc connected (P000038) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Separable (P000026) AND Locally Arc Connected (P000043) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Separable (P000026) AND Zero Dimensional (P000050) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Separable (P000026) AND "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Separable (P000026) AND NOT Continuum-sized (P000065) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Separable (P000026) AND NOT Menger (P000066) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Separable (P000026) AND NOT Rothberger (P000068) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Separable (P000026) AND NOT Strategic Menger (P000069) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Separable (P000026) AND NOT Markov Menger (P000070) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Separable (P000026) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Separable (P000026) AND NOT 2-Markov Menger (P000072) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Separable (P000026) AND Sober (P000073) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Separable (P000026) AND locally Hausdorff (P000084) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Separable (P000026) AND Sequentially Hausdorff (P000099) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Separable (P000026) AND KC (P000100) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Separable (P000026) AND NOT Anti-Hausdorff (P000101) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Separable (P000026) AND Strongly KC (P000103) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Second Countable (P000027) AND Totally Disconnected (P000047) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Second Countable (P000027) AND NOT Strategic Menger (P000069) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Second Countable (P000027) AND NOT Markov Menger (P000070) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Second Countable (P000027) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Second Countable (P000027) AND NOT 2-Markov Menger (P000072) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Second Countable (P000027) AND NOT Hemicompact (P000111) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Second Countable (P000027) AND Zero Dimensional (P000050) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Second Countable (P000027) AND "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Second Countable (P000027) AND Sober (P000073) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Second Countable (P000027) AND locally Hausdorff (P000084) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Second Countable (P000027) AND Sequentially Hausdorff (P000099) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Second Countable (P000027) AND KC (P000100) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Second Countable (P000027) AND NOT Anti-Hausdorff (P000101) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Second Countable (P000027) AND Strongly KC (P000103) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND First Countable (P000028) AND Totally Disconnected (P000047) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT First Countable (P000028) AND Fully normal (P000034) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT First Countable (P000028) AND Zero Dimensional (P000050) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT First Countable (P000028) AND NOT Menger (P000066) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT First Countable (P000028) AND NOT Rothberger (P000068) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT First Countable (P000028) AND NOT Strategic Menger (P000069) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT First Countable (P000028) AND NOT Markov Menger (P000070) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT First Countable (P000028) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT First Countable (P000028) AND NOT 2-Markov Menger (P000072) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT First Countable (P000028) AND Sober (P000073) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT First Countable (P000028) AND sequential (P000079) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT First Countable (P000028) AND Fréchet Urysohn (P000080) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT First Countable (P000028) AND locally Hausdorff (P000084) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT First Countable (P000028) AND Sequentially Hausdorff (P000099) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT First Countable (P000028) AND KC (P000100) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT First Countable (P000028) AND NOT Anti-Hausdorff (P000101) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT First Countable (P000028) AND Strongly KC (P000103) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Countable chain condition (P000029) AND NOT Paracompact (P000030) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Countable chain condition (P000029) AND NOT Metacompact (P000031) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Countable chain condition (P000029) AND NOT Countably paracompact (P000032) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Countable chain condition (P000029) AND Arc connected (P000038) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Countable chain condition (P000029) AND Locally Arc Connected (P000043) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Countable chain condition (P000029) AND Zero Dimensional (P000050) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Countable chain condition (P000029) AND NOT Scattered (P000051) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Countable chain condition (P000029) AND "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Countable chain condition (P000029) AND NOT Menger (P000066) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Countable chain condition (P000029) AND NOT Rothberger (P000068) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Countable chain condition (P000029) AND NOT Strategic Menger (P000069) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Countable chain condition (P000029) AND NOT Markov Menger (P000070) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Countable chain condition (P000029) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Countable chain condition (P000029) AND NOT 2-Markov Menger (P000072) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Countable chain condition (P000029) AND Sober (P000073) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Countable chain condition (P000029) AND NOT Spectral space (P000075) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Countable chain condition (P000029) AND locally Hausdorff (P000084) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Countable chain condition (P000029) AND Sequentially Hausdorff (P000099) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Countable chain condition (P000029) AND KC (P000100) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Countable chain condition (P000029) AND NOT Anti-Hausdorff (P000101) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Countable chain condition (P000029) AND Strongly KC (P000103) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Countable chain condition (P000029) AND NOT Hemicompact (P000111) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Paracompact (P000030) AND NOT Menger (P000066) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Paracompact (P000030) AND NOT Rothberger (P000068) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Paracompact (P000030) AND NOT Strategic Menger (P000069) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Paracompact (P000030) AND NOT Markov Menger (P000070) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Paracompact (P000030) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Paracompact (P000030) AND NOT 2-Markov Menger (P000072) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Paracompact (P000030) AND Sober (P000073) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Paracompact (P000030) AND locally Hausdorff (P000084) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Paracompact (P000030) AND Sequentially Hausdorff (P000099) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Paracompact (P000030) AND KC (P000100) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Paracompact (P000030) AND NOT Anti-Hausdorff (P000101) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Paracompact (P000030) AND Strongly KC (P000103) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Paracompact (P000030) AND NOT Hemicompact (P000111) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Paracompact (P000030) AND Countably paracompact (P000032) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Paracompact (P000030) AND Totally Disconnected (P000047) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Paracompact (P000030) AND Zero Dimensional (P000050) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Metacompact (P000031) AND NOT Menger (P000066) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Metacompact (P000031) AND NOT Rothberger (P000068) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Metacompact (P000031) AND NOT Strategic Menger (P000069) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Metacompact (P000031) AND NOT Markov Menger (P000070) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Metacompact (P000031) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Metacompact (P000031) AND NOT 2-Markov Menger (P000072) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Metacompact (P000031) AND NOT Hemicompact (P000111) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Metacompact (P000031) AND Countably paracompact (P000032) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Metacompact (P000031) AND Countably metacompact (P000033) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Metacompact (P000031) AND NOT Connected (P000036) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Metacompact (P000031) AND NOT Locally Connected (P000041) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Metacompact (P000031) AND Totally Disconnected (P000047) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Metacompact (P000031) AND Zero Dimensional (P000050) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Metacompact (P000031) AND NOT Strongly Connected (P000060) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Metacompact (P000031) AND Sober (P000073) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Metacompact (P000031) AND locally Hausdorff (P000084) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Metacompact (P000031) AND Sequentially Hausdorff (P000099) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Metacompact (P000031) AND KC (P000100) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Metacompact (P000031) AND NOT Anti-Hausdorff (P000101) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Metacompact (P000031) AND Strongly KC (P000103) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Countably paracompact (P000032) AND NOT Menger (P000066) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Countably paracompact (P000032) AND NOT Rothberger (P000068) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Countably paracompact (P000032) AND NOT Strategic Menger (P000069) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Countably paracompact (P000032) AND NOT Markov Menger (P000070) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Countably paracompact (P000032) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Countably paracompact (P000032) AND NOT 2-Markov Menger (P000072) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Countably paracompact (P000032) AND Sober (P000073) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Countably paracompact (P000032) AND locally Hausdorff (P000084) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Countably paracompact (P000032) AND Sequentially Hausdorff (P000099) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Countably paracompact (P000032) AND KC (P000100) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Countably paracompact (P000032) AND NOT Anti-Hausdorff (P000101) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Countably paracompact (P000032) AND Strongly KC (P000103) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Countably paracompact (P000032) AND NOT Hemicompact (P000111) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Countably paracompact (P000032) AND Totally Disconnected (P000047) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Countably paracompact (P000032) AND Zero Dimensional (P000050) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Countably metacompact (P000033) AND NOT Menger (P000066) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Countably metacompact (P000033) AND NOT Rothberger (P000068) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Countably metacompact (P000033) AND NOT Strategic Menger (P000069) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Countably metacompact (P000033) AND NOT Markov Menger (P000070) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Countably metacompact (P000033) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Countably metacompact (P000033) AND NOT 2-Markov Menger (P000072) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Countably metacompact (P000033) AND NOT Hemicompact (P000111) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Countably metacompact (P000033) AND NOT Locally Connected (P000041) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Countably metacompact (P000033) AND NOT Strongly Connected (P000060) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Countably metacompact (P000033) AND Sober (P000073) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Countably metacompact (P000033) AND locally Hausdorff (P000084) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Countably metacompact (P000033) AND Sequentially Hausdorff (P000099) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Countably metacompact (P000033) AND KC (P000100) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Countably metacompact (P000033) AND NOT Anti-Hausdorff (P000101) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Countably metacompact (P000033) AND Strongly KC (P000103) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Fully normal (P000034) AND NOT Locally Connected (P000041) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Fully normal (P000034) AND NOT Locally Path Connected (P000042) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Fully normal (P000034) AND Totally Path Disconnected (P000046) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Fully normal (P000034) AND NOT Menger (P000066) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Fully normal (P000034) AND NOT Rothberger (P000068) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Fully normal (P000034) AND NOT Strategic Menger (P000069) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Fully normal (P000034) AND NOT Markov Menger (P000070) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Fully normal (P000034) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Fully normal (P000034) AND NOT 2-Markov Menger (P000072) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Fully normal (P000034) AND Sober (P000073) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Fully normal (P000034) AND NOT Anti-Hausdorff (P000101) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Fully normal (P000034) AND NOT Hemicompact (P000111) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Fully normal (P000034) AND Zero Dimensional (P000050) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Connected (P000036) AND Locally Arc Connected (P000043) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Connected (P000036) AND Zero Dimensional (P000050) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Connected (P000036) AND NOT Scattered (P000051) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Connected (P000036) AND NOT Non-meager (P000056) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Connected (P000036) AND NOT Baire (P000064) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Connected (P000036) AND NOT Menger (P000066) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Connected (P000036) AND NOT Rothberger (P000068) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Connected (P000036) AND NOT Strategic Menger (P000069) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Connected (P000036) AND NOT Markov Menger (P000070) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Connected (P000036) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Connected (P000036) AND NOT 2-Markov Menger (P000072) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Connected (P000036) AND Finite (P000078) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Connected (P000036) AND NOT Hemicompact (P000111) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Path Connected (P000037) AND Locally Arc Connected (P000043) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Path Connected (P000037) AND Zero Dimensional (P000050) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Path Connected (P000037) AND NOT Menger (P000066) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Path Connected (P000037) AND NOT Rothberger (P000068) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Path Connected (P000037) AND NOT Strategic Menger (P000069) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Path Connected (P000037) AND NOT Markov Menger (P000070) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Path Connected (P000037) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Path Connected (P000037) AND NOT 2-Markov Menger (P000072) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Path Connected (P000037) AND Finite (P000078) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Arc connected (P000038) AND NOT Locally Connected (P000041) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Arc connected (P000038) AND NOT Locally Path Connected (P000042) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Arc connected (P000038) AND NOT Locally Arc Connected (P000043) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Arc connected (P000038) AND NOT Menger (P000066) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Arc connected (P000038) AND NOT Rothberger (P000068) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Arc connected (P000038) AND NOT Strategic Menger (P000069) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Arc connected (P000038) AND NOT Markov Menger (P000070) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Arc connected (P000038) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Arc connected (P000038) AND NOT 2-Markov Menger (P000072) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Arc connected (P000038) AND NOT Hemicompact (P000111) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Arc connected (P000038) AND Locally Arc Connected (P000043) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Hyperconnected (P000039) AND NOT Menger (P000066) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Hyperconnected (P000039) AND NOT Rothberger (P000068) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Hyperconnected (P000039) AND NOT Strategic Menger (P000069) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Hyperconnected (P000039) AND NOT Markov Menger (P000070) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Hyperconnected (P000039) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Hyperconnected (P000039) AND NOT 2-Markov Menger (P000072) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Hyperconnected (P000039) AND NOT Hemicompact (P000111) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Locally Connected (P000041) AND Zero Dimensional (P000050) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Locally Connected (P000041) AND NOT Smaller than the continuum (P000058) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Locally Connected (P000041) AND NOT Menger (P000066) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Locally Connected (P000041) AND NOT Rothberger (P000068) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Locally Connected (P000041) AND NOT Strategic Menger (P000069) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Locally Connected (P000041) AND NOT Markov Menger (P000070) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Locally Connected (P000041) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Locally Connected (P000041) AND NOT 2-Markov Menger (P000072) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Locally Connected (P000041) AND NOT Hemicompact (P000111) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Locally Path Connected (P000042) AND Zero Dimensional (P000050) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Locally Path Connected (P000042) AND NOT Smaller than the continuum (P000058) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Locally Path Connected (P000042) AND NOT Menger (P000066) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Locally Path Connected (P000042) AND NOT Rothberger (P000068) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Locally Path Connected (P000042) AND NOT Strategic Menger (P000069) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Locally Path Connected (P000042) AND NOT Markov Menger (P000070) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Locally Path Connected (P000042) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Locally Path Connected (P000042) AND NOT 2-Markov Menger (P000072) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Locally Arc Connected (P000043) AND Zero Dimensional (P000050) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Locally Arc Connected (P000043) AND Scattered (P000051) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Locally Arc Connected (P000043) AND Countable (P000057) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Locally Arc Connected (P000043) AND Smaller than the continuum (P000058) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Locally Arc Connected (P000043) AND NOT Continuum-sized (P000065) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Locally Arc Connected (P000043) AND NOT Menger (P000066) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Locally Arc Connected (P000043) AND NOT Rothberger (P000068) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Locally Arc Connected (P000043) AND NOT Strategic Menger (P000069) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Locally Arc Connected (P000043) AND NOT Markov Menger (P000070) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Locally Arc Connected (P000043) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Locally Arc Connected (P000043) AND NOT 2-Markov Menger (P000072) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Locally Arc Connected (P000043) AND Finite (P000078) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Locally Arc Connected (P000043) AND NOT Hemicompact (P000111) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Biconnected (P000044) AND NOT Smaller than the continuum (P000058) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Biconnected (P000044) AND NOT Strongly Connected (P000060) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Biconnected (P000044) AND Sober (P000073) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Biconnected (P000044) AND locally Hausdorff (P000084) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Biconnected (P000044) AND Sequentially Hausdorff (P000099) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Biconnected (P000044) AND KC (P000100) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Biconnected (P000044) AND NOT Anti-Hausdorff (P000101) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Biconnected (P000044) AND Strongly KC (P000103) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Biconnected (P000044) AND NOT Menger (P000066) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Biconnected (P000044) AND NOT Rothberger (P000068) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Biconnected (P000044) AND NOT Strategic Menger (P000069) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Biconnected (P000044) AND NOT Markov Menger (P000070) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Biconnected (P000044) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Biconnected (P000044) AND NOT 2-Markov Menger (P000072) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Biconnected (P000044) AND Finite (P000078) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Has Dispersion Point (P000045) AND NOT Smaller than the continuum (P000058) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Has Dispersion Point (P000045) AND NOT Strongly Connected (P000060) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Has Dispersion Point (P000045) AND Sober (P000073) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Has Dispersion Point (P000045) AND locally Hausdorff (P000084) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Has Dispersion Point (P000045) AND Sequentially Hausdorff (P000099) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Has Dispersion Point (P000045) AND KC (P000100) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Has Dispersion Point (P000045) AND NOT Anti-Hausdorff (P000101) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Has Dispersion Point (P000045) AND Strongly KC (P000103) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Has Dispersion Point (P000045) AND NOT Menger (P000066) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Has Dispersion Point (P000045) AND NOT Rothberger (P000068) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Has Dispersion Point (P000045) AND NOT Strategic Menger (P000069) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Has Dispersion Point (P000045) AND NOT Markov Menger (P000070) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Has Dispersion Point (P000045) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Has Dispersion Point (P000045) AND NOT 2-Markov Menger (P000072) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Has Dispersion Point (P000045) AND Finite (P000078) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Totally Path Disconnected (P000046) AND Zero Dimensional (P000050) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Totally Path Disconnected (P000046) AND NOT Smaller than the continuum (P000058) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Totally Path Disconnected (P000046) AND NOT Menger (P000066) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Totally Path Disconnected (P000046) AND NOT Rothberger (P000068) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Totally Path Disconnected (P000046) AND NOT Strategic Menger (P000069) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Totally Path Disconnected (P000046) AND NOT Markov Menger (P000070) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Totally Path Disconnected (P000046) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Totally Path Disconnected (P000046) AND NOT 2-Markov Menger (P000072) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Totally Path Disconnected (P000046) AND Finite (P000078) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Totally Disconnected (P000047) AND NOT Scattered (P000051) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Totally Disconnected (P000047) AND "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Totally Disconnected (P000047) AND NOT Non-meager (P000056) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Totally Disconnected (P000047) AND NOT Smaller than the continuum (P000058) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Totally Disconnected (P000047) AND NOT Baire (P000064) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Totally Disconnected (P000047) AND NOT Menger (P000066) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Totally Disconnected (P000047) AND NOT Rothberger (P000068) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Totally Disconnected (P000047) AND NOT Strategic Menger (P000069) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Totally Disconnected (P000047) AND NOT Markov Menger (P000070) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Totally Disconnected (P000047) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Totally Disconnected (P000047) AND NOT 2-Markov Menger (P000072) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Totally Disconnected (P000047) AND Sober (P000073) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Totally Disconnected (P000047) AND NOT Spectral space (P000075) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Totally Disconnected (P000047) AND sequential (P000079) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Totally Disconnected (P000047) AND Fréchet Urysohn (P000080) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Totally Disconnected (P000047) AND locally Hausdorff (P000084) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Totally Disconnected (P000047) AND Sequentially Hausdorff (P000099) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Totally Disconnected (P000047) AND KC (P000100) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Totally Disconnected (P000047) AND NOT Anti-Hausdorff (P000101) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Totally Disconnected (P000047) AND Strongly KC (P000103) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Totally Disconnected (P000047) AND NOT Hemicompact (P000111) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Zero Dimensional (P000050) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Zero Dimensional (P000050) AND NOT Non-meager (P000056) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Zero Dimensional (P000050) AND NOT Countable (P000057) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Zero Dimensional (P000050) AND NOT Smaller than the continuum (P000058) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Zero Dimensional (P000050) AND NOT Baire (P000064) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Zero Dimensional (P000050) AND NOT Menger (P000066) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Zero Dimensional (P000050) AND NOT Rothberger (P000068) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Zero Dimensional (P000050) AND NOT Strategic Menger (P000069) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Zero Dimensional (P000050) AND NOT Markov Menger (P000070) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Zero Dimensional (P000050) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Zero Dimensional (P000050) AND NOT 2-Markov Menger (P000072) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Zero Dimensional (P000050) AND Finite (P000078) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Zero Dimensional (P000050) AND NOT homogenous (P000086) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Zero Dimensional (P000050) AND NOT Collectionwise normal (P000088) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Zero Dimensional (P000050) AND NOT Anti-Hausdorff (P000101) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Zero Dimensional (P000050) AND NOT Hemicompact (P000111) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Scattered (P000051) AND Sober (P000073) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Scattered (P000051) AND locally Hausdorff (P000084) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Scattered (P000051) AND Sequentially Hausdorff (P000099) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Scattered (P000051) AND KC (P000100) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Scattered (P000051) AND NOT Anti-Hausdorff (P000101) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Scattered (P000051) AND Strongly KC (P000103) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Scattered (P000051) AND NOT Menger (P000066) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Scattered (P000051) AND NOT Rothberger (P000068) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Scattered (P000051) AND NOT Strategic Menger (P000069) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Scattered (P000051) AND NOT Markov Menger (P000070) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Scattered (P000051) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Scattered (P000051) AND NOT 2-Markov Menger (P000072) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND "$\\sigma$-Locally Finite Base" (P000054) AND NOT Menger (P000066) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND "$\\sigma$-Locally Finite Base" (P000054) AND NOT Rothberger (P000068) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND "$\\sigma$-Locally Finite Base" (P000054) AND NOT Strategic Menger (P000069) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND "$\\sigma$-Locally Finite Base" (P000054) AND NOT Markov Menger (P000070) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND "$\\sigma$-Locally Finite Base" (P000054) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND "$\\sigma$-Locally Finite Base" (P000054) AND NOT 2-Markov Menger (P000072) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND "$\\sigma$-Locally Finite Base" (P000054) AND NOT Hemicompact (P000111) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$\\sigma$-Locally Finite Base" (P000054) AND NOT Menger (P000066) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$\\sigma$-Locally Finite Base" (P000054) AND NOT Rothberger (P000068) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$\\sigma$-Locally Finite Base" (P000054) AND NOT Strategic Menger (P000069) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$\\sigma$-Locally Finite Base" (P000054) AND NOT Markov Menger (P000070) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$\\sigma$-Locally Finite Base" (P000054) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$\\sigma$-Locally Finite Base" (P000054) AND NOT 2-Markov Menger (P000072) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$\\sigma$-Locally Finite Base" (P000054) AND Sober (P000073) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$\\sigma$-Locally Finite Base" (P000054) AND locally Hausdorff (P000084) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$\\sigma$-Locally Finite Base" (P000054) AND Sequentially Hausdorff (P000099) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$\\sigma$-Locally Finite Base" (P000054) AND KC (P000100) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$\\sigma$-Locally Finite Base" (P000054) AND NOT Anti-Hausdorff (P000101) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$\\sigma$-Locally Finite Base" (P000054) AND Strongly KC (P000103) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Countable (P000057) AND NOT Continuum-sized (P000065) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Smaller than the continuum (P000058) AND NOT Continuum-sized (P000065) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Smaller than the continuum (P000058) AND NOT Menger (P000066) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Smaller than the continuum (P000058) AND NOT Rothberger (P000068) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Smaller than the continuum (P000058) AND NOT Strategic Menger (P000069) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Smaller than the continuum (P000058) AND NOT Markov Menger (P000070) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Smaller than the continuum (P000058) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Smaller than the continuum (P000058) AND NOT 2-Markov Menger (P000072) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Smaller than the continuum (P000058) AND NOT Hemicompact (P000111) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Smaller or same as the continuum (P000059) AND NOT Menger (P000066) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Smaller or same as the continuum (P000059) AND NOT Rothberger (P000068) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Smaller or same as the continuum (P000059) AND NOT Strategic Menger (P000069) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Smaller or same as the continuum (P000059) AND NOT Markov Menger (P000070) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Smaller or same as the continuum (P000059) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Smaller or same as the continuum (P000059) AND NOT 2-Markov Menger (P000072) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Smaller or same as the continuum (P000059) AND NOT Hemicompact (P000111) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Strongly Connected (P000060) AND NOT Menger (P000066) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Strongly Connected (P000060) AND NOT Rothberger (P000068) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Strongly Connected (P000060) AND NOT Strategic Menger (P000069) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Strongly Connected (P000060) AND NOT Markov Menger (P000070) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Strongly Connected (P000060) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Strongly Connected (P000060) AND NOT 2-Markov Menger (P000072) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Strongly Connected (P000060) AND Finite (P000078) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Strongly Connected (P000060) AND NOT Hemicompact (P000111) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Continuum-sized (P000065) AND NOT Menger (P000066) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Continuum-sized (P000065) AND NOT Rothberger (P000068) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Continuum-sized (P000065) AND NOT Strategic Menger (P000069) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Continuum-sized (P000065) AND NOT Markov Menger (P000070) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Continuum-sized (P000065) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Continuum-sized (P000065) AND NOT 2-Markov Menger (P000072) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Continuum-sized (P000065) AND NOT Hemicompact (P000111) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Menger (P000066) AND NOT Strategic Menger (P000069) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Menger (P000066) AND NOT Markov Menger (P000070) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Menger (P000066) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Menger (P000066) AND NOT 2-Markov Menger (P000072) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Menger (P000066) AND NOT Hemicompact (P000111) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Menger (P000066) AND Sober (P000073) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Menger (P000066) AND locally Hausdorff (P000084) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Menger (P000066) AND Sequentially Hausdorff (P000099) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Menger (P000066) AND KC (P000100) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Menger (P000066) AND NOT Anti-Hausdorff (P000101) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Menger (P000066) AND Strongly KC (P000103) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Rothberger (P000068) AND Sober (P000073) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Rothberger (P000068) AND locally Hausdorff (P000084) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Rothberger (P000068) AND Sequentially Hausdorff (P000099) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Rothberger (P000068) AND KC (P000100) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Rothberger (P000068) AND NOT Anti-Hausdorff (P000101) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Rothberger (P000068) AND Strongly KC (P000103) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Strategic Menger (P000069) AND Sober (P000073) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Strategic Menger (P000069) AND locally Hausdorff (P000084) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Strategic Menger (P000069) AND Sequentially Hausdorff (P000099) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Strategic Menger (P000069) AND KC (P000100) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Strategic Menger (P000069) AND NOT Anti-Hausdorff (P000101) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Strategic Menger (P000069) AND Strongly KC (P000103) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Markov Menger (P000070) AND Sober (P000073) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Markov Menger (P000070) AND locally Hausdorff (P000084) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Markov Menger (P000070) AND Sequentially Hausdorff (P000099) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Markov Menger (P000070) AND KC (P000100) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Markov Menger (P000070) AND NOT Anti-Hausdorff (P000101) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Markov Menger (P000070) AND Strongly KC (P000103) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$\\sigma$-relatively-compact" (P000071) AND Sober (P000073) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$\\sigma$-relatively-compact" (P000071) AND locally Hausdorff (P000084) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$\\sigma$-relatively-compact" (P000071) AND Sequentially Hausdorff (P000099) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$\\sigma$-relatively-compact" (P000071) AND KC (P000100) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$\\sigma$-relatively-compact" (P000071) AND NOT Anti-Hausdorff (P000101) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT "$\\sigma$-relatively-compact" (P000071) AND Strongly KC (P000103) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT 2-Markov Menger (P000072) AND Sober (P000073) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT 2-Markov Menger (P000072) AND locally Hausdorff (P000084) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT 2-Markov Menger (P000072) AND Sequentially Hausdorff (P000099) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT 2-Markov Menger (P000072) AND KC (P000100) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT 2-Markov Menger (P000072) AND NOT Anti-Hausdorff (P000101) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT 2-Markov Menger (P000072) AND Strongly KC (P000103) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Sober (P000073) AND Finite (P000078) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Sober (P000073) AND NOT homogenous (P000086) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Sober (P000073) AND Hemicompact (P000111) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Sober (P000073) AND NOT Hemicompact (P000111) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Sober (P000073) AND NOT Topological manifold (P000124) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Finite (P000078) AND NOT Anti-Hausdorff (P000101) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND locally Hausdorff (P000084) AND NOT homogenous (P000086) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND locally Hausdorff (P000084) AND Hemicompact (P000111) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND locally Hausdorff (P000084) AND NOT Hemicompact (P000111) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND locally Hausdorff (P000084) AND NOT Topological manifold (P000124) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT homogenous (P000086) AND Sequentially Hausdorff (P000099) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT homogenous (P000086) AND KC (P000100) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT homogenous (P000086) AND NOT Anti-Hausdorff (P000101) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT homogenous (P000086) AND Strongly KC (P000103) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Sequentially Hausdorff (P000099) AND Hemicompact (P000111) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Sequentially Hausdorff (P000099) AND NOT Hemicompact (P000111) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Sequentially Hausdorff (P000099) AND NOT Topological manifold (P000124) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND KC (P000100) AND Hemicompact (P000111) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND KC (P000100) AND NOT Hemicompact (P000111) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND KC (P000100) AND NOT Topological manifold (P000124) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Anti-Hausdorff (P000101) AND Hemicompact (P000111) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Anti-Hausdorff (P000101) AND NOT Hemicompact (P000111) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND NOT Anti-Hausdorff (P000101) AND NOT Topological manifold (P000124) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Strongly KC (P000103) AND Hemicompact (P000111) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Strongly KC (P000103) AND NOT Hemicompact (P000111) +NOT "$T_{2 \\frac{1}{2}}$" (P000004) AND Strongly KC (P000103) AND NOT Topological manifold (P000124) +"$T_3$" (P000005) AND NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Completely regular (P000012) +"$T_3$" (P000005) AND NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Normal (P000013) +"$T_3$" (P000005) AND NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Completely normal (P000014) +"$T_3$" (P000005) AND NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Countably compact (P000019) +"$T_3$" (P000005) AND NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Sequentially Compact (P000020) +"$T_3$" (P000005) AND NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Weakly Countably Compact (P000021) +"$T_3$" (P000005) AND NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Pseudocompact (P000022) +"$T_3$" (P000005) AND NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Locally Compact (P000023) +"$T_3$" (P000005) AND NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Strongly Locally Compact (P000024) +"$T_3$" (P000005) AND NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Separable (P000026) +"$T_3$" (P000005) AND NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND First Countable (P000028) +"$T_3$" (P000005) AND NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Countable chain condition (P000029) +"$T_3$" (P000005) AND NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Paracompact (P000030) +"$T_3$" (P000005) AND NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Metacompact (P000031) +"$T_3$" (P000005) AND NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Metacompact (P000031) +"$T_3$" (P000005) AND NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Countably paracompact (P000032) +"$T_3$" (P000005) AND NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Countably paracompact (P000032) +"$T_3$" (P000005) AND NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Countably metacompact (P000033) +"$T_3$" (P000005) AND NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Fully normal (P000034) +"$T_3$" (P000005) AND NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Path Connected (P000037) +"$T_3$" (P000005) AND NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Arc connected (P000038) +"$T_3$" (P000005) AND NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Locally Connected (P000041) +"$T_3$" (P000005) AND NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Locally Path Connected (P000042) +"$T_3$" (P000005) AND NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Locally Arc Connected (P000043) +"$T_3$" (P000005) AND NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Biconnected (P000044) +"$T_3$" (P000005) AND NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Has Dispersion Point (P000045) +"$T_3$" (P000005) AND NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Totally Path Disconnected (P000046) +"$T_3$" (P000005) AND NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Extremally Disconnected (P000049) +"$T_3$" (P000005) AND NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Zero Dimensional (P000050) +"$T_3$" (P000005) AND NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Scattered (P000051) +"$T_3$" (P000005) AND NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Non-meager (P000056) +"$T_3$" (P000005) AND NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Non-meager (P000056) +"$T_3$" (P000005) AND NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Smaller than the continuum (P000058) +"$T_3$" (P000005) AND NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Smaller than the continuum (P000058) +"$T_3$" (P000005) AND NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Weakly Lindelof (P000062) +"$T_3$" (P000005) AND NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Baire (P000064) +"$T_3$" (P000005) AND NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Continuum-sized (P000065) +"$T_3$" (P000005) AND NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND sequential (P000079) +"$T_3$" (P000005) AND NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Fréchet Urysohn (P000080) +"$T_3$" (P000005) AND NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Countably tight (P000081) +"$T_3$" (P000005) AND NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Strongly KC (P000103) +"$T_3$" (P000005) AND NOT "$T_4$" (P000007) AND Normal (P000013) +"$T_3$" (P000005) AND NOT "$T_4$" (P000007) AND Completely normal (P000014) +"$T_3$" (P000005) AND NOT "$T_4$" (P000007) AND Sequentially Compact (P000020) +"$T_3$" (P000005) AND NOT "$T_4$" (P000007) AND Paracompact (P000030) +"$T_3$" (P000005) AND NOT "$T_4$" (P000007) AND Fully normal (P000034) +"$T_3$" (P000005) AND NOT "$T_4$" (P000007) AND Biconnected (P000044) +"$T_3$" (P000005) AND NOT "$T_4$" (P000007) AND Has Dispersion Point (P000045) +"$T_3$" (P000005) AND NOT "$T_4$" (P000007) AND Extremally Disconnected (P000049) +"$T_3$" (P000005) AND NOT "$T_4$" (P000007) AND NOT Non-meager (P000056) +"$T_3$" (P000005) AND NOT "$T_4$" (P000007) AND Smaller than the continuum (P000058) +"$T_3$" (P000005) AND NOT "$T_4$" (P000007) AND NOT Baire (P000064) +"$T_3$" (P000005) AND NOT "$T_4$" (P000007) AND NOT Continuum-sized (P000065) +"$T_3$" (P000005) AND NOT "$T_5$" (P000008) AND Completely normal (P000014) +"$T_3$" (P000005) AND NOT "$T_5$" (P000008) AND Biconnected (P000044) +"$T_3$" (P000005) AND NOT "$T_5$" (P000008) AND Has Dispersion Point (P000045) +"$T_3$" (P000005) AND NOT "$T_5$" (P000008) AND "$\\sigma$-Locally Finite Base" (P000054) +"$T_3$" (P000005) AND NOT "$T_5$" (P000008) AND NOT Non-meager (P000056) +"$T_3$" (P000005) AND NOT "$T_5$" (P000008) AND Countable (P000057) +"$T_3$" (P000005) AND NOT "$T_5$" (P000008) AND Smaller than the continuum (P000058) +"$T_3$" (P000005) AND NOT "$T_5$" (P000008) AND NOT Baire (P000064) +"$T_3$" (P000005) AND NOT "$T_5$" (P000008) AND NOT Continuum-sized (P000065) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND Completely regular (P000012) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND NOT Completely regular (P000012) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND Normal (P000013) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND Completely normal (P000014) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND Countably compact (P000019) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND NOT Countably compact (P000019) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND Sequentially Compact (P000020) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND NOT Sequentially Compact (P000020) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND Weakly Countably Compact (P000021) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND NOT Weakly Countably Compact (P000021) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND NOT Pseudocompact (P000022) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND Locally Compact (P000023) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND NOT Locally Compact (P000023) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND Strongly Locally Compact (P000024) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND NOT Strongly Locally Compact (P000024) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND Separable (P000026) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND NOT Separable (P000026) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND First Countable (P000028) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND NOT First Countable (P000028) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND Countable chain condition (P000029) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND NOT Countable chain condition (P000029) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND Paracompact (P000030) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND NOT Paracompact (P000030) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND Metacompact (P000031) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND NOT Metacompact (P000031) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND Countably paracompact (P000032) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND NOT Countably paracompact (P000032) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND Countably metacompact (P000033) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND Fully normal (P000034) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND NOT Connected (P000036) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND Path Connected (P000037) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND NOT Path Connected (P000037) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND Arc connected (P000038) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND NOT Arc connected (P000038) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND Locally Connected (P000041) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND NOT Locally Connected (P000041) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND Locally Path Connected (P000042) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND NOT Locally Path Connected (P000042) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND Locally Arc Connected (P000043) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND NOT Locally Arc Connected (P000043) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND Biconnected (P000044) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND NOT Biconnected (P000044) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND Has Dispersion Point (P000045) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND NOT Has Dispersion Point (P000045) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND Totally Path Disconnected (P000046) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND NOT Totally Path Disconnected (P000046) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND Totally Disconnected (P000047) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND Zero Dimensional (P000050) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND NOT Zero Dimensional (P000050) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND Scattered (P000051) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND NOT Scattered (P000051) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND Non-meager (P000056) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND NOT Non-meager (P000056) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND Smaller than the continuum (P000058) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND NOT Smaller than the continuum (P000058) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND NOT Strongly Connected (P000060) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND Weakly Lindelof (P000062) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND NOT Baire (P000064) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND NOT Continuum-sized (P000065) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND Sober (P000073) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND sequential (P000079) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND Fréchet Urysohn (P000080) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND Countably tight (P000081) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND locally Hausdorff (P000084) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND NOT homogenous (P000086) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND Sequentially Hausdorff (P000099) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND KC (P000100) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND NOT Anti-Hausdorff (P000101) +"$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND Strongly KC (P000103) +"$T_3$" (P000005) AND Completely regular (P000012) AND Strongly Connected (P000060) +"$T_3$" (P000005) AND Completely regular (P000012) AND NOT Cozero complemented (P000061) +"$T_3$" (P000005) AND NOT Completely regular (P000012) AND Countably compact (P000019) +"$T_3$" (P000005) AND NOT Completely regular (P000012) AND Sequentially Compact (P000020) +"$T_3$" (P000005) AND NOT Completely regular (P000012) AND Weakly Countably Compact (P000021) +"$T_3$" (P000005) AND NOT Completely regular (P000012) AND Pseudocompact (P000022) +"$T_3$" (P000005) AND NOT Completely regular (P000012) AND NOT Pseudocompact (P000022) +"$T_3$" (P000005) AND NOT Completely regular (P000012) AND Locally Compact (P000023) +"$T_3$" (P000005) AND NOT Completely regular (P000012) AND Strongly Locally Compact (P000024) +"$T_3$" (P000005) AND NOT Completely regular (P000012) AND Separable (P000026) +"$T_3$" (P000005) AND NOT Completely regular (P000012) AND First Countable (P000028) +"$T_3$" (P000005) AND NOT Completely regular (P000012) AND Countable chain condition (P000029) +"$T_3$" (P000005) AND NOT Completely regular (P000012) AND Paracompact (P000030) +"$T_3$" (P000005) AND NOT Completely regular (P000012) AND Metacompact (P000031) +"$T_3$" (P000005) AND NOT Completely regular (P000012) AND NOT Metacompact (P000031) +"$T_3$" (P000005) AND NOT Completely regular (P000012) AND Countably paracompact (P000032) +"$T_3$" (P000005) AND NOT Completely regular (P000012) AND NOT Countably paracompact (P000032) +"$T_3$" (P000005) AND NOT Completely regular (P000012) AND Countably metacompact (P000033) +"$T_3$" (P000005) AND NOT Completely regular (P000012) AND Connected (P000036) +"$T_3$" (P000005) AND NOT Completely regular (P000012) AND Path Connected (P000037) +"$T_3$" (P000005) AND NOT Completely regular (P000012) AND Arc connected (P000038) +"$T_3$" (P000005) AND NOT Completely regular (P000012) AND Locally Connected (P000041) +"$T_3$" (P000005) AND NOT Completely regular (P000012) AND Locally Path Connected (P000042) +"$T_3$" (P000005) AND NOT Completely regular (P000012) AND Locally Arc Connected (P000043) +"$T_3$" (P000005) AND NOT Completely regular (P000012) AND Biconnected (P000044) +"$T_3$" (P000005) AND NOT Completely regular (P000012) AND Has Dispersion Point (P000045) +"$T_3$" (P000005) AND NOT Completely regular (P000012) AND NOT Totally Path Disconnected (P000046) +"$T_3$" (P000005) AND NOT Completely regular (P000012) AND NOT Totally Disconnected (P000047) +"$T_3$" (P000005) AND NOT Completely regular (P000012) AND NOT Totally Separated (P000048) +"$T_3$" (P000005) AND NOT Completely regular (P000012) AND Extremally Disconnected (P000049) +"$T_3$" (P000005) AND NOT Completely regular (P000012) AND NOT Scattered (P000051) +"$T_3$" (P000005) AND NOT Completely regular (P000012) AND Non-meager (P000056) +"$T_3$" (P000005) AND NOT Completely regular (P000012) AND NOT Non-meager (P000056) +"$T_3$" (P000005) AND NOT Completely regular (P000012) AND Smaller than the continuum (P000058) +"$T_3$" (P000005) AND NOT Completely regular (P000012) AND NOT Smaller than the continuum (P000058) +"$T_3$" (P000005) AND NOT Completely regular (P000012) AND Strongly Connected (P000060) +"$T_3$" (P000005) AND NOT Completely regular (P000012) AND Weakly Lindelof (P000062) +"$T_3$" (P000005) AND NOT Completely regular (P000012) AND NOT Baire (P000064) +"$T_3$" (P000005) AND NOT Completely regular (P000012) AND NOT Continuum-sized (P000065) +"$T_3$" (P000005) AND NOT Completely regular (P000012) AND sequential (P000079) +"$T_3$" (P000005) AND NOT Completely regular (P000012) AND Fréchet Urysohn (P000080) +"$T_3$" (P000005) AND NOT Completely regular (P000012) AND Countably tight (P000081) +"$T_3$" (P000005) AND NOT Completely regular (P000012) AND Strongly KC (P000103) +"$T_3$" (P000005) AND Normal (P000013) AND NOT Countably paracompact (P000032) +"$T_3$" (P000005) AND Normal (P000013) AND Strongly Connected (P000060) +"$T_3$" (P000005) AND Normal (P000013) AND NOT Cozero complemented (P000061) +"$T_3$" (P000005) AND NOT Normal (P000013) AND Sequentially Compact (P000020) +"$T_3$" (P000005) AND NOT Normal (P000013) AND Paracompact (P000030) +"$T_3$" (P000005) AND NOT Normal (P000013) AND Biconnected (P000044) +"$T_3$" (P000005) AND NOT Normal (P000013) AND Has Dispersion Point (P000045) +"$T_3$" (P000005) AND NOT Normal (P000013) AND Extremally Disconnected (P000049) +"$T_3$" (P000005) AND NOT Normal (P000013) AND NOT Non-meager (P000056) +"$T_3$" (P000005) AND NOT Normal (P000013) AND Smaller than the continuum (P000058) +"$T_3$" (P000005) AND NOT Normal (P000013) AND NOT Baire (P000064) +"$T_3$" (P000005) AND NOT Normal (P000013) AND NOT Continuum-sized (P000065) +"$T_3$" (P000005) AND Completely normal (P000014) AND NOT Countably paracompact (P000032) +"$T_3$" (P000005) AND Completely normal (P000014) AND Strongly Connected (P000060) +"$T_3$" (P000005) AND Completely normal (P000014) AND NOT Cozero complemented (P000061) +"$T_3$" (P000005) AND NOT Completely normal (P000014) AND Biconnected (P000044) +"$T_3$" (P000005) AND NOT Completely normal (P000014) AND Has Dispersion Point (P000045) +"$T_3$" (P000005) AND NOT Completely normal (P000014) AND "$\\sigma$-Locally Finite Base" (P000054) +"$T_3$" (P000005) AND NOT Completely normal (P000014) AND NOT Non-meager (P000056) +"$T_3$" (P000005) AND NOT Completely normal (P000014) AND Countable (P000057) +"$T_3$" (P000005) AND NOT Completely normal (P000014) AND Smaller than the continuum (P000058) +"$T_3$" (P000005) AND NOT Completely normal (P000014) AND NOT Baire (P000064) +"$T_3$" (P000005) AND NOT Completely normal (P000014) AND NOT Continuum-sized (P000065) +"$T_3$" (P000005) AND NOT Perfectly Normal (P000015) AND Second Countable (P000027) +"$T_3$" (P000005) AND NOT Perfectly Normal (P000015) AND Biconnected (P000044) +"$T_3$" (P000005) AND NOT Perfectly Normal (P000015) AND Has Dispersion Point (P000045) +"$T_3$" (P000005) AND NOT Perfectly Normal (P000015) AND "$\\sigma$-Locally Finite Base" (P000054) +"$T_3$" (P000005) AND NOT Perfectly Normal (P000015) AND NOT Non-meager (P000056) +"$T_3$" (P000005) AND NOT Perfectly Normal (P000015) AND Countable (P000057) +"$T_3$" (P000005) AND NOT Perfectly Normal (P000015) AND Smaller than the continuum (P000058) +"$T_3$" (P000005) AND NOT Perfectly Normal (P000015) AND NOT Baire (P000064) +"$T_3$" (P000005) AND NOT Perfectly Normal (P000015) AND NOT Continuum-sized (P000065) +"$T_3$" (P000005) AND NOT Perfectly Normal (P000015) AND Finite (P000078) +"$T_3$" (P000005) AND Compact (P000016) AND Biconnected (P000044) +"$T_3$" (P000005) AND Compact (P000016) AND Has Dispersion Point (P000045) +"$T_3$" (P000005) AND Compact (P000016) AND NOT Cozero complemented (P000061) +"$T_3$" (P000005) AND Compact (P000016) AND NOT Spectral space (P000075) +"$T_3$" (P000005) AND "$\\sigma$-compact" (P000017) AND Biconnected (P000044) +"$T_3$" (P000005) AND "$\\sigma$-compact" (P000017) AND Has Dispersion Point (P000045) +"$T_3$" (P000005) AND "$\\sigma$-compact" (P000017) AND NOT Cozero complemented (P000061) +"$T_3$" (P000005) AND NOT "$\\sigma$-compact" (P000017) AND Biconnected (P000044) +"$T_3$" (P000005) AND NOT "$\\sigma$-compact" (P000017) AND Has Dispersion Point (P000045) +"$T_3$" (P000005) AND Lindelof (P000018) AND NOT Cozero complemented (P000061) +"$T_3$" (P000005) AND NOT Lindelof (P000018) AND Biconnected (P000044) +"$T_3$" (P000005) AND NOT Lindelof (P000018) AND Has Dispersion Point (P000045) +"$T_3$" (P000005) AND Countably compact (P000019) AND NOT Locally Compact (P000023) +"$T_3$" (P000005) AND Countably compact (P000019) AND NOT Strongly Locally Compact (P000024) +"$T_3$" (P000005) AND Countably compact (P000019) AND Biconnected (P000044) +"$T_3$" (P000005) AND Countably compact (P000019) AND Has Dispersion Point (P000045) +"$T_3$" (P000005) AND Countably compact (P000019) AND NOT Non-meager (P000056) +"$T_3$" (P000005) AND Countably compact (P000019) AND Strongly Connected (P000060) +"$T_3$" (P000005) AND Countably compact (P000019) AND NOT Cozero complemented (P000061) +"$T_3$" (P000005) AND Countably compact (P000019) AND NOT Baire (P000064) +"$T_3$" (P000005) AND NOT Countably compact (P000019) AND Weakly Countably Compact (P000021) +"$T_3$" (P000005) AND NOT Countably compact (P000019) AND Strongly Connected (P000060) +"$T_3$" (P000005) AND Sequentially Compact (P000020) AND NOT Locally Compact (P000023) +"$T_3$" (P000005) AND Sequentially Compact (P000020) AND NOT Strongly Locally Compact (P000024) +"$T_3$" (P000005) AND Sequentially Compact (P000020) AND Biconnected (P000044) +"$T_3$" (P000005) AND Sequentially Compact (P000020) AND Has Dispersion Point (P000045) +"$T_3$" (P000005) AND Sequentially Compact (P000020) AND NOT Non-meager (P000056) +"$T_3$" (P000005) AND Sequentially Compact (P000020) AND Strongly Connected (P000060) +"$T_3$" (P000005) AND Sequentially Compact (P000020) AND NOT Cozero complemented (P000061) +"$T_3$" (P000005) AND Sequentially Compact (P000020) AND NOT Baire (P000064) +"$T_3$" (P000005) AND Sequentially Compact (P000020) AND NOT Collectionwise normal (P000088) +"$T_3$" (P000005) AND NOT Sequentially Compact (P000020) AND Strongly Connected (P000060) +"$T_3$" (P000005) AND Weakly Countably Compact (P000021) AND NOT Pseudocompact (P000022) +"$T_3$" (P000005) AND Weakly Countably Compact (P000021) AND NOT Locally Compact (P000023) +"$T_3$" (P000005) AND Weakly Countably Compact (P000021) AND NOT Strongly Locally Compact (P000024) +"$T_3$" (P000005) AND Weakly Countably Compact (P000021) AND NOT Countably paracompact (P000032) +"$T_3$" (P000005) AND Weakly Countably Compact (P000021) AND Biconnected (P000044) +"$T_3$" (P000005) AND Weakly Countably Compact (P000021) AND Has Dispersion Point (P000045) +"$T_3$" (P000005) AND Weakly Countably Compact (P000021) AND NOT Non-meager (P000056) +"$T_3$" (P000005) AND Weakly Countably Compact (P000021) AND Strongly Connected (P000060) +"$T_3$" (P000005) AND Weakly Countably Compact (P000021) AND NOT Cozero complemented (P000061) +"$T_3$" (P000005) AND Weakly Countably Compact (P000021) AND NOT Baire (P000064) +"$T_3$" (P000005) AND NOT Weakly Countably Compact (P000021) AND Strongly Connected (P000060) +"$T_3$" (P000005) AND Pseudocompact (P000022) AND NOT Locally Compact (P000023) +"$T_3$" (P000005) AND Pseudocompact (P000022) AND NOT Strongly Locally Compact (P000024) +"$T_3$" (P000005) AND Pseudocompact (P000022) AND Biconnected (P000044) +"$T_3$" (P000005) AND Pseudocompact (P000022) AND Has Dispersion Point (P000045) +"$T_3$" (P000005) AND Pseudocompact (P000022) AND NOT Non-meager (P000056) +"$T_3$" (P000005) AND Pseudocompact (P000022) AND NOT Baire (P000064) +"$T_3$" (P000005) AND NOT Pseudocompact (P000022) AND NOT Cozero complemented (P000061) +"$T_3$" (P000005) AND Locally Compact (P000023) AND NOT Strongly Locally Compact (P000024) +"$T_3$" (P000005) AND Locally Compact (P000023) AND Biconnected (P000044) +"$T_3$" (P000005) AND Locally Compact (P000023) AND Has Dispersion Point (P000045) +"$T_3$" (P000005) AND Locally Compact (P000023) AND NOT Non-meager (P000056) +"$T_3$" (P000005) AND Locally Compact (P000023) AND Strongly Connected (P000060) +"$T_3$" (P000005) AND Locally Compact (P000023) AND NOT Cozero complemented (P000061) +"$T_3$" (P000005) AND Locally Compact (P000023) AND NOT Baire (P000064) +"$T_3$" (P000005) AND NOT Locally Compact (P000023) AND Strongly Connected (P000060) +"$T_3$" (P000005) AND Strongly Locally Compact (P000024) AND Biconnected (P000044) +"$T_3$" (P000005) AND Strongly Locally Compact (P000024) AND Has Dispersion Point (P000045) +"$T_3$" (P000005) AND Strongly Locally Compact (P000024) AND NOT Non-meager (P000056) +"$T_3$" (P000005) AND Strongly Locally Compact (P000024) AND Strongly Connected (P000060) +"$T_3$" (P000005) AND Strongly Locally Compact (P000024) AND NOT Cozero complemented (P000061) +"$T_3$" (P000005) AND Strongly Locally Compact (P000024) AND NOT Baire (P000064) +"$T_3$" (P000005) AND NOT Strongly Locally Compact (P000024) AND Strongly Connected (P000060) +"$T_3$" (P000005) AND NOT Strongly Locally Compact (P000024) AND Hemicompact (P000111) +"$T_3$" (P000005) AND "$\\sigma$-Locally Compact" (P000025) AND Biconnected (P000044) +"$T_3$" (P000005) AND "$\\sigma$-Locally Compact" (P000025) AND Has Dispersion Point (P000045) +"$T_3$" (P000005) AND "$\\sigma$-Locally Compact" (P000025) AND NOT Cozero complemented (P000061) +"$T_3$" (P000005) AND Separable (P000026) AND Strongly Connected (P000060) +"$T_3$" (P000005) AND Separable (P000026) AND NOT Cozero complemented (P000061) +"$T_3$" (P000005) AND NOT Separable (P000026) AND Biconnected (P000044) +"$T_3$" (P000005) AND NOT Separable (P000026) AND Has Dispersion Point (P000045) +"$T_3$" (P000005) AND NOT Separable (P000026) AND Strongly Connected (P000060) +"$T_3$" (P000005) AND Second Countable (P000027) AND NOT "$T_6$" (P000067) +"$T_3$" (P000005) AND Second Countable (P000027) AND NOT Topological manifold (P000124) +"$T_3$" (P000005) AND NOT Second Countable (P000027) AND Biconnected (P000044) +"$T_3$" (P000005) AND NOT Second Countable (P000027) AND Has Dispersion Point (P000045) +"$T_3$" (P000005) AND First Countable (P000028) AND Strongly Connected (P000060) +"$T_3$" (P000005) AND First Countable (P000028) AND NOT Cozero complemented (P000061) +"$T_3$" (P000005) AND NOT First Countable (P000028) AND Biconnected (P000044) +"$T_3$" (P000005) AND NOT First Countable (P000028) AND Has Dispersion Point (P000045) +"$T_3$" (P000005) AND NOT First Countable (P000028) AND NOT Non-meager (P000056) +"$T_3$" (P000005) AND NOT First Countable (P000028) AND Strongly Connected (P000060) +"$T_3$" (P000005) AND NOT First Countable (P000028) AND NOT Baire (P000064) +"$T_3$" (P000005) AND Countable chain condition (P000029) AND Strongly Connected (P000060) +"$T_3$" (P000005) AND Countable chain condition (P000029) AND NOT Cozero complemented (P000061) +"$T_3$" (P000005) AND NOT Countable chain condition (P000029) AND Biconnected (P000044) +"$T_3$" (P000005) AND NOT Countable chain condition (P000029) AND Has Dispersion Point (P000045) +"$T_3$" (P000005) AND NOT Countable chain condition (P000029) AND Strongly Connected (P000060) +"$T_3$" (P000005) AND Paracompact (P000030) AND NOT Fully normal (P000034) +"$T_3$" (P000005) AND Paracompact (P000030) AND NOT Fully $T_4$ (P000035) +"$T_3$" (P000005) AND Paracompact (P000030) AND Strongly Connected (P000060) +"$T_3$" (P000005) AND Paracompact (P000030) AND NOT Cozero complemented (P000061) +"$T_3$" (P000005) AND Paracompact (P000030) AND NOT Collectionwise normal (P000088) +"$T_3$" (P000005) AND NOT Paracompact (P000030) AND Biconnected (P000044) +"$T_3$" (P000005) AND NOT Paracompact (P000030) AND Has Dispersion Point (P000045) +"$T_3$" (P000005) AND NOT Paracompact (P000030) AND Extremally Disconnected (P000049) +"$T_3$" (P000005) AND NOT Paracompact (P000030) AND NOT Non-meager (P000056) +"$T_3$" (P000005) AND NOT Paracompact (P000030) AND Smaller than the continuum (P000058) +"$T_3$" (P000005) AND NOT Paracompact (P000030) AND Strongly Connected (P000060) +"$T_3$" (P000005) AND NOT Paracompact (P000030) AND NOT Baire (P000064) +"$T_3$" (P000005) AND Metacompact (P000031) AND Strongly Connected (P000060) +"$T_3$" (P000005) AND Metacompact (P000031) AND NOT Cozero complemented (P000061) +"$T_3$" (P000005) AND NOT Metacompact (P000031) AND Biconnected (P000044) +"$T_3$" (P000005) AND NOT Metacompact (P000031) AND Has Dispersion Point (P000045) +"$T_3$" (P000005) AND NOT Metacompact (P000031) AND Extremally Disconnected (P000049) +"$T_3$" (P000005) AND NOT Metacompact (P000031) AND NOT Non-meager (P000056) +"$T_3$" (P000005) AND NOT Metacompact (P000031) AND Smaller than the continuum (P000058) +"$T_3$" (P000005) AND NOT Metacompact (P000031) AND Strongly Connected (P000060) +"$T_3$" (P000005) AND NOT Metacompact (P000031) AND NOT Cozero complemented (P000061) +"$T_3$" (P000005) AND NOT Metacompact (P000031) AND NOT Baire (P000064) +"$T_3$" (P000005) AND Countably paracompact (P000032) AND Strongly Connected (P000060) +"$T_3$" (P000005) AND Countably paracompact (P000032) AND NOT Cozero complemented (P000061) +"$T_3$" (P000005) AND NOT Countably paracompact (P000032) AND Biconnected (P000044) +"$T_3$" (P000005) AND NOT Countably paracompact (P000032) AND Has Dispersion Point (P000045) +"$T_3$" (P000005) AND NOT Countably paracompact (P000032) AND NOT Non-meager (P000056) +"$T_3$" (P000005) AND NOT Countably paracompact (P000032) AND Smaller than the continuum (P000058) +"$T_3$" (P000005) AND NOT Countably paracompact (P000032) AND Strongly Connected (P000060) +"$T_3$" (P000005) AND NOT Countably paracompact (P000032) AND NOT Cozero complemented (P000061) +"$T_3$" (P000005) AND NOT Countably paracompact (P000032) AND NOT Baire (P000064) +"$T_3$" (P000005) AND NOT Countably paracompact (P000032) AND NOT Continuum-sized (P000065) +"$T_3$" (P000005) AND Countably metacompact (P000033) AND Strongly Connected (P000060) +"$T_3$" (P000005) AND Countably metacompact (P000033) AND NOT Cozero complemented (P000061) +"$T_3$" (P000005) AND Fully normal (P000034) AND NOT Fully $T_4$ (P000035) +"$T_3$" (P000005) AND Fully normal (P000034) AND Strongly Connected (P000060) +"$T_3$" (P000005) AND Fully normal (P000034) AND NOT Cozero complemented (P000061) +"$T_3$" (P000005) AND NOT Fully normal (P000034) AND Biconnected (P000044) +"$T_3$" (P000005) AND NOT Fully normal (P000034) AND Has Dispersion Point (P000045) +"$T_3$" (P000005) AND NOT Fully normal (P000034) AND Extremally Disconnected (P000049) +"$T_3$" (P000005) AND NOT Fully normal (P000034) AND NOT Non-meager (P000056) +"$T_3$" (P000005) AND NOT Fully normal (P000034) AND Smaller than the continuum (P000058) +"$T_3$" (P000005) AND NOT Fully normal (P000034) AND NOT Baire (P000064) +"$T_3$" (P000005) AND NOT Fully $T_4$ (P000035) AND Biconnected (P000044) +"$T_3$" (P000005) AND NOT Fully $T_4$ (P000035) AND Has Dispersion Point (P000045) +"$T_3$" (P000005) AND NOT Fully $T_4$ (P000035) AND Extremally Disconnected (P000049) +"$T_3$" (P000005) AND NOT Fully $T_4$ (P000035) AND NOT Non-meager (P000056) +"$T_3$" (P000005) AND NOT Fully $T_4$ (P000035) AND Smaller than the continuum (P000058) +"$T_3$" (P000005) AND NOT Fully $T_4$ (P000035) AND NOT Baire (P000064) +"$T_3$" (P000005) AND Connected (P000036) AND Zero Dimensional (P000050) +"$T_3$" (P000005) AND Connected (P000036) AND Scattered (P000051) +"$T_3$" (P000005) AND Connected (P000036) AND Countable (P000057) +"$T_3$" (P000005) AND Connected (P000036) AND Smaller than the continuum (P000058) +"$T_3$" (P000005) AND Connected (P000036) AND NOT Continuum-sized (P000065) +"$T_3$" (P000005) AND Connected (P000036) AND Finite (P000078) +"$T_3$" (P000005) AND Connected (P000036) AND NOT homogenous (P000086) +"$T_3$" (P000005) AND Path Connected (P000037) AND NOT Arc connected (P000038) +"$T_3$" (P000005) AND Path Connected (P000037) AND Biconnected (P000044) +"$T_3$" (P000005) AND Path Connected (P000037) AND Has Dispersion Point (P000045) +"$T_3$" (P000005) AND Path Connected (P000037) AND Zero Dimensional (P000050) +"$T_3$" (P000005) AND Path Connected (P000037) AND Scattered (P000051) +"$T_3$" (P000005) AND Path Connected (P000037) AND Countable (P000057) +"$T_3$" (P000005) AND Path Connected (P000037) AND Smaller than the continuum (P000058) +"$T_3$" (P000005) AND Path Connected (P000037) AND Strongly Connected (P000060) +"$T_3$" (P000005) AND Path Connected (P000037) AND NOT Cozero complemented (P000061) +"$T_3$" (P000005) AND Path Connected (P000037) AND NOT Continuum-sized (P000065) +"$T_3$" (P000005) AND Path Connected (P000037) AND Finite (P000078) +"$T_3$" (P000005) AND Path Connected (P000037) AND NOT homogenous (P000086) +"$T_3$" (P000005) AND NOT Path Connected (P000037) AND Strongly Connected (P000060) +"$T_3$" (P000005) AND Arc connected (P000038) AND Strongly Connected (P000060) +"$T_3$" (P000005) AND Arc connected (P000038) AND NOT Cozero complemented (P000061) +"$T_3$" (P000005) AND NOT Arc connected (P000038) AND Strongly Connected (P000060) +"$T_3$" (P000005) AND Locally Connected (P000041) AND Biconnected (P000044) +"$T_3$" (P000005) AND Locally Connected (P000041) AND Has Dispersion Point (P000045) +"$T_3$" (P000005) AND Locally Connected (P000041) AND Strongly Connected (P000060) +"$T_3$" (P000005) AND Locally Connected (P000041) AND NOT Cozero complemented (P000061) +"$T_3$" (P000005) AND Locally Connected (P000041) AND NOT homogenous (P000086) +"$T_3$" (P000005) AND NOT Locally Connected (P000041) AND Strongly Connected (P000060) +"$T_3$" (P000005) AND Locally Path Connected (P000042) AND NOT Locally Arc Connected (P000043) +"$T_3$" (P000005) AND Locally Path Connected (P000042) AND Biconnected (P000044) +"$T_3$" (P000005) AND Locally Path Connected (P000042) AND Has Dispersion Point (P000045) +"$T_3$" (P000005) AND Locally Path Connected (P000042) AND Strongly Connected (P000060) +"$T_3$" (P000005) AND Locally Path Connected (P000042) AND NOT Cozero complemented (P000061) +"$T_3$" (P000005) AND Locally Path Connected (P000042) AND NOT homogenous (P000086) +"$T_3$" (P000005) AND NOT Locally Path Connected (P000042) AND Strongly Connected (P000060) +"$T_3$" (P000005) AND Locally Arc Connected (P000043) AND Strongly Connected (P000060) +"$T_3$" (P000005) AND Locally Arc Connected (P000043) AND NOT Cozero complemented (P000061) +"$T_3$" (P000005) AND NOT Locally Arc Connected (P000043) AND Strongly Connected (P000060) +"$T_3$" (P000005) AND Biconnected (P000044) AND Totally Path Disconnected (P000046) +"$T_3$" (P000005) AND Biconnected (P000044) AND NOT Totally Path Disconnected (P000046) +"$T_3$" (P000005) AND Biconnected (P000044) AND Scattered (P000051) +"$T_3$" (P000005) AND Biconnected (P000044) AND NOT Metrizable (P000053) +"$T_3$" (P000005) AND Biconnected (P000044) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +"$T_3$" (P000005) AND Biconnected (P000044) AND NOT Completely metrizable (P000055) +"$T_3$" (P000005) AND Biconnected (P000044) AND Non-meager (P000056) +"$T_3$" (P000005) AND Biconnected (P000044) AND NOT Non-meager (P000056) +"$T_3$" (P000005) AND Biconnected (P000044) AND Countable (P000057) +"$T_3$" (P000005) AND Biconnected (P000044) AND Smaller than the continuum (P000058) +"$T_3$" (P000005) AND Biconnected (P000044) AND Strongly Connected (P000060) +"$T_3$" (P000005) AND Biconnected (P000044) AND NOT Cozero complemented (P000061) +"$T_3$" (P000005) AND Biconnected (P000044) AND NOT Baire (P000064) +"$T_3$" (P000005) AND Biconnected (P000044) AND NOT Continuum-sized (P000065) +"$T_3$" (P000005) AND Biconnected (P000044) AND Menger (P000066) +"$T_3$" (P000005) AND Biconnected (P000044) AND NOT Menger (P000066) +"$T_3$" (P000005) AND Biconnected (P000044) AND NOT "$T_6$" (P000067) +"$T_3$" (P000005) AND Biconnected (P000044) AND NOT Rothberger (P000068) +"$T_3$" (P000005) AND Biconnected (P000044) AND Strategic Menger (P000069) +"$T_3$" (P000005) AND Biconnected (P000044) AND NOT Strategic Menger (P000069) +"$T_3$" (P000005) AND Biconnected (P000044) AND Markov Menger (P000070) +"$T_3$" (P000005) AND Biconnected (P000044) AND NOT Markov Menger (P000070) +"$T_3$" (P000005) AND Biconnected (P000044) AND "$\\sigma$-relatively-compact" (P000071) +"$T_3$" (P000005) AND Biconnected (P000044) AND NOT "$\\sigma$-relatively-compact" (P000071) +"$T_3$" (P000005) AND Biconnected (P000044) AND 2-Markov Menger (P000072) +"$T_3$" (P000005) AND Biconnected (P000044) AND NOT 2-Markov Menger (P000072) +"$T_3$" (P000005) AND Biconnected (P000044) AND Finite (P000078) +"$T_3$" (P000005) AND Biconnected (P000044) AND NOT homogenous (P000086) +"$T_3$" (P000005) AND Biconnected (P000044) AND NOT Collectionwise normal (P000088) +"$T_3$" (P000005) AND Biconnected (P000044) AND Hemicompact (P000111) +"$T_3$" (P000005) AND Biconnected (P000044) AND NOT Hemicompact (P000111) +"$T_3$" (P000005) AND Biconnected (P000044) AND NOT Topological manifold (P000124) +"$T_3$" (P000005) AND NOT Biconnected (P000044) AND Strongly Connected (P000060) +"$T_3$" (P000005) AND Has Dispersion Point (P000045) AND Totally Path Disconnected (P000046) +"$T_3$" (P000005) AND Has Dispersion Point (P000045) AND NOT Totally Path Disconnected (P000046) +"$T_3$" (P000005) AND Has Dispersion Point (P000045) AND Scattered (P000051) +"$T_3$" (P000005) AND Has Dispersion Point (P000045) AND NOT Metrizable (P000053) +"$T_3$" (P000005) AND Has Dispersion Point (P000045) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +"$T_3$" (P000005) AND Has Dispersion Point (P000045) AND NOT Completely metrizable (P000055) +"$T_3$" (P000005) AND Has Dispersion Point (P000045) AND Non-meager (P000056) +"$T_3$" (P000005) AND Has Dispersion Point (P000045) AND NOT Non-meager (P000056) +"$T_3$" (P000005) AND Has Dispersion Point (P000045) AND Countable (P000057) +"$T_3$" (P000005) AND Has Dispersion Point (P000045) AND Smaller than the continuum (P000058) +"$T_3$" (P000005) AND Has Dispersion Point (P000045) AND Strongly Connected (P000060) +"$T_3$" (P000005) AND Has Dispersion Point (P000045) AND NOT Cozero complemented (P000061) +"$T_3$" (P000005) AND Has Dispersion Point (P000045) AND NOT Baire (P000064) +"$T_3$" (P000005) AND Has Dispersion Point (P000045) AND NOT Continuum-sized (P000065) +"$T_3$" (P000005) AND Has Dispersion Point (P000045) AND Menger (P000066) +"$T_3$" (P000005) AND Has Dispersion Point (P000045) AND NOT Menger (P000066) +"$T_3$" (P000005) AND Has Dispersion Point (P000045) AND NOT "$T_6$" (P000067) +"$T_3$" (P000005) AND Has Dispersion Point (P000045) AND NOT Rothberger (P000068) +"$T_3$" (P000005) AND Has Dispersion Point (P000045) AND Strategic Menger (P000069) +"$T_3$" (P000005) AND Has Dispersion Point (P000045) AND NOT Strategic Menger (P000069) +"$T_3$" (P000005) AND Has Dispersion Point (P000045) AND Markov Menger (P000070) +"$T_3$" (P000005) AND Has Dispersion Point (P000045) AND NOT Markov Menger (P000070) +"$T_3$" (P000005) AND Has Dispersion Point (P000045) AND "$\\sigma$-relatively-compact" (P000071) +"$T_3$" (P000005) AND Has Dispersion Point (P000045) AND NOT "$\\sigma$-relatively-compact" (P000071) +"$T_3$" (P000005) AND Has Dispersion Point (P000045) AND 2-Markov Menger (P000072) +"$T_3$" (P000005) AND Has Dispersion Point (P000045) AND NOT 2-Markov Menger (P000072) +"$T_3$" (P000005) AND Has Dispersion Point (P000045) AND Finite (P000078) +"$T_3$" (P000005) AND Has Dispersion Point (P000045) AND NOT homogenous (P000086) +"$T_3$" (P000005) AND Has Dispersion Point (P000045) AND NOT Collectionwise normal (P000088) +"$T_3$" (P000005) AND Has Dispersion Point (P000045) AND Hemicompact (P000111) +"$T_3$" (P000005) AND Has Dispersion Point (P000045) AND NOT Hemicompact (P000111) +"$T_3$" (P000005) AND Has Dispersion Point (P000045) AND NOT Topological manifold (P000124) +"$T_3$" (P000005) AND NOT Has Dispersion Point (P000045) AND Strongly Connected (P000060) +"$T_3$" (P000005) AND Totally Path Disconnected (P000046) AND Strongly Connected (P000060) +"$T_3$" (P000005) AND NOT Totally Path Disconnected (P000046) AND Zero Dimensional (P000050) +"$T_3$" (P000005) AND NOT Totally Path Disconnected (P000046) AND Scattered (P000051) +"$T_3$" (P000005) AND NOT Totally Path Disconnected (P000046) AND Countable (P000057) +"$T_3$" (P000005) AND NOT Totally Path Disconnected (P000046) AND Smaller than the continuum (P000058) +"$T_3$" (P000005) AND NOT Totally Path Disconnected (P000046) AND Strongly Connected (P000060) +"$T_3$" (P000005) AND NOT Totally Path Disconnected (P000046) AND NOT Cozero complemented (P000061) +"$T_3$" (P000005) AND NOT Totally Path Disconnected (P000046) AND NOT Continuum-sized (P000065) +"$T_3$" (P000005) AND NOT Totally Path Disconnected (P000046) AND NOT homogenous (P000086) +"$T_3$" (P000005) AND NOT Totally Disconnected (P000047) AND Zero Dimensional (P000050) +"$T_3$" (P000005) AND NOT Totally Disconnected (P000047) AND Scattered (P000051) +"$T_3$" (P000005) AND NOT Totally Disconnected (P000047) AND Countable (P000057) +"$T_3$" (P000005) AND NOT Totally Disconnected (P000047) AND Smaller than the continuum (P000058) +"$T_3$" (P000005) AND NOT Totally Disconnected (P000047) AND NOT Continuum-sized (P000065) +"$T_3$" (P000005) AND NOT Totally Disconnected (P000047) AND NOT homogenous (P000086) +"$T_3$" (P000005) AND NOT Totally Separated (P000048) AND Zero Dimensional (P000050) +"$T_3$" (P000005) AND NOT Totally Separated (P000048) AND Scattered (P000051) +"$T_3$" (P000005) AND NOT Totally Separated (P000048) AND Countable (P000057) +"$T_3$" (P000005) AND NOT Totally Separated (P000048) AND Smaller than the continuum (P000058) +"$T_3$" (P000005) AND NOT Totally Separated (P000048) AND NOT Continuum-sized (P000065) +"$T_3$" (P000005) AND NOT Totally Separated (P000048) AND NOT homogenous (P000086) +"$T_3$" (P000005) AND Extremally Disconnected (P000049) AND NOT Zero Dimensional (P000050) +"$T_3$" (P000005) AND Extremally Disconnected (P000049) AND NOT Cozero complemented (P000061) +"$T_3$" (P000005) AND Extremally Disconnected (P000049) AND NOT Collectionwise normal (P000088) +"$T_3$" (P000005) AND Zero Dimensional (P000050) AND Strongly Connected (P000060) +"$T_3$" (P000005) AND Zero Dimensional (P000050) AND NOT Cozero complemented (P000061) +"$T_3$" (P000005) AND NOT Zero Dimensional (P000050) AND Countable (P000057) +"$T_3$" (P000005) AND NOT Zero Dimensional (P000050) AND Smaller than the continuum (P000058) +"$T_3$" (P000005) AND NOT Zero Dimensional (P000050) AND Strongly Connected (P000060) +"$T_3$" (P000005) AND NOT Zero Dimensional (P000050) AND NOT Continuum-sized (P000065) +"$T_3$" (P000005) AND Scattered (P000051) AND Strongly Connected (P000060) +"$T_3$" (P000005) AND NOT Scattered (P000051) AND Strongly Connected (P000060) +"$T_3$" (P000005) AND NOT Scattered (P000051) AND NOT Cozero complemented (P000061) +"$T_3$" (P000005) AND "$\\sigma$-Locally Finite Base" (P000054) AND NOT Cozero complemented (P000061) +"$T_3$" (P000005) AND "$\\sigma$-Locally Finite Base" (P000054) AND NOT "$T_6$" (P000067) +"$T_3$" (P000005) AND Non-meager (P000056) AND Strongly Connected (P000060) +"$T_3$" (P000005) AND Non-meager (P000056) AND NOT Cozero complemented (P000061) +"$T_3$" (P000005) AND NOT Non-meager (P000056) AND Strongly Connected (P000060) +"$T_3$" (P000005) AND NOT Non-meager (P000056) AND NOT Cozero complemented (P000061) +"$T_3$" (P000005) AND NOT Non-meager (P000056) AND NOT "$T_6$" (P000067) +"$T_3$" (P000005) AND NOT Non-meager (P000056) AND NOT Collectionwise normal (P000088) +"$T_3$" (P000005) AND NOT Non-meager (P000056) AND Hemicompact (P000111) +"$T_3$" (P000005) AND Countable (P000057) AND NOT "$T_6$" (P000067) +"$T_3$" (P000005) AND Countable (P000057) AND NOT Corson compact (P000077) +"$T_3$" (P000005) AND Countable (P000057) AND NOT Fréchet Urysohn (P000080) +"$T_3$" (P000005) AND Countable (P000057) AND NOT Eberlein compact (P000091) +"$T_3$" (P000005) AND Smaller than the continuum (P000058) AND Strongly Connected (P000060) +"$T_3$" (P000005) AND Smaller than the continuum (P000058) AND NOT Cozero complemented (P000061) +"$T_3$" (P000005) AND Smaller than the continuum (P000058) AND NOT "$T_6$" (P000067) +"$T_3$" (P000005) AND Smaller than the continuum (P000058) AND NOT Corson compact (P000077) +"$T_3$" (P000005) AND Smaller than the continuum (P000058) AND NOT Fréchet Urysohn (P000080) +"$T_3$" (P000005) AND Smaller than the continuum (P000058) AND NOT Collectionwise normal (P000088) +"$T_3$" (P000005) AND Smaller than the continuum (P000058) AND NOT Eberlein compact (P000091) +"$T_3$" (P000005) AND NOT Smaller than the continuum (P000058) AND Strongly Connected (P000060) +"$T_3$" (P000005) AND NOT Smaller than the continuum (P000058) AND NOT Cozero complemented (P000061) +"$T_3$" (P000005) AND Strongly Connected (P000060) AND Weakly Lindelof (P000062) +"$T_3$" (P000005) AND Strongly Connected (P000060) AND NOT Baire (P000064) +"$T_3$" (P000005) AND Strongly Connected (P000060) AND NOT Continuum-sized (P000065) +"$T_3$" (P000005) AND Strongly Connected (P000060) AND sequential (P000079) +"$T_3$" (P000005) AND Strongly Connected (P000060) AND Fréchet Urysohn (P000080) +"$T_3$" (P000005) AND Strongly Connected (P000060) AND Countably tight (P000081) +"$T_3$" (P000005) AND Strongly Connected (P000060) AND NOT homogenous (P000086) +"$T_3$" (P000005) AND NOT Cozero complemented (P000061) AND Weakly Lindelof (P000062) +"$T_3$" (P000005) AND NOT Cozero complemented (P000061) AND NOT Baire (P000064) +"$T_3$" (P000005) AND NOT Cozero complemented (P000061) AND NOT Continuum-sized (P000065) +"$T_3$" (P000005) AND NOT Cozero complemented (P000061) AND Menger (P000066) +"$T_3$" (P000005) AND NOT Cozero complemented (P000061) AND Strategic Menger (P000069) +"$T_3$" (P000005) AND NOT Cozero complemented (P000061) AND Markov Menger (P000070) +"$T_3$" (P000005) AND NOT Cozero complemented (P000061) AND "$\\sigma$-relatively-compact" (P000071) +"$T_3$" (P000005) AND NOT Cozero complemented (P000061) AND 2-Markov Menger (P000072) +"$T_3$" (P000005) AND NOT Cozero complemented (P000061) AND sequential (P000079) +"$T_3$" (P000005) AND NOT Cozero complemented (P000061) AND Fréchet Urysohn (P000080) +"$T_3$" (P000005) AND NOT Cozero complemented (P000061) AND Countably tight (P000081) +"$T_3$" (P000005) AND NOT Cozero complemented (P000061) AND Strongly KC (P000103) +"$T_3$" (P000005) AND NOT Cozero complemented (P000061) AND Hemicompact (P000111) +"$T_3$" (P000005) AND NOT Baire (P000064) AND NOT "$T_6$" (P000067) +"$T_3$" (P000005) AND NOT Baire (P000064) AND NOT Collectionwise normal (P000088) +"$T_3$" (P000005) AND NOT Baire (P000064) AND Hemicompact (P000111) +"$T_3$" (P000005) AND NOT Continuum-sized (P000065) AND NOT "$T_6$" (P000067) +"$T_3$" (P000005) AND NOT Continuum-sized (P000065) AND NOT Corson compact (P000077) +"$T_3$" (P000005) AND NOT Continuum-sized (P000065) AND NOT Fréchet Urysohn (P000080) +"$T_3$" (P000005) AND NOT Continuum-sized (P000065) AND NOT Collectionwise normal (P000088) +"$T_3$" (P000005) AND NOT Continuum-sized (P000065) AND NOT Eberlein compact (P000091) +"$T_3$" (P000005) AND NOT "$T_6$" (P000067) AND Finite (P000078) +"$T_3$" (P000005) AND NOT Corson compact (P000077) AND Countably tight (P000081) +"$T_3$" (P000005) AND Finite (P000078) AND NOT Topological manifold (P000124) +"$T_3$" (P000005) AND NOT Fréchet Urysohn (P000080) AND Countably tight (P000081) +"$T_3$" (P000005) AND Countably tight (P000081) AND NOT Eberlein compact (P000091) +NOT "$T_3$" (P000005) AND Completely Hausdorff (P000009) AND Biconnected (P000044) +NOT "$T_3$" (P000005) AND Completely Hausdorff (P000009) AND Has Dispersion Point (P000045) +NOT "$T_3$" (P000005) AND Completely Hausdorff (P000009) AND Hemicompact (P000111) +NOT "$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND NOT Lindelof (P000018) +NOT "$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND NOT Menger (P000066) +NOT "$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND NOT Rothberger (P000068) +NOT "$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND NOT Strategic Menger (P000069) +NOT "$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND NOT Markov Menger (P000070) +NOT "$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_3$" (P000005) AND NOT Completely Hausdorff (P000009) AND NOT 2-Markov Menger (P000072) +NOT "$T_3$" (P000005) AND Semiregular (P000010) AND Biconnected (P000044) +NOT "$T_3$" (P000005) AND Semiregular (P000010) AND Has Dispersion Point (P000045) +NOT "$T_3$" (P000005) AND Semiregular (P000010) AND Totally Separated (P000048) +NOT "$T_3$" (P000005) AND Semiregular (P000010) AND Extremally Disconnected (P000049) +NOT "$T_3$" (P000005) AND Semiregular (P000010) AND Scattered (P000051) +NOT "$T_3$" (P000005) AND Semiregular (P000010) AND Finite (P000078) +NOT "$T_3$" (P000005) AND Semiregular (P000010) AND NOT homogenous (P000086) +NOT "$T_3$" (P000005) AND Regular (P000011) AND NOT Completely regular (P000012) +NOT "$T_3$" (P000005) AND Regular (P000011) AND NOT Normal (P000013) +NOT "$T_3$" (P000005) AND Regular (P000011) AND NOT Completely normal (P000014) +NOT "$T_3$" (P000005) AND Regular (P000011) AND NOT "$\\sigma$-compact" (P000017) +NOT "$T_3$" (P000005) AND Regular (P000011) AND NOT Lindelof (P000018) +NOT "$T_3$" (P000005) AND Regular (P000011) AND NOT Weakly Countably Compact (P000021) +NOT "$T_3$" (P000005) AND Regular (P000011) AND NOT Locally Compact (P000023) +NOT "$T_3$" (P000005) AND Regular (P000011) AND NOT Strongly Locally Compact (P000024) +NOT "$T_3$" (P000005) AND Regular (P000011) AND NOT "$\\sigma$-Locally Compact" (P000025) +NOT "$T_3$" (P000005) AND Regular (P000011) AND NOT Separable (P000026) +NOT "$T_3$" (P000005) AND Regular (P000011) AND NOT Second Countable (P000027) +NOT "$T_3$" (P000005) AND Regular (P000011) AND NOT First Countable (P000028) +NOT "$T_3$" (P000005) AND Regular (P000011) AND NOT Countable chain condition (P000029) +NOT "$T_3$" (P000005) AND Regular (P000011) AND NOT Paracompact (P000030) +NOT "$T_3$" (P000005) AND Regular (P000011) AND NOT Metacompact (P000031) +NOT "$T_3$" (P000005) AND Regular (P000011) AND NOT Countably paracompact (P000032) +NOT "$T_3$" (P000005) AND Regular (P000011) AND NOT Fully normal (P000034) +NOT "$T_3$" (P000005) AND Regular (P000011) AND NOT Connected (P000036) +NOT "$T_3$" (P000005) AND Regular (P000011) AND NOT Path Connected (P000037) +NOT "$T_3$" (P000005) AND Regular (P000011) AND NOT Locally Connected (P000041) +NOT "$T_3$" (P000005) AND Regular (P000011) AND NOT Locally Path Connected (P000042) +NOT "$T_3$" (P000005) AND Regular (P000011) AND Biconnected (P000044) +NOT "$T_3$" (P000005) AND Regular (P000011) AND Has Dispersion Point (P000045) +NOT "$T_3$" (P000005) AND Regular (P000011) AND Totally Path Disconnected (P000046) +NOT "$T_3$" (P000005) AND Regular (P000011) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_3$" (P000005) AND Regular (P000011) AND NOT Menger (P000066) +NOT "$T_3$" (P000005) AND Regular (P000011) AND NOT Rothberger (P000068) +NOT "$T_3$" (P000005) AND Regular (P000011) AND NOT Strategic Menger (P000069) +NOT "$T_3$" (P000005) AND Regular (P000011) AND NOT Markov Menger (P000070) +NOT "$T_3$" (P000005) AND Regular (P000011) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_3$" (P000005) AND Regular (P000011) AND NOT 2-Markov Menger (P000072) +NOT "$T_3$" (P000005) AND Regular (P000011) AND Finite (P000078) +NOT "$T_3$" (P000005) AND Regular (P000011) AND NOT homogenous (P000086) +NOT "$T_3$" (P000005) AND Regular (P000011) AND NOT Collectionwise normal (P000088) +NOT "$T_3$" (P000005) AND Regular (P000011) AND NOT Anti-Hausdorff (P000101) +NOT "$T_3$" (P000005) AND Regular (P000011) AND NOT Hemicompact (P000111) +NOT "$T_3$" (P000005) AND Completely regular (P000012) AND NOT Normal (P000013) +NOT "$T_3$" (P000005) AND Completely regular (P000012) AND NOT Completely normal (P000014) +NOT "$T_3$" (P000005) AND Completely regular (P000012) AND NOT "$\\sigma$-compact" (P000017) +NOT "$T_3$" (P000005) AND Completely regular (P000012) AND NOT Lindelof (P000018) +NOT "$T_3$" (P000005) AND Completely regular (P000012) AND NOT Weakly Countably Compact (P000021) +NOT "$T_3$" (P000005) AND Completely regular (P000012) AND NOT Locally Compact (P000023) +NOT "$T_3$" (P000005) AND Completely regular (P000012) AND NOT Strongly Locally Compact (P000024) +NOT "$T_3$" (P000005) AND Completely regular (P000012) AND NOT "$\\sigma$-Locally Compact" (P000025) +NOT "$T_3$" (P000005) AND Completely regular (P000012) AND NOT Separable (P000026) +NOT "$T_3$" (P000005) AND Completely regular (P000012) AND NOT Second Countable (P000027) +NOT "$T_3$" (P000005) AND Completely regular (P000012) AND NOT First Countable (P000028) +NOT "$T_3$" (P000005) AND Completely regular (P000012) AND NOT Countable chain condition (P000029) +NOT "$T_3$" (P000005) AND Completely regular (P000012) AND NOT Paracompact (P000030) +NOT "$T_3$" (P000005) AND Completely regular (P000012) AND NOT Metacompact (P000031) +NOT "$T_3$" (P000005) AND Completely regular (P000012) AND NOT Countably paracompact (P000032) +NOT "$T_3$" (P000005) AND Completely regular (P000012) AND NOT Fully normal (P000034) +NOT "$T_3$" (P000005) AND Completely regular (P000012) AND NOT Connected (P000036) +NOT "$T_3$" (P000005) AND Completely regular (P000012) AND NOT Path Connected (P000037) +NOT "$T_3$" (P000005) AND Completely regular (P000012) AND NOT Locally Connected (P000041) +NOT "$T_3$" (P000005) AND Completely regular (P000012) AND NOT Locally Path Connected (P000042) +NOT "$T_3$" (P000005) AND Completely regular (P000012) AND Biconnected (P000044) +NOT "$T_3$" (P000005) AND Completely regular (P000012) AND Has Dispersion Point (P000045) +NOT "$T_3$" (P000005) AND Completely regular (P000012) AND Totally Path Disconnected (P000046) +NOT "$T_3$" (P000005) AND Completely regular (P000012) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_3$" (P000005) AND Completely regular (P000012) AND NOT Menger (P000066) +NOT "$T_3$" (P000005) AND Completely regular (P000012) AND NOT Rothberger (P000068) +NOT "$T_3$" (P000005) AND Completely regular (P000012) AND NOT Strategic Menger (P000069) +NOT "$T_3$" (P000005) AND Completely regular (P000012) AND NOT Markov Menger (P000070) +NOT "$T_3$" (P000005) AND Completely regular (P000012) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_3$" (P000005) AND Completely regular (P000012) AND NOT 2-Markov Menger (P000072) +NOT "$T_3$" (P000005) AND Completely regular (P000012) AND Finite (P000078) +NOT "$T_3$" (P000005) AND Completely regular (P000012) AND NOT homogenous (P000086) +NOT "$T_3$" (P000005) AND Completely regular (P000012) AND NOT Collectionwise normal (P000088) +NOT "$T_3$" (P000005) AND Completely regular (P000012) AND NOT Anti-Hausdorff (P000101) +NOT "$T_3$" (P000005) AND Completely regular (P000012) AND NOT Hemicompact (P000111) +NOT "$T_3$" (P000005) AND Normal (P000013) AND NOT "$\\sigma$-compact" (P000017) +NOT "$T_3$" (P000005) AND Normal (P000013) AND NOT Lindelof (P000018) +NOT "$T_3$" (P000005) AND Normal (P000013) AND NOT Locally Compact (P000023) +NOT "$T_3$" (P000005) AND Normal (P000013) AND NOT "$\\sigma$-Locally Compact" (P000025) +NOT "$T_3$" (P000005) AND Normal (P000013) AND NOT First Countable (P000028) +NOT "$T_3$" (P000005) AND Normal (P000013) AND Totally Path Disconnected (P000046) +NOT "$T_3$" (P000005) AND Normal (P000013) AND NOT Menger (P000066) +NOT "$T_3$" (P000005) AND Normal (P000013) AND NOT Rothberger (P000068) +NOT "$T_3$" (P000005) AND Normal (P000013) AND NOT Strategic Menger (P000069) +NOT "$T_3$" (P000005) AND Normal (P000013) AND NOT Markov Menger (P000070) +NOT "$T_3$" (P000005) AND Normal (P000013) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_3$" (P000005) AND Normal (P000013) AND NOT 2-Markov Menger (P000072) +NOT "$T_3$" (P000005) AND Normal (P000013) AND Sober (P000073) +NOT "$T_3$" (P000005) AND Normal (P000013) AND NOT Anti-Hausdorff (P000101) +NOT "$T_3$" (P000005) AND Normal (P000013) AND NOT Hemicompact (P000111) +NOT "$T_3$" (P000005) AND NOT Normal (P000013) AND Zero Dimensional (P000050) +NOT "$T_3$" (P000005) AND Completely normal (P000014) AND NOT "$\\sigma$-compact" (P000017) +NOT "$T_3$" (P000005) AND Completely normal (P000014) AND NOT Lindelof (P000018) +NOT "$T_3$" (P000005) AND Completely normal (P000014) AND NOT Locally Compact (P000023) +NOT "$T_3$" (P000005) AND Completely normal (P000014) AND NOT "$\\sigma$-Locally Compact" (P000025) +NOT "$T_3$" (P000005) AND Completely normal (P000014) AND NOT First Countable (P000028) +NOT "$T_3$" (P000005) AND Completely normal (P000014) AND Totally Path Disconnected (P000046) +NOT "$T_3$" (P000005) AND Completely normal (P000014) AND NOT Menger (P000066) +NOT "$T_3$" (P000005) AND Completely normal (P000014) AND NOT Rothberger (P000068) +NOT "$T_3$" (P000005) AND Completely normal (P000014) AND NOT Strategic Menger (P000069) +NOT "$T_3$" (P000005) AND Completely normal (P000014) AND NOT Markov Menger (P000070) +NOT "$T_3$" (P000005) AND Completely normal (P000014) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_3$" (P000005) AND Completely normal (P000014) AND NOT 2-Markov Menger (P000072) +NOT "$T_3$" (P000005) AND Completely normal (P000014) AND Sober (P000073) +NOT "$T_3$" (P000005) AND Completely normal (P000014) AND NOT Anti-Hausdorff (P000101) +NOT "$T_3$" (P000005) AND Completely normal (P000014) AND NOT Hemicompact (P000111) +NOT "$T_3$" (P000005) AND NOT Completely normal (P000014) AND Fully normal (P000034) +NOT "$T_3$" (P000005) AND NOT Completely normal (P000014) AND Zero Dimensional (P000050) +NOT "$T_3$" (P000005) AND Compact (P000016) AND NOT Sequentially Compact (P000020) +NOT "$T_3$" (P000005) AND Compact (P000016) AND Sober (P000073) +NOT "$T_3$" (P000005) AND Compact (P000016) AND locally Hausdorff (P000084) +NOT "$T_3$" (P000005) AND Compact (P000016) AND Sequentially Hausdorff (P000099) +NOT "$T_3$" (P000005) AND Compact (P000016) AND KC (P000100) +NOT "$T_3$" (P000005) AND Compact (P000016) AND NOT Anti-Hausdorff (P000101) +NOT "$T_3$" (P000005) AND Compact (P000016) AND Strongly KC (P000103) +NOT "$T_3$" (P000005) AND "$\\sigma$-compact" (P000017) AND Extremally Disconnected (P000049) +NOT "$T_3$" (P000005) AND NOT "$\\sigma$-compact" (P000017) AND Locally Compact (P000023) +NOT "$T_3$" (P000005) AND NOT "$\\sigma$-compact" (P000017) AND Strongly Locally Compact (P000024) +NOT "$T_3$" (P000005) AND NOT "$\\sigma$-compact" (P000017) AND Paracompact (P000030) +NOT "$T_3$" (P000005) AND NOT "$\\sigma$-compact" (P000017) AND Fully normal (P000034) +NOT "$T_3$" (P000005) AND NOT "$\\sigma$-compact" (P000017) AND Biconnected (P000044) +NOT "$T_3$" (P000005) AND NOT "$\\sigma$-compact" (P000017) AND Has Dispersion Point (P000045) +NOT "$T_3$" (P000005) AND NOT "$\\sigma$-compact" (P000017) AND Zero Dimensional (P000050) +NOT "$T_3$" (P000005) AND NOT "$\\sigma$-compact" (P000017) AND NOT Continuum-sized (P000065) +NOT "$T_3$" (P000005) AND NOT "$\\sigma$-compact" (P000017) AND Menger (P000066) +NOT "$T_3$" (P000005) AND Lindelof (P000018) AND Extremally Disconnected (P000049) +NOT "$T_3$" (P000005) AND Lindelof (P000018) AND NOT Strategic Menger (P000069) +NOT "$T_3$" (P000005) AND Lindelof (P000018) AND NOT Markov Menger (P000070) +NOT "$T_3$" (P000005) AND Lindelof (P000018) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_3$" (P000005) AND Lindelof (P000018) AND NOT 2-Markov Menger (P000072) +NOT "$T_3$" (P000005) AND NOT Lindelof (P000018) AND Locally Compact (P000023) +NOT "$T_3$" (P000005) AND NOT Lindelof (P000018) AND Strongly Locally Compact (P000024) +NOT "$T_3$" (P000005) AND NOT Lindelof (P000018) AND Paracompact (P000030) +NOT "$T_3$" (P000005) AND NOT Lindelof (P000018) AND Metacompact (P000031) +NOT "$T_3$" (P000005) AND NOT Lindelof (P000018) AND Fully normal (P000034) +NOT "$T_3$" (P000005) AND NOT Lindelof (P000018) AND Hyperconnected (P000039) +NOT "$T_3$" (P000005) AND NOT Lindelof (P000018) AND Biconnected (P000044) +NOT "$T_3$" (P000005) AND NOT Lindelof (P000018) AND Has Dispersion Point (P000045) +NOT "$T_3$" (P000005) AND NOT Lindelof (P000018) AND Zero Dimensional (P000050) +NOT "$T_3$" (P000005) AND NOT Lindelof (P000018) AND "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_3$" (P000005) AND NOT Lindelof (P000018) AND Strongly Connected (P000060) +NOT "$T_3$" (P000005) AND NOT Lindelof (P000018) AND NOT Continuum-sized (P000065) +NOT "$T_3$" (P000005) AND NOT Lindelof (P000018) AND NOT locally Hausdorff (P000084) +NOT "$T_3$" (P000005) AND NOT Lindelof (P000018) AND NOT Sequentially Hausdorff (P000099) +NOT "$T_3$" (P000005) AND NOT Lindelof (P000018) AND NOT KC (P000100) +NOT "$T_3$" (P000005) AND NOT Lindelof (P000018) AND NOT Strongly KC (P000103) +NOT "$T_3$" (P000005) AND Countably compact (P000019) AND NOT Sequentially Compact (P000020) +NOT "$T_3$" (P000005) AND Countably compact (P000019) AND Totally Separated (P000048) +NOT "$T_3$" (P000005) AND Countably compact (P000019) AND Extremally Disconnected (P000049) +NOT "$T_3$" (P000005) AND Countably compact (P000019) AND Strongly KC (P000103) +NOT "$T_3$" (P000005) AND Sequentially Compact (P000020) AND Totally Separated (P000048) +NOT "$T_3$" (P000005) AND Sequentially Compact (P000020) AND Extremally Disconnected (P000049) +NOT "$T_3$" (P000005) AND Sequentially Compact (P000020) AND Strongly KC (P000103) +NOT "$T_3$" (P000005) AND Weakly Countably Compact (P000021) AND Totally Separated (P000048) +NOT "$T_3$" (P000005) AND Weakly Countably Compact (P000021) AND Extremally Disconnected (P000049) +NOT "$T_3$" (P000005) AND Weakly Countably Compact (P000021) AND Strongly KC (P000103) +NOT "$T_3$" (P000005) AND NOT Weakly Countably Compact (P000021) AND Zero Dimensional (P000050) +NOT "$T_3$" (P000005) AND NOT Pseudocompact (P000022) AND NOT Separable (P000026) +NOT "$T_3$" (P000005) AND NOT Pseudocompact (P000022) AND NOT First Countable (P000028) +NOT "$T_3$" (P000005) AND NOT Pseudocompact (P000022) AND NOT Countable chain condition (P000029) +NOT "$T_3$" (P000005) AND NOT Pseudocompact (P000022) AND Biconnected (P000044) +NOT "$T_3$" (P000005) AND NOT Pseudocompact (P000022) AND Has Dispersion Point (P000045) +NOT "$T_3$" (P000005) AND NOT Pseudocompact (P000022) AND Extremally Disconnected (P000049) +NOT "$T_3$" (P000005) AND NOT Pseudocompact (P000022) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_3$" (P000005) AND Locally Compact (P000023) AND NOT "$\\sigma$-Locally Compact" (P000025) +NOT "$T_3$" (P000005) AND Locally Compact (P000023) AND NOT Menger (P000066) +NOT "$T_3$" (P000005) AND Locally Compact (P000023) AND NOT Rothberger (P000068) +NOT "$T_3$" (P000005) AND Locally Compact (P000023) AND NOT Strategic Menger (P000069) +NOT "$T_3$" (P000005) AND Locally Compact (P000023) AND NOT Markov Menger (P000070) +NOT "$T_3$" (P000005) AND Locally Compact (P000023) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_3$" (P000005) AND Locally Compact (P000023) AND NOT 2-Markov Menger (P000072) +NOT "$T_3$" (P000005) AND Locally Compact (P000023) AND Sober (P000073) +NOT "$T_3$" (P000005) AND Locally Compact (P000023) AND locally Hausdorff (P000084) +NOT "$T_3$" (P000005) AND Locally Compact (P000023) AND Sequentially Hausdorff (P000099) +NOT "$T_3$" (P000005) AND Locally Compact (P000023) AND KC (P000100) +NOT "$T_3$" (P000005) AND Locally Compact (P000023) AND NOT Anti-Hausdorff (P000101) +NOT "$T_3$" (P000005) AND Locally Compact (P000023) AND Strongly KC (P000103) +NOT "$T_3$" (P000005) AND Locally Compact (P000023) AND NOT Hemicompact (P000111) +NOT "$T_3$" (P000005) AND NOT Locally Compact (P000023) AND Paracompact (P000030) +NOT "$T_3$" (P000005) AND NOT Locally Compact (P000023) AND Fully normal (P000034) +NOT "$T_3$" (P000005) AND NOT Locally Compact (P000023) AND Zero Dimensional (P000050) +NOT "$T_3$" (P000005) AND Strongly Locally Compact (P000024) AND NOT "$\\sigma$-Locally Compact" (P000025) +NOT "$T_3$" (P000005) AND Strongly Locally Compact (P000024) AND NOT Paracompact (P000030) +NOT "$T_3$" (P000005) AND Strongly Locally Compact (P000024) AND NOT Metacompact (P000031) +NOT "$T_3$" (P000005) AND Strongly Locally Compact (P000024) AND NOT Countably paracompact (P000032) +NOT "$T_3$" (P000005) AND Strongly Locally Compact (P000024) AND NOT Menger (P000066) +NOT "$T_3$" (P000005) AND Strongly Locally Compact (P000024) AND NOT Rothberger (P000068) +NOT "$T_3$" (P000005) AND Strongly Locally Compact (P000024) AND NOT Strategic Menger (P000069) +NOT "$T_3$" (P000005) AND Strongly Locally Compact (P000024) AND NOT Markov Menger (P000070) +NOT "$T_3$" (P000005) AND Strongly Locally Compact (P000024) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_3$" (P000005) AND Strongly Locally Compact (P000024) AND NOT 2-Markov Menger (P000072) +NOT "$T_3$" (P000005) AND Strongly Locally Compact (P000024) AND Sober (P000073) +NOT "$T_3$" (P000005) AND Strongly Locally Compact (P000024) AND locally Hausdorff (P000084) +NOT "$T_3$" (P000005) AND Strongly Locally Compact (P000024) AND Sequentially Hausdorff (P000099) +NOT "$T_3$" (P000005) AND Strongly Locally Compact (P000024) AND KC (P000100) +NOT "$T_3$" (P000005) AND Strongly Locally Compact (P000024) AND NOT Anti-Hausdorff (P000101) +NOT "$T_3$" (P000005) AND Strongly Locally Compact (P000024) AND Strongly KC (P000103) +NOT "$T_3$" (P000005) AND Strongly Locally Compact (P000024) AND NOT Hemicompact (P000111) +NOT "$T_3$" (P000005) AND NOT Strongly Locally Compact (P000024) AND Paracompact (P000030) +NOT "$T_3$" (P000005) AND NOT Strongly Locally Compact (P000024) AND Fully normal (P000034) +NOT "$T_3$" (P000005) AND NOT Strongly Locally Compact (P000024) AND Zero Dimensional (P000050) +NOT "$T_3$" (P000005) AND "$\\sigma$-Locally Compact" (P000025) AND Sober (P000073) +NOT "$T_3$" (P000005) AND "$\\sigma$-Locally Compact" (P000025) AND locally Hausdorff (P000084) +NOT "$T_3$" (P000005) AND "$\\sigma$-Locally Compact" (P000025) AND Sequentially Hausdorff (P000099) +NOT "$T_3$" (P000005) AND "$\\sigma$-Locally Compact" (P000025) AND KC (P000100) +NOT "$T_3$" (P000005) AND "$\\sigma$-Locally Compact" (P000025) AND NOT Anti-Hausdorff (P000101) +NOT "$T_3$" (P000005) AND "$\\sigma$-Locally Compact" (P000025) AND Strongly KC (P000103) +NOT "$T_3$" (P000005) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Paracompact (P000030) +NOT "$T_3$" (P000005) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Fully normal (P000034) +NOT "$T_3$" (P000005) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Zero Dimensional (P000050) +NOT "$T_3$" (P000005) AND NOT Separable (P000026) AND Arc connected (P000038) +NOT "$T_3$" (P000005) AND NOT Separable (P000026) AND Locally Arc Connected (P000043) +NOT "$T_3$" (P000005) AND NOT Separable (P000026) AND Totally Separated (P000048) +NOT "$T_3$" (P000005) AND NOT Separable (P000026) AND Extremally Disconnected (P000049) +NOT "$T_3$" (P000005) AND NOT Separable (P000026) AND Zero Dimensional (P000050) +NOT "$T_3$" (P000005) AND NOT Separable (P000026) AND "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_3$" (P000005) AND NOT Separable (P000026) AND NOT Continuum-sized (P000065) +NOT "$T_3$" (P000005) AND NOT Separable (P000026) AND Strongly KC (P000103) +NOT "$T_3$" (P000005) AND Second Countable (P000027) AND Extremally Disconnected (P000049) +NOT "$T_3$" (P000005) AND Second Countable (P000027) AND NOT Strategic Menger (P000069) +NOT "$T_3$" (P000005) AND Second Countable (P000027) AND NOT Markov Menger (P000070) +NOT "$T_3$" (P000005) AND Second Countable (P000027) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_3$" (P000005) AND Second Countable (P000027) AND NOT 2-Markov Menger (P000072) +NOT "$T_3$" (P000005) AND NOT Second Countable (P000027) AND Zero Dimensional (P000050) +NOT "$T_3$" (P000005) AND NOT Second Countable (P000027) AND "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_3$" (P000005) AND First Countable (P000028) AND Extremally Disconnected (P000049) +NOT "$T_3$" (P000005) AND NOT First Countable (P000028) AND Fully normal (P000034) +NOT "$T_3$" (P000005) AND NOT First Countable (P000028) AND Zero Dimensional (P000050) +NOT "$T_3$" (P000005) AND NOT First Countable (P000028) AND sequential (P000079) +NOT "$T_3$" (P000005) AND NOT First Countable (P000028) AND Fréchet Urysohn (P000080) +NOT "$T_3$" (P000005) AND NOT First Countable (P000028) AND Strongly KC (P000103) +NOT "$T_3$" (P000005) AND NOT Countable chain condition (P000029) AND NOT Countably paracompact (P000032) +NOT "$T_3$" (P000005) AND NOT Countable chain condition (P000029) AND Arc connected (P000038) +NOT "$T_3$" (P000005) AND NOT Countable chain condition (P000029) AND Locally Arc Connected (P000043) +NOT "$T_3$" (P000005) AND NOT Countable chain condition (P000029) AND Totally Separated (P000048) +NOT "$T_3$" (P000005) AND NOT Countable chain condition (P000029) AND Extremally Disconnected (P000049) +NOT "$T_3$" (P000005) AND NOT Countable chain condition (P000029) AND Zero Dimensional (P000050) +NOT "$T_3$" (P000005) AND NOT Countable chain condition (P000029) AND "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_3$" (P000005) AND NOT Countable chain condition (P000029) AND Strongly KC (P000103) +NOT "$T_3$" (P000005) AND Paracompact (P000030) AND NOT Menger (P000066) +NOT "$T_3$" (P000005) AND Paracompact (P000030) AND NOT Rothberger (P000068) +NOT "$T_3$" (P000005) AND Paracompact (P000030) AND NOT Strategic Menger (P000069) +NOT "$T_3$" (P000005) AND Paracompact (P000030) AND NOT Markov Menger (P000070) +NOT "$T_3$" (P000005) AND Paracompact (P000030) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_3$" (P000005) AND Paracompact (P000030) AND NOT 2-Markov Menger (P000072) +NOT "$T_3$" (P000005) AND Paracompact (P000030) AND Sober (P000073) +NOT "$T_3$" (P000005) AND Paracompact (P000030) AND locally Hausdorff (P000084) +NOT "$T_3$" (P000005) AND Paracompact (P000030) AND Sequentially Hausdorff (P000099) +NOT "$T_3$" (P000005) AND Paracompact (P000030) AND KC (P000100) +NOT "$T_3$" (P000005) AND Paracompact (P000030) AND NOT Anti-Hausdorff (P000101) +NOT "$T_3$" (P000005) AND Paracompact (P000030) AND Strongly KC (P000103) +NOT "$T_3$" (P000005) AND Paracompact (P000030) AND NOT Hemicompact (P000111) +NOT "$T_3$" (P000005) AND NOT Paracompact (P000030) AND Zero Dimensional (P000050) +NOT "$T_3$" (P000005) AND Metacompact (P000031) AND Extremally Disconnected (P000049) +NOT "$T_3$" (P000005) AND Metacompact (P000031) AND NOT Menger (P000066) +NOT "$T_3$" (P000005) AND Metacompact (P000031) AND NOT Rothberger (P000068) +NOT "$T_3$" (P000005) AND Metacompact (P000031) AND NOT Strategic Menger (P000069) +NOT "$T_3$" (P000005) AND Metacompact (P000031) AND NOT Markov Menger (P000070) +NOT "$T_3$" (P000005) AND Metacompact (P000031) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_3$" (P000005) AND Metacompact (P000031) AND NOT 2-Markov Menger (P000072) +NOT "$T_3$" (P000005) AND NOT Metacompact (P000031) AND Zero Dimensional (P000050) +NOT "$T_3$" (P000005) AND Countably paracompact (P000032) AND Totally Separated (P000048) +NOT "$T_3$" (P000005) AND Countably paracompact (P000032) AND Extremally Disconnected (P000049) +NOT "$T_3$" (P000005) AND Countably paracompact (P000032) AND Strongly KC (P000103) +NOT "$T_3$" (P000005) AND NOT Countably paracompact (P000032) AND Zero Dimensional (P000050) +NOT "$T_3$" (P000005) AND Countably metacompact (P000033) AND Extremally Disconnected (P000049) +NOT "$T_3$" (P000005) AND Fully normal (P000034) AND NOT Locally Connected (P000041) +NOT "$T_3$" (P000005) AND Fully normal (P000034) AND NOT Locally Path Connected (P000042) +NOT "$T_3$" (P000005) AND Fully normal (P000034) AND Totally Path Disconnected (P000046) +NOT "$T_3$" (P000005) AND Fully normal (P000034) AND NOT Menger (P000066) +NOT "$T_3$" (P000005) AND Fully normal (P000034) AND NOT Rothberger (P000068) +NOT "$T_3$" (P000005) AND Fully normal (P000034) AND NOT Strategic Menger (P000069) +NOT "$T_3$" (P000005) AND Fully normal (P000034) AND NOT Markov Menger (P000070) +NOT "$T_3$" (P000005) AND Fully normal (P000034) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_3$" (P000005) AND Fully normal (P000034) AND NOT 2-Markov Menger (P000072) +NOT "$T_3$" (P000005) AND Fully normal (P000034) AND Sober (P000073) +NOT "$T_3$" (P000005) AND Fully normal (P000034) AND NOT Anti-Hausdorff (P000101) +NOT "$T_3$" (P000005) AND Fully normal (P000034) AND NOT Hemicompact (P000111) +NOT "$T_3$" (P000005) AND NOT Fully normal (P000034) AND Zero Dimensional (P000050) +NOT "$T_3$" (P000005) AND NOT Connected (P000036) AND Locally Arc Connected (P000043) +NOT "$T_3$" (P000005) AND NOT Connected (P000036) AND Zero Dimensional (P000050) +NOT "$T_3$" (P000005) AND NOT Connected (P000036) AND Finite (P000078) +NOT "$T_3$" (P000005) AND NOT Path Connected (P000037) AND Locally Arc Connected (P000043) +NOT "$T_3$" (P000005) AND NOT Path Connected (P000037) AND Zero Dimensional (P000050) +NOT "$T_3$" (P000005) AND NOT Path Connected (P000037) AND Finite (P000078) +NOT "$T_3$" (P000005) AND Arc connected (P000038) AND NOT Locally Connected (P000041) +NOT "$T_3$" (P000005) AND Arc connected (P000038) AND NOT Locally Path Connected (P000042) +NOT "$T_3$" (P000005) AND Arc connected (P000038) AND NOT Locally Arc Connected (P000043) +NOT "$T_3$" (P000005) AND NOT Arc connected (P000038) AND Locally Arc Connected (P000043) +NOT "$T_3$" (P000005) AND Hyperconnected (P000039) AND NOT Menger (P000066) +NOT "$T_3$" (P000005) AND Hyperconnected (P000039) AND NOT Rothberger (P000068) +NOT "$T_3$" (P000005) AND Hyperconnected (P000039) AND NOT Strategic Menger (P000069) +NOT "$T_3$" (P000005) AND Hyperconnected (P000039) AND NOT Markov Menger (P000070) +NOT "$T_3$" (P000005) AND Hyperconnected (P000039) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_3$" (P000005) AND Hyperconnected (P000039) AND NOT 2-Markov Menger (P000072) +NOT "$T_3$" (P000005) AND NOT Locally Connected (P000041) AND Zero Dimensional (P000050) +NOT "$T_3$" (P000005) AND NOT Locally Path Connected (P000042) AND Zero Dimensional (P000050) +NOT "$T_3$" (P000005) AND Locally Arc Connected (P000043) AND Zero Dimensional (P000050) +NOT "$T_3$" (P000005) AND Locally Arc Connected (P000043) AND Scattered (P000051) +NOT "$T_3$" (P000005) AND Locally Arc Connected (P000043) AND Countable (P000057) +NOT "$T_3$" (P000005) AND Locally Arc Connected (P000043) AND Smaller than the continuum (P000058) +NOT "$T_3$" (P000005) AND Locally Arc Connected (P000043) AND NOT Continuum-sized (P000065) +NOT "$T_3$" (P000005) AND Locally Arc Connected (P000043) AND Finite (P000078) +NOT "$T_3$" (P000005) AND Biconnected (P000044) AND NOT Smaller than the continuum (P000058) +NOT "$T_3$" (P000005) AND Biconnected (P000044) AND NOT Strongly Connected (P000060) +NOT "$T_3$" (P000005) AND Biconnected (P000044) AND NOT Menger (P000066) +NOT "$T_3$" (P000005) AND Biconnected (P000044) AND NOT Rothberger (P000068) +NOT "$T_3$" (P000005) AND Biconnected (P000044) AND NOT Strategic Menger (P000069) +NOT "$T_3$" (P000005) AND Biconnected (P000044) AND NOT Markov Menger (P000070) +NOT "$T_3$" (P000005) AND Biconnected (P000044) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_3$" (P000005) AND Biconnected (P000044) AND NOT 2-Markov Menger (P000072) +NOT "$T_3$" (P000005) AND Biconnected (P000044) AND NOT Hemicompact (P000111) +NOT "$T_3$" (P000005) AND NOT Biconnected (P000044) AND Finite (P000078) +NOT "$T_3$" (P000005) AND Has Dispersion Point (P000045) AND NOT Smaller than the continuum (P000058) +NOT "$T_3$" (P000005) AND Has Dispersion Point (P000045) AND NOT Strongly Connected (P000060) +NOT "$T_3$" (P000005) AND Has Dispersion Point (P000045) AND NOT Menger (P000066) +NOT "$T_3$" (P000005) AND Has Dispersion Point (P000045) AND NOT Rothberger (P000068) +NOT "$T_3$" (P000005) AND Has Dispersion Point (P000045) AND NOT Strategic Menger (P000069) +NOT "$T_3$" (P000005) AND Has Dispersion Point (P000045) AND NOT Markov Menger (P000070) +NOT "$T_3$" (P000005) AND Has Dispersion Point (P000045) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_3$" (P000005) AND Has Dispersion Point (P000045) AND NOT 2-Markov Menger (P000072) +NOT "$T_3$" (P000005) AND Has Dispersion Point (P000045) AND NOT Hemicompact (P000111) +NOT "$T_3$" (P000005) AND NOT Has Dispersion Point (P000045) AND Finite (P000078) +NOT "$T_3$" (P000005) AND Totally Path Disconnected (P000046) AND Zero Dimensional (P000050) +NOT "$T_3$" (P000005) AND Totally Path Disconnected (P000046) AND Finite (P000078) +NOT "$T_3$" (P000005) AND Totally Separated (P000048) AND Hemicompact (P000111) +NOT "$T_3$" (P000005) AND Extremally Disconnected (P000049) AND NOT Scattered (P000051) +NOT "$T_3$" (P000005) AND Extremally Disconnected (P000049) AND "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_3$" (P000005) AND Extremally Disconnected (P000049) AND Non-meager (P000056) +NOT "$T_3$" (P000005) AND Extremally Disconnected (P000049) AND Countable (P000057) +NOT "$T_3$" (P000005) AND Extremally Disconnected (P000049) AND Smaller than the continuum (P000058) +NOT "$T_3$" (P000005) AND Extremally Disconnected (P000049) AND NOT Smaller than the continuum (P000058) +NOT "$T_3$" (P000005) AND Extremally Disconnected (P000049) AND NOT Continuum-sized (P000065) +NOT "$T_3$" (P000005) AND Extremally Disconnected (P000049) AND Menger (P000066) +NOT "$T_3$" (P000005) AND Extremally Disconnected (P000049) AND Strategic Menger (P000069) +NOT "$T_3$" (P000005) AND Extremally Disconnected (P000049) AND Markov Menger (P000070) +NOT "$T_3$" (P000005) AND Extremally Disconnected (P000049) AND "$\\sigma$-relatively-compact" (P000071) +NOT "$T_3$" (P000005) AND Extremally Disconnected (P000049) AND 2-Markov Menger (P000072) +NOT "$T_3$" (P000005) AND Extremally Disconnected (P000049) AND sequential (P000079) +NOT "$T_3$" (P000005) AND Extremally Disconnected (P000049) AND Fréchet Urysohn (P000080) +NOT "$T_3$" (P000005) AND Extremally Disconnected (P000049) AND Countably tight (P000081) +NOT "$T_3$" (P000005) AND Extremally Disconnected (P000049) AND Strongly KC (P000103) +NOT "$T_3$" (P000005) AND Extremally Disconnected (P000049) AND Hemicompact (P000111) +NOT "$T_3$" (P000005) AND Zero Dimensional (P000050) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_3$" (P000005) AND Zero Dimensional (P000050) AND NOT Non-meager (P000056) +NOT "$T_3$" (P000005) AND Zero Dimensional (P000050) AND NOT Countable (P000057) +NOT "$T_3$" (P000005) AND Zero Dimensional (P000050) AND NOT Smaller than the continuum (P000058) +NOT "$T_3$" (P000005) AND Zero Dimensional (P000050) AND NOT Baire (P000064) +NOT "$T_3$" (P000005) AND Zero Dimensional (P000050) AND NOT Menger (P000066) +NOT "$T_3$" (P000005) AND Zero Dimensional (P000050) AND NOT Rothberger (P000068) +NOT "$T_3$" (P000005) AND Zero Dimensional (P000050) AND NOT Strategic Menger (P000069) +NOT "$T_3$" (P000005) AND Zero Dimensional (P000050) AND NOT Markov Menger (P000070) +NOT "$T_3$" (P000005) AND Zero Dimensional (P000050) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_3$" (P000005) AND Zero Dimensional (P000050) AND NOT 2-Markov Menger (P000072) +NOT "$T_3$" (P000005) AND Zero Dimensional (P000050) AND Finite (P000078) +NOT "$T_3$" (P000005) AND Zero Dimensional (P000050) AND NOT homogenous (P000086) +NOT "$T_3$" (P000005) AND Zero Dimensional (P000050) AND NOT Collectionwise normal (P000088) +NOT "$T_3$" (P000005) AND Zero Dimensional (P000050) AND NOT Anti-Hausdorff (P000101) +NOT "$T_3$" (P000005) AND Zero Dimensional (P000050) AND NOT Hemicompact (P000111) +NOT "$T_3$" (P000005) AND "$\\sigma$-Locally Finite Base" (P000054) AND NOT Menger (P000066) +NOT "$T_3$" (P000005) AND "$\\sigma$-Locally Finite Base" (P000054) AND NOT Rothberger (P000068) +NOT "$T_3$" (P000005) AND "$\\sigma$-Locally Finite Base" (P000054) AND NOT Strategic Menger (P000069) +NOT "$T_3$" (P000005) AND "$\\sigma$-Locally Finite Base" (P000054) AND NOT Markov Menger (P000070) +NOT "$T_3$" (P000005) AND "$\\sigma$-Locally Finite Base" (P000054) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_3$" (P000005) AND "$\\sigma$-Locally Finite Base" (P000054) AND NOT 2-Markov Menger (P000072) +NOT "$T_3$" (P000005) AND NOT "$\\sigma$-Locally Finite Base" (P000054) AND Strongly KC (P000103) +NOT "$T_3$" (P000005) AND NOT Countable (P000057) AND NOT Continuum-sized (P000065) +NOT "$T_3$" (P000005) AND NOT Smaller than the continuum (P000058) AND NOT Continuum-sized (P000065) +NOT "$T_3$" (P000005) AND Strongly Connected (P000060) AND NOT Menger (P000066) +NOT "$T_3$" (P000005) AND Strongly Connected (P000060) AND NOT Rothberger (P000068) +NOT "$T_3$" (P000005) AND Strongly Connected (P000060) AND NOT Strategic Menger (P000069) +NOT "$T_3$" (P000005) AND Strongly Connected (P000060) AND NOT Markov Menger (P000070) +NOT "$T_3$" (P000005) AND Strongly Connected (P000060) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_3$" (P000005) AND Strongly Connected (P000060) AND NOT 2-Markov Menger (P000072) +NOT "$T_3$" (P000005) AND NOT Strongly Connected (P000060) AND Finite (P000078) +NOT "$T_3$" (P000005) AND NOT Continuum-sized (P000065) AND NOT Menger (P000066) +NOT "$T_3$" (P000005) AND NOT Continuum-sized (P000065) AND NOT Rothberger (P000068) +NOT "$T_3$" (P000005) AND NOT Continuum-sized (P000065) AND NOT Strategic Menger (P000069) +NOT "$T_3$" (P000005) AND NOT Continuum-sized (P000065) AND NOT Markov Menger (P000070) +NOT "$T_3$" (P000005) AND NOT Continuum-sized (P000065) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_3$" (P000005) AND NOT Continuum-sized (P000065) AND NOT 2-Markov Menger (P000072) +NOT "$T_3$" (P000005) AND NOT Continuum-sized (P000065) AND NOT Hemicompact (P000111) +NOT "$T_3$" (P000005) AND Menger (P000066) AND NOT Strategic Menger (P000069) +NOT "$T_3$" (P000005) AND Menger (P000066) AND NOT Markov Menger (P000070) +NOT "$T_3$" (P000005) AND Menger (P000066) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_3$" (P000005) AND Menger (P000066) AND NOT 2-Markov Menger (P000072) +NOT "$T_3$" (P000005) AND Menger (P000066) AND NOT Hemicompact (P000111) +NOT "$T_3$" (P000005) AND NOT Menger (P000066) AND NOT locally Hausdorff (P000084) +NOT "$T_3$" (P000005) AND NOT Menger (P000066) AND NOT Sequentially Hausdorff (P000099) +NOT "$T_3$" (P000005) AND NOT Menger (P000066) AND NOT KC (P000100) +NOT "$T_3$" (P000005) AND NOT Menger (P000066) AND NOT Strongly KC (P000103) +NOT "$T_3$" (P000005) AND NOT Rothberger (P000068) AND NOT locally Hausdorff (P000084) +NOT "$T_3$" (P000005) AND NOT Rothberger (P000068) AND NOT Sequentially Hausdorff (P000099) +NOT "$T_3$" (P000005) AND NOT Rothberger (P000068) AND NOT KC (P000100) +NOT "$T_3$" (P000005) AND NOT Rothberger (P000068) AND NOT Strongly KC (P000103) +NOT "$T_3$" (P000005) AND NOT Strategic Menger (P000069) AND NOT locally Hausdorff (P000084) +NOT "$T_3$" (P000005) AND NOT Strategic Menger (P000069) AND NOT Sequentially Hausdorff (P000099) +NOT "$T_3$" (P000005) AND NOT Strategic Menger (P000069) AND NOT KC (P000100) +NOT "$T_3$" (P000005) AND NOT Strategic Menger (P000069) AND NOT Strongly KC (P000103) +NOT "$T_3$" (P000005) AND NOT Markov Menger (P000070) AND NOT locally Hausdorff (P000084) +NOT "$T_3$" (P000005) AND NOT Markov Menger (P000070) AND NOT Sequentially Hausdorff (P000099) +NOT "$T_3$" (P000005) AND NOT Markov Menger (P000070) AND NOT KC (P000100) +NOT "$T_3$" (P000005) AND NOT Markov Menger (P000070) AND NOT Strongly KC (P000103) +NOT "$T_3$" (P000005) AND NOT "$\\sigma$-relatively-compact" (P000071) AND NOT locally Hausdorff (P000084) +NOT "$T_3$" (P000005) AND NOT "$\\sigma$-relatively-compact" (P000071) AND NOT Sequentially Hausdorff (P000099) +NOT "$T_3$" (P000005) AND NOT "$\\sigma$-relatively-compact" (P000071) AND NOT KC (P000100) +NOT "$T_3$" (P000005) AND NOT "$\\sigma$-relatively-compact" (P000071) AND NOT Strongly KC (P000103) +NOT "$T_3$" (P000005) AND NOT 2-Markov Menger (P000072) AND NOT locally Hausdorff (P000084) +NOT "$T_3$" (P000005) AND NOT 2-Markov Menger (P000072) AND NOT Sequentially Hausdorff (P000099) +NOT "$T_3$" (P000005) AND NOT 2-Markov Menger (P000072) AND NOT KC (P000100) +NOT "$T_3$" (P000005) AND NOT 2-Markov Menger (P000072) AND NOT Strongly KC (P000103) +NOT "$T_3$" (P000005) AND Sober (P000073) AND Finite (P000078) +NOT "$T_3$" (P000005) AND Sober (P000073) AND Hemicompact (P000111) +NOT "$T_3$" (P000005) AND Finite (P000078) AND NOT Anti-Hausdorff (P000101) +NOT "$T_3$" (P000005) AND locally Hausdorff (P000084) AND Hemicompact (P000111) +NOT "$T_3$" (P000005) AND Sequentially Hausdorff (P000099) AND Hemicompact (P000111) +NOT "$T_3$" (P000005) AND KC (P000100) AND Hemicompact (P000111) +NOT "$T_3$" (P000005) AND NOT Anti-Hausdorff (P000101) AND Hemicompact (P000111) +NOT "$T_3$" (P000005) AND Strongly KC (P000103) AND Hemicompact (P000111) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT "$T_4$" (P000007) AND Sequentially Compact (P000020) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT "$T_4$" (P000007) AND Biconnected (P000044) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT "$T_4$" (P000007) AND Has Dispersion Point (P000045) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT "$T_4$" (P000007) AND Extremally Disconnected (P000049) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT "$T_4$" (P000007) AND NOT Non-meager (P000056) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT "$T_4$" (P000007) AND Smaller than the continuum (P000058) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT "$T_4$" (P000007) AND NOT Baire (P000064) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT "$T_4$" (P000007) AND NOT Continuum-sized (P000065) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT "$T_5$" (P000008) AND Biconnected (P000044) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT "$T_5$" (P000008) AND Has Dispersion Point (P000045) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT "$T_5$" (P000008) AND "$\\sigma$-Locally Finite Base" (P000054) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT "$T_5$" (P000008) AND NOT Non-meager (P000056) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT "$T_5$" (P000008) AND Countable (P000057) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT "$T_5$" (P000008) AND Smaller than the continuum (P000058) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT "$T_5$" (P000008) AND NOT Baire (P000064) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT "$T_5$" (P000008) AND NOT Continuum-sized (P000065) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Normal (P000013) AND NOT Countably paracompact (P000032) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Normal (P000013) AND Sequentially Compact (P000020) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Normal (P000013) AND Biconnected (P000044) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Normal (P000013) AND Has Dispersion Point (P000045) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Normal (P000013) AND Extremally Disconnected (P000049) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Normal (P000013) AND NOT Non-meager (P000056) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Normal (P000013) AND Smaller than the continuum (P000058) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Normal (P000013) AND NOT Baire (P000064) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Normal (P000013) AND NOT Continuum-sized (P000065) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Completely normal (P000014) AND NOT Countably paracompact (P000032) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Completely normal (P000014) AND Biconnected (P000044) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Completely normal (P000014) AND Has Dispersion Point (P000045) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Completely normal (P000014) AND "$\\sigma$-Locally Finite Base" (P000054) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Completely normal (P000014) AND NOT Non-meager (P000056) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Completely normal (P000014) AND Countable (P000057) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Completely normal (P000014) AND Smaller than the continuum (P000058) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Completely normal (P000014) AND NOT Baire (P000064) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Completely normal (P000014) AND NOT Continuum-sized (P000065) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Perfectly Normal (P000015) AND Second Countable (P000027) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Perfectly Normal (P000015) AND Biconnected (P000044) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Perfectly Normal (P000015) AND Has Dispersion Point (P000045) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Perfectly Normal (P000015) AND "$\\sigma$-Locally Finite Base" (P000054) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Perfectly Normal (P000015) AND NOT Non-meager (P000056) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Perfectly Normal (P000015) AND Countable (P000057) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Perfectly Normal (P000015) AND Smaller than the continuum (P000058) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Perfectly Normal (P000015) AND NOT Baire (P000064) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Perfectly Normal (P000015) AND NOT Continuum-sized (P000065) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Perfectly Normal (P000015) AND Finite (P000078) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Compact (P000016) AND Biconnected (P000044) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Compact (P000016) AND Has Dispersion Point (P000045) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Compact (P000016) AND NOT Spectral space (P000075) +"$T_{3 \\frac{1}{2}}$" (P000006) AND "$\\sigma$-compact" (P000017) AND Biconnected (P000044) +"$T_{3 \\frac{1}{2}}$" (P000006) AND "$\\sigma$-compact" (P000017) AND Has Dispersion Point (P000045) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT "$\\sigma$-compact" (P000017) AND Biconnected (P000044) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT "$\\sigma$-compact" (P000017) AND Has Dispersion Point (P000045) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Lindelof (P000018) AND Biconnected (P000044) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Lindelof (P000018) AND Has Dispersion Point (P000045) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Countably compact (P000019) AND NOT Locally Compact (P000023) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Countably compact (P000019) AND NOT Strongly Locally Compact (P000024) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Countably compact (P000019) AND Biconnected (P000044) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Countably compact (P000019) AND Has Dispersion Point (P000045) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Countably compact (P000019) AND NOT Non-meager (P000056) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Countably compact (P000019) AND NOT Baire (P000064) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Sequentially Compact (P000020) AND NOT Locally Compact (P000023) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Sequentially Compact (P000020) AND NOT Strongly Locally Compact (P000024) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Sequentially Compact (P000020) AND Biconnected (P000044) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Sequentially Compact (P000020) AND Has Dispersion Point (P000045) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Sequentially Compact (P000020) AND NOT Non-meager (P000056) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Sequentially Compact (P000020) AND NOT Baire (P000064) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Sequentially Compact (P000020) AND NOT Collectionwise normal (P000088) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Weakly Countably Compact (P000021) AND NOT Locally Compact (P000023) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Weakly Countably Compact (P000021) AND NOT Strongly Locally Compact (P000024) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Weakly Countably Compact (P000021) AND Biconnected (P000044) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Weakly Countably Compact (P000021) AND Has Dispersion Point (P000045) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Weakly Countably Compact (P000021) AND NOT Non-meager (P000056) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Weakly Countably Compact (P000021) AND NOT Baire (P000064) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Pseudocompact (P000022) AND NOT Locally Compact (P000023) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Pseudocompact (P000022) AND NOT Strongly Locally Compact (P000024) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Pseudocompact (P000022) AND Biconnected (P000044) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Pseudocompact (P000022) AND Has Dispersion Point (P000045) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Pseudocompact (P000022) AND NOT Non-meager (P000056) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Pseudocompact (P000022) AND NOT Baire (P000064) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Locally Compact (P000023) AND Biconnected (P000044) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Locally Compact (P000023) AND Has Dispersion Point (P000045) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Strongly Locally Compact (P000024) AND Biconnected (P000044) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Strongly Locally Compact (P000024) AND Has Dispersion Point (P000045) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Strongly Locally Compact (P000024) AND Hemicompact (P000111) +"$T_{3 \\frac{1}{2}}$" (P000006) AND "$\\sigma$-Locally Compact" (P000025) AND Biconnected (P000044) +"$T_{3 \\frac{1}{2}}$" (P000006) AND "$\\sigma$-Locally Compact" (P000025) AND Has Dispersion Point (P000045) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Separable (P000026) AND Biconnected (P000044) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Separable (P000026) AND Has Dispersion Point (P000045) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Second Countable (P000027) AND NOT "$T_6$" (P000067) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Second Countable (P000027) AND NOT Topological manifold (P000124) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Second Countable (P000027) AND Biconnected (P000044) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Second Countable (P000027) AND Has Dispersion Point (P000045) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT First Countable (P000028) AND Biconnected (P000044) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT First Countable (P000028) AND Has Dispersion Point (P000045) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT First Countable (P000028) AND NOT Non-meager (P000056) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT First Countable (P000028) AND NOT Baire (P000064) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Countable chain condition (P000029) AND Biconnected (P000044) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Countable chain condition (P000029) AND Has Dispersion Point (P000045) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Paracompact (P000030) AND Biconnected (P000044) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Paracompact (P000030) AND Has Dispersion Point (P000045) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Paracompact (P000030) AND Extremally Disconnected (P000049) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Paracompact (P000030) AND NOT Non-meager (P000056) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Paracompact (P000030) AND Smaller than the continuum (P000058) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Paracompact (P000030) AND NOT Baire (P000064) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Metacompact (P000031) AND Biconnected (P000044) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Metacompact (P000031) AND Has Dispersion Point (P000045) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Metacompact (P000031) AND Extremally Disconnected (P000049) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Metacompact (P000031) AND NOT Non-meager (P000056) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Metacompact (P000031) AND Smaller than the continuum (P000058) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Metacompact (P000031) AND NOT Baire (P000064) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Countably paracompact (P000032) AND Biconnected (P000044) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Countably paracompact (P000032) AND Has Dispersion Point (P000045) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Countably paracompact (P000032) AND NOT Non-meager (P000056) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Countably paracompact (P000032) AND Smaller than the continuum (P000058) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Countably paracompact (P000032) AND NOT Baire (P000064) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Countably paracompact (P000032) AND NOT Continuum-sized (P000065) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Fully normal (P000034) AND Biconnected (P000044) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Fully normal (P000034) AND Has Dispersion Point (P000045) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Fully normal (P000034) AND Extremally Disconnected (P000049) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Fully normal (P000034) AND NOT Non-meager (P000056) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Fully normal (P000034) AND Smaller than the continuum (P000058) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Fully normal (P000034) AND NOT Baire (P000064) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Fully $T_4$ (P000035) AND Biconnected (P000044) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Fully $T_4$ (P000035) AND Has Dispersion Point (P000045) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Fully $T_4$ (P000035) AND Extremally Disconnected (P000049) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Fully $T_4$ (P000035) AND NOT Non-meager (P000056) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Fully $T_4$ (P000035) AND Smaller than the continuum (P000058) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Fully $T_4$ (P000035) AND NOT Baire (P000064) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Connected (P000036) AND Zero Dimensional (P000050) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Connected (P000036) AND Scattered (P000051) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Connected (P000036) AND Countable (P000057) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Connected (P000036) AND Smaller than the continuum (P000058) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Connected (P000036) AND NOT Continuum-sized (P000065) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Connected (P000036) AND Finite (P000078) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Connected (P000036) AND NOT homogenous (P000086) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Path Connected (P000037) AND NOT Arc connected (P000038) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Path Connected (P000037) AND Biconnected (P000044) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Path Connected (P000037) AND Has Dispersion Point (P000045) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Path Connected (P000037) AND Zero Dimensional (P000050) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Path Connected (P000037) AND Scattered (P000051) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Path Connected (P000037) AND Countable (P000057) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Path Connected (P000037) AND Smaller than the continuum (P000058) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Path Connected (P000037) AND NOT Continuum-sized (P000065) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Path Connected (P000037) AND Finite (P000078) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Path Connected (P000037) AND NOT homogenous (P000086) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Locally Connected (P000041) AND Biconnected (P000044) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Locally Connected (P000041) AND Has Dispersion Point (P000045) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Locally Connected (P000041) AND NOT homogenous (P000086) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Locally Path Connected (P000042) AND NOT Locally Arc Connected (P000043) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Locally Path Connected (P000042) AND Biconnected (P000044) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Locally Path Connected (P000042) AND Has Dispersion Point (P000045) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Locally Path Connected (P000042) AND NOT homogenous (P000086) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Biconnected (P000044) AND Totally Path Disconnected (P000046) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Biconnected (P000044) AND NOT Totally Path Disconnected (P000046) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Biconnected (P000044) AND Scattered (P000051) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Biconnected (P000044) AND NOT Metrizable (P000053) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Biconnected (P000044) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Biconnected (P000044) AND NOT Completely metrizable (P000055) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Biconnected (P000044) AND Non-meager (P000056) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Biconnected (P000044) AND NOT Non-meager (P000056) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Biconnected (P000044) AND Countable (P000057) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Biconnected (P000044) AND Smaller than the continuum (P000058) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Biconnected (P000044) AND NOT Baire (P000064) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Biconnected (P000044) AND NOT Continuum-sized (P000065) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Biconnected (P000044) AND Menger (P000066) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Biconnected (P000044) AND NOT Menger (P000066) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Biconnected (P000044) AND NOT "$T_6$" (P000067) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Biconnected (P000044) AND NOT Rothberger (P000068) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Biconnected (P000044) AND Strategic Menger (P000069) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Biconnected (P000044) AND NOT Strategic Menger (P000069) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Biconnected (P000044) AND Markov Menger (P000070) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Biconnected (P000044) AND NOT Markov Menger (P000070) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Biconnected (P000044) AND "$\\sigma$-relatively-compact" (P000071) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Biconnected (P000044) AND NOT "$\\sigma$-relatively-compact" (P000071) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Biconnected (P000044) AND 2-Markov Menger (P000072) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Biconnected (P000044) AND NOT 2-Markov Menger (P000072) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Biconnected (P000044) AND Finite (P000078) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Biconnected (P000044) AND NOT homogenous (P000086) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Biconnected (P000044) AND NOT Collectionwise normal (P000088) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Biconnected (P000044) AND Hemicompact (P000111) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Biconnected (P000044) AND NOT Hemicompact (P000111) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Biconnected (P000044) AND NOT Topological manifold (P000124) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Has Dispersion Point (P000045) AND Totally Path Disconnected (P000046) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Has Dispersion Point (P000045) AND NOT Totally Path Disconnected (P000046) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Has Dispersion Point (P000045) AND Scattered (P000051) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Has Dispersion Point (P000045) AND NOT Metrizable (P000053) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Has Dispersion Point (P000045) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Has Dispersion Point (P000045) AND NOT Completely metrizable (P000055) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Has Dispersion Point (P000045) AND Non-meager (P000056) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Has Dispersion Point (P000045) AND NOT Non-meager (P000056) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Has Dispersion Point (P000045) AND Countable (P000057) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Has Dispersion Point (P000045) AND Smaller than the continuum (P000058) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Has Dispersion Point (P000045) AND NOT Baire (P000064) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Has Dispersion Point (P000045) AND NOT Continuum-sized (P000065) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Has Dispersion Point (P000045) AND Menger (P000066) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Has Dispersion Point (P000045) AND NOT Menger (P000066) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Has Dispersion Point (P000045) AND NOT "$T_6$" (P000067) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Has Dispersion Point (P000045) AND NOT Rothberger (P000068) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Has Dispersion Point (P000045) AND Strategic Menger (P000069) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Has Dispersion Point (P000045) AND NOT Strategic Menger (P000069) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Has Dispersion Point (P000045) AND Markov Menger (P000070) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Has Dispersion Point (P000045) AND NOT Markov Menger (P000070) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Has Dispersion Point (P000045) AND "$\\sigma$-relatively-compact" (P000071) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Has Dispersion Point (P000045) AND NOT "$\\sigma$-relatively-compact" (P000071) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Has Dispersion Point (P000045) AND 2-Markov Menger (P000072) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Has Dispersion Point (P000045) AND NOT 2-Markov Menger (P000072) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Has Dispersion Point (P000045) AND Finite (P000078) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Has Dispersion Point (P000045) AND NOT homogenous (P000086) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Has Dispersion Point (P000045) AND NOT Collectionwise normal (P000088) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Has Dispersion Point (P000045) AND Hemicompact (P000111) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Has Dispersion Point (P000045) AND NOT Hemicompact (P000111) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Has Dispersion Point (P000045) AND NOT Topological manifold (P000124) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Totally Path Disconnected (P000046) AND Countable (P000057) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Totally Path Disconnected (P000046) AND Smaller than the continuum (P000058) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Totally Path Disconnected (P000046) AND NOT Continuum-sized (P000065) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Totally Path Disconnected (P000046) AND NOT homogenous (P000086) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Totally Disconnected (P000047) AND Countable (P000057) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Totally Disconnected (P000047) AND Smaller than the continuum (P000058) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Totally Disconnected (P000047) AND NOT Continuum-sized (P000065) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Totally Disconnected (P000047) AND NOT homogenous (P000086) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Totally Separated (P000048) AND NOT Zero Dimensional (P000050) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Totally Separated (P000048) AND Scattered (P000051) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Totally Separated (P000048) AND Countable (P000057) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Totally Separated (P000048) AND Smaller than the continuum (P000058) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Totally Separated (P000048) AND NOT Continuum-sized (P000065) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Totally Separated (P000048) AND NOT homogenous (P000086) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Extremally Disconnected (P000049) AND NOT Zero Dimensional (P000050) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Extremally Disconnected (P000049) AND NOT Collectionwise normal (P000088) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Zero Dimensional (P000050) AND Scattered (P000051) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Zero Dimensional (P000050) AND Countable (P000057) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Zero Dimensional (P000050) AND Smaller than the continuum (P000058) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Zero Dimensional (P000050) AND NOT Continuum-sized (P000065) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Zero Dimensional (P000050) AND NOT homogenous (P000086) +"$T_{3 \\frac{1}{2}}$" (P000006) AND "$\\sigma$-Locally Finite Base" (P000054) AND NOT "$T_6$" (P000067) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Non-meager (P000056) AND NOT "$T_6$" (P000067) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Non-meager (P000056) AND NOT Collectionwise normal (P000088) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Non-meager (P000056) AND Hemicompact (P000111) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Countable (P000057) AND NOT "$T_6$" (P000067) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Countable (P000057) AND NOT Corson compact (P000077) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Countable (P000057) AND NOT Fréchet Urysohn (P000080) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Countable (P000057) AND NOT Eberlein compact (P000091) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Smaller than the continuum (P000058) AND NOT "$T_6$" (P000067) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Smaller than the continuum (P000058) AND NOT Corson compact (P000077) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Smaller than the continuum (P000058) AND NOT Fréchet Urysohn (P000080) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Smaller than the continuum (P000058) AND NOT Collectionwise normal (P000088) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Smaller than the continuum (P000058) AND NOT Eberlein compact (P000091) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Baire (P000064) AND NOT "$T_6$" (P000067) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Baire (P000064) AND NOT Collectionwise normal (P000088) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Baire (P000064) AND Hemicompact (P000111) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Continuum-sized (P000065) AND NOT "$T_6$" (P000067) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Continuum-sized (P000065) AND NOT Corson compact (P000077) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Continuum-sized (P000065) AND NOT Fréchet Urysohn (P000080) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Continuum-sized (P000065) AND NOT Collectionwise normal (P000088) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Continuum-sized (P000065) AND NOT Eberlein compact (P000091) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT "$T_6$" (P000067) AND Finite (P000078) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Corson compact (P000077) AND Countably tight (P000081) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Finite (P000078) AND NOT Topological manifold (P000124) +"$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Fréchet Urysohn (P000080) AND Countably tight (P000081) +"$T_{3 \\frac{1}{2}}$" (P000006) AND Countably tight (P000081) AND NOT Eberlein compact (P000091) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Completely Hausdorff (P000009) AND Biconnected (P000044) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Completely Hausdorff (P000009) AND Has Dispersion Point (P000045) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Completely Hausdorff (P000009) AND Zero Dimensional (P000050) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Completely Hausdorff (P000009) AND Hemicompact (P000111) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Semiregular (P000010) AND Biconnected (P000044) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Semiregular (P000010) AND Has Dispersion Point (P000045) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Semiregular (P000010) AND Extremally Disconnected (P000049) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Semiregular (P000010) AND Finite (P000078) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Regular (P000011) AND NOT Metacompact (P000031) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Regular (P000011) AND NOT Countably paracompact (P000032) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Regular (P000011) AND Biconnected (P000044) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Regular (P000011) AND Has Dispersion Point (P000045) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Regular (P000011) AND Extremally Disconnected (P000049) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Regular (P000011) AND Finite (P000078) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Regular (P000011) AND Strongly KC (P000103) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Completely regular (P000012) AND NOT Normal (P000013) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Completely regular (P000012) AND NOT Completely normal (P000014) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Completely regular (P000012) AND NOT "$\\sigma$-compact" (P000017) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Completely regular (P000012) AND NOT Lindelof (P000018) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Completely regular (P000012) AND NOT Weakly Countably Compact (P000021) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Completely regular (P000012) AND NOT Locally Compact (P000023) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Completely regular (P000012) AND NOT Strongly Locally Compact (P000024) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Completely regular (P000012) AND NOT "$\\sigma$-Locally Compact" (P000025) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Completely regular (P000012) AND NOT Separable (P000026) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Completely regular (P000012) AND NOT Second Countable (P000027) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Completely regular (P000012) AND NOT First Countable (P000028) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Completely regular (P000012) AND NOT Countable chain condition (P000029) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Completely regular (P000012) AND NOT Paracompact (P000030) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Completely regular (P000012) AND NOT Metacompact (P000031) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Completely regular (P000012) AND NOT Countably paracompact (P000032) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Completely regular (P000012) AND NOT Fully normal (P000034) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Completely regular (P000012) AND NOT Connected (P000036) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Completely regular (P000012) AND NOT Path Connected (P000037) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Completely regular (P000012) AND NOT Locally Connected (P000041) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Completely regular (P000012) AND NOT Locally Path Connected (P000042) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Completely regular (P000012) AND Biconnected (P000044) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Completely regular (P000012) AND Has Dispersion Point (P000045) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Completely regular (P000012) AND Totally Path Disconnected (P000046) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Completely regular (P000012) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Completely regular (P000012) AND NOT Menger (P000066) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Completely regular (P000012) AND NOT Rothberger (P000068) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Completely regular (P000012) AND NOT Strategic Menger (P000069) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Completely regular (P000012) AND NOT Markov Menger (P000070) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Completely regular (P000012) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Completely regular (P000012) AND NOT 2-Markov Menger (P000072) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Completely regular (P000012) AND Finite (P000078) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Completely regular (P000012) AND NOT homogenous (P000086) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Completely regular (P000012) AND NOT Collectionwise normal (P000088) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Completely regular (P000012) AND NOT Anti-Hausdorff (P000101) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Completely regular (P000012) AND NOT Hemicompact (P000111) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Normal (P000013) AND NOT "$\\sigma$-compact" (P000017) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Normal (P000013) AND NOT Lindelof (P000018) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Normal (P000013) AND NOT Locally Compact (P000023) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Normal (P000013) AND NOT "$\\sigma$-Locally Compact" (P000025) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Normal (P000013) AND NOT First Countable (P000028) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Normal (P000013) AND Totally Path Disconnected (P000046) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Normal (P000013) AND NOT Menger (P000066) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Normal (P000013) AND NOT Rothberger (P000068) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Normal (P000013) AND NOT Strategic Menger (P000069) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Normal (P000013) AND NOT Markov Menger (P000070) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Normal (P000013) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Normal (P000013) AND NOT 2-Markov Menger (P000072) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Normal (P000013) AND Sober (P000073) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Normal (P000013) AND NOT Anti-Hausdorff (P000101) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Normal (P000013) AND NOT Hemicompact (P000111) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Normal (P000013) AND Zero Dimensional (P000050) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Completely normal (P000014) AND NOT "$\\sigma$-compact" (P000017) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Completely normal (P000014) AND NOT Lindelof (P000018) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Completely normal (P000014) AND NOT Locally Compact (P000023) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Completely normal (P000014) AND NOT "$\\sigma$-Locally Compact" (P000025) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Completely normal (P000014) AND NOT First Countable (P000028) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Completely normal (P000014) AND Totally Path Disconnected (P000046) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Completely normal (P000014) AND NOT Menger (P000066) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Completely normal (P000014) AND NOT Rothberger (P000068) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Completely normal (P000014) AND NOT Strategic Menger (P000069) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Completely normal (P000014) AND NOT Markov Menger (P000070) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Completely normal (P000014) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Completely normal (P000014) AND NOT 2-Markov Menger (P000072) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Completely normal (P000014) AND Sober (P000073) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Completely normal (P000014) AND NOT Anti-Hausdorff (P000101) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Completely normal (P000014) AND NOT Hemicompact (P000111) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Completely normal (P000014) AND Fully normal (P000034) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Completely normal (P000014) AND Zero Dimensional (P000050) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Compact (P000016) AND NOT Sequentially Compact (P000020) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Compact (P000016) AND Sober (P000073) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Compact (P000016) AND locally Hausdorff (P000084) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Compact (P000016) AND Sequentially Hausdorff (P000099) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Compact (P000016) AND KC (P000100) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Compact (P000016) AND NOT Anti-Hausdorff (P000101) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Compact (P000016) AND Strongly KC (P000103) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND "$\\sigma$-compact" (P000017) AND Extremally Disconnected (P000049) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT "$\\sigma$-compact" (P000017) AND Strongly Locally Compact (P000024) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT "$\\sigma$-compact" (P000017) AND Paracompact (P000030) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT "$\\sigma$-compact" (P000017) AND Fully normal (P000034) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT "$\\sigma$-compact" (P000017) AND Zero Dimensional (P000050) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT "$\\sigma$-compact" (P000017) AND NOT Continuum-sized (P000065) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT "$\\sigma$-compact" (P000017) AND Menger (P000066) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Lindelof (P000018) AND Extremally Disconnected (P000049) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Lindelof (P000018) AND NOT Strategic Menger (P000069) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Lindelof (P000018) AND NOT Markov Menger (P000070) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Lindelof (P000018) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Lindelof (P000018) AND NOT 2-Markov Menger (P000072) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Lindelof (P000018) AND Strongly Locally Compact (P000024) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Lindelof (P000018) AND Paracompact (P000030) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Lindelof (P000018) AND Metacompact (P000031) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Lindelof (P000018) AND Fully normal (P000034) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Lindelof (P000018) AND Zero Dimensional (P000050) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Lindelof (P000018) AND "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Lindelof (P000018) AND NOT Continuum-sized (P000065) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Countably compact (P000019) AND NOT Sequentially Compact (P000020) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Countably compact (P000019) AND Totally Separated (P000048) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Countably compact (P000019) AND Extremally Disconnected (P000049) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Countably compact (P000019) AND Strongly KC (P000103) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Sequentially Compact (P000020) AND Totally Separated (P000048) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Sequentially Compact (P000020) AND Extremally Disconnected (P000049) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Sequentially Compact (P000020) AND Strongly KC (P000103) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Weakly Countably Compact (P000021) AND Totally Separated (P000048) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Weakly Countably Compact (P000021) AND Extremally Disconnected (P000049) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Weakly Countably Compact (P000021) AND Strongly KC (P000103) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Weakly Countably Compact (P000021) AND Zero Dimensional (P000050) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Pseudocompact (P000022) AND NOT Separable (P000026) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Pseudocompact (P000022) AND NOT First Countable (P000028) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Pseudocompact (P000022) AND NOT Countable chain condition (P000029) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Pseudocompact (P000022) AND Biconnected (P000044) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Pseudocompact (P000022) AND Has Dispersion Point (P000045) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Pseudocompact (P000022) AND Extremally Disconnected (P000049) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Pseudocompact (P000022) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Locally Compact (P000023) AND Sober (P000073) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Locally Compact (P000023) AND locally Hausdorff (P000084) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Locally Compact (P000023) AND Sequentially Hausdorff (P000099) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Locally Compact (P000023) AND KC (P000100) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Locally Compact (P000023) AND NOT Anti-Hausdorff (P000101) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Locally Compact (P000023) AND Strongly KC (P000103) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Locally Compact (P000023) AND Paracompact (P000030) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Locally Compact (P000023) AND Fully normal (P000034) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Locally Compact (P000023) AND Zero Dimensional (P000050) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Strongly Locally Compact (P000024) AND NOT "$\\sigma$-Locally Compact" (P000025) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Strongly Locally Compact (P000024) AND NOT Paracompact (P000030) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Strongly Locally Compact (P000024) AND NOT Metacompact (P000031) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Strongly Locally Compact (P000024) AND NOT Countably paracompact (P000032) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Strongly Locally Compact (P000024) AND NOT Menger (P000066) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Strongly Locally Compact (P000024) AND NOT Rothberger (P000068) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Strongly Locally Compact (P000024) AND NOT Strategic Menger (P000069) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Strongly Locally Compact (P000024) AND NOT Markov Menger (P000070) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Strongly Locally Compact (P000024) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Strongly Locally Compact (P000024) AND NOT 2-Markov Menger (P000072) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Strongly Locally Compact (P000024) AND Sober (P000073) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Strongly Locally Compact (P000024) AND locally Hausdorff (P000084) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Strongly Locally Compact (P000024) AND Sequentially Hausdorff (P000099) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Strongly Locally Compact (P000024) AND KC (P000100) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Strongly Locally Compact (P000024) AND NOT Anti-Hausdorff (P000101) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Strongly Locally Compact (P000024) AND Strongly KC (P000103) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Strongly Locally Compact (P000024) AND NOT Hemicompact (P000111) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Strongly Locally Compact (P000024) AND Paracompact (P000030) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Strongly Locally Compact (P000024) AND Fully normal (P000034) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Strongly Locally Compact (P000024) AND Zero Dimensional (P000050) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND "$\\sigma$-Locally Compact" (P000025) AND Sober (P000073) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND "$\\sigma$-Locally Compact" (P000025) AND locally Hausdorff (P000084) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND "$\\sigma$-Locally Compact" (P000025) AND Sequentially Hausdorff (P000099) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND "$\\sigma$-Locally Compact" (P000025) AND KC (P000100) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND "$\\sigma$-Locally Compact" (P000025) AND NOT Anti-Hausdorff (P000101) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND "$\\sigma$-Locally Compact" (P000025) AND Strongly KC (P000103) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Paracompact (P000030) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Fully normal (P000034) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Zero Dimensional (P000050) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Separable (P000026) AND Arc connected (P000038) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Separable (P000026) AND Locally Arc Connected (P000043) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Separable (P000026) AND Extremally Disconnected (P000049) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Separable (P000026) AND Zero Dimensional (P000050) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Separable (P000026) AND "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Separable (P000026) AND NOT Continuum-sized (P000065) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Separable (P000026) AND Strongly KC (P000103) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Second Countable (P000027) AND Extremally Disconnected (P000049) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Second Countable (P000027) AND NOT Strategic Menger (P000069) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Second Countable (P000027) AND NOT Markov Menger (P000070) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Second Countable (P000027) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Second Countable (P000027) AND NOT 2-Markov Menger (P000072) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Second Countable (P000027) AND Zero Dimensional (P000050) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Second Countable (P000027) AND "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND First Countable (P000028) AND Extremally Disconnected (P000049) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT First Countable (P000028) AND Fully normal (P000034) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT First Countable (P000028) AND Zero Dimensional (P000050) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT First Countable (P000028) AND sequential (P000079) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT First Countable (P000028) AND Fréchet Urysohn (P000080) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT First Countable (P000028) AND Strongly KC (P000103) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Countable chain condition (P000029) AND NOT Countably paracompact (P000032) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Countable chain condition (P000029) AND Arc connected (P000038) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Countable chain condition (P000029) AND Locally Arc Connected (P000043) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Countable chain condition (P000029) AND Extremally Disconnected (P000049) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Countable chain condition (P000029) AND Zero Dimensional (P000050) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Countable chain condition (P000029) AND "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Countable chain condition (P000029) AND Strongly KC (P000103) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Paracompact (P000030) AND NOT Menger (P000066) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Paracompact (P000030) AND NOT Rothberger (P000068) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Paracompact (P000030) AND NOT Strategic Menger (P000069) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Paracompact (P000030) AND NOT Markov Menger (P000070) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Paracompact (P000030) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Paracompact (P000030) AND NOT 2-Markov Menger (P000072) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Paracompact (P000030) AND Sober (P000073) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Paracompact (P000030) AND locally Hausdorff (P000084) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Paracompact (P000030) AND Sequentially Hausdorff (P000099) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Paracompact (P000030) AND KC (P000100) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Paracompact (P000030) AND NOT Anti-Hausdorff (P000101) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Paracompact (P000030) AND Strongly KC (P000103) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Paracompact (P000030) AND NOT Hemicompact (P000111) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Paracompact (P000030) AND Zero Dimensional (P000050) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Metacompact (P000031) AND Extremally Disconnected (P000049) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Metacompact (P000031) AND NOT Menger (P000066) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Metacompact (P000031) AND NOT Rothberger (P000068) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Metacompact (P000031) AND NOT Strategic Menger (P000069) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Metacompact (P000031) AND NOT Markov Menger (P000070) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Metacompact (P000031) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Metacompact (P000031) AND NOT 2-Markov Menger (P000072) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Metacompact (P000031) AND Zero Dimensional (P000050) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Countably paracompact (P000032) AND Totally Separated (P000048) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Countably paracompact (P000032) AND Extremally Disconnected (P000049) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Countably paracompact (P000032) AND Strongly KC (P000103) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Countably paracompact (P000032) AND Zero Dimensional (P000050) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Countably metacompact (P000033) AND Extremally Disconnected (P000049) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Fully normal (P000034) AND NOT Locally Connected (P000041) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Fully normal (P000034) AND NOT Locally Path Connected (P000042) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Fully normal (P000034) AND Totally Path Disconnected (P000046) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Fully normal (P000034) AND NOT Menger (P000066) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Fully normal (P000034) AND NOT Rothberger (P000068) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Fully normal (P000034) AND NOT Strategic Menger (P000069) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Fully normal (P000034) AND NOT Markov Menger (P000070) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Fully normal (P000034) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Fully normal (P000034) AND NOT 2-Markov Menger (P000072) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Fully normal (P000034) AND Sober (P000073) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Fully normal (P000034) AND NOT Anti-Hausdorff (P000101) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Fully normal (P000034) AND NOT Hemicompact (P000111) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Fully normal (P000034) AND Zero Dimensional (P000050) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Connected (P000036) AND Locally Arc Connected (P000043) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Connected (P000036) AND Zero Dimensional (P000050) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Connected (P000036) AND Finite (P000078) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Path Connected (P000037) AND Locally Arc Connected (P000043) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Path Connected (P000037) AND Zero Dimensional (P000050) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Path Connected (P000037) AND Finite (P000078) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Arc connected (P000038) AND NOT Locally Connected (P000041) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Arc connected (P000038) AND NOT Locally Path Connected (P000042) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Arc connected (P000038) AND NOT Locally Arc Connected (P000043) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Arc connected (P000038) AND Locally Arc Connected (P000043) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Locally Connected (P000041) AND Zero Dimensional (P000050) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Locally Path Connected (P000042) AND Zero Dimensional (P000050) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Locally Arc Connected (P000043) AND Zero Dimensional (P000050) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Locally Arc Connected (P000043) AND Scattered (P000051) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Locally Arc Connected (P000043) AND Countable (P000057) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Locally Arc Connected (P000043) AND Smaller than the continuum (P000058) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Locally Arc Connected (P000043) AND NOT Continuum-sized (P000065) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Locally Arc Connected (P000043) AND Finite (P000078) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Biconnected (P000044) AND NOT Smaller than the continuum (P000058) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Biconnected (P000044) AND NOT Strongly Connected (P000060) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Biconnected (P000044) AND Finite (P000078) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Has Dispersion Point (P000045) AND NOT Smaller than the continuum (P000058) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Has Dispersion Point (P000045) AND NOT Strongly Connected (P000060) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Has Dispersion Point (P000045) AND Finite (P000078) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Totally Path Disconnected (P000046) AND Zero Dimensional (P000050) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Totally Path Disconnected (P000046) AND Finite (P000078) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Totally Disconnected (P000047) AND Zero Dimensional (P000050) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Totally Separated (P000048) AND Zero Dimensional (P000050) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Totally Separated (P000048) AND Hemicompact (P000111) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Extremally Disconnected (P000049) AND Zero Dimensional (P000050) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Extremally Disconnected (P000049) AND NOT Scattered (P000051) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Extremally Disconnected (P000049) AND "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Extremally Disconnected (P000049) AND Non-meager (P000056) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Extremally Disconnected (P000049) AND Countable (P000057) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Extremally Disconnected (P000049) AND Smaller than the continuum (P000058) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Extremally Disconnected (P000049) AND NOT Smaller than the continuum (P000058) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Extremally Disconnected (P000049) AND NOT Continuum-sized (P000065) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Extremally Disconnected (P000049) AND Menger (P000066) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Extremally Disconnected (P000049) AND Strategic Menger (P000069) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Extremally Disconnected (P000049) AND Markov Menger (P000070) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Extremally Disconnected (P000049) AND "$\\sigma$-relatively-compact" (P000071) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Extremally Disconnected (P000049) AND 2-Markov Menger (P000072) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Extremally Disconnected (P000049) AND sequential (P000079) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Extremally Disconnected (P000049) AND Fréchet Urysohn (P000080) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Extremally Disconnected (P000049) AND Countably tight (P000081) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Extremally Disconnected (P000049) AND Strongly KC (P000103) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Extremally Disconnected (P000049) AND Hemicompact (P000111) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Zero Dimensional (P000050) AND Scattered (P000051) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Zero Dimensional (P000050) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Zero Dimensional (P000050) AND NOT Non-meager (P000056) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Zero Dimensional (P000050) AND NOT Countable (P000057) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Zero Dimensional (P000050) AND NOT Smaller than the continuum (P000058) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Zero Dimensional (P000050) AND NOT Baire (P000064) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Zero Dimensional (P000050) AND NOT Menger (P000066) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Zero Dimensional (P000050) AND NOT Rothberger (P000068) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Zero Dimensional (P000050) AND NOT Strategic Menger (P000069) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Zero Dimensional (P000050) AND NOT Markov Menger (P000070) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Zero Dimensional (P000050) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Zero Dimensional (P000050) AND NOT 2-Markov Menger (P000072) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Zero Dimensional (P000050) AND Sober (P000073) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Zero Dimensional (P000050) AND Finite (P000078) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Zero Dimensional (P000050) AND locally Hausdorff (P000084) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Zero Dimensional (P000050) AND NOT homogenous (P000086) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Zero Dimensional (P000050) AND NOT Collectionwise normal (P000088) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Zero Dimensional (P000050) AND Sequentially Hausdorff (P000099) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Zero Dimensional (P000050) AND KC (P000100) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Zero Dimensional (P000050) AND NOT Anti-Hausdorff (P000101) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Zero Dimensional (P000050) AND Strongly KC (P000103) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Zero Dimensional (P000050) AND NOT Hemicompact (P000111) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND "$\\sigma$-Locally Finite Base" (P000054) AND NOT Menger (P000066) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND "$\\sigma$-Locally Finite Base" (P000054) AND NOT Rothberger (P000068) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND "$\\sigma$-Locally Finite Base" (P000054) AND NOT Strategic Menger (P000069) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND "$\\sigma$-Locally Finite Base" (P000054) AND NOT Markov Menger (P000070) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND "$\\sigma$-Locally Finite Base" (P000054) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND "$\\sigma$-Locally Finite Base" (P000054) AND NOT 2-Markov Menger (P000072) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT "$\\sigma$-Locally Finite Base" (P000054) AND Strongly KC (P000103) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Countable (P000057) AND NOT Continuum-sized (P000065) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Smaller than the continuum (P000058) AND NOT Continuum-sized (P000065) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Strongly Connected (P000060) AND Finite (P000078) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Continuum-sized (P000065) AND NOT Menger (P000066) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Continuum-sized (P000065) AND NOT Rothberger (P000068) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Continuum-sized (P000065) AND NOT Strategic Menger (P000069) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Continuum-sized (P000065) AND NOT Markov Menger (P000070) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Continuum-sized (P000065) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Continuum-sized (P000065) AND NOT 2-Markov Menger (P000072) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Continuum-sized (P000065) AND NOT Hemicompact (P000111) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Menger (P000066) AND NOT Strategic Menger (P000069) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Menger (P000066) AND NOT Markov Menger (P000070) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Menger (P000066) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Menger (P000066) AND NOT 2-Markov Menger (P000072) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Menger (P000066) AND NOT Hemicompact (P000111) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Sober (P000073) AND Finite (P000078) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Sober (P000073) AND Hemicompact (P000111) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Finite (P000078) AND NOT Anti-Hausdorff (P000101) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND locally Hausdorff (P000084) AND Hemicompact (P000111) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Sequentially Hausdorff (P000099) AND Hemicompact (P000111) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND KC (P000100) AND Hemicompact (P000111) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND NOT Anti-Hausdorff (P000101) AND Hemicompact (P000111) +NOT "$T_{3 \\frac{1}{2}}$" (P000006) AND Strongly KC (P000103) AND Hemicompact (P000111) +"$T_4$" (P000007) AND NOT "$T_5$" (P000008) AND NOT Compact (P000016) +"$T_4$" (P000007) AND NOT "$T_5$" (P000008) AND NOT "$\\sigma$-compact" (P000017) +"$T_4$" (P000007) AND NOT "$T_5$" (P000008) AND NOT Lindelof (P000018) +"$T_4$" (P000007) AND NOT "$T_5$" (P000008) AND NOT Countably compact (P000019) +"$T_4$" (P000007) AND NOT "$T_5$" (P000008) AND NOT Weakly Countably Compact (P000021) +"$T_4$" (P000007) AND NOT "$T_5$" (P000008) AND NOT Pseudocompact (P000022) +"$T_4$" (P000007) AND NOT "$T_5$" (P000008) AND NOT Locally Compact (P000023) +"$T_4$" (P000007) AND NOT "$T_5$" (P000008) AND NOT Strongly Locally Compact (P000024) +"$T_4$" (P000007) AND NOT "$T_5$" (P000008) AND NOT "$\\sigma$-Locally Compact" (P000025) +"$T_4$" (P000007) AND NOT "$T_5$" (P000008) AND First Countable (P000028) +"$T_4$" (P000007) AND NOT "$T_5$" (P000008) AND NOT Paracompact (P000030) +"$T_4$" (P000007) AND NOT "$T_5$" (P000008) AND NOT Metacompact (P000031) +"$T_4$" (P000007) AND NOT "$T_5$" (P000008) AND NOT Fully normal (P000034) +"$T_4$" (P000007) AND NOT "$T_5$" (P000008) AND NOT Fully $T_4$ (P000035) +"$T_4$" (P000007) AND NOT "$T_5$" (P000008) AND Locally Connected (P000041) +"$T_4$" (P000007) AND NOT "$T_5$" (P000008) AND Locally Path Connected (P000042) +"$T_4$" (P000007) AND NOT "$T_5$" (P000008) AND Locally Arc Connected (P000043) +"$T_4$" (P000007) AND NOT "$T_5$" (P000008) AND Biconnected (P000044) +"$T_4$" (P000007) AND NOT "$T_5$" (P000008) AND Has Dispersion Point (P000045) +"$T_4$" (P000007) AND NOT "$T_5$" (P000008) AND "$\\sigma$-Locally Finite Base" (P000054) +"$T_4$" (P000007) AND NOT "$T_5$" (P000008) AND NOT Non-meager (P000056) +"$T_4$" (P000007) AND NOT "$T_5$" (P000008) AND Countable (P000057) +"$T_4$" (P000007) AND NOT "$T_5$" (P000008) AND Smaller than the continuum (P000058) +"$T_4$" (P000007) AND NOT "$T_5$" (P000008) AND NOT Baire (P000064) +"$T_4$" (P000007) AND NOT "$T_5$" (P000008) AND NOT Continuum-sized (P000065) +"$T_4$" (P000007) AND NOT "$T_5$" (P000008) AND NOT Menger (P000066) +"$T_4$" (P000007) AND NOT "$T_5$" (P000008) AND NOT Rothberger (P000068) +"$T_4$" (P000007) AND NOT "$T_5$" (P000008) AND NOT Strategic Menger (P000069) +"$T_4$" (P000007) AND NOT "$T_5$" (P000008) AND NOT Markov Menger (P000070) +"$T_4$" (P000007) AND NOT "$T_5$" (P000008) AND NOT "$\\sigma$-relatively-compact" (P000071) +"$T_4$" (P000007) AND NOT "$T_5$" (P000008) AND NOT 2-Markov Menger (P000072) +"$T_4$" (P000007) AND NOT "$T_5$" (P000008) AND NOT Spectral space (P000075) +"$T_4$" (P000007) AND NOT "$T_5$" (P000008) AND sequential (P000079) +"$T_4$" (P000007) AND NOT "$T_5$" (P000008) AND Fréchet Urysohn (P000080) +"$T_4$" (P000007) AND NOT "$T_5$" (P000008) AND Countably tight (P000081) +"$T_4$" (P000007) AND NOT "$T_5$" (P000008) AND Strongly KC (P000103) +"$T_4$" (P000007) AND NOT "$T_5$" (P000008) AND NOT Hemicompact (P000111) +"$T_4$" (P000007) AND NOT Completely normal (P000014) AND NOT Compact (P000016) +"$T_4$" (P000007) AND NOT Completely normal (P000014) AND NOT "$\\sigma$-compact" (P000017) +"$T_4$" (P000007) AND NOT Completely normal (P000014) AND NOT Lindelof (P000018) +"$T_4$" (P000007) AND NOT Completely normal (P000014) AND NOT Countably compact (P000019) +"$T_4$" (P000007) AND NOT Completely normal (P000014) AND NOT Weakly Countably Compact (P000021) +"$T_4$" (P000007) AND NOT Completely normal (P000014) AND NOT Pseudocompact (P000022) +"$T_4$" (P000007) AND NOT Completely normal (P000014) AND NOT Locally Compact (P000023) +"$T_4$" (P000007) AND NOT Completely normal (P000014) AND NOT Strongly Locally Compact (P000024) +"$T_4$" (P000007) AND NOT Completely normal (P000014) AND NOT "$\\sigma$-Locally Compact" (P000025) +"$T_4$" (P000007) AND NOT Completely normal (P000014) AND First Countable (P000028) +"$T_4$" (P000007) AND NOT Completely normal (P000014) AND NOT Paracompact (P000030) +"$T_4$" (P000007) AND NOT Completely normal (P000014) AND NOT Metacompact (P000031) +"$T_4$" (P000007) AND NOT Completely normal (P000014) AND NOT Fully normal (P000034) +"$T_4$" (P000007) AND NOT Completely normal (P000014) AND NOT Fully $T_4$ (P000035) +"$T_4$" (P000007) AND NOT Completely normal (P000014) AND Locally Connected (P000041) +"$T_4$" (P000007) AND NOT Completely normal (P000014) AND Locally Path Connected (P000042) +"$T_4$" (P000007) AND NOT Completely normal (P000014) AND Locally Arc Connected (P000043) +"$T_4$" (P000007) AND NOT Completely normal (P000014) AND Biconnected (P000044) +"$T_4$" (P000007) AND NOT Completely normal (P000014) AND Has Dispersion Point (P000045) +"$T_4$" (P000007) AND NOT Completely normal (P000014) AND "$\\sigma$-Locally Finite Base" (P000054) +"$T_4$" (P000007) AND NOT Completely normal (P000014) AND NOT Non-meager (P000056) +"$T_4$" (P000007) AND NOT Completely normal (P000014) AND Countable (P000057) +"$T_4$" (P000007) AND NOT Completely normal (P000014) AND Smaller than the continuum (P000058) +"$T_4$" (P000007) AND NOT Completely normal (P000014) AND NOT Baire (P000064) +"$T_4$" (P000007) AND NOT Completely normal (P000014) AND NOT Continuum-sized (P000065) +"$T_4$" (P000007) AND NOT Completely normal (P000014) AND NOT Menger (P000066) +"$T_4$" (P000007) AND NOT Completely normal (P000014) AND NOT Rothberger (P000068) +"$T_4$" (P000007) AND NOT Completely normal (P000014) AND NOT Strategic Menger (P000069) +"$T_4$" (P000007) AND NOT Completely normal (P000014) AND NOT Markov Menger (P000070) +"$T_4$" (P000007) AND NOT Completely normal (P000014) AND NOT "$\\sigma$-relatively-compact" (P000071) +"$T_4$" (P000007) AND NOT Completely normal (P000014) AND NOT 2-Markov Menger (P000072) +"$T_4$" (P000007) AND NOT Completely normal (P000014) AND NOT Spectral space (P000075) +"$T_4$" (P000007) AND NOT Completely normal (P000014) AND sequential (P000079) +"$T_4$" (P000007) AND NOT Completely normal (P000014) AND Fréchet Urysohn (P000080) +"$T_4$" (P000007) AND NOT Completely normal (P000014) AND Countably tight (P000081) +"$T_4$" (P000007) AND NOT Completely normal (P000014) AND Strongly KC (P000103) +"$T_4$" (P000007) AND NOT Completely normal (P000014) AND NOT Hemicompact (P000111) +"$T_4$" (P000007) AND NOT Perfectly Normal (P000015) AND Second Countable (P000027) +"$T_4$" (P000007) AND NOT Perfectly Normal (P000015) AND Locally Path Connected (P000042) +"$T_4$" (P000007) AND NOT Perfectly Normal (P000015) AND Locally Arc Connected (P000043) +"$T_4$" (P000007) AND NOT Perfectly Normal (P000015) AND Biconnected (P000044) +"$T_4$" (P000007) AND NOT Perfectly Normal (P000015) AND Has Dispersion Point (P000045) +"$T_4$" (P000007) AND NOT Perfectly Normal (P000015) AND "$\\sigma$-Locally Finite Base" (P000054) +"$T_4$" (P000007) AND NOT Perfectly Normal (P000015) AND NOT Non-meager (P000056) +"$T_4$" (P000007) AND NOT Perfectly Normal (P000015) AND Countable (P000057) +"$T_4$" (P000007) AND NOT Perfectly Normal (P000015) AND Smaller than the continuum (P000058) +"$T_4$" (P000007) AND NOT Perfectly Normal (P000015) AND NOT Baire (P000064) +"$T_4$" (P000007) AND NOT Perfectly Normal (P000015) AND NOT Continuum-sized (P000065) +"$T_4$" (P000007) AND NOT Perfectly Normal (P000015) AND Finite (P000078) +"$T_4$" (P000007) AND Compact (P000016) AND Biconnected (P000044) +"$T_4$" (P000007) AND Compact (P000016) AND Has Dispersion Point (P000045) +"$T_4$" (P000007) AND Compact (P000016) AND NOT Spectral space (P000075) +"$T_4$" (P000007) AND "$\\sigma$-compact" (P000017) AND Biconnected (P000044) +"$T_4$" (P000007) AND "$\\sigma$-compact" (P000017) AND Has Dispersion Point (P000045) +"$T_4$" (P000007) AND NOT "$\\sigma$-compact" (P000017) AND Biconnected (P000044) +"$T_4$" (P000007) AND NOT "$\\sigma$-compact" (P000017) AND Has Dispersion Point (P000045) +"$T_4$" (P000007) AND NOT Lindelof (P000018) AND Separable (P000026) +"$T_4$" (P000007) AND NOT Lindelof (P000018) AND Countable chain condition (P000029) +"$T_4$" (P000007) AND NOT Lindelof (P000018) AND Biconnected (P000044) +"$T_4$" (P000007) AND NOT Lindelof (P000018) AND Has Dispersion Point (P000045) +"$T_4$" (P000007) AND NOT Lindelof (P000018) AND Weakly Lindelof (P000062) +"$T_4$" (P000007) AND Countably compact (P000019) AND NOT Locally Compact (P000023) +"$T_4$" (P000007) AND Countably compact (P000019) AND NOT Strongly Locally Compact (P000024) +"$T_4$" (P000007) AND Countably compact (P000019) AND Biconnected (P000044) +"$T_4$" (P000007) AND Countably compact (P000019) AND Has Dispersion Point (P000045) +"$T_4$" (P000007) AND Countably compact (P000019) AND NOT Non-meager (P000056) +"$T_4$" (P000007) AND Countably compact (P000019) AND NOT Baire (P000064) +"$T_4$" (P000007) AND NOT Countably compact (P000019) AND NOT Metacompact (P000031) +"$T_4$" (P000007) AND Sequentially Compact (P000020) AND NOT Locally Compact (P000023) +"$T_4$" (P000007) AND Sequentially Compact (P000020) AND NOT Strongly Locally Compact (P000024) +"$T_4$" (P000007) AND Sequentially Compact (P000020) AND Biconnected (P000044) +"$T_4$" (P000007) AND Sequentially Compact (P000020) AND Has Dispersion Point (P000045) +"$T_4$" (P000007) AND Sequentially Compact (P000020) AND NOT Non-meager (P000056) +"$T_4$" (P000007) AND Sequentially Compact (P000020) AND NOT Baire (P000064) +"$T_4$" (P000007) AND NOT Sequentially Compact (P000020) AND NOT Metacompact (P000031) +"$T_4$" (P000007) AND Weakly Countably Compact (P000021) AND NOT Locally Compact (P000023) +"$T_4$" (P000007) AND Weakly Countably Compact (P000021) AND NOT Strongly Locally Compact (P000024) +"$T_4$" (P000007) AND Weakly Countably Compact (P000021) AND Biconnected (P000044) +"$T_4$" (P000007) AND Weakly Countably Compact (P000021) AND Has Dispersion Point (P000045) +"$T_4$" (P000007) AND Weakly Countably Compact (P000021) AND NOT Non-meager (P000056) +"$T_4$" (P000007) AND Weakly Countably Compact (P000021) AND NOT Baire (P000064) +"$T_4$" (P000007) AND NOT Weakly Countably Compact (P000021) AND NOT Metacompact (P000031) +"$T_4$" (P000007) AND Pseudocompact (P000022) AND NOT Locally Compact (P000023) +"$T_4$" (P000007) AND Pseudocompact (P000022) AND NOT Strongly Locally Compact (P000024) +"$T_4$" (P000007) AND Pseudocompact (P000022) AND Biconnected (P000044) +"$T_4$" (P000007) AND Pseudocompact (P000022) AND Has Dispersion Point (P000045) +"$T_4$" (P000007) AND Pseudocompact (P000022) AND NOT Non-meager (P000056) +"$T_4$" (P000007) AND Pseudocompact (P000022) AND NOT Baire (P000064) +"$T_4$" (P000007) AND NOT Pseudocompact (P000022) AND NOT Metacompact (P000031) +"$T_4$" (P000007) AND Locally Compact (P000023) AND Biconnected (P000044) +"$T_4$" (P000007) AND Locally Compact (P000023) AND Has Dispersion Point (P000045) +"$T_4$" (P000007) AND NOT Locally Compact (P000023) AND NOT Paracompact (P000030) +"$T_4$" (P000007) AND NOT Locally Compact (P000023) AND NOT Metacompact (P000031) +"$T_4$" (P000007) AND NOT Locally Compact (P000023) AND NOT Fully normal (P000034) +"$T_4$" (P000007) AND NOT Locally Compact (P000023) AND NOT Fully $T_4$ (P000035) +"$T_4$" (P000007) AND Strongly Locally Compact (P000024) AND Biconnected (P000044) +"$T_4$" (P000007) AND Strongly Locally Compact (P000024) AND Has Dispersion Point (P000045) +"$T_4$" (P000007) AND NOT Strongly Locally Compact (P000024) AND NOT Paracompact (P000030) +"$T_4$" (P000007) AND NOT Strongly Locally Compact (P000024) AND NOT Metacompact (P000031) +"$T_4$" (P000007) AND NOT Strongly Locally Compact (P000024) AND NOT Fully normal (P000034) +"$T_4$" (P000007) AND NOT Strongly Locally Compact (P000024) AND NOT Fully $T_4$ (P000035) +"$T_4$" (P000007) AND NOT Strongly Locally Compact (P000024) AND Hemicompact (P000111) +"$T_4$" (P000007) AND "$\\sigma$-Locally Compact" (P000025) AND Biconnected (P000044) +"$T_4$" (P000007) AND "$\\sigma$-Locally Compact" (P000025) AND Has Dispersion Point (P000045) +"$T_4$" (P000007) AND Separable (P000026) AND NOT Paracompact (P000030) +"$T_4$" (P000007) AND Separable (P000026) AND NOT Metacompact (P000031) +"$T_4$" (P000007) AND Separable (P000026) AND NOT Fully normal (P000034) +"$T_4$" (P000007) AND Separable (P000026) AND NOT Fully $T_4$ (P000035) +"$T_4$" (P000007) AND Separable (P000026) AND NOT Menger (P000066) +"$T_4$" (P000007) AND Separable (P000026) AND NOT Rothberger (P000068) +"$T_4$" (P000007) AND NOT Separable (P000026) AND Biconnected (P000044) +"$T_4$" (P000007) AND NOT Separable (P000026) AND Has Dispersion Point (P000045) +"$T_4$" (P000007) AND Second Countable (P000027) AND NOT "$T_6$" (P000067) +"$T_4$" (P000007) AND Second Countable (P000027) AND NOT Topological manifold (P000124) +"$T_4$" (P000007) AND NOT Second Countable (P000027) AND Biconnected (P000044) +"$T_4$" (P000007) AND NOT Second Countable (P000027) AND Has Dispersion Point (P000045) +"$T_4$" (P000007) AND NOT First Countable (P000028) AND NOT Paracompact (P000030) +"$T_4$" (P000007) AND NOT First Countable (P000028) AND NOT Metacompact (P000031) +"$T_4$" (P000007) AND NOT First Countable (P000028) AND NOT Fully normal (P000034) +"$T_4$" (P000007) AND NOT First Countable (P000028) AND NOT Fully $T_4$ (P000035) +"$T_4$" (P000007) AND NOT First Countable (P000028) AND Biconnected (P000044) +"$T_4$" (P000007) AND NOT First Countable (P000028) AND Has Dispersion Point (P000045) +"$T_4$" (P000007) AND NOT First Countable (P000028) AND NOT Non-meager (P000056) +"$T_4$" (P000007) AND NOT First Countable (P000028) AND NOT Baire (P000064) +"$T_4$" (P000007) AND Countable chain condition (P000029) AND NOT Paracompact (P000030) +"$T_4$" (P000007) AND Countable chain condition (P000029) AND NOT Metacompact (P000031) +"$T_4$" (P000007) AND Countable chain condition (P000029) AND NOT Fully normal (P000034) +"$T_4$" (P000007) AND Countable chain condition (P000029) AND NOT Fully $T_4$ (P000035) +"$T_4$" (P000007) AND Countable chain condition (P000029) AND NOT Menger (P000066) +"$T_4$" (P000007) AND Countable chain condition (P000029) AND NOT Rothberger (P000068) +"$T_4$" (P000007) AND NOT Countable chain condition (P000029) AND Biconnected (P000044) +"$T_4$" (P000007) AND NOT Countable chain condition (P000029) AND Has Dispersion Point (P000045) +"$T_4$" (P000007) AND NOT Paracompact (P000030) AND Biconnected (P000044) +"$T_4$" (P000007) AND NOT Paracompact (P000030) AND Has Dispersion Point (P000045) +"$T_4$" (P000007) AND NOT Paracompact (P000030) AND Extremally Disconnected (P000049) +"$T_4$" (P000007) AND NOT Paracompact (P000030) AND NOT Non-meager (P000056) +"$T_4$" (P000007) AND NOT Paracompact (P000030) AND Smaller than the continuum (P000058) +"$T_4$" (P000007) AND NOT Paracompact (P000030) AND Cozero complemented (P000061) +"$T_4$" (P000007) AND NOT Paracompact (P000030) AND Weakly Lindelof (P000062) +"$T_4$" (P000007) AND NOT Paracompact (P000030) AND NOT Baire (P000064) +"$T_4$" (P000007) AND NOT Metacompact (P000031) AND Biconnected (P000044) +"$T_4$" (P000007) AND NOT Metacompact (P000031) AND Has Dispersion Point (P000045) +"$T_4$" (P000007) AND NOT Metacompact (P000031) AND Extremally Disconnected (P000049) +"$T_4$" (P000007) AND NOT Metacompact (P000031) AND NOT Non-meager (P000056) +"$T_4$" (P000007) AND NOT Metacompact (P000031) AND Smaller than the continuum (P000058) +"$T_4$" (P000007) AND NOT Metacompact (P000031) AND Cozero complemented (P000061) +"$T_4$" (P000007) AND NOT Metacompact (P000031) AND Weakly Lindelof (P000062) +"$T_4$" (P000007) AND NOT Metacompact (P000031) AND NOT Baire (P000064) +"$T_4$" (P000007) AND NOT Fully normal (P000034) AND Biconnected (P000044) +"$T_4$" (P000007) AND NOT Fully normal (P000034) AND Has Dispersion Point (P000045) +"$T_4$" (P000007) AND NOT Fully normal (P000034) AND Extremally Disconnected (P000049) +"$T_4$" (P000007) AND NOT Fully normal (P000034) AND NOT Non-meager (P000056) +"$T_4$" (P000007) AND NOT Fully normal (P000034) AND Smaller than the continuum (P000058) +"$T_4$" (P000007) AND NOT Fully normal (P000034) AND Cozero complemented (P000061) +"$T_4$" (P000007) AND NOT Fully normal (P000034) AND Weakly Lindelof (P000062) +"$T_4$" (P000007) AND NOT Fully normal (P000034) AND NOT Baire (P000064) +"$T_4$" (P000007) AND NOT Fully $T_4$ (P000035) AND Biconnected (P000044) +"$T_4$" (P000007) AND NOT Fully $T_4$ (P000035) AND Has Dispersion Point (P000045) +"$T_4$" (P000007) AND NOT Fully $T_4$ (P000035) AND Extremally Disconnected (P000049) +"$T_4$" (P000007) AND NOT Fully $T_4$ (P000035) AND NOT Non-meager (P000056) +"$T_4$" (P000007) AND NOT Fully $T_4$ (P000035) AND Smaller than the continuum (P000058) +"$T_4$" (P000007) AND NOT Fully $T_4$ (P000035) AND Cozero complemented (P000061) +"$T_4$" (P000007) AND NOT Fully $T_4$ (P000035) AND Weakly Lindelof (P000062) +"$T_4$" (P000007) AND NOT Fully $T_4$ (P000035) AND NOT Baire (P000064) +"$T_4$" (P000007) AND Connected (P000036) AND Zero Dimensional (P000050) +"$T_4$" (P000007) AND Connected (P000036) AND Scattered (P000051) +"$T_4$" (P000007) AND Connected (P000036) AND Countable (P000057) +"$T_4$" (P000007) AND Connected (P000036) AND Smaller than the continuum (P000058) +"$T_4$" (P000007) AND Connected (P000036) AND NOT Continuum-sized (P000065) +"$T_4$" (P000007) AND Connected (P000036) AND Finite (P000078) +"$T_4$" (P000007) AND Connected (P000036) AND NOT homogenous (P000086) +"$T_4$" (P000007) AND Path Connected (P000037) AND NOT Arc connected (P000038) +"$T_4$" (P000007) AND Path Connected (P000037) AND Biconnected (P000044) +"$T_4$" (P000007) AND Path Connected (P000037) AND Has Dispersion Point (P000045) +"$T_4$" (P000007) AND Path Connected (P000037) AND Zero Dimensional (P000050) +"$T_4$" (P000007) AND Path Connected (P000037) AND Scattered (P000051) +"$T_4$" (P000007) AND Path Connected (P000037) AND Countable (P000057) +"$T_4$" (P000007) AND Path Connected (P000037) AND Smaller than the continuum (P000058) +"$T_4$" (P000007) AND Path Connected (P000037) AND NOT Continuum-sized (P000065) +"$T_4$" (P000007) AND Path Connected (P000037) AND Finite (P000078) +"$T_4$" (P000007) AND Path Connected (P000037) AND NOT homogenous (P000086) +"$T_4$" (P000007) AND Locally Connected (P000041) AND Biconnected (P000044) +"$T_4$" (P000007) AND Locally Connected (P000041) AND Has Dispersion Point (P000045) +"$T_4$" (P000007) AND Locally Connected (P000041) AND NOT homogenous (P000086) +"$T_4$" (P000007) AND Locally Path Connected (P000042) AND NOT Locally Arc Connected (P000043) +"$T_4$" (P000007) AND Locally Path Connected (P000042) AND Biconnected (P000044) +"$T_4$" (P000007) AND Locally Path Connected (P000042) AND Has Dispersion Point (P000045) +"$T_4$" (P000007) AND Locally Path Connected (P000042) AND NOT "$T_6$" (P000067) +"$T_4$" (P000007) AND Locally Path Connected (P000042) AND NOT homogenous (P000086) +"$T_4$" (P000007) AND Locally Arc Connected (P000043) AND NOT "$T_6$" (P000067) +"$T_4$" (P000007) AND Biconnected (P000044) AND Totally Path Disconnected (P000046) +"$T_4$" (P000007) AND Biconnected (P000044) AND NOT Totally Path Disconnected (P000046) +"$T_4$" (P000007) AND Biconnected (P000044) AND Scattered (P000051) +"$T_4$" (P000007) AND Biconnected (P000044) AND NOT Metrizable (P000053) +"$T_4$" (P000007) AND Biconnected (P000044) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +"$T_4$" (P000007) AND Biconnected (P000044) AND NOT Completely metrizable (P000055) +"$T_4$" (P000007) AND Biconnected (P000044) AND Non-meager (P000056) +"$T_4$" (P000007) AND Biconnected (P000044) AND NOT Non-meager (P000056) +"$T_4$" (P000007) AND Biconnected (P000044) AND Countable (P000057) +"$T_4$" (P000007) AND Biconnected (P000044) AND Smaller than the continuum (P000058) +"$T_4$" (P000007) AND Biconnected (P000044) AND NOT Baire (P000064) +"$T_4$" (P000007) AND Biconnected (P000044) AND NOT Continuum-sized (P000065) +"$T_4$" (P000007) AND Biconnected (P000044) AND Menger (P000066) +"$T_4$" (P000007) AND Biconnected (P000044) AND NOT Menger (P000066) +"$T_4$" (P000007) AND Biconnected (P000044) AND NOT "$T_6$" (P000067) +"$T_4$" (P000007) AND Biconnected (P000044) AND NOT Rothberger (P000068) +"$T_4$" (P000007) AND Biconnected (P000044) AND Strategic Menger (P000069) +"$T_4$" (P000007) AND Biconnected (P000044) AND NOT Strategic Menger (P000069) +"$T_4$" (P000007) AND Biconnected (P000044) AND Markov Menger (P000070) +"$T_4$" (P000007) AND Biconnected (P000044) AND NOT Markov Menger (P000070) +"$T_4$" (P000007) AND Biconnected (P000044) AND "$\\sigma$-relatively-compact" (P000071) +"$T_4$" (P000007) AND Biconnected (P000044) AND NOT "$\\sigma$-relatively-compact" (P000071) +"$T_4$" (P000007) AND Biconnected (P000044) AND 2-Markov Menger (P000072) +"$T_4$" (P000007) AND Biconnected (P000044) AND NOT 2-Markov Menger (P000072) +"$T_4$" (P000007) AND Biconnected (P000044) AND Finite (P000078) +"$T_4$" (P000007) AND Biconnected (P000044) AND NOT homogenous (P000086) +"$T_4$" (P000007) AND Biconnected (P000044) AND Hemicompact (P000111) +"$T_4$" (P000007) AND Biconnected (P000044) AND NOT Hemicompact (P000111) +"$T_4$" (P000007) AND Biconnected (P000044) AND NOT Topological manifold (P000124) +"$T_4$" (P000007) AND Has Dispersion Point (P000045) AND Totally Path Disconnected (P000046) +"$T_4$" (P000007) AND Has Dispersion Point (P000045) AND NOT Totally Path Disconnected (P000046) +"$T_4$" (P000007) AND Has Dispersion Point (P000045) AND Scattered (P000051) +"$T_4$" (P000007) AND Has Dispersion Point (P000045) AND NOT Metrizable (P000053) +"$T_4$" (P000007) AND Has Dispersion Point (P000045) AND NOT "$\\sigma$-Locally Finite Base" (P000054) +"$T_4$" (P000007) AND Has Dispersion Point (P000045) AND NOT Completely metrizable (P000055) +"$T_4$" (P000007) AND Has Dispersion Point (P000045) AND Non-meager (P000056) +"$T_4$" (P000007) AND Has Dispersion Point (P000045) AND NOT Non-meager (P000056) +"$T_4$" (P000007) AND Has Dispersion Point (P000045) AND Countable (P000057) +"$T_4$" (P000007) AND Has Dispersion Point (P000045) AND Smaller than the continuum (P000058) +"$T_4$" (P000007) AND Has Dispersion Point (P000045) AND NOT Baire (P000064) +"$T_4$" (P000007) AND Has Dispersion Point (P000045) AND NOT Continuum-sized (P000065) +"$T_4$" (P000007) AND Has Dispersion Point (P000045) AND Menger (P000066) +"$T_4$" (P000007) AND Has Dispersion Point (P000045) AND NOT Menger (P000066) +"$T_4$" (P000007) AND Has Dispersion Point (P000045) AND NOT "$T_6$" (P000067) +"$T_4$" (P000007) AND Has Dispersion Point (P000045) AND NOT Rothberger (P000068) +"$T_4$" (P000007) AND Has Dispersion Point (P000045) AND Strategic Menger (P000069) +"$T_4$" (P000007) AND Has Dispersion Point (P000045) AND NOT Strategic Menger (P000069) +"$T_4$" (P000007) AND Has Dispersion Point (P000045) AND Markov Menger (P000070) +"$T_4$" (P000007) AND Has Dispersion Point (P000045) AND NOT Markov Menger (P000070) +"$T_4$" (P000007) AND Has Dispersion Point (P000045) AND "$\\sigma$-relatively-compact" (P000071) +"$T_4$" (P000007) AND Has Dispersion Point (P000045) AND NOT "$\\sigma$-relatively-compact" (P000071) +"$T_4$" (P000007) AND Has Dispersion Point (P000045) AND 2-Markov Menger (P000072) +"$T_4$" (P000007) AND Has Dispersion Point (P000045) AND NOT 2-Markov Menger (P000072) +"$T_4$" (P000007) AND Has Dispersion Point (P000045) AND Finite (P000078) +"$T_4$" (P000007) AND Has Dispersion Point (P000045) AND NOT homogenous (P000086) +"$T_4$" (P000007) AND Has Dispersion Point (P000045) AND Hemicompact (P000111) +"$T_4$" (P000007) AND Has Dispersion Point (P000045) AND NOT Hemicompact (P000111) +"$T_4$" (P000007) AND Has Dispersion Point (P000045) AND NOT Topological manifold (P000124) +"$T_4$" (P000007) AND NOT Totally Path Disconnected (P000046) AND Countable (P000057) +"$T_4$" (P000007) AND NOT Totally Path Disconnected (P000046) AND Smaller than the continuum (P000058) +"$T_4$" (P000007) AND NOT Totally Path Disconnected (P000046) AND NOT Continuum-sized (P000065) +"$T_4$" (P000007) AND NOT Totally Path Disconnected (P000046) AND NOT homogenous (P000086) +"$T_4$" (P000007) AND NOT Totally Disconnected (P000047) AND Countable (P000057) +"$T_4$" (P000007) AND NOT Totally Disconnected (P000047) AND Smaller than the continuum (P000058) +"$T_4$" (P000007) AND NOT Totally Disconnected (P000047) AND NOT Continuum-sized (P000065) +"$T_4$" (P000007) AND NOT Totally Disconnected (P000047) AND NOT homogenous (P000086) +"$T_4$" (P000007) AND Totally Separated (P000048) AND NOT Zero Dimensional (P000050) +"$T_4$" (P000007) AND NOT Totally Separated (P000048) AND Scattered (P000051) +"$T_4$" (P000007) AND NOT Totally Separated (P000048) AND Countable (P000057) +"$T_4$" (P000007) AND NOT Totally Separated (P000048) AND Smaller than the continuum (P000058) +"$T_4$" (P000007) AND NOT Totally Separated (P000048) AND NOT Continuum-sized (P000065) +"$T_4$" (P000007) AND NOT Totally Separated (P000048) AND NOT homogenous (P000086) +"$T_4$" (P000007) AND Extremally Disconnected (P000049) AND NOT Zero Dimensional (P000050) +"$T_4$" (P000007) AND NOT Zero Dimensional (P000050) AND Scattered (P000051) +"$T_4$" (P000007) AND NOT Zero Dimensional (P000050) AND Countable (P000057) +"$T_4$" (P000007) AND NOT Zero Dimensional (P000050) AND Smaller than the continuum (P000058) +"$T_4$" (P000007) AND NOT Zero Dimensional (P000050) AND NOT Continuum-sized (P000065) +"$T_4$" (P000007) AND NOT Zero Dimensional (P000050) AND NOT homogenous (P000086) +"$T_4$" (P000007) AND "$\\sigma$-Locally Finite Base" (P000054) AND NOT "$T_6$" (P000067) +"$T_4$" (P000007) AND NOT Non-meager (P000056) AND NOT "$T_6$" (P000067) +"$T_4$" (P000007) AND NOT Non-meager (P000056) AND Hemicompact (P000111) +"$T_4$" (P000007) AND Countable (P000057) AND NOT "$T_6$" (P000067) +"$T_4$" (P000007) AND Countable (P000057) AND NOT Corson compact (P000077) +"$T_4$" (P000007) AND Countable (P000057) AND NOT Fréchet Urysohn (P000080) +"$T_4$" (P000007) AND Countable (P000057) AND NOT Eberlein compact (P000091) +"$T_4$" (P000007) AND Smaller than the continuum (P000058) AND NOT "$T_6$" (P000067) +"$T_4$" (P000007) AND Smaller than the continuum (P000058) AND NOT Corson compact (P000077) +"$T_4$" (P000007) AND Smaller than the continuum (P000058) AND NOT Fréchet Urysohn (P000080) +"$T_4$" (P000007) AND Smaller than the continuum (P000058) AND NOT Eberlein compact (P000091) +"$T_4$" (P000007) AND Weakly Lindelof (P000062) AND NOT Menger (P000066) +"$T_4$" (P000007) AND Weakly Lindelof (P000062) AND NOT Rothberger (P000068) +"$T_4$" (P000007) AND NOT Baire (P000064) AND NOT "$T_6$" (P000067) +"$T_4$" (P000007) AND NOT Baire (P000064) AND Hemicompact (P000111) +"$T_4$" (P000007) AND NOT Continuum-sized (P000065) AND NOT "$T_6$" (P000067) +"$T_4$" (P000007) AND NOT Continuum-sized (P000065) AND NOT Corson compact (P000077) +"$T_4$" (P000007) AND NOT Continuum-sized (P000065) AND NOT Fréchet Urysohn (P000080) +"$T_4$" (P000007) AND NOT Continuum-sized (P000065) AND NOT Eberlein compact (P000091) +"$T_4$" (P000007) AND NOT "$T_6$" (P000067) AND Finite (P000078) +"$T_4$" (P000007) AND NOT Corson compact (P000077) AND Countably tight (P000081) +"$T_4$" (P000007) AND Finite (P000078) AND NOT Topological manifold (P000124) +"$T_4$" (P000007) AND NOT Fréchet Urysohn (P000080) AND Countably tight (P000081) +"$T_4$" (P000007) AND Countably tight (P000081) AND NOT Eberlein compact (P000091) +NOT "$T_4$" (P000007) AND Completely Hausdorff (P000009) AND Biconnected (P000044) +NOT "$T_4$" (P000007) AND Completely Hausdorff (P000009) AND Has Dispersion Point (P000045) +NOT "$T_4$" (P000007) AND Completely Hausdorff (P000009) AND Hemicompact (P000111) +NOT "$T_4$" (P000007) AND Semiregular (P000010) AND Biconnected (P000044) +NOT "$T_4$" (P000007) AND Semiregular (P000010) AND Has Dispersion Point (P000045) +NOT "$T_4$" (P000007) AND Semiregular (P000010) AND Extremally Disconnected (P000049) +NOT "$T_4$" (P000007) AND Semiregular (P000010) AND Finite (P000078) +NOT "$T_4$" (P000007) AND Regular (P000011) AND Biconnected (P000044) +NOT "$T_4$" (P000007) AND Regular (P000011) AND Has Dispersion Point (P000045) +NOT "$T_4$" (P000007) AND Regular (P000011) AND Extremally Disconnected (P000049) +NOT "$T_4$" (P000007) AND Regular (P000011) AND Finite (P000078) +NOT "$T_4$" (P000007) AND Completely regular (P000012) AND Biconnected (P000044) +NOT "$T_4$" (P000007) AND Completely regular (P000012) AND Has Dispersion Point (P000045) +NOT "$T_4$" (P000007) AND Completely regular (P000012) AND Extremally Disconnected (P000049) +NOT "$T_4$" (P000007) AND Completely regular (P000012) AND Finite (P000078) +NOT "$T_4$" (P000007) AND Normal (P000013) AND NOT "$\\sigma$-compact" (P000017) +NOT "$T_4$" (P000007) AND Normal (P000013) AND NOT Lindelof (P000018) +NOT "$T_4$" (P000007) AND Normal (P000013) AND NOT Locally Compact (P000023) +NOT "$T_4$" (P000007) AND Normal (P000013) AND NOT "$\\sigma$-Locally Compact" (P000025) +NOT "$T_4$" (P000007) AND Normal (P000013) AND NOT First Countable (P000028) +NOT "$T_4$" (P000007) AND Normal (P000013) AND Totally Path Disconnected (P000046) +NOT "$T_4$" (P000007) AND Normal (P000013) AND Čech complete (P000063) +NOT "$T_4$" (P000007) AND Normal (P000013) AND Baire (P000064) +NOT "$T_4$" (P000007) AND Normal (P000013) AND NOT Menger (P000066) +NOT "$T_4$" (P000007) AND Normal (P000013) AND NOT Rothberger (P000068) +NOT "$T_4$" (P000007) AND Normal (P000013) AND NOT Strategic Menger (P000069) +NOT "$T_4$" (P000007) AND Normal (P000013) AND NOT Markov Menger (P000070) +NOT "$T_4$" (P000007) AND Normal (P000013) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_4$" (P000007) AND Normal (P000013) AND NOT 2-Markov Menger (P000072) +NOT "$T_4$" (P000007) AND Normal (P000013) AND Sober (P000073) +NOT "$T_4$" (P000007) AND Normal (P000013) AND NOT Anti-Hausdorff (P000101) +NOT "$T_4$" (P000007) AND Normal (P000013) AND NOT Hemicompact (P000111) +NOT "$T_4$" (P000007) AND Completely normal (P000014) AND NOT "$\\sigma$-compact" (P000017) +NOT "$T_4$" (P000007) AND Completely normal (P000014) AND NOT Lindelof (P000018) +NOT "$T_4$" (P000007) AND Completely normal (P000014) AND NOT Locally Compact (P000023) +NOT "$T_4$" (P000007) AND Completely normal (P000014) AND NOT "$\\sigma$-Locally Compact" (P000025) +NOT "$T_4$" (P000007) AND Completely normal (P000014) AND NOT First Countable (P000028) +NOT "$T_4$" (P000007) AND Completely normal (P000014) AND Totally Path Disconnected (P000046) +NOT "$T_4$" (P000007) AND Completely normal (P000014) AND Čech complete (P000063) +NOT "$T_4$" (P000007) AND Completely normal (P000014) AND Baire (P000064) +NOT "$T_4$" (P000007) AND Completely normal (P000014) AND NOT Menger (P000066) +NOT "$T_4$" (P000007) AND Completely normal (P000014) AND NOT Rothberger (P000068) +NOT "$T_4$" (P000007) AND Completely normal (P000014) AND NOT Strategic Menger (P000069) +NOT "$T_4$" (P000007) AND Completely normal (P000014) AND NOT Markov Menger (P000070) +NOT "$T_4$" (P000007) AND Completely normal (P000014) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_4$" (P000007) AND Completely normal (P000014) AND NOT 2-Markov Menger (P000072) +NOT "$T_4$" (P000007) AND Completely normal (P000014) AND Sober (P000073) +NOT "$T_4$" (P000007) AND Completely normal (P000014) AND NOT Anti-Hausdorff (P000101) +NOT "$T_4$" (P000007) AND Completely normal (P000014) AND NOT Hemicompact (P000111) +NOT "$T_4$" (P000007) AND NOT Completely normal (P000014) AND Fully normal (P000034) +NOT "$T_4$" (P000007) AND Compact (P000016) AND NOT Sequentially Compact (P000020) +NOT "$T_4$" (P000007) AND Compact (P000016) AND Čech complete (P000063) +NOT "$T_4$" (P000007) AND Compact (P000016) AND Baire (P000064) +NOT "$T_4$" (P000007) AND Compact (P000016) AND Sober (P000073) +NOT "$T_4$" (P000007) AND Compact (P000016) AND locally Hausdorff (P000084) +NOT "$T_4$" (P000007) AND Compact (P000016) AND Sequentially Hausdorff (P000099) +NOT "$T_4$" (P000007) AND Compact (P000016) AND KC (P000100) +NOT "$T_4$" (P000007) AND Compact (P000016) AND NOT Anti-Hausdorff (P000101) +NOT "$T_4$" (P000007) AND Compact (P000016) AND Strongly KC (P000103) +NOT "$T_4$" (P000007) AND "$\\sigma$-compact" (P000017) AND Extremally Disconnected (P000049) +NOT "$T_4$" (P000007) AND "$\\sigma$-compact" (P000017) AND Čech complete (P000063) +NOT "$T_4$" (P000007) AND "$\\sigma$-compact" (P000017) AND Baire (P000064) +NOT "$T_4$" (P000007) AND NOT "$\\sigma$-compact" (P000017) AND Paracompact (P000030) +NOT "$T_4$" (P000007) AND NOT "$\\sigma$-compact" (P000017) AND Fully normal (P000034) +NOT "$T_4$" (P000007) AND NOT "$\\sigma$-compact" (P000017) AND NOT Continuum-sized (P000065) +NOT "$T_4$" (P000007) AND NOT "$\\sigma$-compact" (P000017) AND Menger (P000066) +NOT "$T_4$" (P000007) AND Lindelof (P000018) AND Extremally Disconnected (P000049) +NOT "$T_4$" (P000007) AND Lindelof (P000018) AND Čech complete (P000063) +NOT "$T_4$" (P000007) AND Lindelof (P000018) AND Baire (P000064) +NOT "$T_4$" (P000007) AND Lindelof (P000018) AND NOT Strategic Menger (P000069) +NOT "$T_4$" (P000007) AND Lindelof (P000018) AND NOT Markov Menger (P000070) +NOT "$T_4$" (P000007) AND Lindelof (P000018) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_4$" (P000007) AND Lindelof (P000018) AND NOT 2-Markov Menger (P000072) +NOT "$T_4$" (P000007) AND NOT Lindelof (P000018) AND Paracompact (P000030) +NOT "$T_4$" (P000007) AND NOT Lindelof (P000018) AND Fully normal (P000034) +NOT "$T_4$" (P000007) AND NOT Lindelof (P000018) AND "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_4$" (P000007) AND NOT Lindelof (P000018) AND NOT Continuum-sized (P000065) +NOT "$T_4$" (P000007) AND Countably compact (P000019) AND NOT Sequentially Compact (P000020) +NOT "$T_4$" (P000007) AND Countably compact (P000019) AND Totally Separated (P000048) +NOT "$T_4$" (P000007) AND Countably compact (P000019) AND Extremally Disconnected (P000049) +NOT "$T_4$" (P000007) AND Countably compact (P000019) AND Cozero complemented (P000061) +NOT "$T_4$" (P000007) AND Countably compact (P000019) AND Strongly KC (P000103) +NOT "$T_4$" (P000007) AND Sequentially Compact (P000020) AND Totally Separated (P000048) +NOT "$T_4$" (P000007) AND Sequentially Compact (P000020) AND Extremally Disconnected (P000049) +NOT "$T_4$" (P000007) AND Sequentially Compact (P000020) AND Cozero complemented (P000061) +NOT "$T_4$" (P000007) AND Sequentially Compact (P000020) AND Čech complete (P000063) +NOT "$T_4$" (P000007) AND Sequentially Compact (P000020) AND Baire (P000064) +NOT "$T_4$" (P000007) AND Sequentially Compact (P000020) AND Strongly KC (P000103) +NOT "$T_4$" (P000007) AND Weakly Countably Compact (P000021) AND Totally Separated (P000048) +NOT "$T_4$" (P000007) AND Weakly Countably Compact (P000021) AND Extremally Disconnected (P000049) +NOT "$T_4$" (P000007) AND Weakly Countably Compact (P000021) AND Cozero complemented (P000061) +NOT "$T_4$" (P000007) AND Weakly Countably Compact (P000021) AND Strongly KC (P000103) +NOT "$T_4$" (P000007) AND Pseudocompact (P000022) AND Cozero complemented (P000061) +NOT "$T_4$" (P000007) AND NOT Pseudocompact (P000022) AND Biconnected (P000044) +NOT "$T_4$" (P000007) AND NOT Pseudocompact (P000022) AND Has Dispersion Point (P000045) +NOT "$T_4$" (P000007) AND NOT Pseudocompact (P000022) AND Extremally Disconnected (P000049) +NOT "$T_4$" (P000007) AND Locally Compact (P000023) AND Extremally Disconnected (P000049) +NOT "$T_4$" (P000007) AND NOT Locally Compact (P000023) AND Paracompact (P000030) +NOT "$T_4$" (P000007) AND NOT Locally Compact (P000023) AND Fully normal (P000034) +NOT "$T_4$" (P000007) AND NOT Locally Compact (P000023) AND Čech complete (P000063) +NOT "$T_4$" (P000007) AND NOT Locally Compact (P000023) AND Baire (P000064) +NOT "$T_4$" (P000007) AND Strongly Locally Compact (P000024) AND Extremally Disconnected (P000049) +NOT "$T_4$" (P000007) AND NOT Strongly Locally Compact (P000024) AND Paracompact (P000030) +NOT "$T_4$" (P000007) AND NOT Strongly Locally Compact (P000024) AND Fully normal (P000034) +NOT "$T_4$" (P000007) AND NOT Strongly Locally Compact (P000024) AND Čech complete (P000063) +NOT "$T_4$" (P000007) AND NOT Strongly Locally Compact (P000024) AND Baire (P000064) +NOT "$T_4$" (P000007) AND "$\\sigma$-Locally Compact" (P000025) AND Čech complete (P000063) +NOT "$T_4$" (P000007) AND "$\\sigma$-Locally Compact" (P000025) AND Baire (P000064) +NOT "$T_4$" (P000007) AND "$\\sigma$-Locally Compact" (P000025) AND Sober (P000073) +NOT "$T_4$" (P000007) AND "$\\sigma$-Locally Compact" (P000025) AND locally Hausdorff (P000084) +NOT "$T_4$" (P000007) AND "$\\sigma$-Locally Compact" (P000025) AND Sequentially Hausdorff (P000099) +NOT "$T_4$" (P000007) AND "$\\sigma$-Locally Compact" (P000025) AND KC (P000100) +NOT "$T_4$" (P000007) AND "$\\sigma$-Locally Compact" (P000025) AND NOT Anti-Hausdorff (P000101) +NOT "$T_4$" (P000007) AND "$\\sigma$-Locally Compact" (P000025) AND Strongly KC (P000103) +NOT "$T_4$" (P000007) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Paracompact (P000030) +NOT "$T_4$" (P000007) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Fully normal (P000034) +NOT "$T_4$" (P000007) AND NOT Separable (P000026) AND Arc connected (P000038) +NOT "$T_4$" (P000007) AND NOT Separable (P000026) AND Locally Arc Connected (P000043) +NOT "$T_4$" (P000007) AND NOT Separable (P000026) AND Extremally Disconnected (P000049) +NOT "$T_4$" (P000007) AND NOT Separable (P000026) AND "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_4$" (P000007) AND NOT Separable (P000026) AND Cozero complemented (P000061) +NOT "$T_4$" (P000007) AND NOT Separable (P000026) AND NOT Continuum-sized (P000065) +NOT "$T_4$" (P000007) AND NOT Separable (P000026) AND Strongly KC (P000103) +NOT "$T_4$" (P000007) AND Second Countable (P000027) AND Extremally Disconnected (P000049) +NOT "$T_4$" (P000007) AND Second Countable (P000027) AND Čech complete (P000063) +NOT "$T_4$" (P000007) AND Second Countable (P000027) AND Baire (P000064) +NOT "$T_4$" (P000007) AND Second Countable (P000027) AND NOT Strategic Menger (P000069) +NOT "$T_4$" (P000007) AND Second Countable (P000027) AND NOT Markov Menger (P000070) +NOT "$T_4$" (P000007) AND Second Countable (P000027) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_4$" (P000007) AND Second Countable (P000027) AND NOT 2-Markov Menger (P000072) +NOT "$T_4$" (P000007) AND NOT Second Countable (P000027) AND "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_4$" (P000007) AND First Countable (P000028) AND Extremally Disconnected (P000049) +NOT "$T_4$" (P000007) AND NOT First Countable (P000028) AND Fully normal (P000034) +NOT "$T_4$" (P000007) AND NOT First Countable (P000028) AND sequential (P000079) +NOT "$T_4$" (P000007) AND NOT First Countable (P000028) AND Fréchet Urysohn (P000080) +NOT "$T_4$" (P000007) AND NOT First Countable (P000028) AND Strongly KC (P000103) +NOT "$T_4$" (P000007) AND NOT Countable chain condition (P000029) AND Arc connected (P000038) +NOT "$T_4$" (P000007) AND NOT Countable chain condition (P000029) AND Locally Arc Connected (P000043) +NOT "$T_4$" (P000007) AND NOT Countable chain condition (P000029) AND Extremally Disconnected (P000049) +NOT "$T_4$" (P000007) AND NOT Countable chain condition (P000029) AND "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_4$" (P000007) AND NOT Countable chain condition (P000029) AND Cozero complemented (P000061) +NOT "$T_4$" (P000007) AND NOT Countable chain condition (P000029) AND Strongly KC (P000103) +NOT "$T_4$" (P000007) AND Paracompact (P000030) AND Čech complete (P000063) +NOT "$T_4$" (P000007) AND Paracompact (P000030) AND Baire (P000064) +NOT "$T_4$" (P000007) AND Paracompact (P000030) AND NOT Menger (P000066) +NOT "$T_4$" (P000007) AND Paracompact (P000030) AND NOT Rothberger (P000068) +NOT "$T_4$" (P000007) AND Paracompact (P000030) AND NOT Strategic Menger (P000069) +NOT "$T_4$" (P000007) AND Paracompact (P000030) AND NOT Markov Menger (P000070) +NOT "$T_4$" (P000007) AND Paracompact (P000030) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_4$" (P000007) AND Paracompact (P000030) AND NOT 2-Markov Menger (P000072) +NOT "$T_4$" (P000007) AND Paracompact (P000030) AND Sober (P000073) +NOT "$T_4$" (P000007) AND Paracompact (P000030) AND locally Hausdorff (P000084) +NOT "$T_4$" (P000007) AND Paracompact (P000030) AND Sequentially Hausdorff (P000099) +NOT "$T_4$" (P000007) AND Paracompact (P000030) AND KC (P000100) +NOT "$T_4$" (P000007) AND Paracompact (P000030) AND NOT Anti-Hausdorff (P000101) +NOT "$T_4$" (P000007) AND Paracompact (P000030) AND Strongly KC (P000103) +NOT "$T_4$" (P000007) AND Paracompact (P000030) AND NOT Hemicompact (P000111) +NOT "$T_4$" (P000007) AND Metacompact (P000031) AND Extremally Disconnected (P000049) +NOT "$T_4$" (P000007) AND Metacompact (P000031) AND Cozero complemented (P000061) +NOT "$T_4$" (P000007) AND Countably paracompact (P000032) AND Totally Separated (P000048) +NOT "$T_4$" (P000007) AND Countably paracompact (P000032) AND Extremally Disconnected (P000049) +NOT "$T_4$" (P000007) AND Countably paracompact (P000032) AND Cozero complemented (P000061) +NOT "$T_4$" (P000007) AND Countably paracompact (P000032) AND Strongly KC (P000103) +NOT "$T_4$" (P000007) AND Countably metacompact (P000033) AND Extremally Disconnected (P000049) +NOT "$T_4$" (P000007) AND Fully normal (P000034) AND NOT Locally Connected (P000041) +NOT "$T_4$" (P000007) AND Fully normal (P000034) AND NOT Locally Path Connected (P000042) +NOT "$T_4$" (P000007) AND Fully normal (P000034) AND Totally Path Disconnected (P000046) +NOT "$T_4$" (P000007) AND Fully normal (P000034) AND Čech complete (P000063) +NOT "$T_4$" (P000007) AND Fully normal (P000034) AND Baire (P000064) +NOT "$T_4$" (P000007) AND Fully normal (P000034) AND NOT Menger (P000066) +NOT "$T_4$" (P000007) AND Fully normal (P000034) AND NOT Rothberger (P000068) +NOT "$T_4$" (P000007) AND Fully normal (P000034) AND NOT Strategic Menger (P000069) +NOT "$T_4$" (P000007) AND Fully normal (P000034) AND NOT Markov Menger (P000070) +NOT "$T_4$" (P000007) AND Fully normal (P000034) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_4$" (P000007) AND Fully normal (P000034) AND NOT 2-Markov Menger (P000072) +NOT "$T_4$" (P000007) AND Fully normal (P000034) AND Sober (P000073) +NOT "$T_4$" (P000007) AND Fully normal (P000034) AND NOT Anti-Hausdorff (P000101) +NOT "$T_4$" (P000007) AND Fully normal (P000034) AND NOT Hemicompact (P000111) +NOT "$T_4$" (P000007) AND Connected (P000036) AND Čech complete (P000063) +NOT "$T_4$" (P000007) AND Connected (P000036) AND Baire (P000064) +NOT "$T_4$" (P000007) AND NOT Connected (P000036) AND Locally Arc Connected (P000043) +NOT "$T_4$" (P000007) AND NOT Connected (P000036) AND Finite (P000078) +NOT "$T_4$" (P000007) AND Path Connected (P000037) AND Čech complete (P000063) +NOT "$T_4$" (P000007) AND Path Connected (P000037) AND Baire (P000064) +NOT "$T_4$" (P000007) AND NOT Path Connected (P000037) AND Locally Arc Connected (P000043) +NOT "$T_4$" (P000007) AND NOT Path Connected (P000037) AND Finite (P000078) +NOT "$T_4$" (P000007) AND Arc connected (P000038) AND NOT Locally Connected (P000041) +NOT "$T_4$" (P000007) AND Arc connected (P000038) AND NOT Locally Path Connected (P000042) +NOT "$T_4$" (P000007) AND Arc connected (P000038) AND NOT Locally Arc Connected (P000043) +NOT "$T_4$" (P000007) AND Arc connected (P000038) AND Čech complete (P000063) +NOT "$T_4$" (P000007) AND Arc connected (P000038) AND Baire (P000064) +NOT "$T_4$" (P000007) AND NOT Arc connected (P000038) AND Locally Arc Connected (P000043) +NOT "$T_4$" (P000007) AND Locally Connected (P000041) AND Čech complete (P000063) +NOT "$T_4$" (P000007) AND Locally Connected (P000041) AND Baire (P000064) +NOT "$T_4$" (P000007) AND Locally Path Connected (P000042) AND Čech complete (P000063) +NOT "$T_4$" (P000007) AND Locally Path Connected (P000042) AND Baire (P000064) +NOT "$T_4$" (P000007) AND Locally Arc Connected (P000043) AND Zero Dimensional (P000050) +NOT "$T_4$" (P000007) AND Locally Arc Connected (P000043) AND Scattered (P000051) +NOT "$T_4$" (P000007) AND Locally Arc Connected (P000043) AND Countable (P000057) +NOT "$T_4$" (P000007) AND Locally Arc Connected (P000043) AND Smaller than the continuum (P000058) +NOT "$T_4$" (P000007) AND Locally Arc Connected (P000043) AND Čech complete (P000063) +NOT "$T_4$" (P000007) AND Locally Arc Connected (P000043) AND Baire (P000064) +NOT "$T_4$" (P000007) AND Locally Arc Connected (P000043) AND NOT Continuum-sized (P000065) +NOT "$T_4$" (P000007) AND Locally Arc Connected (P000043) AND Finite (P000078) +NOT "$T_4$" (P000007) AND Biconnected (P000044) AND NOT Smaller than the continuum (P000058) +NOT "$T_4$" (P000007) AND Biconnected (P000044) AND NOT Strongly Connected (P000060) +NOT "$T_4$" (P000007) AND Biconnected (P000044) AND Cozero complemented (P000061) +NOT "$T_4$" (P000007) AND NOT Biconnected (P000044) AND Finite (P000078) +NOT "$T_4$" (P000007) AND Has Dispersion Point (P000045) AND NOT Smaller than the continuum (P000058) +NOT "$T_4$" (P000007) AND Has Dispersion Point (P000045) AND NOT Strongly Connected (P000060) +NOT "$T_4$" (P000007) AND Has Dispersion Point (P000045) AND Cozero complemented (P000061) +NOT "$T_4$" (P000007) AND NOT Has Dispersion Point (P000045) AND Finite (P000078) +NOT "$T_4$" (P000007) AND Totally Path Disconnected (P000046) AND Finite (P000078) +NOT "$T_4$" (P000007) AND NOT Totally Path Disconnected (P000046) AND Čech complete (P000063) +NOT "$T_4$" (P000007) AND NOT Totally Path Disconnected (P000046) AND Baire (P000064) +NOT "$T_4$" (P000007) AND NOT Totally Disconnected (P000047) AND Čech complete (P000063) +NOT "$T_4$" (P000007) AND NOT Totally Disconnected (P000047) AND Baire (P000064) +NOT "$T_4$" (P000007) AND Totally Separated (P000048) AND Hemicompact (P000111) +NOT "$T_4$" (P000007) AND NOT Totally Separated (P000048) AND Čech complete (P000063) +NOT "$T_4$" (P000007) AND NOT Totally Separated (P000048) AND Baire (P000064) +NOT "$T_4$" (P000007) AND Extremally Disconnected (P000049) AND Zero Dimensional (P000050) +NOT "$T_4$" (P000007) AND Extremally Disconnected (P000049) AND NOT Scattered (P000051) +NOT "$T_4$" (P000007) AND Extremally Disconnected (P000049) AND "$\\sigma$-Locally Finite Base" (P000054) +NOT "$T_4$" (P000007) AND Extremally Disconnected (P000049) AND Non-meager (P000056) +NOT "$T_4$" (P000007) AND Extremally Disconnected (P000049) AND Countable (P000057) +NOT "$T_4$" (P000007) AND Extremally Disconnected (P000049) AND Smaller than the continuum (P000058) +NOT "$T_4$" (P000007) AND Extremally Disconnected (P000049) AND NOT Smaller than the continuum (P000058) +NOT "$T_4$" (P000007) AND Extremally Disconnected (P000049) AND Cozero complemented (P000061) +NOT "$T_4$" (P000007) AND Extremally Disconnected (P000049) AND Čech complete (P000063) +NOT "$T_4$" (P000007) AND Extremally Disconnected (P000049) AND Baire (P000064) +NOT "$T_4$" (P000007) AND Extremally Disconnected (P000049) AND NOT Continuum-sized (P000065) +NOT "$T_4$" (P000007) AND Extremally Disconnected (P000049) AND Menger (P000066) +NOT "$T_4$" (P000007) AND Extremally Disconnected (P000049) AND Strategic Menger (P000069) +NOT "$T_4$" (P000007) AND Extremally Disconnected (P000049) AND Markov Menger (P000070) +NOT "$T_4$" (P000007) AND Extremally Disconnected (P000049) AND "$\\sigma$-relatively-compact" (P000071) +NOT "$T_4$" (P000007) AND Extremally Disconnected (P000049) AND 2-Markov Menger (P000072) +NOT "$T_4$" (P000007) AND Extremally Disconnected (P000049) AND sequential (P000079) +NOT "$T_4$" (P000007) AND Extremally Disconnected (P000049) AND Fréchet Urysohn (P000080) +NOT "$T_4$" (P000007) AND Extremally Disconnected (P000049) AND Countably tight (P000081) +NOT "$T_4$" (P000007) AND Extremally Disconnected (P000049) AND Strongly KC (P000103) +NOT "$T_4$" (P000007) AND Extremally Disconnected (P000049) AND Hemicompact (P000111) +NOT "$T_4$" (P000007) AND Zero Dimensional (P000050) AND NOT Non-meager (P000056) +NOT "$T_4$" (P000007) AND Zero Dimensional (P000050) AND NOT Baire (P000064) +NOT "$T_4$" (P000007) AND Zero Dimensional (P000050) AND Finite (P000078) +NOT "$T_4$" (P000007) AND NOT Zero Dimensional (P000050) AND Čech complete (P000063) +NOT "$T_4$" (P000007) AND NOT Zero Dimensional (P000050) AND Baire (P000064) +NOT "$T_4$" (P000007) AND NOT Scattered (P000051) AND Čech complete (P000063) +NOT "$T_4$" (P000007) AND NOT Scattered (P000051) AND Baire (P000064) +NOT "$T_4$" (P000007) AND "$\\sigma$-Locally Finite Base" (P000054) AND Čech complete (P000063) +NOT "$T_4$" (P000007) AND "$\\sigma$-Locally Finite Base" (P000054) AND Baire (P000064) +NOT "$T_4$" (P000007) AND "$\\sigma$-Locally Finite Base" (P000054) AND NOT Menger (P000066) +NOT "$T_4$" (P000007) AND "$\\sigma$-Locally Finite Base" (P000054) AND NOT Rothberger (P000068) +NOT "$T_4$" (P000007) AND "$\\sigma$-Locally Finite Base" (P000054) AND NOT Strategic Menger (P000069) +NOT "$T_4$" (P000007) AND "$\\sigma$-Locally Finite Base" (P000054) AND NOT Markov Menger (P000070) +NOT "$T_4$" (P000007) AND "$\\sigma$-Locally Finite Base" (P000054) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_4$" (P000007) AND "$\\sigma$-Locally Finite Base" (P000054) AND NOT 2-Markov Menger (P000072) +NOT "$T_4$" (P000007) AND NOT Non-meager (P000056) AND Cozero complemented (P000061) +NOT "$T_4$" (P000007) AND Countable (P000057) AND Čech complete (P000063) +NOT "$T_4$" (P000007) AND Countable (P000057) AND Baire (P000064) +NOT "$T_4$" (P000007) AND NOT Countable (P000057) AND NOT Continuum-sized (P000065) +NOT "$T_4$" (P000007) AND Smaller than the continuum (P000058) AND Cozero complemented (P000061) +NOT "$T_4$" (P000007) AND Smaller than the continuum (P000058) AND Čech complete (P000063) +NOT "$T_4$" (P000007) AND Smaller than the continuum (P000058) AND Baire (P000064) +NOT "$T_4$" (P000007) AND NOT Smaller than the continuum (P000058) AND NOT Continuum-sized (P000065) +NOT "$T_4$" (P000007) AND NOT Strongly Connected (P000060) AND Finite (P000078) +NOT "$T_4$" (P000007) AND Cozero complemented (P000061) AND NOT Baire (P000064) +NOT "$T_4$" (P000007) AND Cozero complemented (P000061) AND NOT Continuum-sized (P000065) +NOT "$T_4$" (P000007) AND Čech complete (P000063) AND NOT Continuum-sized (P000065) +NOT "$T_4$" (P000007) AND Čech complete (P000063) AND Menger (P000066) +NOT "$T_4$" (P000007) AND Čech complete (P000063) AND Strategic Menger (P000069) +NOT "$T_4$" (P000007) AND Čech complete (P000063) AND Markov Menger (P000070) +NOT "$T_4$" (P000007) AND Čech complete (P000063) AND "$\\sigma$-relatively-compact" (P000071) +NOT "$T_4$" (P000007) AND Čech complete (P000063) AND 2-Markov Menger (P000072) +NOT "$T_4$" (P000007) AND Čech complete (P000063) AND Finite (P000078) +NOT "$T_4$" (P000007) AND Čech complete (P000063) AND Hemicompact (P000111) +NOT "$T_4$" (P000007) AND Baire (P000064) AND NOT Continuum-sized (P000065) +NOT "$T_4$" (P000007) AND Baire (P000064) AND Menger (P000066) +NOT "$T_4$" (P000007) AND Baire (P000064) AND Strategic Menger (P000069) +NOT "$T_4$" (P000007) AND Baire (P000064) AND Markov Menger (P000070) +NOT "$T_4$" (P000007) AND Baire (P000064) AND "$\\sigma$-relatively-compact" (P000071) +NOT "$T_4$" (P000007) AND Baire (P000064) AND 2-Markov Menger (P000072) +NOT "$T_4$" (P000007) AND Baire (P000064) AND Finite (P000078) +NOT "$T_4$" (P000007) AND Baire (P000064) AND Hemicompact (P000111) +NOT "$T_4$" (P000007) AND NOT Continuum-sized (P000065) AND NOT Menger (P000066) +NOT "$T_4$" (P000007) AND NOT Continuum-sized (P000065) AND NOT Rothberger (P000068) +NOT "$T_4$" (P000007) AND NOT Continuum-sized (P000065) AND NOT Strategic Menger (P000069) +NOT "$T_4$" (P000007) AND NOT Continuum-sized (P000065) AND NOT Markov Menger (P000070) +NOT "$T_4$" (P000007) AND NOT Continuum-sized (P000065) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_4$" (P000007) AND NOT Continuum-sized (P000065) AND NOT 2-Markov Menger (P000072) +NOT "$T_4$" (P000007) AND NOT Continuum-sized (P000065) AND NOT Hemicompact (P000111) +NOT "$T_4$" (P000007) AND Menger (P000066) AND NOT Strategic Menger (P000069) +NOT "$T_4$" (P000007) AND Menger (P000066) AND NOT Markov Menger (P000070) +NOT "$T_4$" (P000007) AND Menger (P000066) AND NOT "$\\sigma$-relatively-compact" (P000071) +NOT "$T_4$" (P000007) AND Menger (P000066) AND NOT 2-Markov Menger (P000072) +NOT "$T_4$" (P000007) AND Menger (P000066) AND NOT Hemicompact (P000111) +NOT "$T_4$" (P000007) AND Sober (P000073) AND Finite (P000078) +NOT "$T_4$" (P000007) AND Sober (P000073) AND Hemicompact (P000111) +NOT "$T_4$" (P000007) AND Finite (P000078) AND NOT Anti-Hausdorff (P000101) +NOT "$T_4$" (P000007) AND locally Hausdorff (P000084) AND Hemicompact (P000111) +NOT "$T_4$" (P000007) AND Sequentially Hausdorff (P000099) AND Hemicompact (P000111) +NOT "$T_4$" (P000007) AND KC (P000100) AND Hemicompact (P000111) +NOT "$T_4$" (P000007) AND NOT Anti-Hausdorff (P000101) AND Hemicompact (P000111) +NOT "$T_4$" (P000007) AND Strongly KC (P000103) AND Hemicompact (P000111) +"$T_5$" (P000008) AND NOT Perfectly Normal (P000015) AND Separable (P000026) +"$T_5$" (P000008) AND NOT Perfectly Normal (P000015) AND Second Countable (P000027) +"$T_5$" (P000008) AND NOT Perfectly Normal (P000015) AND Path Connected (P000037) +"$T_5$" (P000008) AND NOT Perfectly Normal (P000015) AND Arc connected (P000038) +"$T_5$" (P000008) AND NOT Perfectly Normal (P000015) AND Locally Path Connected (P000042) +"$T_5$" (P000008) AND NOT Perfectly Normal (P000015) AND Locally Arc Connected (P000043) +"$T_5$" (P000008) AND NOT Perfectly Normal (P000015) AND Biconnected (P000044) +"$T_5$" (P000008) AND NOT Perfectly Normal (P000015) AND Has Dispersion Point (P000045) +"$T_5$" (P000008) AND NOT Perfectly Normal (P000015) AND Extremally Disconnected (P000049) +"$T_5$" (P000008) AND NOT Perfectly Normal (P000015) AND "$\\sigma$-Locally Finite Base" (P000054) +"$T_5$" (P000008) AND NOT Perfectly Normal (P000015) AND NOT Non-meager (P000056) +"$T_5$" (P000008) AND NOT Perfectly Normal (P000015) AND Countable (P000057) +"$T_5$" (P000008) AND NOT Perfectly Normal (P000015) AND Smaller than the continuum (P000058) +"$T_5$" (P000008) AND NOT Perfectly Normal (P000015) AND NOT Baire (P000064) +"$T_5$" (P000008) AND NOT Perfectly Normal (P000015) AND NOT Continuum-sized (P000065) +"$T_5$" (P000008) AND NOT Perfectly Normal (P000015) AND Finite (P000078) +"$T_5$" (P000008) AND Compact (P000016) AND NOT Sequentially Compact (P000020) +"$T_5$" (P000008) AND Compact (P000016) AND Biconnected (P000044) +"$T_5$" (P000008) AND Compact (P000016) AND Has Dispersion Point (P000045) +"$T_5$" (P000008) AND Compact (P000016) AND NOT Spectral space (P000075) +"$T_5$" (P000008) AND "$\\sigma$-compact" (P000017) AND Biconnected (P000044) +"$T_5$" (P000008) AND "$\\sigma$-compact" (P000017) AND Has Dispersion Point (P000045) +"$T_5$" (P000008) AND NOT "$\\sigma$-compact" (P000017) AND Biconnected (P000044) +"$T_5$" (P000008) AND NOT "$\\sigma$-compact" (P000017) AND Has Dispersion Point (P000045) +"$T_5$" (P000008) AND NOT "$\\sigma$-compact" (P000017) AND Extremally Disconnected (P000049) +"$T_5$" (P000008) AND NOT "$\\sigma$-compact" (P000017) AND Discrete (P000052) +"$T_5$" (P000008) AND NOT "$\\sigma$-compact" (P000017) AND NOT Continuum-sized (P000065) +"$T_5$" (P000008) AND NOT "$\\sigma$-compact" (P000017) AND homogenous (P000086) +"$T_5$" (P000008) AND NOT "$\\sigma$-compact" (P000017) AND Alexandrov (P000090) +"$T_5$" (P000008) AND NOT Lindelof (P000018) AND Separable (P000026) +"$T_5$" (P000008) AND NOT Lindelof (P000018) AND Countable chain condition (P000029) +"$T_5$" (P000008) AND NOT Lindelof (P000018) AND Biconnected (P000044) +"$T_5$" (P000008) AND NOT Lindelof (P000018) AND Has Dispersion Point (P000045) +"$T_5$" (P000008) AND NOT Lindelof (P000018) AND Extremally Disconnected (P000049) +"$T_5$" (P000008) AND NOT Lindelof (P000018) AND Discrete (P000052) +"$T_5$" (P000008) AND NOT Lindelof (P000018) AND Metrizable (P000053) +"$T_5$" (P000008) AND NOT Lindelof (P000018) AND "$\\sigma$-Locally Finite Base" (P000054) +"$T_5$" (P000008) AND NOT Lindelof (P000018) AND Completely metrizable (P000055) +"$T_5$" (P000008) AND NOT Lindelof (P000018) AND Weakly Lindelof (P000062) +"$T_5$" (P000008) AND NOT Lindelof (P000018) AND NOT Continuum-sized (P000065) +"$T_5$" (P000008) AND NOT Lindelof (P000018) AND Proximal (P000076) +"$T_5$" (P000008) AND NOT Lindelof (P000018) AND Locally metrizable (P000082) +"$T_5$" (P000008) AND NOT Lindelof (P000018) AND homogenous (P000086) +"$T_5$" (P000008) AND NOT Lindelof (P000018) AND Alexandrov (P000090) +"$T_5$" (P000008) AND Countably compact (P000019) AND NOT Sequentially Compact (P000020) +"$T_5$" (P000008) AND Countably compact (P000019) AND NOT Locally Compact (P000023) +"$T_5$" (P000008) AND Countably compact (P000019) AND NOT Strongly Locally Compact (P000024) +"$T_5$" (P000008) AND Countably compact (P000019) AND Biconnected (P000044) +"$T_5$" (P000008) AND Countably compact (P000019) AND Has Dispersion Point (P000045) +"$T_5$" (P000008) AND Countably compact (P000019) AND NOT Non-meager (P000056) +"$T_5$" (P000008) AND Countably compact (P000019) AND NOT Baire (P000064) +"$T_5$" (P000008) AND NOT Countably compact (P000019) AND NOT Paracompact (P000030) +"$T_5$" (P000008) AND NOT Countably compact (P000019) AND NOT Metacompact (P000031) +"$T_5$" (P000008) AND NOT Countably compact (P000019) AND NOT Fully normal (P000034) +"$T_5$" (P000008) AND NOT Countably compact (P000019) AND NOT Fully $T_4$ (P000035) +"$T_5$" (P000008) AND Sequentially Compact (P000020) AND NOT Locally Compact (P000023) +"$T_5$" (P000008) AND Sequentially Compact (P000020) AND NOT Strongly Locally Compact (P000024) +"$T_5$" (P000008) AND Sequentially Compact (P000020) AND Biconnected (P000044) +"$T_5$" (P000008) AND Sequentially Compact (P000020) AND Has Dispersion Point (P000045) +"$T_5$" (P000008) AND Sequentially Compact (P000020) AND NOT Non-meager (P000056) +"$T_5$" (P000008) AND Sequentially Compact (P000020) AND NOT Baire (P000064) +"$T_5$" (P000008) AND NOT Sequentially Compact (P000020) AND Weakly Countably Compact (P000021) +"$T_5$" (P000008) AND NOT Sequentially Compact (P000020) AND Pseudocompact (P000022) +"$T_5$" (P000008) AND NOT Sequentially Compact (P000020) AND NOT Paracompact (P000030) +"$T_5$" (P000008) AND NOT Sequentially Compact (P000020) AND NOT Metacompact (P000031) +"$T_5$" (P000008) AND NOT Sequentially Compact (P000020) AND NOT Fully normal (P000034) +"$T_5$" (P000008) AND NOT Sequentially Compact (P000020) AND NOT Fully $T_4$ (P000035) +"$T_5$" (P000008) AND Weakly Countably Compact (P000021) AND NOT Locally Compact (P000023) +"$T_5$" (P000008) AND Weakly Countably Compact (P000021) AND NOT Strongly Locally Compact (P000024) +"$T_5$" (P000008) AND Weakly Countably Compact (P000021) AND Biconnected (P000044) +"$T_5$" (P000008) AND Weakly Countably Compact (P000021) AND Has Dispersion Point (P000045) +"$T_5$" (P000008) AND Weakly Countably Compact (P000021) AND NOT Non-meager (P000056) +"$T_5$" (P000008) AND Weakly Countably Compact (P000021) AND NOT Baire (P000064) +"$T_5$" (P000008) AND NOT Weakly Countably Compact (P000021) AND NOT Paracompact (P000030) +"$T_5$" (P000008) AND NOT Weakly Countably Compact (P000021) AND NOT Metacompact (P000031) +"$T_5$" (P000008) AND NOT Weakly Countably Compact (P000021) AND NOT Fully normal (P000034) +"$T_5$" (P000008) AND NOT Weakly Countably Compact (P000021) AND NOT Fully $T_4$ (P000035) +"$T_5$" (P000008) AND Pseudocompact (P000022) AND NOT Locally Compact (P000023) +"$T_5$" (P000008) AND Pseudocompact (P000022) AND NOT Strongly Locally Compact (P000024) +"$T_5$" (P000008) AND Pseudocompact (P000022) AND Biconnected (P000044) +"$T_5$" (P000008) AND Pseudocompact (P000022) AND Has Dispersion Point (P000045) +"$T_5$" (P000008) AND Pseudocompact (P000022) AND NOT Non-meager (P000056) +"$T_5$" (P000008) AND Pseudocompact (P000022) AND NOT Baire (P000064) +"$T_5$" (P000008) AND NOT Pseudocompact (P000022) AND NOT Paracompact (P000030) +"$T_5$" (P000008) AND NOT Pseudocompact (P000022) AND NOT Metacompact (P000031) +"$T_5$" (P000008) AND NOT Pseudocompact (P000022) AND NOT Fully normal (P000034) +"$T_5$" (P000008) AND NOT Pseudocompact (P000022) AND NOT Fully $T_4$ (P000035) +"$T_5$" (P000008) AND Locally Compact (P000023) AND Biconnected (P000044) +"$T_5$" (P000008) AND Locally Compact (P000023) AND Has Dispersion Point (P000045) +"$T_5$" (P000008) AND NOT Locally Compact (P000023) AND NOT Paracompact (P000030) +"$T_5$" (P000008) AND NOT Locally Compact (P000023) AND NOT Metacompact (P000031) +"$T_5$" (P000008) AND NOT Locally Compact (P000023) AND NOT Fully normal (P000034) +"$T_5$" (P000008) AND NOT Locally Compact (P000023) AND NOT Fully $T_4$ (P000035) +"$T_5$" (P000008) AND Strongly Locally Compact (P000024) AND Biconnected (P000044) +"$T_5$" (P000008) AND Strongly Locally Compact (P000024) AND Has Dispersion Point (P000045) +"$T_5$" (P000008) AND NOT Strongly Locally Compact (P000024) AND NOT Paracompact (P000030) +"$T_5$" (P000008) AND NOT Strongly Locally Compact (P000024) AND NOT Metacompact (P000031) +"$T_5$" (P000008) AND NOT Strongly Locally Compact (P000024) AND NOT Fully normal (P000034) +"$T_5$" (P000008) AND NOT Strongly Locally Compact (P000024) AND NOT Fully $T_4$ (P000035) +"$T_5$" (P000008) AND NOT Strongly Locally Compact (P000024) AND Hemicompact (P000111) +"$T_5$" (P000008) AND "$\\sigma$-Locally Compact" (P000025) AND Biconnected (P000044) +"$T_5$" (P000008) AND "$\\sigma$-Locally Compact" (P000025) AND Has Dispersion Point (P000045) +"$T_5$" (P000008) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Discrete (P000052) +"$T_5$" (P000008) AND NOT "$\\sigma$-Locally Compact" (P000025) AND homogenous (P000086) +"$T_5$" (P000008) AND NOT "$\\sigma$-Locally Compact" (P000025) AND Alexandrov (P000090) +"$T_5$" (P000008) AND Separable (P000026) AND NOT Paracompact (P000030) +"$T_5$" (P000008) AND Separable (P000026) AND NOT Metacompact (P000031) +"$T_5$" (P000008) AND Separable (P000026) AND NOT Fully normal (P000034) +"$T_5$" (P000008) AND Separable (P000026) AND NOT Fully $T_4$ (P000035) +"$T_5$" (P000008) AND Separable (P000026) AND NOT Menger (P000066) +"$T_5$" (P000008) AND Separable (P000026) AND NOT "$T_6$" (P000067) +"$T_5$" (P000008) AND Separable (P000026) AND NOT Rothberger (P000068) +"$T_5$" (P000008) AND NOT Separable (P000026) AND Biconnected (P000044) +"$T_5$" (P000008) AND NOT Separable (P000026) AND Has Dispersion Point (P000045) +"$T_5$" (P000008) AND NOT Separable (P000026) AND Extremally Disconnected (P000049) +"$T_5$" (P000008) AND NOT Separable (P000026) AND Discrete (P000052) +"$T_5$" (P000008) AND NOT Separable (P000026) AND Metrizable (P000053) +"$T_5$" (P000008) AND NOT Separable (P000026) AND "$\\sigma$-Locally Finite Base" (P000054) +"$T_5$" (P000008) AND NOT Separable (P000026) AND Completely metrizable (P000055) +"$T_5$" (P000008) AND NOT Separable (P000026) AND NOT Continuum-sized (P000065) +"$T_5$" (P000008) AND NOT Separable (P000026) AND Proximal (P000076) +"$T_5$" (P000008) AND NOT Separable (P000026) AND Locally metrizable (P000082) +"$T_5$" (P000008) AND NOT Separable (P000026) AND homogenous (P000086) +"$T_5$" (P000008) AND NOT Separable (P000026) AND Alexandrov (P000090) +"$T_5$" (P000008) AND Second Countable (P000027) AND NOT "$T_6$" (P000067) +"$T_5$" (P000008) AND Second Countable (P000027) AND NOT Topological manifold (P000124) +"$T_5$" (P000008) AND NOT Second Countable (P000027) AND Biconnected (P000044) +"$T_5$" (P000008) AND NOT Second Countable (P000027) AND Has Dispersion Point (P000045) +"$T_5$" (P000008) AND NOT Second Countable (P000027) AND Discrete (P000052) +"$T_5$" (P000008) AND NOT Second Countable (P000027) AND Metrizable (P000053) +"$T_5$" (P000008) AND NOT Second Countable (P000027) AND "$\\sigma$-Locally Finite Base" (P000054) +"$T_5$" (P000008) AND NOT Second Countable (P000027) AND Completely metrizable (P000055) +"$T_5$" (P000008) AND NOT Second Countable (P000027) AND NOT Non-meager (P000056) +"$T_5$" (P000008) AND NOT Second Countable (P000027) AND NOT Baire (P000064) +"$T_5$" (P000008) AND NOT Second Countable (P000027) AND Proximal (P000076) +"$T_5$" (P000008) AND NOT Second Countable (P000027) AND Locally metrizable (P000082) +"$T_5$" (P000008) AND NOT Second Countable (P000027) AND homogenous (P000086) +"$T_5$" (P000008) AND NOT Second Countable (P000027) AND Alexandrov (P000090) diff --git a/properties b/properties @@ -0,0 +1,126 @@ +P000001 "$T_0$" +P000002 "$T_1$" +P000003 "$T_2$" +P000004 "$T_{2 \\frac{1}{2}}$" +P000005 "$T_3$" +P000006 "$T_{3 \\frac{1}{2}}$" +P000007 "$T_4$" +P000008 "$T_5$" +P000009 Completely Hausdorff +P000010 Semiregular +P000011 Regular +P000012 Completely regular +P000013 Normal +P000014 Completely normal +P000015 Perfectly Normal +P000016 Compact +P000017 "$\\sigma$-compact" +P000018 Lindelof +P000019 Countably compact +P000020 Sequentially Compact +P000021 Weakly Countably Compact +P000022 Pseudocompact +P000023 Locally Compact +P000024 Strongly Locally Compact +P000025 "$\\sigma$-Locally Compact" +P000026 Separable +P000027 Second Countable +P000028 First Countable +P000029 Countable chain condition +P000030 Paracompact +P000031 Metacompact +P000032 Countably paracompact +P000033 Countably metacompact +P000034 Fully normal +P000035 Fully $T_4$ +P000036 Connected +P000037 Path Connected +P000038 Arc connected +P000039 Hyperconnected +P000040 Ultraconnected +P000041 Locally Connected +P000042 Locally Path Connected +P000043 Locally Arc Connected +P000044 Biconnected +P000045 Has Dispersion Point +P000046 Totally Path Disconnected +P000047 Totally Disconnected +P000048 Totally Separated +P000049 Extremally Disconnected +P000050 Zero Dimensional +P000051 Scattered +P000052 Discrete +P000053 Metrizable +P000054 "$\\sigma$-Locally Finite Base" +P000055 Completely metrizable +P000056 Non-meager +P000057 Countable +P000058 Smaller than the continuum +P000059 Smaller or same as the continuum +P000060 Strongly Connected +P000061 Cozero complemented +P000062 Weakly Lindelof +P000063 Čech complete +P000064 Baire +P000065 Continuum-sized +P000066 Menger +P000067 "$T_6$" +P000068 Rothberger +P000069 Strategic Menger +P000070 Markov Menger +P000071 "$\\sigma$-relatively-compact" +P000072 2-Markov Menger +P000073 Sober +P000074 Cosmic +P000075 Spectral space +P000076 Proximal +P000077 Corson compact +P000078 Finite +P000079 sequential +P000080 Fréchet Urysohn +P000081 Countably tight +P000082 Locally metrizable +P000083 Almost Čech Complete +P000084 locally Hausdorff +P000085 Ascoli +P000086 homogenous +P000087 Groupable topology +P000088 Collectionwise normal +P000089 Fixed Point Property +P000090 Alexandrov +P000091 Eberlein compact +P000092 Moving Off Property +P000093 Locally countable +P000094 q Space +P000095 I-tactic Banach-Mazur +P000096 II-tactic Banach-Mazur +P000097 Homotopy Dense +P000098 $k_omega$ +P000099 Sequentially Hausdorff +P000100 KC +P000101 Anti-Hausdorff +P000102 semimetrizable +P000103 Strongly KC +P000104 K Analytic +P000105 Angelic +P000106 Strictly Angelic +P000107 Pointwise Countable Type +P000108 Locally Čech Complete +P000109 Countable Type +P000110 Has A Compact Resolution +P000111 Hemicompact +P000112 Submetrizable +P000113 k$\mathbb{R}$ Space +P000114 $\aleph_0$ +P000115 Weakly K Analytic +P000116 Pseudocomplete +P000117 M Space +P000118 Pseudo-Polish +P000119 Z-Compact +P000120 r Space +P000121 Pseudo-Metrizable +P000122 S space +P000123 Locally Euclidean +P000124 Topological manifold +P000125 $k$-Lindelöf +P100052 Trivial diff --git a/spaces b/spaces @@ -0,0 +1,136 @@ +S000001 P000016 P000024 -P000036 P000042 P000052 P000078 -P100052 +S000002 P000017 -P000019 -P000022 P000024 -P000036 P000042 P000057 -P100052 +S000003 -P000017 -P000022 P000024 -P000029 -P000036 P000042 P000052 -P100052 +S000004 -P000001 P000011 P000016 P000027 P000037 P000039 P000040 P000042 -P000044 P000050 -P000051 P000056 P100052 +S000005 -P000001 P000011 -P000019 P000021 -P000022 P000024 P000027 P000030 P000042 P000050 -P000051 P000056 P000057 -P100052 +S000006 -P000001 P000014 P000021 -P100052 +S000007 P000001 -P000002 -P000011 P000016 P000026 P000027 -P000034 P000037 -P000038 P000039 -P000040 P000042 P000045 P000051 P000056 P000078 -P100052 +S000008 P000001 -P000002 -P000016 -P000021 P000023 -P000024 P000026 P000027 -P000030 -P000033 -P000034 P000037 -P000038 P000039 -P000040 P000042 P000045 P000051 P000056 P000057 -P100052 +S000009 P000001 -P000002 -P000016 -P000018 -P000021 P000023 -P000024 P000026 P000028 -P000033 -P000034 P000037 -P000038 P000039 -P000040 P000042 -P000043 P000045 P000051 P000056 -P100052 +S000010 P000001 P000014 P000016 P000026 P000027 P000034 -P000038 P000039 P000042 P000045 P000051 P000056 P000057 P000078 -P100052 +S000011 P000001 -P000002 P000014 P000016 P000027 P000034 -P000039 P000040 P000042 P000045 P000051 P000056 P000078 -P100052 +S000012 P000001 -P000002 P000014 P000016 P000027 P000034 -P000039 P000040 P000042 P000045 P000051 P000056 P000057 -P100052 +S000013 P000001 -P000002 P000014 P000016 -P000026 P000028 -P000029 P000034 -P000038 -P000039 P000040 P000042 P000045 P000051 -P000054 P000056 P000060 -P100052 +S000014 P000001 -P000002 P000013 P000014 P000016 -P000026 P000028 -P000029 P000034 -P000036 P000042 -P000043 P000051 -P000054 P000056 -P000058 P000059 -P100052 +S000015 P000002 P000016 P000020 P000027 -P000037 P000039 -P000044 P000046 -P000056 P000057 -P100052 +S000016 P000002 -P000015 P000016 P000020 P000026 -P000028 P000038 P000039 P000043 -P000044 -P000054 P000056 -P000057 P000059 -P100052 +S000017 P000002 -P000003 -P000017 P000018 -P000019 -P000026 -P000028 P000029 -P000033 -P000037 P000039 -P000044 P000046 -P000054 P000056 -P100052 +S000018 -P000001 -P000011 -P000013 -P000017 P000018 P000021 -P000026 -P000028 P000029 -P000033 -P000037 P000039 -P000042 -P000044 -P000046 -P000051 -P000054 P000056 -P000057 -P100052 +S000019 P000002 -P000003 P000016 P000027 P000028 P000038 P000039 P000043 -P000044 -P000056 P000059 -P100052 +S000020 P000002 P000015 P000016 P000020 P000027 P000048 -P000049 P000050 P000051 P000057 -P100052 +S000021 P000003 P000012 P000017 -P000023 P000026 P000038 P000043 -P000053 -P000056 P000065 P000087 -P100052 +S000022 P000008 -P000015 -P000016 -P000017 P000018 -P000022 -P000026 -P000028 -P000029 P000030 -P000049 P000050 P000051 P000056 -P100052 +S000023 P000003 P000015 -P000022 -P000023 -P000028 P000030 -P000041 -P000049 P000050 P000051 P000056 P000057 -P100052 +S000024 P000002 -P000003 P000016 -P000028 -P000029 P000047 P000051 -P000054 P000056 -P100052 +S000025 -P000019 -P000022 P000023 P000024 P000027 P000036 P000038 P000043 P000053 P000056 -P100052 +S000026 P000016 P000048 P000050 -P000051 P000055 -P000058 -P100052 +S000027 -P000022 P000048 P000050 -P000051 P000053 -P000056 P000057 -P100052 +S000028 -P000017 -P000022 -P000023 P000026 P000048 P000050 -P000051 P000053 P000055 -P000058 -P100052 +S000029 P000002 -P000003 P000016 P000020 -P000028 -P000041 P000045 P000046 -P000056 P000057 -P100052 +S000030 -P000017 -P000022 -P000023 P000026 P000038 P000043 -P000044 P000053 P000055 -P100052 +S000032 P000016 P000026 P000038 P000043 -P000044 P000053 -P100052 +S000033 P000008 -P000016 P000024 P000027 -P000049 P000050 P000051 P000057 -P100052 +S000034 P000008 P000016 P000027 -P000049 P000050 P000051 P000055 P000057 -P100052 +S000035 P000008 -P000015 P000019 P000024 -P000026 P000028 -P000029 -P000031 -P000049 P000050 P000051 P000059 -P100052 +S000036 P000008 P000016 P000019 P000020 P000024 -P000026 -P000028 -P000029 -P000049 P000050 P000051 P000059 -P100052 +S000038 P000008 -P000018 P000019 P000024 P000028 -P000029 P000038 P000043 P000056 P000059 -P100052 +S000039 P000008 P000016 P000020 -P000028 -P000029 P000036 -P000037 P000041 -P000046 P000059 -P100052 +S000040 P000003 P000004 P000009 -P000011 P000019 P000020 -P000026 -P000029 P000036 -P000037 -P000041 -P000044 -P000046 -P000054 P000056 P000059 -P100052 +S000041 P000008 -P000015 P000016 P000028 -P000029 P000036 -P000037 P000041 -P000044 -P000046 P000059 -P100052 +S000042 P000001 P000014 -P000016 P000021 P000023 -P000024 P000027 -P000033 -P000034 P000038 P000039 P000040 P000043 -P000044 -P000051 -P000056 P000059 -P100052 +S000043 P000003 P000014 P000015 -P000017 P000018 P000026 -P000027 P000028 P000030 -P000049 P000050 -P000051 P000056 -P000058 -P100052 +S000044 -P000001 -P000011 P000014 P000021 P000023 -P000024 P000027 -P000033 -P000034 P000038 P000039 P000043 -P000044 -P000051 P000056 P000059 -P100052 +S000045 P000001 -P000002 -P000013 P000016 P000027 P000038 P000039 P000043 -P000044 -P000051 P000056 P000059 -P100052 +S000046 -P000001 -P000013 -P000019 P000021 -P000024 P000025 P000027 P000031 -P000032 P000039 -P000046 -P000051 -P000056 -P000058 P000059 -P100052 +S000047 P000001 P000014 -P000016 -P000021 -P000022 P000024 P000025 P000027 P000030 P000034 P000042 -P000047 P000051 P000056 P000057 -P100052 +S000048 P000001 -P000002 -P000013 P000016 P000027 P000037 P000039 P000042 -P000044 -P000051 P000056 P000057 -P100052 +S000049 P000001 -P000002 -P000014 -P000019 P000021 P000023 -P000024 P000027 -P000033 -P000034 -P000039 P000040 P000042 -P000044 P000051 P000056 P000057 -P100052 +S000050 P000050 -P000051 P000053 -P000056 P000057 -P100052 +S000051 -P000023 P000027 P000031 -P000041 -P000044 P000046 P000050 P000053 -P100052 +S000052 P000003 -P000004 P000022 P000027 P000031 P000036 -P000039 -P000044 P000046 P000057 -P100052 +S000053 P000003 P000022 P000027 P000036 -P000049 -P000051 P000057 -P100052 +S000054 P000011 -P000019 P000021 -P000022 P000024 P000027 P000030 P000034 P000038 -P000040 P000043 -P000044 -P000050 -P000051 -P000056 P000059 -P100052 +S000055 P000004 -P000010 -P000017 P000018 -P000026 -P000028 P000036 P000046 -P100052 +S000056 P000009 -P000010 -P000011 P000017 -P000022 P000027 P000031 P000036 -P000037 -P000041 -P000044 -P000046 P000056 -P100052 +S000057 P000003 -P000013 -P000018 -P000019 -P000022 P000024 P000026 P000028 P000033 -P000049 P000050 P000051 -P000058 -P100052 +S000058 P000004 P000009 -P000010 -P000011 -P000017 -P000022 P000027 P000031 P000036 -P000041 -P000044 P000046 -P100052 +S000059 P000004 P000009 -P000010 -P000011 -P000017 -P000022 P000027 P000031 P000036 -P000041 -P000044 P000046 -P100052 +S000060 P000004 P000009 -P000010 -P000011 -P000018 -P000022 P000026 -P000027 P000028 -P000033 P000036 -P000041 -P000044 P000046 -P100052 +S000061 P000004 P000009 -P000010 -P000011 -P000017 -P000022 P000027 -P000033 P000036 -P000041 -P000044 P000046 -P100052 +S000062 P000003 P000008 P000009 -P000017 -P000022 -P000023 P000027 -P000036 -P000041 P000050 -P000051 P000053 P000056 -P000058 -P100052 +S000063 -P000022 -P000023 -P000036 -P000041 -P000051 P000056 -P000058 -P100052 +S000064 P000004 P000009 -P000011 -P000018 -P000022 P000026 P000028 -P000032 P000033 -P000048 P000051 -P000058 -P100052 +S000065 P000002 -P000003 P000016 P000027 P000038 -P000039 P000043 -P000044 P000056 P000059 -P100052 +S000066 P000003 -P000004 P000010 P000017 -P000022 P000027 P000031 P000038 P000043 -P000044 P000056 -P100052 +S000067 P000003 -P000004 -P000010 P000022 P000027 P000031 P000036 -P000037 -P000039 -P000041 -P000044 P000046 -P000056 P000057 -P100052 +S000068 P000004 P000009 -P000010 -P000017 -P000018 -P000019 -P000022 P000026 P000028 -P000031 -P000032 P000033 P000036 P000038 P000043 -P000044 -P100052 +S000069 P000004 P000009 -P000010 -P000017 P000018 -P000019 -P000022 P000026 -P000027 P000028 -P000031 P000036 P000038 P000043 -P000044 -P100052 +S000070 P000004 P000009 -P000010 -P000011 -P000018 -P000022 P000026 -P000027 P000028 -P000032 P000033 P000038 P000043 -P000044 -P100052 +S000071 P000004 -P000005 P000009 -P000010 -P000022 P000027 P000031 P000048 -P000049 P000051 P000056 P000057 -P100052 +S000072 P000004 -P000009 P000010 -P000011 -P000022 P000027 P000031 P000047 -P000051 -P000056 P000057 -P100052 +S000073 P000003 -P000004 P000010 P000017 -P000020 -P000022 P000027 P000031 P000038 P000043 -P000044 P000056 -P100052 +S000074 P000004 P000012 -P000013 -P000022 -P000023 P000026 P000028 -P000032 P000033 P000036 P000038 P000043 -P000044 P000056 -P100052 +S000075 P000005 -P000023 P000027 P000038 P000043 -P000044 P000056 -P100052 +S000076 P000003 -P000013 -P000014 -P000018 P000026 P000028 -P000049 P000050 P000059 -P100052 +S000077 P000011 -P000013 P000031 -P100052 +S000078 P000003 -P000014 P000016 -P000026 -P000049 P000050 P000051 -P100052 +S000079 P000006 -P000013 -P000021 P000022 P000024 -P000028 -P000029 -P000031 -P000032 P000033 P000048 -P000049 P000050 P000051 P000059 -P100052 +S000081 -P000006 P000009 P000010 -P000011 -P000018 -P000019 -P000028 -P000029 -P000031 -P000036 -P000041 -P000046 P000056 -P000058 P000059 -P100052 +S000087 P000004 P000011 -P000013 -P000021 P000031 -P000032 -P100052 +S000088 P000011 -P000013 -P000016 P000022 -P100052 +S000089 P000005 -P000006 P000009 -P000021 -P000028 -P000029 P000048 -P000049 -P000050 P000051 P000059 -P100052 +S000090 P000005 -P000013 -P000016 -P000039 -P000040 P000059 P000060 -P100052 +S000091 P000006 -P000007 -P000022 P000024 -P000028 -P000029 P000031 -P000032 -P000049 P000050 P000051 -P000058 P000059 -P100052 +S000092 P000011 -P000013 -P100052 +S000093 P000016 P000026 -P000027 P000028 -P000041 P000048 -P000049 P000050 -P000051 P000067 -P100052 +S000094 -P000010 -P000011 -P000017 P000018 P000026 -P000027 P000028 P000031 P000048 -P000049 -P000051 -P000058 -P100052 +S000095 P000003 P000014 -P000015 P000016 P000020 -P000026 -P000027 P000028 -P000029 -P000036 -P000041 -P000046 -P000058 P000059 P000065 -P100052 +S000096 P000002 P000015 -P000023 -P000028 P000030 -P000049 P000050 P000051 P000056 P000057 -P100052 +S000097 -P000003 P000016 P000020 -P000028 P000047 P000051 P000056 P000057 -P100052 +S000098 P000003 -P000004 P000010 P000022 P000027 P000031 -P000036 -P000041 -P000044 P000046 P000056 P000057 -P100052 +S000099 P000007 -P000014 P000016 P000020 -P000028 -P000029 P000038 -P000041 -P000044 P000059 -P100052 +S000100 P000006 -P000017 -P000020 P000027 -P000036 -P000041 -P000044 P000050 -P000051 P000055 -P000058 P000059 P000065 -P100052 +S000101 P000006 -P000013 -P000017 -P000023 P000026 -P000028 -P000044 P000050 -P000051 -P100052 +S000102 P000003 P000009 P000014 P000015 -P000018 -P000019 -P000022 -P000023 -P000026 P000028 -P000029 P000030 P000034 -P000036 -P000041 -P000049 P000050 -P000051 P000056 -P000058 P000059 P000065 -P100052 +S000103 P000006 -P000014 P000016 -P000020 P000026 -P000028 P000036 -P000049 -P000051 P000056 -P000058 P000059 -P100052 +S000104 P000006 -P000013 -P000016 P000019 P000023 -P000028 -P000029 -P000036 -P000041 P000056 -P000058 P000059 -P100052 +S000105 -P000008 -P000015 P000016 P000026 -P000027 P000028 P000038 -P000049 -P000051 -P000058 -P100052 +S000106 -P000017 -P000023 P000026 P000038 P000043 P000053 P000055 -P100052 +S000107 P000006 P000008 -P000017 -P000018 -P000022 -P000023 -P000026 -P000028 -P000029 -P000036 P000059 -P100052 +S000108 -P000008 P000016 -P000020 P000026 -P000028 P000049 P000050 -P000051 -P000058 P000059 -P100052 +S000109 P000006 -P000018 P000019 P000026 P000056 -P100052 +S000110 P000003 -P000011 -P000018 -P000019 P000022 P000026 -P000028 P000049 P000051 -P100052 +S000111 P000003 P000015 -P000016 -P000022 -P000023 -P000028 P000031 P000032 P000049 P000050 P000051 -P000052 P000056 P000057 -P100052 +S000112 P000017 -P000022 -P000023 -P000036 -P000041 -P000044 -P000046 P000053 P000055 -P000058 -P100052 +S000113 P000017 -P000023 P000027 P000036 -P000037 -P000041 -P000044 -P000046 P000053 P000056 -P100052 +S000114 P000016 P000036 -P000037 -P000041 -P000044 -P000046 P000053 -P100052 +S000115 P000016 P000038 -P000041 -P000044 P000053 -P100052 +S000116 P000017 -P000021 P000024 P000036 -P000037 -P000041 -P000044 -P000046 P000053 -P100052 +S000117 P000016 P000036 P000038 -P000041 -P000044 P000053 -P100052 +S000118 P000001 -P000002 P000014 P000016 P000037 P000040 -P000041 -P000044 -P000056 P000057 -P100052 +S000119 -P000016 P000023 P000024 P000027 P000036 -P000037 -P000041 -P000044 -P000046 P000053 -P100052 +S000120 -P000022 P000024 P000027 P000036 -P000037 -P000041 -P000044 -P000046 P000053 -P100052 +S000121 P000036 -P100052 +S000122 P000003 P000036 -P000039 P000046 P000057 -P100052 +S000123 P000004 -P000010 P000027 P000036 -P000041 P000045 P000046 -P000056 P000057 -P100052 +S000124 -P000005 P000027 P000048 -P000049 -P000051 -P000056 P000057 -P100052 +S000125 -P000022 -P000023 P000027 P000036 -P000037 -P000041 P000045 P000053 -P000058 -P100052 +S000126 -P000022 -P000023 P000027 P000046 P000047 -P000048 -P000051 P000053 -P000058 -P100052 +S000127 P000016 P000036 P000046 P000053 -P100052 +S000128 P000029 P000044 P000053 P000059 -P100052 +S000129 -P000023 P000038 P000053 -P100052 +S000130 P000009 -P000010 P000036 -P100052 +S000131 -P000022 P000024 P000042 P000052 P000053 P000057 -P100052 +S000132 -P000017 -P000023 P000026 P000048 -P000051 P000053 -P000058 -P100052 +S000133 -P000023 -P000026 -P000029 -P000049 P000050 P000051 P000053 P000055 -P000058 P000059 P000065 -P100052 +S000134 -P000023 -P000026 -P000029 P000038 P000043 -P000044 P000053 P000055 P000059 -P100052 +S000135 P000008 -P000018 -P000023 -P000026 -P000028 -P000029 P000030 P000034 P000038 P000043 -P000044 P000056 P000059 -P100052 +S000136 P000003 P000007 -P000018 -P000030 -P000031 P000056 -P000059 -P100052 +S000137 P000007 -P000030 P000031 P000032 -P000059 -P100052 +S000138 P000007 -P100052 +S000147 P000053 P000066 -P000069 -P100052 +S000154 P000002 P000008 -P000015 P000016 P000020 -P000026 -P000028 P000029 P000048 -P000049 P000050 P000051 P000080 -P100052 +S000156 P000057 -P000080 -P100052 +S000158 P000016 P000038 P000053 -P100052 +S000161 -P100052 +S001103 P000006 -P000013 -P000017 -P000023 -P000026 -P000028 -P000044 P000050 -P000051 -P100052 diff --git a/theorems b/theorems @@ -0,0 +1,202 @@ +T000001 -P000016 P000019 +T000002 -P000019 P000021 +T000003 -P000020 P000019 +T000004 -P000019 P000022 +T000005 -P000025 P000017 +T000006 -P000016 P000024 +T000007 -P000024 P000023 +T000008 -P000025 P000023 +T000009 -P000016 P000025 +T000010 -P000049 -P000053 P000052 +T000011 -P000034 P000013 +T000012 -P000035 P000030 +T000013 -P000016 P000030 +T000014 -P000030 P000031 +T000015 -P000030 P000032 +T000016 -P000031 P000033 +T000017 -P000019 P000032 +T000018 -P000032 P000033 +T000019 -P000002 -P000021 P000019 +T000020 -P000053 P000005 +T000020 -P000053 P000054 +T000021 -P000026 P000029 +T000022 -P000019 -P000028 P000020 +T000023 -P000005 -P000054 P000053 +T000024 -P000031 -P000026 P000018 +T000025 -P000124 P000123 +T000025 -P000124 P000003 +T000025 -P000124 P000027 +T000026 -P000003 -P000025 P000007 +T000027 -P000003 -P000023 P000006 +T000028 -P000003 -P000019 -P000028 P000005 +T000029 -P000011 -P000027 P000014 +T000030 -P000011 -P000018 P000034 +T000031 -P000123 -P000003 -P000027 P000124 +T000032 -P000004 P000003 +T000033 -P000003 -P000011 P000004 +T000034 -P000002 -P000013 P000006 +T000035 -P000012 P000011 +T000036 -P000014 P000013 +T000037 -P000011 -P000013 P000012 +T000038 -P000040 P000037 +T000039 -P000038 P000037 +T000040 -P000037 P000036 +T000041 -P000039 P000036 +T000042 -P000052 P000002 +T000042 -P000052 P000051 +T000043 -P000002 -P000051 P000047 +T000044 -P000052 P000049 +T000045 -P000049 P000048 +T000046 -P000048 P000047 +T000047 -P000047 P000046 +T000048 -P000048 P000009 +T000049 -P000047 P000002 +T000050 -P000003 -P000026 P000059 +T000051 -P000039 P000041 +T000052 -P000047 P100052 -P000036 +T000053 -P000018 -P000023 P000025 +T000054 -P000050 P000011 +T000055 -P000005 -P000018 P000035 +T000056 -P000053 P000035 +T000057 -P000053 P000028 +T000058 -P000055 P000056 +T000059 -P000003 -P000023 P000056 +T000060 -P000020 -P000027 -P000002 P000016 +T000061 -P000026 -P000053 P000027 +T000061 -P000026 -P000053 P000005 +T000062 -P000018 -P000053 P000027 +T000063 -P000043 P000042 +T000064 -P000042 P000041 +T000065 -P000023 -P000053 P000055 +T000066 -P000052 P000050 +T000067 -P000057 P000058 +T000068 -P000058 P000059 +T000071 -P000039 P000060 +T000072 -P000040 P000013 +T000073 -P000001 -P000050 P000048 +T000074 -P000057 P000017 +T000075 -P000038 P100052 -P000058 +T000076 -P000060 P000022 +T000077 -P000055 P000053 +T000078 -P000044 P000036 +T000079 -P000060 P000036 +T000080 -P000009 -P000060 +T000081 -P000036 -P000005 P100052 -P000057 +T000083 -P000043 P000052 P100052 -P000058 +T000084 -P000052 P000043 +T000085 -P000052 P000055 +T000086 -P000009 P000004 +T000087 -P000040 P000060 +T000088 -P000037 P100052 -P000046 +T000089 -P000042 P000052 -P000046 +T000090 -P000027 P000054 +T000091 -P000039 P000040 -P000013 +T000092 -P000045 P000044 +T000093 -P000057 P000026 +T000095 -P000036 -P000042 P000037 +T000098 -P000007 P000002 +T000098 -P000007 P000013 +T000099 -P000002 -P000013 P000007 +T000100 -P000008 P000002 +T000100 -P000008 P000014 +T000101 -P000002 -P000014 P000008 +T000104 -P000035 P000002 +T000104 -P000035 P000034 +T000105 -P000002 -P000034 P000035 +T000106 -P000018 -P000019 P000016 +T000107 -P000019 -P000031 P000016 +T000108 -P000047 -P000041 P000052 +T000109 -P000040 -P000002 +T000110 -P000007 -P000022 P000021 +T000112 -P000008 P000007 +T000113 -P000007 P000006 +T000114 -P000006 P000009 +T000115 -P000006 P000005 +T000116 -P000005 P000010 +T000118 -P000003 P000002 +T000119 -P000002 P000001 +T000121 -P000016 P000017 +T000122 -P000017 P000018 +T000123 -P000018 -P000032 P000030 +T000124 -P000018 -P000033 P000031 +T000125 -P000027 P000018 +T000125 -P000027 P000028 +T000125 -P000027 P000026 +T000126 -P000061 P000006 +T000128 -P000018 P000062 +T000129 -P000026 P000062 +T000130 -P000054 P000028 +T000132 -P000053 -P000063 P000055 +T000133 -P000055 P000063 +T000134 -P000064 P000056 +T000135 -P000055 P000064 +T000136 -P000023 -P000003 P000064 +T000138 -P000065 -P000058 +T000139 -P000065 P000059 +T000140 -P000066 P000018 +T000141 -P000017 P000066 +T000142 -P000029 -P000006 P000061 +T000146 -P000005 P000011 +T000148 -P000011 -P000001 P000005 +T000149 -P000006 P000012 +T000151 -P000012 -P000001 P000006 +T000152 -P000067 P000002 +T000152 -P000067 P000015 +T000153 -P000002 -P000015 P000067 +T000154 -P000067 P000008 +T000155 -P000011 P000010 +T000156 -P000015 P000014 +T000160 -P000068 P000066 +T000161 -P000069 P000066 +T000162 -P000070 P000072 +T000163 -P000017 P000071 +T000164 -P000011 -P000071 P000017 +T000165 -P000070 P000071 +T000166 -P000071 P000070 +T000167 -P000027 -P000069 P000070 +T000168 -P000072 P000069 +T000169 -P000051 P000001 +T000170 -P000003 -P000030 P000035 +T000171 -P000035 P000003 +T000171 -P000035 P000030 +T000173 -P000003 P000073 +T000174 -P000073 P000001 +T000176 -P000075 P000073 +T000176 -P000075 P000016 +T000177 -P000053 P000076 +T000178 -P000077 P000076 +T000179 -P000076 -P000016 P000077 +T000180 -P000015 P000061 +T000181 -P000053 P000082 +T000183 -P000028 P000080 +T000184 -P000080 P000079 +T000185 -P000079 P000081 +T000186 -P000057 P000081 +T000187 -P000078 P000057 +T000188 -P000052 -P000016 P000078 +T000189 -P000078 P000027 +T000193 -P000003 P000084 +T000195 -P000084 P000002 +T000196 -P000023 -P000003 P000063 +T000197 -P000078 -P000002 P000052 +T000198 -P000078 P000016 +T000202 -P000082 -P000003 -P000030 P000053 +T000204 -P000052 P000086 +T000209 -P000051 -P000086 P000052 +T000212 -P000057 -P000028 P000027 +T000213 -P000088 P000013 +T000214 -P000035 P000088 +T000215 -P000077 P000080 +T000218 -P000052 P000090 +T000219 -P000053 -P000016 P000091 +T000220 -P000091 P000077 +T000223 -P000079 -P000019 P000020 +T000224 -P000023 -P000003 P000024 +T000226 -P000099 P000002 +T000227 -P000100 P000099 +T000228 -P000003 P000100 +T000232 -P000101 -P000003 +T000234 -P000103 P000100 +T000235 -P000079 -P000099 P000103 +T000236 -P000023 -P000018 P000111 +T000237 -P000111 P000017