diff --git a/REPORT.md b/REPORT.md new file mode 100644 index 0000000..269eedf --- /dev/null +++ b/REPORT.md @@ -0,0 +1,56 @@ +# Параллелизм и асинхронность + +## IO-bound + +Синхронно в 1 поток: +![img](img/sync.png) + +5 воркеров: +![img](img/five.png) +![img](img/mem_5.png) + +10 воркеров: +![img](img/ten.png) +![img](img/mem_10.png) + +100 воркеров: +![img](img/hundred.png) +![img](img/mem_100.png) + + +Количество задействованной памяти и нагрузка на ЦП почти +не изменяется, так как из-за большого количества воркеров +происходит быстрое взаимодействие с сетью. + +## CPU-bound + +Генерация на 1 ядре для 4 монет: +![img](img/gen1.png) + +2 воркера для 4 монет: +![img](img/two.png) +![img](img/mem_2c.png) + +4 воркера для 4 монет: +![img](img/four.png) +![img](img/mem_4c.png) + +5 воркеров для 4 монет: +![img](img/fiveC.png) +![img](img/mem_5c.png) + +10 воркеров для 4 монет: +![img](img/tenC.png) +![img](img/mem_10c.png) + +100 воркеров для 4 монет: +Будет выдавать ошибку, так как есть ограничение в 61 воркер +![img](img/error.png) + +Протестировав программу пару раз, я пришел к выводу, +что увеличение или уменьшение кол-ва воркеров никак +не влияет на конечное время работы программы. Загруженность ЦП +никак не мог нормально уловить, так как программа буквально +за считанные секунды выполняла работу. Такой разброс во времени +обусловлен рандомным нахождением нужных нам монет. +(Процессор 6 ядер 12 потоков) \ No newline at end of file diff --git a/cpu-bound.py b/cpu-bound.py new file mode 100644 index 0000000..1482fdb --- /dev/null +++ b/cpu-bound.py @@ -0,0 +1,23 @@ +from hashlib import md5 +from random import choice +import concurrent.futures + + +def coin_generator(zero): + while True: + s = "".join([choice("0123456789") for i in range(50)]) + h = md5(s.encode('utf8')).hexdigest() + + if h.endswith("0000"): + return f"{s} {h}" + + +def main(): + with concurrent.futures.ProcessPoolExecutor(max_workers=61) as executor: + for coin in zip(executor.map(coin_generator, "0000")): + print(coin) + + +if __name__ == '__main__': + main() + diff --git a/get_links.py b/get_links.py new file mode 100644 index 0000000..c3000cf --- /dev/null +++ b/get_links.py @@ -0,0 +1,18 @@ +from urllib.request import urlopen +from urllib.parse import unquote +from bs4 import BeautifulSoup +from tqdm import tqdm + +url = 'https://ru.wikipedia.org/wiki/%D0%A1%D0%BB%D1%83%D0%B6%D0%B5%D0%B1%D0%BD%D0%B0%D1%8F:%D0%A1%D0%BB%D1%83%D1%87%D0%B0%D0%B9%D0%BD%D0%B0%D1%8F_%D1%81%D1%82%D1%80%D0%B0%D0%BD%D0%B8%D1%86%D0%B0' + +res = open('res.txt', 'w', encoding='utf8') + +for i in tqdm(range(100)): + html = urlopen(url).read().decode('utf8') + soup = BeautifulSoup(html, 'html.parser') + links = soup.find_all('a') + + for l in links: + href = l.get('href') + if href and href.startswith('http') and 'wiki' not in href: + print(href, file=res) diff --git a/img/error.png b/img/error.png new file mode 100644 index 0000000..f690f20 Binary files /dev/null and b/img/error.png differ diff --git a/img/five.png b/img/five.png new file mode 100644 index 0000000..50f1d3c Binary files /dev/null and b/img/five.png differ diff --git a/img/fiveC.png b/img/fiveC.png new file mode 100644 index 0000000..e6056ef Binary files /dev/null and b/img/fiveC.png differ diff --git a/img/four.png b/img/four.png new file mode 100644 index 0000000..789aa41 Binary files /dev/null and b/img/four.png differ diff --git a/img/gen1.png b/img/gen1.png new file mode 100644 index 0000000..bb4aade Binary files /dev/null and b/img/gen1.png differ diff --git a/img/hundred.png b/img/hundred.png new file mode 100644 index 0000000..45df5ec Binary files /dev/null and b/img/hundred.png differ diff --git a/img/mem_10.png b/img/mem_10.png new file mode 100644 index 0000000..1d2c90b Binary files /dev/null and b/img/mem_10.png differ diff --git a/img/mem_100.png b/img/mem_100.png new file mode 100644 index 0000000..e27a483 Binary files /dev/null and b/img/mem_100.png differ diff --git a/img/mem_10c.png b/img/mem_10c.png new file mode 100644 index 0000000..22fe70b Binary files /dev/null and b/img/mem_10c.png differ diff --git a/img/mem_2c.png b/img/mem_2c.png new file mode 100644 index 0000000..7851869 Binary files /dev/null and b/img/mem_2c.png differ diff --git a/img/mem_4c.png b/img/mem_4c.png new file mode 100644 index 0000000..d3559a6 Binary files /dev/null and b/img/mem_4c.png differ diff --git a/img/mem_5.png b/img/mem_5.png new file mode 100644 index 0000000..99d63a0 Binary files /dev/null and b/img/mem_5.png differ diff --git a/img/mem_5c.png b/img/mem_5c.png new file mode 100644 index 0000000..47c1107 Binary files /dev/null and b/img/mem_5c.png differ diff --git a/img/sync.png b/img/sync.png new file mode 100644 index 0000000..da3dd76 Binary files /dev/null and b/img/sync.png differ diff --git a/img/ten.png b/img/ten.png new file mode 100644 index 0000000..9f8cb3e Binary files /dev/null and b/img/ten.png differ diff --git a/img/tenC.png b/img/tenC.png new file mode 100644 index 0000000..921ee1a Binary files /dev/null and b/img/tenC.png differ diff --git a/img/two.png b/img/two.png new file mode 100644 index 0000000..53834ae Binary files /dev/null and b/img/two.png differ diff --git a/io-bound.py b/io-bound.py new file mode 100644 index 0000000..00e5690 --- /dev/null +++ b/io-bound.py @@ -0,0 +1,21 @@ +import urllib.request +import concurrent.futures + +links = open('res.txt', encoding='utf8').read().split('\n') + + +def load_url(url, timeout): + with urllib.request.urlopen(url, timeout=timeout) as conn: + return conn.read() + + +with concurrent.futures.ThreadPoolExecutor(max_workers=100) as executor: + future_to_url = {executor.submit(load_url, url, 5): url for url in links} + for future in concurrent.futures.as_completed(future_to_url): + url = future_to_url[future] + try: + data = future.result() + except Exception as exc: + print(url, exc) + else: + print(200) diff --git a/res.txt b/res.txt new file mode 100644 index 0000000..31892e7 --- /dev/null +++ b/res.txt @@ -0,0 +1,1188 @@ +https://web.archive.org/web/20110717003453/http://www.megakm.ru/weaponry/encyclop.asp?TopicNumber=1554 +https://www.openstreetmap.org/?mlat=52.4840318&mlon=36.4349556&zoom=11 +https://www.openstreetmap.org/?mlat=52.4840318&mlon=36.4349556&zoom=11 +https://classinform.ru/oktmo/search.php?str=54610404 +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 +http://docs.cntd.ru/document/974208311 +http://orel.gks.ru/wps/wcm/connect/rosstat_ts/orel/resources/be7830004129485cb23df7367ccd0f13/pub-01-07.pdf +http://www.webcitation.org/6N3pNF33v +http://www.gks.ru/free_doc/doc_2012/bul_dr/mun_obr2012.rar +http://www.webcitation.org/6PyOWbdMc +http://www.gks.ru/free_doc/doc_2013/bul_dr/mun_obr2013.rar +http://www.webcitation.org/6LAdCWSxH +http://www.gks.ru/free_doc/doc_2014/bul_dr/mun_obr2014.rar +http://www.webcitation.org/6RWqP50QK +http://www.gks.ru/free_doc/doc_2015/bul_dr/mun_obr2015.rar +http://www.webcitation.org/6aaNzOlFO +http://www.gks.ru/free_doc/doc_2016/bul_dr/mun_obr2016.rar +http://web.archive.org/web/20210508043701/http://www.gks.ru/free_doc/doc_2016/bul_dr/mun_obr2016.rar +http://www.gks.ru/free_doc/doc_2017/bul_dr/mun_obr2017.rar +http://web.archive.org/web/20170731141731/http://www.gks.ru/free_doc/doc_2017/bul_dr/mun_obr2017.rar +http://www.gks.ru/free_doc/doc_2018/bul_dr/mun_obr2018.rar +http://web.archive.org/web/20180726010024/http://www.gks.ru/free_doc/doc_2018/bul_dr/mun_obr2018.rar +http://www.gks.ru/free_doc/doc_2019/bul_dr/mun_obr2019.rar +https://web.archive.org/web/20210502132133/http://www.gks.ru/free_doc/doc_2019/bul_dr/mun_obr2019.rar +https://rosstat.gov.ru/storage/mediabank/CcG8qBhP/mun_obr2020.rar +https://web.archive.org/web/20200822004543/https://rosstat.gov.ru/storage/mediabank/CcG8qBhP/mun_obr2020.rar +https://www.openstreetmap.org/?mlat=59.46500&mlon=39.15694&zoom=12 +https://www.openstreetmap.org/?mlat=59.46500&mlon=39.15694&zoom=12 +https://classinform.ru/okato/search.php?str=19220824001 +https://classinform.ru/oktmo/search.php?str=19620440454 +http://std.gmcrosstata.ru/webapi/opendatabase?id=VPN2002_2010L +http://www.booksite.ru/fulltext/sud/ako/vsk/aya/2.pdf +http://vologda-oblast.ru/ru/government/municipalities/atu/index.php?okato_15=19+220+824+001 +https://web.archive.org/web/20160316141411/http://www.festival-cannes.com/en/archives/1949/inCompetition.html +https://www.imdb.com/Sections/Awards/Cannes_Film_Festival/1949 +http://web.archive.org/web/20081207135231/http://www.imdb.com/Sections/Awards/Cannes_Film_Festival/1949 +https://www.openstreetmap.org/?mlat=57.2673806&mlon=61.2202694&zoom=14 +https://www.openstreetmap.org/?mlat=57.2673806&mlon=61.2202694&zoom=14 +https://classinform.ru/okato/search.php?str=65236825001 +https://classinform.ru/oktmo/search.php?str=65720000171 +https://dimastbkbot.toolforge.org/gkgn/?gkgn_id=0093284 +http://sverdl.gks.ru/wps/wcm/connect/rosstat_ts/sverdl/resources/c081bf004cb2e2e8b07efb98f842dd0b/численность+и+размещение+населения+свердловской+области.rar +https://web.archive.org/web/20130928005625/http://sverdl.gks.ru/wps/wcm/connect/rosstat_ts/sverdl/resources/c081bf004cb2e2e8b07efb98f842dd0b/численность+и+размещение+населения+свердловской+области.rar +http://quist.pro/books/sverdlovskaya_oblast_10.k.12.php +http://lingvarium.org/russia/settlem-database.shtml +https://web.archive.org/web/20201117084918/http://lingvarium.org/russia/settlem-database.shtml +https://books.google.com/books?id=7gy0bsbQ0JkC&pg=PA91&lpg=PA91 +https://books.google.com/books?id=-2o4Ywn4LJwC&pg=PA115 +https://www.nytimes.com/1947/12/15/archives/henry-james-bead-of-annuity-board-winner-of-30-pufitzer-prize-for.html +https://www.nytimes.com/1947/12/15/archives/obituary-1-no-title.html +https://books.google.com/books?id=63nvmt4HqTEC&pg=PA171&lpg=PA171 +https://www.nytimes.com/1938/09/02/archives/mrs-blagden-wed-in-home-cermony-daughter-of-late-william-h-drapers.html +https://books.google.com/books?id=Zh7PBQAAQBAJ&pg=PT294&lpg=PT294 +https://www.questia.com/library/book/charles-w-eliot-president-of-harvard-university-1869-1909-by-henry-james.jsp +https://www.nytimes.com/1917/06/12/archives/miss-cutting-one-of-brides-of-a-day-daughter-of-mrs-bayard-cutting.html +https://www.gutenberg.org/ebooks/authors/search/?query=James,%2BHenry%2B1879-1947 +http://www.findagrave.com/cgi-bin/fg.cgi?page=gr&GRid=93759681 +https://www.gutenberg.org/ebooks/author/37161 +https://www.findagrave.com/cgi-bin/fg.cgi?page=gr&GRid=93759681 +http://isni-url.oclc.nl/isni/0000000109834464 +https://id.loc.gov/authorities/n93044646 +https://data.bibliotheken.nl/id/thes/p134864581 +https://viaf.org/processed/NUKAT%7Cn2010118746 +https://www.idref.fr/083769692 +https://viaf.org/viaf/68139471 +https://www.worldcat.org/identities/containsVIAFID/68139471 +http://www.fa.ru/chair/mark/pps/Documents/CV.TebekinA.V.pdf +https://web.archive.org/web/20160910095131/http://www.fa.ru/chair/mark/pps/Documents/CV.TebekinA.V.pdf +https://www.ozon.ru/person/2643886/ +http://urait.ru/izdatelstvo/our_authors/865EA866-CC7B-4199-8FD5-0B07E4A06937 +http://www.muiv.ru/vestnik/eu/redsovet/ +http://www.interun.ru/science/nauchnye-tsentry/tsentr-islelovaeniya-problem-razvitiya-ekonomiki/direktor-tsentra-issledovaniya-problem-ekonomiki.php +https://web.archive.org/web/20161110105705/http://www.interun.ru/science/nauchnye-tsentry/tsentr-islelovaeniya-problem-razvitiya-ekonomiki/direktor-tsentra-issledovaniya-problem-ekonomiki.php +https://mgimo.ru/people/tebekin/ +http://economy-lib.com/metodologiya-upravleniya-innovatsionno-investitsionnoy-deyatelnostyu-v-sfere-informatsionnyh-tehnologiy +http://absopac.rea.ru/opacunicode/index.php?url=/notices/index/IdNotice:109551/Source:default +http://catalog.turgenev.ru/opac/index.php?url=/notices/index/IdNotice:166591/Source:default +https://www.ozon.ru/context/detail/id/7579776/ +http://www.book.ru/book/230832 +http://absopac.rea.ru/OpacUnicode/index.php?url=/notices/index/IdNotice:142020/Source:default +http://bookmix.ru/book.phtml?id=163626 +http://nbmgu.ru/search/default.aspx?Алексей%20Васильевич.%20Управление%20качеством%20учеб.%20для%20бакалавров&cat=BOOK&q=Тебекин +http://rucont.ru/efd/212299 +http://www.bookvoed.ru/book?id=3218931 +http://www.bgshop.ru/Details.aspx?id=9855331 +https://mmedia.ozon.ru/multimedia/book_file/1002960585.pdf +http://www.knorusmedia.ru/db_files/pdf/3716.pdf +https://web.archive.org/web/20160813223551/http://www.knorusmedia.ru/db_files/pdf/3716.pdf +http://static.my-shop.ru/product/pdf/113/1120347.pdf +https://web.archive.org/web/20160814054932/http://static.my-shop.ru/product/pdf/113/1120347.pdf +http://www.bookvoed.ru/book?id=473526 +https://www.hse.ru/pubs/share/direct/demo_document/74733949 +https://web.archive.org/web/20160817043544/https://www.hse.ru/pubs/share/direct/demo_document/74733949 +http://www.bookvoed.ru/book?id=4243238 +http://www.book.ru/book/914520 +https://web.archive.org/web/20140830140259/http://www.book.ru/book/914520 +http://www.sibup.ru/virtualnye-vystavki/138-teoriya-menedzhmenta/628-funktsionalnye-oblasti-menedzhmenta +http://www.bookvoed.ru/book?id=5641727 +http://www.bookvoed.ru/book?id=6267794 +http://www.bookvoed.ru/book?id=6146135 +http://rus.logobook.ru/prod_show.php?object_uid=2188011 +https://web.archive.org/web/20160623011727/http://rus.logobook.ru/prod_show.php?object_uid=2188011 +http://www.bookvoed.ru/book?id=3291188 +https://www.ozon.ru/context/detail/id/31754349/ +http://static.my-shop.ru/product/pdf/186/1850890.pdf +http://www.mdk-arbat.ru/bookcard?book_id=846226 +http://www.book.ru/book/919387 +https://www.ozon.ru/context/detail/id/33692465/ +http://www.chitai-gorod.ru/catalog/book/855355/ +http://www.biblio-online.ru/book/8F99F2BD-EC60-4D8A-897F-B81851E7CB58 +http://www.bookvoed.ru/book?id=6318824 +http://www.bookvoed.ru/book?id=2651771 +http://elibrary.ru/item.asp?id=27364256 +http://elibrary.ru/defaultx.asp +https://www.book.ru/book/920195 +https://elibrary.ru/item.asp?id=25839112 +https://elibrary.ru/item.asp?id=26639595 +https://elibrary.ru/item.asp?id=26734798 +https://elibrary.ru/item.asp?id=27150474 +https://elibrary.ru/item.asp?id=25876930 +https://elibrary.ru/item.asp?id=25859803 +https://elibrary.ru/item.asp?id=29354153 +https://elibrary.ru/item.asp?id=29836499 +https://elibrary.ru/item.asp?id=29871339 +https://elibrary.ru/item.asp?id=30573032 +https://elibrary.ru/item.asp?id=30568235 +https://elibrary.ru/item.asp?id=30568266 +https://elibrary.ru/item.asp?id=30567325 +https://elibrary.ru/item.asp?id=30569565 +https://elibrary.ru/item.asp?id=30571835 +https://elibrary.ru/item.asp?id=35015413 +https://elibrary.ru/item.asp?id=35150889 +https://elibrary.ru/item.asp?id=35137431 +https://elibrary.ru/item.asp?id=36642189 +https://elibrary.ru/item.asp?id=36538607 +https://www.openstreetmap.org/?mlat=55.7605&mlon=37.5746&zoom=14 +https://web.archive.org/web/20130803064051/http://www.minregion.ru/ +http://www.gks.ru/bgd/free/b04_03/IssWWW.exe/Stg/d04/plat23.htm +http://www.consultant.ru/law/hotdocs/36961.html +http://base.garant.ru/70733440/ +https://rg.ru/2008/10/17/zampred-dok.html +https://rg.ru/2008/10/17/minregion-dok.html +http://www.minregion.ru/ +https://bigenc.ru/text/2215799 +https://viaf.org/viaf/171755862 +https://www.worldcat.org/identities/containsVIAFID/171755862 +http://www.klisf.info/numeric/index.app?cmd=match&lang=ru&id=780293190568096 +https://web.archive.org/web/20130730234833/http://www.klisf.info/numeric/index.app?cmd=match&lang=ru&id=780293190568096 +http://www.klisf.info/numeric/index.app?cmd=match&lang=ru&id=015370798692015 +https://web.archive.org/web/20130731092904/http://www.klisf.info/numeric/index.app?cmd=match&lang=ru&id=015370798692015 +http://footballfacts.ru/players/109799 +http://football.odessa.ua/person/?577 +http://www.leeminho.kr/ +http://www.asiae.co.kr/news/view.htm?sec=ent5&idxno=2010042808580745367 +http://www.globaltimes.cn/content/776160.shtml +http://www.allkpop.com/article/2013/03/lee-min-ho-to-release-an-album-and-go-on-a-10-city-tour-around-asia +http://www.yesasia.com/global/lee-min-ho-song-for-you-cd-dvd/1036919939-0-0-0-en/info.html +https://www.dramafever.com/news/lee-min-ho-is-the-new-face-of-korean-tourism-to-invite-international-visitors-to-korea/ +https://www.dramafever.com/news/lee-min-ho-appointed-the-honorary-2018-olympics-ambassador-/ +https://www.dramafever.com/news/lee-min-ho-and-aoas-seolhyun-accompany-south-korean-president-at-visit-korea-ceremony/%7B%5B%7Bnotification.object.url%7D%5D%7D +http://www.koreaherald.com/view.php?ud=20150323000681 +http://www.modernkoreancinema.com/2015/01/review-gangnam-blues-gorgeously.html +https://www.soompi.com/2016/07/02/lee-min-hos-bounty-hunters-shows-impressive-results-chinese-box-office/ +http://en.yibada.com/articles/118003/20160421/lee-min-ho-jeon-ji-hyun-star-new-romantic-comedy-drama.htm +https://www.soompi.com/2017/03/09/lee-min-ho-comes-back-first-single-album-two-years/ +https://www.soompi.com/2017/04/04/lee-min-ho-shares-intense-2-year-experience-dmz/ +https://www.soompi.com/2017/05/11/lee-min-ho-officially-begins-mandatory-military-service/ +http://www.yesasia.ru/article/498029 +http://www.leeminho.kr/ +https://www.imdb.com/name/nm3316279/ +https://www.facebook.com/OfficialLeeMinho +https://weibo.com/actorleeminho +https://twitter.com/ActorLeeMinHo +https://music.apple.com/ru/artist/651808926 +https://instagram.com/actorleeminho +https://www.last.fm/ru/music/이민호 +https://www.last.fm/ru/music/%EC%9D%B4%EB%AF%BC%ED%98%B8 +https://www.csfd.cz/tvurce/47342 +https://www.imdb.com/name/nm3316279 +https://www.kinopoisk.ru/name/1772349/ +https://musicbrainz.org/artist/7925c8d9-0e6d-47db-aae3-f995da2d3965 +http://isni-url.oclc.nl/isni/0000000463534456 +https://id.loc.gov/authorities/no2019017702 +https://viaf.org/viaf/113150746855916300428 +https://www.worldcat.org/identities/containsVIAFID/113150746855916300428 +https://www.openstreetmap.org/?mlat=52.508&mlon=-2.089&zoom=11 +https://www.openstreetmap.org/?mlat=52.508&mlon=-2.089&zoom=11 +http://www.dudley.gov.uk/ +http://www.neighbourhood.statistics.gov.uk/dissemination/LeadTableView.do?a=3&b=276802&c=dudley&d=13&e=13&g=375240&i=1001x1003x1004&m=0&r=1&s=1206389479371&enc=1&dsFamilyId=1812 +https://books.google.ru/books?id=mQovr42wLOwC&pg=PA271#v=onepage&q&f=false +http://www.computer50.org/kgill/atlas/atlas.html +https://web.archive.org/web/20120728105352/http://www.computer50.org/kgill/atlas/atlas.html +http://elearn.cs.man.ac.uk/~atlas/docs/The%20Atlas%20story.pdf +https://web.archive.org/web/20131203004354/http://elearn.cs.man.ac.uk/~atlas/docs/The%20Atlas%20story.pdf +http://www.oneonta.edu/faculty/zhangs/csci201/general%20Floating%20Point%20Format.htm +http://www.computerconservationsociety.org/resurrection.htm +http://www.cs.utexas.edu/users/dburger/teaching/cs395t-s08/papers/11_virtual.pdf +https://dx.doi.org/10.1093%2Fcomjnl%2F4.3.222 +https://dx.doi.org/10.1093%2Fcomjnl%2F4.3.226 +http://www.chilton-computing.org.uk/acl/technology/atlas/p019.htm +https://dx.doi.org/10.1093%2Fcomjnl%2F5.3.238 +https://archive.org/details/historyofcomputi02edwill +http://history.dcs.ed.ac.uk/archive/docs/atlasautocode.html +http://web.archive.org/web/20200515162312/http://history.dcs.ed.ac.uk/archive/docs/atlasautocode.html +http://elearn.cs.man.ac.uk/~atlas/ +http://web.archive.org/web/20140817103744/http://elearn.cs.man.ac.uk/~atlas/ +https://books.google.com/books?id=G-5Lprycc7kC&printsec=frontcover +http://www.vostlit.info/Texts/rus14/Avril/text3.phtml?id=9156 +http://www.vostlit.info/Texts/rus14/Avril/text.phtml?id=627 +http://www.vostlit.info/Texts/rus14/Avril/text2.phtml?id=4021 +http://worldhistoryconnected.press.illinois.edu/10.3/forum_vermote.html +http://www.ceeol.com/aspx/getdocument.aspx?logid=5&id=c78276da-0553-4989-812a-4eedb13c0e24 +https://www.newadvent.org/cathen/02162b.htm +https://catalogue.bnf.fr/ark:/12148/cb12177405k +https://d-nb.info/gnd/100420273 +http://isni-url.oclc.nl/isni/0000000080818013 +https://id.loc.gov/authorities/n85053798 +https://data.bibliotheken.nl/id/thes/p069933308 +https://viaf.org/processed/NUKAT%7Cn2013204882 +https://www.idref.fr/030337682 +https://viaf.org/viaf/2514565 +https://www.worldcat.org/identities/containsVIAFID/2514565 +https://www.youtube.com/watch?v=K5Lj5wykOQI +http://militera.lib.ru/h/kulikov_sm/01.html +http://www.iss-atom.ru/pub/pub-82.htm +http://www.iss-atom.ru/sssr2/1_10.htm +https://www.imdb.com/name/nm0519116/ +http://www.adultfilmdatabase.com/actor.cfm?actorid=2021 +https://www.iafd.com/person.rme/perfid=MikeLong/gender=m +http://michaelstefanoxxx.com +http://www.adultvideonews.com/archives/200101/inner/iv0101_01.html +https://web.archive.org/web/20010411210106/http://www.adultvideonews.com/archives/200101/inner/iv0101_01.html +http://www.iafd.com/person.rme/perfid=MikeLong/gender=male +http://www.xbiz.com/news/124633/michael-stefano-retires-from-porn +http://www.adultfyi.com/read.php?ID=43765 +https://web.archive.org/web/20140203003622/http://www.adultfyi.com/read.php?ID=43765 +http://www.xbiz.com/news/89627/hush-hush-entertainment-inks-michael-stefano +http://www.xbiz.com/features/83389/red-light-district +http://www.dirtybob.com/xrco/oldies.html +http://www.avn.com/index.php?Primary_Navigation=Articles&Action=View_Article&Content_ID=55832 +https://web.archive.org/web/20070608213642/http://www.avn.com/index.php?Primary_Navigation=Articles&Action=View_Article&Content_ID=55832 +http://forum.adultdvdtalk.com/adam-film-world-awards-winners/reply/509361#post +https://avn.com/business/articles/video/2009-avn-award-winners-announced-56551.html +http://avnawards.avn.com/about/nominees.html +https://web.archive.org/web/20091026142002/http://avnawards.avn.com/about/nominees.html +http://business.avn.com/articles/video/AVN-Announces-the-Winners-of-the-2011-AVN-Awards-421782.html +https://www.imdb.com/name/nm0519116/ +https://avn.com/porn-stars/michael-stefano-226360.html +https://www.adultfilmdatabase.com/actor.cfm?actorid=2021 +https://www.csfd.cz/tvurce/95110 +https://www.imdb.com/name/nm0519116 +https://www.kinopoisk.ru/name/893524/ +https://catalogue.bnf.fr/ark:/12148/cb140442482 +http://isni-url.oclc.nl/isni/0000000368204889 +https://viaf.org/viaf/17423914 +https://www.worldcat.org/identities/containsVIAFID/17423914 +https://www.openstreetmap.org/?mlat=55.3742&mlon=32.0032&zoom=12 +https://www.openstreetmap.org/?mlat=55.3742&mlon=32.0032&zoom=12 +http://oopt.aari.ru/ref/1689 +http://www.poozerie.ru/files/397/letopis-prirody-2018.pdf +http://mesto-kleva.ru/map/778.html +https://smol.aif.ru/society/k_ozeru_v_smolenskom_poozere_zakryli_proezd +https://starye-karty.litera-ru.ru/karty/!voen-3v/r12list10-d.html +https://www.ipni.org/?q=name%20author%3AVerdc. +https://www.ipni.org/a/11132-1 +http://d-nb.info/gnd/121554686/ +https://dx.doi.org/10.2982%2F028.100.0101 +http://ask.bibsys.no/ask/action/result?cmd=&kilde=biblio&cql=bs.autid+%3D+90139061&feltselect=bs.autid +https://catalogue.bnf.fr/ark:/12148/cb12400311m +https://d-nb.info/gnd/121554686 +http://isni-url.oclc.nl/isni/0000000066475501 +https://id.loc.gov/authorities/n89639215 +https://data.bibliotheken.nl/id/thes/p07165738X +https://www.idref.fr/033102643 +https://viaf.org/viaf/227260965 +https://www.worldcat.org/identities/containsVIAFID/227260965 +http://www.catholic-hierarchy.org/bishop/bfelicip.html +https://www.treccani.it/enciclopedia/periele-felici_(Dizionario-Biografico) +https://www.catholic-hierarchy.org/bishop/bfelicip.html +https://www.openstreetmap.org/?mlat=45.7901083&mlon=28.5735500&zoom=12 +https://www.openstreetmap.org/?mlat=46.1343278&mlon=28.3005111&zoom=15 +https://www.openstreetmap.org/?mlat=45.7901083&mlon=28.5735500&zoom=12 +http://old.meteo.md/mold/ialpug.pdf +http://www.old.mtid.gov.md/sites/default/files/raportul.doc +https://ipen.org/sites/default/files/documents/1mol_moldova_without_pops-ru.pdf +https://www.thoughtco.com/how-many-supreme-court-justices-are-there-104778 +https://www.livescience.com/9857-9-supreme-court-justices.html +https://archive.org/details/unset0000unse_f0e8 +http://www.supremecourthistory.org/04_library/subs_volumes/04_c20_e.html +https://web.archive.org/web/20081120003316/http://www.supremecourthistory.org/04_library/subs_volumes/04_c20_e.html +https://archive.org/details/justicesofunited0000unse +https://archive.org/details/oxfordcompaniont00hall +https://archive.org/details/ussupremecourtbi0000mart +https://archive.org/details/nineinsidesec00toob +https://archive.org/details/supremecourtjust00melv/page/590 +https://archive.org/details/supremecourtjust00melv/page/590 +https://viewer.rusneb.ru/ru/rsl01003789364?page=150 +http://napoleonic.ru/история/персоналии/сомов-захар-константинович +http://www.dok-leipzig.de/ +http://www.dok-leipzig.de/ +https://catalogue.bnf.fr/ark:/12148/cb135615291 +https://d-nb.info/gnd/4474712-3 +https://id.loc.gov/authorities/n98026763 +http://aut.nkp.cz/pna2015892261 +https://www.idref.fr/082303754 +https://viaf.org/viaf/156794338 +https://www.worldcat.org/identities/containsVIAFID/156794338 +https://books.google.com/books?id=VoJ5nUyIzCsC&pg=PA117 +http://ssd.jpl.nasa.gov/sbdb.cgi?sstr=1468 +http://www.minorplanetcenter.net/db_search/show_object?object_id=1468 +https://www.openstreetmap.org/?mlat=24.73333&mlon=88.41667&zoom=12 +https://www.openstreetmap.org/?mlat=24.73333&mlon=88.41667&zoom=12 +https://web.archive.org/web/20120904114726/http://www.banglapedia.org/httpdocs/HT/N_0009.HTM +https://catalogue.bnf.fr/ark:/12148/cb17052928h +http://www.adonde.com/presidentes/1930sanchezcerro.htm +https://www.britannica.com/biography/Luis-M-Sanchez-Cerro +https://catalogue.bnf.fr/ark:/12148/cb17052928h +http://isni-url.oclc.nl/isni/0000000021904405 +https://id.loc.gov/authorities/n80144809 +https://viaf.org/viaf/72702590 +https://www.worldcat.org/identities/containsVIAFID/72702590 +http://muenze.hamburg.de/historie/ +http://www.numispedia.de/Hamburg%2C_Pr%E4gest%E4tte +https://www.bundesbank.de/Redaktion/EN/Standardartikel/Bundesbank/Coin_and_banknote_collection/portugaloser.html +http://www.numispedia.de/Hamburg%2C_Pr%E4gest%E4tte +http://www.medievalcoinage.com/gallery/germany-hamburg.htm +https://bonistika.net/index.php?site=1&par=1&id=1577 +http://colnect.com/uk/banknotes/list/country/56667-Німецькі_нотгельди/series/244106-Hamburg +http://muenze.hamburg.de/historie/ +http://muenze.hamburg.de +http://www.1up.com/games/gen/scooby-doo-mystery +https://web.archive.org/web/20160530110201/http://www.1up.com/games/gen/scooby-doo-mystery/ +https://www.youtube.com/watch?v=bfGfiYpPxtM +http://www.tv.com/shows/scooby-doo-where-are-you/ +http://www.behindthevoiceactors.com/video-games/Scooby-Doo-Mystery/ +http://www.ign.com/games/scooby-doo-mystery/gen-9286 +http://www.sega-16.com/2006/02/scooby-doo-mystery/ +http://videogamecritic.com/gensam.htm +http://www.gamerankings.com/genesis/586443-scooby-doo-mystery/index.html +https://web.archive.org/web/20090219095950/http://romomania.info/online/10/ig0.html +http://chief-net.ru/index.php?option=com_content&task=view&id=143&Itemid=39 +http://www.gamespot.com/scooby-doo-mystery/ +http://www.royalark.net/Persia/afshar3.htm +https://www.newyorker.com/magazine/2001/09/03/murder-in-miniature +https://www.nytimes.com/2001/09/02/books/heresies-of-the-paintbrush.html +https://tvkultura.ru/anons/show/episode_id/1474315/brand_id/59489/ +https://www.orhanpamuk.net/popuppage.aspx?id=57&lng=eng +https://web.archive.org/web/20200110183512/https://www.orhanpamuk.net/popuppage.aspx?id=57&lng=eng +https://www.theguardian.com/books/2004/oct/23/fiction.orhanpamuk +https://www.bbc.co.uk/programmes/b00cw7mw +https://kamalteatr.ru/about-the-theatre/repertoire/minem-isemem-kyzyl-menya-zovut-krasnyy/ +https://www.fragrantica.com/news/Mon-Nom-Est-Rouge-by-Majda-Bekkali-4201.html +http://www.orhanpamuk.net/news.aspx?id=25&lng=eng +https://web.archive.org/web/20181128075325/http://www.orhanpamuk.net/news.aspx?id=25&lng=eng +http://www.dublinliteraryaward.ie/nominees/my-name-is-red/ +https://fantlab.ru/work280211 +https://www.orhanpamuk.net/prizes.aspx +https://web.archive.org/web/20200219174844/http://www.orhanpamuk.net/prizes.aspx +https://www.orhanpamuk.net/book.aspx?id=62&lng=eng +https://www.newyorker.com/magazine/2001/09/03/murder-in-miniature +https://www.nytimes.com/2001/09/02/books/heresies-of-the-paintbrush.html +https://www.theguardian.com/books/2001/aug/05/fiction.orhanpamuk +https://www.theguardian.com/education/2001/sep/15/highereducation.fiction +https://www.transfermarkt.com/transfermarkt/profil/spieler/81664 +https://www.discogs.com/artist/3824104 +http://www.vfb.de/en/aktuell/news/2008/28233.php +http://www.fussball.ch/Armin+Veh+zu+Eintracht+Frankfurt/494192/detail.htm +http://www.t-online.de/sport/fussball/bundesliga/id_62714650/armin-veh-bleibt-noch-ein-weiteres-jahr-bei-eintracht-frankfurt.html +http://www.kicker.de/news/fussball/bundesliga/startseite/600351/artikel_veh-verlaesst-die-eintracht---kommt-babbel.html +http://www.vfb.de/de/aktuell/meldungen/news/2014/armin-veh-pressemitteilung/page/7904-1-3-.html +https://web.archive.org/web/20140512213345/http://www.vfb.de/de/aktuell/meldungen/news/2014/armin-veh-pressemitteilung/page/7904-1-3-.html +http://www.vfb.de/de/aktuell/meldungen/news/2014/av-1415/page/8978-1-3-.html?f3 +https://web.archive.org/web/20150429083553/http://www.vfb.de/de/aktuell/meldungen/news/2014/av-1415/page/8978-1-3-.html?f3 +http://www.eintracht.de/aktuell/49680/ +https://web.archive.org/web/20150627080556/http://www.eintracht.de/aktuell/49680/ +https://sport.mail.ru/news/football-foreign/25052334/ +https://web.archive.org/web/20170426054839/https://sport.mail.ru/news/football-foreign/25052334/ +http://www.eintracht.de/news/artikel/eintracht-frankfurt-trennt-sich-von-armin-veh-53946/ +https://web.archive.org/web/20161203134149/http://www.eintracht.de/news/artikel/eintracht-frankfurt-trennt-sich-von-armin-veh-53946/ +https://www.footballdatabase.eu/en/player/details/2789 +https://www.kooora.com/default.aspx?player=33339 +https://www.transfermarkt.com/transfermarkt/profil/spieler/81664 +https://www.transfermarkt.com/transfermarkt/profil/trainer/269 +https://www.worldfootball.net/player_summary/armin-veh/ +https://www.discogs.com/artist/3824104 +https://www.munzinger.de/search/go/document.jsp?id=01000006195 +https://catalogue.bnf.fr/ark:/12148/cb16740263g +https://www.thecanadianencyclopedia.ca/en/article/yvonne-hubert-emc/ +http://www.thecanadianencyclopedia.com/articles/fr/emc/yvonne-hubert +https://www.transfermarkt.com/transfermarkt/profil/spieler/516407 +https://www.novosti.rs/%D0%B2%D0%B5%D1%81%D1%82%D0%B8/%D1%81%D0%BF%D0%BE%D1%80%D1%82.434.html:702032-Bojan-Radulovic---Srpski-biser-iz-Ljeide +https://www.eurosport.co.uk/football/brighton-sign-young-striker-radulovic-from-lleida_sto6509023/story.shtml +https://www.brightonandhovealbion.com/news/1269019/radulovic-returns-to-spain-on-loan +https://www.brightonandhovealbion.com/news/1592669/under-23-forward-heads-to-alaves +https://www.aikfotboll.se/nyheter/bojan-radulovic-samoukovic-till-aik-fotboll-2020-08-17 +https://int.soccerway.com/matches/2020/09/13/sweden/allsvenskan/malmo-fotbollsforening/allmanna-idrottsklubben/3282058/ +https://www.aikfotboll.se/spelare/2020-herr-bojan-radulovic-samoukovic +https://fbref.com/en/players/cbeed9e6/ +https://int.soccerway.com/players/bojan-radulovic/495230/ +https://www.transfermarkt.com/transfermarkt/profil/spieler/516407 +http://www.yp.ru/ +http://inventors.about.com/od/xyzstartinventions/a/yellow_pages.htm +http://blog.plaincodesource.ws/2013/06/blog-post_16.html +https://www.webcitation.org/6IPap5kNg?url=http://blog.plaincodesource.ws/2013/06/blog-post_16.html +http://www.yellowpages.com +http://www.eadp.org/ +https://uk.soccerway.com/matches/2019/12/03/azerbaijan/cup/fc-inter-baki/fk-ganja/3184760/?ICID=HP_MS_62_01 +https://uk.soccerway.com/matches/2019/12/04/azerbaijan/cup/zira/neftchi-ism-baki/3184759/ +https://uk.soccerway.com/matches/2019/12/04/azerbaijan/cup/azerbaijan-sabah-fk/fc-asu/3184758/ +https://uk.soccerway.com/matches/2019/12/04/azerbaijan/cup/fk-khazar-sumgayet/zaqatala/3184761/ +https://uk.soccerway.com/matches/2019/12/15/azerbaijan/cup/fk-qabala/azerbaijan-sabah-fk/3184762/ +https://uk.soccerway.com/matches/2019/12/19/azerbaijan/cup/azerbaijan-sabah-fk/fk-qabala/3184763/ +https://uk.soccerway.com/matches/2019/12/15/azerbaijan/cup/sabail/zira/3184764/ +https://uk.soccerway.com/matches/2019/12/19/azerbaijan/cup/zira/sabail/3184765/ +https://uk.soccerway.com/matches/2019/12/16/azerbaijan/cup/fk-neftchi/fk-khazar-sumgayet/3184766/ +https://uk.soccerway.com/matches/2019/12/20/azerbaijan/cup/fk-khazar-sumgayet/fk-neftchi/3184767/ +https://uk.soccerway.com/matches/2019/12/16/azerbaijan/cup/fk-karabakh-agdam/fc-inter-baki/3184768/ +https://uk.soccerway.com/matches/2019/12/20/azerbaijan/cup/fc-inter-baki/fk-karabakh-agdam/3184769/ +http://azerifootball.com/ru/10/news/44392.html +http://azerifootball.com/ru/10/news/44382.html +http://azerifootball.com/ru/10/news/44487.html +http://azerifootball.com/ru/10/news/44498.html +http://azerifootball.com/ru/10/news/44531.html +http://azerifootball.com/ru/10/news/44541.html +https://www.affa.az/index.php/news/craiyy-komitsinin-iclas-keirilib/66567 +https://archive.org/details/jailedforfreedo01stevgoog +http://svvpsu.ru/historia.htm +https://c-pravda.ru/news/2017-06-01/chest-imeyu-ya---simferopolec +https://web.archive.org/web/20160304065621/http://svvpsu.ru/index.php?option=com_content&task=view&id=22&Itemid=89 +http://services.biathlonresults.com/athletes.aspx?IbuId=BTROM22903198901 +http://www.frschibiatlon.ro/sportivi_biatlon_detalii.php?idSportiv=11 +http://zakon.rada.gov.ua/cgi-bin/laws/main.cgi?nreg=1331%2F97 +https://web.archive.org/web/20121101174058/http://slovari.yandex.ru/~%D0%BA%D0%BD%D0%B8%D0%B3%D0%B8/%D0%92%D0%BE%D0%BA%D0%B0%D0%BB%D1%8C%D0%BD%D0%BE-%D1%8D%D0%BD%D1%86%D0%B8%D0%BA%D0%BB%D0%BE%D0%BF%D0%B5%D0%B4%D0%B8%D1%87%D0%B5%D1%81%D0%BA%D0%B8%D0%B9%20%D1%81%D0%BB%D0%BE%D0%B2%D0%B0%D1%80%D1%8C/%D0%A6%D1%83%D1%80%D0%BA%D0%B0%D0%BD%20%D0%9B%D1%8E%D0%B4%D0%BC%D0%B8%D0%BB%D0%B0%20%D0%93%D0%B5%D0%BE%D1%80%D0%B3%D0%B8%D0%B5%D0%B2%D0%BD%D0%B0%20(1934)/ +https://commonchemistry.cas.org/detail?cas_rn=25953-19-9 +https://pubchem.ncbi.nlm.nih.gov/compound/33255 +http://www.drugbank.ca/drugs/DB01327 +http://www.whocc.no/atc_ddd_index/?code=J01DB04 +http://www.whocc.no/atcvet/atcvet_index/?code=QJ51DA04 +https://www.ncbi.nlm.nih.gov/pubmed/758399 +http://www.whocc.no/atc_ddd_index/?code=J01D +http://www.regmed.ru/search.asp +https://commonchemistry.cas.org/detail?cas_rn=10049-10-2 +https://pubchem.ncbi.nlm.nih.gov/compound/66229 +http://chemapps.stolaf.edu/jmol/jmol.php?model=F%5BCr%5DF +http://chemapps.stolaf.edu/jmol/jmol.php?&model=InChI=InChI%26%2361%3B1S%2FCr.2FH%2Fh%26%2359%3B2%2A1H%2Fq%2B2%26%2359%3B%26%2359%3B%2Fp-2 +https://www.ncbi.nlm.nih.gov/sites/entrez?cmd=search&db=pccompound&term=%22RNFYGEKNFJULJY-UHFFFAOYSA-L%22%5BInChIKey%5D +https://www.chemspider.com/Chemical-Structure.59614.html +https://www.openstreetmap.org/?mlat=52.33389&mlon=19.86583&zoom=11 +https://www.openstreetmap.org/?mlat=52.33389&mlon=19.86583&zoom=11 +https://snaccooperative.org/ark:/99166/w6v14bjr +https://history.rcplondon.ac.uk/inspiring-physicians/nathaniel-salmon +https://doi.org/10.1093/ref:odnb/24555 +http://isni-url.oclc.nl/isni/000000000191899X +https://id.loc.gov/authorities/n85015971 +https://data.bibliotheken.nl/id/thes/p339715405 +https://viaf.org/viaf/34826028 +https://www.worldcat.org/identities/containsVIAFID/34826028 +https://www.bbc.co.uk/programmes/articles/5GN9CYyLwdZh7pBJWkThBR/11-things-you-might-not-know-about-gareth-southgate +http://football.kulichki.net/worldnews/news.htm?536525 +https://www.theguardian.com/football/2018/jun/11/gareth-southgate-posh-boy-crystal-palace-simon-osborn-bobby-bowry +http://ukfootball.ru/championship-0218.html +https://www.webcitation.org/66KR6zEMa?url=http://ukfootball.ru/championship-0218.html +http://www.sports.ru/football/1046159563.html +https://www.championat.com/football/news-3625879-sautgejt---trener-goda-v-anglii.html +https://online-bookmakers.com/novosti-bukmekerov/garet-sautgejt-podtverdil-chto-u-nego-byl-polozhitelnyj-rezultat-testa-na-covid-19/ +https://football.kulichki.net/worldnews/news.htm?657417 +https://www.heart.co.uk/showbiz/celebrities/gareth-southgate-wife-england-football-manager/ +https://www.bbc.com/news/uk-46693826 +https://news.sky.com/story/coronavirus-gareth-southgate-agrees-30-pay-cut-but-players-yet-to-follow-11968714 +http://www.thefa.com/england/mens-seniors/squad/gareth-southgate +https://twitter.com/GarethSouthgate +https://bdfa.com.ar/jugadores-73136.html +https://www.bdfutbol.com/en/j/j93722.html +http://www.cup2002.ru/1961.shtml +http://www.englandfootballonline.com/TeamPlyrsBios/PlayersS/BioSouthgateG.html +http://www.englandfootballonline.com/TeamMgr/Mgr_Southgate.html +https://eu-football.info/_player.php?id=19788 +https://eu-football.info/_manager.php?id=1479 +https://fbref.com/en/players/a29c3ed6/ +https://www.footballdatabase.eu/en/player/details/2025 +https://www.fussballdaten.de/person/gareth-southgate/ +https://www.lequipe.fr/Football/FootballFicheJoueur6033.html +https://www.national-football-teams.com/player/2161.html +https://www.soccerbase.com/players/player.sd?player_id=7497 +https://www.soccerbase.com/managers/manager.sd?manager_id=2034 +https://int.soccerway.com/players/southgate/104780/ +https://www.thefinalball.com/player.php?id=1608 +https://www.thefinalball.com/coach.php?id=427 +https://www.transfermarkt.com/transfermarkt/profil/spieler/3744 +https://www.transfermarkt.com/transfermarkt/profil/trainer/3358 +https://www.worldfootball.net/player_summary/gareth-southgate/ +https://www.imdb.com/name/nm1351943 +https://d-nb.info/gnd/173816606 +http://isni-url.oclc.nl/isni/0000000038919603 +https://id.loc.gov/authorities/nb98046894 +https://viaf.org/viaf/58572356 +https://www.worldcat.org/identities/containsVIAFID/58572356 +https://www.iihf.com/en/events/2022/wmia +http://stats.iihf.com/Hydra/758/index.html +https://www.iihf.com/en/events/2022/wmib +http://stats.iihf.com/Hydra/762/index.html +https://www.youtube.com/watch?v=8cNIGPkTTGA +http://дхш-муром.рф/ +http://www.murom.info/node/6077 +https://web.archive.org/web/20160304125414/http://www.murom.info/node/6077 +http://murom.bezformata.ru/listnews/tvorchestva-hudozhnika-andreya-morozova/4503600/ +http://www.cbs.izmuroma.ru/?op=page&name=zel_lampa_4_2011 +http://www.murom.ru/node/346 +http://www.vshr.ru/морозов-а-а/ +https://t.me/Davron_Fayziev +http://championat.asia/ru/news/taniqli-sharhlovchi-davron-fayziev-uzreport-tv-telekanalida-ish-boshladi +http://news.uzreport.uz/news_10_r_140129.html +http://ufa.uz/ru/2019/07/09/departament-press-i-media-afu-vozglavil-novy-direktor +https://t.me/Davron_Fayziev +https://t.me/Davron_Fayziev +https://www.instagram.com/davronfayziev_official/ +https://www.youtube.com/channel/UClwQAfjUh0Vq7lJByiPUCcg +https://twitter.com/davron_fayziev +https://www.facebook.com/davronfayzievcom +http://groups.yahoo.com/group/celt-saints/message/4181 +https://web.archive.org/web/20101101195312/http://home.scarlet.be/amdg/oldies/sankt/avr28.html +https://www.findmypast.co.uk/search/results?sourcecategory=life+events+%28bmds%29&collection=civil+births&firstname=courtney&lastname=hadwin&sourcecountry=great+britain +https://twitter.com/CourtneyHadwin/status/1015299936466931713 +https://www.itv.com/thevoicekidsuk/singers/courtney +https://etonline.com/americas-got-talent-13-year-old-with-social-anxiety-turns-into-janis-joplin-when-she-sings-104089 +https://www.nbc.com/americas-got-talent/credits/credit/season-13/courtney-hadwin +https://www.nbc.com/americas-got-talent/exclusives/agtlive-s13 +https://www.marathi.tv/reality-tv-stars/courtney-hadwin/ +https://inverness-courier.co.uk/News/Inverness-grandad-is-so-proud-of-Voice-Kids-star-Courtney-13072017.htm +https://www.chroniclelive.co.uk/whats-on/music-nightlife-news/watch-courtney-hadwin-peterlee-school-10120014 +https://www.hexham-courant.co.uk/news/16612875.americas-got-talent-star-courtney-hadwin-prepares-for-live-shows/ +https://www.facebook.com/CourtneyHadwin +https://twitter.com/CourtneyHadwin +https://instagram.com/courtneyhadwin +https://youtube.com/channel/UC7teONMQPF1_g3YCv-lEtfQ +https://www.imdb.com/name/nm9905257 +https://musicbrainz.org/artist/5d95321a-fefb-493c-b697-40653b10f781 +https://www.openstreetmap.org/?mlat=-43.567&mlon=170.150&zoom=15 +https://www.openstreetmap.org/?mlat=-43.567&mlon=170.150&zoom=15 +http://peakbagger.com/peak.aspx?pid=11726 +http://www.peakware.com/peaks.html?pk=247 +http://www.summitpost.org/mount-tasman/150454 +http://www.gastronom.ru/article_kb_prod.aspx?id=1002605 +https://www.openstreetmap.org/?mlat=51.51111&mlon=31.24028&zoom=12 +https://www.openstreetmap.org/?mlat=51.51111&mlon=31.24028&zoom=12 +http://maps.yandex.ua/?ll=31.364492%2C51.518126&spn=0.044031%2C0.013334&z=15&l=pmap +https://www.openstreetmap.org/?mlat=51.50000001&mlon=31.30000001&zoom=12 +https://www.openstreetmap.org/?mlat=60.550591&mlon=56.468871&zoom=12 +https://www.openstreetmap.org/?mlat=60.649683&mlon=56.391967&zoom=15 +https://www.openstreetmap.org/?mlat=60.550591&mlon=56.468871&zoom=12 +http://textual.ru/gvr/index.php?card=180450 +https://web.archive.org/web/20131015092212/http://www.mnr.gov.ru/files/part/0306_perechen.rar +https://www.openstreetmap.org/?mlat=56.20583&mlon=112.34944&zoom=17 +https://www.openstreetmap.org/?mlat=56.20583&mlon=112.34944&zoom=17 +http://rasp.yandex.ru/search/?fromName=%D0%AF%D0%BD%D1%87%D1%83%D0%B9&toName=%D0%A2%D0%B0%D0%B9%D1%88%D0%B5%D1%82 +http://rasp.yandex.ru/search/?fromName=%D0%AF%D0%BD%D1%87%D1%83%D0%B9&toName=%D0%A1%D0%B5%D0%B2%D0%B5%D1%80%D0%BE%D0%B1%D0%B0%D0%B9%D0%BA%D0%B0%D0%BB%D1%8C%D1%81%D0%BA +http://rasp.yandex.ru/search/?fromName=%D0%AF%D0%BD%D1%87%D1%83%D0%B9&toName=%D0%A2%D1%8B%D0%BD%D0%B4%D0%B0 +http://tr4.info/station/903825 +http://transsib.ru/way-bam2.htm +http://www.jmuc.co.jp/ +https://www.jmuc.co.jp/en/company/profile/ +https://www.jmuc.co.jp/en/company/business/ +https://www.city.osaka.lg.jp/contents/wdu020/kensetsu/english/rekishi/nakaturu/p05_e.htm +https://www.ihi.co.jp/en/company/history/ +http://www.jfe-eng.co.jp/en/information/history.html +https://www.jmuc.co.jp/en/company/history/ +https://www.jmuc.co.jp/en/company/business/merchant_ship.html +https://www.jmuc.co.jp/en/products/ocean_gas/ +http://intari.com/im/articles/Prirodnyi-gaz-idet-na-smenu-mazutu.pdf +https://www.jmuc.co.jp/en/products/tanker/ +https://www.jmuc.co.jp/en/products/structure/ +https://www.jmuc.co.jp/en/products/offshore/ +https://www.jmuc.co.jp/en/products/equipment/ +https://books.google.ru/books?id=DwQhAQAAIAAJ&q=Ламут +https://books.google.ru/books?id=Ao8eAQAAIAAJ&q=Ламут +https://books.google.ru/books?id=zVEjAQAAIAAJ&q=Ламут +https://books.google.ru/books?id=ONE1AAAAMAAJ&q=Ламут +http://www.38brrzk.ru/photo/korabli-brigady/ +https://books.google.ru/books?id=zKEvAAAAMAAJ&q=типа+омск +https://books.google.ru/books?id=A9ocAAAAIAAJ&q=типа+лисичанск +https://books.google.ru/books?id=SBcnAAAAMAAJ&q=типа+лисичанск +https://www.jmuc.co.jp/en/location/ +https://books.google.ru/books?id=1LwwAQAAIAAJ&q=намура +http://www.armstrade.org/includes/periodics/mainnews/2018/0802/084347946/detail.shtml +http://www.jmuc.co.jp/ +https://tass.ru/encyclopedia/person/beruchashvili-tamar +https://ria.ru/20141111/1032814615.html +https://civil.ge/ru/archives/183463 +https://web.archive.org/web/20191108193511/http://www.mfa.gov.ge/MainNav/DiplomatService/Ministry/Biogra.aspx +https://www.openstreetmap.org/?mlat=48.23722&mlon=129.37972&zoom=11 +https://www.openstreetmap.org/?mlat=48.23722&mlon=129.37972&zoom=11 +http://www.ychxq.gov.cn/ +https://www.openstreetmap.org/?mlat=48.237893&mlon=129.379198&zoom=14 +http://www.xzqh.org/html/list/2897.html +http://law.edu.ru/norm/norm.asp?normID=1241285&subID=100094318,100094328,100094330,100094365,100094349#text +http://www.law.edu.ru/magazine/article.asp?magID=5&magNum=2&magYear=1971&articleID=1170230 +http://www.un.org/russian/documen/declarat/declhr.htm +http://www.rg.ru/oficial/doc/min_and_vedom/plenum/29.shtm +http://law.edu.ru/norm/norm.asp?normID=1241285 +http://law.edu.ru/matlist.asp?themRub=263&docType=0&sortType=1 +http://www.pravozor.ru/ +http://www.library.ru/help/docs/n10349/yk1922.txt +http://www.soldat.ru/files/f/0000025d.doc +http://www.ni-journal.ru/archive/2006/n_506/38b39a96/39cf8ddd +https://web.archive.org/web/20131113055709/http://www.ni-journal.ru/archive/2006/n_506/38b39a96/39cf8ddd/ +http://www.politcom.ru/article.php?id=7439 +https://web.archive.org/web/20120511011529/http://www.politcom.ru/article.php?id=7439 +http://gazeta.ru/social/2009/01/11/2922826.shtml +http://kommersant.ru/doc/1121117 +http://echo.msk.ru/news/689801-echo.html +http://www.akdi.ru/GD/PLEN_Z/2006/04/s26-04.htm +http://www.patriarchia.ru/db/text/254691.html +http://www.russia.ru/video/mamontovbrakoneier/ +http://lenta.ru/news/2009/01/11/heli/ +https://web.archive.org/web/20090205072859/http://life.ru/video/8805 +https://web.archive.org/web/20080919153030/http://www.kremlin.ru/state_subj/27956.shtml +http://www.c-society.ru/wind.php?ID=362 +http://www.lobbying.ru/persons.php?id=489 +http://www.informacia.ru/facts/kosopkin-facts.htm +http://www.kommersant.ru/doc.aspx?DocsID=1272041 +https://www.itis.gov/servlet/SingleRpt/SingleRpt?search_topic=TSN&search_value=153960 +https://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?mode=Info&id=266245 +http://www.nhm.ac.uk/research-curation/research/projects/chalcidoids/perilampidae.html +https://www.zin.ru/journals/trudyzin/supplements.html +http://www.faunaeur.org +http://www.waspweb.org/Chalcidoidea/Perilampidae/Philomidinae/index.htm +http://www.senckenberg.de/root/index.php?page_id=19360 +https://dx.doi.org/10.26049%2FASP77-1-2019-03 +https://web.archive.org/web/20190526115133/http://www.senckenberg.de/root/index.php?page_id=19360 +http://www.entsocont.ca/uploads/3/0/2/6/30266933/138_33_47.pdf +http://www.entsocont.ca/uploads/3/0/2/6/30266933/138_33_47.pdf +http://www.biolib.cz/en/taxon/id17508/ +http://internt.nhm.ac.uk/jdsml/perth/chalcidoids/listChalcids.dsml?Superfamily=Chalcidoidea&Family=Agaonidae +https://youtube.com/watch?v=2ZXm0zVZzcs +http://www.onlineslovari.ru/dic-soc/s/samoopredelenie.html +http://philosophy.niv.ru/doc/dictionary/philosophy/fc/slovar-209-1.htm +https://politike.ru/termin/samoopredelenie.html +https://shchedrovitskiy.com/k-analizu-topiki-organizacionno-deyatelnostnyh-igr/ +https://shchedrovitskiy.com/gde-i-kak-razvorachivaetsja-myshlenie/ +https://www.academia.edu/9736838/_The_Spiritual_Vineyard_of_Sciences_Collection_of_Papers_Вертоград_наук_духовный_сборник_статей_по_истории_высшего_духовного_образования_в_России_ХIХ_начала_ХХ_века +https://www.academia.edu/3555106/_The_system_of_scientific_and_theological_certification_in_Russia_in_the_19th_early_20th_century_Система_научно_богословской_аттестации_в_России_в_XIX_начале_XX_в_М_Изд_во_ПСТГУ_2012_676_с +https://www.academia.edu/3555062/_Russian_theology_Based_on_doctoral_and_masters_dissertations_1870_1918_Русская_богословская_наука_по_докторским_и_магистерским_диссертациям_1870_1918_гг_М_Изд_во_ПСТГУ_2012_374_с +https://pstgu.ru/download/1283630872.suhova.pdf +http://periodical.pstgu.ru/ru/pdf/article/182 +http://periodical.pstgu.ru/ru/pdf/article/358 +http://vestnik1.pstgu.ru/ru/pdf/article/309 +https://ppds.ru/wp-content/uploads/images/news/2006/platonov_chtenia_3_2006.pdf#page=15 +http://periodical.pstgu.ru/ru/pdf/article/494 +https://pstgu.ru/download/1283633905.suhova.pdf +https://periodical.pstgu.ru/ru/pdf/article/669 +http://e-vestnik.ru/interviews/s_nadezhdoj_na/ +https://pstgu.ru/download/1281097110.suhova.pdf +https://pstgu.ru/download/1217075036.publ1.pdf +https://cyberleninka.ru/article/n/znachenie-svyateyshego-sinoda-v-istorii-nauchno-bogoslovskoy-attestatsii-1839-1917 +https://www.academia.edu/23444727/_The_first_orthodox_Doctors_of_Theology_in_Russia_1814_1869_Первые_православные_доктора_богословия_в_России_1814_1869_ +https://cyberleninka.ru/article/n/gosudarstvennaya-politika-rossii-v-sfere-vysshego-duhovnogo-obrazovaniya-xviii-nachalo-xx-v +https://pstgu.ru/download/1239626259.suhova.pdf +https://azbyka.ru/otechnik/books/original/11696-Священное-Писание-и-Предание-в-экклесиологии-святителя-Филарета-(Дроздова).pdf +https://pstgu.ru/download/1283635113.suhova.pdf +https://pstgu.ru/download/1255351159.mazyrin.pdf +https://old.mospat.ru/church-and-time/wp-content/uploads/2010/09/journal46.pdf#page=93 +https://vestnik-mgou.ru/Articles/Doc/673 +https://pstgu.ru/download/1286212337.suhova.pdf +https://pstgu.ru/download/1289224443.suhova2.pdf +https://pstgu.ru/download/1316807891.18-34.pdf +https://pstgu.ru/download/1289224365.suhova1.pdf +https://pstgu.ru/download/1395996716.5_sukhova.pdf +https://www.academia.edu/4047814/_Theological_education_in_Russia_at_the_beginning_of_the_XX_century_by_the_example_of_Kiev_Theological_Academy_Богословское_образование_в_России_в_начале_XX_в_на_примере_Киевской_духовной_академии_ +http://vestnik1.pstgu.ru/pdf/files/article/en/1353401818.23-39.pdf +https://www.jstor.org/stable/24920018 +https://pstgu.ru/download/1353400722.71-122.pdf +https://pstgu.ru/download/1353920654.25-38.pdf +https://pstgu.ru/download/1359105704.20-34.pdf +https://pstgu.ru/download/1396265631.3_sukhova.pdf +https://pstgu.ru/download/1396268266.10_sukhova.pdf +http://российская-история.рф/libraries/pdf.js/web/viewer.html?file=http%3A%2F%2Fxn----7sbxcach3agmieaceq1th.xn--p1ai%2Fsites%2Fdefault%2Ffiles%2Fjournals%2F2013-1.pdf#page=104 +https://pstgu.ru/download/1390568356.5Sukhova.pdf +https://pstgu.ru/download/1396354905.12sukhova.pdf +http://e-vestnik.ru/history/tserkovnaya_istoriya_bogoslovie_7621/ +https://cyberleninka.ru/article/n/delo-protoiereya-gerasima-pavskogo-problema-istorizma-v-russkoy-bibleistike +https://periodical.pstgu.ru/ru/pdf/article/3053 +https://pstgu.ru/download/1450268404.6_sukhova_kopylova_97-122.pdf +https://scientific-journals-spbda.ru/f/2015-06-08.pdf +http://periodical.pstgu.ru/pdf/files/article/en/1478168930.3_Sukhova_31-47.pdf +https://pstgu.ru/download/1489400828.8_Sukhova_103-119.pdf +http://periodical.pstgu.ru/ru/pdf/article/5870 +https://www.academia.edu/36927991/The_University_Idea_in_the_Theological_academies_of_Russia_XIX_early_XX_centuries_ +https://scientific-journals-spbda.ru/f/18_suhova.pdf +https://www.academia.edu/38252405/Kiev_Theological_Academy_in_the_era_of_great_reforms_and_counterreforms_according_to_the_letters_of_teachers_and_students_Киевская_духовная_академия_в_эпоху_Великих_реформ_и_контрреформ_по_письмам_учащих_и_учащихся_ +https://www.academia.edu/38289875/THE_ROLE_OF_EPARCHIAL_ARCHIERES_IN_THE_PREPARATION_OF_PASTORIES_REVEREND_GEORGIA_KONISSKY_AND_PARPHENIA_SOPKOVSKY_РОЛЬ_ЕПАРХИАЛЬНЫХ_АРХИЕРЕЕВ_В_ПОДГОТОВКЕ_ПАСТЫРЕЙ_ПРЕОСВЯЩЕННЫЕ_ГЕОРГИЙ_КОНИССКИЙ_И_ПАРФЕНИЙ_СОПКОВСКИЙ_ +https://epds.ru/wp-content/uploads/2019/11/327-2019_Sukhova.pdf +https://www.academia.edu/38389130/A._V._KARTASHEV_ABOUT_THE_SYNODAL_PERIOD_IN_HISTORY_RUSSIAN_CHURCH_SHAME_OR_GLORY_AND_PRIDE_А._В._КАРТАШЁВ_О_СИНОДАЛЬНОМ_ПЕРИОДЕ_В_ИСТОРИИ_РУССКОЙ_ЦЕРКВИ_СТЫД_И_ПОЗОР_ИЛИ_СЛАВА_И_ГОРДОСТЬ_ +https://www.pstbi.ru/download/science/SukhovaKDA31.pdf#page=9 +https://cyberleninka.ru/article/n/formirovanie-istoricheskogo-podhoda-v-liturgike-v-rossii-na-primere-vypusk-nyh-sochineniy-vospitannikov-sankt-peterburgskoy +https://www.academia.edu/42765557/Theological_school_in_time_of_godless_authority_compromise_or_testimony_revival_of_the_theological_school_in_Russia_in_the_1940s_1950s_Духовная_школа_при_безбожной_власти_компромисс_или_свидетельство_возрождение_духовной_школы_в_России_в1940_1950_е_годы_ +https://www.academia.edu/42765867/Moscow_Theological_Academy_during_the_teachings_of_the_graduate_and_teacher_of_the_Vladimir_Theological_Seminary_St_Athanasius_Sakharov_Московская_духовная_академия_в_годы_учения_выпускника_и_преподавателя_Владимирской_духовной_семинарии_святителя_Афанасия_Сахарова_ +https://pstgu.ru/upload/medialibrary/92f/92f923143d0e64b992b0a4c764f41475.pdf#page=9 +https://www.academia.edu/44444998/Bishop_Amvrosiy_Polyanskiy_holy_confessor_The_Kingdom_of_God_as_a_subject_of_study_and_acquisition_Священноисповедник_епископ_Амвросий_Полянский_Царство_Божие_как_предмет_изучения_и_стяжания +http://www.pravenc.ru/text/77994.html +http://www.pravenc.ru/text/149321.html +http://www.pravenc.ru/text/150373.html +http://www.pravenc.ru/text/158706.html +http://www.pravenc.ru/text/155158.html +http://www.pravenc.ru/text/155282.html +http://www.pravenc.ru/text/155540.html +http://www.pravenc.ru/text/166271.html +http://www.pravenc.ru/text/186989.html +http://www.pravenc.ru/text/182201.html +http://www.pravenc.ru/text/293401.html +http://www.pravenc.ru/text/1319808.html +http://www.pravenc.ru/text/1681223.html +http://www.pravenc.ru/text/1684684.html +http://www.pravenc.ru/text/1841451.html +http://www.pravenc.ru/text/1841946.html +http://www.pravenc.ru/text/2458753.html +http://www.pravenc.ru/text/2458755.html +http://www.pravenc.ru/text/2463397.html +http://www.pravenc.ru/text/2110726.html +http://www.pravenc.ru/text/2110938.html +http://www.pravenc.ru/text/2561686.html +http://old.pstgu.ru/news/university/2010/05/17/21327/ +http://old.pstgu.ru/faculties/theological/events/2010/05/24/21485/ +http://old.pstgu.ru/faculties/theological/events/2010/05/28/21614/ +http://www.pravmir.ru/pstgu-svyazat-obrazovanie-i-evxaristiyu/ +http://www.ekaterinburg-eparhia.ru/news/2019/02/10/20257/ +http://www.pstbi.ru/news/show/808-Intervyu_s_N_YU_Sukhovoy_Russkoye_bogosloviye_Materialy_i_issledovaniya +https://pstgu.ru/news/faculties/intervyu_s_professorom_pstgu_n_yu_sukhovoy/ +http://vak.ed.gov.ru/documents/10179/0/%d0%9f%d1%80%d0%b8%d0%ba%d0%b0%d0%b7%20%d0%be%d1%82%2001.08.2016%20%e2%84%96%20927.pdf/a9e99790-dcb7-4655-9454-0efac5ccd943 +http://old.pstgu.ru/faculties/theological/professors/suhova_n_u +https://new-disser.ru/_avtoreferats/01003331238.pdf +https://cyberleninka.ru/article/n/zaschita-doktorskoy-dissertatsii-n-yu-suhovoy-1 +http://mospat.ru/church-and-time/527 +https://cyberleninka.ru/article/n/zaschita-doktorskoy-dissertatsii-n-yu-suhovoy +http://vak.ed.gov.ru/documents/10179/0/Теология.pdf/5394e81a-8049-4d69-9288-0590c0f20bf9 +http://web.archive.org/web/20160807190022/http://vak.ed.gov.ru/documents/10179/0/Теология.pdf/5394e81a-8049-4d69-9288-0590c0f20bf9 +https://pstgu.ru/news/main/na_godichnom_akte_pstgu_prepodavatelyam_i_sotrudnikam_vrucheny_tserkovnye_nagrady_i_diplomy_o_prisvo/ +http://old.pstgu.ru/faculties/theological/chairs/russian_church/Teachers/Suhova/publikacii_n.ju.suhovoj/ +https://cyberleninka.ru/article/n/k-55-letiyu-natalii-yurievny-suhovoy +https://dx.doi.org/10.24411%2F2224-5391-2018-10312 +http://isni-url.oclc.nl/isni/0000000054053184 +https://id.loc.gov/authorities/no2008133092 +https://data.bibliotheken.nl/id/thes/p355094096 +https://viaf.org/processed/NUKAT%7Cn2012254515 +https://www.idref.fr/150635982 +https://viaf.org/viaf/311345671 +https://www.worldcat.org/identities/containsVIAFID/311345671 +http://litnasledstvo.ru/site/book/id/5 +http://spb-tombs-walkeru.narod.ru/volk_prav/modzalevskiy.htm +http://www.pershpektiva.ru/люди%20Санкт-Петербурга/Модзалевский%20Лев%20Борисович%201902.htm +http://zur.ru/?action=show_id&id=5619&np_id=364 +http://www.kmay.ru/sample_pers.phtml?n=5292 +http://feb-web.ru/feb/kle/kle-abc/ke4/ke4-9131.htm +https://www.findagrave.com/cgi-bin/fg.cgi?page=gr&GRid=93059086 +http://ask.bibsys.no/ask/action/result?cmd=&kilde=biblio&cql=bs.autid+%3D+90930502&feltselect=bs.autid +https://catalogue.bnf.fr/ark:/12148/cb113223863 +https://d-nb.info/gnd/102407451X +http://isni-url.oclc.nl/isni/0000000110580588 +https://id.loc.gov/authorities/n84084559 +https://viaf.org/processed/LNB%7CLNC10-000059743 +http://aut.nkp.cz/js20201070500 +https://data.bibliotheken.nl/id/thes/p074538659 +https://viaf.org/processed/NUKAT%7Cn97036793 +https://libris.kb.se/katalogisering/sq47fkzb3jc98w0 +https://www.idref.fr/137699557 +https://viaf.org/viaf/40426809 +https://www.worldcat.org/identities/containsVIAFID/40426809 +https://www.openstreetmap.org/?mlat=59.43194&mlon=54.23778&zoom=12 +https://www.openstreetmap.org/?mlat=59.43194&mlon=54.23778&zoom=12 +https://classinform.ru/okato/search.php?str=57125000035 +https://classinform.ru/oktmo/search.php?str=57825426301 +https://fgistp.economy.gov.ru/?show_document=true&doc_type=npa&uin=57825000012015052666 +https://archive.vn/uh4Th +http://www.lingvarium.org/russia/settlem-database.shtml +http://permstat.old.gks.ru/wps/wcm/connect/rosstat_ts/permstat/ru/census_and_researching/census/national_census_2010/score_2010/ +https://www.openstreetmap.org/?mlat=55.71750&mlon=37.43500&zoom=17 +http://www.mosclassific.ru/mClass/omkum_viewd.php?id=1250783 +http://www.mosclassific.ru/mExtra/files/00592.pdf +https://www.webcitation.org/6CxdKAwfc?url=http://www.mosclassific.ru/mExtra/files/00592.pdf +http://www.moscowindex.ru/?s=%D0%E0%F9%F3%EF%EA%E8%ED%E0 +http://www.showbirja.ru/84596________.htm +http://web.archive.org/web/20090307015125/http://www.showbirja.ru/84596________.htm +http://bus.ruz.net/routes/stops/3679 +http://bus.ruz.net/routes/stops/3323 +http://www.mosclassific.ru/mClass/omkum_viewd.php?id=1254855 +http://maps.yandex.ru +http://maps.yandex.ru/map.xml?mapID=2000&mapX=4167195&mapY=7467227&descx=4167195&descy=7467227&scale=9&text=Россия,%20Москва,%20улица%20Гродненская&from=search +https://www.youtube.com/watch?v=qhtPjWplzes +https://www.znak.com/2018-05-03/originalnaya_istoriya_vosstaniya_v_sobibore_glazami_ego_organizatora +https://tass.ru/spec/sobibor +https://litbook.ru/article/9515/ +http://dagpravda.ru/novosti/v-hasavjurte-otkryli-memorial-geroju-antifashistskogo-soprotivleniya-aleksandru-shubaevu/ +https://book.pechersky.org/personnel/shubaev-aleksandr-mihajlovich/ +http://gazetavatan.ru/2018/10/%d0%b2-%d1%85%d0%b0%d1%81%d0%b0%d0%b2%d1%8e%d1%80%d1%82%d0%b5-%d0%be%d1%82%d0%ba%d1%80%d1%8b%d0%bb%d0%b8-%d0%bc%d0%b5%d0%bc%d0%be%d1%80%d0%b8%d0%b0%d0%bb-%d0%b3%d0%b5%d1%80%d0%be%d1%8e-%d0%b0%d0%bd +https://rgvktv.ru/obshchestvo/54877 +https://www.vesti.ru/videos/show/vid/545288/ +http://books.vremya.ru/books/4761-aleksandr-pecherskiy-proryv-v-bessmertie.html +http://gesharim.org/books/?books_id=466 +https://eksmo.ru/book/sobibor-vozvrashchenie-podviga-aleksandra-pecherskogo-ITD905967/ +https://www.riadagestan.ru/news/society/v_derbente_otkrylas_vystavka_vozvrashchenie_geroya_sobibor_dagestan/ +https://gazetaogni.ru/%D0%B2%D0%BE%D0%B7%D0%B2%D1%80%D0%B0%D1%89%D0%B5%D0%BD%D0%B8%D0%B5-%D0%B3%D0%B5%D1%80%D0%BE%D1%8F/ +http://derbentportal.ru/content/novosti/o-vosstanii-uznikov-sobibora-rasskajet-vistavka-v-derbente~139314 +https://www.openstreetmap.org/?mlat=56.529&mlon=42.163&zoom=11 +https://www.openstreetmap.org/?mlat=56.529&mlon=42.163&zoom=11 +https://classinform.ru/oktmo/search.php?str=24635426 +https://web.archive.org/web/20131205015858/http://yuzha.ru/poselenie/mosta_poselenie.html +http://www.gks.ru/free_doc/doc_2015/bul_dr/mun_obr2015.rar +http://www.webcitation.org/6aaNzOlFO +https://ivanovo.gks.ru/storage/mediabank/itogi_vpn2010_table_volume_1.pdf +http://www.gks.ru/dbscripts/munst/munst24/DBInet.cgi?pl=8112027 +http://www.gks.ru/free_doc/doc_2012/bul_dr/mun_obr2012.rar +http://www.webcitation.org/6PyOWbdMc +http://www.gks.ru/free_doc/doc_2013/bul_dr/mun_obr2013.rar +http://www.webcitation.org/6LAdCWSxH +http://www.gks.ru/free_doc/doc_2014/bul_dr/mun_obr2014.rar +http://www.webcitation.org/6RWqP50QK +http://www.mostaadm.ru/statistika.html +https://web.archive.org/web/20150121235854/http://www.mostaadm.ru/statistika.html +https://web.archive.org/web/20141218033444/http://mostaadm.ru/ +https://www.openstreetmap.org/?mlat=49.13333&mlon=18.68333&zoom=12 +https://www.openstreetmap.org/?mlat=49.13333&mlon=18.68333&zoom=12 +http://www.rajecke-teplice.sk +http://www.rajecke-teplice.sk +http://www.rajeckapohoda.sk +https://www.openstreetmap.org/?mlat=40.68917&mlon=-74.04444&zoom=14 +https://www.openstreetmap.org/?mlat=40.68917&mlon=-74.04444&zoom=14 +https://www.emporis.com/buildings/113832 +http://skyscraperpage.com/cities/?buildingID=1134 +http://www.skyscrapercenter.com/building/wd/15500 +https://structurae.net/structures/20000068 +https://www.nps.gov/stli +https://www.britannica.com/topic/Statue-of-Liberty#ref16700 +http://usinfo.state.gov/usa/infousa/facts/factover/liberty.htm +https://web.archive.org/web/20040630115220/http://usinfo.state.gov/usa/infousa/facts/factover/liberty.htm +http://britannica.com/EBchecked/topic/339374/Liberty-Island +http://middleeast.about.com/od/middleeast101/a/statue-of-liberty-egypt.htm +http://washingtonsheadquarters.org/statue-liberty/statue-liberty-copper +https://web.archive.org/web/20160127162340/http://washingtonsheadquarters.org/statue-liberty/statue-liberty-copper +http://www.russianamericanbusiness.org/EN/web_CONTENT/articles/2005.01.20/group_05/2_articl/articl.shtml +http://www.wiesbadener-tagblatt.de/region/wiesbaden/stadtteile/amoeneburg/8852246_1.htm +https://web.archive.org/web/20130729185041/http://www.wiesbadener-tagblatt.de/region/wiesbaden/stadtteile/amoeneburg/8852246_1.htm +http://cityroom.blogs.nytimes.com/2009/05/08/statue-of-libertys-crown-will-reopen-july-4/ +http://libertyellisfoundation.org//Statue_of_Liberty_Postage_Stamps.html +https://web.archive.org/web/20180724002318/https://libertyellisfoundation.org//Statue_of_Liberty_Postage_Stamps.html/ +https://www.usmint.gov/mint_programs/$1coin/?flash=yes&action=reverse +https://www.uscurrency.gov/security/10-security-features-2006%E2%80%93present +https://web.archive.org/web/20171229105317/https://www.uscurrency.gov/security/10-security-features-2006%E2%80%93present +https://www.nytimes.com/1986/01/24/nyregion/new-york-to-start-issuing-new-license-plates-july-1.html +https://www.nytimes.com/2000/01/11/nyregion/state-license-plates-to-get-new-look.html +https://www.nytimes.com/1997/02/14/sports/liberty-for-new-york-club.html +https://www.nytimes.com/1996/03/29/sports/final-four-states-put-aside-their-rivalry-and-try-a-little-cooperation.html +https://www.nytimes.com/1996/03/29/sports/final-four-states-put-aside-their-rivalry-and-try-a-little-cooperation.html +https://www.brooklynmuseum.org/opencollection/exhibitions/645 +http://scoutingmagazine.org/issues/0710/d-wwas.html +https://archive.org/details/statueforamerica0000harr +https://archive.org/details/enlighteningworl00khan +https://archive.org/details/statueoflibertye00more +https://books.google.ru/books?id=4-EDAAAAMBAJ&pg=PA203&redir_esc=y#v=onepage&f=true +http://whc.unesco.org/ru/list/307 +http://whc.unesco.org/en/list/307 +http://whc.unesco.org/fr/list/307 +https://web.archive.org/web/20051205191956/http://usinfo.state.gov/russki/infousa/facts/liberty.htm +http://www.nps.gov/stli/ +http://www.cr.nps.gov/history/online_books/hh/11/hh11g.htm +https://structurae.net/structures/20000068 +https://snl.no/Frihetsstatuen +https://bigenc.ru/text/4164500 +https://www.britannica.com/topic/Statue-of-Liberty +https://catalogue.bnf.fr/ark:/12148/cb11968909m +https://d-nb.info/gnd/4122611-2 +https://id.loc.gov/authorities/sh85127593 +https://viaf.org/viaf/237749661 +https://www.worldcat.org/identities/containsVIAFID/237749661 +https://web.archive.org/web/20161204000000/https://www.sports-reference.com/olympics/athletes/ki/oleg-kiselyov-1.html +https://youtube.com/watch?v=-0Ao4t_fe0I +https://www.discogs.com/release/7072043 +http://www.billboard.com/articles/news/grammys/6785974/grammy-nominations-2016-full-list +http://www.billboard.com/articles/news/grammys/6875260/grammy-awards-2016-full-winners-list +https://www.destructoid.com/see-how-rock-band-vr-s-set-list-is-shaping-up-422010.phtml +https://www.microsoft.com/ru-ru/store/p/cirice-ghost/bplchddt2bbc +https://www.musicradar.com/news/guitars/ghosts-nameless-ghoul-talks-picking-papas-playing-gibson-rd-guitars-and-new-album-meliora-624883 +http://www.blabbermouth.net/news/video-ghost-performs-new-songs-at-swedish-warm-up-concert/ +http://www.theprp.com/2015/07/31/news/ghost-release-cd-single-for-cirice-absolution-also-featured/ +http://loudwire.com/ghost-cirice/ +https://www.stereogum.com/1841197/watch-ghost-perform-cirice-on-colbert/video/ +http://www.metalinjection.net/video/watch-ghost-perform-cirice-on-the-late-show-with-stephen-colbert +http://www.davidbrinley.com/about/ +https://consequenceofsound.net/2015/06/ghost-shares-scary-carrie-inspired-video-for-cirice-watch/ +https://www.billboard.com/music/ghost +http://loudwire.com/20-best-metal-songs-2015/ +http://loudwire.com/5th-annual-loudwire-music-awards-complete-winners-list/ +http://loudwire.com/ghost-2016-best-metal-performance-grammy/ +http://www.grammy.com/videos/my-first-grammy-nomination-ghost +https://www.billboard.com/music/Ghost/chart-history/hot-mainstream-rock-tracks +http://www.billboard.com/biz/search/charts?f%5b0%5d=ts_chart_artistname%3AGhost&f%5b1%5d=itm_field_chart_id%3A1228&f%5b2%5d=ss_bb_type%3Achart_item&type=2&artist=Ghost +https://youtube.com/watch?v=-0Ao4t_fe0I +https://www.openstreetmap.org/?mlat=46.23083&mlon=-94.96028&zoom=12 +https://www.openstreetmap.org/?mlat=46.23083&mlon=-94.96028&zoom=12 +https://edits.nationalmap.gov/apps/gaz-domestic/public/summary/664261 +http://factfinder.census.gov +https://www.webcitation.org/65jESGrbU?url=http://factfinder2.census.gov/legacy/aff_sunset.html +http://geonames.usgs.gov +https://www.webcitation.org/65jET5cdV?url=http://geonames.usgs.gov/ +https://archive.org/details/trotskytrotskyis0000beil +https://books.google.ru/books?hl=ru&id=V89oAAAAMAAJ&dq=Leon+Trotsky+and+the+politics+of+economic+isolation&focus=searchwithinvolume&q=politics+economic+isolation +https://cyberleninka.ru/article/n/katastrofa-rossiyskaya-ekonomika-v-period-pervoy-mirovoy-i-ya-k-i-grazhdanskoy-voyn-1914-1922-gg +https://elibrary.ru/item.asp?id=20769414 +http://www.jstor.org/stable/3102261 +https://dx.doi.org/10.2307%2F3102261 +http://www.jstor.org/stable/24409205 +https://dx.doi.org/10.2307%2F24409205 +http://www.jstor.org/stable/24356744 +https://dx.doi.org/10.2307%2F24356744 +http://www.jstor.org/stable/1959118 +https://dx.doi.org/10.2307%2F1959118 +http://booksandjournals.brillonline.com/content/10.1163/221023975x00504 +https://dx.doi.org/10.1163%2F221023975x00504 +http://www.jstor.org/stable/1040576 +https://dx.doi.org/10.2307%2F1040576 +http://www.jstor.org/stable/2495209 +https://dx.doi.org/10.2307%2F2495209 +http://www.jstor.org/stable/41045061 +https://dx.doi.org/10.2307%2F41045061 +http://www.jeeh.it/articolo?urn=urn:abi:abi:RIV.JOU:1975;1.264&ev=1 +https://doi.org/10.1080/03612759.1973.9947013 +https://dx.doi.org/10.1080%2F03612759.1973.9947013 +http://www.jstor.org/stable/2116627 +https://dx.doi.org/10.2307%2F2116627 +http://www.jstor.org/stable/42859347 +https://dx.doi.org/10.2307%2F42859347 +http://www.jstor.org/stable/3230672 +https://dx.doi.org/10.2307%2F3230672 +http://www.jstor.org/stable/40401 +https://dx.doi.org/10.2307%2F40401964 +http://www.jstor.org/stable/1859159 +https://dx.doi.org/10.2307%2F1859159 +http://www.jstor.org/stable/40866838 +https://dx.doi.org/10.2307%2F40866838 +https://www.cambridge.org/core/books/leon-trotsky-and-the-politics-of-economic-isolation/0232E411A90C585E50B8646A6BECC171 +http://leylagencer.org/en/ +http://www.belcantosociety.org/pages/gencer.html +http://web.archive.org/web/20060621072437/http://www.belcantosociety.org/pages/gencer.html +http://www.esdf-opera.de/saengerliste/saenger_g/gencer_leyla.htm +https://www.belcanto.ru/gencer.html +http://leylagencer.org/en/ +http://sopranos.freeservers.com/leylapic.htm +http://sopranos.freeservers.com/gencer.htm +http://www.esdf-opera.de/saengerliste/saenger_g/gencer_leyla.htm +http://www.belcantosociety.org/pages/gencer.html +http://web.archive.org/web/20060621072437/http://www.belcantosociety.org/pages/gencer.html +http://toolserver.org/~apper/pd/person/Leyla_Gencer +http://nataliamalkova61.narod.ru/index/lejla_gencher/0-128 +http://www.muzcentrum.ru/orfeus/programs/issue4103/ +http://web.archive.org/web/20140424232141/http://www.muzcentrum.ru/orfeus/programs/issue4103/ +https://web.archive.org/web/20140424233839/http://hosting.operissimo.com/triboni/exec?method=com.operissimo.artist.webDisplay&id=ffcyoieagxaaaaabaddb&xsl=webDisplay&searchStr=Leyla%20Gencer +http://famousdude.com/12616-leyla-gencer@imageleyla-gencer-01.jpg.html +http://web.archive.org/web/20210505081738/http://famousdude.com/12616-leyla-gencer@imageleyla-gencer-01.jpg.html +https://open.spotify.com/artist/65oBR5AGGDgMimg6Q0dZBA +https://www.allmusic.com/artist/mn0001628329 +https://www.csfd.cz/tvurce/460296 +https://www.discogs.com/artist/2410877 +https://www.imdb.com/name/nm0312645 +https://musicbrainz.org/artist/90b76cd9-7b29-49fa-b45e-e15798e71f26 +https://www.enciclopedia.cat/enciclopèdies/gran-enciclopèdia-catalana/EC-GEC-0246392.xml +https://bigenc.ru/text/5820105 +https://www.britannica.com/biography/Leyla-Gencer +https://www.treccani.it/enciclopedia/leyla-gencer +https://www.universalis.fr/encyclopedie/leyla-gencer/ +https://www.findagrave.com/cgi-bin/fg.cgi?page=gr&GRid=26749060 +http://ask.bibsys.no/ask/action/result?cmd=&kilde=biblio&cql=bs.autid+%3D+3071946&feltselect=bs.autid +http://catalogo.bne.es/uhtbin/authoritybrowse.cgi?action=display&authority_id=XX1327203 +https://catalogue.bnf.fr/ark:/12148/cb13894382s +https://d-nb.info/gnd/131351389 +http://data.beeldengeluid.nl/gtaa/257289 +http://isni-url.oclc.nl/isni/0000000079807763 +https://id.loc.gov/authorities/n82099728 +http://mak.bn.org.pl/cgi-bin/KHW/makwww.exe?BM=01&IM=04&NU=01&WI=A27569159 +https://data.bibliotheken.nl/id/thes/p071247416 +https://viaf.org/processed/NUKAT%7Cn2017006658 +https://libris.kb.se/katalogisering/mkz26nr53h2jfqf +https://viaf.org/viaf/120708608 +https://www.worldcat.org/identities/containsVIAFID/120708608 +http://www.allsportinfo.ru/index.php?id=94641&b=4&l=40 +http://www.entomology.bio.spbu.ru/history.htm +https://www.zin.ru/journals/parazitologiya/content/1975/prz_1975_2_18_Obituary.pdf +https://www.zin.ru/journals/parazitologiya/content/1993/prz_1993_4_11_Veselkin.pdf +https://www.zin.ru/journals/parazitologiya/content/1968/prz_1968_3_5_Dubitzky.pdf +https://www.zin.ru/Journals/parazitologiya/content/1975/prz_1975_2_18_Obituary.pdf +https://folia.paru.cas.cz/incpdfs/fol-197601-0015_10_006.pdf +http://file.magzdb.org/ul/894/ArmSbor_01-2021.pdf +https://news.mail.ru/politics/35394173/ +https://regnum.ru/news/3085160.html?utm_source=yxnews&utm_medium=desktop +https://news.rambler.ru/troops/41330983/ +http://presidentofabkhazia.org/about/info/news/?ELEMENT_ID=7139&sphrase_id=6373443&print=Y +http://redstar.ru/wp-content/uploads/2019/05/16-15-05-19n.jpg?attempt=1 +https://structure.mil.ru/management/info.htm?id=11887861@SD_Employee +https://www.openstreetmap.org/?mlat=54.071016&mlon=9.798034&zoom=15 +http://www.datolehus.de +https://dat-ole-hus.chayns.net +http://www.shz.de/lokales/landeszeitung/gemeinde-aukrug-kauft-das-ole-hus-fuer-einen-euro-id1362106.html +http://www.shz.de/lokales/holsteinischer-courier/frischer-wind-fuer-dat-ole-hus-id12341201.html +http://museen-sh.de/Museum/DE-MUS-005916 +http://www.datolehus.de +https://www.transfermarkt.com/transfermarkt/profil/spieler/38818 +https://fbref.com/en/players/cc151bc0/ +https://web.archive.org/web/*/https://static.fifa.com/fifa-tournaments/players-coaches/people=209201/index.html +https://bdfa.com.ar/jugadores-46705.html +https://fbref.com/en/players/cc151bc0/ +https://www.footballdatabase.eu/en/player/details/12046 +https://www.national-football-teams.com/player/203.html +https://www.transfermarkt.com/transfermarkt/profil/spieler/38818 +https://www.openstreetmap.org/?mlat=-26.77000&mlon=-53.21667&zoom=12 +https://www.openstreetmap.org/?mlat=-26.77000&mlon=-53.21667&zoom=12 +http://www.maravilha.sc.gov.br/ +http://www.turksoy.org/en/news/2013/12/17/tolebayevs_opera_birjan_and_sarah_performed_once_again_in_samsun +http://www.turksoy.org/en/news/2014/06/16/great_success_for_m_tulebayevs_birjan_and_sarah_in_istanbul +https://www.balletandopera.com/opera/Birzhan_and_Sara/info/sid=GLE_1&play_date_from=01-Mar-2014&play_date_to=31-Mar-2014&playbills=39814 +http://www.belcanto.ru/opera_birzhan.html +https://creativecommons.org/licenses/by-sa/3.0/deed.ru +http://www.sports-reference.com/olympics/countries/do/giuseppe-domenichelli-1/ +https://www.openstreetmap.org/?mlat=55.64639&mlon=31.47917&zoom=12 +https://www.openstreetmap.org/?mlat=55.64639&mlon=31.47917&zoom=12 +https://classinform.ru/okato/search.php?str=662038704 +https://classinform.ru/oktmo/search.php?str=66603470101 +https://web.archive.org/web/20080502041003/http://law.admin.smolensk.ru/reestr_xls/index.php?raiony=1 +https://www.openstreetmap.org/?mlat=54.73639&mlon=104.92028&zoom=12 +https://www.openstreetmap.org/?mlat=54.73639&mlon=104.92028&zoom=12 +https://classinform.ru/okato/search.php?str=25206807002 +https://classinform.ru/oktmo/search.php?str=25606407106 +http://www.irkobl.ru/sites/economy/Anticorrup_ekspertiza/statistika.doc +https://web.archive.org/web/20160306103555/http://irkobl.ru/sites/economy/anticorrup_ekspertiza/statistika.doc +http://www.geonames.org/2019065/nizhnyaya-sloboda.html +http://irkutskstat.gks.ru/wps/wcm/connect/rosstat_ts/irkutskstat/resources/645798804e45a78fa021babfab39d37f/2.pdf +http://www.webcitation.org/6ehbh4VuZ +http://195.46.100.221/vpn2010/DocLib/totals-vpn2010-2.pdf +http://www.webcitation.org/6JqAskf9l +http://irkutskstat.gks.ru/wps/wcm/connect/rosstat_ts/irkutskstat/resources/6988c2004e73b992a06fb5cc5af035be/totals-vpn2010-2.pdf +https://web.archive.org/web/20131012060951/http://irkutskstat.gks.ru/wps/wcm/connect/rosstat_ts/irkutskstat/resources/6988c2004e73b992a06fb5cc5af035be/totals-vpn2010-2.pdf +http://okato-kod.ru/38006000025.html +http://www.stretfordend.co.uk/seasons/season1932.html +http://www.stretfordend.co.uk/seasons/season1932.html +https://www.openstreetmap.org/?mlat=27.81194&mlon=90.65778&zoom=15 +https://www.openstreetmap.org/?mlat=27.81194&mlon=90.65778&zoom=15 +http://www.bhutantrustfund.bt/parks-of-bhutan +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 +http://www.bhutantrustfund.bt/parks-of-bhutan +https://web.archive.org/web/20110702041330/http://www.bhutantrustfund.bt/parks-of-bhutan +https://www.openstreetmap.org/?mlat=41.83139&mlon=-0.76611&zoom=12 +https://www.openstreetmap.org/?mlat=41.83139&mlon=-0.76611&zoom=12 +https://www.sanmateodegallego.es/ +https://datos.gob.es/es/catalogo/a02002834-nomenclator-ano-20147 +http://www.enciclopedia-aragonesa.com/voz.asp?voz_id=11298 +https://www.ine.es/dynt3/inebase/index.htm?padre=525 +https://www.worldcat.org/issn/0212-033X +http://www.ine.es/pob_xls/pobmun01.xls +https://www.worldcat.org/issn/0212-033X +http://www.ine.es/pob_xls/pobmun02.xls +https://www.worldcat.org/issn/0212-033X +http://www.ine.es/pob_xls/pobmun04.xls +https://www.worldcat.org/issn/0212-033X +http://www.ine.es/pob_xls/pobmun05.xls +https://www.worldcat.org/issn/0212-033X +http://www.ine.es/pob_xls/pobmun06.xls +https://www.worldcat.org/issn/0212-033X +https://www.worldcat.org/issn/0212-033X +http://www.ine.es/pob_xls/pobmun08.xls +https://www.worldcat.org/issn/0212-033X +http://www.ine.es/pob_xls/pobmun09.xls +https://www.worldcat.org/issn/0212-033X +http://www.ine.es/pob_xls/pobmun10.xls +https://www.worldcat.org/issn/0212-033X +http://www.ine.es/pob_xls/pobmun11.xls +https://www.worldcat.org/issn/0212-033X +http://www.ine.es/pob_xls/pobmun12.xls +https://www.worldcat.org/issn/0212-033X +http://www.ine.es/pob_xls/pobmun13.xls +https://www.worldcat.org/issn/0212-033X +http://www.ine.es/pob_xls/pobmun14.xlsx +https://www.worldcat.org/issn/0212-033X +http://www.ine.es/pob_xls/pobmun15.xlsx +https://www.worldcat.org/issn/0212-033X +http://www.ine.es/pob_xls/pobmun16.xlsx +https://www.worldcat.org/issn/0212-033X +https://www.boe.es/eli/es/rd/2018/12/14/1458 +https://www.worldcat.org/issn/0212-033X +https://www.ine.es/daco/inebase_mensual/enero_2019/cifras_padron.zip +https://www.worldcat.org/issn/0212-033X +http://www.ine.es/dynt3/inebase/index.htm?padre=525 +https://www.boe.es/eli/es/rd/2019/12/20/743 +https://www.worldcat.org/issn/0212-033X +https://web.archive.org/web/20071010054422/http://www.aragob.es/edycul/patrimo/rutas/zar_huesca_nueno/san_mateo.htm +https://www.enciclopedia.cat/enciclopèdies/gran-enciclopèdia-catalana/EC-GEC-0267319.xml +https://id.loc.gov/authorities/n86092063 +https://viaf.org/viaf/136126965 +https://www.worldcat.org/identities/containsVIAFID/136126965 +http://www.jasonbonham.net +http://www.zvuki.ru/R/P/18677 +http://www.led-zeppelin.com/jasonbonham/index.html +http://web.archive.org/web/20071026222221/http://www.led-zeppelin.com/jasonbonham/index.html +http://sd.net.ua/2010/01/14/bonem_huges.html +https://www.facebook.com/JasonBonhamOfficial +https://twitter.com/jason_bonham +https://www.deezer.com/artist/648352 +https://open.spotify.com/artist/5T6YKEZhM6rVwCEm5PLKL8 +https://youtube.com/channel/UC4LZOcli1dgzDoRt3MPqgCw +https://www.allmovie.com/artist/p280823 +https://www.allmusic.com/artist/mn0000089017 +https://www.allocine.fr/personne/fichepersonne_gen_cpersonne=79372.html +https://www.csfd.cz/tvurce/167714 +https://www.discogs.com/artist/361213 +https://www.imdb.com/name/nm0094495 +https://www.kinopoisk.ru/name/48530/ +https://musicbrainz.org/artist/6bbc87f8-b778-4e2b-84e8-0d95bd44f254 +https://www.rottentomatoes.com/celebrity/jason_bonham +https://catalogue.bnf.fr/ark:/12148/cb140028890 +https://d-nb.info/gnd/134621174 +http://isni-url.oclc.nl/isni/0000000055166594 +https://id.loc.gov/authorities/n2002075017 +https://data.bibliotheken.nl/id/thes/p073672319 +https://www.idref.fr/161905498 +https://viaf.org/viaf/24798391 +https://www.worldcat.org/identities/containsVIAFID/24798391 +http://www.saudiembassy.net/about/Biographies-of-Ministers.aspx +https://web.archive.org/web/20110616222323/http://www.saudiembassy.net/about/Biographies-of-Ministers.aspx +http://saleh.af.org.sa/node/14 +https://web.archive.org/web/20161230224318/http://saleh.af.org.sa/node/14 +http://www.airaces.ru/raredocs/posluzhnojj-spisok-trunova-konstantina-ivanovicha.html +https://books.google.ru/books?id=8at6DwAAQBAJ&pg=PT803&lpg=PT803&dq=трунов+константин+иванович&source=bl&ots=HKdwlxbjy9&sig=ACfU3U2Ndy0o6TUwCf0DkWC-u6MvNDgDRg&hl=ru&sa=X&ved=2ahUKEwj96_228YTvAhUH2SoKHa5vB1I4KBDoATAGegQIBRAD#v=onepage&q=трунов%20константин%20иванович&f=false +http://forum.patriotcenter.ru/index.php?topic=19305.20;wap2 +https://books.google.ru/books?id=xxy0DwAAQBAJ&pg=PT24&lpg=PT24&dq=трунов+константин+иванович&source=bl&ots=RrQW-rwlIV&sig=ACfU3U3WFCQw_UlrfR9kBg30EU-pcG86jA&hl=ru&sa=X&ved=2ahUKEwiB5tuU9YTvAhXG-ioKHT1tAhg4KBDoATAHegQIBhAD#v=onepage&q=трунов%20константин%20иванович&f=false +http://ria1914.info/index.php/%D0%A2%D1%80%D1%83%D0%BD%D0%BE%D0%B2_%D0%9A%D0%BE%D0%BD%D1%81%D1%82%D0%B0%D0%BD%D1%82%D0%B8%D0%BD_%D0%98%D0%B2%D0%B0%D0%BD%D0%BE%D0%B2%D0%B8%D1%87 +http://hrono.ru/dokum/194_dok/19430809beri.php +https://guns.allzip.org/topic/36/2167125.html +https://books.google.ru/books?id=GwUkAQAAMAAJ&pg=RA5-PA27&lpg=RA5-PA27&dq=трунов+константин+иванович&source=bl&ots=xa_p4rLVS8&sig=ACfU3U2mih8-6aTyAr-tYVJoqfR8KfNeKw&hl=ru&sa=X&ved=2ahUKEwjp3JjT-4TvAhVn-SoKHcbvAH84MhDoATAHegQIBRAD#v=onepage&q=трунов%20константин%20иванович&f=false +http://www.historyfiles.co.uk/FeaturesBritain/BritishMountBadon.htm +https://books.google.com/books?id=V4-bzmtrFnwC&pg=PA159&lpg=PA159&dq=Little+Solsbury+Hill+Camp+Dowden#v=onepage&q=Little%20Solsbury%20Hill%20Camp%20Dowden&f=false +http://games.1c.ru/h_a_h/ +http://www.1up.com/reviews/heaven-and-hell +https://web.archive.org/web/20160305143903/http://www.1up.com/reviews/heaven-and-hell +http://www.allgame.com/game.php?id=31546 +http://www.peeep.us/b3e1aeb0 +http://www.gamespot.com/heaven-and-hell/reviews/heaven-and-hell-review-6074813/ +http://www.peeep.us/0ee833e3 +http://pc.gamespy.com/pc/heaven-and-hell/6429p1.html +http://www.peeep.us/eaec6354 +https://web.archive.org/liveweb/http://www.ign.com/articles/2003/09/25/heaven-and-hell-review +http://www.peeep.us/4123acc9 +http://www.computerandvideogames.com/97388/reviews/heaven-hell-review/ +http://www.peeep.us/7ea710ab +http://www.ag.ru/reviews/crysis +http://www.igromania.ru/articles/50708/Kratkie_obzory_Heaven_and_Hell.htm +http://www.gamerankings.com/pc/583401-heaven-and-hell-2003/index.html +http://www.peeep.us/749ec298 +http://www.metacritic.com/game/pc/heaven-hell-2003 +http://www.peeep.us/66207dc6 +https://www.mobygames.com/game/windows/heaven-hell +https://archive.is/20130930190103/https://www.mobygames.com/game/windows/heaven-hell +http://www.ag.ru/games/heaven_and_hell +http://www.igromania.ru/gamebase/2134/ +http://games.1c.ru/h_a_h/ +https://www.mobygames.com/game/heaven-hell +http://www.senate.gov/artandhistory/history/common/briefing/President_Pro_Tempore.htm +http://www.supremecourt.gov/opinions/14pdf/13-1314_kjfl.pdf +https://web.archive.org/web/20150629150159/http://www.supremecourt.gov/opinions/14pdf/13-1314_kjfl.pdf +http://scholar.google.com/scholar_case?case=3388791031923623137 +http://ssrn.com/abstract=2031752 +http://www.senate.gov/reference/resources/pdf/presvetoes.pdf +http://law.justia.com/constitution/us/ +http://www.law.cornell.edu/anncon/html/art1toc_user.html +http://www.tifis.org/oclause.html +http://www.c-span.org/questions/ +https://www.openstreetmap.org/?mlat=59.20139&mlon=39.64000&zoom=12 +https://www.openstreetmap.org/?mlat=59.20139&mlon=39.64000&zoom=12 +https://classinform.ru/okato/search.php?str=19220842001 +https://classinform.ru/oktmo/search.php?str=19620442101 +https://dimastbkbot.toolforge.org/gkgn/?gkgn_id=0247375 +http://std.gmcrosstata.ru/webapi/opendatabase?id=VPN2002_2010L +http://vologda-oblast.ru/ru/laws/?id_15=10148 +http://www.booksite.ru/fulltext/sud/ako/vsk/aya/1.pdf +http://vologda-oblast.ru/ru/government/municipalities/atu/index.php?okato_15=19+220+842+001 +http://www.knowbysight.info/ChCC/07801.asp +https://www.itis.gov/servlet/SingleRpt/SingleRpt?search_topic=TSN&search_value=208674 +https://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?mode=Info&id=55533 +https://eol.org/pages/76487 +http://fossilworks.org/bridge.pl?a=taxonInfo&taxon_no=67268 +http://reptile-database.reptarium.cz/search.php?taxon=&genus=Apalone&exact%5B%5D=genus&species=&subspecies=&author=&year=&common_name=&location=&holotype=&reference=&submit=Search +http://www.tortoise.org/archives/apalone.html