Hey Gerald. I noticed your continual effort to change http:// links to https://. I've written a simple script that can do that in automatic way.
What do you think about using it? Martin
#!/usr/bin/env python3 import os import re import requests urls = set() def check_url(url): try: r = requests.get(url, timeout = 5) print(r) return True except requests.exceptions.ConnectionError as e: print(e) return False for root, dirs, files in os.walk('.'): for f in files: if f.endswith('.html'): full = os.path.join(root, f) for l in open(full).readlines(): m = re.search(r'"(http:\/\/[^"]*)"', l) if m: urls.add(m.group(1)) urls = list(sorted(list(urls))) to_replace = [] for i, url in enumerate(urls): https = url.replace('http://', 'https://') print('%d/%d: %s' % (i, len(urls), https)) if (check_url(https)): to_replace.append(url) print() print('Can use HTTPS for %d of links:' % (len(to_replace))) for url in to_replace: print(url)
0/329: https://CobolForGCC.sourceforge.net/ HTTPSConnectionPool(host='cobolforgcc.sourceforge.net', port=443): Max retries exceeded with url: / (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff690f460>: Failed to establish a new connection: [Errno 111] Connection refused')) 1/329: https://annwm.lbl.gov/bench/ HTTPSConnectionPool(host='annwm.lbl.gov', port=443): Max retries exceeded with url: /bench/ (Caused by ConnectTimeoutError(<urllib3.connection.HTTPSConnection object at 0x7ffff690f850>, 'Connection to annwm.lbl.gov timed out. (connect timeout=5)')) 2/329: https://archive.adaic.com/standards/83lrm/html/ada_lrm.html HTTPSConnectionPool(host='archive.adaic.com', port=443): Max retries exceeded with url: /standards/83lrm/html/ada_lrm.html (Caused by ConnectTimeoutError(<urllib3.connection.HTTPSConnection object at 0x7ffff675f640>, 'Connection to archive.adaic.com timed out. (connect timeout=5)')) 3/329: https://archive.adaic.com/standards/83rat/html/Welcome.html HTTPSConnectionPool(host='archive.adaic.com', port=443): Max retries exceeded with url: /standards/83rat/html/Welcome.html (Caused by ConnectTimeoutError(<urllib3.connection.HTTPSConnection object at 0x7ffff675fdf0>, 'Connection to archive.adaic.com timed out. (connect timeout=5)')) 4/329: https://awards.acm.org/about/2015-technical-awards <Response [200]> 5/329: https://blackfin.uclinux.org/gf/ HTTPSConnectionPool(host='blackfin.uclinux.org', port=443): Max retries exceeded with url: /gf/ (Caused by SSLError(SSLCertVerificationError("hostname 'blackfin.uclinux.org' doesn't match either of '*.azurewebsites.net', '*.scm.azurewebsites.net', '*.azure-mobile.net', '*.scm.azure-mobile.net', '*.sso.azurewebsites.net'"))) 6/329: https://buildbot.net/ <Response [200]> 7/329: https://c-faq.com/ HTTPSConnectionPool(host='c-faq.com', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLCertVerificationError("hostname 'c-faq.com' doesn't match either of '*.eskimo.com', 'eskimo.com'"))) 8/329: https://chasm-interop.sourceforge.net/ HTTPSConnectionPool(host='chasm-interop.sourceforge.net', port=443): Max retries exceeded with url: / (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff675fb50>: Failed to establish a new connection: [Errno 111] Connection refused')) 9/329: https://citeseer.ist.psu.edu/viewdoc/summary?doi=10.1.1.39.1922 <Response [200]> 10/329: https://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.37.7180 <Response [200]> 11/329: https://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.50.2235 <Response [200]> 12/329: https://cobolforgcc.sourceforge.net/cobol_toc.html HTTPSConnectionPool(host='cobolforgcc.sourceforge.net', port=443): Max retries exceeded with url: /cobol_toc.html (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6936d30>: Failed to establish a new connection: [Errno 111] Connection refused')) 13/329: https://compilerconnection.com <Response [200]> 14/329: https://deuce.doc.wustl.edu/Download.html <Response [404]> 15/329: https://developer.axis.com/ HTTPSConnectionPool(host='developer.axis.com', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLCertVerificationError("hostname 'developer.axis.com' doesn't match either of 'www.axis.com', 'axis.com', 'beta.www.axis.com'"))) 16/329: https://developer.classpath.org/doc/ HTTPSConnectionPool(host='developer.classpath.org', port=443): Max retries exceeded with url: /doc/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff690f520>: Failed to establish a new connection: [Errno 111] Connection refused')) 17/329: https://developer.classpath.org/mediation/ClasspathGraphicsImagesText HTTPSConnectionPool(host='developer.classpath.org', port=443): Max retries exceeded with url: /mediation/ClasspathGraphicsImagesText (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6768280>: Failed to establish a new connection: [Errno 111] Connection refused')) 18/329: https://dwarfstd.org/ HTTPSConnectionPool(host='dwarfstd.org', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self signed certificate (_ssl.c:1123)'))) 19/329: https://exactcode.com/opensource/openbench/ <Response [200]> 20/329: https://fastjar.sourceforge.net/ HTTPSConnectionPool(host='fastjar.sourceforge.net', port=443): Max retries exceeded with url: / (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6768100>: Failed to establish a new connection: [Errno 111] Connection refused')) 21/329: https://flibs.sourceforge.net HTTPSConnectionPool(host='flibs.sourceforge.net', port=443): Max retries exceeded with url: / (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff694e430>: Failed to establish a new connection: [Errno 111] Connection refused')) 22/329: https://ftp.axis.se/pub/users/hp/pgccfd/ HTTPSConnectionPool(host='ftp.axis.se', port=443): Max retries exceeded with url: /pub/users/hp/pgccfd/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff690f970>: Failed to establish a new connection: [Errno 111] Connection refused')) 23/329: https://ftp.gwdg.de/pub/linux/troll/qt/source/qt-x11-2.3.0.tar.gz <Response [200]> 24/329: https://ftp.tsukuba.wide.ad.jp/software/gcc/ <Response [200]> 25/329: https://g95.sourceforge.net/ HTTPSConnectionPool(host='g95.sourceforge.net', port=443): Max retries exceeded with url: / (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff675f820>: Failed to establish a new connection: [Errno 111] Connection refused')) 26/329: https://gcc.cybermirror.org HTTPSConnectionPool(host='gcc.cybermirror.org', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLCertVerificationError("hostname 'gcc.cybermirror.org' doesn't match either of '*.kasserver.com', 'kasserver.com'"))) 27/329: https://gcc.fyxm.net/ HTTPSConnectionPool(host='gcc.fyxm.net', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self signed certificate (_ssl.c:1123)'))) 28/329: https://gcc.gnu.org/install/finalinstall.html <Response [200]> 29/329: https://gcc.gnu.org/install/prerequisites.html <Response [200]> 30/329: https://gcc.gnu.org/install/test.html <Response [200]> 31/329: https://gcc.gnu.org/onlinedocs/10.1.0/ <Response [200]> 32/329: https://gcc.gnu.org/onlinedocs/10.2.0/ <Response [200]> 33/329: https://gcc.gnu.org/onlinedocs/4.9.1/ <Response [200]> 34/329: https://gcc.gnu.org/onlinedocs/4.9.2/ <Response [200]> 35/329: https://gcc.gnu.org/onlinedocs/4.9.3/ <Response [200]> 36/329: https://gcc.gnu.org/onlinedocs/4.9.4/ <Response [200]> 37/329: https://gcc.gnu.org/onlinedocs/5.1.0/ <Response [200]> 38/329: https://gcc.gnu.org/onlinedocs/5.2.0/ <Response [200]> 39/329: https://gcc.gnu.org/onlinedocs/5.3.0/ <Response [200]> 40/329: https://gcc.gnu.org/onlinedocs/5.4.0/ <Response [200]> 41/329: https://gcc.gnu.org/onlinedocs/5.5.0/ <Response [200]> 42/329: https://gcc.gnu.org/onlinedocs/6.1.0/ <Response [200]> 43/329: https://gcc.gnu.org/onlinedocs/6.2.0/ <Response [200]> 44/329: https://gcc.gnu.org/onlinedocs/6.3.0/ <Response [200]> 45/329: https://gcc.gnu.org/onlinedocs/6.4.0/ <Response [200]> 46/329: https://gcc.gnu.org/onlinedocs/6.5.0/ <Response [200]> 47/329: https://gcc.gnu.org/onlinedocs/7.1.0/ <Response [200]> 48/329: https://gcc.gnu.org/onlinedocs/7.2.0/ <Response [200]> 49/329: https://gcc.gnu.org/onlinedocs/7.3.0/ <Response [200]> 50/329: https://gcc.gnu.org/onlinedocs/7.4.0/ <Response [200]> 51/329: https://gcc.gnu.org/onlinedocs/7.5.0/ <Response [200]> 52/329: https://gcc.gnu.org/onlinedocs/8.1.0/ <Response [200]> 53/329: https://gcc.gnu.org/onlinedocs/8.2.0/ <Response [200]> 54/329: https://gcc.gnu.org/onlinedocs/8.3.0/ <Response [200]> 55/329: https://gcc.gnu.org/onlinedocs/8.4.0/ <Response [200]> 56/329: https://gcc.gnu.org/onlinedocs/9.1.0/ <Response [200]> 57/329: https://gcc.gnu.org/onlinedocs/9.2.0/ <Response [200]> 58/329: https://gcc.gnu.org/onlinedocs/9.3.0/ <Response [200]> 59/329: https://gcc.gnu.org/onlinedocs/gcc-10.1.0/gcc/Contributors.html <Response [200]> 60/329: https://gcc.gnu.org/onlinedocs/gcc-8.1.0/gcc/Contributors.html <Response [200]> 61/329: https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Contributors.html <Response [200]> 62/329: https://gcc.gnu.org/onlinedocs/gcc/Contributors.html <Response [200]> 63/329: https://gcc.gnu.org/wiki/vtv <Response [200]> 64/329: https://gccupc.org <Response [406]> 65/329: https://gccupc.org/gnu-upc-info/gnu-upc-compile-options <Response [406]> 66/329: https://gccupc.org/gnu-upc-info/gnu-upc-install-from-source-code <Response [406]> 67/329: https://gdbf95.sourceforge.net/ HTTPSConnectionPool(host='gdbf95.sourceforge.net', port=443): Max retries exceeded with url: / (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff675f880>: Failed to establish a new connection: [Errno 111] Connection refused')) 68/329: https://ghdl.free.fr HTTPSConnectionPool(host='ghdl.free.fr', port=443): Max retries exceeded with url: / (Caused by ConnectTimeoutError(<urllib3.connection.HTTPSConnection object at 0x7ffff6768670>, 'Connection to ghdl.free.fr timed out. (connect timeout=5)')) 69/329: https://git.savannah.gnu.org/cgit/gnulib.git/plain/build-aux/config.rpath <Response [200]> 70/329: https://git.savannah.gnu.org/cgit/gnulib.git/plain/build-aux/move-if-change <Response [200]> 71/329: https://git.savannah.gnu.org/cgit/gnulib.git/plain/build-aux/texinfo.tex <Response [200]> 72/329: https://icps.u-strasbg.fr/pco/locality.htm <Response [200]> 73/329: https://icps.u-strasbg.fr/~pop/DEA_03_Pop.pdf <Response [200]> 74/329: https://impact.crhc.illinois.edu/ HTTPSConnectionPool(host='impact.crhc.illinois.edu', port=443): Max retries exceeded with url: / (Caused by ConnectTimeoutError(<urllib3.connection.HTTPSConnection object at 0x7ffff6786190>, 'Connection to impact.crhc.illinois.edu timed out. (connect timeout=5)')) 75/329: https://kegel.com/crosstool/ HTTPSConnectionPool(host='kegel.com', port=443): Max retries exceeded with url: /crosstool/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6786700>: Failed to establish a new connection: [Errno 111] Connection refused')) 76/329: https://legacy.cleanscape.net/stdprod/xtc1750a/resources/mil-std-1750.zip <Response [406]> 77/329: https://linux-c6x.org/ HTTPSConnectionPool(host='linux-c6x.org', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self signed certificate (_ssl.c:1123)'))) 78/329: https://mail-index.NetBSD.org/tech-kern/2003/08/11/0001.html HTTPSConnectionPool(host='mail-index.netbsd.org', port=443): Max retries exceeded with url: /tech-kern/2003/08/11/0001.html (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6786bb0>: Failed to establish a new connection: [Errno 101] Network is unreachable')) 79/329: https://mirror.koddos.net/gcc/ <Response [200]> 80/329: https://mirror.linux-ia64.org/gnu/gcc/ <Response [200]> 81/329: https://mirrors.concertpass.com/gcc/ <Response [200]> 82/329: https://nongnu.org/avr-libc/ <Response [200]> 83/329: https://openmp.org/mp-documents/spec30.pdf <Response [200]> 84/329: https://parmance.com HTTPSConnectionPool(host='parmance.com', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1123)'))) 85/329: https://pdp10.nocrew.org/gcc/ HTTPSConnectionPool(host='pdp10.nocrew.org', port=443): Max retries exceeded with url: /gcc/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6786130>: Failed to establish a new connection: [Errno 111] Connection refused')) 86/329: https://people.freebsd.org/~fenner/cvsweb/ <Response [200]> 87/329: https://pl1gcc.sourceforge.net/ HTTPSConnectionPool(host='pl1gcc.sourceforge.net', port=443): Max retries exceeded with url: / (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6768790>: Failed to establish a new connection: [Errno 111] Connection refused')) 88/329: https://prod.tinker.cc.gatech.edu HTTPSConnectionPool(host='prod.tinker.cc.gatech.edu', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLCertVerificationError("hostname 'prod.tinker.cc.gatech.edu' doesn't match either of 'hosting.gatech.edu', '*.academy.gatech.edu', '*.aco.gatech.edu', '*.admission.gatech.edu', '*.advising.gatech.edu', '*.ae.gatech.edu', '*.amac.gatech.edu', '*.amacusg.gatech.edu', '*.ap.gatech.edu', '*.arcs.gatech.edu', '*.az.gatech.edu', '*.biology.gatech.edu', '*.biosci.gatech.edu', '*.biosciences.gatech.edu', '*.bme.gatech.edu', '*.bursar.gatech.edu', '*.buzzport.gatech.edu', '*.campusservices.gatech.edu', '*.cc.gatech.edu', '*.ce.gatech.edu', '*.ceismc.gatech.edu', '*.chbe.gatech.edu', '*.chemistry.gatech.edu', '*.cidi.gatech.edu', '*.coe.gatech.edu', '*.cos.gatech.edu', '*.crc.gatech.edu', '*.ctl.gatech.edu', '*.eas.gatech.edu', '*.ebb.gatech.edu', '*.ece.gatech.edu', '*.econ.gatech.edu', '*.ehs.gatech.edu', '*.em.gatech.edu', '*.enrsrv.gatech.edu', '*.es.gatech.edu', '*.finaid.gatech.edu', '*.fis.gatech.edu', '*.gatech.edu', '*.gtmi.gatech.edu', '*.gtorg.gatech.edu', '*.gtri.gatech.edu', '*.gvu.gatech.edu', '*.health.gatech.edu', '*.hosting.gatech.edu', '*.housing.gatech.edu', '*.hsoc.gatech.edu', '*.hts.gatech.edu', '*.hwb.gatech.edu', '*.iac.gatech.edu', '*.iam.gatech.edu', '*.ibb.gatech.edu', '*.inta.gatech.edu', '*.irp.gatech.edu', '*.isye.gatech.edu', '*.library.gatech.edu', '*.math.gatech.edu', '*.me.gatech.edu', '*.mealplan.gatech.edu', '*.media.gatech.edu', '*.mse.gatech.edu', '*.neetrac.gatech.edu', '*.ohr.gatech.edu', '*.oie.gatech.edu', '*.oie2.gatech.edu', '*.oit.gatech.edu', '*.omscs.gatech.edu', '*.physics.gatech.edu', '*.psych.gatech.edu', '*.psychology.gatech.edu', '*.pts.gatech.edu', '*.registrar.gatech.edu', '*.research.gatech.edu', '*.resnet.gatech.edu', '*.reveals.gatech.edu', '*.scc.gatech.edu', '*.scl.gatech.edu', '*.security.gatech.edu', '*.spp.gatech.edu', '*.ssc.gatech.edu', '*.studentcenter.gatech.edu', '*.studentlife.gatech.edu', '*.success.gatech.edu', '*.try-duo.gatech.edu', '*.twofactor.oit.gatech.edu', '*.work21.gatech.edu', '*.wrecktechs.gatech.edu'"))) 89/329: https://prod.tinker.cc.gatech.edu/symposia/europar97.pdf HTTPSConnectionPool(host='prod.tinker.cc.gatech.edu', port=443): Max retries exceeded with url: /symposia/europar97.pdf (Caused by SSLError(SSLCertVerificationError("hostname 'prod.tinker.cc.gatech.edu' doesn't match either of 'hosting.gatech.edu', '*.academy.gatech.edu', '*.aco.gatech.edu', '*.admission.gatech.edu', '*.advising.gatech.edu', '*.ae.gatech.edu', '*.amac.gatech.edu', '*.amacusg.gatech.edu', '*.ap.gatech.edu', '*.arcs.gatech.edu', '*.az.gatech.edu', '*.biology.gatech.edu', '*.biosci.gatech.edu', '*.biosciences.gatech.edu', '*.bme.gatech.edu', '*.bursar.gatech.edu', '*.buzzport.gatech.edu', '*.campusservices.gatech.edu', '*.cc.gatech.edu', '*.ce.gatech.edu', '*.ceismc.gatech.edu', '*.chbe.gatech.edu', '*.chemistry.gatech.edu', '*.cidi.gatech.edu', '*.coe.gatech.edu', '*.cos.gatech.edu', '*.crc.gatech.edu', '*.ctl.gatech.edu', '*.eas.gatech.edu', '*.ebb.gatech.edu', '*.ece.gatech.edu', '*.econ.gatech.edu', '*.ehs.gatech.edu', '*.em.gatech.edu', '*.enrsrv.gatech.edu', '*.es.gatech.edu', '*.finaid.gatech.edu', '*.fis.gatech.edu', '*.gatech.edu', '*.gtmi.gatech.edu', '*.gtorg.gatech.edu', '*.gtri.gatech.edu', '*.gvu.gatech.edu', '*.health.gatech.edu', '*.hosting.gatech.edu', '*.housing.gatech.edu', '*.hsoc.gatech.edu', '*.hts.gatech.edu', '*.hwb.gatech.edu', '*.iac.gatech.edu', '*.iam.gatech.edu', '*.ibb.gatech.edu', '*.inta.gatech.edu', '*.irp.gatech.edu', '*.isye.gatech.edu', '*.library.gatech.edu', '*.math.gatech.edu', '*.me.gatech.edu', '*.mealplan.gatech.edu', '*.media.gatech.edu', '*.mse.gatech.edu', '*.neetrac.gatech.edu', '*.ohr.gatech.edu', '*.oie.gatech.edu', '*.oie2.gatech.edu', '*.oit.gatech.edu', '*.omscs.gatech.edu', '*.physics.gatech.edu', '*.psych.gatech.edu', '*.psychology.gatech.edu', '*.pts.gatech.edu', '*.registrar.gatech.edu', '*.research.gatech.edu', '*.resnet.gatech.edu', '*.reveals.gatech.edu', '*.scc.gatech.edu', '*.scl.gatech.edu', '*.security.gatech.edu', '*.spp.gatech.edu', '*.ssc.gatech.edu', '*.studentcenter.gatech.edu', '*.studentlife.gatech.edu', '*.success.gatech.edu', '*.try-duo.gatech.edu', '*.twofactor.oit.gatech.edu', '*.work21.gatech.edu', '*.wrecktechs.gatech.edu'"))) 90/329: https://prod.tinker.cc.gatech.edu/symposia/hpca4_treegions.pdf HTTPSConnectionPool(host='prod.tinker.cc.gatech.edu', port=443): Max retries exceeded with url: /symposia/hpca4_treegions.pdf (Caused by SSLError(SSLCertVerificationError("hostname 'prod.tinker.cc.gatech.edu' doesn't match either of 'hosting.gatech.edu', '*.academy.gatech.edu', '*.aco.gatech.edu', '*.admission.gatech.edu', '*.advising.gatech.edu', '*.ae.gatech.edu', '*.amac.gatech.edu', '*.amacusg.gatech.edu', '*.ap.gatech.edu', '*.arcs.gatech.edu', '*.az.gatech.edu', '*.biology.gatech.edu', '*.biosci.gatech.edu', '*.biosciences.gatech.edu', '*.bme.gatech.edu', '*.bursar.gatech.edu', '*.buzzport.gatech.edu', '*.campusservices.gatech.edu', '*.cc.gatech.edu', '*.ce.gatech.edu', '*.ceismc.gatech.edu', '*.chbe.gatech.edu', '*.chemistry.gatech.edu', '*.cidi.gatech.edu', '*.coe.gatech.edu', '*.cos.gatech.edu', '*.crc.gatech.edu', '*.ctl.gatech.edu', '*.eas.gatech.edu', '*.ebb.gatech.edu', '*.ece.gatech.edu', '*.econ.gatech.edu', '*.ehs.gatech.edu', '*.em.gatech.edu', '*.enrsrv.gatech.edu', '*.es.gatech.edu', '*.finaid.gatech.edu', '*.fis.gatech.edu', '*.gatech.edu', '*.gtmi.gatech.edu', '*.gtorg.gatech.edu', '*.gtri.gatech.edu', '*.gvu.gatech.edu', '*.health.gatech.edu', '*.hosting.gatech.edu', '*.housing.gatech.edu', '*.hsoc.gatech.edu', '*.hts.gatech.edu', '*.hwb.gatech.edu', '*.iac.gatech.edu', '*.iam.gatech.edu', '*.ibb.gatech.edu', '*.inta.gatech.edu', '*.irp.gatech.edu', '*.isye.gatech.edu', '*.library.gatech.edu', '*.math.gatech.edu', '*.me.gatech.edu', '*.mealplan.gatech.edu', '*.media.gatech.edu', '*.mse.gatech.edu', '*.neetrac.gatech.edu', '*.ohr.gatech.edu', '*.oie.gatech.edu', '*.oie2.gatech.edu', '*.oit.gatech.edu', '*.omscs.gatech.edu', '*.physics.gatech.edu', '*.psych.gatech.edu', '*.psychology.gatech.edu', '*.pts.gatech.edu', '*.registrar.gatech.edu', '*.research.gatech.edu', '*.resnet.gatech.edu', '*.reveals.gatech.edu', '*.scc.gatech.edu', '*.scl.gatech.edu', '*.security.gatech.edu', '*.spp.gatech.edu', '*.ssc.gatech.edu', '*.studentcenter.gatech.edu', '*.studentlife.gatech.edu', '*.success.gatech.edu', '*.try-duo.gatech.edu', '*.twofactor.oit.gatech.edu', '*.work21.gatech.edu', '*.wrecktechs.gatech.edu'"))) 91/329: https://prod.tinker.cc.gatech.edu/symposia/interact02.pdf HTTPSConnectionPool(host='prod.tinker.cc.gatech.edu', port=443): Max retries exceeded with url: /symposia/interact02.pdf (Caused by SSLError(SSLCertVerificationError("hostname 'prod.tinker.cc.gatech.edu' doesn't match either of 'hosting.gatech.edu', '*.academy.gatech.edu', '*.aco.gatech.edu', '*.admission.gatech.edu', '*.advising.gatech.edu', '*.ae.gatech.edu', '*.amac.gatech.edu', '*.amacusg.gatech.edu', '*.ap.gatech.edu', '*.arcs.gatech.edu', '*.az.gatech.edu', '*.biology.gatech.edu', '*.biosci.gatech.edu', '*.biosciences.gatech.edu', '*.bme.gatech.edu', '*.bursar.gatech.edu', '*.buzzport.gatech.edu', '*.campusservices.gatech.edu', '*.cc.gatech.edu', '*.ce.gatech.edu', '*.ceismc.gatech.edu', '*.chbe.gatech.edu', '*.chemistry.gatech.edu', '*.cidi.gatech.edu', '*.coe.gatech.edu', '*.cos.gatech.edu', '*.crc.gatech.edu', '*.ctl.gatech.edu', '*.eas.gatech.edu', '*.ebb.gatech.edu', '*.ece.gatech.edu', '*.econ.gatech.edu', '*.ehs.gatech.edu', '*.em.gatech.edu', '*.enrsrv.gatech.edu', '*.es.gatech.edu', '*.finaid.gatech.edu', '*.fis.gatech.edu', '*.gatech.edu', '*.gtmi.gatech.edu', '*.gtorg.gatech.edu', '*.gtri.gatech.edu', '*.gvu.gatech.edu', '*.health.gatech.edu', '*.hosting.gatech.edu', '*.housing.gatech.edu', '*.hsoc.gatech.edu', '*.hts.gatech.edu', '*.hwb.gatech.edu', '*.iac.gatech.edu', '*.iam.gatech.edu', '*.ibb.gatech.edu', '*.inta.gatech.edu', '*.irp.gatech.edu', '*.isye.gatech.edu', '*.library.gatech.edu', '*.math.gatech.edu', '*.me.gatech.edu', '*.mealplan.gatech.edu', '*.media.gatech.edu', '*.mse.gatech.edu', '*.neetrac.gatech.edu', '*.ohr.gatech.edu', '*.oie.gatech.edu', '*.oie2.gatech.edu', '*.oit.gatech.edu', '*.omscs.gatech.edu', '*.physics.gatech.edu', '*.psych.gatech.edu', '*.psychology.gatech.edu', '*.pts.gatech.edu', '*.registrar.gatech.edu', '*.research.gatech.edu', '*.resnet.gatech.edu', '*.reveals.gatech.edu', '*.scc.gatech.edu', '*.scl.gatech.edu', '*.security.gatech.edu', '*.spp.gatech.edu', '*.ssc.gatech.edu', '*.studentcenter.gatech.edu', '*.studentlife.gatech.edu', '*.success.gatech.edu', '*.try-duo.gatech.edu', '*.twofactor.oit.gatech.edu', '*.work21.gatech.edu', '*.wrecktechs.gatech.edu'"))) 92/329: https://prod.tinker.cc.gatech.edu/symposia/lcpc01.pdf HTTPSConnectionPool(host='prod.tinker.cc.gatech.edu', port=443): Max retries exceeded with url: /symposia/lcpc01.pdf (Caused by SSLError(SSLCertVerificationError("hostname 'prod.tinker.cc.gatech.edu' doesn't match either of 'hosting.gatech.edu', '*.academy.gatech.edu', '*.aco.gatech.edu', '*.admission.gatech.edu', '*.advising.gatech.edu', '*.ae.gatech.edu', '*.amac.gatech.edu', '*.amacusg.gatech.edu', '*.ap.gatech.edu', '*.arcs.gatech.edu', '*.az.gatech.edu', '*.biology.gatech.edu', '*.biosci.gatech.edu', '*.biosciences.gatech.edu', '*.bme.gatech.edu', '*.bursar.gatech.edu', '*.buzzport.gatech.edu', '*.campusservices.gatech.edu', '*.cc.gatech.edu', '*.ce.gatech.edu', '*.ceismc.gatech.edu', '*.chbe.gatech.edu', '*.chemistry.gatech.edu', '*.cidi.gatech.edu', '*.coe.gatech.edu', '*.cos.gatech.edu', '*.crc.gatech.edu', '*.ctl.gatech.edu', '*.eas.gatech.edu', '*.ebb.gatech.edu', '*.ece.gatech.edu', '*.econ.gatech.edu', '*.ehs.gatech.edu', '*.em.gatech.edu', '*.enrsrv.gatech.edu', '*.es.gatech.edu', '*.finaid.gatech.edu', '*.fis.gatech.edu', '*.gatech.edu', '*.gtmi.gatech.edu', '*.gtorg.gatech.edu', '*.gtri.gatech.edu', '*.gvu.gatech.edu', '*.health.gatech.edu', '*.hosting.gatech.edu', '*.housing.gatech.edu', '*.hsoc.gatech.edu', '*.hts.gatech.edu', '*.hwb.gatech.edu', '*.iac.gatech.edu', '*.iam.gatech.edu', '*.ibb.gatech.edu', '*.inta.gatech.edu', '*.irp.gatech.edu', '*.isye.gatech.edu', '*.library.gatech.edu', '*.math.gatech.edu', '*.me.gatech.edu', '*.mealplan.gatech.edu', '*.media.gatech.edu', '*.mse.gatech.edu', '*.neetrac.gatech.edu', '*.ohr.gatech.edu', '*.oie.gatech.edu', '*.oie2.gatech.edu', '*.oit.gatech.edu', '*.omscs.gatech.edu', '*.physics.gatech.edu', '*.psych.gatech.edu', '*.psychology.gatech.edu', '*.pts.gatech.edu', '*.registrar.gatech.edu', '*.research.gatech.edu', '*.resnet.gatech.edu', '*.reveals.gatech.edu', '*.scc.gatech.edu', '*.scl.gatech.edu', '*.security.gatech.edu', '*.spp.gatech.edu', '*.ssc.gatech.edu', '*.studentcenter.gatech.edu', '*.studentlife.gatech.edu', '*.success.gatech.edu', '*.try-duo.gatech.edu', '*.twofactor.oit.gatech.edu', '*.work21.gatech.edu', '*.wrecktechs.gatech.edu'"))) 93/329: https://publib16.boulder.ibm.com/pseries/en_US/infocenter/base/43_docs/aixassem/alangref/toc.htm HTTPSConnectionPool(host='publib16.boulder.ibm.com', port=443): Max retries exceeded with url: /pseries/en_US/infocenter/base/43_docs/aixassem/alangref/toc.htm (Caused by SSLError(SSLCertVerificationError("hostname 'publib16.boulder.ibm.com' doesn't match 'www14.boulder.ibm.com'"))) 94/329: https://publibfp.dhe.ibm.com/epubs/pdf/dz9ar008.pdf <Response [200]> 95/329: https://publibfp.dhe.ibm.com/epubs/pdf/dz9zr011.pdf <Response [200]> 96/329: https://publibn.boulder.ibm.com/doc_link/en_US/a_doc_lib/aixassem/alangref/alangreftfrm.htm HTTPSConnectionPool(host='publibn.boulder.ibm.com', port=443): Max retries exceeded with url: /doc_link/en_US/a_doc_lib/aixassem/alangref/alangreftfrm.htm (Caused by SSLError(SSLCertVerificationError("hostname 'publibn.boulder.ibm.com' doesn't match 'www15.software.ibm.com'"))) 97/329: https://refspecs.linux-foundation.org/elf/elfspec_ppc.pdf HTTPSConnectionPool(host='refspecs.linux-foundation.org', port=443): Max retries exceeded with url: /elf/elfspec_ppc.pdf (Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: certificate has expired (_ssl.c:1123)'))) 98/329: https://robotlab.itk.ppke.hu/gcc/ HTTPSConnectionPool(host='robotlab.itk.ppke.hu', port=443): Max retries exceeded with url: /gcc/ (Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self signed certificate (_ssl.c:1123)'))) 99/329: https://root.cern.ch/root/Version301.html <Response [404]> 100/329: https://savannah.nongnu.org/bugs/?35407 <Response [200]> 101/329: https://shared-ptr.com/sh_insns.html HTTPSConnectionPool(host='shared-ptr.com', port=443): Max retries exceeded with url: /sh_insns.html (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff690fdf0>: Failed to establish a new connection: [Errno 101] Network is unreachable')) 102/329: https://simh.trailing-edge.com/ HTTPSConnectionPool(host='simh.trailing-edge.com', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError(1, '[SSL: WRONG_VERSION_NUMBER] wrong version number (_ssl.c:1123)'))) 103/329: https://starpu.gforge.inria.fr/ <Response [200]> 104/329: https://szeged.github.io/csibe/ <Response [200]> 105/329: https://toolchain.lug-owl.de/buildbot/ HTTPSConnectionPool(host='toolchain.lug-owl.de', port=443): Max retries exceeded with url: /buildbot/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff690fbe0>: Failed to establish a new connection: [Errno 111] Connection refused')) 106/329: https://translationproject.org/domain/cpplib.html <Response [200]> 107/329: https://translationproject.org/domain/gcc.html <Response [200]> 108/329: https://translationproject.org/html/maintainers.html <Response [200]> 109/329: https://translationproject.org/html/welcome.html <Response [200]> 110/329: https://translationproject.org/team/index.html <Response [200]> 111/329: https://users.physik.fu-berlin.de/~tburnus/gcc-trunk/benchmark/ HTTPSConnectionPool(host='users.physik.fu-berlin.de', port=443): Max retries exceeded with url: /~tburnus/gcc-trunk/benchmark/ (Caused by SSLError(SSLCertVerificationError("hostname 'users.physik.fu-berlin.de' doesn't match 'userpage.physik.fu-berlin.de'"))) 112/329: https://validator.w3.org/ <Response [200]> 113/329: https://web.eah-jena.de/~kleine/history/ HTTPSConnectionPool(host='web.eah-jena.de', port=443): Max retries exceeded with url: /~kleine/history/ (Caused by SSLError(SSLCertVerificationError("hostname 'web.eah-jena.de' doesn't match either of 'gp-app.eah-jena.de', 'gp-pub.eah-jena.de'"))) 114/329: https://wg21.link/p0522r0 <Response [200]> 115/329: https://williambader.com/bounds/example.html#download <Response [200]> 116/329: https://world.std.com/~burley/bof.html HTTPSConnectionPool(host='world.std.com', port=443): Max retries exceeded with url: /~burley/bof.html (Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1123)'))) 117/329: https://world.std.com/~burley/g77-next.html HTTPSConnectionPool(host='world.std.com', port=443): Max retries exceeded with url: /~burley/g77-next.html (Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1123)'))) 118/329: https://world.std.com/~burley/g77-why.html HTTPSConnectionPool(host='world.std.com', port=443): Max retries exceeded with url: /~burley/g77-why.html (Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1123)'))) 119/329: https://world.std.com/~burley/g77.html HTTPSConnectionPool(host='world.std.com', port=443): Max retries exceeded with url: /~burley/g77.html (Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1123)'))) 120/329: https://www-124.ibm.com/developerworks/oss/cvs/jikes/~checkout~/jacks/jacks.html <Response [200]> 121/329: https://www-cs-faculty.stanford.edu/~knuth/mmix.html <Response [200]> 122/329: https://www.ada-auth.org/acats.html HTTPSConnectionPool(host='www.ada-auth.org', port=443): Max retries exceeded with url: /acats.html (Caused by ConnectTimeoutError(<urllib3.connection.HTTPSConnection object at 0x7ffff6786100>, 'Connection to www.ada-auth.org timed out. (connect timeout=5)')) 123/329: https://www.ada-auth.org/ais.html HTTPSConnectionPool(host='www.ada-auth.org', port=443): Max retries exceeded with url: /ais.html (Caused by ConnectTimeoutError(<urllib3.connection.HTTPSConnection object at 0x7ffff6768f40>, 'Connection to www.ada-auth.org timed out. (connect timeout=5)')) 124/329: https://www.andestech.com/en/products-solutions/product-documentation/ HTTPSConnectionPool(host='www.andestech.com', port=443): Max retries exceeded with url: /en/products-solutions/product-documentation/ (Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1123)'))) 125/329: https://www.cantrip.org/cpp.html <Response [200]> 126/329: https://www.citi.umich.edu/projects/linux-scalability/reports/spec.html HTTPSConnectionPool(host='www.citi.umich.edu', port=443): Max retries exceeded with url: /projects/linux-scalability/reports/spec.html (Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1123)'))) 127/329: https://www.cmass.com HTTPSConnectionPool(host='www.cmass.com', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError(1, '[SSL: WRONG_VERSION_NUMBER] wrong version number (_ssl.c:1123)'))) 128/329: https://www.cs.utexas.edu/users/EWD/ <Response [200]> 129/329: https://www.cs.wustl.edu/~schmidt/ACE.html <Response [404]> 130/329: https://www.cse.iitb.ac.in/grc/ <Response [200]> 131/329: https://www.doc.ic.ac.uk/~phjk/BoundsChecking.html <Response [200]> 132/329: https://www.dwarfstd.org/Download.php HTTPSConnectionPool(host='www.dwarfstd.org', port=443): Max retries exceeded with url: /Download.php (Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self signed certificate (_ssl.c:1123)'))) 133/329: https://www.dwarfstd.org/ShowIssue.php?issue=100909.1 HTTPSConnectionPool(host='www.dwarfstd.org', port=443): Max retries exceeded with url: /ShowIssue.php?issue=100909.1 (Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self signed certificate (_ssl.c:1123)'))) 134/329: https://www.dwarfstd.org/ShowIssue.php?issue=100909.2 HTTPSConnectionPool(host='www.dwarfstd.org', port=443): Max retries exceeded with url: /ShowIssue.php?issue=100909.2 (Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self signed certificate (_ssl.c:1123)'))) 135/329: https://www.dwarfstd.org/ShowIssue.php?issue=110722.1 HTTPSConnectionPool(host='www.dwarfstd.org', port=443): Max retries exceeded with url: /ShowIssue.php?issue=110722.1 (Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self signed certificate (_ssl.c:1123)'))) 136/329: https://www.dwarfstd.org/ShowIssue.php?issue=140425.1 HTTPSConnectionPool(host='www.dwarfstd.org', port=443): Max retries exceeded with url: /ShowIssue.php?issue=140425.1 (Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self signed certificate (_ssl.c:1123)'))) 137/329: https://www.eclipse.org/ <Response [200]> 138/329: https://www.ecma-international.org/publications/standards/Ecma-335.htm <Response [200]> 139/329: https://www.elec.canterbury.ac.nz/c4x/ HTTPSConnectionPool(host='www.elec.canterbury.ac.nz', port=443): Max retries exceeded with url: /c4x/ (Caused by ConnectTimeoutError(<urllib3.connection.HTTPSConnection object at 0x7ffff6768f40>, 'Connection to www.elec.canterbury.ac.nz timed out. (connect timeout=5)')) 140/329: https://www.fortran-2000.com/MichelList/ HTTPSConnectionPool(host='www.fortran-2000.com', port=443): Max retries exceeded with url: /MichelList/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6768fa0>: Failed to establish a new connection: [Errno 111] Connection refused')) 141/329: https://www.gccsummit.org/ HTTPSConnectionPool(host='www.gccsummit.org', port=443): Max retries exceeded with url: / (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6786c40>: Failed to establish a new connection: [Errno 111] Connection refused')) 142/329: https://www.gccsummit.org/2006/2006-GCC-Summit-Proceedings.pdf HTTPSConnectionPool(host='www.gccsummit.org', port=443): Max retries exceeded with url: /2006/2006-GCC-Summit-Proceedings.pdf (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6786e20>: Failed to establish a new connection: [Errno 111] Connection refused')) 143/329: https://www.gccupc.org/ <Response [406]> 144/329: https://www.gnu-pascal.de/gpc/h-index.html <Response [200]> 145/329: https://www.gnu.org <Response [200]> 146/329: https://www.gnu.org/ <Response [200]> 147/329: https://www.gnu.org/gnu/thegnuproject.html <Response [200]> 148/329: https://www.gnu.org/licenses/gcc-exception-faq.html <Response [200]> 149/329: https://www.gnu.org/licenses/gcc-exception.html <Response [200]> 150/329: https://www.gnu.org/philosophy/free-sw.html <Response [200]> 151/329: https://www.gnu.org/prep/ftp.html <Response [200]> 152/329: https://www.gnu.org/prep/standards_toc.html <Response [200]> 153/329: https://www.gnu.org/software/classpath/ <Response [200]> 154/329: https://www.gnu.org/software/classpathx/crypto/crypto.html <Response [404]> 155/329: https://www.gnu.org/software/emacs/ <Response [200]> 156/329: https://www.gnu.org/software/gnats/ <Response [200]> 157/329: https://www.gnu.org/software/kawa/ <Response [200]> 158/329: https://www.gnu.org/software/libc/ <Response [200]> 159/329: https://www.gnu.org/software/libtool/libtool.html <Response [200]> 160/329: https://www.gnu.org/software/texinfo/manual/texinfo/ <Response [200]> 161/329: https://www.google-melange.com/gsoc/org2/google/gsoc2014/gcc <Response [200]> 162/329: https://www.hsafoundation.com/ HTTPSConnectionPool(host='www.hsafoundation.com', port=443): Max retries exceeded with url: / (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff675f5e0>: Failed to establish a new connection: [Errno 111] Connection refused')) 163/329: https://www.josuttis.com/libbook/ HTTPSConnectionPool(host='www.josuttis.com', port=443): Max retries exceeded with url: /libbook/ (Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self signed certificate (_ssl.c:1123)'))) 164/329: https://www.kernel.org <Response [200]> 165/329: https://www.lighterra.com/papers/valuerangeprop/Patterson1995-ValueRangeProp.pdf HTTPSConnectionPool(host='www.lighterra.com', port=443): Max retries exceeded with url: /papers/valuerangeprop/Patterson1995-ValueRangeProp.pdf (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff690fcd0>: Failed to establish a new connection: [Errno 101] Network is unreachable')) 166/329: https://www.lysator.liu.se/c/rat/title.html <Response [200]> 167/329: https://www.mercurylang.org/download/gcc-backend.html <Response [200]> 168/329: https://www.modula3.org HTTPSConnectionPool(host='www.modula3.org', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLCertVerificationError("hostname 'www.modula3.org' doesn't match either of '*.elegosoft.com', 'elegosoft.com'"))) 169/329: https://www.modula3.org/ HTTPSConnectionPool(host='www.modula3.org', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLCertVerificationError("hostname 'www.modula3.org' doesn't match either of '*.elegosoft.com', 'elegosoft.com'"))) 170/329: https://www.mpfr.org/ <Response [200]> 171/329: https://www.multiprecision.org/ HTTPSConnectionPool(host='www.multiprecision.org', port=443): Max retries exceeded with url: / (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff690f5b0>: Failed to establish a new connection: [Errno 111] Connection refused')) 172/329: https://www.multiprecision.org/mpc/ HTTPSConnectionPool(host='www.multiprecision.org', port=443): Max retries exceeded with url: /mpc/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff675f250>: Failed to establish a new connection: [Errno 111] Connection refused')) 173/329: https://www.musl-libc.org <Response [200]> 174/329: https://www.netbsd.org/ HTTPSConnectionPool(host='www.netbsd.org', port=443): Max retries exceeded with url: / (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff675fa00>: Failed to establish a new connection: [Errno 101] Network is unreachable')) 175/329: https://www.netgull.com/gcc/ HTTPSConnectionPool(host='www.netgull.com', port=443): Max retries exceeded with url: /gcc/ (Caused by ConnectTimeoutError(<urllib3.connection.HTTPSConnection object at 0x7ffff67863a0>, 'Connection to www.netgull.com timed out. (connect timeout=5)')) 176/329: https://www.netlib.org/lapack/index.html <Response [200]> 177/329: https://www.netlib.org/lapack/lapack.tgz <Response [200]> 178/329: https://www.netlib.org/misc/intel/ <Response [200]> 179/329: https://www.network-theory.co.uk/gcc/intro/ HTTPSConnectionPool(host='www.network-theory.co.uk', port=443): Max retries exceeded with url: /gcc/intro/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6768c10>: Failed to establish a new connection: [Errno -2] Name or service not known')) 180/329: https://www.nongnu.org/avr-libc/ <Response [200]> 181/329: https://www.nongnu.org/freepooma/ <Response [200]> 182/329: https://www.nongnu.org/gm2/ <Response [200]> 183/329: https://www.open-std.org/JTC1/SC22/WG21/docs/papers/2008/n2756.htm HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /JTC1/SC22/WG21/docs/papers/2008/n2756.htm (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6768340>: Failed to establish a new connection: [Errno 111] Connection refused')) 184/329: https://www.open-std.org/JTC1/SC22/WG21/docs/papers/2009/n2927.pdf HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /JTC1/SC22/WG21/docs/papers/2009/n2927.pdf (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6768910>: Failed to establish a new connection: [Errno 111] Connection refused')) 185/329: https://www.open-std.org/JTC1/SC22/WG21/docs/papers/2009/n2928.htm HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /JTC1/SC22/WG21/docs/papers/2009/n2928.htm (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff694e7f0>: Failed to establish a new connection: [Errno 111] Connection refused')) 186/329: https://www.open-std.org/JTC1/SC22/WG21/docs/papers/2009/n2930.html HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /JTC1/SC22/WG21/docs/papers/2009/n2930.html (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6768d90>: Failed to establish a new connection: [Errno 111] Connection refused')) 187/329: https://www.open-std.org/JTC1/SC22/WG21/docs/papers/2012/n3386.html HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /JTC1/SC22/WG21/docs/papers/2012/n3386.html (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6768310>: Failed to establish a new connection: [Errno 111] Connection refused')) 188/329: https://www.open-std.org/Jtc1/sc22/wg21/docs/papers/2015/n4514.pdf HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /Jtc1/sc22/wg21/docs/papers/2015/n4514.pdf (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6786d90>: Failed to establish a new connection: [Errno 111] Connection refused')) 189/329: https://www.open-std.org/jtc1/sc22/wg14/ HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg14/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff67867f0>: Failed to establish a new connection: [Errno 111] Connection refused')) 190/329: https://www.open-std.org/jtc1/sc22/wg14/www/docs/dr.htm HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg14/www/docs/dr.htm (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff675f8b0>: Failed to establish a new connection: [Errno 111] Connection refused')) 191/329: https://www.open-std.org/jtc1/sc22/wg14/www/docs/n1040.pdf HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg14/www/docs/n1040.pdf (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff690f040>: Failed to establish a new connection: [Errno 111] Connection refused')) 192/329: https://www.open-std.org/jtc1/sc22/wg14/www/docs/n1256.pdf HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg14/www/docs/n1256.pdf (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff690f9a0>: Failed to establish a new connection: [Errno 111] Connection refused')) 193/329: https://www.open-std.org/jtc1/sc22/wg14/www/docs/n897.pdf HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg14/www/docs/n897.pdf (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6790490>: Failed to establish a new connection: [Errno 111] Connection refused')) 194/329: https://www.open-std.org/jtc1/sc22/wg14/www/docs/n925.htm HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg14/www/docs/n925.htm (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff675ff10>: Failed to establish a new connection: [Errno 111] Connection refused')) 195/329: https://www.open-std.org/jtc1/sc22/wg14/www/docs/n926.htm HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg14/www/docs/n926.htm (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff675fa60>: Failed to establish a new connection: [Errno 111] Connection refused')) 196/329: https://www.open-std.org/jtc1/sc22/wg14/www/docs/n927.htm HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg14/www/docs/n927.htm (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6786070>: Failed to establish a new connection: [Errno 111] Connection refused')) 197/329: https://www.open-std.org/jtc1/sc22/wg14/www/docs/summary.htm HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg14/www/docs/summary.htm (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6786d90>: Failed to establish a new connection: [Errno 111] Connection refused')) 198/329: https://www.open-std.org/jtc1/sc22/wg14/www/docs/tc1.htm HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg14/www/docs/tc1.htm (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6768cd0>: Failed to establish a new connection: [Errno 111] Connection refused')) 199/329: https://www.open-std.org/jtc1/sc22/wg14/www/docs/tc2.htm HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg14/www/docs/tc2.htm (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6768be0>: Failed to establish a new connection: [Errno 111] Connection refused')) 200/329: https://www.open-std.org/jtc1/sc22/wg21/ HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff67903d0>: Failed to establish a new connection: [Errno 111] Connection refused')) 201/329: https://www.open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#253 HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/cwg_active.html (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6768f70>: Failed to establish a new connection: [Errno 111] Connection refused')) 202/329: https://www.open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#605 HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/cwg_active.html (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6768fa0>: Failed to establish a new connection: [Errno 111] Connection refused')) 203/329: https://www.open-std.org/jtc1/sc22/wg21/docs/cwg_closed.html#209 HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/cwg_closed.html (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6786460>: Failed to establish a new connection: [Errno 111] Connection refused')) 204/329: https://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html# HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/cwg_defects.html (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6786e50>: Failed to establish a new connection: [Errno 111] Connection refused')) 205/329: https://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#1423 HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/cwg_defects.html (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff675f850>: Failed to establish a new connection: [Errno 111] Connection refused')) 206/329: https://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#1579 HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/cwg_defects.html (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff675fb80>: Failed to establish a new connection: [Errno 111] Connection refused')) 207/329: https://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#176 HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/cwg_defects.html (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff690f610>: Failed to establish a new connection: [Errno 111] Connection refused')) 208/329: https://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#226 HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/cwg_defects.html (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6790be0>: Failed to establish a new connection: [Errno 111] Connection refused')) 209/329: https://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#231 HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/cwg_defects.html (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff690fc40>: Failed to establish a new connection: [Errno 111] Connection refused')) 210/329: https://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#292 HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/cwg_defects.html (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff675f580>: Failed to establish a new connection: [Errno 111] Connection refused')) 211/329: https://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#328 HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/cwg_defects.html (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff67868e0>: Failed to establish a new connection: [Errno 111] Connection refused')) 212/329: https://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#391 HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/cwg_defects.html (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6786e50>: Failed to establish a new connection: [Errno 111] Connection refused')) 213/329: https://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#60 HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/cwg_defects.html (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6768160>: Failed to establish a new connection: [Errno 111] Connection refused')) 214/329: https://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#61 HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/cwg_defects.html (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6768700>: Failed to establish a new connection: [Errno 111] Connection refused')) 215/329: https://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#757 HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/cwg_defects.html (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff694e700>: Failed to establish a new connection: [Errno 111] Connection refused')) 216/329: https://www.open-std.org/jtc1/sc22/wg21/docs/cwg_toc.html HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/cwg_toc.html (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6790700>: Failed to establish a new connection: [Errno 111] Connection refused')) 217/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2004/n1610.html HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2004/n1610.html (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff67685b0>: Failed to establish a new connection: [Errno 111] Connection refused')) 218/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2004/n1653.htm HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2004/n1653.htm (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6786be0>: Failed to establish a new connection: [Errno 111] Connection refused')) 219/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2004/n1720.html HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2004/n1720.html (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6786040>: Failed to establish a new connection: [Errno 111] Connection refused')) 220/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2004/n1737.pdf HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2004/n1737.pdf (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff675f5e0>: Failed to establish a new connection: [Errno 111] Connection refused')) 221/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2005/n1757.html HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2005/n1757.html (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff675f250>: Failed to establish a new connection: [Errno 111] Connection refused')) 222/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2005/n1791.pdf HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2005/n1791.pdf (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff690fc10>: Failed to establish a new connection: [Errno 111] Connection refused')) 223/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2005/n1811.pdf HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2005/n1811.pdf (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6790af0>: Failed to establish a new connection: [Errno 111] Connection refused')) 224/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2006/n1984.pdf HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2006/n1984.pdf (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff675f610>: Failed to establish a new connection: [Errno 111] Connection refused')) 225/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2006/n1986.pdf HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2006/n1986.pdf (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff675fee0>: Failed to establish a new connection: [Errno 111] Connection refused')) 226/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2006/n1987.htm HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2006/n1987.htm (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6786220>: Failed to establish a new connection: [Errno 111] Connection refused')) 227/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2006/n1988.pdf HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2006/n1988.pdf (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6786430>: Failed to establish a new connection: [Errno 111] Connection refused')) 228/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2006/n2118.html HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2006/n2118.html (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6768c40>: Failed to establish a new connection: [Errno 111] Connection refused')) 229/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2170.html HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2007/n2170.html (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6768640>: Failed to establish a new connection: [Errno 111] Connection refused')) 230/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2179.html HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2007/n2179.html (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6790ca0>: Failed to establish a new connection: [Errno 111] Connection refused')) 231/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2235.pdf HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2007/n2235.pdf (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff67904f0>: Failed to establish a new connection: [Errno 111] Connection refused')) 232/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2239.html HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2007/n2239.html (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6768070>: Failed to establish a new connection: [Errno 111] Connection refused')) 233/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2242.pdf HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2007/n2242.pdf (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6768310>: Failed to establish a new connection: [Errno 111] Connection refused')) 234/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2249.html HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2007/n2249.html (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6786e50>: Failed to establish a new connection: [Errno 111] Connection refused')) 235/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2253.html HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2007/n2253.html (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff67860d0>: Failed to establish a new connection: [Errno 111] Connection refused')) 236/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2258.pdf HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2007/n2258.pdf (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff67904c0>: Failed to establish a new connection: [Errno 111] Connection refused')) 237/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2340.htm HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2007/n2340.htm (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6790880>: Failed to establish a new connection: [Errno 111] Connection refused')) 238/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2341.pdf HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2007/n2341.pdf (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff675f190>: Failed to establish a new connection: [Errno 111] Connection refused')) 239/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2342.htm HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2007/n2342.htm (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff675f6d0>: Failed to establish a new connection: [Errno 111] Connection refused')) 240/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2343.pdf HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2007/n2343.pdf (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6786550>: Failed to establish a new connection: [Errno 111] Connection refused')) 241/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2346.htm HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2007/n2346.htm (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff694e7f0>: Failed to establish a new connection: [Errno 111] Connection refused')) 242/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2347.pdf HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2007/n2347.pdf (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6790e50>: Failed to establish a new connection: [Errno 111] Connection refused')) 243/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2427.html HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2007/n2427.html (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6790e80>: Failed to establish a new connection: [Errno 111] Connection refused')) 244/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2429.htm HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2007/n2429.htm (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff67689a0>: Failed to establish a new connection: [Errno 111] Connection refused')) 245/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2431.pdf HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2007/n2431.pdf (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6768580>: Failed to establish a new connection: [Errno 111] Connection refused')) 246/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2437.pdf HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2007/n2437.pdf (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff675fa30>: Failed to establish a new connection: [Errno 111] Connection refused')) 247/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2439.htm HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2007/n2439.htm (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6768a30>: Failed to establish a new connection: [Errno 111] Connection refused')) 248/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2440.htm HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2007/n2440.htm (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6768e20>: Failed to establish a new connection: [Errno 111] Connection refused')) 249/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2442.htm HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2007/n2442.htm (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6790220>: Failed to establish a new connection: [Errno 111] Connection refused')) 250/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2514.html HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2008/n2514.html (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6790520>: Failed to establish a new connection: [Errno 111] Connection refused')) 251/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2535.htm HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2008/n2535.htm (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff694ed60>: Failed to establish a new connection: [Errno 111] Connection refused')) 252/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2540.htm HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2008/n2540.htm (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6786a00>: Failed to establish a new connection: [Errno 111] Connection refused')) 253/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2541.htm HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2008/n2541.htm (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6786910>: Failed to establish a new connection: [Errno 111] Connection refused')) 254/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2544.pdf HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2008/n2544.pdf (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff690ff70>: Failed to establish a new connection: [Errno 111] Connection refused')) 255/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2546.htm HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2008/n2546.htm (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6786e20>: Failed to establish a new connection: [Errno 111] Connection refused')) 256/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2547.htm HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2008/n2547.htm (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff67865b0>: Failed to establish a new connection: [Errno 111] Connection refused')) 257/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2550.pdf HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2008/n2550.pdf (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6790760>: Failed to establish a new connection: [Errno 111] Connection refused')) 258/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2555.pdf HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2008/n2555.pdf (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6790d00>: Failed to establish a new connection: [Errno 111] Connection refused')) 259/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2634.html HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2008/n2634.html (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff77bd640>: Failed to establish a new connection: [Errno 111] Connection refused')) 260/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2657.htm HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2008/n2657.htm (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6768520>: Failed to establish a new connection: [Errno 111] Connection refused')) 261/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2658.pdf HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2008/n2658.pdf (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff675f940>: Failed to establish a new connection: [Errno 111] Connection refused')) 262/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2659.htm HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2008/n2659.htm (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff690fee0>: Failed to establish a new connection: [Errno 111] Connection refused')) 263/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2660.htm HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2008/n2660.htm (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6768220>: Failed to establish a new connection: [Errno 111] Connection refused')) 264/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2664.htm HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2008/n2664.htm (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6790070>: Failed to establish a new connection: [Errno 111] Connection refused')) 265/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2670.htm HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2008/n2670.htm (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6790cd0>: Failed to establish a new connection: [Errno 111] Connection refused')) 266/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2672.htm HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2008/n2672.htm (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff694eb50>: Failed to establish a new connection: [Errno 111] Connection refused')) 267/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2748.html HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2008/n2748.html (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6786be0>: Failed to establish a new connection: [Errno 111] Connection refused')) 268/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2752.htm HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2008/n2752.htm (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff67863a0>: Failed to establish a new connection: [Errno 111] Connection refused')) 269/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2761.pdf HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2008/n2761.pdf (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff690fc40>: Failed to establish a new connection: [Errno 111] Connection refused')) 270/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2764.pdf HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2008/n2764.pdf (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff690ffa0>: Failed to establish a new connection: [Errno 111] Connection refused')) 271/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2765.pdf HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2008/n2765.pdf (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff67863a0>: Failed to establish a new connection: [Errno 111] Connection refused')) 272/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2773.pdf HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2008/n2773.pdf (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6786ac0>: Failed to establish a new connection: [Errno 111] Connection refused')) 273/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2010/n3050.html HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2010/n3050.html (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff67904f0>: Failed to establish a new connection: [Errno 111] Connection refused')) 274/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2010/n3053.html HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2010/n3053.html (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6790cd0>: Failed to establish a new connection: [Errno 111] Connection refused')) 275/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2010/n3060.pdf HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2010/n3060.pdf (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff76a3700>: Failed to establish a new connection: [Errno 111] Connection refused')) 276/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2010/n3206.htm HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2010/n3206.htm (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff67689a0>: Failed to establish a new connection: [Errno 111] Connection refused')) 277/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2011/n3272.htm HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2011/n3272.htm (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6794370>: Failed to establish a new connection: [Errno 111] Connection refused')) 278/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2011/n3276.pdf HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2011/n3276.pdf (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6768670>: Failed to establish a new connection: [Errno 111] Connection refused')) 279/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2012/n3323.pdf HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2012/n3323.pdf (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6936cd0>: Failed to establish a new connection: [Errno 111] Connection refused')) 280/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2012/n3472.pdf HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2012/n3472.pdf (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff67901f0>: Failed to establish a new connection: [Errno 111] Connection refused')) 281/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2013/n3638.html HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2013/n3638.html (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff67904f0>: Failed to establish a new connection: [Errno 111] Connection refused')) 282/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2013/n3639.html HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2013/n3639.html (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6786ca0>: Failed to establish a new connection: [Errno 111] Connection refused')) 283/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2013/n3653.html HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2013/n3653.html (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6786d30>: Failed to establish a new connection: [Errno 111] Connection refused')) 284/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2013/n3664.html HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2013/n3664.html (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff690f730>: Failed to establish a new connection: [Errno 111] Connection refused')) 285/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2013/n3760.html HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2013/n3760.html (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6794520>: Failed to establish a new connection: [Errno 111] Connection refused')) 286/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2013/n3781.pdf HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2013/n3781.pdf (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6786910>: Failed to establish a new connection: [Errno 111] Connection refused')) 287/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2014/n3889.pdf HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2014/n3889.pdf (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6786640>: Failed to establish a new connection: [Errno 111] Connection refused')) 288/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2014/n3922.html HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2014/n3922.html (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6790f10>: Failed to establish a new connection: [Errno 111] Connection refused')) 289/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2014/n3928.pdf HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2014/n3928.pdf (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6790880>: Failed to establish a new connection: [Errno 111] Connection refused')) 290/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2014/n4051.html HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2014/n4051.html (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff67688b0>: Failed to establish a new connection: [Errno 111] Connection refused')) 291/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2014/n4086.html HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2014/n4086.html (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff67687c0>: Failed to establish a new connection: [Errno 111] Connection refused')) 292/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2014/n4230.html HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2014/n4230.html (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6794460>: Failed to establish a new connection: [Errno 111] Connection refused')) 293/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2014/n4266.html HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2014/n4266.html (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff67685b0>: Failed to establish a new connection: [Errno 111] Connection refused')) 294/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2014/n4267.html HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2014/n4267.html (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6768a60>: Failed to establish a new connection: [Errno 111] Connection refused')) 295/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2014/n4268.html HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2014/n4268.html (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff67904f0>: Failed to establish a new connection: [Errno 111] Connection refused')) 296/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2014/n4295.html HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2014/n4295.html (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6790c70>: Failed to establish a new connection: [Errno 111] Connection refused')) 297/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2015/n4377.pdf HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2015/n4377.pdf (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6786ee0>: Failed to establish a new connection: [Errno 111] Connection refused')) 298/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2015/p0017r1.html HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2015/p0017r1.html (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff67867f0>: Failed to establish a new connection: [Errno 111] Connection refused')) 299/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2015/p0036r0.pdf HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2015/p0036r0.pdf (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff690f5b0>: Failed to establish a new connection: [Errno 111] Connection refused')) 300/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2016/p0018r3.html HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2016/p0018r3.html (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6794ac0>: Failed to establish a new connection: [Errno 111] Connection refused')) 301/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2016/p0138r2.pdf HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2016/p0138r2.pdf (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6786340>: Failed to establish a new connection: [Errno 111] Connection refused')) 302/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2016/p0170r1.pdf HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2016/p0170r1.pdf (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6786100>: Failed to establish a new connection: [Errno 111] Connection refused')) 303/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2016/p0184r0.html HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2016/p0184r0.html (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff694e6d0>: Failed to establish a new connection: [Errno 111] Connection refused')) 304/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2016/p0188r1.pdf HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2016/p0188r1.pdf (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff67902b0>: Failed to establish a new connection: [Errno 111] Connection refused')) 305/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2016/p0189r1.pdf HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2016/p0189r1.pdf (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff67904f0>: Failed to establish a new connection: [Errno 111] Connection refused')) 306/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2016/p0212r1.pdf HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2016/p0212r1.pdf (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff67682e0>: Failed to establish a new connection: [Errno 111] Connection refused')) 307/329: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2016/p0245r1.html HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg21/docs/papers/2016/p0245r1.html (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff67685b0>: Failed to establish a new connection: [Errno 111] Connection refused')) 308/329: https://www.open-std.org/jtc1/sc22/wg9/ HTTPSConnectionPool(host='www.open-std.org', port=443): Max retries exceeded with url: /jtc1/sc22/wg9/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff6794250>: Failed to establish a new connection: [Errno 111] Connection refused')) 309/329: https://www.opencoarrays.org/ HTTPSConnectionPool(host='www.opencoarrays.org', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLCertVerificationError("hostname 'www.opencoarrays.org' doesn't match either of '*.weebly.com', 'weebly.com'"))) 310/329: https://www.openmp.org/mp-documents/OpenMP3.1.pdf <Response [200]> 311/329: https://www.openmp.org/specifications/ <Response [200]> 312/329: https://www.openmp.org/wp-content/uploads/OpenMP4.0.0.pdf <Response [200]> 313/329: https://www.osl.iu.edu/MailArchives/mtl-devel/msg00311.php HTTPSConnectionPool(host='www.osl.iu.edu', port=443): Max retries exceeded with url: /MailArchives/mtl-devel/msg00311.php (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff67680a0>: Failed to establish a new connection: [Errno -2] Name or service not known')) 314/329: https://www.osl.iu.edu/research/mtl/ HTTPSConnectionPool(host='www.osl.iu.edu', port=443): Max retries exceeded with url: /research/mtl/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff67682b0>: Failed to establish a new connection: [Errno -2] Name or service not known')) 315/329: https://www.osl.iu.edu/research/mtl/download.php3 HTTPSConnectionPool(host='www.osl.iu.edu', port=443): Max retries exceeded with url: /research/mtl/download.php3 (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffff67689d0>: Failed to establish a new connection: [Errno -2] Name or service not known')) 316/329: https://www.personal.psu.edu/faculty/h/d/hdk/fortran.html <Response [200]> 317/329: https://www.robertnz.net/cpp_site.html HTTPSConnectionPool(host='www.robertnz.net', port=443): Max retries exceeded with url: /cpp_site.html (Caused by SSLError(SSLCertVerificationError("hostname 'www.robertnz.net' doesn't match either of '*.secure.hostingprod.com', 'secure.hostingprod.com'"))) 318/329: https://www.sigada.org/WG/asiswg/ <Response [200]> 319/329: https://www.sigada.org/ada_letters/jun2004/ravenscar_article.pdf <Response [200]> 320/329: https://www.sigplan.org/Awards/Software/#2014 <Response [200]> 321/329: https://www.spec.org/osg/sdm91/#sdet <Response [200]> 322/329: https://www.stlport.org/ HTTPSConnectionPool(host='www.stlport.org', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError(1, '[SSL: SSLV3_ALERT_HANDSHAKE_FAILURE] sslv3 alert handshake failure (_ssl.c:1123)'))) 323/329: https://www.uclinux.org/pub/uClinux/uclinux-elf-tools/gcc-3/ HTTPSConnectionPool(host='www.uclinux.org', port=443): Max retries exceeded with url: /pub/uClinux/uclinux-elf-tools/gcc-3/ (Caused by ConnectTimeoutError(<urllib3.connection.HTTPSConnection object at 0x7ffff67686a0>, 'Connection to www.uclinux.org timed out. (connect timeout=5)')) 324/329: https://www.unicode.org <Response [200]> 325/329: https://www.unicode.org/reports/tr15/ <Response [200]> 326/329: https://www.velox-project.eu/ <Response [200]> 327/329: https://www.wlandry.net/Projects/FTensor ('Connection aborted.', OSError(0, 'Error')) 328/329: https://www.zlib.net/ <Response [200]> Can use HTTPS for 126 of links: http://awards.acm.org/about/2015-technical-awards http://buildbot.net/ http://citeseer.ist.psu.edu/viewdoc/summary?doi=10.1.1.39.1922 http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.37.7180 http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.50.2235 http://compilerconnection.com http://deuce.doc.wustl.edu/Download.html http://exactcode.com/opensource/openbench/ http://ftp.gwdg.de/pub/linux/troll/qt/source/qt-x11-2.3.0.tar.gz http://ftp.tsukuba.wide.ad.jp/software/gcc/ http://gcc.gnu.org/install/finalinstall.html http://gcc.gnu.org/install/prerequisites.html http://gcc.gnu.org/install/test.html http://gcc.gnu.org/onlinedocs/10.1.0/ http://gcc.gnu.org/onlinedocs/10.2.0/ http://gcc.gnu.org/onlinedocs/4.9.1/ http://gcc.gnu.org/onlinedocs/4.9.2/ http://gcc.gnu.org/onlinedocs/4.9.3/ http://gcc.gnu.org/onlinedocs/4.9.4/ http://gcc.gnu.org/onlinedocs/5.1.0/ http://gcc.gnu.org/onlinedocs/5.2.0/ http://gcc.gnu.org/onlinedocs/5.3.0/ http://gcc.gnu.org/onlinedocs/5.4.0/ http://gcc.gnu.org/onlinedocs/5.5.0/ http://gcc.gnu.org/onlinedocs/6.1.0/ http://gcc.gnu.org/onlinedocs/6.2.0/ http://gcc.gnu.org/onlinedocs/6.3.0/ http://gcc.gnu.org/onlinedocs/6.4.0/ http://gcc.gnu.org/onlinedocs/6.5.0/ http://gcc.gnu.org/onlinedocs/7.1.0/ http://gcc.gnu.org/onlinedocs/7.2.0/ http://gcc.gnu.org/onlinedocs/7.3.0/ http://gcc.gnu.org/onlinedocs/7.4.0/ http://gcc.gnu.org/onlinedocs/7.5.0/ http://gcc.gnu.org/onlinedocs/8.1.0/ http://gcc.gnu.org/onlinedocs/8.2.0/ http://gcc.gnu.org/onlinedocs/8.3.0/ http://gcc.gnu.org/onlinedocs/8.4.0/ http://gcc.gnu.org/onlinedocs/9.1.0/ http://gcc.gnu.org/onlinedocs/9.2.0/ http://gcc.gnu.org/onlinedocs/9.3.0/ http://gcc.gnu.org/onlinedocs/gcc-10.1.0/gcc/Contributors.html http://gcc.gnu.org/onlinedocs/gcc-8.1.0/gcc/Contributors.html http://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Contributors.html http://gcc.gnu.org/onlinedocs/gcc/Contributors.html http://gcc.gnu.org/wiki/vtv http://gccupc.org http://gccupc.org/gnu-upc-info/gnu-upc-compile-options http://gccupc.org/gnu-upc-info/gnu-upc-install-from-source-code http://git.savannah.gnu.org/cgit/gnulib.git/plain/build-aux/config.rpath http://git.savannah.gnu.org/cgit/gnulib.git/plain/build-aux/move-if-change http://git.savannah.gnu.org/cgit/gnulib.git/plain/build-aux/texinfo.tex http://icps.u-strasbg.fr/pco/locality.htm http://icps.u-strasbg.fr/~pop/DEA_03_Pop.pdf http://legacy.cleanscape.net/stdprod/xtc1750a/resources/mil-std-1750.zip http://mirror.koddos.net/gcc/ http://mirror.linux-ia64.org/gnu/gcc/ http://mirrors.concertpass.com/gcc/ http://nongnu.org/avr-libc/ http://openmp.org/mp-documents/spec30.pdf http://people.freebsd.org/~fenner/cvsweb/ http://publibfp.dhe.ibm.com/epubs/pdf/dz9ar008.pdf http://publibfp.dhe.ibm.com/epubs/pdf/dz9zr011.pdf http://root.cern.ch/root/Version301.html http://savannah.nongnu.org/bugs/?35407 http://starpu.gforge.inria.fr/ http://szeged.github.io/csibe/ http://translationproject.org/domain/cpplib.html http://translationproject.org/domain/gcc.html http://translationproject.org/html/maintainers.html http://translationproject.org/html/welcome.html http://translationproject.org/team/index.html http://validator.w3.org/ http://wg21.link/p0522r0 http://williambader.com/bounds/example.html#download http://www-124.ibm.com/developerworks/oss/cvs/jikes/~checkout~/jacks/jacks.html http://www-cs-faculty.stanford.edu/~knuth/mmix.html http://www.cantrip.org/cpp.html http://www.cs.utexas.edu/users/EWD/ http://www.cs.wustl.edu/~schmidt/ACE.html http://www.cse.iitb.ac.in/grc/ http://www.doc.ic.ac.uk/~phjk/BoundsChecking.html http://www.eclipse.org/ http://www.ecma-international.org/publications/standards/Ecma-335.htm http://www.gccupc.org/ http://www.gnu-pascal.de/gpc/h-index.html http://www.gnu.org http://www.gnu.org/ http://www.gnu.org/gnu/thegnuproject.html http://www.gnu.org/licenses/gcc-exception-faq.html http://www.gnu.org/licenses/gcc-exception.html http://www.gnu.org/philosophy/free-sw.html http://www.gnu.org/prep/ftp.html http://www.gnu.org/prep/standards_toc.html http://www.gnu.org/software/classpath/ http://www.gnu.org/software/classpathx/crypto/crypto.html http://www.gnu.org/software/emacs/ http://www.gnu.org/software/gnats/ http://www.gnu.org/software/kawa/ http://www.gnu.org/software/libc/ http://www.gnu.org/software/libtool/libtool.html http://www.gnu.org/software/texinfo/manual/texinfo/ http://www.google-melange.com/gsoc/org2/google/gsoc2014/gcc http://www.kernel.org http://www.lysator.liu.se/c/rat/title.html http://www.mercurylang.org/download/gcc-backend.html http://www.mpfr.org/ http://www.musl-libc.org http://www.netlib.org/lapack/index.html http://www.netlib.org/lapack/lapack.tgz http://www.netlib.org/misc/intel/ http://www.nongnu.org/avr-libc/ http://www.nongnu.org/freepooma/ http://www.nongnu.org/gm2/ http://www.openmp.org/mp-documents/OpenMP3.1.pdf http://www.openmp.org/specifications/ http://www.openmp.org/wp-content/uploads/OpenMP4.0.0.pdf http://www.personal.psu.edu/faculty/h/d/hdk/fortran.html http://www.sigada.org/WG/asiswg/ http://www.sigada.org/ada_letters/jun2004/ravenscar_article.pdf http://www.sigplan.org/Awards/Software/#2014 http://www.spec.org/osg/sdm91/#sdet http://www.unicode.org http://www.unicode.org/reports/tr15/ http://www.velox-project.eu/ http://www.zlib.net/