HtmlToText
"); var placeholder = document.getelementbyid('high-contrast-css-placeholder'); /*! * javascript cookie v2.0.4 * https://github.com/js-cookie/js-cookie * * copyright 2006, 2015 klaus hartl & fagner brack * released under the mit license */ !function(e){if("function"==typeof define&&define.amd)define(e);else if("object"==typeof exports)module.exports=e();else{var n=window.cookies,t=window.cookies=e();t.noconflict=function(){return window.cookies=n,t}}}(function(){function e(){for(var e=0,n={};e 1){if(i=e({path:"/"},o.defaults,i),"number"==typeof i.expires){var s=new date;s.setmilliseconds(s.getmilliseconds()+864e5*i.expires),i.expires=s}try{c=json.stringify(r),/^[\{\[]/.test(c)&&(r=c)}catch(a){}return r=encodeuricomponent(string(r)),r=r.replace(/%(23|24|26|2b|3a|3c|3e|3d|2f|3f|40|5b|5d|5e|60|7b|7d|7c)/g,decodeuricomponent),n=encodeuricomponent(string(n)),n=n.replace(/%(23|24|26|2b|5e|60|7c)/g,decodeuricomponent),n=n.replace(/[\(\)]/g,escape),document.cookie=[n,"=",r,i.expires&&"; expires="+i.expires.toutcstring(),i.path&&"; path="+i.path,i.domain&&"; domain="+i.domain,i.secure?"; secure":""].join("")}n||(c={});for(var p=document.cookie?document.cookie.split("; "):[],u=/(%[0-9a-z]{2})+/g,d=0;d "," "],legend:[1," "," "],area:[1," "," "],param:[1," "," "],thead:[1," "," "],tr:[2," "," "],col:[2," "," "],td:[3," "," "],_default:[1," "," "]};e.optgroup=e.option,e.tbody=e.tfoot=e.colgroup=e.caption=e.thead,e.th=e.td;var l=document.createelement("div"),a=/ /g.exec(t);if(null!=a){var l,o=a[0].replace(/ /g,""),r=e[o]||e._default;t=r[1]+t+r[2],l.innerhtml=t;for(var d=r[0]+1;d--;)l=l.lastchild}else l.innerhtml=t,l=l.lastchild;return l}; // dom ready. // http://stackoverflow.com/questions/3430455/document-ready-source (function(){var e=function(i,j){},c=window.jquery,h=window.$,d,g=false,f=[],b;e.fn={ready:function(i){e.bindready();if(e.isready){i.call(document,e)}else{if(f){f.push(i)}}return this}};e.isready=false;e.ready=function(){if(!e.isready){if(!document.body){return settimeout(e.ready,13)}e.isready=true;if(f){var k,j=0;while((k=f[j++])){k.call(document,e)}f=null}if(e.fn.triggerhandler){e(document).triggerhandler("ready")}}};e.bindready=function(){if(g){return}g=true;if(document.readystate==="complete"){return e.ready()}if(document.addeventlistener){document.addeventlistener("domcontentloaded",b,false);window.addeventlistener("load",e.ready,false)}else{if(document.attachevent){document.attachevent("onreadystatechange",b);window.attachevent("onload",e.ready);var i=false;try{i=window.frameelement==null}catch(j){}if(document.documentelement.doscroll&&i){a()}}}};d=e(document);if(document.addeventlistener){b=function(){document.removeeventlistener("domcontentloaded",b,false);e.ready()}}else{if(document.attachevent){b=function(){if(document.readystate==="complete"){document.detachevent("onreadystatechange",b);e.ready()}}}}function a(){if(e.isready){return}try{document.documentelement.doscroll("left")}catch(i){settimeout(a,1);return}e.ready()}window.jquery=window.$=e})(); /** * enable high contrast logo. * * this is in different function as we need to run it on init and when * dom is ready. */ var enablehighcontrastlogo = function() { var logoblock = document.getelementbyid('block-delta-blocks-logo'); var logopath = highcontrast.logopath; if (document.queryselectorall && typeof logopath !== 'undefined' && logoblock !== null) { var logo = logoblock.queryselectorall('img'); if (typeof logo[0].logopathoriginal === 'undefined') { logo[0].logopathoriginal = logo[0].src; } logo[0].src = logopath; } }; /** * disable high contrast logo. */ var disablehighcontrastlogo = function() { var logoblock = document.getelementbyid('block-delta-blocks-logo'); var logopath = highcontrast.logopath; if (document.queryselectorall && typeof logopath !== 'undefined' && logoblock !== null) { var logo = logoblock.queryselectorall('img'); if (typeof logo[0].logopathoriginal !== 'undefined') { logo[0].src = logo[0].logopathoriginal; } } }; /** * enable the high contrast styles. */ var enablestyles = function() { var cssfilepath = highcontrast.cssfilepath; if (typeof cssfilepath !== 'undefined') { var link = document.getelementbyid('high-contrast-css'); if (link === null) { link = str2domelement(' '); } // add link after placeholder. // http://stackoverflow.com/questions/7258185/javascript-append-child-after-element placeholder.parentnode.insertbefore(link, placeholder.nextsibling); } enablehighcontrastlogo(); cookies.set('highcontrastactivated', 'true', '/'); }; /** * disable the high contrast styles. */ var disablestyles = function() { var link = document.getelementbyid('high-contrast-css'); if (link !== null) { link.parentnode.removechild(link); } disablehighcontrastlogo(); cookies.set('highcontrastactivated', 'false', '/'); }; /** * check if high contrast is set or not using highcontrastactivated cookie. * * @returns {boolean} */ var ishighcontrastenabled = function() { var highcontrastenabled = cookies.get('highcontrastactivated'); if (typeof highcontrastenabled === 'undefined') { return false; } else if (highcontrastenabled === 'false') { return false; } else { return true; } }; /** * toggle between high contrast and normal mode. */ var togglehighcontrast = function() { if (ishighcontrastenabled()) { disablestyles(); cookies.set('highcontrastactivated', 'false', '/'); } else { enablestyles(); cookies.set('highcontrastactivated', 'true', '/'); } }; /** * append the high contrast toggle link after skip-link. */ var includehighcontrastlink = function() { var highcontrastlink = highcontrast.link; highcontrastlink = str2domelement(highcontrastlink); highcontrastlink.onclick = function() { togglehighcontrast(); this.blur(); return false; }; //document.getelementbyid('skip-link').appendchild(highcontrastlink); //document.getelementsbyclassname('secondary')[0].appendchild(highcontrastlink); var lista_menu_auxiliar = document.getelementsbyclassname('secondary')[0]; lista_menu_auxiliar.insertbefore(highcontrastlink,lista_menu_auxiliar.childnodes[3]); }; // create global methods for enabling/disabling high contrast. drupalhighcontrast.enablestyles = enablestyles; drupalhighcontrast.disablestyles = disablestyles; drupalhighcontrast.togglehighcontrast = togglehighcontrast; // init on page load. if (ishighcontrastenabled()) { enablestyles(); } $.fn.ready(function() { if (ishighcontrastenabled()) { enablehighcontrastlogo(); } includehighcontrastlink(); }) })(); pular para o conteúdo principal toggle navigation acessibilidade mapa do site login do cidadão menu principal governo estrutura governamental legislação cidadão agropecuária e vida rural arte e cultura água e saneamento assistência social contas e impostos cursos e capacitação criança e adolescente direitos e cidadania documentos e certidões educação esporte e lazer habitação licitações e leilões loterias luz meio ambiente meu negócio mulher pessoa com deficiência publicações saúde segurança e defesa tecnologia e informática terceira idade trabalho e estágio transporte veículos e condutores empresa agronegócio análises e estudos arte e cultura capacitação e certificação compras e licitações documentos e registros exportação financiamento e apoio geociências gestão ambiental impostos e taxas infraestrutura instituições de ensino parcerias pesquisa e tecnologia publicações venda de produtos e serviços município desenvolvimento produtivo, científico e tecnológico educação e cultura governo infraestrutura e logística saúde e proteção social segurança pública transparência lei de acesso à informação contas públicas relatório prevcom atendimento telefones e sites úteis unidades de atendimento integrado (uai) ligminas - 155 fale conosco o que você está procurando? tudo serviços unidades busca avançada cidadão empresa município cidadão -- agendamento online - veja quais serviços estão disponíveis obter a primeira habilitação obter a carteira de identidade - 1ª via obter a carteira de identidade – 2ª via obter a carteira de trabalho e previdência soci
Informations Whois
Whois est un protocole qui permet d'accéder aux informations d'enregistrement.Vous pouvez atteindre quand le site Web a été enregistré, quand il va expirer, quelles sont les coordonnées du site avec les informations suivantes. En un mot, il comprend ces informations;
% Copyright (c) Nic.br
% The use of the data below is only permitted as described in
% full by the terms of use at https://registro.br/termo/en.html ,
% being prohibited its distribution, commercialization or
% reproduction, in particular, to use it for advertising or
% any similar purpose.
% 2017-07-16 16:26:14 (BRT -03:00)
domain: mg.gov.br
owner: COMPANHIA DE TECNOLOGIA DA INFORMAÇÃO ESTADO MG
owner-c: PGM14
admin-c: PGM14
tech-c: PGM14
billing-c: PGM14
nserver: zeus.prodemge.gov.br
nsstat: 20170716 AA
nslastaa: 20170716
nserver: titanio.prodemge.gov.br
nsstat: 20170716 AA
nslastaa: 20170716
nserver: tupan.prodemge.gov.br
nsstat: 20170716 AA
nslastaa: 20170716
nserver: jupiter.prodemge.gov.br
nsstat: 20170716 AA
nslastaa: 20170716
created: 19950727
changed: 20130813
status: published
nic-hdl-br: PGM14
person: Prodemge Ger. Rede - Dominios MG.GOV.BR
created: 20000901
changed: 20161018
% Security and mail abuse issues should also be addressed to
% cert.br, http://www.cert.br/ , respectivelly to cert@cert.br
% and mail-abuse@cert.br
%
% whois.registro.br accepts only direct match queries. Types
% of queries are: domain (.br), registrant (tax ID), ticket,
% provider, contact handle (ID), CIDR block, IP and ASN.
REGISTRAR BR-NIC
REFERRER http://www.nic.br
SERVERS
SERVER br.whois-servers.net
ARGS mg.gov.br
PORT 43
TYPE domain
RegrInfo
DISCLAIMER
Copyright (c) Nic.br
The use of the data below is only permitted as described in
full by the terms of use at https://registro.br/termo/en.html ,
being prohibited its distribution, commercialization or
reproduction, in particular, to use it for advertising or
any similar purpose.
2017-07-16 16:26:14 (BRT -03:00)
REGISTERED yes
OWNER
HANDLE PGM14
NAME Prodemge Ger. Rede - Dominios MG.GOV.BR
CREATED 2000-09-01
CHANGED 2016-10-18
ORGANIZATION COMPANHIA DE TECNOLOGIA DA INFORMAÇÃO ESTADO MG
TECH
HANDLE PGM14
NAME Prodemge Ger. Rede - Dominios MG.GOV.BR
CREATED 2000-09-01
CHANGED 2016-10-18
ADMIN
HANDLE PGM14
NAME Prodemge Ger. Rede - Dominios MG.GOV.BR
CREATED 2000-09-01
CHANGED 2016-10-18
BILLING
HANDLE PGM14
NAME Prodemge Ger. Rede - Dominios MG.GOV.BR
CREATED 2000-09-01
CHANGED 2016-10-18
DOMAIN
NAME mg.gov.br
NSERVER
ZEUS.PRODEMGE.GOV.BR 200.198.5.13
TITANIO.PRODEMGE.GOV.BR 200.198.5.5
TUPAN.PRODEMGE.GOV.BR 200.198.4.4
JUPITER.PRODEMGE.GOV.BR 200.198.5.2
CREATED 1995-07-27
CHANGED 2013-08-13
STATUS published
Go to top