Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
let done = false ,
running = false ,
notify = 'mypdnsreporter' ,
token = '' ,
apiurl = '' ,
tabOp1 = false ,
tabOp2 = false ,
usePOP = false ,
lookupCAT = false ;
const baseurl = [ 'https://karma.crimeflare.eu.org:1984' , 'http://karma.im5wixghmfmt7gf7wb4xrgdm6byx2gj26zn47da6nwo7xvybgxnqryid.onion' ] ;
const waitstc = [ 'Hold on' , 'One moment' , 'Just a moment' , 'Just a sec' , 'Just a second' , 'Nice find' , 'Knock-knock!' , 'Brill!' , 'Brilliant!' , 'Cool!' , 'Good going!' , 'Good job!' , 'Good work!' , 'Great!' , 'Keep it up!' , 'Marvelous!' , 'Nice going!' , 'Outstanding!' , 'Perfect!' , 'Right on!' , 'Super!' , 'Superb!' , 'Terrific!' , 'Thanks!' , 'Wonderful!' , 'Wow!' , 'You are doing a good job!' ] ;
let domainCAT = { } ;
function showreply ( t , d , icon = '' ) {
browser . notifications . clear ( notify ) ;
browser . notifications . create ( notify , {
'type' : 'basic' ,
'title' : t ,
'message' : d ,
iconUrl : browser . runtime . getURL ( icon == '' ? 'icon.png' : 'i/' + icon + '.png' )
} ) ;
}
function toBinary ( string ) {
const codeUnits = new Uint16Array ( string . length ) ;
for ( let i = 0 ; i < codeUnits . length ; i ++ ) {
codeUnits [ i ] = string . charCodeAt ( i ) ;
}
return btoa ( String . fromCharCode ( ... new Uint8Array ( codeUnits . buffer ) ) ) ;
}
function ireport ( url , type , comment ) {
return new Promise ( ( g , b ) => {
fetch ( apiurl + '/api/mypdns/' , {
method : 'POST' ,
mode : 'cors' ,
headers : {
'Content-Type' : 'application/x-www-form-urlencoded'
} ,
body : ( tabOp2 ? 'wdesc&' : '' ) + 'k=' + token + '&cat=' + type + '&url=' + encodeURIComponent ( url ) + ( comment == '' ? '' : '&wmemo=' + encodeURIComponent ( toBinary ( comment ) ) )
} ) . then ( r => r . json ( ) ) . then ( r => {
g ( r ) ;
} ) . catch ( b ) ;
} ) ;
}
function iGetSiteCat ( fqdn ) {
return new Promise ( ( g , b ) => {
fetch ( apiurl + '/api/mypdns/cat/' , {
method : 'POST' ,
mode : 'cors' ,
headers : {
'Content-Type' : 'application/x-www-form-urlencoded'
} ,
body : 'f=' + fqdn
} ) . then ( r => r . json ( ) ) . then ( r => {
g ( r ) ;
} ) . catch ( b ) ;
} ) ;
}
function try _onion ( ) {
return new Promise ( ( g , b ) => {
fetch ( baseurl [ 1 ] + '/api/mypdns/' , {
method : 'GET' ,
mode : 'cors'
} ) . then ( r => r . json ( ) ) . then ( r => {
if ( r . reply ) {
g ( ) ;
} else {
b ( ) ;
}
} ) . catch ( b ) ;
} ) ;
}
function testing _onion ( ) {
browser . storage . local . set ( {
'tryonion' : 1
} ) ;
try _onion ( ) . then ( ( ) => {
browser . storage . local . set ( {
'top3' : 1
} ) ;
apiurl = baseurl [ 1 ] ;
} , ( ) => { } ) ;
}
2022-09-12 21:06:38 -04:00
async function linkr _makeTabs ( a ) {
a . reverse ( ) ;
for ( u of a ) {
await browser . tabs . create ( {
url : u
} ) ;
}
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
function reporting ( i , t ) {
2022-09-12 21:06:38 -04:00
if ( i . menuItemId . startsWith ( 'linkr' ) ) {
if ( t . id && t . active ) {
browser . tabs . executeScript ( t . id , {
file : 'linkr/linkr.js' ,
runAt : 'document_end'
} ) . then ( g => {
if ( g [ 0 ] . length > 0 ) {
if ( i . menuItemId == 'linkrCOPY' ) {
navigator . clipboard . writeText ( g [ 0 ] . join ( "\n" ) ) ;
}
if ( i . menuItemId == 'linkrOPEN' ) {
linkr _makeTabs ( g [ 0 ] ) ;
}
if ( i . menuItemId == 'linkrCOPYxf' ) {
let junk = { } ;
for ( surl of g [ 0 ] ) {
junk [ ( new URL ( surl ) ) . hostname ] = 1 ;
}
junk = Object . keys ( junk ) ;
if ( junk . length > 0 ) {
navigator . clipboard . writeText ( junk . join ( "\n" ) ) ;
}
}
if ( i . menuItemId == 'linkrCOPYxd' ) {
let junk = { } ;
for ( surl of g [ 0 ] ) {
junk [ get _realdomain ( ( new URL ( surl ) ) . hostname ) ] = 1 ;
}
junk = Object . keys ( junk ) ;
if ( junk . length > 0 ) {
navigator . clipboard . writeText ( junk . join ( "\n" ) ) ;
}
}
}
} , ( ) => { } ) ;
}
return ;
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
if ( i . menuItemId == 'openMass' ) {
browser . tabs . create ( {
active : true ,
url : browser . runtime . getURL ( 'massrep/index.html' )
} ) ;
return ;
}
if ( i . menuItemId == 'searchIt' ) {
browser . tabs . create ( {
active : true ,
url : 'https://mypdns.org/my-privacy-dns/matrix/-/issues?scope=all&sort=created_date&state=opened&search=' + encodeURIComponent ( i . selectionText . trim ( ) )
} ) ;
return ;
}
if ( running ) {
return ;
}
let cattype , url = '' ;
if ( i . menuItemId . startsWith ( 'actPAGE' ) ) {
url = i . pageUrl ;
cattype = i . menuItemId . split ( '_' ) [ 1 ] ;
}
if ( i . menuItemId . startsWith ( 'actLINK' ) ) {
url = i . linkUrl ;
cattype = i . menuItemId . split ( '_' ) [ 1 ] ;
}
2022-09-12 21:06:38 -04:00
if ( ! /^http(|s):\/\/([a-z0-9]{1})([a-z0-9.-]{0,254})\.(([a-z]{2,50})|xn--([a-z0-9-]{2,60}))(|\/(.*))$/ . test ( url ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
showreply ( 'Sorry' , 'You cannot report this site.' ) ;
return ;
}
let fqdn = ( new URL ( url ) ) . host ;
2022-09-12 21:06:38 -04:00
if ( /^((|(.*)\.)mypdns\.(org|com)|(.*)\.(arpa|invalid|lan|i2p|localhost|test|([0-9]{1,3})))$/ . test ( fqdn ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
showreply ( 'Sorry' , 'You cannot report this site.' ) ;
return ;
}
if ( token == '' ) {
showreply ( 'Before you begin' , 'Please set your token.' ) ;
browser . runtime . openOptionsPage ( ) ;
return ;
}
running = true ;
showreply ( waitstc [ Math . floor ( Math . random ( ) * waitstc . length ) ] , 'Reporting ' + cattype + ' ' + fqdn + '...' , cattype ) ;
ireport ( url , cattype , i . comment || '' ) . then ( g => {
if ( g . reply ) {
if ( g . reply == 'roger' ) {
showreply ( 'Reported ' + fqdn , url ) ;
} else {
showreply ( 'Reply' , g . reply ) ;
if ( tabOp1 && g . reply . startsWith ( 'Issue for this domain is already exist.' ) ) {
browser . tabs . create ( {
active : true ,
url : 'https://mypdns.org/my-privacy-dns/matrix/-/issues/' + g . issue
} ) ;
}
}
} else {
showreply ( 'Sorry' , 'Something is wrong. Please try again later.' ) ;
}
running = false ;
} , b => {
showreply ( 'Sorry' , 'Unable to connect. Please try again later.' ) ;
running = false ;
} ) ;
}
function reload _menu ( ) {
browser . storage . local . get ( ) . then ( r => {
browser . menus . removeAll ( ) ;
browser . menus . create ( {
id : 'iactLINK' ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
title : 'Report this Link as' ,
2022-09-12 21:06:38 -04:00
icons : {
'32' : 'i/r/spy.png'
} ,
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
contexts : [ 'link' ]
} ) ;
browser . menus . create ( {
id : 'iactPAGE' ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
title : 'Report this Page as' ,
2022-09-12 21:06:38 -04:00
icons : {
'32' : 'i/r/spy.png'
} ,
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
contexts : [ 'page' ]
} ) ;
let iLastMenu = '' ;
if ( r . nocat01 != '1' ) {
iLastMenu = '01' ;
browser . menus . create ( {
parentId : 'iactLINK' ,
id : 'actLINK_adware' ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
title : 'Adware' ,
icons : {
'32' : 'i/adware.png'
} ,
contexts : [ 'link' ]
} ) ;
browser . menus . create ( {
parentId : 'iactPAGE' ,
id : 'actPAGE_adware' ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
title : 'Adware' ,
icons : {
'32' : 'i/adware.png'
} ,
contexts : [ 'page' ]
} ) ;
if ( r . nocat98 != '1' ) {
browser . menus . create ( {
parentId : 'iactLINK' ,
id : 'sepaLink_' + iLastMenu ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
type : 'separator' ,
contexts : [ 'link' ]
} ) ;
browser . menus . create ( {
parentId : 'iactPAGE' ,
id : 'sepaPage_' + iLastMenu ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
type : 'separator' ,
contexts : [ 'page' ]
} ) ;
}
}
if ( r . nocat02 != '1' ) {
iLastMenu = '02' ;
browser . menus . create ( {
parentId : 'iactLINK' ,
id : 'actLINK_drugs' ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
title : 'Drugs' ,
icons : {
'32' : 'i/drugs.png'
} ,
contexts : [ 'link' ]
} ) ;
browser . menus . create ( {
parentId : 'iactPAGE' ,
id : 'actPAGE_drugs' ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
title : 'Drugs' ,
icons : {
'32' : 'i/drugs.png'
} ,
contexts : [ 'page' ]
} ) ;
if ( r . nocat98 != '1' ) {
browser . menus . create ( {
parentId : 'iactLINK' ,
id : 'sepaLink_' + iLastMenu ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
type : 'separator' ,
contexts : [ 'link' ]
} ) ;
browser . menus . create ( {
parentId : 'iactPAGE' ,
id : 'sepaPage_' + iLastMenu ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
type : 'separator' ,
contexts : [ 'page' ]
} ) ;
}
}
if ( r . nocat03 != '1' ) {
iLastMenu = '03' ;
browser . menus . create ( {
parentId : 'iactLINK' ,
id : 'actLINK_gambling' ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
title : 'Gambling' ,
icons : {
'32' : 'i/gambling.png'
} ,
contexts : [ 'link' ]
} ) ;
browser . menus . create ( {
parentId : 'iactPAGE' ,
id : 'actPAGE_gambling' ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
title : 'Gambling' ,
icons : {
'32' : 'i/gambling.png'
} ,
contexts : [ 'page' ]
} ) ;
if ( r . nocat98 != '1' ) {
browser . menus . create ( {
parentId : 'iactLINK' ,
id : 'sepaLink_' + iLastMenu ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
type : 'separator' ,
contexts : [ 'link' ]
} ) ;
browser . menus . create ( {
parentId : 'iactPAGE' ,
id : 'sepaPage_' + iLastMenu ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
type : 'separator' ,
contexts : [ 'page' ]
} ) ;
}
}
if ( r . nocat17 != '1' ) {
iLastMenu = '17' ;
browser . menus . create ( {
parentId : 'iactLINK' ,
id : 'actLINK_porngore' ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
title : 'Gore' ,
icons : {
'32' : 'i/porngore.png'
} ,
contexts : [ 'link' ]
} ) ;
browser . menus . create ( {
parentId : 'iactPAGE' ,
id : 'actPAGE_porngore' ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
title : 'Gore' ,
icons : {
'32' : 'i/porngore.png'
} ,
contexts : [ 'page' ]
} ) ;
if ( r . nocat98 != '1' ) {
browser . menus . create ( {
parentId : 'iactLINK' ,
id : 'sepaLink_' + iLastMenu ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
type : 'separator' ,
contexts : [ 'link' ]
} ) ;
browser . menus . create ( {
parentId : 'iactPAGE' ,
id : 'sepaPage_' + iLastMenu ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
type : 'separator' ,
contexts : [ 'page' ]
} ) ;
}
}
if ( r . nocat04 != '1' ) {
iLastMenu = '04' ;
browser . menus . create ( {
parentId : 'iactLINK' ,
id : 'actLINK_malicious' ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
title : 'Malicious' ,
icons : {
'32' : 'i/malicious.png'
} ,
contexts : [ 'link' ]
} ) ;
browser . menus . create ( {
parentId : 'iactPAGE' ,
id : 'actPAGE_malicious' ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
title : 'Malicious' ,
icons : {
'32' : 'i/malicious.png'
} ,
contexts : [ 'page' ]
} ) ;
if ( r . nocat98 != '1' ) {
browser . menus . create ( {
parentId : 'iactLINK' ,
id : 'sepaLink_' + iLastMenu ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
type : 'separator' ,
contexts : [ 'link' ]
} ) ;
browser . menus . create ( {
parentId : 'iactPAGE' ,
id : 'sepaPage_' + iLastMenu ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
type : 'separator' ,
contexts : [ 'page' ]
} ) ;
}
}
if ( r . nocat05 != '1' ) {
iLastMenu = '05' ;
browser . menus . create ( {
parentId : 'iactLINK' ,
id : 'actLINK_movies' ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
title : 'Movies' ,
icons : {
'32' : 'i/movies.png'
} ,
contexts : [ 'link' ]
} ) ;
browser . menus . create ( {
parentId : 'iactPAGE' ,
id : 'actPAGE_movies' ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
title : 'Movies' ,
icons : {
'32' : 'i/movies.png'
} ,
contexts : [ 'page' ]
} ) ;
if ( r . nocat98 != '1' ) {
browser . menus . create ( {
parentId : 'iactLINK' ,
id : 'sepaLink_' + iLastMenu ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
type : 'separator' ,
contexts : [ 'link' ]
} ) ;
browser . menus . create ( {
parentId : 'iactPAGE' ,
id : 'sepaPage_' + iLastMenu ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
type : 'separator' ,
contexts : [ 'page' ]
} ) ;
}
}
if ( r . nocat06 != '1' ) {
iLastMenu = '06' ;
browser . menus . create ( {
parentId : 'iactLINK' ,
id : 'actLINK_news' ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
title : 'News' ,
icons : {
'32' : 'i/news.png'
} ,
contexts : [ 'link' ]
} ) ;
browser . menus . create ( {
parentId : 'iactPAGE' ,
id : 'actPAGE_news' ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
title : 'News' ,
icons : {
'32' : 'i/news.png'
} ,
contexts : [ 'page' ]
} ) ;
if ( r . nocat98 != '1' ) {
browser . menus . create ( {
parentId : 'iactLINK' ,
id : 'sepaLink_' + iLastMenu ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
type : 'separator' ,
contexts : [ 'link' ]
} ) ;
browser . menus . create ( {
parentId : 'iactPAGE' ,
id : 'sepaPage_' + iLastMenu ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
type : 'separator' ,
contexts : [ 'page' ]
} ) ;
}
}
if ( r . nocat07 != '1' ) {
iLastMenu = '07' ;
browser . menus . create ( {
parentId : 'iactLINK' ,
id : 'actLINK_phishing' ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
title : 'Phishing' ,
icons : {
'32' : 'i/phishing.png'
} ,
contexts : [ 'link' ]
} ) ;
browser . menus . create ( {
parentId : 'iactPAGE' ,
id : 'actPAGE_phishing' ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
title : 'Phishing' ,
icons : {
'32' : 'i/phishing.png'
} ,
contexts : [ 'page' ]
} ) ;
if ( r . nocat98 != '1' ) {
browser . menus . create ( {
parentId : 'iactLINK' ,
id : 'sepaLink_' + iLastMenu ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
type : 'separator' ,
contexts : [ 'link' ]
} ) ;
browser . menus . create ( {
parentId : 'iactPAGE' ,
id : 'sepaPage_' + iLastMenu ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
2022-09-08 18:15:17 -04:00
type : 'separator' ,
contexts : [ 'page' ]
} ) ;
}
}
if ( r . nocat21 != '1' ) {
iLastMenu = '21' ;
browser . menus . create ( {
parentId : 'iactLINK' ,
id : 'actLINK_pirated' ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
title : 'Pirated' ,
icons : {
'32' : 'i/pirated.png'
} ,
contexts : [ 'link' ]
} ) ;
browser . menus . create ( {
parentId : 'iactPAGE' ,
id : 'actPAGE_pirated' ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
title : 'Pirated' ,
icons : {
'32' : 'i/pirated.png'
} ,
contexts : [ 'page' ]
} ) ;
if ( r . nocat98 != '1' ) {
browser . menus . create ( {
parentId : 'iactLINK' ,
id : 'sepaLink_' + iLastMenu ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
type : 'separator' ,
contexts : [ 'link' ]
} ) ;
browser . menus . create ( {
parentId : 'iactPAGE' ,
id : 'sepaPage_' + iLastMenu ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
type : 'separator' ,
contexts : [ 'page' ]
} ) ;
}
}
if ( r . nocat08 != '1' ) {
iLastMenu = '08' ;
browser . menus . create ( {
parentId : 'iactLINK' ,
id : 'actLINK_politics' ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
title : 'Politics' ,
icons : {
'32' : 'i/politics.png'
} ,
contexts : [ 'link' ]
} ) ;
browser . menus . create ( {
parentId : 'iactPAGE' ,
id : 'actPAGE_politics' ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
title : 'Politics' ,
icons : {
'32' : 'i/politics.png'
} ,
contexts : [ 'page' ]
} ) ;
if ( r . nocat98 != '1' ) {
browser . menus . create ( {
parentId : 'iactLINK' ,
id : 'sepaLink_' + iLastMenu ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
type : 'separator' ,
contexts : [ 'link' ]
} ) ;
browser . menus . create ( {
parentId : 'iactPAGE' ,
id : 'sepaPage_' + iLastMenu ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
type : 'separator' ,
contexts : [ 'page' ]
} ) ;
}
}
if ( r . nocat09 != '1' ) {
iLastMenu = '09' ;
browser . menus . create ( {
parentId : 'iactLINK' ,
id : 'actLINK_porn' ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
title : 'Porn' ,
icons : {
'32' : 'i/porn.png'
} ,
contexts : [ 'link' ]
} ) ;
browser . menus . create ( {
parentId : 'iactPAGE' ,
id : 'actPAGE_porn' ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
title : 'Porn' ,
icons : {
'32' : 'i/porn.png'
} ,
contexts : [ 'page' ]
} ) ;
if ( r . nocat98 != '1' ) {
browser . menus . create ( {
parentId : 'iactLINK' ,
id : 'sepaLink_' + iLastMenu ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
type : 'separator' ,
contexts : [ 'link' ]
} ) ;
browser . menus . create ( {
parentId : 'iactPAGE' ,
id : 'sepaPage_' + iLastMenu ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
type : 'separator' ,
contexts : [ 'page' ]
} ) ;
}
}
if ( r . nocat19 != '1' ) {
iLastMenu = '19' ;
browser . menus . create ( {
parentId : 'iactLINK' ,
id : 'actLINK_pornstrict' ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
title : 'Porn (Strict)' ,
icons : {
'32' : 'i/pornstrict.png'
} ,
contexts : [ 'link' ]
} ) ;
browser . menus . create ( {
parentId : 'iactPAGE' ,
id : 'actPAGE_pornstrict' ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
title : 'Porn (Strict)' ,
icons : {
'32' : 'i/pornstrict.png'
} ,
contexts : [ 'page' ]
} ) ;
if ( r . nocat98 != '1' ) {
browser . menus . create ( {
parentId : 'iactLINK' ,
id : 'sepaLink_' + iLastMenu ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
type : 'separator' ,
contexts : [ 'link' ]
} ) ;
browser . menus . create ( {
parentId : 'iactPAGE' ,
id : 'sepaPage_' + iLastMenu ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
type : 'separator' ,
contexts : [ 'page' ]
} ) ;
}
}
if ( r . nocat15 != '1' ) {
iLastMenu = '15' ;
browser . menus . create ( {
parentId : 'iactLINK' ,
id : 'actLINK_redirector' ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
title : 'Url Shortener' ,
icons : {
'32' : 'i/redirector.png'
} ,
contexts : [ 'link' ]
} ) ;
browser . menus . create ( {
parentId : 'iactPAGE' ,
id : 'actPAGE_redirector' ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
title : 'Url Shortener' ,
icons : {
'32' : 'i/redirector.png'
} ,
contexts : [ 'page' ]
} ) ;
if ( r . nocat98 != '1' ) {
browser . menus . create ( {
parentId : 'iactLINK' ,
id : 'sepaLink_' + iLastMenu ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
type : 'separator' ,
contexts : [ 'link' ]
} ) ;
browser . menus . create ( {
parentId : 'iactPAGE' ,
id : 'sepaPage_' + iLastMenu ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
type : 'separator' ,
contexts : [ 'page' ]
} ) ;
}
}
if ( r . nocat10 != '1' ) {
iLastMenu = '10' ;
browser . menus . create ( {
parentId : 'iactLINK' ,
id : 'actLINK_religion' ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
title : 'Religion' ,
icons : {
'32' : 'i/religion.png'
} ,
contexts : [ 'link' ]
} ) ;
browser . menus . create ( {
parentId : 'iactPAGE' ,
id : 'actPAGE_religion' ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
title : 'Religion' ,
icons : {
'32' : 'i/religion.png'
} ,
contexts : [ 'page' ]
} ) ;
if ( r . nocat98 != '1' ) {
browser . menus . create ( {
parentId : 'iactLINK' ,
id : 'sepaLink_' + iLastMenu ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
type : 'separator' ,
contexts : [ 'link' ]
} ) ;
browser . menus . create ( {
parentId : 'iactPAGE' ,
id : 'sepaPage_' + iLastMenu ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
type : 'separator' ,
contexts : [ 'page' ]
} ) ;
}
}
if ( r . nocat14 != '1' ) {
iLastMenu = '14' ;
browser . menus . create ( {
parentId : 'iactLINK' ,
id : 'actLINK_scamming' ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
title : 'Scamming' ,
icons : {
'32' : 'i/scamming.png'
} ,
contexts : [ 'link' ]
} ) ;
browser . menus . create ( {
parentId : 'iactPAGE' ,
id : 'actPAGE_scamming' ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
title : 'Scamming' ,
icons : {
'32' : 'i/scamming.png'
} ,
contexts : [ 'page' ]
} ) ;
if ( r . nocat98 != '1' ) {
browser . menus . create ( {
parentId : 'iactLINK' ,
id : 'sepaLink_' + iLastMenu ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
type : 'separator' ,
contexts : [ 'link' ]
} ) ;
browser . menus . create ( {
parentId : 'iactPAGE' ,
id : 'sepaPage_' + iLastMenu ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
type : 'separator' ,
contexts : [ 'page' ]
} ) ;
}
}
if ( r . nocat18 != '1' ) {
iLastMenu = '18' ;
browser . menus . create ( {
parentId : 'iactLINK' ,
id : 'actLINK_pornsnuff' ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
title : 'Snuff' ,
icons : {
'32' : 'i/pornsnuff.png'
} ,
contexts : [ 'link' ]
} ) ;
browser . menus . create ( {
parentId : 'iactPAGE' ,
id : 'actPAGE_pornsnuff' ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
title : 'Snuff' ,
icons : {
'32' : 'i/pornsnuff.png'
} ,
contexts : [ 'page' ]
} ) ;
if ( r . nocat98 != '1' ) {
browser . menus . create ( {
parentId : 'iactLINK' ,
id : 'sepaLink_' + iLastMenu ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
type : 'separator' ,
contexts : [ 'link' ]
} ) ;
browser . menus . create ( {
parentId : 'iactPAGE' ,
id : 'sepaPage_' + iLastMenu ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
type : 'separator' ,
contexts : [ 'page' ]
} ) ;
}
}
if ( r . nocat11 != '1' ) {
iLastMenu = '11' ;
browser . menus . create ( {
parentId : 'iactLINK' ,
id : 'actLINK_spyware' ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
title : 'Spyware' ,
icons : {
'32' : 'i/spyware.png'
} ,
contexts : [ 'link' ]
} ) ;
browser . menus . create ( {
parentId : 'iactPAGE' ,
id : 'actPAGE_spyware' ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
title : 'Spyware' ,
icons : {
'32' : 'i/spyware.png'
} ,
contexts : [ 'page' ]
} ) ;
if ( r . nocat98 != '1' ) {
browser . menus . create ( {
parentId : 'iactLINK' ,
id : 'sepaLink_' + iLastMenu ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
type : 'separator' ,
contexts : [ 'link' ]
} ) ;
browser . menus . create ( {
parentId : 'iactPAGE' ,
id : 'sepaPage_' + iLastMenu ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
type : 'separator' ,
contexts : [ 'page' ]
} ) ;
}
}
if ( r . nocat20 != '1' ) {
iLastMenu = '20' ;
browser . menus . create ( {
parentId : 'iactLINK' ,
id : 'actLINK_torrent' ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
title : 'Torrent' ,
icons : {
'32' : 'i/torrent.png'
} ,
contexts : [ 'link' ]
} ) ;
browser . menus . create ( {
parentId : 'iactPAGE' ,
id : 'actPAGE_torrent' ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
title : 'Torrent' ,
icons : {
'32' : 'i/torrent.png'
} ,
contexts : [ 'page' ]
} ) ;
if ( r . nocat98 != '1' ) {
browser . menus . create ( {
parentId : 'iactLINK' ,
id : 'sepaLink_' + iLastMenu ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
type : 'separator' ,
contexts : [ 'link' ]
} ) ;
browser . menus . create ( {
parentId : 'iactPAGE' ,
id : 'sepaPage_' + iLastMenu ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
type : 'separator' ,
contexts : [ 'page' ]
} ) ;
}
}
if ( r . nocat12 != '1' ) {
iLastMenu = '12' ;
browser . menus . create ( {
parentId : 'iactLINK' ,
id : 'actLINK_tracking' ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
title : 'Tracking' ,
icons : {
'32' : 'i/tracking.png'
} ,
contexts : [ 'link' ]
} ) ;
browser . menus . create ( {
parentId : 'iactPAGE' ,
id : 'actPAGE_tracking' ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
title : 'Tracking' ,
icons : {
'32' : 'i/tracking.png'
} ,
contexts : [ 'page' ]
} ) ;
if ( r . nocat98 != '1' ) {
browser . menus . create ( {
parentId : 'iactLINK' ,
id : 'sepaLink_' + iLastMenu ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
type : 'separator' ,
contexts : [ 'link' ]
} ) ;
browser . menus . create ( {
parentId : 'iactPAGE' ,
id : 'sepaPage_' + iLastMenu ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
type : 'separator' ,
contexts : [ 'page' ]
} ) ;
}
}
if ( r . nocat16 != '1' ) {
iLastMenu = '16' ;
browser . menus . create ( {
parentId : 'iactLINK' ,
id : 'actLINK_typosquatting' ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
title : 'Typo Squatting' ,
icons : {
'32' : 'i/typosquatting.png'
} ,
contexts : [ 'link' ]
} ) ;
browser . menus . create ( {
parentId : 'iactPAGE' ,
id : 'actPAGE_typosquatting' ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
title : 'Typo Squatting' ,
icons : {
'32' : 'i/typosquatting.png'
} ,
contexts : [ 'page' ]
} ) ;
if ( r . nocat98 != '1' ) {
browser . menus . create ( {
parentId : 'iactLINK' ,
id : 'sepaLink_' + iLastMenu ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
type : 'separator' ,
contexts : [ 'link' ]
} ) ;
browser . menus . create ( {
parentId : 'iactPAGE' ,
id : 'sepaPage_' + iLastMenu ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
type : 'separator' ,
contexts : [ 'page' ]
} ) ;
}
}
if ( r . nocat13 != '1' ) {
iLastMenu = '13' ;
browser . menus . create ( {
parentId : 'iactLINK' ,
id : 'actLINK_weapons' ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
title : 'Weapons' ,
icons : {
'32' : 'i/weapons.png'
} ,
contexts : [ 'link' ]
} ) ;
browser . menus . create ( {
parentId : 'iactPAGE' ,
id : 'actPAGE_weapons' ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
title : 'Weapons' ,
icons : {
'32' : 'i/weapons.png'
} ,
contexts : [ 'page' ]
} ) ;
if ( r . nocat98 != '1' ) {
browser . menus . create ( {
parentId : 'iactLINK' ,
id : 'sepaLink_' + iLastMenu ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
type : 'separator' ,
contexts : [ 'link' ]
} ) ;
browser . menus . create ( {
parentId : 'iactPAGE' ,
id : 'sepaPage_' + iLastMenu ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
type : 'separator' ,
contexts : [ 'page' ]
} ) ;
}
}
if ( iLastMenu == '' ) {
browser . menus . removeAll ( ) ;
}
if ( r . nocat99 == '1' ) {
browser . menus . create ( {
id : 'openMass' ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
title : 'Open Mass Report tool' ,
2022-09-12 21:06:38 -04:00
icons : {
'32' : 'i/r/spy.png'
} ,
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
contexts : [ 'page' ]
} ) ;
}
2022-09-12 21:06:38 -04:00
if ( r . nocat88 == '1' ) {
browser . menus . create ( {
id : 'linkrCOPY' ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
title : 'Copy selected links' ,
icons : {
'32' : 'i/r/clips.png'
} ,
contexts : [ 'selection' ]
} ) ;
}
if ( r . nocat89 == '1' ) {
browser . menus . create ( {
id : 'linkrOPEN' ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
title : 'Open selected links' ,
icons : {
'32' : 'i/r/rocket.png'
} ,
contexts : [ 'selection' ]
} ) ;
}
if ( r . nocat87 == '1' ) {
browser . menus . create ( {
id : 'linkrCOPYxf' ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
title : 'Copy FQDN of links' ,
icons : {
'32' : 'i/r/earth.png'
} ,
contexts : [ 'selection' ]
} ) ;
}
if ( r . nocat86 == '1' ) {
browser . menus . create ( {
id : 'linkrCOPYxd' ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
title : 'Copy Domain of links' ,
icons : {
'32' : 'i/r/earth.png'
} ,
contexts : [ 'selection' ]
} ) ;
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
if ( r . nocat97 == '1' ) {
browser . menus . create ( {
id : 'searchIt' ,
documentUrlPatterns : [ 'http://*/*' , 'https://*/*' ] ,
title : 'Search "%s" on Matrix' ,
2022-09-12 21:06:38 -04:00
icons : {
'32' : 'i/r/mag.png'
} ,
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
contexts : [ 'selection' ]
} ) ;
}
if ( r . nocat96 == '1' ) {
browser . menus . removeAll ( ) ;
}
if ( r . nocat95 == '1' ) {
usePOP = true ;
browser . browserAction . setPopup ( {
popup : 'pop/pop.html'
} ) ;
} else {
usePOP = false ;
browser . browserAction . setPopup ( {
popup : ''
} ) ;
}
} ) ;
}
browser . menus . onClicked . addListener ( reporting ) ;
if ( ! done ) {
done = true ;
browser . storage . local . get ( ) . then ( r => {
apiurl = ( r . top3 != 1 ) ? baseurl [ 0 ] : baseurl [ 1 ] ;
if ( r . token && r . token . length == 20 ) {
token = r . token ;
}
tabOp1 = ( r . top1 == 1 ) ? true : false ;
tabOp2 = ( r . top2 == 1 ) ? true : false ;
lookupCAT = ( r . top8 == 1 ) ? true : false ;
if ( r . tryonion != 1 ) {
setTimeout ( testing _onion , 70000 ) ;
}
usePOP = ( r . nocat95 == 1 ) ? true : false ;
} ) ;
reload _menu ( ) ;
}
browser . browserAction . onClicked . addListener ( ( ) => {
if ( ! usePOP ) {
browser . sidebarAction . close ( ) ;
browser . sidebarAction . open ( ) ;
}
} ) ;
function tUNIX ( ) {
return Math . floor ( Date . now ( ) / 1000 ) ;
}
function update _icon ( tID , tURL = '' ) {
if ( tURL == '' ) {
browser . tabs . query ( {
active : true ,
currentWindow : true
} ) . then ( function ( t ) {
if ( t [ 0 ] ) {
update _icon ( t [ 0 ] . id , t [ 0 ] . url ) ;
}
} ) ;
} else {
if ( ! tID ) {
return ;
}
let _url = new URL ( tURL ) ;
2022-09-01 06:50:11 -04:00
if ( ( _url . protocol != 'https:' && _url . protocol != 'http:' ) || _url . hostname . length < 4 ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
browser . browserAction . setIcon ( {
tabId : tID ,
path : 'icon.png'
} ) ;
browser . browserAction . setTitle ( {
tabId : tID ,
title : null
} ) ;
browser . browserAction . setBadgeText ( {
tabId : tID ,
text : null
} ) ;
return ;
}
let domain = get _realdomain ( _url . hostname ) ;
if ( ! domainCAT [ domain ] ) {
browser . browserAction . setIcon ( {
tabId : tID ,
path : 'icon.png'
} ) ;
browser . browserAction . setTitle ( {
tabId : tID ,
title : null
} ) ;
browser . browserAction . setBadgeText ( {
tabId : tID ,
text : null
} ) ;
return ;
}
let labels = domainCAT [ domain ] [ 2 ] . join ( ', ' ) ;
browser . browserAction . setIcon ( {
tabId : tID ,
path : ( domainCAT [ domain ] [ 1 ] == '' ? 'icon.png' : 'i/' + domainCAT [ domain ] [ 1 ] + '.png' )
} ) ;
browser . browserAction . setTitle ( {
tabId : tID ,
title : labels
} ) ;
if ( /(AdWare|Malicious|Spyware|Tracking)/ . test ( labels ) ) {
browser . browserAction . setBadgeText ( {
tabId : tID ,
text : '!'
} ) ;
} else {
browser . browserAction . setBadgeText ( {
tabId : tID ,
text : null
} ) ;
}
return ;
}
}
function get _realdomain ( w ) {
let wa = w . split ( '.' ) ;
let wa _l = wa . length ;
if ( wa _l < 3 || ( wa _l == 4 && /^([0-9]{1,3})\.([0-9]{1,3})\.([0-9]{1,3})\.([0-9]{1,3})$/ . test ( w ) ) ) {
return w ;
}
wa . reverse ( ) ;
switch ( wa [ 0 ] ) {
case 'ac' :
2022-09-12 21:06:38 -04:00
if ( [ 'com' , 'edu' , 'gov' , 'mil' , 'net' , 'org' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'ad' :
2022-09-12 21:06:38 -04:00
if ( [ 'gov' , 'nom' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'ae' :
2022-09-12 21:06:38 -04:00
if ( [ 'ac' , 'co' , 'gov' , 'mil' , 'net' , 'org' , 'sch' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'aero' :
2022-09-12 21:06:38 -04:00
if ( [ 'accident-investigation' , 'accident-prevention' , 'aerobatic' , 'aeroclub' , 'aerodrome' , 'agents' , 'air-surveillance' , 'air-traffic-control' , 'aircraft' , 'airline' , 'airport' , 'airtraffic' , 'ambulance' , 'amusement' , 'association' , 'author' , 'ballooning' , 'broker' , 'caa' , 'cargo' , 'catering' , 'certification' , 'championship' , 'charter' , 'civilaviation' , 'club' , 'conference' , 'consultant' , 'consulting' , 'control' , 'council' , 'crew' , 'design' , 'dgca' , 'educator' , 'emergency' , 'engine' , 'engineer' , 'entertainment' , 'equipment' , 'exchange' , 'express' , 'federation' , 'flight' , 'freight' , 'fuel' , 'gliding' , 'government' , 'groundhandling' , 'group' , 'hanggliding' , 'homebuilt' , 'insurance' , 'journal' , 'journalist' , 'leasing' , 'logistics' , 'magazine' , 'maintenance' , 'media' , 'microlight' , 'modelling' , 'navigation' , 'parachuting' , 'paragliding' , 'passenger-association' , 'pilot' , 'press' , 'production' , 'recreation' , 'repbody' , 'res' , 'research' , 'rotorcraft' , 'safety' , 'scientist' , 'services' , 'show' , 'skydiving' , 'software' , 'student' , 'trader' , 'trading' , 'trainer' , 'union' , 'workinggroup' , 'works' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'af' :
if ( [ 'com' , 'edu' , 'gov' , 'net' , 'org' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'ag' :
2022-09-12 21:06:38 -04:00
if ( [ 'co' , 'com' , 'edu' , 'gov' , 'net' , 'nom' , 'org' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'ai' :
2022-09-12 21:06:38 -04:00
if ( [ 'com' , 'gov' , 'net' , 'off' , 'org' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'al' :
if ( [ 'com' , 'edu' , 'gov' , 'mil' , 'net' , 'org' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
break ;
case 'am' :
if ( [ 'co' , 'com' , 'commune' , 'gov' , 'net' , 'org' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'ao' :
2022-09-12 21:06:38 -04:00
if ( [ 'co' , 'ed' , 'gov' , 'gv' , 'it' , 'og' , 'pb' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'ar' :
2022-09-12 21:06:38 -04:00
if ( [ 'bet' , 'com' , 'coop' , 'edu' , 'gob' , 'gov' , 'int' , 'mil' , 'musica' , 'mutual' , 'net' , 'org' , 'senasa' , 'tur' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'as' :
if ( wa [ 1 ] == 'gov' ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'at' :
2022-09-12 21:06:38 -04:00
if ( wa [ 1 ] == 'ac' && wa [ 3 ] != undefined ) {
if ( wa [ 2 ] == 'sth' ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( [ 'ac' , 'co' , 'gv' , 'or' , 'priv' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'au' :
if ( wa [ 1 ] == 'gov' && wa [ 3 ] != undefined ) {
if ( [ 'act' , 'nsw' , 'nt' , 'qld' , 'sa' , 'tas' , 'vic' , 'wa' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
if ( wa [ 1 ] == 'edu' && wa [ 3 ] != undefined ) {
2022-09-12 21:06:38 -04:00
if ( [ 'act' , 'catholic' , 'eq' , 'nsw' , 'nt' , 'qld' , 'sa' , 'tas' , 'vic' , 'wa' ] . includes ( wa [ 2 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
if ( [ 'act' , 'asn' , 'com' , 'conf' , 'csiro' , 'edu' , 'gov' , 'id' , 'info' , 'net' , 'nsw' , 'nt' , 'org' , 'oz' , 'qld' , 'sa' , 'tas' , 'vic' , 'wa' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'aw' :
2022-09-12 21:06:38 -04:00
if ( [ 'com' , 'gov' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
break ;
case 'ax' :
if ( wa [ 1 ] == 'gov' ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'az' :
if ( [ 'biz' , 'com' , 'edu' , 'gov' , 'info' , 'int' , 'mil' , 'name' , 'net' , 'org' , 'pp' , 'pro' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'ba' :
if ( [ 'co' , 'com' , 'edu' , 'gov' , 'mil' , 'net' , 'org' , 'rs' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'bb' :
if ( [ 'biz' , 'co' , 'com' , 'edu' , 'gov' , 'info' , 'net' , 'org' , 'store' , 'tv' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'bd' :
2022-09-12 21:06:38 -04:00
if ( wa [ 1 ] == 'org' && wa [ 3 ] != undefined ) {
if ( wa [ 2 ] == 'judiciary' ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( [ 'ac' , 'co' , 'com' , 'edu' , 'gov' , 'info' , 'mil' , 'net' , 'org' , 'sw' , 'tv' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'be' :
2022-09-12 21:06:38 -04:00
if ( [ 'ac' , 'gov' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'bf' :
if ( wa [ 1 ] == 'gov' ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'bg' :
2022-09-12 21:06:38 -04:00
if ( [ '0' , '1' , '2' , '3' , '4' , '5' , '6' , '7' , '8' , '9' , 'a' , 'b' , 'c' , 'd' , 'e' , 'f' , 'g' , 'gov' , 'h' , 'i' , 'j' , 'k' , 'l' , 'm' , 'n' , 'o' , 'p' , 'q' , 'r' , 's' , 't' , 'u' , 'v' , 'w' , 'x' , 'y' , 'z' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'bh' :
2022-09-12 21:06:38 -04:00
if ( [ 'biz' , 'cc' , 'com' , 'edu' , 'gov' , 'info' , 'net' , 'org' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'bi' :
2022-09-12 21:06:38 -04:00
if ( [ 'ac' , 'co' , 'com' , 'edu' , 'gouv' , 'gov' , 'info' , 'int' , 'mil' , 'net' , 'or' , 'org' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'bj' :
if ( [ 'asso' , 'barreau' , 'gouv' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'bm' :
if ( [ 'com' , 'edu' , 'gov' , 'net' , 'org' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'bn' :
2022-09-12 21:06:38 -04:00
if ( [ 'com' , 'edu' , 'gov' , 'net' , 'org' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'bo' :
if ( [ 'academia' , 'agro' , 'arte' , 'blog' , 'bolivia' , 'ciencia' , 'com' , 'cooperativa' , 'democracia' , 'deporte' , 'ecologia' , 'economia' , 'edu' , 'empresa' , 'gob' , 'gov' , 'indigena' , 'industria' , 'info' , 'int' , 'medicina' , 'mil' , 'movimiento' , 'musica' , 'natural' , 'net' , 'nombre' , 'noticias' , 'org' , 'patria' , 'plurinacional' , 'politica' , 'profesional' , 'pueblo' , 'revista' , 'salud' , 'tecnologia' , 'tksat' , 'transporte' , 'tv' , 'web' , 'wiki' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'br' :
2022-09-12 21:06:38 -04:00
if ( wa [ 1 ] == 'gov' && wa [ 3 ] != undefined ) {
if ( [ 'ac' , 'al' , 'am' , 'ap' , 'ba' , 'ce' , 'df' , 'es' , 'go' , 'ma' , 'mg' , 'ms' , 'mt' , 'pa' , 'pb' , 'pe' , 'pi' , 'pr' , 'rj' , 'rn' , 'ro' , 'rr' , 'rs' , 'sc' , 'se' , 'sp' , 'to' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( [ '9guacu' , 'abc' , 'adm' , 'adv' , 'agr' , 'aju' , 'am' , 'anani' , 'aparecida' , 'app' , 'arq' , 'art' , 'ato' , 'b' , 'barueri' , 'belem' , 'bhz' , 'bib' , 'bio' , 'blog' , 'bmd' , 'boavista' , 'bsb' , 'campinagrande' , 'campinas' , 'caxias' , 'cim' , 'cng' , 'cnt' , 'com' , 'contagem' , 'coop' , 'coz' , 'cri' , 'cuiaba' , 'curitiba' , 'def' , 'des' , 'det' , 'dev' , 'ecn' , 'eco' , 'edu' , 'emp' , 'enf' , 'eng' , 'esp' , 'etc' , 'eti' , 'far' , 'feira' , 'flog' , 'floripa' , 'fm' , 'fnd' , 'fortal' , 'fot' , 'foz' , 'fst' , 'g12' , 'geo' , 'ggf' , 'goiania' , 'gov' , 'gru' , 'imb' , 'ind' , 'inf' , 'jab' , 'jampa' , 'jdf' , 'joinville' , 'jor' , 'jus' , 'leg' , 'lel' , 'log' , 'londrina' , 'macapa' , 'maceio' , 'manaus' , 'maringa' , 'mat' , 'med' , 'mil' , 'morena' , 'mp' , 'mus' , 'natal' , 'net' , 'niteroi' , 'nom' , 'not' , 'ntr' , 'odo' , 'ong' , 'org' , 'osasco' , 'palmas' , 'poa' , 'ppg' , 'pro' , 'psc' , 'psi' , 'pvh' , 'qsl' , 'radio' , 'rec' , 'recife' , 'rep' , 'ribeirao' , 'rio' , 'riobranco' , 'riopreto' , 'salvador' , 'sampa' , 'santamaria' , 'santoandre' , 'saobernardo' , 'saogonca' , 'seg' , 'sjc' , 'slg' , 'slz' , 'sorocaba' , 'srv' , 'taxi' , 'tc' , 'tec' , 'teo' , 'the' , 'tmp' , 'trd' , 'tur' , 'tv' , 'udi' , 'vet' , 'vix' , 'vlog' , 'wiki' , 'zlg' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'bs' :
2022-09-12 21:06:38 -04:00
if ( [ 'com' , 'edu' , 'gov' , 'net' , 'org' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'bt' :
if ( [ 'com' , 'edu' , 'gov' , 'net' , 'org' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'bw' :
2022-09-12 21:06:38 -04:00
if ( [ 'ac' , 'co' , 'gov' , 'net' , 'org' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'by' :
2022-09-12 21:06:38 -04:00
if ( [ 'com' , 'gov' , 'mil' , 'of' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'bz' :
if ( [ 'com' , 'edu' , 'gov' , 'mil' , 'net' , 'nym' , 'of' , 'org' , 'za' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'ca' :
2022-09-12 21:06:38 -04:00
if ( wa [ 1 ] == 'qc' && wa [ 3 ] != undefined ) {
if ( wa [ 2 ] == 'gouv' ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'pe' && wa [ 3 ] != undefined ) {
if ( wa [ 2 ] == 'gouv' ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'on' && wa [ 3 ] != undefined ) {
if ( wa [ 2 ] == 'gouv' ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( [ 'ab' , 'bc' , 'gc' , 'gnb' , 'mb' , 'nb' , 'nf' , 'nl' , 'ns' , 'nt' , 'nu' , 'on' , 'pe' , 'qc' , 'sk' , 'yk' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'cd' :
if ( wa [ 1 ] == 'gov' ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
break ;
case 'ch' :
if ( wa [ 1 ] == 'admin' ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'ci' :
if ( [ 'ac' , 'asso' , 'co' , 'com' , 'ed' , 'edu' , 'go' , 'gouv' , 'int' , 'md' , 'net' , 'or' , 'org' , 'presse' , 'xn--aroport-bya' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'ck' :
if ( [ 'biz' , 'co' , 'edu' , 'gen' , 'gov' , 'info' , 'net' , 'org' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'cl' :
2022-09-12 21:06:38 -04:00
if ( [ 'co' , 'gob' , 'gov' , 'mil' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'cm' :
if ( [ 'co' , 'com' , 'gov' , 'net' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'cn' :
if ( [ 'ac' , 'ah' , 'bj' , 'com' , 'cq' , 'edu' , 'fj' , 'gd' , 'gov' , 'gs' , 'gx' , 'gz' , 'ha' , 'hb' , 'he' , 'hi' , 'hk' , 'hl' , 'hn' , 'jl' , 'js' , 'jx' , 'ln' , 'mil' , 'mo' , 'net' , 'nm' , 'nx' , 'org' , 'qh' , 'sc' , 'sd' , 'sh' , 'sn' , 'sx' , 'tj' , 'tw' , 'xj' , 'xn--55qx5d' , 'xn--io0a7i' , 'xn--od0alg' , 'xz' , 'yn' , 'zj' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'co' :
if ( [ 'arts' , 'com' , 'edu' , 'firm' , 'gov' , 'info' , 'int' , 'mil' , 'net' , 'nom' , 'org' , 'rec' , 'web' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'com' :
if ( [ 'africa' , 'ar' , 'br' , 'cn' , 'co' , 'de' , 'eu' , 'gb' , 'gr' , 'hu' , 'jpn' , 'kr' , 'mex' , 'no' , 'qc' , 'ru' , 'sa' , 'se' , 'uk' , 'us' , 'uy' , 'za' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'cr' :
if ( [ 'ac' , 'co' , 'ed' , 'fi' , 'go' , 'or' , 'sa' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'cu' :
2022-09-12 21:06:38 -04:00
if ( [ 'com' , 'edu' , 'gov' , 'inf' , 'net' , 'org' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
break ;
case 'cv' :
if ( [ 'com' , 'edu' , 'gov' , 'int' , 'net' , 'nome' , 'org' , 'publ' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'cw' :
if ( [ 'com' , 'edu' , 'net' , 'org' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'cx' :
if ( wa [ 1 ] == 'gov' ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'cy' :
2022-09-12 21:06:38 -04:00
if ( [ 'ac' , 'biz' , 'com' , 'ekloges' , 'gov' , 'ltd' , 'mil' , 'name' , 'net' , 'org' , 'parliament' , 'press' , 'pro' , 'tm' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
break ;
case 'cz' :
if ( wa [ 1 ] == 'gov' ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'dm' :
2022-09-12 21:06:38 -04:00
if ( [ 'com' , 'edu' , 'gov' , 'net' , 'org' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'do' :
if ( [ 'art' , 'com' , 'edu' , 'gob' , 'gov' , 'mil' , 'net' , 'org' , 'sld' , 'web' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'dz' :
2022-09-12 21:06:38 -04:00
if ( [ 'art' , 'asso' , 'com' , 'edu' , 'gov' , 'net' , 'org' , 'pol' , 'soc' , 'tm' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'ec' :
if ( [ 'com' , 'edu' , 'fin' , 'gob' , 'gov' , 'info' , 'k12' , 'med' , 'mil' , 'net' , 'org' , 'pro' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'ee' :
if ( [ 'aip' , 'com' , 'edu' , 'fie' , 'gov' , 'lib' , 'med' , 'org' , 'pri' , 'riik' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'eg' :
if ( [ 'com' , 'edu' , 'eun' , 'gov' , 'mil' , 'name' , 'net' , 'org' , 'sci' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'es' :
2022-09-12 21:06:38 -04:00
if ( [ 'com' , 'edu' , 'gob' , 'nom' , 'org' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'et' :
2022-09-12 21:06:38 -04:00
if ( [ 'biz' , 'com' , 'edu' , 'gov' , 'info' , 'name' , 'net' , 'org' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'fi' :
2022-09-12 21:06:38 -04:00
if ( [ 'aland' , 'gov' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'fj' :
2022-09-12 21:06:38 -04:00
if ( [ 'ac' , 'biz' , 'com' , 'gov' , 'info' , 'mil' , 'name' , 'net' , 'org' , 'pro' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
break ;
case 'fk' :
if ( [ 'ac' , 'co' , 'gov' , 'net' , 'nom' , 'org' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
break ;
case 'fm' :
if ( [ 'com' , 'edu' , 'net' , 'org' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'fr' :
2022-09-12 21:06:38 -04:00
if ( [ 'abr' , 'abruzzo' , 'aeroport' , 'ag' , 'agrigento' , 'al' , 'alessandria' , 'alto-adige' , 'altoadige' , 'an' , 'ancona' , 'andria-barletta-trani' , 'andria-trani-barletta' , 'andriabarlettatrani' , 'andriatranibarletta' , 'ao' , 'aosta' , 'aosta-valley' , 'aostavalley' , 'aoste' , 'ap' , 'aq' , 'aquila' , 'ar' , 'arezzo' , 'ascoli-piceno' , 'ascolipiceno' , 'assedic' , 'asso' , 'asti' , 'at' , 'av' , 'avellino' , 'avocat' , 'avoues' , 'ba' , 'balsan' , 'balsan-sudtirol' , 'balsan-suedtirol' , 'bari' , 'barletta-trani-andria' , 'barlettatraniandria' , 'bas' , 'basilicata' , 'belluno' , 'benevento' , 'bergamo' , 'bg' , 'bi' , 'biella' , 'bl' , 'bn' , 'bo' , 'bologna' , 'bolzano' , 'bolzano-altoadige' , 'bozen' , 'bozen-sudtirol' , 'bozen-suedtirol' , 'br' , 'brescia' , 'brindisi' , 'bs' , 'bt' , 'bulsan' , 'bulsan-sudtirol' , 'bulsan-suedtirol' , 'bz' , 'ca' , 'cagliari' , 'cal' , 'calabria' , 'caltanissetta' , 'cam' , 'campania' , 'campidano-medio' , 'campidanomedio' , 'campobasso' , 'carbonia-iglesias' , 'carboniaiglesias' , 'carrara-massa' , 'carraramassa' , 'caserta' , 'catania' , 'catanzaro' , 'cb' , 'cci' , 'ce' , 'cesena-forli' , 'cesenaforli' , 'ch' , 'chambagri' , 'chieti' , 'chirurgiens-dentistes' , 'ci' , 'cl' , 'cn' , 'co' , 'com' , 'como' , 'cosenza' , 'cr' , 'cremona' , 'crotone' , 'cs' , 'ct' , 'cuneo' , 'cz' , 'dell-ogliastra' , 'dellogliastra' , 'edu' , 'emilia-romagna' , 'emiliaromagna' , 'emr' , 'en' , 'enna' , 'experts-comptables' , 'fc' , 'fe' , 'fermo' , 'ferrara' , 'fg' , 'fi' , 'firenze' , 'florence' , 'fm' , 'foggia' , 'forli-cesena' , 'forlicesena' , 'fr' , 'friuli-v-giulia' , 'friuli-ve-giulia' , 'friuli-vegiulia' , 'friuli-venezia-giulia' , 'friuli-veneziagiulia' , 'friuli-vgiulia' , 'friuliv-giulia' , 'friulive-giulia' , 'friulivegiulia' , 'friulivenezia-giulia' , 'friuliveneziagiulia' , 'friulivgiulia' , 'frosinone' , 'fvg' , 'ge' , 'genoa' , 'genova' , 'geometre-expert' , 'go' , 'gorizia' , 'gouv' , 'gov' , 'gr' , 'greta' , 'grosseto' , 'huissier-justice' , 'iglesias-carbonia' , 'iglesiascarbonia' , 'im' , 'imperia' , 'is' , 'isernia' , 'kr' , 'la-spezia' , 'laquila' , 'laspezia' , 'latina' , 'laz' , 'lazio' , 'lc' , 'le' , 'lecce' , 'lecco' , 'li' , 'lig' , 'liguria' , 'livorno' , 'lo' , 'lodi' , 'lom' , 'lombardia' , 'lombardy' , 'lt' , 'lu' , 'lucania' , 'lucca' , 'macerata' , 'mantova' , 'mar' , 'marche' , 'massa-carrara' , 'massacarrara' , 'matera' , 'mb' , 'mc' , 'me' , 'medecin' , 'medio-campidano' , 'mediocampidano' , 'messina' , 'mi' , 'milan' , 'milano' , 'mn' , 'mo' , 'modena' , 'mol' , 'molise' , 'monza' , 'monza-brianza' , 'monza-e-della-brianza' , 'monzabrianza' , 'monzaebrianza' , 'monzaedellabrianza' , 'ms' , 'mt' , 'na' , 'naples' , 'napoli' , 'no' , 'nom' , 'notaires' , 'novara' , 'nu' , 'nuoro' , 'og' , 'ogliastra' , 'olbia-tempio' , 'olbiatempio' , 'or' , 'oristano' , 'ot' , 'pa' , 'padova' , 'padua' , 'palermo' , 'parma' , 'pavia' , 'pc' , 'pd' , 'pe' , 'perugia' , 'pesaro-urbino' , 'pesarourbino' , 'pescara' , 'pg' , 'pharmacien' , 'pi' , 'piacenza' , 'piedmont' , 'piemonte' , 'pisa' , 'pistoia' , 'pmn' , 'pn' , 'po' , 'pordenone' , 'port' , 'potenza' , 'pr' , 'prato' , 'prd' , 'presse' , 'pt' , 'pu' , 'pug' , 'puglia' , 'pv' , 'pz' , 'ra' , 'ragusa' , 'ravenna' , 'rc' , 're' , 'reggio-calabria' , 'reggio-emilia' , 'reggiocalabria' , 'reggioemilia' , 'rg' , 'ri' , 'rieti' , 'rimini' , 'rm' , 'rn' , 'ro' , 'roma' , 'rome' , 'rovigo' , 'sa' , 'salerno' , 'sar' , 'sardegna' , 'sardinia' , 'sassari' , 'savona' , 'si' , 'sic' , 'sicilia' , 'sicily' , 'siena' , 'siracusa' , 'so' , 'sondrio' , 'sp' , 'sr' , 'ss' , 'suedtirol' , 'sv' , 'ta' , 'taa' , 'taranto' , 'te' , 'tempio-olbia' , 'tempioolbia' , 'teramo' , 'terni' , 'tm' , 'tn' , 'to' , 'torino' , 'tos' , 'toscana' , 'tp' , 'tr' , 'trani-andria-barletta' , 'trani-barletta-andria' , 'traniandriabarletta' , 'tranibarlettaandria' , 'trapani' , 'trentin-sud-tirol' , 'trentin-sudtirol' , 'trentin-sued-tirol' , 'trentin-suedtirol' , 'trentino' , 'trentino-a-adige' , 'trentino-aadige' , 'trentino-alto-adige' , 'trentino-altoadige' , 'trentino-s-tirol' , 'trentino-stirol' , 'trentino-sud-tirol' , 'trentino-sudtirol' , 'trentino-sued-tirol' , 'trentino-suedtirol' , 'trentinoa-adige' , 'trentinoaadige' , 'trentinoalto-adige' , 'trentinoaltoadige' , 'trentinos-tirol' , 'trentinostirol' , 'trentinosud-tirol' , 'trentinosudtirol' , 'trentinosued-tirol' , ' trentinos
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
break ;
case 'gd' :
if ( [ 'edu' , 'gov' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'ge' :
if ( [ 'com' , 'edu' , 'gov' , 'mil' , 'net' , 'org' , 'pvt' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'gg' :
2022-09-12 21:06:38 -04:00
if ( [ 'co' , 'gov' , 'net' , 'org' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'gh' :
2022-09-12 21:06:38 -04:00
if ( [ 'com' , 'edu' , 'gov' , 'mil' , 'org' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'gi' :
if ( [ 'com' , 'edu' , 'gov' , 'ltd' , 'mod' , 'org' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'gl' :
if ( [ 'co' , 'com' , 'edu' , 'net' , 'org' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'gn' :
2022-09-12 21:06:38 -04:00
if ( [ 'ac' , 'com' , 'edu' , 'gov' , 'net' , 'org' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'gov' :
if ( [ 'al' , 'alabama' , 'alaska' , 'americansamoa' , 'ar' , 'arizona' , 'arkansas' , 'as' , 'az' , 'ca' , 'co' , 'colorado' , 'ct' , 'dc' , 'de' , 'delaware' , 'ehawaii' , 'fl' , 'florida' , 'ga' , 'georgia' , 'guam' , 'hawaii' , 'ia' , 'idaho' , 'il' , 'illinois' , 'in' , 'indiana' , 'iowa' , 'kansas' , 'kentucky' , 'ks' , 'ky' , 'la' , 'louisiana' , 'ma' , 'maine' , 'maryland' , 'mass' , 'massachusetts' , 'md' , 'mi' , 'michigan' , 'minnesota' , 'mississippi' , 'missouri' , 'mn' , 'mo' , 'montana' , 'ms' , 'mt' , 'nc' , 'nd' , 'ne' , 'nebraska' , 'nevada' , 'newjersey' , 'newmexico' , 'nh' , 'nj' , 'northcarolina' , 'northdakota' , 'nv' , 'ny' , 'ohio' , 'ok' , 'oklahoma' , 'oregon' , 'pa' , 'pennsylvania' , 'pr' , 'rhodeisland' , 'ri' , 'sc' , 'sd' , 'tennessee' , 'texas' , 'tn' , 'utah' , 'vermont' , 'vi' , 'virginia' , 'vt' , 'wa' , 'washington' , 'wi' , 'wisconsin' , 'wv' , 'wy' , 'wyoming' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'gp' :
2022-09-12 21:06:38 -04:00
if ( [ 'asso' , 'com' , 'edu' , 'mobi' , 'net' , 'org' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'gr' :
if ( [ 'co' , 'com' , 'edu' , 'gov' , 'mil' , 'mod' , 'net' , 'org' , 'sch' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'gt' :
2022-09-12 21:06:38 -04:00
if ( [ 'com' , 'edu' , 'gob' , 'ind' , 'mil' , 'net' , 'org' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'gu' :
if ( [ 'com' , 'edu' , 'gov' , 'guam' , 'info' , 'net' , 'org' , 'web' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'gy' :
if ( [ 'co' , 'com' , 'edu' , 'gov' , 'net' , 'org' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'hk' :
if ( [ 'com' , 'edu' , 'gov' , 'idv' , 'net' , 'org' , 'xn--55qx5d' , 'xn--ciqpn' , 'xn--gmq050i' , 'xn--gmqw5a' , 'xn--io0a7i' , 'xn--lcvr32d' , 'xn--mk0axi' , 'xn--mxtq1m' , 'xn--od0alg' , 'xn--od0aq3b' , 'xn--tn0ag' , 'xn--uc0atv' , 'xn--uc0ay4a' , 'xn--wcvs22d' , 'xn--zf0avx' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'hn' :
2022-09-12 21:06:38 -04:00
if ( [ 'com' , 'edu' , 'gob' , 'mil' , 'net' , 'org' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'hr' :
2022-09-12 21:06:38 -04:00
if ( [ 'com' , 'from' , 'gov' , 'iz' , 'name' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'ht' :
2022-09-12 21:06:38 -04:00
if ( [ 'adult' , 'art' , 'asso' , 'com' , 'coop' , 'edu' , 'firm' , 'gouv' , 'info' , 'med' , 'net' , 'org' , 'perso' , 'pol' , 'pro' , 'rel' , 'shop' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'hu' :
if ( [ '2000' , 'agrar' , 'bolt' , 'casino' , 'city' , 'co' , 'edu' , 'erotica' , 'erotika' , 'film' , 'forum' , 'games' , 'gov' , 'hotel' , 'info' , 'ingatlan' , 'jogasz' , 'konyvelo' , 'lakas' , 'media' , 'mobi' , 'net' , 'news' , 'org' , 'priv' , 'reklam' , 'sex' , 'shop' , 'sport' , 'suli' , 'szex' , 'tm' , 'tozsde' , 'utazas' , 'video' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'id' :
if ( [ 'ac' , 'biz' , 'co' , 'desa' , 'go' , 'mil' , 'my' , 'net' , 'or' , 'ponpes' , 'sch' , 'web' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'ie' :
if ( wa [ 1 ] == 'gov' ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'il' :
if ( [ 'ac' , 'co' , 'gov' , 'idf' , 'k12' , 'muni' , 'net' , 'org' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'im' :
2022-09-12 21:06:38 -04:00
if ( wa [ 1 ] == 'co' && wa [ 3 ] != undefined ) {
if ( [ 'ltd' , 'plc' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
if ( [ 'ac' , 'co' , 'com' , 'gov' , 'net' , 'org' , 'ro' , 'tt' , 'tv' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'in' :
2022-09-12 21:06:38 -04:00
if ( [ '5g' , '6g' , 'ac' , 'ai' , 'am' , 'bihar' , 'biz' , 'business' , 'ca' , 'cn' , 'co' , 'com' , 'coop' , 'cs' , 'delhi' , 'dr' , 'edu' , 'er' , 'ernet' , 'firm' , 'gen' , 'gov' , 'gujarat' , 'ind' , 'info' , 'int' , 'internet' , 'io' , 'me' , 'mil' , 'net' , 'nic' , 'org' , 'pg' , 'post' , 'pro' , 'res' , 'travel' , 'tv' , 'uk' , 'up' , 'us' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'int' :
if ( wa [ 1 ] == 'eu' ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'io' :
if ( wa [ 1 ] == 'com' ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'iq' :
2022-09-12 21:06:38 -04:00
if ( [ 'com' , 'edu' , 'gov' , 'mil' , 'net' , 'org' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'ir' :
if ( [ 'ac' , 'co' , 'gov' , 'id' , 'net' , 'org' , 'sch' , 'xn--mgba3a4f16a' , 'xn--mgba3a4fra' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'is' :
2022-09-12 21:06:38 -04:00
if ( [ 'com' , 'edu' , 'gov' , 'int' , 'net' , 'org' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'it' :
if ( [ 'abr' , 'abruzzo' , 'ag' , 'agrigento' , 'al' , 'alessandria' , 'alto-adige' , 'altoadige' , 'an' , 'ancona' , 'andria-barletta-trani' , 'andria-trani-barletta' , 'andriabarlettatrani' , 'andriatranibarletta' , 'ao' , 'aosta' , 'aosta-valley' , 'aostavalley' , 'aoste' , 'ap' , 'aq' , 'aquila' , 'ar' , 'arezzo' , 'ascoli-piceno' , 'ascolipiceno' , 'asti' , 'at' , 'av' , 'avellino' , 'ba' , 'balsan' , 'balsan-sudtirol' , 'balsan-suedtirol' , 'bari' , 'barletta-trani-andria' , 'barlettatraniandria' , 'bas' , 'basilicata' , 'belluno' , 'benevento' , 'bergamo' , 'bg' , 'bi' , 'biella' , 'bl' , 'bn' , 'bo' , 'bologna' , 'bolzano' , 'bolzano-altoadige' , 'bozen' , 'bozen-sudtirol' , 'bozen-suedtirol' , 'br' , 'brescia' , 'brindisi' , 'bs' , 'bt' , 'bulsan' , 'bulsan-sudtirol' , 'bulsan-suedtirol' , 'bz' , 'ca' , 'cagliari' , 'cal' , 'calabria' , 'caltanissetta' , 'cam' , 'campania' , 'campidano-medio' , 'campidanomedio' , 'campobasso' , 'carbonia-iglesias' , 'carboniaiglesias' , 'carrara-massa' , 'carraramassa' , 'caserta' , 'catania' , 'catanzaro' , 'cb' , 'ce' , 'cesena-forli' , 'cesenaforli' , 'ch' , 'chieti' , 'ci' , 'cl' , 'cn' , 'co' , 'como' , 'cosenza' , 'cr' , 'cremona' , 'crotone' , 'cs' , 'ct' , 'cuneo' , 'cz' , 'dell-ogliastra' , 'dellogliastra' , 'edu' , 'emilia-romagna' , 'emiliaromagna' , 'emr' , 'en' , 'enna' , 'fc' , 'fe' , 'fermo' , 'ferrara' , 'fg' , 'fi' , 'firenze' , 'florence' , 'fm' , 'foggia' , 'forli-cesena' , 'forlicesena' , 'fr' , 'friuli-v-giulia' , 'friuli-ve-giulia' , 'friuli-vegiulia' , 'friuli-venezia-giulia' , 'friuli-veneziagiulia' , 'friuli-vgiulia' , 'friuliv-giulia' , 'friulive-giulia' , 'friulivegiulia' , 'friulivenezia-giulia' , 'friuliveneziagiulia' , 'friulivgiulia' , 'frosinone' , 'fvg' , 'ge' , 'genoa' , 'genova' , 'go' , 'gorizia' , 'gov' , 'gr' , 'grosseto' , 'iglesias-carbonia' , 'iglesiascarbonia' , 'im' , 'imperia' , 'is' , 'isernia' , 'kr' , 'la-spezia' , 'laquila' , 'laspezia' , 'latina' , 'laz' , 'lazio' , 'lc' , 'le' , 'lecce' , 'lecco' , 'li' , 'lig' , 'liguria' , 'livorno' , 'lo' , 'lodi' , 'lom' , 'lombardia' , 'lombardy' , 'lt' , 'lu' , 'lucania' , 'lucca' , 'macerata' , 'mantova' , 'mar' , 'marche' , 'massa-carrara' , 'massacarrara' , 'matera' , 'mb' , 'mc' , 'me' , 'medio-campidano' , 'mediocampidano' , 'messina' , 'mi' , 'milan' , 'milano' , 'mn' , 'mo' , 'modena' , 'mol' , 'molise' , 'monza' , 'monza-brianza' , 'monza-e-della-brianza' , 'monzabrianza' , 'monzaebrianza' , 'monzaedellabrianza' , 'ms' , 'mt' , 'na' , 'naples' , 'napoli' , 'no' , 'novara' , 'nu' , 'nuoro' , 'og' , 'ogliastra' , 'olbia-tempio' , 'olbiatempio' , 'or' , 'oristano' , 'ot' , 'pa' , 'padova' , 'padua' , 'palermo' , 'parma' , 'pavia' , 'pc' , 'pd' , 'pe' , 'perugia' , 'pesaro-urbino' , 'pesarourbino' , 'pescara' , 'pg' , 'pi' , 'piacenza' , 'piedmont' , 'piemonte' , 'pisa' , 'pistoia' , 'pmn' , 'pn' , 'po' , 'pordenone' , 'potenza' , 'pr' , 'prato' , 'pt' , 'pu' , 'pug' , 'puglia' , 'pv' , 'pz' , 'ra' , 'ragusa' , 'ravenna' , 'rc' , 're' , 'reggio-calabria' , 'reggio-emilia' , 'reggiocalabria' , 'reggioemilia' , 'rg' , 'ri' , 'rieti' , 'rimini' , 'rm' , 'rn' , 'ro' , 'roma' , 'rome' , 'rovigo' , 'sa' , 'salerno' , 'sar' , 'sardegna' , 'sardinia' , 'sassari' , 'savona' , 'si' , 'sic' , 'sicilia' , 'sicily' , 'siena' , 'siracusa' , 'so' , 'sondrio' , 'sp' , 'sr' , 'ss' , 'suedtirol' , 'sv' , 'ta' , 'taa' , 'taranto' , 'te' , 'tempio-olbia' , 'tempioolbia' , 'teramo' , 'terni' , 'tn' , 'to' , 'torino' , 'tos' , 'toscana' , 'tp' , 'tr' , 'trani-andria-barletta' , 'trani-barletta-andria' , 'traniandriabarletta' , 'tranibarlettaandria' , 'trapani' , 'trentin-sud-tirol' , 'trentin-sudtirol' , 'trentin-sued-tirol' , 'trentin-suedtirol' , 'trentino' , 'trentino-a-adige' , 'trentino-aadige' , 'trentino-alto-adige' , 'trentino-altoadige' , 'trentino-s-tirol' , 'trentino-stirol' , 'trentino-sud-tirol' , 'trentino-sudtirol' , 'trentino-sued-tirol' , 'trentino-suedtirol' , 'trentinoa-adige' , 'trentinoaadige' , 'trentinoalto-adige' , 'trentinoaltoadige' , 'trentinos-tirol' , 'trentinostirol' , 'trentinosud-tirol' , 'trentinosudtirol' , 'trentinosued-tirol' , 'trentinosuedtirol' , 'trentinsud-tirol' , 'trentinsudtirol' , 'trentinsued-tirol' , 'trentinsuedtirol' , 'trento' , 'treviso' , 'trieste' , 'ts' , 'turin' , 'tuscany' , 'tv' , 'ud' , 'udine' , 'umb' , 'umbria' , 'urbino-pesaro' , 'urbinopesaro' , 'va' , 'val-d-aosta' , 'val-daosta' , '
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'je' :
2022-09-12 21:06:38 -04:00
if ( [ 'co' , 'gov' , 'net' , 'org' , 'sch' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'jm' :
2022-09-12 21:06:38 -04:00
if ( [ 'com' , 'edu' , 'gov' , 'mil' , 'net' , 'org' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'jo' :
if ( [ 'com' , 'edu' , 'gov' , 'mil' , 'name' , 'net' , 'org' , 'sch' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'jp' :
2022-09-12 21:06:38 -04:00
if ( wa [ 1 ] == 'yamanashi' && wa [ 3 ] != undefined ) {
if ( [ 'chuo' , 'doshi' , 'fuefuki' , 'fujikawa' , 'fujikawaguchiko' , 'fujiyoshida' , 'hayakawa' , 'hokuto' , 'ichikawamisato' , 'kai' , 'kofu' , 'koshu' , 'kosuge' , 'minami-alps' , 'minobu' , 'nakamichi' , 'nanbu' , 'narusawa' , 'nirasaki' , 'nishikatsura' , 'oshino' , 'otsuki' , 'showa' , 'tabayama' , 'tsuru' , 'uenohara' , 'yamanakako' , 'yamanashi' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'yamaguchi' && wa [ 3 ] != undefined ) {
if ( [ 'abu' , 'hagi' , 'hikari' , 'hofu' , 'iwakuni' , 'kudamatsu' , 'mitou' , 'nagato' , 'oshima' , 'shimonoseki' , 'shunan' , 'tabuse' , 'tokuyama' , 'toyota' , 'ube' , 'yuu' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'yamagata' && wa [ 3 ] != undefined ) {
if ( [ 'asahi' , 'funagata' , 'higashine' , 'iide' , 'kahoku' , 'kaminoyama' , 'kaneyama' , 'kawanishi' , 'mamurogawa' , 'mikawa' , 'murayama' , 'nagai' , 'nakayama' , 'nanyo' , 'nishikawa' , 'obanazawa' , 'oe' , 'oguni' , 'ohkura' , 'oishida' , 'sagae' , 'sakata' , 'sakegawa' , 'shinjo' , 'shirataka' , 'shonai' , 'takahata' , 'tendo' , 'tozawa' , 'tsuruoka' , 'yamagata' , 'yamanobe' , 'yonezawa' , 'yuza' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'wakayama' && wa [ 3 ] != undefined ) {
if ( [ 'arida' , 'aridagawa' , 'gobo' , 'hashimoto' , 'hidaka' , 'hirogawa' , 'inami' , 'iwade' , 'kainan' , 'kamitonda' , 'katsuragi' , 'kimino' , 'kinokawa' , 'kitayama' , 'koya' , 'koza' , 'kozagawa' , 'kudoyama' , 'kushimoto' , 'mihama' , 'misato' , 'nachikatsuura' , 'shingu' , 'shirahama' , 'taiji' , 'tanabe' , 'wakayama' , 'yuasa' , 'yura' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'toyama' && wa [ 3 ] != undefined ) {
if ( [ 'asahi' , 'fuchu' , 'fukumitsu' , 'funahashi' , 'himi' , 'imizu' , 'inami' , 'johana' , 'kamiichi' , 'kurobe' , 'nakaniikawa' , 'namerikawa' , 'nanto' , 'nyuzen' , 'oyabe' , 'taira' , 'takaoka' , 'tateyama' , 'toga' , 'tonami' , 'toyama' , 'unazuki' , 'uozu' , 'yamada' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'tottori' && wa [ 3 ] != undefined ) {
if ( [ 'chizu' , 'hino' , 'kawahara' , 'koge' , 'kotoura' , 'misasa' , 'nanbu' , 'nichinan' , 'sakaiminato' , 'tottori' , 'wakasa' , 'yazu' , 'yonago' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'tokyo' && wa [ 3 ] != undefined ) {
if ( [ 'adachi' , 'akiruno' , 'akishima' , 'aogashima' , 'arakawa' , 'bunkyo' , 'chiyoda' , 'chofu' , 'chuo' , 'edogawa' , 'fuchu' , 'fussa' , 'hachijo' , 'hachioji' , 'hamura' , 'higashikurume' , 'higashimurayama' , 'higashiyamato' , 'hino' , 'hinode' , 'hinohara' , 'inagi' , 'itabashi' , 'katsushika' , 'kita' , 'kiyose' , 'kodaira' , 'koganei' , 'kokubunji' , 'komae' , 'koto' , 'kouzushima' , 'kunitachi' , 'machida' , 'meguro' , 'minato' , 'mitaka' , 'mizuho' , 'musashimurayama' , 'musashino' , 'nakano' , 'nerima' , 'ogasawara' , 'okutama' , 'ome' , 'oshima' , 'ota' , 'setagaya' , 'shibuya' , 'shinagawa' , 'shinjuku' , 'suginami' , 'sumida' , 'tachikawa' , 'taito' , 'tama' , 'toshima' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'tokushima' && wa [ 3 ] != undefined ) {
if ( [ 'aizumi' , 'anan' , 'ichiba' , 'itano' , 'kainan' , 'komatsushima' , 'matsushige' , 'mima' , 'minami' , 'miyoshi' , 'mugi' , 'nakagawa' , 'naruto' , 'sanagochi' , 'shishikui' , 'tokushima' , 'wajiki' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'tochigi' && wa [ 3 ] != undefined ) {
if ( [ 'ashikaga' , 'bato' , 'haga' , 'ichikai' , 'iwafune' , 'kaminokawa' , 'kanuma' , 'karasuyama' , 'kuroiso' , 'mashiko' , 'mibu' , 'moka' , 'motegi' , 'nasu' , 'nasushiobara' , 'nikko' , 'nishikata' , 'nogi' , 'ohira' , 'ohtawara' , 'oyama' , 'sakura' , 'sano' , 'shimotsuke' , 'shioya' , 'takanezawa' , 'tochigi' , 'tsuga' , 'ujiie' , 'utsunomiya' , 'yaita' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'shizuoka' && wa [ 3 ] != undefined ) {
if ( [ 'arai' , 'atami' , 'fuji' , 'fujieda' , 'fujikawa' , 'fujinomiya' , 'fukuroi' , 'gotemba' , 'haibara' , 'hamamatsu' , 'higashiizu' , 'ito' , 'iwata' , 'izu' , 'izunokuni' , 'kakegawa' , 'kannami' , 'kawanehon' , 'kawazu' , 'kikugawa' , 'kosai' , 'makinohara' , 'matsuzaki' , 'minamiizu' , 'mishima' , 'morimachi' , 'nishiizu' , 'numazu' , 'omaezaki' , 'shimada' , 'shimizu' , 'shimoda' , 'shizuoka' , 'susono' , 'yaizu' , 'yoshida' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'shimane' && wa [ 3 ] != undefined ) {
if ( [ 'akagi' , 'ama' , 'gotsu' , 'hamada' , 'higashiizumo' , 'hikawa' , 'hikimi' , 'izumo' , 'kakinoki' , 'masuda' , 'matsue' , 'misato' , 'nishinoshima' , 'ohda' , 'okinoshima' , 'okuizumo' , 'shimane' , 'tamayu' , 'tsuwano' , 'unnan' , 'yakumo' , 'yasugi' , 'yatsuka' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'shiga' && wa [ 3 ] != undefined ) {
if ( [ 'aisho' , 'gamo' , 'higashiomi' , 'hikone' , 'koka' , 'konan' , 'kosei' , 'koto' , 'kusatsu' , 'maibara' , 'moriyama' , 'nagahama' , 'nishiazai' , 'notogawa' , 'omihachiman' , 'otsu' , 'ritto' , 'ryuoh' , 'takashima' , 'takatsuki' , 'torahime' , 'toyosato' , 'yasu' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'saitama' && wa [ 3 ] != undefined ) {
if ( [ 'arakawa' , 'asaka' , 'chichibu' , 'fujimi' , 'fujimino' , 'fukaya' , 'hanno' , 'hanyu' , 'hasuda' , 'hatogaya' , 'hatoyama' , 'hidaka' , 'higashichichibu' , 'higashimatsuyama' , 'honjo' , 'ina' , 'iruma' , 'iwatsuki' , 'kamiizumi' , 'kamikawa' , 'kamisato' , 'kasukabe' , 'kawagoe' , 'kawaguchi' , 'kawajima' , 'kazo' , 'kitamoto' , 'koshigaya' , 'kounosu' , 'kuki' , 'kumagaya' , 'matsubushi' , 'minano' , 'misato' , 'miyashiro' , 'miyoshi' , 'moroyama' , 'nagatoro' , 'namegawa' , 'niiza' , 'ogano' , 'ogawa' , 'ogose' , 'okegawa' , 'omiya' , 'otaki' , 'ranzan' , 'ryokami' , 'saitama' , 'sakado' , 'satte' , 'sayama' , 'shiki' , 'shiraoka' , 'soka' , 'sugito' , 'toda' , 'tokigawa' , 'tokorozawa' , 'tsurugashima' , 'urawa' , 'warabi' , 'yashio' , 'yokoze' , 'yono' , 'yorii' , 'yoshida' , 'yoshikawa' , 'yoshimi' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'saga' && wa [ 3 ] != undefined ) {
if ( [ 'ariake' , 'arita' , 'fukudomi' , 'genkai' , 'hamatama' , 'hizen' , 'imari' , 'kamimine' , 'kanzaki' , 'karatsu' , 'kashima' , 'kitagata' , 'kitahata' , 'kiyama' , 'kouhoku' , 'kyuragi' , 'nishiarita' , 'ogi' , 'omachi' , 'ouchi' , 'saga' , 'shiroishi' , 'taku' , 'tara' , 'tosu' , 'yoshinogari' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'osaka' && wa [ 3 ] != undefined ) {
if ( [ 'abeno' , 'chihayaakasaka' , 'chuo' , 'daito' , 'fujiidera' , 'habikino' , 'hannan' , 'higashiosaka' , 'higashisumiyoshi' , 'higashiyodogawa' , 'hirakata' , 'ibaraki' , 'ikeda' , 'izumi' , 'izumiotsu' , 'izumisano' , 'kadoma' , 'kaizuka' , 'kanan' , 'kashiwara' , 'katano' , 'kawachinagano' , 'kishiwada' , 'kita' , 'kumatori' , 'matsubara' , 'minato' , 'minoh' , 'misaki' , 'moriguchi' , 'neyagawa' , 'nishi' , 'nose' , 'osakasayama' , 'sakai' , 'sayama' , 'sennan' , 'settsu' , 'shijonawate' , 'shimamoto' , 'suita' , 'tadaoka' , 'taishi' , 'tajiri' , 'takaishi' , 'takatsuki' , 'tondabayashi' , 'toyonaka' , 'toyono' , 'yao' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'okinawa' && wa [ 3 ] != undefined ) {
if ( [ 'aguni' , 'ginowan' , 'ginoza' , 'gushikami' , 'haebaru' , 'higashi' , 'hirara' , 'iheya' , 'ishigaki' , 'ishikawa' , 'itoman' , 'izena' , 'kadena' , 'kin' , 'kitadaito' , 'kitanakagusuku' , 'kumejima' , 'kunigami' , 'minamidaito' , 'motobu' , 'nago' , 'naha' , 'nakagusuku' , 'nakijin' , 'nanjo' , 'nishihara' , 'ogimi' , 'okinawa' , 'onna' , 'shimoji' , 'taketomi' , 'tarama' , 'tokashiki' , 'tomigusuku' , 'tonaki' , 'urasoe' , 'uruma' , 'yaese' , 'yomitan' , 'yonabaru' , 'yonaguni' , 'zamami' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'okayama' && wa [ 3 ] != undefined ) {
if ( [ 'akaiwa' , 'asakuchi' , 'bizen' , 'hayashima' , 'ibara' , 'kagamino' , 'kasaoka' , 'kibichuo' , 'kumenan' , 'kurashiki' , 'maniwa' , 'misaki' , 'nagi' , 'niimi' , 'nishiawakura' , 'okayama' , 'satosho' , 'setouchi' , 'shinjo' , 'shoo' , 'soja' , 'takahashi' , 'tamano' , 'tsuyama' , 'wake' , 'yakage' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'oita' && wa [ 3 ] != undefined ) {
if ( [ 'beppu' , 'bungoono' , 'bungotakada' , 'hasama' , 'hiji' , 'himeshima' , 'hita' , 'kamitsue' , 'kokonoe' , 'kuju' , 'kunisaki' , 'kusu' , 'oita' , 'saiki' , 'taketa' , 'tsukumi' , 'usa' , 'usuki' , 'yufu' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'niigata' && wa [ 3 ] != undefined ) {
if ( [ 'aga' , 'agano' , 'gosen' , 'itoigawa' , 'izumozaki' , 'joetsu' , 'kamo' , 'kariwa' , 'kashiwazaki' , 'minamiuonuma' , 'mitsuke' , 'muika' , 'murakami' , 'myoko' , 'nagaoka' , 'niigata' , 'ojiya' , 'omi' , 'sado' , 'sanjo' , 'seiro' , 'seirou' , 'sekikawa' , 'shibata' , 'tagami' , 'tainai' , 'tochio' , 'tokamachi' , 'tsubame' , 'tsunan' , 'uonuma' , 'yahiko' , 'yoita' , 'yuzawa' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'nara' && wa [ 3 ] != undefined ) {
if ( [ 'ando' , 'gose' , 'heguri' , 'higashiyoshino' , 'ikaruga' , 'ikoma' , 'kamikitayama' , 'kanmaki' , 'kashiba' , 'kashihara' , 'katsuragi' , 'kawai' , 'kawakami' , 'kawanishi' , 'koryo' , 'kurotaki' , 'mitsue' , 'miyake' , 'nara' , 'nosegawa' , 'oji' , 'ouda' , 'oyodo' , 'sakurai' , 'sango' , 'shimoichi' , 'shimokitayama' , 'shinjo' , 'soni' , 'takatori' , 'tawaramoto' , 'tenkawa' , 'tenri' , 'uda' , 'yamatokoriyama' , 'yamatotakada' , 'yamazoe' , 'yoshino' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'nagasaki' && wa [ 3 ] != undefined ) {
if ( [ 'chijiwa' , 'futsu' , 'goto' , 'hasami' , 'hirado' , 'iki' , 'isahaya' , 'kawatana' , 'kuchinotsu' , 'matsuura' , 'nagasaki' , 'obama' , 'omura' , 'oseto' , 'saikai' , 'sasebo' , 'seihi' , 'shimabara' , 'shinkamigoto' , 'togitsu' , 'tsushima' , 'unzen' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'nagano' && wa [ 3 ] != undefined ) {
if ( [ 'achi' , 'agematsu' , 'anan' , 'aoki' , 'asahi' , 'azumino' , 'chikuhoku' , 'chikuma' , 'chino' , 'fujimi' , 'hakuba' , 'hara' , 'hiraya' , 'iida' , 'iijima' , 'iiyama' , 'iizuna' , 'ikeda' , 'ikusaka' , 'ina' , 'karuizawa' , 'kawakami' , 'kiso' , 'kisofukushima' , 'kitaaiki' , 'komagane' , 'komoro' , 'matsukawa' , 'matsumoto' , 'miasa' , 'minamiaiki' , 'minamimaki' , 'minamiminowa' , 'minowa' , 'miyada' , 'miyota' , 'mochizuki' , 'nagano' , 'nagawa' , 'nagiso' , 'nakagawa' , 'nakano' , 'nozawaonsen' , 'obuse' , 'ogawa' , 'okaya' , 'omachi' , 'omi' , 'ookuwa' , 'ooshika' , 'otaki' , 'otari' , 'sakae' , 'sakaki' , 'saku' , 'sakuho' , 'shimosuwa' , 'shinanomachi' , 'shiojiri' , 'suwa' , 'suzaka' , 'takagi' , 'takamori' , 'takayama' , 'tateshina' , 'tatsuno' , 'togakushi' , 'togura' , 'tomi' , 'ueda' , 'wada' , 'yamagata' , 'yamanouchi' , 'yasaka' , 'yasuoka' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'miyazaki' && wa [ 3 ] != undefined ) {
if ( [ 'aya' , 'ebino' , 'gokase' , 'hyuga' , 'kadogawa' , 'kawaminami' , 'kijo' , 'kitagawa' , 'kitakata' , 'kitaura' , 'kobayashi' , 'kunitomi' , 'kushima' , 'mimata' , 'miyakonojo' , 'miyazaki' , 'morotsuka' , 'nichinan' , 'nishimera' , 'nobeoka' , 'saito' , 'shiiba' , 'shintomi' , 'takaharu' , 'takanabe' , 'takazaki' , 'tsuno' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'miyagi' && wa [ 3 ] != undefined ) {
if ( [ 'furukawa' , 'higashimatsushima' , 'ishinomaki' , 'iwanuma' , 'kakuda' , 'kami' , 'kawasaki' , 'marumori' , 'matsushima' , 'minamisanriku' , 'misato' , 'murata' , 'natori' , 'ogawara' , 'ohira' , 'onagawa' , 'osaki' , 'rifu' , 'semine' , 'shibata' , 'shichikashuku' , 'shikama' , 'shiogama' , 'shiroishi' , 'tagajo' , 'taiwa' , 'tome' , 'tomiya' , 'wakuya' , 'watari' , 'yamamoto' , 'zao' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'mie' && wa [ 3 ] != undefined ) {
if ( [ 'asahi' , 'inabe' , 'ise' , 'kameyama' , 'kawagoe' , 'kiho' , 'kisosaki' , 'kiwa' , 'komono' , 'kumano' , 'kuwana' , 'matsusaka' , 'meiwa' , 'mihama' , 'minamiise' , 'misugi' , 'miyama' , 'nabari' , 'shima' , 'suzuka' , 'tado' , 'taiki' , 'taki' , 'tamaki' , 'toba' , 'tsu' , 'udono' , 'ureshino' , 'watarai' , 'yokkaichi' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'kyoto' && wa [ 3 ] != undefined ) {
if ( [ 'ayabe' , 'fukuchiyama' , 'higashiyama' , 'ide' , 'ine' , 'joyo' , 'kameoka' , 'kamo' , 'kita' , 'kizu' , 'kumiyama' , 'kyotamba' , 'kyotanabe' , 'kyotango' , 'maizuru' , 'minami' , 'minamiyamashiro' , 'miyazu' , 'muko' , 'nagaokakyo' , 'nakagyo' , 'nantan' , 'oyamazaki' , 'sakyo' , 'seika' , 'tanabe' , 'uji' , 'ujitawara' , 'wazuka' , 'yamashina' , 'yawata' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'kumamoto' && wa [ 3 ] != undefined ) {
if ( [ 'amakusa' , 'arao' , 'aso' , 'choyo' , 'gyokuto' , 'kamiamakusa' , 'kikuchi' , 'kumamoto' , 'mashiki' , 'mifune' , 'minamata' , 'minamioguni' , 'nagasu' , 'nishihara' , 'oguni' , 'ozu' , 'sumoto' , 'takamori' , 'uki' , 'uto' , 'yamaga' , 'yamato' , 'yatsushiro' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'kochi' && wa [ 3 ] != undefined ) {
if ( [ 'aki' , 'geisei' , 'hidaka' , 'higashitsuno' , 'ino' , 'kagami' , 'kami' , 'kitagawa' , 'kochi' , 'mihara' , 'motoyama' , 'muroto' , 'nahari' , 'nakamura' , 'nankoku' , 'nishitosa' , 'niyodogawa' , 'ochi' , 'okawa' , 'otoyo' , 'otsuki' , 'sakawa' , 'sukumo' , 'susaki' , 'tosa' , 'tosashimizu' , 'toyo' , 'tsuno' , 'umaji' , 'yasuda' , 'yusuhara' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'kanagawa' && wa [ 3 ] != undefined ) {
if ( [ 'aikawa' , 'atsugi' , 'ayase' , 'chigasaki' , 'ebina' , 'fujisawa' , 'hadano' , 'hakone' , 'hiratsuka' , 'isehara' , 'kaisei' , 'kamakura' , 'kiyokawa' , 'matsuda' , 'minamiashigara' , 'miura' , 'nakai' , 'ninomiya' , 'odawara' , 'oi' , 'oiso' , 'sagamihara' , 'samukawa' , 'tsukui' , 'yamakita' , 'yamato' , 'yokosuka' , 'yugawara' , 'zama' , 'zushi' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'kagoshima' && wa [ 3 ] != undefined ) {
if ( [ 'akune' , 'amami' , 'hioki' , 'isa' , 'isen' , 'izumi' , 'kagoshima' , 'kanoya' , 'kawanabe' , 'kinko' , 'kouyama' , 'makurazaki' , 'matsumoto' , 'minamitane' , 'nakatane' , 'nishinoomote' , 'satsumasendai' , 'soo' , 'tarumizu' , 'yusui' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'kagawa' && wa [ 3 ] != undefined ) {
if ( [ 'ayagawa' , 'higashikagawa' , 'kanonji' , 'kotohira' , 'manno' , 'marugame' , 'mitoyo' , 'naoshima' , 'sanuki' , 'tadotsu' , 'takamatsu' , 'tonosho' , 'uchinomi' , 'utazu' , 'zentsuji' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'iwate' && wa [ 3 ] != undefined ) {
if ( [ 'fudai' , 'fujisawa' , 'hanamaki' , 'hiraizumi' , 'hirono' , 'ichinohe' , 'ichinoseki' , 'iwaizumi' , 'iwate' , 'joboji' , 'kamaishi' , 'kanegasaki' , 'karumai' , 'kawai' , 'kitakami' , 'kuji' , 'kunohe' , 'kuzumaki' , 'miyako' , 'mizusawa' , 'morioka' , 'ninohe' , 'noda' , 'ofunato' , 'oshu' , 'otsuchi' , 'rikuzentakata' , 'shiwa' , 'shizukuishi' , 'sumita' , 'tanohata' , 'tono' , 'yahaba' , 'yamada' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'ishikawa' && wa [ 3 ] != undefined ) {
if ( [ 'anamizu' , 'hakui' , 'hakusan' , 'kaga' , 'kahoku' , 'kanazawa' , 'kawakita' , 'komatsu' , 'nakanoto' , 'nanao' , 'nomi' , 'nonoichi' , 'noto' , 'shika' , 'suzu' , 'tsubata' , 'tsurugi' , 'uchinada' , 'wajima' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'ibaraki' && wa [ 3 ] != undefined ) {
if ( [ 'ami' , 'asahi' , 'bando' , 'chikusei' , 'daigo' , 'fujishiro' , 'hitachi' , 'hitachinaka' , 'hitachiomiya' , 'hitachiota' , 'ibaraki' , 'ina' , 'inashiki' , 'itako' , 'iwama' , 'joso' , 'kamisu' , 'kasama' , 'kashima' , 'kasumigaura' , 'koga' , 'miho' , 'mito' , 'moriya' , 'naka' , 'namegata' , 'oarai' , 'ogawa' , 'omitama' , 'ryugasaki' , 'sakai' , 'sakuragawa' , 'shimodate' , 'shimotsuma' , 'shirosato' , 'sowa' , 'suifu' , 'takahagi' , 'tamatsukuri' , 'tokai' , 'tomobe' , 'tone' , 'toride' , 'tsuchiura' , 'tsukuba' , 'uchihara' , 'ushiku' , 'yachiyo' , 'yamagata' , 'yawara' , 'yuki' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'hyogo' && wa [ 3 ] != undefined ) {
if ( [ 'aioi' , 'akashi' , 'ako' , 'amagasaki' , 'aogaki' , 'asago' , 'ashiya' , 'awaji' , 'fukusaki' , 'goshiki' , 'harima' , 'himeji' , 'ichikawa' , 'inagawa' , 'itami' , 'kakogawa' , 'kamigori' , 'kamikawa' , 'kasai' , 'kasuga' , 'kawanishi' , 'miki' , 'minamiawaji' , 'nishinomiya' , 'nishiwaki' , 'ono' , 'sanda' , 'sannan' , 'sasayama' , 'sayo' , 'shingu' , 'shinonsen' , 'shiso' , 'sumoto' , 'taishi' , 'taka' , 'takarazuka' , 'takasago' , 'takino' , 'tamba' , 'tatsuno' , 'toyooka' , 'yabu' , 'yashiro' , 'yoka' , 'yokawa' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'hokkaido' && wa [ 3 ] != undefined ) {
if ( [ 'abashiri' , 'abira' , 'aibetsu' , 'akabira' , 'akkeshi' , 'asahikawa' , 'ashibetsu' , 'ashoro' , 'assabu' , 'atsuma' , 'bibai' , 'biei' , 'bifuka' , 'bihoro' , 'biratori' , 'chippubetsu' , 'chitose' , 'date' , 'ebetsu' , 'embetsu' , 'eniwa' , 'erimo' , 'esan' , 'esashi' , 'fukagawa' , 'fukushima' , 'furano' , 'furubira' , 'haboro' , 'hakodate' , 'hamatonbetsu' , 'hidaka' , 'higashikagura' , 'higashikawa' , 'hiroo' , 'hokuryu' , 'hokuto' , 'honbetsu' , 'horokanai' , 'horonobe' , 'ikeda' , 'imakane' , 'ishikari' , 'iwamizawa' , 'iwanai' , 'kamifurano' , 'kamikawa' , 'kamishihoro' , 'kamisunagawa' , 'kamoenai' , 'kayabe' , 'kembuchi' , 'kikonai' , 'kimobetsu' , 'kitahiroshima' , 'kitami' , 'kiyosato' , 'koshimizu' , 'kunneppu' , 'kuriyama' , 'kuromatsunai' , 'kushiro' , 'kutchan' , 'kyowa' , 'mashike' , 'matsumae' , 'mikasa' , 'minamifurano' , 'mombetsu' , 'moseushi' , 'mukawa' , 'muroran' , 'naie' , 'nakagawa' , 'nakasatsunai' , 'nakatombetsu' , 'nanae' , 'nanporo' , 'nayoro' , 'nemuro' , 'niikappu' , 'niki' , 'nishiokoppe' , 'noboribetsu' , 'numata' , 'obihiro' , 'obira' , 'oketo' , 'okoppe' , 'otaru' , 'otobe' , 'otofuke' , 'otoineppu' , 'oumu' , 'ozora' , 'pippu' , 'rankoshi' , 'rebun' , 'rikubetsu' , 'rishiri' , 'rishirifuji' , 'saroma' , 'sarufutsu' , 'shakotan' , 'shari' , 'shibecha' , 'shibetsu' , 'shikabe' , 'shikaoi' , 'shimamaki' , 'shimizu' , 'shimokawa' , 'shinshinotsu' , 'shintoku' , 'shiranuka' , 'shiraoi' , 'shiriuchi' , 'sobetsu' , 'sunagawa' , 'taiki' , 'takasu' , 'takikawa' , 'takinoue' , 'teshikaga' , 'tobetsu' , 'tohma' , 'tomakomai' , 'tomari' , 'toya' , 'toyako' , 'toyotomi' , 'toyoura' , 'tsubetsu' , 'tsukigata' , 'urakawa' , 'urausu' , 'uryu' , 'utashinai' , 'wakkanai' , 'wassamu' , 'yakumo' , 'yoichi' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'hiroshima' && wa [ 3 ] != undefined ) {
if ( [ 'asaminami' , 'daiwa' , 'etajima' , 'fuchu' , 'fukuyama' , 'hatsukaichi' , 'higashihiroshima' , 'hongo' , 'jinsekikogen' , 'kaita' , 'kui' , 'kumano' , 'kure' , 'mihara' , 'miyoshi' , 'naka' , 'onomichi' , 'osakikamijima' , 'otake' , 'saka' , 'sera' , 'seranishi' , 'shinichi' , 'shobara' , 'takehara' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'gunma' && wa [ 3 ] != undefined ) {
if ( [ 'annaka' , 'chiyoda' , 'fujioka' , 'higashiagatsuma' , 'isesaki' , 'itakura' , 'kanna' , 'kanra' , 'katashina' , 'kawaba' , 'kiryu' , 'kusatsu' , 'maebashi' , 'meiwa' , 'midori' , 'minakami' , 'naganohara' , 'nakanojo' , 'nanmoku' , 'numata' , 'oizumi' , 'ora' , 'ota' , 'shibukawa' , 'shimonita' , 'shinto' , 'showa' , 'takasaki' , 'takayama' , 'tamamura' , 'tatebayashi' , 'tomioka' , 'tsukiyono' , 'tsumagoi' , 'ueno' , 'yoshioka' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'gifu' && wa [ 3 ] != undefined ) {
if ( [ 'anpachi' , 'ena' , 'gifu' , 'ginan' , 'godo' , 'gujo' , 'hashima' , 'hichiso' , 'hida' , 'higashishirakawa' , 'ibigawa' , 'ikeda' , 'kakamigahara' , 'kani' , 'kasahara' , 'kasamatsu' , 'kawaue' , 'kitagata' , 'mino' , 'minokamo' , 'mitake' , 'mizunami' , 'motosu' , 'nakatsugawa' , 'ogaki' , 'sakahogi' , 'seki' , 'sekigahara' , 'shirakawa' , 'tajimi' , 'takayama' , 'tarui' , 'toki' , 'tomika' , 'wanouchi' , 'yamagata' , 'yaotsu' , 'yoro' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'fukushima' && wa [ 3 ] != undefined ) {
if ( [ 'aizubange' , 'aizumisato' , 'aizuwakamatsu' , 'asakawa' , 'bandai' , 'date' , 'fukushima' , 'furudono' , 'futaba' , 'hanawa' , 'higashi' , 'hirata' , 'hirono' , 'iitate' , 'inawashiro' , 'ishikawa' , 'iwaki' , 'izumizaki' , 'kagamiishi' , 'kaneyama' , 'kawamata' , 'kitakata' , 'kitashiobara' , 'koori' , 'koriyama' , 'kunimi' , 'miharu' , 'mishima' , 'namie' , 'nango' , 'nishiaizu' , 'nishigo' , 'okuma' , 'omotego' , 'ono' , 'otama' , 'samegawa' , 'shimogo' , 'shirakawa' , 'showa' , 'soma' , 'sukagawa' , 'taishin' , 'tamakawa' , 'tanagura' , 'tenei' , 'yabuki' , 'yamato' , 'yamatsuri' , 'yanaizu' , 'yugawa' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'fukuoka' && wa [ 3 ] != undefined ) {
if ( [ 'ashiya' , 'buzen' , 'chikugo' , 'chikuho' , 'chikujo' , 'chikushino' , 'chikuzen' , 'chuo' , 'dazaifu' , 'fukuchi' , 'hakata' , 'higashi' , 'hirokawa' , 'hisayama' , 'iizuka' , 'inatsuki' , 'kaho' , 'kasuga' , 'kasuya' , 'kawara' , 'keisen' , 'koga' , 'kurate' , 'kurogi' , 'kurume' , 'minami' , 'miyako' , 'miyama' , 'miyawaka' , 'mizumaki' , 'munakata' , 'nakagawa' , 'nakama' , 'nishi' , 'nogata' , 'ogori' , 'okagaki' , 'okawa' , 'oki' , 'omuta' , 'onga' , 'onojo' , 'oto' , 'saigawa' , 'sasaguri' , 'shingu' , 'shinyoshitomi' , 'shonai' , 'soeda' , 'sue' , 'tachiarai' , 'tagawa' , 'takata' , 'toho' , 'toyotsu' , 'tsuiki' , 'ukiha' , 'umi' , 'usui' , 'yamada' , 'yame' , 'yanagawa' , 'yukuhashi' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'fukui' && wa [ 3 ] != undefined ) {
if ( [ 'echizen' , 'eiheiji' , 'fukui' , 'ikeda' , 'katsuyama' , 'mihama' , 'minamiechizen' , 'obama' , 'ohi' , 'ono' , 'sabae' , 'sakai' , 'takahama' , 'tsuruga' , 'wakasa' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'ehime' && wa [ 3 ] != undefined ) {
if ( [ 'ainan' , 'honai' , 'ikata' , 'imabari' , 'iyo' , 'kamijima' , 'kihoku' , 'kumakogen' , 'masaki' , 'matsuno' , 'matsuyama' , 'namikata' , 'niihama' , 'ozu' , 'saijo' , 'seiyo' , 'shikokuchuo' , 'tobe' , 'toon' , 'uchiko' , 'uwajima' , 'yawatahama' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'chiba' && wa [ 3 ] != undefined ) {
if ( [ 'abiko' , 'asahi' , 'chonan' , 'chosei' , 'choshi' , 'chuo' , 'funabashi' , 'futtsu' , 'hanamigawa' , 'ichihara' , 'ichikawa' , 'ichinomiya' , 'inzai' , 'isumi' , 'kamagaya' , 'kamogawa' , 'kashiwa' , 'katori' , 'katsuura' , 'kimitsu' , 'kisarazu' , 'kozaki' , 'kujukuri' , 'kyonan' , 'matsudo' , 'midori' , 'mihama' , 'minamiboso' , 'mobara' , 'mutsuzawa' , 'nagara' , 'nagareyama' , 'narashino' , 'narita' , 'noda' , 'oamishirasato' , 'omigawa' , 'onjuku' , 'otaki' , 'sakae' , 'sakura' , 'shimofusa' , 'shirako' , 'shiroi' , 'shisui' , 'sodegaura' , 'sosa' , 'tako' , 'tateyama' , 'togane' , 'tohnosho' , 'tomisato' , 'urayasu' , 'yachimata' , 'yachiyo' , 'yokaichiba' , 'yokoshibahikari' , 'yotsukaido' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'aomori' && wa [ 3 ] != undefined ) {
if ( [ 'aomori' , 'gonohe' , 'hachinohe' , 'hashikami' , 'hiranai' , 'hirosaki' , 'itayanagi' , 'kuroishi' , 'misawa' , 'mutsu' , 'nakadomari' , 'noheji' , 'oirase' , 'owani' , 'rokunohe' , 'sannohe' , 'shichinohe' , 'shingo' , 'takko' , 'towada' , 'tsugaru' , 'tsuruta' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'akita' && wa [ 3 ] != undefined ) {
if ( [ 'akita' , 'daisen' , 'fujisato' , 'gojome' , 'hachirogata' , 'happou' , 'higashinaruse' , 'honjo' , 'honjyo' , 'ikawa' , 'kamikoani' , 'kamioka' , 'katagami' , 'kazuno' , 'kitaakita' , 'kosaka' , 'kyowa' , 'misato' , 'mitane' , 'moriyoshi' , 'nikaho' , 'noshiro' , 'odate' , 'oga' , 'ogata' , 'semboku' , 'yokote' , 'yurihonjo' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'aichi' && wa [ 3 ] != undefined ) {
if ( [ 'aisai' , 'ama' , 'anjo' , 'asuke' , 'chiryu' , 'chita' , 'fuso' , 'gamagori' , 'handa' , 'hazu' , 'hekinan' , 'higashiura' , 'ichinomiya' , 'inazawa' , 'inuyama' , 'isshiki' , 'iwakura' , 'kanie' , 'kariya' , 'kasugai' , 'kira' , 'kiyosu' , 'komaki' , 'konan' , 'kota' , 'mihama' , 'miyoshi' , 'nishio' , 'nisshin' , 'obu' , 'oguchi' , 'oharu' , 'okazaki' , 'owariasahi' , 'seto' , 'shikatsu' , 'shinshiro' , 'shitara' , 'tahara' , 'takahama' , 'tobishima' , 'toei' , 'togo' , 'tokai' , 'tokoname' , 'toyoake' , 'toyohashi' , 'toyokawa' , 'toyone' , 'toyota' , 'tsushima' , 'yatomi' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( [ 'ac' , 'ad' , 'aichi' , 'akita' , 'aomori' , 'chiba' , 'co' , 'ed' , 'ehime' , 'fukui' , 'fukuoka' , 'fukushima' , 'gifu' , 'go' , 'gr' , 'gunma' , 'hiroshima' , 'hokkaido' , 'hyogo' , 'ibaraki' , 'ishikawa' , 'iwate' , 'kagawa' , 'kagoshima' , 'kanagawa' , 'kawasaki' , 'kitakyushu' , 'kobe' , 'kochi' , 'kumamoto' , 'kyoto' , 'lg' , 'mie' , 'miyagi' , 'miyazaki' , 'nagano' , 'nagasaki' , 'nagoya' , 'nara' , 'ne' , 'niigata' , 'oita' , 'okayama' , 'okinawa' , 'or' , 'osaka' , 'saga' , 'saitama' , 'sapporo' , 'sendai' , 'shiga' , 'shimane' , 'shizuoka' , 'tochigi' , 'tokushima' , 'tokyo' , 'tottori' , 'toyama' , 'wakayama' , 'xn--0trq7p7nn' , 'xn--1ctwo' , 'xn--1lqs03n' , 'xn--1lqs71d' , 'xn--2m4a15e' , 'xn--32vp30h' , 'xn--4it168d' , 'xn--4it797k' , 'xn--4pvxs' , 'xn--5js045d' , 'xn--5rtp49c' , 'xn--5rtq34k' , 'xn--6btw5a' , 'xn--6orx2r' , 'xn--7t0a264c' , 'xn--8ltr62k' , 'xn--8pvr4u' , 'xn--c3s14m' , 'xn--d5qv7z876c' , 'xn--djrs72d6uy' , 'xn--djty4k' , 'xn--efvn9s' , 'xn--ehqz56n' , 'xn--elqq16h' , 'xn--f6qx53a' , 'xn--k7yn95e' , 'xn--kbrq7o' , 'xn--klt787d' , 'xn--kltp7d' , 'xn--kltx9a' , 'xn--klty5x' , 'xn--mkru45i' , 'xn--nit225k' , 'xn--ntso0iqx3a' , 'xn--ntsq17g' , 'xn--pssu33l' , 'xn--qqqt11m' , 'xn--rht27z' , 'xn--rht3d' , 'xn--rht61e' , 'xn--rny31h' , 'xn--tor131o' , 'xn--uist22h' , 'xn--uisz3g' , 'xn--uuwu58a' , 'xn--vgu402c' , 'xn--zbx025d' , 'yamagata' , 'yamaguchi' , 'yamanashi' , 'yokohama' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
break ;
case 'ke' :
if ( [ 'ac' , 'co' , 'go' , 'info' , 'me' , 'mobi' , 'ne' , 'or' , 'sc' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
break ;
case 'kg' :
if ( [ 'com' , 'edu' , 'gov' , 'mil' , 'net' , 'org' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
break ;
case 'kh' :
if ( [ 'com' , 'edu' , 'gov' , 'mil' , 'net' , 'org' , 'per' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
break ;
case 'ki' :
if ( [ 'biz' , 'com' , 'edu' , 'gov' , 'info' , 'net' , 'org' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
break ;
case 'km' :
if ( [ 'ass' , 'asso' , 'com' , 'coop' , 'edu' , 'gouv' , 'gov' , 'medecin' , 'mil' , 'nom' , 'notaires' , 'org' , 'pharmaciens' , 'prd' , 'presse' , 'tm' , 'veterinaire' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
break ;
case 'kn' :
if ( [ 'com' , 'edu' , 'gov' , 'net' , 'org' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
break ;
case 'kp' :
if ( [ 'aca' , 'com' , 'edu' , 'gov' , 'law' , 'net' , 'org' , 'rep' , 'sca' , 'tra' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
break ;
case 'kr' :
if ( [ 'ac' , 'busan' , 'cheju' , 'chonbuk' , 'chonnam' , 'chungbuk' , 'chungnam' , 'co' , 'daegu' , 'daejeon' , 'es' , 'gangwon' , 'go' , 'gwangju' , 'gyeongbuk' , 'gyeonggi' , 'gyeongnam' , 'hs' , 'incheon' , 'inchon' , 'jeju' , 'jeonbuk' , 'jeonnam' , 'kangwon' , 'kg' , 'kwangju' , 'kyongbuk' , 'kyonggi' , 'kyongnam' , 'mil' , 'ms' , 'ne' , 'nm' , 'or' , 'pe' , 'pusan' , 're' , 'sc' , 'seoul' , 'taegu' , 'taejon' , 'ulsan' , 'xn--bj0bj06e' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
break ;
case 'krd' :
if ( wa [ 1 ] == 'gov' ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
break ;
case 'kw' :
if ( [ 'com' , 'edu' , 'emb' , 'gov' , 'ind' , 'net' , 'org' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
break ;
case 'ky' :
if ( [ 'com' , 'edu' , 'gov' , 'net' , 'org' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
break ;
case 'kz' :
if ( [ 'com' , 'edu' , 'gov' , 'mil' , 'net' , 'org' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
break ;
case 'la' :
if ( [ 'com' , 'edu' , 'gov' , 'info' , 'int' , 'net' , 'org' , 'per' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
break ;
case 'lb' :
if ( [ 'com' , 'edu' , 'gov' , 'net' , 'org' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
break ;
case 'lc' :
if ( [ 'co' , 'com' , 'edu' , 'gov' , 'net' , 'org' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
break ;
case 'lk' :
if ( [ 'ac' , 'assn' , 'com' , 'edu' , 'gov' , 'grp' , 'hotel' , 'int' , 'ltd' , 'net' , 'ngo' , 'org' , 'sch' , 'soc' , 'web' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
break ;
case 'lr' :
if ( [ 'com' , 'edu' , 'gov' , 'net' , 'org' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
break ;
case 'ls' :
if ( [ 'ac' , 'biz' , 'co' , 'edu' , 'gov' , 'info' , 'net' , 'nul' , 'org' , 'parliament' , 'quadrant' , 'sc' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
break ;
case 'lt' :
if ( wa [ 1 ] == 'gov' ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
break ;
case 'lv' :
if ( [ 'asn' , 'com' , 'conf' , 'edu' , 'gov' , 'id' , 'mil' , 'net' , 'org' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'ly' :
if ( [ 'com' , 'edu' , 'gov' , 'id' , 'med' , 'net' , 'org' , 'plc' , 'sch' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'ma' :
if ( [ 'ac' , 'co' , 'gov' , 'net' , 'org' , 'press' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'mc' :
2022-09-12 21:06:38 -04:00
if ( [ 'asso' , 'tm' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'me' :
2022-09-12 21:06:38 -04:00
if ( [ 'ac' , 'co' , 'edu' , 'gov' , 'its' , 'net' , 'org' , 'priv' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'mg' :
2022-09-12 21:06:38 -04:00
if ( [ 'co' , 'com' , 'edu' , 'gov' , 'mil' , 'nom' , 'org' , 'prd' , 'tm' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'mk' :
if ( [ 'com' , 'edu' , 'gov' , 'inf' , 'name' , 'net' , 'org' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'ml' :
if ( [ 'com' , 'edu' , 'gouv' , 'gov' , 'net' , 'org' , 'presse' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'mm' :
if ( [ 'com' , 'edu' , 'gov' , 'net' , 'org' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'mn' :
2022-09-12 21:06:38 -04:00
if ( [ 'edu' , 'gov' , 'org' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'mo' :
2022-09-12 21:06:38 -04:00
if ( [ 'com' , 'edu' , 'gov' , 'net' , 'org' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'mr' :
if ( wa [ 1 ] == 'gov' ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'ms' :
if ( [ 'com' , 'edu' , 'gov' , 'net' , 'org' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'mt' :
if ( [ 'com' , 'edu' , 'gov' , 'net' , 'org' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'mu' :
if ( [ 'ac' , 'co' , 'com' , 'gov' , 'net' , 'or' , 'org' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'museum' :
2022-09-12 21:06:38 -04:00
if ( [ 'academy' , 'agriculture' , 'air' , 'airguard' , 'alabama' , 'alaska' , 'amber' , 'ambulance' , 'american' , 'americana' , 'americanantiques' , 'americanart' , 'amsterdam' , 'and' , 'annefrank' , 'anthro' , 'anthropology' , 'antiques' , 'aquarium' , 'arboretum' , 'archaeological' , 'archaeology' , 'architecture' , 'art' , 'artanddesign' , 'artcenter' , 'artdeco' , 'arteducation' , 'artgallery' , 'arts' , 'artsandcrafts' , 'asmatart' , 'assassination' , 'assisi' , 'association' , 'astronomy' , 'atlanta' , 'austin' , 'australia' , 'automotive' , 'aviation' , 'axis' , 'badajoz' , 'baghdad' , 'bahn' , 'bale' , 'baltimore' , 'barcelona' , 'baseball' , 'basel' , 'baths' , 'bauern' , 'beauxarts' , 'beeldengeluid' , 'bellevue' , 'bergbau' , 'berkeley' , 'berlin' , 'bern' , 'bible' , 'bilbao' , 'bill' , 'birdart' , 'birthplace' , 'bonn' , 'boston' , 'botanical' , 'botanicalgarden' , 'botanicgarden' , 'botany' , 'brandywinevalley' , 'brasil' , 'bristol' , 'british' , 'britishcolumbia' , 'broadcast' , 'brunel' , 'brussel' , 'brussels' , 'bruxelles' , 'building' , 'burghof' , 'bus' , 'bushey' , 'cadaques' , 'california' , 'cambridge' , 'can' , 'canada' , 'capebreton' , 'carrier' , 'cartoonart' , 'casadelamoneda' , 'castle' , 'castres' , 'celtic' , 'center' , 'chattanooga' , 'cheltenham' , 'chesapeakebay' , 'chicago' , 'children' , 'childrens' , 'childrensgarden' , 'chiropractic' , 'chocolate' , 'christiansburg' , 'cincinnati' , 'cinema' , 'circus' , 'civilisation' , 'civilization' , 'civilwar' , 'clinton' , 'clock' , 'coal' , 'coastaldefence' , 'cody' , 'coldwar' , 'collection' , 'colonialwilliamsburg' , 'coloradoplateau' , 'columbia' , 'columbus' , 'communication' , 'communications' , 'community' , 'computer' , 'computerhistory' , 'contemporary' , 'contemporaryart' , 'convent' , 'copenhagen' , 'corporation' , 'corvette' , 'costume' , 'countryestate' , 'county' , 'crafts' , 'cranbrook' , 'creation' , 'cultural' , 'culturalcenter' , 'culture' , 'cyber' , 'cymru' , 'dali' , 'dallas' , 'database' , 'ddr' , 'decorativearts' , 'delaware' , 'delmenhorst' , 'denmark' , 'depot' , 'design' , 'detroit' , 'dinosaur' , 'discovery' , 'dolls' , 'donostia' , 'durham' , 'eastafrica' , 'eastcoast' , 'education' , 'educational' , 'egyptian' , 'eisenbahn' , 'elburg' , 'elvendrell' , 'embroidery' , 'encyclopedic' , 'england' , 'entomology' , 'environment' , 'environmentalconservation' , 'epilepsy' , 'essex' , 'estate' , 'ethnology' , 'exeter' , 'exhibition' , 'family' , 'farm' , 'farmequipment' , 'farmers' , 'farmstead' , 'field' , 'figueres' , 'filatelia' , 'film' , 'fineart' , 'finearts' , 'finland' , 'flanders' , 'florida' , 'force' , 'fortmissoula' , 'fortworth' , 'foundation' , 'francaise' , 'frankfurt' , 'franziskaner' , 'freemasonry' , 'freiburg' , 'fribourg' , 'frog' , 'fundacio' , 'furniture' , 'gallery' , 'garden' , 'gateway' , 'geelvinck' , 'gemological' , 'geology' , 'georgia' , 'giessen' , 'glas' , 'glass' , 'gorge' , 'grandrapids' , 'graz' , 'guernsey' , 'halloffame' , 'hamburg' , 'handson' , 'harvestcelebration' , 'hawaii' , 'health' , 'heimatunduhren' , 'hellas' , 'helsinki' , 'hembygdsforbund' , 'heritage' , 'histoire' , 'historical' , 'historicalsociety' , 'historichouses' , 'historisch' , 'historisches' , 'history' , 'historyofscience' , 'horology' , 'house' , 'humanities' , 'illustration' , 'imageandsound' , 'indian' , 'indiana' , 'indianapolis' , 'indianmarket' , 'intelligence' , 'interactive' , 'iraq' , 'iron' , 'isleofman' , 'jamison' , 'jefferson' , 'jerusalem' , 'jewelry' , 'jewish' , 'jewishart' , 'jfk' , 'journalism' , 'judaica' , 'judygarland' , 'juedisches' , 'juif' , 'karate' , 'karikatur' , 'kids' , 'koebenhavn' , 'koeln' , 'kunst' , 'kunstsammlung' , 'kunstunddesign' , 'labor' , 'labour' , 'lajolla' , 'lancashire' , 'landes' , 'lans' , 'larsson' , 'lewismiller' , 'lincoln' , 'linz' , 'living' , 'livinghistory' , 'localhistory' , 'london' , 'losangeles' , 'louvre' , 'loyalist' , 'lucerne' , 'luxembourg' , 'luzern' , 'mad' , 'madrid' , 'mallorca' , 'manchester' , 'mansion' , 'mansions' , 'manx' , 'marburg' , 'maritime' , 'maritimo' , 'maryland' , 'marylhurst' , 'media' , 'medical' , 'medizinhistorisches' , 'meeres' , 'memorial' , 'mesaverde' , 'michigan' , 'midatlantic' , 'military' , 'mill' , 'miners' , 'mining' , 'minnesota' , 'missile' , 'missoula' , 'modern' , 'moma' , 'money' , 'monmouth' , 'monticello' , 'montreal' , ' moscow
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'mv' :
if ( [ 'aero' , 'biz' , 'com' , 'coop' , 'edu' , 'gov' , 'info' , 'int' , 'mil' , 'museum' , 'name' , 'net' , 'org' , 'pro' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'mw' :
if ( [ 'ac' , 'biz' , 'co' , 'com' , 'coop' , 'edu' , 'gov' , 'int' , 'museum' , 'net' , 'org' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'mx' :
if ( [ 'com' , 'edu' , 'gob' , 'net' , 'ngo' , 'org' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'my' :
2022-09-12 21:06:38 -04:00
if ( [ 'biz' , 'com' , 'edu' , 'gov' , 'mil' , 'name' , 'net' , 'org' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'mz' :
2022-09-12 21:06:38 -04:00
if ( [ 'ac' , 'adv' , 'co' , 'edu' , 'gov' , 'mil' , 'net' , 'org' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'na' :
2022-09-12 21:06:38 -04:00
if ( [ 'ca' , 'cc' , 'co' , 'com' , 'dr' , 'in' , 'info' , 'mobi' , 'mx' , 'name' , 'or' , 'org' , 'pro' , 'school' , 'tv' , 'us' , 'ws' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'nc' :
2022-09-12 21:06:38 -04:00
if ( [ 'asso' , 'gouv' , 'nom' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'net' :
if ( [ 'gb' , 'hu' , 'in' , 'jp' , 'ru' , 'se' , 'uk' , 'za' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'nf' :
if ( [ 'arts' , 'com' , 'firm' , 'info' , 'net' , 'other' , 'per' , 'rec' , 'store' , 'web' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'ng' :
if ( [ 'com' , 'edu' , 'gov' , 'i' , 'mil' , 'mobi' , 'name' , 'net' , 'org' , 'sch' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'ni' :
if ( [ 'ac' , 'biz' , 'co' , 'com' , 'edu' , 'gob' , 'in' , 'info' , 'int' , 'mil' , 'net' , 'nom' , 'org' , 'web' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'nl' :
if ( wa [ 1 ] == 'bv' ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'no' :
2022-09-12 21:06:38 -04:00
if ( wa [ 1 ] == 'xn--stfold-9xa' && wa [ 3 ] != undefined ) {
if ( wa [ 2 ] == 'xn--vler-qoa' ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'xn--mre-og-romsdal-qqb' && wa [ 3 ] != undefined ) {
if ( [ 'sande' , 'xn--hery-ira' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'vf' && wa [ 3 ] != undefined ) {
if ( wa [ 2 ] == 'gs' ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'vestfold' && wa [ 3 ] != undefined ) {
if ( wa [ 2 ] == 'sande' ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'va' && wa [ 3 ] != undefined ) {
if ( wa [ 2 ] == 'gs' ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'tr' && wa [ 3 ] != undefined ) {
if ( wa [ 2 ] == 'gs' ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'tm' && wa [ 3 ] != undefined ) {
if ( wa [ 2 ] == 'gs' ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'telemark' && wa [ 3 ] != undefined ) {
if ( [ 'bo' , 'xn--b-5ga' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'svalbard' && wa [ 3 ] != undefined ) {
if ( wa [ 2 ] == 'gs' ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'st' && wa [ 3 ] != undefined ) {
if ( wa [ 2 ] == 'gs' ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'sf' && wa [ 3 ] != undefined ) {
if ( wa [ 2 ] == 'gs' ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'rl' && wa [ 3 ] != undefined ) {
if ( wa [ 2 ] == 'gs' ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'ostfold' && wa [ 3 ] != undefined ) {
if ( wa [ 2 ] == 'valer' ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'oslo' && wa [ 3 ] != undefined ) {
if ( wa [ 2 ] == 'gs' ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'ol' && wa [ 3 ] != undefined ) {
if ( wa [ 2 ] == 'gs' ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'of' && wa [ 3 ] != undefined ) {
if ( wa [ 2 ] == 'gs' ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'nt' && wa [ 3 ] != undefined ) {
if ( wa [ 2 ] == 'gs' ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'nordland' && wa [ 3 ] != undefined ) {
if ( [ 'bo' , 'heroy' , 'xn--b-5ga' , 'xn--hery-ira' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'nl' && wa [ 3 ] != undefined ) {
if ( wa [ 2 ] == 'gs' ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'mr' && wa [ 3 ] != undefined ) {
if ( wa [ 2 ] == 'gs' ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'more-og-romsdal' && wa [ 3 ] != undefined ) {
if ( [ 'heroy' , 'sande' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'jan-mayen' && wa [ 3 ] != undefined ) {
if ( wa [ 2 ] == 'gs' ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'hordaland' && wa [ 3 ] != undefined ) {
if ( wa [ 2 ] == 'os' ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'hm' && wa [ 3 ] != undefined ) {
if ( wa [ 2 ] == 'gs' ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'hl' && wa [ 3 ] != undefined ) {
if ( wa [ 2 ] == 'gs' ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'hedmark' && wa [ 3 ] != undefined ) {
if ( [ 'os' , 'valer' , 'xn--vler-qoa' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'fm' && wa [ 3 ] != undefined ) {
if ( wa [ 2 ] == 'gs' ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'buskerud' && wa [ 3 ] != undefined ) {
if ( wa [ 2 ] == 'nes' ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'bu' && wa [ 3 ] != undefined ) {
if ( wa [ 2 ] == 'gs' ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'akershus' && wa [ 3 ] != undefined ) {
if ( wa [ 2 ] == 'nes' ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'ah' && wa [ 3 ] != undefined ) {
if ( wa [ 2 ] == 'gs' ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'aa' && wa [ 3 ] != undefined ) {
if ( wa [ 2 ] == 'gs' ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( [ 'aa' , 'aarborte' , 'aejrie' , 'afjord' , 'agdenes' , 'ah' , 'aknoluokta' , 'akrehamn' , 'al' , 'alaheadju' , 'alesund' , 'algard' , 'alstahaug' , 'alta' , 'alvdal' , 'amli' , 'amot' , 'andasuolo' , 'andebu' , 'andoy' , 'ardal' , 'aremark' , 'arendal' , 'arna' , 'aseral' , 'asker' , 'askim' , 'askoy' , 'askvoll' , 'asnes' , 'audnedaln' , 'aukra' , 'aure' , 'aurland' , 'aurskog-holand' , 'austevoll' , 'austrheim' , 'averoy' , 'badaddja' , 'bahcavuotna' , 'bahccavuotna' , 'baidar' , 'bajddar' , 'balat' , 'balestrand' , 'ballangen' , 'balsfjord' , 'bamble' , 'bardu' , 'barum' , 'batsfjord' , 'bearalvahki' , 'beardu' , 'beiarn' , 'berg' , 'bergen' , 'berlevag' , 'bievat' , 'bindal' , 'birkenes' , 'bjarkoy' , 'bjerkreim' , 'bjugn' , 'bodo' , 'bokn' , 'bomlo' , 'bremanger' , 'bronnoy' , 'bronnoysund' , 'brumunddal' , 'bryne' , 'bu' , 'budejju' , 'bygland' , 'bykle' , 'cahcesuolo' , 'davvenjarga' , 'davvesiida' , 'deatnu' , 'dep' , 'dielddanuorri' , 'divtasvuodna' , 'divttasvuotna' , 'donna' , 'dovre' , 'drammen' , 'drangedal' , 'drobak' , 'dyroy' , 'egersund' , 'eid' , 'eidfjord' , 'eidsberg' , 'eidskog' , 'eidsvoll' , 'eigersund' , 'elverum' , 'enebakk' , 'engerdal' , 'etne' , 'etnedal' , 'evenassi' , 'evenes' , 'evje-og-hornnes' , 'farsund' , 'fauske' , 'fedje' , 'fet' , 'fetsund' , 'fhs' , 'finnoy' , 'fitjar' , 'fjaler' , 'fjell' , 'fla' , 'flakstad' , 'flatanger' , 'flekkefjord' , 'flesberg' , 'flora' , 'floro' , 'fm' , 'folkebibl' , 'folldal' , 'forde' , 'forsand' , 'fosnes' , 'frana' , 'fredrikstad' , 'frei' , 'frogn' , 'froland' , 'frosta' , 'froya' , 'fuoisku' , 'fuossko' , 'fusa' , 'fylkesbibl' , 'fyresdal' , 'gaivuotna' , 'galsa' , 'gamvik' , 'gangaviika' , 'gaular' , 'gausdal' , 'giehtavuoatna' , 'gildeskal' , 'giske' , 'gjemnes' , 'gjerdrum' , 'gjerstad' , 'gjesdal' , 'gjovik' , 'gloppen' , 'gol' , 'gran' , 'grane' , 'granvin' , 'gratangen' , 'grimstad' , 'grong' , 'grue' , 'gulen' , 'guovdageaidnu' , 'ha' , 'habmer' , 'hadsel' , 'hagebostad' , 'halden' , 'halsa' , 'hamar' , 'hamaroy' , 'hammarfeasta' , 'hammerfest' , 'hapmir' , 'haram' , 'hareid' , 'harstad' , 'hasvik' , 'hattfjelldal' , 'haugesund' , 'hemne' , 'hemnes' , 'hemsedal' , 'herad' , 'hitra' , 'hjartdal' , 'hjelmeland' , 'hl' , 'hm' , 'hobol' , 'hof' , 'hokksund' , 'hol' , 'hole' , 'holmestrand' , 'holtalen' , 'honefoss' , 'hornindal' , 'horten' , 'hoyanger' , 'hoylandet' , 'hurdal' , 'hurum' , 'hvaler' , 'hyllestad' , 'ibestad' , 'idrett' , 'inderoy' , 'iveland' , 'ivgu' , 'jan-mayen' , 'jessheim' , 'jevnaker' , 'jolster' , 'jondal' , 'jorpeland' , 'kafjord' , 'karasjohka' , 'karasjok' , 'karlsoy' , 'karmoy' , 'kautokeino' , 'kirkenes' , 'klabu' , 'klepp' , 'kommune' , 'kongsberg' , 'kongsvinger' , 'kopervik' , 'kraanghke' , 'kragero' , 'kristiansand' , 'kristiansund' , 'krodsherad' , 'krokstadelva' , 'kvafjord' , 'kvalsund' , 'kvam' , 'kvanangen' , 'kvinesdal' , 'kvinnherad' , 'kviteseid' , 'kvitsoy' , 'laakesvuemie' , 'lahppi' , 'langevag' , 'lardal' , 'larvik' , 'lavagis' , 'lavangen' , 'leangaviika' , 'lebesby' , 'leikanger' , 'leirfjord' , 'leirvik' , 'leka' , 'leksvik' , 'lenvik' , 'lerdal' , 'lesja' , 'levanger' , 'lier' , 'lierne' , 'lillehammer' , 'lillesand' , 'lindas' , 'lindesnes' , 'loabat' , 'lodingen' , 'lom' , 'loppa' , 'lorenskog' , 'loten' , 'lund' , 'lunner' , 'luroy' , 'luster' , 'lyngdal' , 'lyngen' , 'malatvuopmi' , 'malselv' , 'malvik' , 'mandal' , 'marker' , 'marnardal' , 'masfjorden' , 'masoy' , 'matta-varjjat' , 'meland' , 'meldal' , 'melhus' , 'meloy' , 'meraker' , 'midsund' , 'midtre-gauldal' , 'mil' , 'mjondalen' , 'mo-i-rana' , 'moareke' , 'modalen' , 'modum' , 'molde' , 'mosjoen' , 'moskenes' , 'moss' , 'mosvik' , 'mr' , 'muosat' , 'museum' , 'naamesjevuemie' , 'namdalseid' , 'namsos' , 'namsskogan' , 'nannestad' , 'naroy' , 'narviika' , 'narvik' , 'naustdal' , 'navuotna' , 'nedre-eiker' , 'nesna' , 'nesodden' , 'nesoddtangen' , 'nesseby' , 'nesset' , 'nissedal' , 'nittedal' , 'nl' , 'nord-aurdal' , 'nord-fron' , 'nord-odal' , 'norddal' , 'nordkapp' , 'nordre-land' , 'nordreisa' , 'nore-og-uvdal' , 'notodden' , 'notteroy' , 'nt' , 'odda' , 'of' , 'oksnes' , 'ol' , 'omasvuotna' , 'oppdal' , 'oppegard' , 'orkanger' , 'orkdal' , 'orland' , 'orskog' , 'orsta' , 'osen' , 'oslo' , 'osoyro' , 'osteroy' , 'ostre-toten' , 'overhalla' , 'ovre-eiker' , 'oyer' , 'oygarden' , 'oystre-slidre' , 'porsanger' , 'porsangu' , 'porsgrunn' , 'priv' , 'rade' , 'radoy' , 'rahkkeravju' , ' rah
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'np' :
2022-09-12 21:06:38 -04:00
if ( [ 'aero' , 'asia' , 'biz' , 'com' , 'coop' , 'edu' , 'gov' , 'info' , 'jobs' , 'mil' , 'mobi' , 'museum' , 'name' , 'net' , 'org' , 'pro' , 'services' , 'travel' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'nr' :
if ( [ 'biz' , 'com' , 'edu' , 'gov' , 'info' , 'net' , 'org' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'nz' :
if ( [ 'ac' , 'archie' , 'co' , 'cri' , 'geek' , 'gen' , 'govt' , 'health' , 'iwi' , 'kiwi' , 'maori' , 'mil' , 'net' , 'org' , 'parliament' , 'school' , 'xn--mori-qsa' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'om' :
if ( [ 'co' , 'com' , 'edu' , 'gov' , 'med' , 'museum' , 'net' , 'org' , 'pro' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'org' :
if ( wa [ 1 ] == 'eu' && wa [ 3 ] != undefined ) {
if ( [ 'al' , 'asso' , 'at' , 'au' , 'be' , 'bg' , 'ca' , 'cd' , 'ch' , 'cn' , 'cy' , 'cz' , 'de' , 'dk' , 'edu' , 'ee' , 'es' , 'fi' , 'fr' , 'gr' , 'hr' , 'hu' , 'ie' , 'il' , 'in' , 'int' , 'is' , 'it' , 'jp' , 'kr' , 'lt' , 'lu' , 'lv' , 'me' , 'mk' , 'mt' , 'my' , 'net' , 'ng' , 'nl' , 'no' , 'nz' , 'pl' , 'pt' , 'ro' , 'ru' , 'se' , 'si' , 'sk' , 'tr' , 'uk' , 'us' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
if ( [ 'ae' , 'eu' , 'hk' , 'jpn' , 'js' , 'us' , 'za' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'pa' :
if ( [ 'abo' , 'ac' , 'com' , 'edu' , 'gob' , 'ing' , 'med' , 'net' , 'nom' , 'org' , 'sld' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'pe' :
if ( [ 'com' , 'edu' , 'gob' , 'mil' , 'net' , 'nom' , 'org' , 'sld' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'pf' :
2022-09-12 21:06:38 -04:00
if ( [ 'com' , 'edu' , 'org' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'pg' :
2022-09-12 21:06:38 -04:00
if ( [ 'ac' , 'com' , 'gov' , 'mil' , 'net' , 'org' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'ph' :
2022-09-12 21:06:38 -04:00
if ( [ 'com' , 'edu' , 'gov' , 'i' , 'mil' , 'net' , 'ngo' , 'org' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'pk' :
if ( [ 'biz' , 'com' , 'edu' , 'fam' , 'gob' , 'gok' , 'gon' , 'gop' , 'gos' , 'gov' , 'info' , 'net' , 'org' , 'web' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'pl' :
2022-09-12 21:06:38 -04:00
if ( wa [ 1 ] == 'gov' && wa [ 3 ] != undefined ) {
if ( [ 'ap' , 'griw' , 'ic' , 'is' , 'kmpsp' , 'konsulat' , 'kppsp' , 'kwp' , 'kwpsp' , 'mup' , 'mw' , 'oirm' , 'oum' , 'pa' , 'pinb' , 'piw' , 'po' , 'psp' , 'psse' , 'pup' , 'rzgw' , 'sa' , 'sdn' , 'sko' , 'so' , 'sr' , 'starostwo' , 'ug' , 'ugim' , 'um' , 'umig' , 'upow' , 'uppo' , 'us' , 'uw' , 'uzs' , 'wif' , 'wiih' , 'winb' , 'wios' , 'witd' , 'wiw' , 'wsa' , 'wskr' , 'wuoz' , 'wzmiuw' , 'zp' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
if ( [ 'agro' , 'aid' , 'art' , 'atm' , 'augustow' , 'auto' , 'babia-gora' , 'bedzin' , 'beskidy' , 'bialowieza' , 'bialystok' , 'bielawa' , 'bieszczady' , 'biz' , 'boleslawiec' , 'bydgoszcz' , 'bytom' , 'cieszyn' , 'com' , 'czeladz' , 'czest' , 'dlugoleka' , 'edu' , 'elblag' , 'elk' , 'gda' , 'gdansk' , 'glogow' , 'gmina' , 'gniezno' , 'gorlice' , 'gov' , 'grajewo' , 'gsm' , 'ilawa' , 'info' , 'jaworzno' , 'jelenia-gora' , 'jgora' , 'kalisz' , 'karpacz' , 'kartuzy' , 'kaszuby' , 'katowice' , 'kazimierz-dolny' , 'kepno' , 'ketrzyn' , 'klodzko' , 'kobierzyce' , 'kolobrzeg' , 'konin' , 'konskowola' , 'krakow' , 'kutno' , 'lapy' , 'lebork' , 'legnica' , 'lezajsk' , 'limanowa' , 'lodz' , 'lomza' , 'lowicz' , 'lubin' , 'lublin' , 'lukow' , 'mail' , 'malbork' , 'malopolska' , 'mazowsze' , 'mazury' , 'media' , 'miasta' , 'mielec' , 'mielno' , 'mil' , 'mragowo' , 'naklo' , 'net' , 'ngo' , 'nieruchomosci' , 'nom' , 'nowaruda' , 'nysa' , 'olawa' , 'olecko' , 'olkusz' , 'olsztyn' , 'opoczno' , 'opole' , 'org' , 'ostroda' , 'ostroleka' , 'ostrowiec' , 'ostrowwlkp' , 'pc' , 'pila' , 'pisz' , 'podhale' , 'podlasie' , 'polkowice' , 'pomorskie' , 'pomorze' , 'powiat' , 'poznan' , 'priv' , 'prochowice' , 'pruszkow' , 'przeworsk' , 'pulawy' , 'radom' , 'rawa-maz' , 'realestate' , 'rel' , 'rybnik' , 'rzeszow' , 'sanok' , 'sejny' , 'sex' , 'shop' , 'sklep' , 'skoczow' , 'slask' , 'slupsk' , 'sos' , 'sosnowiec' , 'stalowa-wola' , 'starachowice' , 'stargard' , 'suwalki' , 'swidnica' , 'swiebodzin' , 'swinoujscie' , 'szczecin' , 'szczytno' , 'szkola' , 'targi' , 'tarnobrzeg' , 'tgory' , 'tm' , 'torun' , 'tourism' , 'travel' , 'turek' , 'turystyka' , 'tychy' , 'ustka' , 'walbrzych' , 'warmia' , 'warszawa' , 'waw' , 'wegrow' , 'wielun' , 'wlocl' , 'wloclawek' , 'wodzislaw' , 'wolomin' , 'wroc' , 'wroclaw' , 'zachpomor' , 'zagan' , 'zarow' , 'zgora' , 'zgorzelec' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'pn' :
2022-09-12 21:06:38 -04:00
if ( [ 'co' , 'edu' , 'eu' , 'gov' , 'government' , 'in' , 'me' , 'net' , 'org' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'pr' :
if ( [ 'ac' , 'biz' , 'com' , 'edu' , 'est' , 'gov' , 'info' , 'isla' , 'name' , 'net' , 'org' , 'pro' , 'prof' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'pro' :
2022-09-12 21:06:38 -04:00
if ( [ 'aaa' , 'aca' , 'acct' , 'avocat' , 'bar' , 'cpa' , 'eng' , 'jur' , 'law' , 'med' , 'recht' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'ps' :
2022-09-12 21:06:38 -04:00
if ( [ 'com' , 'edu' , 'gov' , 'net' , 'org' , 'plo' , 'sec' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'pt' :
if ( [ 'com' , 'edu' , 'gov' , 'int' , 'net' , 'nome' , 'org' , 'publ' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'pw' :
2022-09-12 21:06:38 -04:00
if ( [ 'belau' , 'co' , 'ed' , 'go' , 'ne' , 'or' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'py' :
2022-09-12 21:06:38 -04:00
if ( [ 'com' , 'coop' , 'edu' , 'gov' , 'mil' , 'net' , 'org' , 'una' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'qa' :
2022-09-12 21:06:38 -04:00
if ( [ 'com' , 'edu' , 'gov' , 'mil' , 'name' , 'net' , 'org' , 'sch' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 're' :
if ( [ 'asso' , 'com' , 'nom' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'ro' :
2022-09-12 21:06:38 -04:00
if ( [ 'arts' , 'com' , 'firm' , 'gov' , 'info' , 'nom' , 'nt' , 'org' , 'rec' , 'store' , 'tm' , 'www' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'rs' :
if ( [ 'ac' , 'co' , 'edu' , 'gov' , 'in' , 'org' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'ru' :
if ( [ 'ac' , 'adygeya' , 'altai' , 'amur' , 'amursk' , 'arkhangelsk' , 'astrakhan' , 'baikal' , 'bashkiria' , 'belgorod' , 'bir' , 'bryansk' , 'buryatia' , 'cap' , 'cbg' , 'chel' , 'chelyabinsk' , 'chita' , 'chukotka' , 'cmw' , 'com' , 'dagestan' , 'e-burg' , 'edu' , 'fareast' , 'gov' , 'grozny' , 'int' , 'irkutsk' , 'ivanovo' , 'izhevsk' , 'jamal' , 'jar' , 'joshkar-ola' , 'k-uralsk' , 'kalmykia' , 'kaluga' , 'kamchatka' , 'karelia' , 'kazan' , 'kchr' , 'kemerovo' , 'khabarovsk' , 'khakassia' , 'khv' , 'kirov' , 'kms' , 'koenig' , 'komi' , 'kostroma' , 'krasnoyarsk' , 'kuban' , 'kurgan' , 'kursk' , 'kustanai' , 'kuzbass' , 'lipetsk' , 'magadan' , 'magnitka' , 'mari' , 'mari-el' , 'marine' , 'mil' , 'mordovia' , 'mos' , 'mosreg' , 'msk' , 'murmansk' , 'mytis' , 'nakhodka' , 'nalchik' , 'net' , 'nkz' , 'nnov' , 'norilsk' , 'nov' , 'novosibirsk' , 'nsk' , 'omsk' , 'orenburg' , 'org' , 'oryol' , 'oskol' , 'palana' , 'penza' , 'perm' , 'pp' , 'pskov' , 'ptz' , 'pyatigorsk' , 'rnd' , 'rubtsovsk' , 'ryazan' , 'sakhalin' , 'samara' , 'saratov' , 'simbirsk' , 'smolensk' , 'snz' , 'spb' , 'stavropol' , 'stv' , 'surgut' , 'syzran' , 'tambov' , 'tatarstan' , 'test' , 'tlt' , 'tom' , 'tomsk' , 'tsaritsyn' , 'tsk' , 'tula' , 'tuva' , 'tver' , 'tyumen' , 'udm' , 'udmurtia' , 'ulan-ude' , 'vdonsk' , 'vladikavkaz' , 'vladimir' , 'vladivostok' , 'volgograd' , 'vologda' , 'voronezh' , 'vrn' , 'vyatka' , 'yakutia' , 'yamal' , 'yaroslavl' , 'yekaterinburg' , 'yuzhno-sakhalinsk' , 'zgrad' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'rw' :
2022-09-12 21:06:38 -04:00
if ( [ 'ac' , 'co' , 'com' , 'coop' , 'edu' , 'gouv' , 'gov' , 'int' , 'mil' , 'net' , 'org' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'sa' :
if ( [ 'com' , 'edu' , 'gov' , 'med' , 'net' , 'org' , 'pub' , 'sch' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'sb' :
if ( [ 'com' , 'edu' , 'gov' , 'net' , 'org' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'sc' :
if ( [ 'com' , 'edu' , 'gov' , 'net' , 'org' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
break ;
case 'scot' :
if ( wa [ 1 ] == 'gov' ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'sd' :
if ( [ 'com' , 'edu' , 'gov' , 'info' , 'med' , 'net' , 'org' , 'tv' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'se' :
2022-09-12 21:06:38 -04:00
if ( [ 'a' , 'ac' , 'b' , 'bd' , 'brand' , 'c' , 'd' , 'e' , 'f' , 'fh' , 'fhsk' , 'fhv' , 'g' , 'gov' , 'h' , 'i' , 'k' , 'komforb' , 'kommunalforbund' , 'komvux' , 'l' , 'lanbib' , 'm' , 'n' , 'naturbruksgymn' , 'o' , 'org' , 'p' , 'parti' , 'pp' , 'press' , 'r' , 's' , 't' , 'tm' , 'u' , 'w' , 'x' , 'y' , 'z' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'sg' :
if ( [ 'com' , 'edu' , 'gov' , 'idn' , 'net' , 'org' , 'per' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'sh' :
2022-09-12 21:06:38 -04:00
if ( [ 'com' , 'gov' , 'mil' , 'net' , 'org' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
break ;
case 'si' :
if ( wa [ 1 ] == 'gov' ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
break ;
case 'sk' :
if ( wa [ 1 ] == 'gov' ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'sl' :
2022-09-12 21:06:38 -04:00
if ( [ 'com' , 'edu' , 'gov' , 'net' , 'org' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'sn' :
if ( [ 'art' , 'com' , 'edu' , 'gouv' , 'org' , 'perso' , 'univ' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'so' :
2022-09-12 21:06:38 -04:00
if ( [ 'com' , 'edu' , 'gm' , 'gov' , 'hs' , 'jl' , 'me' , 'net' , 'org' , 'pl' , 'sch' , 'sw' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
break ;
case 'ss' :
if ( [ 'biz' , 'com' , 'edu' , 'gov' , 'me' , 'net' , 'org' , 'sch' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'st' :
if ( [ 'co' , 'com' , 'consulado' , 'edu' , 'embaixada' , 'gov' , 'mil' , 'net' , 'org' , 'principe' , 'saotome' , 'store' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'sv' :
2022-09-12 21:06:38 -04:00
if ( [ 'com' , 'edu' , 'gob' , 'gov' , 'org' , 'red' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'sx' :
if ( wa [ 1 ] == 'gov' ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'sy' :
if ( [ 'com' , 'edu' , 'gov' , 'mil' , 'net' , 'org' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'sz' :
2022-09-12 21:06:38 -04:00
if ( [ 'ac' , 'co' , 'gov' , 'org' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'th' :
if ( [ 'ac' , 'co' , 'go' , 'in' , 'mi' , 'net' , 'or' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'tj' :
if ( [ 'ac' , 'aero' , 'biz' , 'co' , 'com' , 'coop' , 'dyn' , 'edu' , 'go' , 'gov' , 'info' , 'int' , 'mil' , 'museum' , 'my' , 'name' , 'net' , 'nic' , 'org' , 'per' , 'pro' , 'test' , 'web' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'tl' :
if ( wa [ 1 ] == 'gov' ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'tm' :
2022-09-12 21:06:38 -04:00
if ( [ 'co' , 'com' , 'edu' , 'gov' , 'mil' , 'net' , 'nom' , 'org' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'tn' :
if ( [ 'agrinet' , 'com' , 'defense' , 'edunet' , 'ens' , 'fin' , 'gov' , 'ind' , 'info' , 'intl' , 'mincom' , 'nat' , 'net' , 'org' , 'perso' , 'rnrt' , 'rns' , 'rnu' , 'tourism' , 'turen' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'to' :
if ( [ 'com' , 'edu' , 'gov' , 'mil' , 'net' , 'org' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'tr' :
2022-09-12 21:06:38 -04:00
if ( wa [ 1 ] == 'nc' && wa [ 3 ] != undefined ) {
if ( wa [ 2 ] == 'gov' ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( [ 'av' , 'bbs' , 'bel' , 'biz' , 'com' , 'dr' , 'edu' , 'gen' , 'gov' , 'info' , 'k12' , 'kep' , 'mil' , 'name' , 'nc' , 'net' , 'nom' , 'org' , 'pol' , 'tel' , 'tsk' , 'tv' , 'web' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'tt' :
2022-09-12 21:06:38 -04:00
if ( [ 'aero' , 'biz' , 'co' , 'com' , 'coop' , 'edu' , 'gov' , 'info' , 'int' , 'jobs' , 'mobi' , 'museum' , 'name' , 'net' , 'org' , 'pro' , 'travel' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'tw' :
if ( [ 'club' , 'com' , 'ebiz' , 'edu' , 'game' , 'gov' , 'idv' , 'mil' , 'net' , 'org' , 'xn--czrw28b' , 'xn--uc0atv' , 'xn--zf0ao64a' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'tz' :
if ( [ 'ac' , 'co' , 'go' , 'hotel' , 'info' , 'me' , 'mil' , 'mobi' , 'ne' , 'or' , 'sc' , 'tv' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'ua' :
if ( [ 'at' , 'cherkassy' , 'cherkasy' , 'chernigov' , 'chernihiv' , 'chernivtsi' , 'chernovtsy' , 'ck' , 'cn' , 'co' , 'com' , 'cr' , 'crimea' , 'cv' , 'dn' , 'dnepropetrovsk' , 'dnipropetrovsk' , 'dominic' , 'donetsk' , 'dp' , 'edu' , 'gov' , 'if' , 'in' , 'ivano-frankivsk' , 'kh' , 'kharkiv' , 'kharkov' , 'kherson' , 'khmelnitskiy' , 'khmelnytskyi' , 'kiev' , 'kirovograd' , 'km' , 'kr' , 'krym' , 'ks' , 'kv' , 'kyiv' , 'lg' , 'lt' , 'lugansk' , 'lutsk' , 'lv' , 'lviv' , 'mk' , 'mykolaiv' , 'net' , 'nikolaev' , 'od' , 'odesa' , 'odessa' , 'org' , 'pl' , 'poltava' , 'pp' , 'rivne' , 'rovno' , 'rv' , 'sb' , 'sebastopol' , 'sevastopol' , 'sm' , 'sumy' , 'te' , 'ternopil' , 'uz' , 'uzhgorod' , 'vinnica' , 'vinnytsia' , 'vn' , 'volyn' , 'yalta' , 'zaporizhzhe' , 'zaporizhzhia' , 'zhitomir' , 'zhytomyr' , 'zp' , 'zt' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'ug' :
2022-09-12 21:06:38 -04:00
if ( [ 'ac' , 'co' , 'com' , 'go' , 'ne' , 'or' , 'org' , 'sc' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'uk' :
2022-09-12 21:06:38 -04:00
if ( [ 'ac' , 'bl' , 'british-library' , 'co' , 'gov' , 'govt' , 'jcpc' , 'jet' , 'judiciary' , 'lea' , 'ltd' , 'me' , 'mil' , 'mod' , 'net' , 'nhs' , 'nic' , 'nls' , 'org' , 'orgn' , 'parliament' , 'plc' , 'police' , 'rct' , 'royal' , 'sch' , 'supremecourt' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'us' :
2022-09-12 21:06:38 -04:00
if ( wa [ 1 ] == 'wy' && wa [ 3 ] != undefined ) {
if ( [ 'cc' , 'k12' , 'lib' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'wv' && wa [ 3 ] != undefined ) {
if ( wa [ 2 ] == 'cc' ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'wi' && wa [ 3 ] != undefined ) {
if ( [ 'cc' , 'k12' , 'lib' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'wa' && wa [ 3 ] != undefined ) {
if ( [ 'cc' , 'k12' , 'lib' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'vt' && wa [ 3 ] != undefined ) {
if ( [ 'cc' , 'k12' , 'lib' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'vi' && wa [ 3 ] != undefined ) {
if ( [ 'cc' , 'k12' , 'lib' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'va' && wa [ 3 ] != undefined ) {
if ( [ 'cc' , 'k12' , 'lib' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'ut' && wa [ 3 ] != undefined ) {
if ( [ 'cc' , 'k12' , 'lib' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'tx' && wa [ 3 ] != undefined ) {
if ( [ 'cc' , 'k12' , 'lib' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'tn' && wa [ 3 ] != undefined ) {
if ( [ 'cc' , 'k12' , 'lib' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'sd' && wa [ 3 ] != undefined ) {
if ( [ 'cc' , 'lib' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'sc' && wa [ 3 ] != undefined ) {
if ( [ 'cc' , 'k12' , 'lib' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'ri' && wa [ 3 ] != undefined ) {
if ( [ 'cc' , 'lib' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'pr' && wa [ 3 ] != undefined ) {
if ( [ 'cc' , 'k12' , 'lib' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'pa' && wa [ 3 ] != undefined ) {
if ( [ 'cc' , 'k12' , 'lib' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'or' && wa [ 3 ] != undefined ) {
if ( [ 'cc' , 'k12' , 'lib' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'ok' && wa [ 3 ] != undefined ) {
if ( [ 'cc' , 'k12' , 'lib' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'oh' && wa [ 3 ] != undefined ) {
if ( [ 'cc' , 'k12' , 'lib' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'ny' && wa [ 3 ] != undefined ) {
if ( [ 'cc' , 'k12' , 'lib' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'nv' && wa [ 3 ] != undefined ) {
if ( [ 'cc' , 'k12' , 'lib' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'nm' && wa [ 3 ] != undefined ) {
if ( [ 'cc' , 'k12' , 'lib' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'nj' && wa [ 3 ] != undefined ) {
if ( [ 'cc' , 'k12' , 'lib' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'nh' && wa [ 3 ] != undefined ) {
if ( [ 'cc' , 'k12' , 'lib' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'ne' && wa [ 3 ] != undefined ) {
if ( [ 'cc' , 'k12' , 'lib' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'nd' && wa [ 3 ] != undefined ) {
if ( [ 'cc' , 'lib' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'nc' && wa [ 3 ] != undefined ) {
if ( [ 'cc' , 'k12' , 'lib' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'mt' && wa [ 3 ] != undefined ) {
if ( [ 'cc' , 'k12' , 'lib' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'ms' && wa [ 3 ] != undefined ) {
if ( [ 'cc' , 'k12' , 'lib' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'mo' && wa [ 3 ] != undefined ) {
if ( [ 'cc' , 'k12' , 'lib' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'mn' && wa [ 3 ] != undefined ) {
if ( [ 'cc' , 'k12' , 'lib' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'mi' && wa [ 3 ] != undefined ) {
if ( [ 'ann-arbor' , 'cc' , 'cog' , 'dst' , 'eaton' , 'gen' , 'k12' , 'lib' , 'mus' , 'tec' , 'washtenaw' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'me' && wa [ 3 ] != undefined ) {
if ( [ 'cc' , 'k12' , 'lib' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'md' && wa [ 3 ] != undefined ) {
if ( [ 'cc' , 'k12' , 'lib' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'ma' && wa [ 3 ] != undefined ) {
if ( [ 'cc' , 'k12' , 'lib' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'la' && wa [ 3 ] != undefined ) {
if ( [ 'cc' , 'k12' , 'lib' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'ky' && wa [ 3 ] != undefined ) {
if ( [ 'cc' , 'k12' , 'lib' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'ks' && wa [ 3 ] != undefined ) {
if ( [ 'cc' , 'k12' , 'lib' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'in' && wa [ 3 ] != undefined ) {
if ( [ 'cc' , 'k12' , 'lib' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'il' && wa [ 3 ] != undefined ) {
if ( [ 'cc' , 'k12' , 'lib' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'id' && wa [ 3 ] != undefined ) {
if ( [ 'cc' , 'k12' , 'lib' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'ia' && wa [ 3 ] != undefined ) {
if ( [ 'cc' , 'k12' , 'lib' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'hi' && wa [ 3 ] != undefined ) {
if ( [ 'cc' , 'lib' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'gu' && wa [ 3 ] != undefined ) {
if ( [ 'cc' , 'k12' , 'lib' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'ga' && wa [ 3 ] != undefined ) {
if ( [ 'cc' , 'k12' , 'lib' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'fl' && wa [ 3 ] != undefined ) {
if ( [ 'cc' , 'k12' , 'lib' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'de' && wa [ 3 ] != undefined ) {
if ( [ 'cc' , 'k12' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'dc' && wa [ 3 ] != undefined ) {
if ( [ 'cc' , 'k12' , 'lib' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'ct' && wa [ 3 ] != undefined ) {
if ( [ 'cc' , 'k12' , 'lib' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'co' && wa [ 3 ] != undefined ) {
if ( [ 'cc' , 'k12' , 'lib' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'ca' && wa [ 3 ] != undefined ) {
if ( [ 'cc' , 'k12' , 'lib' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'az' && wa [ 3 ] != undefined ) {
if ( [ 'cc' , 'k12' , 'lib' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'as' && wa [ 3 ] != undefined ) {
if ( [ 'cc' , 'k12' , 'lib' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'ar' && wa [ 3 ] != undefined ) {
if ( [ 'cc' , 'k12' , 'lib' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'al' && wa [ 3 ] != undefined ) {
if ( [ 'cc' , 'k12' , 'lib' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
if ( wa [ 1 ] == 'ak' && wa [ 3 ] != undefined ) {
if ( [ 'cc' , 'k12' , 'lib' ] . includes ( wa [ 2 ] ) ) {
return wa [ 3 ] + '.' + wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
if ( [ 'aa' , 'ae' , 'ak' , 'al' , 'ap' , 'ar' , 'as' , 'az' , 'ca' , 'cm' , 'co' , 'ct' , 'cz' , 'dc' , 'de' , 'dni' , 'fed' , 'fl' , 'fm' , 'ga' , 'gu' , 'hi' , 'ia' , 'id' , 'il' , 'in' , 'isa' , 'kids' , 'ks' , 'ky' , 'la' , 'ma' , 'md' , 'me' , 'mh' , 'mi' , 'mn' , 'mo' , 'mp' , 'ms' , 'mt' , 'nb' , 'nc' , 'nd' , 'ne' , 'nh' , 'nj' , 'nm' , 'nsn' , 'nv' , 'ny' , 'oh' , 'ok' , 'or' , 'pa' , 'pi' , 'pr' , 'pw' , 'ri' , 'sc' , 'sd' , 'tn' , 'tt' , 'tx' , 'ut' , 'va' , 'vi' , 'vt' , 'wa' , 'wi' , 'wv' , 'wy' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'uy' :
2022-09-12 21:06:38 -04:00
if ( [ 'com' , 'edu' , 'gub' , 'mil' , 'net' , 'org' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'uz' :
2022-09-12 21:06:38 -04:00
if ( [ 'co' , 'com' , 'net' , 'org' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'vc' :
if ( [ 'com' , 'edu' , 'gov' , 'mil' , 'net' , 'org' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 've' :
2022-09-12 21:06:38 -04:00
if ( [ 'arts' , 'bib' , 'co' , 'com' , 'e12' , 'edu' , 'firm' , 'gob' , 'gov' , 'info' , 'int' , 'mil' , 'net' , 'nom' , 'org' , 'radio' , 'rar' , 'rec' , 'store' , 'tec' , 'web' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'vi' :
2022-09-12 21:06:38 -04:00
if ( [ 'co' , 'com' , 'k12' , 'net' , 'org' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'vn' :
if ( [ 'ac' , 'biz' , 'com' , 'edu' , 'gov' , 'health' , 'info' , 'int' , 'mil' , 'name' , 'net' , 'org' , 'pro' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'vu' :
if ( [ 'com' , 'edu' , 'net' , 'org' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
break ;
case 'wales' :
if ( wa [ 1 ] == 'gov' ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'ws' :
2022-09-12 21:06:38 -04:00
if ( [ 'com' , 'edu' , 'gov' , 'net' , 'org' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
break ;
case 'xn--4dbrk0ce' :
if ( [ 'xn--4dbgdty6c' , 'xn--5dbhl8d' , 'xn--8dbq2a' , 'xn--hebda8b' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'xn--90a3ac' :
2022-09-12 21:06:38 -04:00
if ( [ 'xn--80au' , 'xn--90azh' , 'xn--c1avg' , 'xn--d1at' , 'xn--o1ac' , 'xn--o1ach' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'xn--j6w193g' :
2022-09-12 21:06:38 -04:00
if ( [ 'xn--55qx5d' , 'xn--gmqw5a' , 'xn--mxtq1m' , 'xn--od0alg' , 'xn--uc0atv' , 'xn--wcvs22d' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'xn--o3cw4h' :
2022-09-12 21:06:38 -04:00
if ( [ 'xn--12c1fe0br' , 'xn--12cfi8ixb8l' , 'xn--12co0c3b4eva' , 'xn--h3cuzk1di' , 'xn--m3ch0j3a' , 'xn--o3cyx2a' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
}
break ;
case 'ye' :
if ( [ 'co' , 'com' , 'edu' , 'gov' , 'ltd' , 'me' , 'mil' , 'net' , 'org' , 'plc' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'za' :
2022-09-12 21:06:38 -04:00
if ( [ 'ac' , 'agric' , 'alt' , 'bourse' , 'city' , 'co' , 'cybernet' , 'db' , 'edu' , 'gov' , 'grondar' , 'iaccess' , 'imt' , 'inca' , 'landesign' , 'law' , 'mil' , 'net' , 'ngo' , 'nic' , 'nis' , 'nom' , 'olivetti' , 'org' , 'pix' , 'school' , 'tm' , 'web' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'zm' :
if ( [ 'ac' , 'biz' , 'co' , 'com' , 'edu' , 'gov' , 'info' , 'mil' , 'net' , 'org' , 'sch' ] . includes ( wa [ 1 ] ) ) {
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
case 'zw' :
2022-09-12 21:06:38 -04:00
if ( [ 'ac' , 'co' , 'gov' , 'mil' , 'org' ] . includes ( wa [ 1 ] ) ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return wa [ 2 ] + '.' + wa [ 1 ] + '.' + wa [ 0 ] ;
2022-09-12 21:06:38 -04:00
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
break ;
}
return wa [ 1 ] + '.' + wa [ 0 ] ;
}
browser . webRequest . onBeforeRequest . addListener ( g => {
2022-09-01 06:50:11 -04:00
if ( ! lookupCAT || ! g . tabId ) {
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return ;
}
let fqdn = ( new URL ( g . url ) ) . hostname ,
domain = get _realdomain ( fqdn ) ;
if ( domain . length < 4 || /^(mypdns\.(org|com)|crimeflare\.eu\.org)$/ . test ( domain ) ) {
return ;
}
if ( domainCAT [ domain ] ) {
domainCAT [ domain ] [ 0 ] = tUNIX ( ) ;
return ;
}
iGetSiteCat ( fqdn ) . then ( g => {
if ( g . length == 2 ) {
if ( g [ 0 ] . length >= 4 ) {
domainCAT [ domain ] = [ tUNIX ( ) , g [ 0 ] , g [ 1 ] ] ;
2022-09-01 06:50:11 -04:00
} else {
domainCAT [ domain ] = [ tUNIX ( ) , '' , [ ] ] ;
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
}
2022-09-01 06:50:11 -04:00
update _icon ( null ) ;
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
}
} , b => { } ) ;
} , {
2022-09-01 06:50:11 -04:00
types : [ 'main_frame' ] ,
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
urls : [ "http://*/*" , "https://*/*" ]
2022-09-01 06:50:11 -04:00
} ) ;
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
function cleanupDomainCAT ( ) {
2022-08-29 07:48:18 -04:00
let lowat = tUNIX ( ) - 172800 ;
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
for ( f in domainCAT ) {
if ( domainCAT [ f ] && domainCAT [ f ] [ 0 ] < lowat ) {
delete ( domainCAT [ f ] ) ;
}
}
setTimeout ( cleanupDomainCAT , 3600000 ) ;
}
cleanupDomainCAT ( ) ;
browser . tabs . onActivated . addListener ( ( ) => {
browser . tabs . query ( {
active : true ,
currentWindow : true
} ) . then ( function ( t ) {
if ( t [ 0 ] ) {
update _icon ( t [ 0 ] . id , t [ 0 ] . url ) ;
}
} ) ;
} ) ;
browser . tabs . onUpdated . addListener ( function ( a , b , t ) {
if ( t . active && t . id ) {
update _icon ( t . id , t . url ) ;
}
} ) ;
browser . webNavigation . onDOMContentLoaded . addListener ( ( ) => {
browser . tabs . query ( {
active : true ,
currentWindow : true
} ) . then ( function ( t ) {
if ( t [ 0 ] ) {
update _icon ( t [ 0 ] . id , t [ 0 ] . url ) ;
}
} ) ;
} ) ;
browser . webNavigation . onCompleted . addListener ( ( ) => {
browser . tabs . query ( {
active : true ,
currentWindow : true
} ) . then ( function ( t ) {
if ( t [ 0 ] ) {
update _icon ( t [ 0 ] . id , t [ 0 ] . url ) ;
}
} ) ;
} ) ;
browser . runtime . onMessage . addListener ( ( r , s , sr ) => {
2022-08-26 07:00:24 -04:00
if ( r [ 0 ] == 'iidCACHEget' ) {
let iidDOMAIN = get _realdomain ( r [ 1 ] ) + '.mpdns_iid' ;
if ( domainCAT [ iidDOMAIN ] ) {
sr ( [ true , domainCAT [ iidDOMAIN ] [ 1 ] ] ) ;
} else {
sr ( [ false , 0 ] ) ;
}
}
if ( r [ 0 ] == 'iidCACHEset' ) {
let iidDOMAIN = get _realdomain ( r [ 1 ] ) + '.mpdns_iid' ;
if ( ! domainCAT [ iidDOMAIN ] ) {
domainCAT [ iidDOMAIN ] = [ tUNIX ( ) , r [ 2 ] ,
[ ]
] ;
}
sr ( true ) ;
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
if ( r [ 0 ] == 'set' ) {
token = r [ 1 ] ;
if ( token . length == 20 ) {
showreply ( 'Welcome!' , 'Thank you for helping out this project.' ) ;
} else {
showreply ( 'See you later.' , 'Your Access Token is cleared.' ) ;
}
sr ( true ) ;
}
if ( r [ 0 ] == 'report' ) {
reporting ( {
menuItemId : 'actPAGE_' + r [ 1 ] ,
pageUrl : r [ 2 ] ,
comment : r [ 3 ] || ''
} , null ) ;
sr ( true ) ;
}
if ( r [ 0 ] == 'top1' ) {
tabOp1 = ( r [ 1 ] == 1 ) ? true : false ;
sr ( true ) ;
}
if ( r [ 0 ] == 'top2' ) {
tabOp2 = ( r [ 1 ] == 1 ) ? true : false ;
sr ( true ) ;
}
if ( r [ 0 ] == 'top3' ) {
apiurl = ( r [ 1 ] != 1 ) ? baseurl [ 0 ] : baseurl [ 1 ] ;
sr ( true ) ;
}
if ( r [ 0 ] == 'top8' ) {
lookupCAT = ( r [ 1 ] == 1 ) ? true : false ;
2022-09-01 06:50:11 -04:00
domainCAT = { } ;
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
update _icon ( null ) ;
sr ( true ) ;
}
if ( r [ 0 ] . startsWith ( 'topWP' ) || r [ 0 ] == 'top4' || r [ 0 ] == 'top5' || r [ 0 ] == 'top6' || r [ 0 ] == 'top7' ) {
sr ( true ) ;
}
if ( r [ 0 ] == 'menu' ) {
reload _menu ( ) ;
sr ( true ) ;
}
if ( r [ 0 ] == 'screenshot' ) {
browser . tabs . query ( {
active : true ,
currentWindow : true
} ) . then ( tab => {
if ( tab && tab [ 0 ] ) {
let tabFQDN = ( new URL ( tab [ 0 ] . url ) ) . host ;
browser . tabs . captureTab ( tab [ 0 ] . id , {
format : 'jpeg' ,
quality : 100
} ) . then ( ss => {
fetch ( ss ) . then ( ssd => ssd . blob ( ) ) . then ( ssd => {
let pic = URL . createObjectURL ( ssd ) ;
browser . downloads . download ( {
url : pic ,
filename : '[' + tabFQDN + '] ' + Math . round ( ( new Date ( ) ) . getTime ( ) / 1000 ) + '.jpg' ,
saveAs : true
} ) . then ( ( ) => { } , ( ) => {
URL . revokeObjectURL ( pic ) ;
} ) ;
} ) ;
} ) ;
}
} ) ;
sr ( true ) ;
}
2022-09-07 01:45:57 -04:00
if ( r [ 0 ] == 'opentab' ) {
browser . tabs . query ( {
currentWindow : true
} ) . then ( tabs => {
let tOpen = [ ] ,
tWho = - 1 ;
for ( let t of tabs ) {
if ( t && t . url ) {
tOpen . push ( t . url ) ;
if ( t . active ) {
tWho = t . id ;
}
}
}
for ( let t of r [ 1 ] ) {
if ( ! tOpen . includes ( t ) ) {
browser . tabs . create ( tWho == - 1 ? {
url : t
} : {
url : t ,
openerTabId : tWho
} ) ;
}
}
} , ( ) => { } ) ;
sr ( true ) ;
}
if ( r [ 0 ] == 'savepin' ) {
browser . storage . local . set ( {
[ r [ 1 ] ] : [ r [ 2 ] , r [ 3 ] ]
} ) ;
sr ( true ) ;
}
Update tool/mypdns_reporter/cli/mypdnsrep.app, tool/mypdns_reporter/gui/gui.zip, tool/mypdns_reporter/addon/chrome/addon.crx, tool/mypdns_reporter/addon/chrome/icon.png, tool/mypdns_reporter/addon/chrome/conf.html, tool/mypdns_reporter/addon/chrome/conf.js, tool/mypdns_reporter/addon/chrome/main.js, tool/mypdns_reporter/addon/chrome/manifest.json, tool/mypdns_reporter/addon/firefox/addon.xpi, tool/mypdns_reporter/addon/firefox/icon.png, tool/mypdns_reporter/addon/firefox/conf.html, tool/mypdns_reporter/addon/firefox/conf.js, tool/mypdns_reporter/addon/firefox/manifest.json, tool/mypdns_reporter/addon/firefox/main.js
2022-08-26 06:57:20 -04:00
return true ;
} ) ;
browser . runtime . onInstalled . addListener ( g => {
if ( g . reason == 'install' ) {
browser . runtime . openOptionsPage ( ) ;
showreply ( 'Hello!' , 'Please set your token to begin.' ) ;
}
2022-08-26 07:00:24 -04:00
} ) ;