#------------------------------------------------------------------------------
# remove overlapped item in the list
def uniqueList(old_list):
newList = []
for x in old_list:
if x not in newList :
newList.append(x)
return newList





