return new TopLevelDomain(domain, type, status, boost);
}
TopLevelDomain readCCTLD(Element el) throws IOException {
String domain = el.getAttribute("domain");
Status status = readStatus(el);
float boost = readBoost(el);
String countryName = readCountryName(el);
return new TopLevelDomain(domain, status, boost, countryName);
}