diff --git a/CPU-bound.py b/CPU-bound.py new file mode 100644 index 0000000..a349a08 --- /dev/null +++ b/CPU-bound.py @@ -0,0 +1,22 @@ +from hashlib import md5 +from random import choice +import concurrent.futures + + +def miner(n): + while True: + s = "".join([choice("0123456789") for i in range(50)]) + h = md5(s.encode('utf8')).hexdigest() + + if h.endswith("00000"): + return s + ' ' + h + + +def main(): + with concurrent.futures.ProcessPoolExecutor(max_workers=100) as executor: + for token in zip(executor.map(miner, range(5))): + print(token) + + +if __name__ == '__main__': + main() diff --git a/IO-bound.py b/IO-bound.py new file mode 100644 index 0000000..e0fe912 --- /dev/null +++ b/IO-bound.py @@ -0,0 +1,24 @@ +import concurrent.futures +import urllib.request + +URLS = open('res.txt', encoding='utf8').read().split('\n') + + +# Retrieve a single page and report the URL and contents +def load_url(url, timeout): + with urllib.request.urlopen(url, timeout=timeout) as conn: + return conn.read() + + +# We can use a with statement to ensure threads are cleaned up promptly +with concurrent.futures.ThreadPoolExecutor(max_workers=100) as executor: + # Start the load operations and mark each future with its URL + future_to_url = {executor.submit(load_url, url, 60): url for url in URLS} + for future in concurrent.futures.as_completed(future_to_url): + url = future_to_url[future] + try: + data = future.result() + except Exception as exc: + print('%r generated an exception: %s' % (url, exc)) + else: + print('%r page is %d bytes' % (url, len(data))) diff --git a/REPORT.md b/REPORT.md new file mode 100644 index 0000000..71f7234 --- /dev/null +++ b/REPORT.md @@ -0,0 +1,54 @@ +# IO-bound +## Синхронная проверка ссылок: +### Время выполнения +![img.png](Screens/io_time1.png) +### Диспетчер задач +![img.png](Screens/io_tm1.png) +## Используя ThreadPoolExecutor: +## Воркер 5: +### Время +![img.png](Screens/io_time2.png) +### Диспетчер +![img.png](Screens/io_tm2.png) +## Воркер 10: +### Время +![img.png](Screens/io_time3.png) +### Диспетчер +![img.png](Screens/io_tm3.png) +## Воркер 100: +### Время +![img.png](Screens/io_time4.png) +### Диспетчер +![img.png](Screens/io_tm4.png) +Загрузка памяти почти не отличается, загрузка ЦП совсем немного увеличивается. Но время выполнения существенно сокращается +# CPU-bound +Замер будет на поиске 5-и монет +## Скорость генерации на 1 ядре +### Время +![img.png](Screens/cpu_time1.png) +### Диспетчер +![img.png](Screens/cpu_tm1.png) +## Используя ProcessPoolExecutor: +## Воркер 2: +### Время +![img.png](Screens/cpu_time2.png) +### Диспетчер +![img.png](Screens/cpu_tm2.png) +## Воркер 4: +### Время +![img.png](Screens/cpu_time3.png) +### Диспетчер +![img.png](Screens/cpu_tm3.png) +## Воркер 5: +### Время +![img.png](Screens/cpu_time4.png) +### Диспетчер +![img.png](Screens/cpu_tm4.png) +## Воркер 10: +### Время +![img.png](Screens/cpu_time5.png) +### Диспетчер +![img.png](Screens/cpu_tm5.png) +## Воркер 100: +![img.png](Screens/cpu_time6.png) +Сильно меняется загрузка процессора, время выполнения уменьшается с увеличением количества воркеров. Максимальное количество воркеров - 61 из-за особенностей ОС. \ No newline at end of file diff --git a/Screens/cpu_time1.png b/Screens/cpu_time1.png new file mode 100644 index 0000000..ded8755 Binary files /dev/null and b/Screens/cpu_time1.png differ diff --git a/Screens/cpu_time2.png b/Screens/cpu_time2.png new file mode 100644 index 0000000..42243e1 Binary files /dev/null and b/Screens/cpu_time2.png differ diff --git a/Screens/cpu_time3.png b/Screens/cpu_time3.png new file mode 100644 index 0000000..c8e4c31 Binary files /dev/null and b/Screens/cpu_time3.png differ diff --git a/Screens/cpu_time4.png b/Screens/cpu_time4.png new file mode 100644 index 0000000..e1785c7 Binary files /dev/null and b/Screens/cpu_time4.png differ diff --git a/Screens/cpu_time5.png b/Screens/cpu_time5.png new file mode 100644 index 0000000..deb273e Binary files /dev/null and b/Screens/cpu_time5.png differ diff --git a/Screens/cpu_time6.png b/Screens/cpu_time6.png new file mode 100644 index 0000000..5ec1b6a Binary files /dev/null and b/Screens/cpu_time6.png differ diff --git a/Screens/cpu_tm1.png b/Screens/cpu_tm1.png new file mode 100644 index 0000000..17bc6a3 Binary files /dev/null and b/Screens/cpu_tm1.png differ diff --git a/Screens/cpu_tm2.png b/Screens/cpu_tm2.png new file mode 100644 index 0000000..90be20e Binary files /dev/null and b/Screens/cpu_tm2.png differ diff --git a/Screens/cpu_tm3.png b/Screens/cpu_tm3.png new file mode 100644 index 0000000..7eeb959 Binary files /dev/null and b/Screens/cpu_tm3.png differ diff --git a/Screens/cpu_tm4.png b/Screens/cpu_tm4.png new file mode 100644 index 0000000..51c598e Binary files /dev/null and b/Screens/cpu_tm4.png differ diff --git a/Screens/cpu_tm5.png b/Screens/cpu_tm5.png new file mode 100644 index 0000000..0e5427c Binary files /dev/null and b/Screens/cpu_tm5.png differ diff --git a/Screens/io_time1.png b/Screens/io_time1.png new file mode 100644 index 0000000..f633b7e Binary files /dev/null and b/Screens/io_time1.png differ diff --git a/Screens/io_time2.png b/Screens/io_time2.png new file mode 100644 index 0000000..3d8f85c Binary files /dev/null and b/Screens/io_time2.png differ diff --git a/Screens/io_time3.png b/Screens/io_time3.png new file mode 100644 index 0000000..bdabd4c Binary files /dev/null and b/Screens/io_time3.png differ diff --git a/Screens/io_time4.png b/Screens/io_time4.png new file mode 100644 index 0000000..6bf01bb Binary files /dev/null and b/Screens/io_time4.png differ diff --git a/Screens/io_tm1.png b/Screens/io_tm1.png new file mode 100644 index 0000000..3e6602d Binary files /dev/null and b/Screens/io_tm1.png differ diff --git a/Screens/io_tm2.png b/Screens/io_tm2.png new file mode 100644 index 0000000..1c4ec90 Binary files /dev/null and b/Screens/io_tm2.png differ diff --git a/Screens/io_tm3.png b/Screens/io_tm3.png new file mode 100644 index 0000000..ed594d9 Binary files /dev/null and b/Screens/io_tm3.png differ diff --git a/Screens/io_tm4.png b/Screens/io_tm4.png new file mode 100644 index 0000000..0212733 Binary files /dev/null and b/Screens/io_tm4.png differ diff --git a/res.txt b/res.txt new file mode 100644 index 0000000..56a73c2 --- /dev/null +++ b/res.txt @@ -0,0 +1,985 @@ +https://www.openstreetmap.org/?mlat=53.41611&mlon=36.33056&zoom=12 +https://www.openstreetmap.org/?mlat=53.41611&mlon=36.33056&zoom=12 +https://classinform.ru/okato/search.php?str=54236831030 +https://classinform.ru/oktmo/search.php?str=54636431226 +http://orel.gks.ru/wps/wcm/connect/rosstat_ts/orel/resources/be7830004129485cb23df7367ccd0f13/pub-01-07.pdf +http://www.webcitation.org/6N3pNF33v +http://mcradm.orel.ru/content/files/%D0%A1%D0%B0%D0%B9%D1%82%20%D0%90%D0%B4%D0%BC%D0%B8%D0%BD%D0%B8%D1%81%D1%82%D1%80%D0%B0%D1%86%D0%B8%D0%B8%20%D0%9C%D1%86%D0%B5%D0%BD%D1%81%D0%BA%D0%BE%D0%B3%D0%BE%20%D1%80%D0%B0%D0%B9%D0%BE%D0%BD%D0%B0/%D0%90%D1%80%D1%85%D0%B8%D1%82%D0%B5%D0%BA%D1%82%D1%83%D1%80%D0%B0%20%D0%B8%20%D0%B3%D1%80%D0%B0%D0%B4%D0%BE%D1%81%D1%82%D1%80%D0%BE%D0%B5%D0%BD%D0%B8%D0%B5/%D0%9C%D0%B0%D1%82%D0%B5%D1%80%D0%B8%D0%B0%D0%BB%D1%8B%20%D0%BF%D0%BE%20%D0%BE%D0%B1%D0%BE%D1%81%D0%BD%D0%BE%D0%B2%D0%B0%D0%BD%D0%B8%D1%8E%20%D0%BF%D1%80%D0%BE%D0%B5%D0%BA%D1%82%D0%B0%20%D1%81%D1%85%D0%B5%D0%BC%D1%8B%20%D1%82%D0%B5%D1%80%D1%80%D0%B8%D1%82%D0%BE%D1%80%D0%B8%D0%B0%D0%BB%D1%8C%D0%BD%D0%BE%D0%B3%D0%BE%20%D0%BF%D0%BB%D0%B0%D0%BD%D0%B8%D1%80%D0%BE%D0%B2%D0%B0%D0%BD%D0%B8%D1%8F.pdf +http://www.consultant.ru/document/cons_doc_LAW_114656/b2707989c276b5a188e63bc41e7bcbcc18723de8/ +http://lingvarium.org/russia/BD/02c_Orlovskaja.xls +https://classinform.ru/okato/search.php?str=36238804 +https://rosstat.gov.ru/storage/mediabank/MZmdFJyI/chisl_МО_Site_01-01-2021.xlsx +https://web.archive.org/web/20210502131349/https://rosstat.gov.ru/storage/mediabank/MZmdFJyI/chisl_МО_Site_01-01-2021.xlsx +https://archive.org/stream/boletnrealacad0809realuoft#page/408/mode/2up +http://www.peacekeeper.ru/index.php?id=16 +http://www.c-r.org/our-work/accord/nagorny-karabakh/chronology.php +https://www.webcitation.org/6I4bofGDI?url=http://www.c-r.org/accord-article/chronology-accord-nagorny-karabakh +http://www.ca-c.org/dataeng/books/book-1/Abaso_Khachatrian.pdf +http://news.bbc.co.uk/hi/russian/news/newsid_3681000/3681079.stm +http://www.csr.ir/departments.aspx?lng=en&abtid=07&depid=74&semid=989 +https://web.archive.org/web/20110722014529/http://www.csr.ir/departments.aspx?lng=en&abtid=07&depid=74&semid=989 +http://www.rferl.org/content/article/1097022.html +https://books.google.com/books?id=ZeP7OZZswtcC&printsec=frontcover#v=onepage&q&f=false +https://books.google.com/books?id=ZeP7OZZswtcC&printsec=frontcover#v=onepage&q&f=false +http://armenia.kavkaz-uzel.ru/articles/159383/ +https://web.archive.org/web/20120306095558/http://armenia.kavkaz-uzel.ru/articles/159383/ +https://www.un.org/en/sc/repertoire/89-92/CHAPTER%208/EUROPE/item%2019_Nagorny-Karabakh.pdf +http://eng.globalaffairs.ru/numbers/16/1044.html +https://web.archive.org/web/20081202180412/http://eng.globalaffairs.ru/numbers/16/1044.html +https://portugal.mid.ru/rus/news_10.html +https://web.archive.org/web/20100529121728/https://portugal.mid.ru/rus/news_10.html +https://books.google.com/books?id=BrM_Ms9OVsEC&pg=PA207&dq=Tehran+Communique+1992+Karabakh&hl=en&ei=eObiS-GfEIL58AbI-aD5DA&sa=X&oi=book_result&ct=result&resnum=3&ved=0CDoQ6AEwAjgK#v=onepage&q&f=false +https://peacemaker.un.org/node/475 +https://peacemaker.un.org/document-search?keys=&field_padate_value%5Bvalue%5D%5Bdate%5D=&field_pacountry_tid=Armenia&field_paconflict_tid%5B%5D=2 +https://www.openstreetmap.org/?mlat=39.10000&mlon=-79.57000&zoom=11 +https://www.openstreetmap.org/?mlat=39.10000&mlon=-79.57000&zoom=11 +http://www.tuckercounty.wv.gov/ +http://factfinder.census.gov/ +http://www.webcitation.org/66qCfKPaX +http://www.tuckercounty.wv.gov/ +https://web.archive.org/web/20100220110024/http://www.wvculture.org/history/counties/tucker.html +https://footballfacts.ru/issue/11114-moskovskayafutbolnayaliga191019222eizd +https://footballfacts.ru/issue/11114-moskovskayafutbolnayaliga191019222eizd +https://footballfacts.ru/issue/11114-moskovskayafutbolnayaliga191019222eizd +https://www.prlib.ru/item/686729 +https://footballfacts.ru/issue/11114-moskovskayafutbolnayaliga191019222eizd +https://footballfacts.ru/issue/11114-moskovskayafutbolnayaliga191019222eizd +https://footballfacts.ru/issue/11114-moskovskayafutbolnayaliga191019222eizd +https://footballfacts.ru/issue/11114-moskovskayafutbolnayaliga191019222eizd +https://footballfacts.ru/tournament/27024-chempionatmoskvy1912 +https://vk.com/wall-57170415?q=1912%20%D0%9A%D1%83%D0%B1%D0%BE%D0%BA%20%D0%A4%D1%83%D0%BB%D1%8C%D0%B4%D0%B0%20 +https://www.openstreetmap.org/?mlat=52.00000&mlon=28.50000&zoom=15 +https://www.openstreetmap.org/?mlat=52.00000&mlon=28.50000&zoom=15 +http://brestobl.narod.ru/priroda/poles/index.html +https://web.archive.org/web/20070915033548/http://brestobl.narod.ru/priroda/poles/index.html +http://cursorinfo.co.il/news/pressa/2008/08/31/maar_razv/print/ +http://www.vladimirlazaris.com/archives%5Cdelo.htm +https://www.webcitation.org/614XKPn1U?url=http://www.vladimirlazaris.com/archives%5Cdelo.htm +https://books.google.com/books?id=2OrWmi-zXcAC +https://web.archive.org/web/20151117194422/http://cursorinfo.co.il/news/pressa/2008/08/31/maar_razv/ +http://www.mideastweb.org/lavon.htm +http://www.jewishvirtuallibrary.org/jsource/History/lavon.html +http://shulenina.narod.ru/Polit/Bengurion/12.html +https://web.archive.org/web/20070616122549/http://mnenia.zahav.ru/ArticlePage.aspx?articleID=4396 +https://eleven.co.il/article/11749 +http://www.berkovich-zametki.com/2014/Zametki/Nomer1/Ontario1.php +http://www.protectedplanet.net/country/BT +http://enc-dic.com/colier/B/6.html +http://www.triptobhutan.com/natural_heritage.htm +https://web.archive.org/web/20140402181444/http://triptobhutan.com/natural_heritage.htm +http://www.dofps.gov.bt/sites/default/files/Wangchuck%20Centennial%20Park.pdf +https://web.archive.org/web/20150923215659/http://www.dofps.gov.bt/sites/default/files/Wangchuck%20Centennial%20Park.pdf +https://web.archive.org/web/20140402181444/http://triptobhutan.com/natural_heritage.htm +https://web.archive.org/web/20101012171001/http://www.wdpa.org/MultiSelect.aspx +https://web.archive.org/web/20100507183209/http://www.moa.gov.bt/moa/main/index.php +http://culture.pl/pl/tworca/mieczyslaw-drobner +https://www.openstreetmap.org/?mlat=48.0927194&mlon=20.3061889&zoom=12 +https://www.openstreetmap.org/?mlat=48.0927194&mlon=20.3061889&zoom=12 +http://www.balaton.hu +http://www.ksh.hu/apps/shop.kiadvany?p_kiadvany_id=81322&p_lang=EN +http://www.nepszamlalas.hu/hun/kotetek/06/10/data/tabhun/4/prnt01_11_0.html +https://www.webcitation.org/5msg6aoE1?url=http://www.nepszamlalas.hu/hun/kotetek/06/10/data/tabhun/4/prnt01_11_0.html +http://www.ksh.hu/apps/shop.kiadvany?p_kiadvany_id=15906&p_lang=EN +http://www.ksh.hu/apps/shop.kiadvany?p_kiadvany_id=35528&p_lang=EN +http://balatonkozseg.hu/index.php?option=com_frontpage&Itemid=1 +https://www.openstreetmap.org/?mlat=51.779312&mlon=-10.036526&zoom=12 +https://www.openstreetmap.org/?mlat=51.779312&mlon=-10.036526&zoom=12 +http://logainm.ie/1166694.aspx +http://xn--p1acf.xn----7sbacsfsccnbdnzsqis3h5a6ivbm.xn--p1ai/index.php/prosmotr/2-statya/418-fakhreev-gabdelkhaj-khaj-gi-madievich +https://web.archive.org/web/20140301073942/http://www.sterlibash.ru/peaple/nar_art.html +http://ufa-gid.com/encyclopedia/fahreev.html +https://www.openstreetmap.org/?mlat=52.47444&mlon=31.02222&zoom=17 +https://www.itis.gov/servlet/SingleRpt/SingleRpt?search_topic=TSN&search_value=68422 +https://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?mode=Info&id=6381 +https://obis.org/taxon/2036 +http://www.zin.ru/projects/zooint_r/zi2.htm +https://snl.no/fåbørstemark +https://bigenc.ru/text/2169912 +https://www.britannica.com/animal/oligochaete +https://www.gbif.org/species/8166676 +https://www.inaturalist.org/taxa/84842 +https://www.inaturalist.org/taxa/333586 +https://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?mode=Info&id=6381 +https://www.irmng.org/aphia.php?p=taxdetails&id=1213 +https://www.itis.gov/servlet/SingleRpt/SingleRpt?search_topic=TSN&search_value=68422 +https://www.marinespecies.org/aphia.php?p=taxdetails&id=2036 +http://catalogo.bne.es/uhtbin/authoritybrowse.cgi?action=display&authority_id=XX533330 +https://catalogue.bnf.fr/ark:/12148/cb11938304m +https://id.loc.gov/authorities/sh85094601 +https://academic.microsoft.com/#/detail/2908625808 +http://prime.md +http://www.api.md/upload/editor/PDFuri/profilprime.pdf +http://protv.md/stiri/actualitate/vlad-plahotniuc-oficial-proprietar-a-patru-televiziuni-si-trei---1235371.html +http://independent.md/moldtelecom-rearanjat-canalele-grila-tv-pe-primele-4-pozitii-sunt-cele-ale-lui-plahotniuc/#.VZQ7IPCrFgA +http://adevarul.ro/moldova/actualitate/cum-moldtelecom-rearanjat-lista-canalelor-tv-posturile-holdingul-plahotniuc-primele-patru-pozitii-1_53fc2f770d133766a8970943/index.html +http://www.jurnaltv.md/ro/news/2014/8/26/canalele-lui-plahotniuc-favorizate-10053984/ +http://adevarul.ro/moldova/actualitate/patru-posturi-tv-amendate-cca-nerespectarea-codului-audiovizualului-campania-electorala-1_55719054cfbe376e35f50a9c/index.html +http://www.publika.md/cine-sunt-proprietarii-principalelor-grupuri-media-din-moldova-foto-document_2448531.html +http://aoapollo.md/?page_id=233 +http://web.archive.org/web/20170912012303/http://aoapollo.md/?page_id=233 +https://www.rise.md/articol/plahotniucleaks/ +http://prime.md/ +https://www.imdb.com/title/tt1563742/ +https://www.overboard.movie/ +https://www.boxofficemojo.com/title/tt1563742/?ref_=bo_rl_ti +https://www.csfd.cz/film/530752 +https://variety.com/2017/film/news/anna-faris-eugenio-derbez-overboard-release-date-1202501780/ +https://screenrant.com/overboard-remake-release-date-2018/ +https://twitter.com/OverboardMovie +https://www.allocine.fr/film/fichefilm_gen_cfilm=254367.html +https://www.boxofficemojo.com/movies/?id=overboard2018.htm +https://www.csfd.cz/film/530752 +https://www.filmaffinity.com/en/film645323.html +https://www.imdb.com/title/tt1563742 +https://www.rottentomatoes.com/m/overboard_2018 +http://catalogo.bne.es/uhtbin/authoritybrowse.cgi?action=display&authority_id=XX5864919 +https://www.openstreetmap.org/?mlat=56.979610&mlon=47.846545&zoom=12 +https://www.openstreetmap.org/?mlat=56.979610&mlon=47.846545&zoom=12 +https://classinform.ru/okato/search.php?str=88240820011 +https://classinform.ru/oktmo/search.php?str=88640420102 +http://statmari.gks.ru/VPN2010/infobull/Forms/web.aspx +https://fgistp.economy.gov.ru/ais/of1?id=60B124D2199D7943A2921E3617C0AB61 +https://www.geonames.org/6198336/blinovo.html +http://www.consultant.ru/document/cons_doc_LAW_114656/b2707989c276b5a188e63bc41e7bcbcc18723de8/ +http://lingvarium.org/russia/BD/02c_Marii-El_new.xls +http://ushistory.ru/essay/223-molodoj-zagovorschik-ljuis-pauell.html +https://www.sc.com/hk +https://www.sc.com/global/av/hk-scbhk-press-release-2016.pdf +http://www.hkma.gov.hk/media/eng/publication-and-research/annual-report/2015/ar2015_E.pdf +http://www.standardchartered.com.hk/news/2011/press_20110110.pdf +http://web.archive.org/web/20110725082026/http://www.standardchartered.com.hk/news/2011/press_20110110.pdf +http://www.thestandard.com.hk/news_detail.aspwe_cat=21&art_id=106904&sid=30866093&con_type=1&d_str=20110111&fc=4 +https://www.forbes.com/2010/06/22/retail-after-the-bell-petsmart-gap-marketnewsvideo.html +https://www.sc.com/global/av/hk-news-media-140729.pdf +https://www.bloomberg.com/research/stocks/private/person.asp?personId=132695476&privcapId=677433 +http://investors.sc.com/common/download/download.cfm?companyid=STANCHAR&fileid=929782&filekey=A9A5EE9F-DCE4-4036-8602-D1CE422CDF79&filename=FY2016_Annual_Report_FINAL2.pdf +https://www.sc.com/hk/investor-relations/_documents/en/report/20050216.pdf +https://web.archive.org/web/20170314152942/https://www.sc.com/hk/investor-relations/_documents/en/report/20050216.pdf +https://www.sc.com/hk/investor-relations/_documents/en/report/20070227.pdf +https://web.archive.org/web/20170314152821/https://www.sc.com/hk/investor-relations/_documents/en/report/20070227.pdf +https://www.sc.com/hk/investor-relations/_documents/en/report/20090303.pdf +https://web.archive.org/web/20170314153817/https://www.sc.com/hk/investor-relations/_documents/en/report/20090303.pdf +https://www.sc.com/hk/investor-relations/_documents/en/report/20110302.pdf +https://web.archive.org/web/20170314153214/https://www.sc.com/hk/investor-relations/_documents/en/report/20110302.pdf +https://www.sc.com/hk/investor-relations/_documents/en/report/2013consolidated_financial_statements.pdf +https://web.archive.org/web/20170314153542/https://www.sc.com/hk/investor-relations/_documents/en/report/2013consolidated_financial_statements.pdf +https://www.sc.com/hk/investor-relations/_documents/en/report/20150304.pdf +https://web.archive.org/web/20170315000600/https://www.sc.com/hk/investor-relations/_documents/en/report/20150304.pdf +http://www.standardchartered.com.hk/ +http://www.manhattancard.com/ +http://footballfacts.ru/clubs/154294-strela-ekaterinburg +https://web.archive.org/web/20140506215158/http://footballfacts.ru/clubs/154294-strela-ekaterinburg +http://wildstat.ru/p/2096/club/URS_Strela_Sverdlovsk +https://www.leopoldina.org/de/mitglieder/mitgliederverzeichnis/member/3569/ +https://badw.de/gelehrtengemeinschaft/verstorbene.html?tx_badwdb_badwperson%5Bper_id%5D=1102&x_badwdb_badwperson%5BpartialType%5D=BADWPersonDetailsPartial&tx_badwdb_badwperson%5BmemberType%5D=&tx_badwdb_badwperson%5Baction%5D=show&tx_badwdb_badwperson%5Bcontroller%5D=BADWPerson&cHash=1d6efdb0a3db41b30bc0a01cd5459b53 +https://www.deutsche-digitale-bibliothek.de/person/gnd/116909943 +https://d-nb.info/gnd/116909943 +http://isni-url.oclc.nl/isni/0000000073746701 +https://id.loc.gov/authorities/n99038193 +http://aut.nkp.cz/kv2012703593 +https://nlg.okfn.gr/resource/authority/record255713 +https://data.bibliotheken.nl/id/thes/p079885918 +https://viaf.org/processed/NUKAT%7Cn2012261161 +https://www.idref.fr/144323672 +https://viaf.org/viaf/54912428 +https://www.worldcat.org/identities/containsVIAFID/54912428 +https://www.openstreetmap.org/?mlat=8.04917&mlon=-75.33722&zoom=12 +https://www.openstreetmap.org/?mlat=8.04917&mlon=-75.33722&zoom=12 +http://www.laapartada-cordoba.gov.co +http://www.laapartada-cordoba.gov.co/MiMunicipio/Paginas/Pasado-Presente-y-Futuro.aspx +https://www.geonames.org/11900984/la-apartada.html +http://www.laapartada-cordoba.gov.co/MiMunicipio/Paginas/Informacion-del-Municipio.aspx +https://www.dane.gov.co/files/investigaciones/poblacion/proyepobla06_20/ProyeccionMunicipios2005_2020.xls +http://www.dane.gov.co/files/censo2005/perfiles/cordoba/la_apartada.pdf +http://www.laapartada-cordoba.gov.co/MiMunicipio/Paginas/Economia.aspx +https://www.openstreetmap.org/?mlat=41.88715&mlon=12.50659&zoom=14 +http://www.scala-santa.com/index.php/en/holy-stairs-en-gb +https://web.archive.org/web/20160126013833/http://www.scala-santa.com/index.php/en/holy-stairs-en-gb +http://www.italyheaven.co.uk/rome/scalasanta.html +https://books.google.ru/books?id=ScgWbdpOY_AC&pg=PA152#v=onepage&q&f=false +https://books.google.ru/books?id=pqFtBAAAQBAJ&pg=PA184#v=onepage&q&f=false +http://www.newadvent.org/cathen/13505a.htm +https://archeoguide.wordpress.com/2016/11/28/la-scala-santa-il-sancta-sanctorum-e-la-cappella-di-san-lorenzo-recentemente-restaurata-il-laterano-residenza-papale-nel-medioevo-sabato-17-dicembre-ore-11-00/ +http://www.sedmitza.ru/text/368611.html +http://www.scala-santa.com/en/restoration-en-gb.html +https://web.archive.org/web/20180922024728/http://www.scala-santa.com/en/restoration-en-gb.html +http://ros-vos.net/news/2018/02/rim +https://www.openstreetmap.org/?mlat=55.74722&mlon=90.36250&zoom=12 +https://www.openstreetmap.org/?mlat=55.74722&mlon=90.36250&zoom=12 +https://classinform.ru/okato/search.php?str=04237837009 +https://classinform.ru/oktmo/search.php?str=04637437146 +http://krasstat.gks.ru/wps/wcm/connect/rosstat_ts/krasstat/resources/20d7bd804eba60379580f5263284271d/1.10.xlsx +http://www.webcitation.org/6cXLrGwbE +http://www.krskstate.ru/msu/terdel/0/doc/1364 +https://web.archive.org/web/20140716234749/http://xn----ctbjabrlljmdonfdpz5e1dva.xn--p1ai/index.php/blog/%D1%81%D1%80%D0%B5%D0%B4%D0%B8-%D0%B1%D0%B5%D1%80%D1%91%D0%B7-%D0%B8-%D0%B1%D0%BE%D0%B3%D0%B0%D1%82%D1%8B%D1%85-%D0%BF%D1%88%D0%B5%D0%BD%D0%B8%D1%87%D0%BD%D1%8B%D1%85-%D0%BF%D0%BE%D0%BB%D0%B5%D0%B9/ +https://www.ipni.org/a/22450-1 +https://viaf.org/viaf/305962464 +https://www.worldcat.org/identities/containsVIAFID/305962464 +https://www.imdb.com/name/nm0000686/ +https://www.ibdb.com/broadway-cast-staff/63778 +https://www.ibdb.com/broadway-cast-staff/63778 +https://www.ibdb.com/broadway-cast-staff/63778 +http://time.com/3048493/christopher-walken-jungle-book/ +https://www.tcdb.com/Person.cfm/pid/101847/ +https://www.allmovie.com/artist/p74206 +https://www.allocine.fr/personne/fichepersonne_gen_cpersonne=1969.html +https://www.csfd.cz/tvurce/149 +https://www.dfi.dk/viden-om-film/filmdatabasen/person/26846 +https://www.discogs.com/artist/436802 +https://www.filmportal.de/bcc07dcb30ac4a0c817c9979c64a0a5e +https://www.ibdb.com/person.php?id=63778 +https://www.imdb.com/name/nm0000686 +https://www.kinopoisk.ru/name/12635/ +https://www.metacritic.com/person/christopher-walken +https://musicbrainz.org/artist/7da6b6bf-6fa5-417f-948f-a29a3940d615 +https://www.rottentomatoes.com/celebrity/christopher_walken +https://www.enciclopedia.cat/enciclopèdies/gran-enciclopèdia-catalana/EC-GEC-22109758.xml +https://snl.no/Christopher_Walken +https://www.britannica.com/biography/Christopher-Walken +https://brockhaus.de/ecs/enzy/article/walken-christopher +https://nndb.com/people/618/000022552 +http://ask.bibsys.no/ask/action/result?cmd=&kilde=biblio&cql=bs.autid+%3D+98071628&feltselect=bs.autid +http://catalogo.bne.es/uhtbin/authoritybrowse.cgi?action=display&authority_id=XX1113314 +https://catalogue.bnf.fr/ark:/12148/cb13900960g +https://www.cobiss.si/scripts/cobiss?command=DISPLAY&base=CONOR&rid=22830179 +https://d-nb.info/gnd/122858034 +http://data.beeldengeluid.nl/gtaa/167818 +http://isni-url.oclc.nl/isni/0000000121421902 +https://id.loc.gov/authorities/n88100657 +http://id.ndl.go.jp/auth/ndlna/00621625 +http://aut.nkp.cz/xx0042005 +https://nla.gov.au/anbd.aut-an35369251 +http://mak.bn.org.pl/cgi-bin/KHW/makwww.exe?BM=01&IM=04&NU=01&WI=A1706420X +https://data.bibliotheken.nl/id/thes/p071436669 +https://viaf.org/processed/NUKAT%7Cn2010088769 +https://www.idref.fr/061128511 +https://viaf.org/viaf/85564897 +https://www.worldcat.org/identities/containsVIAFID/85564897 +http://www.warheroes.ru/hero/hero.asp?Hero_id=18275 +http://history-poltava.org.ua/?p=8982 +http://worldcurling.org/dumfries-scotland-to-stage-2014-world-mixed-doubles-and-world-senior-curling-championships +https://web.archive.org/web/20180228104134/http://www.worldcurling.org/dumfries-scotland-to-stage-2014-world-mixed-doubles-and-world-senior-curling-championships +http://wmdcc2014.curlingevents.com/ +https://web.archive.org/web/20140414081119/http://wmdcc2014.curlingevents.com/ +http://results.worldcurling.org/Championship/Details/495 +http://wmdcc2014.curlingevents.com/teams +https://web.archive.org/web/20140315231728/http://wmdcc2014.curlingevents.com/teams +https://www.youtube.com/playlist?list=PL_Fr_yXnOHvisW_Z3Lf8Aqn2nxeo9DVJJ +https://www.youtube.com/playlist?list=PL_Fr_yXnOHvgLR6_mZTduUZuSokk1baNI +http://www.gaw.ru/html.cgi/txt/publ/igbt/transistor.htm +http://electricalschool.info/spravochnik/poleznoe/778-igbt-tranzistory.html +http://www.inp.nsk.su/~belikov/data/_uploaded/file/Сборник_РЭЛ-11.pdf +http://www.power-e.ru/2010_5_24.php +http://www.gaw.ru/html.cgi/txt/doc/transistor/igbt_semi/index.htm +http://www.ene.ttu.ee/elektriajamid/teadus/tramm/slide0001.html +http://www.ene.ttu.ee/elektriajamid/teadus/tramm/tvm1_tehnilised_andmed.html +http://kazus.ru/articles/220.html +http://www.elcp.ru/index.php?state=izd&i_izd=elcomp&i_num=2000_01&i_art=16 +https://web.archive.org/web/20101119031700/http://lipetsk.lug.ru/projects/igbt/index.html +https://www.openstreetmap.org/?mlat=52.354667&mlon=175.92028&zoom=15 +https://www.openstreetmap.org/?mlat=52.354667&mlon=175.92028&zoom=15 +http://militera.lib.ru/explo/ira/1_03.html +https://archive.today/20200211223637/http://factfinder.census.gov/servlet/DTTable?_bm=y&-context=dt&-ds_name=DEC_2000_SF1_U&-CONTEXT=dt&-mt_name=DEC_2000_SF1_U_P001&-tree_id=4001&-transpose=N&-redoLog=false&-all_geo_types=N&-_caller=geoselect&-geo_id=100$10000US020160001001146&-search_results=100$10000US021500001002007&-format=&-_lang=en&-show_geoid=Y +http://www.olympic.org/uk/athletes/results/search_r_uk.asp +https://web.archive.org/web/20150322165645/http://comdat.w.interia.pl/1896ATH.pdf +http://www.aafla.org/6oic/OfficialReports/1896/1896.pdf +https://web.archive.org/web/20060628160135/http://liber.rsuh.ru/Fulltext/Grece/giro/16-3.htm +http://www.lesbelleslettres.com/recherche/?fa=tags&tag=PLINE%20LE%20JEUNE +http://www.thelatinlibrary.com/pliny.html +http://www.krotov.info/acts/02/01/pliniy.html +http://www.livius.org/pi-pm/pliny/pliny_y.htm +http://lib.ru/POEEAST/PLINIJ_M/ +http://www.vokrugsveta.ru/encyclopedia/index.php?title=%D0%9F%D0%BB%D0%B8%D0%BD%D0%B8%D0%B9_%D0%9C%D0%BB%D0%B0%D0%B4%D1%88%D0%B8%D0%B9 +http://nkvd.memo.ru/index.php/Документ:Составы_троек_в_1937−1938_годах +http://www.alexanderyakovlev.org/almanah/inside/almanah-doc/55752 +http://www.alexanderyakovlev.org/almanah/inside/almanah-intro/1005111 +https://www.e-reading.club/book.php?book=1035694 +https://web.archive.org/web/20121018041752/http://www.knowbysight.info/NNN/06027.asp +http://www.alexanderyakovlev.org/almanah/almanah-dict-bio/1005822/12 +http://marktreview.net/2008/rukovodil-nashei-oblastyu-v-epokhu-sozidaniya +https://provladimir.ru/2014/03/13/ponomarev-mihail-aleksandrovich/ +http://vladimirskaya-rus.ru/region/object-56107.html +http://photo.rgakfd.ru/showObject.do?object=1806633888 +http://www.knowbysight.info/PPP/05479.asp +http://az-libr.ru/index.htm?Persons&000/Src/0004/a3cbf7a6 +http://vladimironline.ru/society/id_22852/ +http://www.latribunedelart.com/le-nouveau-le-nain-presente-par-le-cabinet-turquin +https://culturebox.francetvinfo.fr/arts/peinture/decouverte-d-un-tres-beau-tableau-inedit-des-freres-le-nain-270571 +https://usaartnews.com/art-market/rediscovered-painting-by-the-le-nain-brothers-goes-to-auction-in-france +http://www.auctionlab.news/geante-decouverte-dun-tableau-freres-nain/ +http://www.alienor.org/collections-des-musees/fiche-objet-66011-tableau-l-enfant-jesus-a-genoux-devant-les-instruments-de-la-passion-titre-factice +http://www.lepoint.fr/culture/decouverte-d-une-toile-inedite-des-freres-le-nain-16-03-2018-2203017_3.php +http://www.bilan.ch/etienne-dumont/courants-dart/peinture-ancienne-un-nain-reapparait-miracle-vendee +https://www.france-pittoresque.com/spip.php?article14833 +https://books.google.ru/books?id=RHk2sXaapk0C&pg=PA208&lpg=PA208&dq=J%C3%A9sus+enfant+agenouill%C3%A9+devant+les+instruments+de+la+Passion&source=bl&ots=w3zyKMPb5N&sig=jhU6pylTnnkB7i3Uyp-naH8f5eI&hl=ru&sa=X&ved=0ahUKEwi4j7eiuoraAhVMK1AKHXbADvUQ6AEIVzAM#v=onepage&q=J%C3%A9sus%20enfant%20agenouill%C3%A9%20devant%20les%20instruments%20de%20la%20Passion&f=false +https://lequotidiendelart.com/articles/12096-le-louvre-laissera-t-il-echapper-ce-magistral-le-nain.html +http://www.lefigaro.fr/arts-expositions/2018/03/16/03015-20180316ARTFIG00233-une-toile-inedite-des-freres-le-nain-decouverte-chez-une-septuagenaire.php +https://www.ouest-france.fr/culture/arts/une-toile-inedite-des-freres-le-nain-sera-vendue-le-10-juin-5625876 +http://www.epochtimes.fr/vendee-chef-doeuvre-inestimable-17e-siecle-a-ete-decouvert-hasard-chez-dame-agee-230088.html +https://senate.universityofcalifornia.edu/_files/inmemoriam/html/clayfelker.html +https://web.archive.org/web/20181205193402/https://senate.universityofcalifornia.edu/_files/inmemoriam/html/clayfelker.html +https://www.nytimes.com/2008/07/02/business/media/02felker.html +https://web.archive.org/web/20070609222139/http://www.dukemagazine.duke.edu/alumni/dm6/master_txt.html +https://www.britannica.com/biography/Clay-Schuette-Felker +https://web.archive.org/web/20181205194249/https://www.britannica.com/biography/Clay-Schuette-Felker +https://www.telegraph.co.uk/news/obituaries/2276703/Clay-Felker.html +https://web.archive.org/web/20181205193736/https://www.telegraph.co.uk/news/obituaries/2276703/Clay-Felker.html +https://www.nytimes.com/1962/10/07/archives/pamela-tiffin-actress-is-wed-to-clay-felker.html +https://www.imdb.com/name/nm2494049/bio +https://web.archive.org/web/20100115094836/http://www.imdb.com/name/nm2494049/bio +https://nymag.com/nymetro/news/anniversary/35th/n_8608/ +https://www.britannica.com/biography/Clay-Schuette-Felker +https://d-nb.info/gnd/115317149X +http://isni-url.oclc.nl/isni/0000000022420170 +https://id.loc.gov/authorities/n00041042 +https://viaf.org/viaf/16002412 +https://www.worldcat.org/identities/containsVIAFID/16002412 +http://larrycoryell.net/ +http://www.larrycoryell.net +http://www.npr.org/sections/therecord/2017/02/20/516245069/guitarist-larry-coryell-godfather-of-fusion-dies-at-73 +https://mjf-database.epfl.ch/public +http://www.mineral.ru/News/37486.html +http://english.vietnamnet.vn/biz/2005/09/485812/ +http://www.mineral.ru/Facts/world/116/137/index.html +http://voznesensk.mk.gov.ua/ua/Prominentpeople/1336386078/ +https://www.openstreetmap.org/?mlat=49.01889&mlon=33.23750&zoom=13 +https://www.openstreetmap.org/?mlat=49.01889&mlon=33.23750&zoom=13 +http://zakon2.rada.gov.ua/laws/show/1353-19 +https://igra.tnt-online.ru/ +https://www.imdb.com/title/tt15516706// +https://rg.ru/2021/11/02/shou-igra-telekanala-tnt-priostanovleno-iz-za-koronavirusa.html +https://igra.tnt-online.ru/ +https://e-gzt.ru/karina-osmonova-biografiya-lichnaya-zhizn-pesni-naczionalnost-foto-v-kupalnike/ +https://orda.kz/igra-tnt-izobrjol-kvn/ +https://click-or-die.ru/2021/09/kvn-mozhet-vydohnut-kak-zriteli-oczenili-shou-igra-ot-tnt/ +https://www.kp.ru/daily/28340/4486243/ +https://meduza.io/feature/2021/10/05/deputaty-sobralis-zhalovatsya-v-prokuraturu-na-potseluy-dvuh-komikov-v-shou-igra-na-tnt-shtosh-samoe-vremya-rasskazat-o-nem +https://www.kp.ru/daily/28337/4483094/ +https://meduza.io/news/2021/10/04/tnt-pokazal-potseluy-dvuh-muzhchin-v-yumoristicheskom-shou-igra-deputaty-gosdumy-poobeschali-obratitsya-v-prokuraturu +https://www.openstreetmap.org/?mlat=23.349&mlon=-12.933&zoom=6 +https://web.archive.org/web/20070218192806/http://www.minurso.unlb.org/ceasefire.htm +https://web.archive.org/web/20070218192806/http://www.minurso.unlb.org/ceasefire.htm +http://www.nrc.no/arch/_img/9258989.pdf +http://www.un.org/Depts/dpko/missions/minurso/ +http://www.map.ma/eng/sections/politics/polisario_tifariti_f/view +http://www.map.ma/eng/sections/politics/morocco_brings_to_un/view +http://www.icbl.org/lm/2006/western_sahara.html#fn16 +http://www.elpais.com/articulo/sociedad/Vivir/nubes/elpepusoc/20101218elpepusoc_1/Tes +http://www.arso.org/bhatia2001.htm +http://www.newint.org/issue297/wall.html +http://www.palinstravels.co.uk/book-2056 +http://www.arso.org/bhatia2001.htm +http://www.un.org/spanish/Depts/dpko/minurso/MINURSO%5B1%5D.pdf +http://www.palinstravels.co.uk/photogallery.php?offset=10&photobook=1&series=12 +http://www.guardian.co.uk/Archive/Article/0,4273,4132213,00.html +http://www.newint.org/issue297/wall.html +http://www.tobysavage.co.uk/Article%20texts/4x4%20mag%20WS%20article.html +https://web.archive.org/web/20070311042705/http://www.tobysavage.co.uk/Article%20texts/4x4%20mag%20WS%20article.html +http://www.palinstravels.co.uk/book-2056 +http://www.spsrasd.info/sps-e270206.html +http://daccessdds.un.org/doc/UNDOC/GEN/N06/310/51/PDF/N0631051.pdf?OpenElement +https://web.archive.org/web/20081009004741/http://daccessdds.un.org/doc/UNDOC/GEN/N06/310/51/PDF/N0631051.pdf?OpenElement +http://daccessdds.un.org/doc/UNDOC/GEN/N06/310/51/PDF/N0631051.pdf?OpenElement +https://web.archive.org/web/20081009004741/http://daccessdds.un.org/doc/UNDOC/GEN/N06/310/51/PDF/N0631051.pdf?OpenElement +http://www.un.org/Depts/Cartographic/map/dpko/minurso.pdf +http://rggu-bulletin.rggu.ru/binary/object_55.1281964207.59559.pdf +http://bse2.ru/book_view.jsp?idn=030292&page=544&format=djvu +https://web.archive.org/web/20150928085505/http://bse2.ru/book_view.jsp?idn=030292&page=544&format=djvu +http://interpretive.ru/dictionary/1147/word/minos +http://enc-dic.com/enc_big/Minos-37261.html +http://www.krugosvet.ru/enc/kultura_i_obrazovanie/religiya/MINOS.html +http://www.sno.pro1.ru/lib/graves/88-93/88.htm +http://terme.ru/dictionary/1114/word/minos +http://www.pravenc.ru/text/63714.html +http://annals.xlegio.ru/greece/molchan/index.htm +https://web.archive.org/web/20081012194138/http://annals.xlegio.ru/greece/molchan/index.htm +https://www.giantbomb.com/wd/3005-30556/ +https://snl.no/Minos +https://bigenc.ru/text/2216277 +https://www.krugosvet.ru/enc/kultura_i_obrazovanie/religiya/MINOS.html +https://www.britannica.com/topic/Minos +https://brockhaus.de/ecs/enzy/article/minos-griechische-mythologie +https://www.treccani.it/enciclopedia/minosse +https://www.universalis.fr/encyclopedie/minos/ +https://catalogue.bnf.fr/ark:/12148/cb12373987h +https://d-nb.info/gnd/119146487 +https://id.loc.gov/authorities/nb2020000354 +https://www.idref.fr/032776217 +https://viaf.org/viaf/219246758 +https://viaf.org/viaf/44151776797818012116 +https://viaf.org/viaf/13157882967160442381 +https://viaf.org/viaf/1239159234610403372214 +https://www.worldcat.org/identities/containsVIAFID/219246758 +https://www.worldcat.org/identities/containsVIAFID/44151776797818012116 +https://www.worldcat.org/identities/containsVIAFID/13157882967160442381 +https://www.worldcat.org/identities/containsVIAFID/1239159234610403372214 +https://www.openstreetmap.org/?mlat=-3.96667&mlon=29.43333&zoom=6 +https://www.openstreetmap.org/?mlat=-3.96667&mlon=29.43333&zoom=6 +http://www.geohive.com/cntry/burundi.aspx +https://www.webcitation.org/6GDdc6M48?url=http://www.geohive.com/cntry/burundi.aspx +http://www.statoids.com/ubi.html +https://www.365chess.com/tournaments/Mar_del_Plata_1928/27938 +http://apps.who.int/classifications/icd10/browse/2016/en#/H53.2 +http://www.icd9data.com/getICD9Code.ashx?icd9=368.2 +http://www.diseasesdatabase.com/ddb31225.htm +http://www.emedicine.com/oph/topic191.htm +https://meshb.nlm.nih.gov/record/ui?ui=D004172 +https://dx.doi.org/10.1055%2Fs-2007-979682 +https://dx.doi.org/10.1097%2F01.nrl.0000231927.93645.34 +http://www.focusillusion.com/Instructions/ +http://www.merck.com/mmpe/sec09/ch098/ch098e.html +https://dx.doi.org/10.1016%2Fj.ophtha.2009.06.027 +http://www.rusmedserv.com/complications/gl7.html +http://www.rusmedserv.com/complications/ +https://dx.doi.org/10.1055%2Fs-2007-979680 +https://dx.doi.org/10.1016%2Fj.optm.2008.01.003 +https://dx.doi.org/10.1007%2Fs00347-015-0217-1 +http://www.convergenceinsufficiency.org +http://www.strabismus.org/double_vision.html +http://www.chirurgie-portal.de/ophthalmologie/erkr/ds/doppeltsehen.html +http://www.internationalorthoptics.org +http://www.lazyeye.org +http://www.strabismus.org/surgery_crossed_eyes.html +http://www.braininjuries.org +http://www.ecureme.com/emyhealth/data/Diplopia.asp +http://www.emedicine.com/oph/topic191.htm +http://www.augenarzt-gruber.at/doppelbilder.html +http://www.vision3d.com/stereo.html +http://www.visiontherapy.org +http://www.VisionSimulations.com/ +http://www.gpnotebook.co.uk/simplepage.cfm?ID=751828994 +https://www.enciclopedia.cat/enciclopèdies/gran-enciclopèdia-catalana/EC-GEC-0099224.xml +https://bigenc.ru/text/1957739 +https://www.britannica.com/science/double-vision-physiology +http://mak.bn.org.pl/cgi-bin/KHW/makwww.exe?BM=1&NU=1&IM=4&WI=9810634650205606 +http://www.e-reading.org.ua/bookreader.php/143119/Horoshiii_Stalin.html +https://web.archive.org/web/20191019164507/http://www.knowbysight.info/LLL/03584.asp +https://web.archive.org/web/20101103142334/http://dipacademy.ru/lebedev_vict.shtml +https://www.openstreetmap.org/?mlat=68.5789&mlon=34.943&zoom=12 +https://www.bing.com/maps/default.aspx?v=2&cp=68.6273~34.5649&style=h&lvl=11&sp=Point.68.6273_34.5649_1_ +https://www.openstreetmap.org/?mlat=68.6273&mlon=34.5649&zoom=15 +https://www.bing.com/maps/default.aspx?v=2&cp=68.5789~34.943&style=h&lvl=11&sp=Point.68.5789_34.943_1_ +https://www.openstreetmap.org/?mlat=68.5789&mlon=34.943&zoom=12 +https://uisrussia.msu.ru/regsearch.php?q=%D0%A0%D0%B0%D1%81%D1%81%D0%B9%D0%BE%D0%BA +https://cgkipd.ru/science/names/reestry-gkgn.php +https://pkk.rosreestr.ru/ +https://rosreestr.ru/ +https://web.archive.org/web/20131015092212/http://www.mnr.gov.ru/files/part/0306_perechen.rar +http://airliners.net +http://www.biographien.ac.at/oebl?frames=yes +https://www.findagrave.com/cgi-bin/fg.cgi?page=gr&GRid=215006036 +https://d-nb.info/gnd/104131241 +http://isni-url.oclc.nl/isni/000000010965480X +https://id.loc.gov/authorities/n88101579 +http://aut.nkp.cz/jk01120002 +https://nla.gov.au/anbd.aut-an36574066 +https://nlg.okfn.gr/resource/authority/record172629 +http://mak.bn.org.pl/cgi-bin/KHW/makwww.exe?BM=01&IM=04&NU=01&WI=A10463860 +https://data.bibliotheken.nl/id/thes/p119333716 +https://viaf.org/processed/NUKAT%7Cn2008077501 +https://libris.kb.se/katalogisering/gdsvrdz05s7dklp +https://www.idref.fr/098541994 +https://viaf.org/viaf/39807270 +https://www.worldcat.org/identities/containsVIAFID/39807270 +https://www.openstreetmap.org/?mlat=38.47222&mlon=-28.28833&zoom=12 +https://www.openstreetmap.org/?mlat=38.47222&mlon=-28.28833&zoom=12 +https://www.itis.gov/servlet/SingleRpt/SingleRpt?search_topic=TSN&search_value=183455 +https://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?mode=Info&id=13468 +https://eol.org/pages/34195 +https://npgsweb.ars-grin.gov/gringlobal/taxonomygenus.aspx?id=3183 +http://www.ipni.org/ipni/idPlantNameSearch.do?id=30002843-2 +http://fossilworks.org/bridge.pl?a=taxonInfo&taxon_no=369914 +http://apps.kew.org/wcsp/qsearch.do?plantName=Cupressus&page=quickSearch +http://tn-grin.nat.tn/gringlobal/genus/taxonomydetail?id=3183 +https://www.openstreetmap.org/?mlat=-43.8&mlon=-66.448&zoom=12 +https://www.bing.com/maps/default.aspx?v=2&cp=-45.612~-68.602&style=h&lvl=11&sp=Point.-45.612_-68.602_1_ +https://www.openstreetmap.org/?mlat=-45.612&mlon=-68.602&zoom=15 +https://www.bing.com/maps/default.aspx?v=2&cp=-43.8~-66.448&style=h&lvl=11&sp=Point.-43.8_-66.448_1_ +https://www.openstreetmap.org/?mlat=-43.8&mlon=-66.448&zoom=12 +https://www.argentina.gob.ar/sites/default/files/66.pdf +https://www.openstreetmap.org/?mlat=49.46333&mlon=27.82167&zoom=13 +https://www.openstreetmap.org/?mlat=49.46333&mlon=27.82167&zoom=13 +http://orthodox.vinnica.ua/ru/parafiya/litinske-blagochinnya/ +http://gska2.rada.gov.ua/pls/z7503/A005?rf7571=2299 +https://web.archive.org/web/20110606103246/http://www.admin.ch/br/dokumentation/mitglieder/details/index.html?lang=en&id=12 +http://www.hls-dhs-dss.ch/textes/f/F3533.php +http://www.hls-dhs-dss.ch/textes/d/D3533.php +http://www.hls-dhs-dss.ch/textes/i/I3533.php +https://telegrafi.com/rexhep-mitrovica-burreshtetasi-qe-u-la-nen-harrese/ +https://d-nb.info/gnd/139836268 +http://isni-url.oclc.nl/isni/0000000072647146 +https://id.loc.gov/authorities/n2009036980 +https://viaf.org/viaf/90437334 +https://www.worldcat.org/identities/containsVIAFID/90437334 +https://deces.matchid.io/id/dtzTA1Z1tdQ7 +https://www.francebleu.fr/infos/faits-divers-justice/indre-l-ex-champion-cycliste-michel-dejouhannet-est-decede-1547396271 +https://www.francebleu.fr/infos/faits-divers-justice/indre-l-ex-champion-cycliste-michel-dejouhannet-est-decede-1547396271 +http://www.procyclingstats.com/rider.php?id=183083 +http://www.cyclingarchives.com/coureurfiche.php?coureurid=7661 +http://www.cyclingarchives.com/coureurfiche.php?coureurid=7661 +http://www.memoire-du-cyclisme.eu/pelotons/coureurs.php?c=3289 +https://www.procyclingstats.com/rider/183083 +https://www.openstreetmap.org/?mlat=58.771880&mlon=55.364132&zoom=12 +https://www.openstreetmap.org/?mlat=58.771880&mlon=55.364132&zoom=12 +https://classinform.ru/okato/search.php?str=57220000081 +https://classinform.ru/oktmo/search.php?str=57620404166 +http://permstat.gks.ru/wps/wcm/connect/rosstat_ts/permstat/resources/d3f416004c8a047ca567bf915ce0328a/численность+и+размещение++населения+пермского+края.xls +http://www.webcitation.org/6SU5D7DQO +http://docs.cntd.ru/document/553216191 +https://fgistp.economy.gov.ru/?show_document=true&doc_type=npa&uin=576200000201032014060378 +https://www.geonames.org/8247451/mosino.html +http://lingvarium.org/russia/BD/02c_Permskaja_obl.xls +http://www.european-athletics.org/externalmodules/AT/pdf/ATW053900_C74B.pdf +https://web.archive.org/web/20181001161700/http://www.european-athletics.org/externalmodules/AT/pdf/ATW053900_C74B.pdf +http://www.european-athletics.org/externalmodules/AT/pdf/ATW053901_C73R.pdf +https://web.archive.org/web/20181001161742/http://www.european-athletics.org/externalmodules/AT/pdf/ATW053901_C73R.pdf +http://www.european-athletics.org/externalmodules/AT/pdf/ATW053902_C73R.pdf +https://web.archive.org/web/20181001161819/http://www.european-athletics.org/externalmodules/AT/pdf/ATW053902_C73R.pdf +http://www.european-athletics.org/externalmodules/AT/pdf/ATW053101_C73S.pdf +https://web.archive.org/web/20181001163707/http://www.european-athletics.org/externalmodules/AT/pdf/ATW053101_C73S.pdf +http://www.european-athletics.org/competitions/european-athletics-championships/news/article=thiam-completes-the-set-major-outdoor-heptathlon-titles-berlin/index.html +https://web.archive.org/web/20180930163955/http://www.european-athletics.org/competitions/european-athletics-championships/news/article=thiam-completes-the-set-major-outdoor-heptathlon-titles-berlin/index.html +http://www.european-athletics.org/competitions/european-athletics-championships/2018/athletics/event/womens-javelin-throw/ +https://web.archive.org/web/20181001164946/http://www.european-athletics.org/competitions/european-athletics-championships/2018/athletics/event/womens-javelin-throw/ +http://www.allmusic.com/album/six-feet-down-under-ep-mw0002053487 +http://www.weiweimusic.com +http://dinapengar.se/Avdelningar/Artikel.aspx?ArticleID=2006%5c09%5c26%5c1887&o=sp3 +http://web.archive.org/web/20070928020709/http://dinapengar.se/Avdelningar/Artikel.aspx?ArticleID=2006%5c09%5c26%5c1887&o=sp3 +https://web.archive.org/web/20190902214629/http://www.weiweimusic.com/ +http://www.weiweiint.com/eng_index.asp?sida=com +https://web.archive.org/web/20170911214806/http://weiwei.mobi/ +https://web.archive.org/web/20110412002818/http://go-girl-go.mobi/ +https://web.archive.org/web/20080724143614/http://sports.tom.com/2007-05-30/03O9/84893471.html +http://www.elperiodico.com/default.asp?idpublicacio_PK=46&idioma=CAT&idnoticia_PK=410478&idseccio_PK=1026 +http://www.dweb.repubblica.it/dettaglio/2135523/Madonna-pop-made-in-China +https://web.archive.org/web/20070707191118/http://footballdynamicsasia.blogspot.com/search/label/Women%27s%20World%20Cup +http://www.billboard.biz/bbbiz/search/article_display.jsp?vnu_content_id=1003545937 +http://web.archive.org/web/20120320092547/http://www.billboard.biz/bbbiz/search/article_display.jsp?vnu_content_id=1003545937 +http://www.elpais.com/articulo/ocio/estrella/pop/china/Wei/Wei/lanza/nuevo/album/traves/movil/elpeputeccib/20070222elpciboci_1/Tes +http://www.capital.fr/actualite/Default.asp?source=NW&numero=14705&Cat=COM&numpage=40 +https://web.archive.org/web/20070930171238/http://www.gp.se/gp/jsp/Crosslink.jsp?d=913&a=326412 +https://web.archive.org/web/20080807172426/http://www.mobile-ent.biz/news/25510/mobi-debut-for-Chinese-singer +https://web.archive.org/web/20070927033844/http://www.stockholmbusinessregion.se/templates/page____21023.aspx?epslanguage=EN +http://di.se/Nyheter/?page=%2fAvdelningar%2fArtikel.aspx%3fO%3dRSS%26ArticleId%3d2006%5c10%5c04%5c204032 +https://web.archive.org/web/20070928020709/http://www.dinapengar.se/Avdelningar/Artikel.aspx?ArticleID=2006%5c09%5c26%5c1887 +https://web.archive.org/web/20080120022654/http://www.kjendis.no/2006/09/27/478011.html +https://web.archive.org/web/20070928041735/http://www.metro.se/se/article/2006/11/24/06/2824-23/index.xml +http://english.people.com.cn/200512/09/eng20051209_226776.html +http://www2.chinadaily.com.cn/english/doc/2005-07/15/content_460462.htm +http://www.cctv.com/program/UpClose/20050208/100336.shtml +https://web.archive.org/web/20080218042930/http://cgi.cnn.com/ASIANOW/asiaweek/95/1124/feat1.html +http://www.kanu.de/go/dkv/_dbe,addresses_athlets,23.xhtml +https://web.archive.org/web/20150110035001/http://www.kanu.de/go/dkv/_dbe,addresses_athlets,23.xhtml +http://www.paddlesports.ru/news/kubok_prezidenta_rf_2014_zavershen/2014-06-23-239 +https://web.archive.org/web/20160304205920/http://www.paddlesports.ru/news/kubok_prezidenta_rf_2014_zavershen/2014-06-23-239 +https://web.archive.org/web/20161204000000/https://www.sports-reference.com/olympics/athletes/ih/andreas-ihle-1.html +http://www.canoeresults.eu/medals?year=&name=ihle +https://web.archive.org/web/20100105013709/http://www.canoeicf.com/site/canoeint/if/downloads/result/Pages%201-41%20from%20Medal%20Winners%20ICF%20updated%202007-2.pdf?MenuID=Results%2F1107%2F0%2CMedal_winners_since_1936%2F1510%2F0 +http://keuskupantanjungkarang.webs.com/ +http://www.vatican.va/archive/aas/documents/AAS%2044%20%5B1952%5D%20-%20ocr.pdf +http://www.vatican.va/archive/aas/documents/AAS%2053%20%5B1961%5D%20-%20ocr.pdf +http://www.catholic-hierarchy.org/diocese/dtnjn.html +http://www.gcatholic.org/dioceses/diocese/tanj1.htm +http://www.nationaalherbarium.nl/FMCollectors/E/EverettAH.htm +http://newspapers.nl.sg/Digitised/Article/straitstimes18850112.2.32.aspx +https://archive.org/stream/genealogicalnote00bern/genealogicalnote00bern_djvu.txt +http://www.museumwales.ac.uk/en/2768/ +https://web.archive.org/web/20121002233150/http://www.museumwales.ac.uk/en/2768/ +https://archive.org/stream/ibis15uniogoog#page/n11/mode/2up +http://www.nanspeters.com +http://www.nanspeters.com +http://firstcycling.com/rider.php?r=20448 +http://www.cqranking.com/men/asp/gen/rider.asp?riderid=22703 +http://www.procyclingstats.com/rider.php?id=164943 +http://www.cyclingarchives.com/coureurfiche.php?coureurid=77956 +http://www.cyclebase.nl/?lang=en&news=en&pc=normal&page=renner&id=62142 +https://twitter.com/NansPeters +https://instagram.com/nans.peters +https://cqranking.com/men/asp/gen/rider.asp?riderid=22703 +https://www.cyclebase.nl/?lang=en&page=renner&id=62142 +http://www.cyclingarchives.com/coureurfiche.php?coureurid=77956 +https://www.procyclingstats.com/rider/164943 +https://www.strava.com/pros/1662541 +http://www.awbl-basketball.at/index.php?id=140 +https://web.archive.org/web/20160414203711/http://www.awbl-basketball.at/index.php?id=140 +http://www.eurobasket.com/Austria/news/436495/Flying-Foxes-SVS-Post-is-ASWBL-2015/games-schedule.asp?League=11&LName=Austria&Women=1 +http://www.allapushnenkova.o2wd.com/index_ru.php +http://obninsk-discovery.ru/malaya-rodina/kazhdyij-raz-ya-dolzhen-igrat-po-novomu.html +http://web.archive.org/web/20190820010730/http://obninsk-discovery.ru/malaya-rodina/kazhdyij-raz-ya-dolzhen-igrat-po-novomu.html +http://www.taneev40.ru/page/history +https://tvkultura.ru/article/show/article_id/54965/ +https://www.latimes.com/archives/la-xpm-1992-08-07-ca-4641-story.html +http://www.correodelorinoco.gob.ve/dos-rusos-que-estimulan-la-practica-del-piano-en-venezuela/ +https://venezuela.mid.ru/-/la-embajada-de-rusia-se-une-a-las-felicitaciones-con-motivo-del-5o-aniversario-del-salon-de-conciertos-igor-lavrov?inheritRedirect=true +http://luis-pares.com/ +https://web.archive.org/web/20190822021037/https://www.venezuelasinfonica.com/tag/igor-lavrov +http://usbnoticias.usb.ve/post/57946 +http://data.bnf.fr/ark:/12148/cb12281812w +http://explore.rkd.nl/en/explore/artists/82461 +https://www.britannica.com/biography/Otto-Wagner +http://depts.washington.edu/vienna/architecture/wagner/bio.htm +http://www.visitingvienna.com/footsteps/wagner-grave/ +https://www.moma.org/artists/6210 +http://d-nb.info/gnd/118628399/ +http://www.architektenlexikon.at/de/670.htm +https://www.woka.com/de/lexikon.html?auto_item=otto-wagner +https://archi.ru/russia/93940/ar-deko-venskoi-arkhitekturnoi-shkoly +http://www.psk.at/ow_tour/geschichte/ow_bio.html +https://web.archive.org/web/20070928083628/http://www.ottowagner.com/ow-werk/ +https://web.archive.org/web/20071006031007/http://progs.wiennet.at/ottowagner/index.htm +https://web.archive.org/web/20080115053757/http://www.onoufriev.narod.ru/wientram/fjbahn.htm +http://amshistorica.unibo.it/diglib.php?inv=160 +http://amshistorica.unibo.it/diglib.php?inv=161 +http://amshistorica.unibo.it/diglib.php?inv=162 +https://structurae.de/personen/1005010 +https://rkd.nl/nl/explore/artists/82461 +https://www.enciclopedia.cat/enciclopèdies/gran-enciclopèdia-catalana/EC-GEC-0071716.xml +https://snl.no/Otto_Wagner +https://bigenc.ru/text/1893821 +https://www.britannica.com/biography/Otto-Wagner +https://brockhaus.de/ecs/enzy/article/wagner-otto +https://www.treccani.it/enciclopedia/otto-wagner +https://www.universalis.fr/encyclopedie/otto-wagner/ +http://esu.com.ua/search_articles.php?id=32830 +https://www.findagrave.com/cgi-bin/fg.cgi?page=gr&GRid=8956 +https://www.gravsted.dk/person.php?navn=ottowagner +http://ask.bibsys.no/ask/action/result?cmd=&kilde=biblio&cql=bs.autid+%3D+90250583&feltselect=bs.autid +http://cantic.bnc.cat/registres/CUCId/a10391071 +http://catalogo.bne.es/uhtbin/authoritybrowse.cgi?action=display&authority_id=XX1156519 +https://catalogue.bnf.fr/ark:/12148/cb12281812w +https://ci.nii.ac.jp/author/DA0191026X +https://www.cobiss.si/scripts/cobiss?command=DISPLAY&base=CONOR&rid=7654499 +https://d-nb.info/gnd/118628399 +https://opac.sbn.it/opacsbn/opac/iccu/scheda_authority.jsp?bid=IT\ICCU\RAVV\013667 +http://isni-url.oclc.nl/isni/0000000121007787 +https://id.loc.gov/authorities/n79117094 +https://viaf.org/processed/LNB%7CLNC10-000184795 +http://id.ndl.go.jp/auth/ndlna/00459984 +http://aut.nkp.cz/xx0005989 +https://nla.gov.au/anbd.aut-an35162011 +http://mak.bn.org.pl/cgi-bin/KHW/makwww.exe?BM=01&IM=04&NU=01&WI=A12255397 +https://viaf.org/processed/NSK%7C000189312 +https://data.bibliotheken.nl/id/thes/p069415471 +https://viaf.org/processed/NUKAT%7Cn95019561 +https://libris.kb.se/katalogisering/53hkmbcp4z0s46z +https://www.idref.fr/027698270 +https://viaf.org/viaf/39439361 +https://www.getty.edu/vow/ULANFullDisplay?find=&role=&nation=&subjectid=500016971 +https://www.worldcat.org/identities/containsVIAFID/39439361 +https://genealogy.math.ndsu.nodak.edu/id.php?id=169774 +https://www.zbmath.org/authors/?q=ai:lehmann.otto +https://www.britannica.com/biography/Otto-Lehmann +https://www.cobiss.si/scripts/cobiss?command=DISPLAY&base=CONOR&rid=321969763 +https://d-nb.info/gnd/116875275 +http://isni-url.oclc.nl/isni/0000000107184728 +https://id.loc.gov/authorities/nr2004024551 +http://aut.nkp.cz/mub2015871204 +https://data.bibliotheken.nl/id/thes/p240826434 +https://viaf.org/processed/NUKAT%7Cn2007124476 +https://libris.kb.se/katalogisering/b8nrxd9v2p54rf6 +https://www.idref.fr/146818164 +https://viaf.org/viaf/45065512 +https://www.worldcat.org/identities/containsVIAFID/45065512 +http://www.sports.ru/hockey/33469717.html +http://www.nhl.com/gamecenter/en/recap?id=2006020016 +http://www.nhl.com/gamecenter/en/recap?id=2006020025 +http://www.nhl.com/gamecenter/en/recap?id=2006020105 +http://www.nhl.com/ice/news.htm?id=286789#&navid=nhl-search +http://www.sports.ru/hockey/3061979.html +http://www.sports.ru/hockey/9140240.html +http://www.sports.ru/hockey/3532725.html +http://www.nhl.com/gamecenter/en/recap?id=2007020062 +http://www.sports.ru/hockey/7595872.html +http://www.nhl.com/gamecenter/en/recap?id=2008021228 +http://www.sports.ru/hockey/33186373.html +http://www.sports.ru/hockey/15332596.html +http://www.sports.ru/hockey/15476200.html +http://www.sports.ru/hockey/30236678.html +http://www.sports.ru/hockey/19978120.html +http://www.sports.ru/hockey/19370680.html +http://www.sports.ru/hockey/25697755.html +http://www.sports.ru/hockey/25836104.html +http://www.sports.ru/hockey/44520986.html +http://www.sports.ru/hockey/9552076.html +http://www.nhl.com/gamecenter/en/recap?id=2009020227 +http://www.nhl.com/gamecenter/en/recap?id=2011020011 +http://www.sports.ru/hockey/153812182.html +http://www.nhl.com/gamecenter/en/recap?id=2013020129 +http://www.sports.ru/hockey/75356827.html +http://www.sports.ru/hockey/75709209.html +http://www.sports.ru/hockey/75729125.html +http://www.sports.ru/hockey/135412178.html +http://www.sports.ru/hockey/135599110.html +http://www.championat.com/hockey/news-1645330-toronto-prodlil-kontrakt-s-kesselom-na-8-let.html +http://penguins.nhl.com/club/news.htm?id=773319 +http://www.iihf.com/Hydra/Tournaments/output/W18/hydra.iihf.com/data/iihf/output/xml/24/IHM024Z889_85B_1_0.pdf +http://www.iihf.com/Hydra/Tournaments_06/output/w20/hydra.iihf.com/data/iihf/output/xml/55/IHM055Z12_85B_1_0.pdf +http://www.championat.com/hockey/news-40122-nazvany-18-khokkeistov-sbornoj-ssha-na-chm-v-moskve.html +http://www.sports.ru/hockey/4584113.html +http://www.sports.ru/hockey/16010997.html +http://www.sports.ru/hockey/60580100.html +http://www.sports.ru/hockey/65426562.html +http://www.sports.ru/hockey/68039761.html +http://www.sports.ru/hockey/68964378.html +http://www.sports.ru/hockey/90233949.html +http://www.sports.ru/hockey/90314408.html +http://www.sports.ru/hockey/139826577.html +https://twitter.com/PKessel81 +https://instagram.com/phil_kessel_81_ +https://www.tcdb.com/Person.cfm/pid/15209/ +https://www.eliteprospects.com/player.php?player=8793 +https://www.hockey-reference.com/players/k/kesseph01.html +https://www.hockeydb.com/ihdb/stats/pdisplay.php?pid=93039 +https://www.olympedia.org/athletes/119347 +https://www.hhof.com/LegendsOfHockey/jsp/SearchPlayer.jsp?player=21928 +https://www.nhl.com/ru/player/8473548 +https://id.loc.gov/authorities/n2015010517 +https://viaf.org/viaf/315084219 +https://www.worldcat.org/identities/containsVIAFID/315084219 +http://www.whp057.narod.ru/ruman.htm +https://web.archive.org/web/20060623073728/http://www.whp057.narod.ru/ruman.htm +http://www.tacitus.nu/historical-atlas/population/balkans.htm +https://www.webcitation.org/65hJzY7KG?url=http://www.tacitus.nu/historical-atlas/population/balkans.htm +http://old.ournet.md/~moldhistory/book1_3.html +https://web.archive.org/web/20090305223035/http://old.ournet.md/~moldhistory/book1_3.html +http://militera.lib.ru/h/balkanwar/index.html +http://militera.lib.ru/h/zadohin_nizovsky/index.html +http://users.erols.com/mwhite28/warstat3.htm#Balkan +https://www.webcitation.org/615rHz02Q?url=http://users.erols.com/mwhite28/warstat3.htm#Balkan +http://www.inslav.ru/sobytiya/zashhity-dissertaczij/2181-2015-borisenok +http://www.inslav.ru/sobytiya/zashhity-dissertaczij/2181-2015-borisenok +http://ccoins.ru/pages/rumynija_monety.html +http://www.fox-notes.ru/img/romania_1.htm +http://www.inslav.ru/sobytiya/zashhity-dissertaczij/2181-2015-borisenok +http://www.inslav.ru/sobytiya/zashhity-dissertaczij/2181-2015-borisenok +http://www.inslav.ru/sobytiya/zashhity-dissertaczij/2181-2015-borisenok +http://www.hierarchy.religare.ru/h-refpresb-hungrum.html +https://iranicaonline.org/articles/eskandari-solayman-mohsen-mirza/ +https://www.worldcat.org/issn/2330-4804 +https://www.radiofarda.com/a/fk_first_war_e08/26585558.html +http://iichs.org/index.asp?id=690&doc_cat=7 +http://www.runivers.ru/bookreader/book10472/#page/492/mode/1up +https://books.google.ru/books?id=7Wo1AQAAIAAJ&q=%D1%81%D1%83%D0%BB%D0%B5%D0%B9%D0%BC%D0%B0%D0%BD+%D0%BC%D0%B8%D1%80%D0%B7%D0%B0+%D0%B8%D1%81%D0%BA%D0%B0%D0%BD%D0%B4%D0%B5%D1%80%D0%B8&dq=%D1%81%D1%83%D0%BB%D0%B5%D0%B9%D0%BC%D0%B0%D0%BD+%D0%BC%D0%B8%D1%80%D0%B7%D0%B0+%D0%B8%D1%81%D0%BA%D0%B0%D0%BD%D0%B4%D0%B5%D1%80%D0%B8&hl=ru&sa=X&ved=0ahUKEwjH-ubXq4nYAhXjJ5oKHbg4CugQ6AEIODAD +https://books.google.ru/books?id=QGBEAAAAIAAJ&q=%D1%81%D1%83%D0%BB%D0%B5%D0%B9%D0%BC%D0%B0%D0%BD+%D0%BC%D0%B8%D1%80%D0%B7%D0%B0+%D0%B8%D1%81%D0%BA%D0%B0%D0%BD%D0%B4%D0%B5%D1%80%D0%B8&dq=%D1%81%D1%83%D0%BB%D0%B5%D0%B9%D0%BC%D0%B0%D0%BD+%D0%BC%D0%B8%D1%80%D0%B7%D0%B0+%D0%B8%D1%81%D0%BA%D0%B0%D0%BD%D0%B4%D0%B5%D1%80%D0%B8&hl=ru&sa=X&ved=0ahUKEwjH-ubXq4nYAhXjJ5oKHbg4CugQ6AEIKTAA +https://books.google.ru/books?id=AdFKAQAAIAAJ&q=%D1%81%D1%83%D0%BB%D0%B5%D0%B9%D0%BC%D0%B0%D0%BD+%D0%BC%D0%B8%D1%80%D0%B7%D0%B0+%D0%B8%D1%81%D0%BA%D0%B0%D0%BD%D0%B4%D0%B5%D1%80%D0%B8&dq=%D1%81%D1%83%D0%BB%D0%B5%D0%B9%D0%BC%D0%B0%D0%BD+%D0%BC%D0%B8%D1%80%D0%B7%D0%B0+%D0%B8%D1%81%D0%BA%D0%B0%D0%BD%D0%B4%D0%B5%D1%80%D0%B8&hl=ru&sa=X&ved=0ahUKEwjH-ubXq4nYAhXjJ5oKHbg4CugQ6AEIOzAE +https://www.itis.gov/servlet/SingleRpt/SingleRpt?search_topic=TSN&search_value=551780 +https://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?mode=Info&id=569598 +http://reptile-database.reptarium.cz/species.php?genus=Stigmochelys&exact%5B%5D=genus&species=pardalis +http://www.zooclub.ru/rept/vidy/cherep/65.shtml +http://www.cherepahi.ru/content/view/349/200/ +http://www.k7computing.com +http://k7-russia.ru/consumer_home/ +http://www.av-comparatives.org/images/stories/test/performance/performance_aug_2011.pdf +http://www.av-comparatives.org/images/stories/test/performance/performance_nov_2011.pdf +http://www.av-comparatives.org/images/stories/test/performance/performance_dec_2010.pdf +http://www.av-comparatives.org/ +http://westcoastlabs.com/checkmark/productList/?vendorID=64 +https://web.archive.org/web/20130313065226/http://www.westcoastlabs.com/checkmark/productList/?vendorID=64 +http://www.virusbtn.com/vb100/archive/vendor?id=51 +http://www.virusbtn.com/vb100/archive/test?id=169 +http://www.av-comparatives.org/images/stories/test/performance/performance_dec_2010.pdf +http://www.av-comparatives.org/images/stories/test/performance/performance_nov_2011.pdf +http://www.av-comparatives.org/images/stories/test/performance/performance_nov_2011.pdf +http://www.k7computing.com/ +http://k7-russia.ru/consumer_home/ +http://www.k7computing.co.uk/ +http://www.k7.se/ +http://www.k7computing.co.uk +https://web.archive.org/web/20130509083532/http://k7computing.co.za/ +http://k7-russia.ru/consumer_home/products/k7-ultimatesecurity/ +https://www.itis.gov/servlet/SingleRpt/SingleRpt?search_topic=TSN&search_value=836435 +https://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?mode=Info&id=186521 +https://eol.org/pages/628743 +https://npgsweb.ars-grin.gov/gringlobal/taxonomydetail.aspx?id=35013 +http://www.ipni.org/ipni/idPlantNameSearch.do?id=741676-1 +http://www.theplantlist.org/tpl1.1/record/rjp-1353 +http://www.ars-grin.gov/cgi-bin/npgs/html/taxon.pl?35013 +http://had0.big.ous.ac.jp/plantsdic/angiospermae/dicotyledoneae/choripetalae/rosaceae/nanakamado/nanakamado.htm +http://www.geocities.jp/greensv88/jumoku-zz-nanakamado.htm +https://www.openstreetmap.org/?mlat=56.94787694&mlon=24.11066500&zoom=16 +https://www.openstreetmap.org/?mlat=56.94787694&mlon=24.11066500&zoom=16 +http://www.citariga.lv/rus/rigas-apskates-vietas/rigas-nocietinajumi/jana-seta/ +https://bigenc.ru/domestic_history/text/3788410 +http://rurik.genealogia.ru/pages/Baryat.htm +https://primechaniya.ru/sevastopol/stati/carev-sanatorij-kirova-pensionery +https://kirova.biz/istoriya/poslednyaya-vladelitsa-imeniya-selbilyar/ +https://viewer.rusneb.ru/ru/rsl01003416839?page=73 +https://viewer.rusneb.ru/ru/rsl01008802006?page=107 +http://vvmvd.ru/veterani_files/07_2010.pdf +http://www.kahzorya.org.ua/?p=3458 +http://encyclopedia.mil.ru/encyclopedia/heroes/USSR/more.htm?id=12100376@morfHeroes +https://www.openstreetmap.org/?mlat=58.83222&mlon=51.33889&zoom=12 +https://www.openstreetmap.org/?mlat=58.82361&mlon=51.53583&zoom=15 +https://www.openstreetmap.org/?mlat=58.83222&mlon=51.33889&zoom=12 +http://textual.ru/gvr/index.php?card=184002 +https://www.webcitation.org/69nu7V4wp?url=http://textual.ru/gvr/index.php?card=184002 +http://apps.who.int/classifications/icd10/browse/2016/en#/H49.4 +https://icdcodelookup.com/icd-10/codes/H49.4 +http://www.icd9data.com/getICD9Code.ashx?icd9=378.72 +http://icd9cm.chrisendres.com/index.php?action=search&srchtext=378.72 +https://omim.org/entry/157640 +http://www.diseasesdatabase.com/ddb29124.htm +http://www.emedicine.com/oph/topic510.htm +https://meshb.nlm.nih.gov/record/ui?ui=D017246 +http://www.disease-ontology.org/?id=DOID:12558 +https://dx.doi.org/10.1038%2Fsj.eye.6701924 +https://dx.doi.org/10.1093%2Fbrain%2Fawh259 +https://www.ncbi.nlm.nih.gov/pubmed/17892433 +https://dx.doi.org/10.1097%2FWNO.0b013e31803312fa +https://dx.doi.org/10.1016%2Fj.jaapos.2006.04.012 +https://dx.doi.org/10.1212%2F01.wnl.0000258659.21421.b0 +https://archive.org/details/sim_muscle-nerve_2007-02_35_2/page/235 +https://dx.doi.org/10.1002%2Fmus.20688 +https://dx.doi.org/10.3109%2F09273971003758388 +https://web.archive.org/web/20110516134256/http://www4.ocn.ne.jp/~nurophth/CPEO1.jpg +http://webeye.ophth.uiowa.edu/eyeforum/cases/case24.htm +https://web.archive.org/web/20060925130130/http://journals.tubitak.gov.tr/medical/issues/sag-04-34-3/sag-34-3-9-0401-8.pdf +http://www.lulu.co.uk +http://www.lulu.co.uk +https://www.facebook.com/Luluofficial +https://myspace.com/lulumusic +https://twitter.com/lulushouts +https://music.apple.com/ru/artist/279085 +https://instagram.com/lulukc +https://www.last.fm/ru/music/Lulu +https://open.spotify.com/artist/0jYKX08u1XxmHrl5TdM2QZ +https://music.yandex.ru/artist/7949 +https://music.yandex.ru/artist/3540461 +https://www.allmovie.com/artist/p43732 +https://www.allmusic.com/artist/mn0000321321 +https://www.csfd.cz/tvurce/266140 +https://www.discogs.com/artist/57619 +https://www.imdb.com/name/nm0525801 +https://musicbrainz.org/artist/002e9f6e-13af-4347-83c5-f5ace70e0ec4 +https://rateyourmusic.com/artist/lulu +https://www.britannica.com/biography/Lulu-British-singer-and-actress +https://nndb.com/people/601/000086343 +http://ask.bibsys.no/ask/action/result?cmd=&kilde=biblio&cql=bs.autid+%3D+43756&feltselect=bs.autid +https://catalogue.bnf.fr/ark:/12148/cb13921982f +https://d-nb.info/gnd/124357652 +http://data.beeldengeluid.nl/gtaa/127575 +http://isni-url.oclc.nl/isni/0000000063104465 +https://id.loc.gov/authorities/no92022816 +http://aut.nkp.cz/xx0161607 +https://data.bibliotheken.nl/id/thes/p07209172X +https://viaf.org/viaf/56179194 +https://www.worldcat.org/identities/containsVIAFID/56179194 +http://www.buran.ru/htm/bors.htm +http://bigenc.ru/text/2168097 +https://rosreestr.ru/upload/Doc/21-upr/instrukcii/45%20Малагасийская%20респ.pdf +https://web.archive.org/web/20120510054351/http://users.cwnet.com/zaikabe/merina/ +http://www.gasiraka.net +http://www.countrystudies.us/madagascar +http://data.bnf.fr/ark:/12148/cb12267609g +https://www.britannica.com/biography/Andrew-Bell-Scottish-educator +https://brockhaus.de/ecs/enzy/article/bell-andrew +http://www.britannica.com/EBchecked/topic/59576/Andrew-Bell +http://runeberg.org/nfbb/0675.html +https://www.enciclopedia.cat/enciclopèdies/gran-enciclopèdia-catalana/EC-GEC-0008760.xml +https://snl.no/Andrew_Bell +https://www.britannica.com/biography/Andrew-Bell-Scottish-educator +https://brockhaus.de/ecs/enzy/article/bell-andrew +https://nndb.com/people/121/000100818 +https://doi.org/10.1093/ref:odnb/1995 +https://viaf.org/processed/BAV%7CADV12213314 +https://catalogue.bnf.fr/ark:/12148/cb12267609g +https://d-nb.info/gnd/1053412568 +http://isni-url.oclc.nl/isni/0000000083940436 +https://id.loc.gov/authorities/n86104982 +http://mak.bn.org.pl/cgi-bin/KHW/makwww.exe?BM=01&IM=04&NU=01&WI=A28682221 +https://data.bibliotheken.nl/id/thes/p073153354 +https://viaf.org/processed/NUKAT%7Cn2013172492 +https://www.idref.fr/031465250 +https://viaf.org/viaf/73912098 +https://www.worldcat.org/identities/containsVIAFID/73912098 +http://trainpix.org/list.php?mid=125 +http://trainpix.org/list.php?mid=919 +https://trainpix.org/list.php?mid=1424 +http://web.archive.org/web/20170517024024/http://www.metrowagonmash.ru/doc/godotchet08.pdf +http://trainpix.org/vehicle/14219/ +https://web.archive.org/web/20061215002403/http://www.metrowagonmash.ru/ra1-730.htm +https://web.archive.org/web/20060515065856/http://www.metrowagonmash.ru/R1-730%20ttx.htm +http://ivan1950.tripod.com/RA1newfoto.html +http://kirovzt.ru/files/files/2013/2013.08.03.pdf +http://www.rosspending.ru/fk/contract/3982107000021/?year=2007&height=400&width=700 +https://web.archive.org/web/20151222170859/http://rosspending.ru/fk/contract/3982107000021/?year=2007&height=400&width=700 +http://www.rosspending.ru/fk/contract/3982108000347/?year=2008 +https://archive.is/SjRU +http://www.rosspending.ru/fk/contract/3982109000340/?year=2009 +https://archive.is/scYJ +http://www.rosspending.ru/fk/contract/3982110000171/ +https://archive.is/imij +http://www.tmholding.ru/products/realizovannye_proekty/ra_1.html +http://www.gudok.ru/newspaper/?ID=747639 +http://www.tmholding.ru/products/realizovannye_proekty/ra_v.html +http://www.tmholding.ru/products/realizovannye_proekty/ra_ch.html +https://web.archive.org/web/20161204110843/http://www.tmholding.ru/products/realizovannye_proekty/ra_ch.html +http://spz.logout.cz/novinky/novinky.php?poradi=588 +http://spz.logout.cz/novinky/novinky.php?poradi=635 +http://spz.logout.cz/novinky/novinky.php?poradi=744 +https://www.gudok.ru/newspaper/?ID=1469182&archive=2019.07.04 +http://padaread.com/?book=39157 +http://www.metrowagonmash.ru/production/arhive/1-731/ +https://trainpix.org/list.php?mid=125 +http://www.goalzz.com/main.aspx?c=7814 +http://www.rsssf.com/tabless/sau2016.html#div1 +https://www.openstreetmap.org/?mlat=51.02917&mlon=116.42722&zoom=12 +https://www.openstreetmap.org/?mlat=51.02917&mlon=116.42722&zoom=12 +https://classinform.ru/okato/search.php?str=76232000012 +https://classinform.ru/oktmo/search.php?str=76632425106 +http://xn--e1aflfqk.xn--80aaaac8algcbgbck3fl0q.xn--p1ai/u/xn--e1aflfqk/files/%D0%A0%D0%B5%D0%B5%D1%81%D1%82%D1%80%20%D0%B0%D0%B4%D0%BC-%D1%82%D0%B5%D1%80%20%D0%B5%D0%B4%20%D0%BD%D0%B0%2001_01_2019.doc +https://media.75.ru//documents/101484/1-07-2021-vzamen-ranee-napravlennogo.doc +https://75.ru/o-krae/administrativno-territorial-noe-ustroystvo +https://fgistp.economy.gov.ru/ais/of1?id=C92FC86781A155408166AB037E91F826 +http://www.consultant.ru/document/cons_doc_LAW_114656/b2707989c276b5a188e63bc41e7bcbcc18723de8/ +http://chita.gks.ru/wps/wcm/connect/rosstat_ts/chita/resources/41e3cd8041a64ec7b54efd2d59c15b71/Численность+населения+Забайкальского+края.docx +http://www.webcitation.org/6SVjUlfV0 +http://lingvarium.org/russia/BD/2015/Chitin.xls +http://okato-kod.ru/75017000047.html +https://www.openstreetmap.org/?mlat=43.49194&mlon=79.99139&zoom=14 +https://www.openstreetmap.org/?mlat=43.49194&mlon=79.99139&zoom=14 +http://www.stat.kz/klassifikacii/DocLib/государственные/katonew1.xls +https://www.webcitation.org/6F0XRLRTT?url=http://www.stat.kz/klassifikacii/DocLib/%D0%B3%D0%BE%D1%81%D1%83%D0%B4%D0%B0%D1%80%D1%81%D1%82%D0%B2%D0%B5%D0%BD%D0%BD%D1%8B%D0%B5/katonew1.xls +http://www.stat.kz/p_perepis/DocLib1/Население%20рус%201%20том.pdf +https://www.webcitation.org/6EkePwOI3?url=http://www.stat.kz/p_perepis/DocLib1/%D0%9D%D0%B0%D1%81%D0%B5%D0%BB%D0%B5%D0%BD%D0%B8%D0%B5%20%D1%80%D1%83%D1%81%201%20%D1%82%D0%BE%D0%BC.pdf +http://docs.cntd.ru/document/9015952 +https://www.kommersant.ru/doc/3889988 +https://web.archive.org/web/20160910064832/http://www.elfor.ru/elfor/articles/aviaperevozki_istoria.pdf +https://www.openstreetmap.org/?mlat=55.91139&mlon=37.82306&zoom=17 +https://www.openstreetmap.org/?mlat=66.5944&mlon=36.6489&zoom=12 +https://www.bing.com/maps/default.aspx?v=2&cp=66.5944~36.6489&style=h&lvl=11&sp=Point.66.5944_36.6489_1_ +https://www.openstreetmap.org/?mlat=66.5944&mlon=36.6489&zoom=12 +http://textual.ru/gvr/index.php?card=155208 +https://www.webcitation.org/699X0cIgn?url=http://textual.ru/gvr/index.php?card=155208 +http://alexlib.ru/iskusstvo-kultura-byt/zhivopis/inye-miry-sergeya-arhipova/ +http://www.tambovmuseum.ru/museum_exhibitions/mvk_archive/arkhipov.html +https://web.archive.org/web/20110628061245/http://tambovmuseum.ru/museum_exhibitions/mvk_archive/arkhipov.html +http://amgerasimov.ru/acquaintance-to-amgerasimov.html +http://www.tstu.ru/win/tambov/imena/imena.htm +https://web.archive.org/web/20101129085123/http://tstu.ru/win/tambov/imena/imena.htm +http://www.judoinside.com/judoka/56671 +https://judoinside.com/judoka/56671 +https://www.ijf.org/athlete/6626 +https://www.facebook.com/pinot.margaux +https://instagram.com/margaux.pinot +https://espritbleu.franceolympique.com/espritbleu/athletes/6/pinot-133936.php +https://www.ijf.org/judoka/6626 +https://www.judoinside.com/judoka/56671/ +https://www.olympedia.org/athletes/142748 +https://www.openstreetmap.org/?mlat=54.21667&mlon=35.66500&zoom=12 +https://www.openstreetmap.org/?mlat=54.21667&mlon=35.66500&zoom=12 +https://classinform.ru/okato/search.php?str=29216000074 +https://classinform.ru/oktmo/search.php?str=29616436161 +https://dimastbkbot.toolforge.org/gkgn/?gkgn_id=0077504 +http://kalugastat.gks.ru/wps/wcm/connect/rosstat_ts/kalugastat/resources/43355b804c49726b93a9bf052efb10e3/%D1%81%D0%B1%D0%BE%D1%80%D0%BD%D0%B8%D0%BA_%D1%87%D0%B8%D1%81%D0%BB.doc +https://www.webcitation.org/6N0plt79D?url=http://kalugastat.gks.ru/wps/wcm/connect/rosstat_ts/kalugastat/resources/43355b804c49726b93a9bf052efb10e3/%D1%81%D0%B1%D0%BE%D1%80%D0%BD%D0%B8%D0%BA_%D1%87%D0%B8%D1%81%D0%BB.doc +https://iz.ru/913630/2019-08-24/umer-populiarnyi-perevodchik-filmov-iurii-zhivov +https://life.ru/p/1237842 +https://lenta.ru/news/2019/08/24/zivov/ +https://360tv.ru/news/obschestvo/golos-kinogeroev-90-h-po-kakim-filmam-my-zapomnili-jurija-zhivova/ +https://megahit-online.guru/index.php?/topic/8860-список-фильмов-в-переводе-живова-смотреть-онла/ +https://www.kp.ru/online/news/3583415/ +https://www.sport-express.ru/football/rfpl/news/sostavy-na-match-krylya-sovetov-spartak-obyavit-legendarnyy-golos-s-vhs-kasset-1546185/ +http://necropolsociety.ru/vstrechi148.html +http://movie-club.ru/viewtopic.php?p=172 +http://movie-club.ru/viewtopic.php?f=9&t=758