2:- module(ne,[netype/2]).    3
    4netype('I-LOC',loc).
    5netype('B-LOC',loc).
    6netype('E-LOC',loc).
    7
    8netype('I-ORG',org).
    9netype('B-ORG',org).
   10netype('E-ORG',org).
   11
   12netype('I-PER',per).
   13netype('B-PER',per).
   14netype('E-PER',per).
   15
   16netype('Person',per).
   17netype('Organisation',org).
   18netype('Location',loc).
   19netype('Artifact',art).
   20netype('Event',eve).
   21netype('Natural_Object',nat).
   22netype('Timex',tim).
   23
   24netype(_,nam)