Going without filter myself, but regarding filtering the name fields (ebot etc), there was a suggestion to use regex:
^(?![Aa]nonymous$|Q$)
instead, which would filter all names except "Anonymous", "anonymous" & "Q", or
^(?!Anonymous$|Q$)
to also filter out user names "anonymous".