-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexample.html
204 lines (161 loc) · 653 KB
/
example.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
<html>
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/vis/4.16.1/vis.css" type="text/css" />
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/vis/4.16.1/vis-network.min.js"> </script>
<center>
<h1>awca</h1>
</center>
<!-- <link rel="stylesheet" href="../node_modules/vis/dist/vis.min.css" type="text/css" />
<script type="text/javascript" src="../node_modules/vis/dist/vis.js"> </script>-->
<style type="text/css">
#mynetwork {
width: 100%;
height: 400px;
background-color: #ffffff;
border: 1px solid lightgray;
position: relative;
float: left;
}
#loadingBar {
position:absolute;
top:0px;
left:0px;
width: 100%;
height: 400px;
background-color:rgba(200,200,200,0.8);
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-ms-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
opacity:1;
}
#bar {
position:absolute;
top:0px;
left:0px;
width:20px;
height:20px;
margin:auto auto auto auto;
border-radius:11px;
border:2px solid rgba(30,30,30,0.05);
background: rgb(0, 173, 246); /* Old browsers */
box-shadow: 2px 0px 4px rgba(0,0,0,0.4);
}
#border {
position:absolute;
top:10px;
left:10px;
width:500px;
height:23px;
margin:auto auto auto auto;
box-shadow: 0px 0px 4px rgba(0,0,0,0.2);
border-radius:10px;
}
#text {
position:absolute;
top:8px;
left:530px;
width:30px;
height:50px;
margin:auto auto auto auto;
font-size:22px;
color: #000000;
}
div.outerBorder {
position:relative;
top:400px;
width:600px;
height:44px;
margin:auto auto auto auto;
border:8px solid rgba(0,0,0,0.1);
background: rgb(252,252,252); /* Old browsers */
background: -moz-linear-gradient(top, rgba(252,252,252,1) 0%, rgba(237,237,237,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(252,252,252,1)), color-stop(100%,rgba(237,237,237,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* IE10+ */
background: linear-gradient(to bottom, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcfcfc', endColorstr='#ededed',GradientType=0 ); /* IE6-9 */
border-radius:72px;
box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
}
</style>
</head>
<body>
<div id = "mynetwork"></div>
<div id="loadingBar">
<div class="outerBorder">
<div id="text">0%</div>
<div id="border">
<div id="bar"></div>
</div>
</div>
</div>
<script type="text/javascript">
// initialize global variables.
var edges;
var nodes;
var network;
var container;
var options, data;
// This method is responsible for drawing the graph, returns the drawn network
function drawGraph() {
var container = document.getElementById('mynetwork');
// parsing and collecting nodes and edges from the python
nodes = new vis.DataSet([{"id": "Llop_2010_AuOr_28_Rec._OBO_160_5.txt", "label": "Llop_2010_AuOr_28_Rec._OBO_160_5.txt", "shape": "dot", "size": 10}, {"id": "Dercksen_1997_ArAn3_BilgicFS_ikribu.txt", "label": "Dercksen_1997_ArAn3_BilgicFS_ikribu.txt", "shape": "dot", "size": 10}, {"id": "Goetze_1937_JAOS57_Subartu.txt", "label": "Goetze_1937_JAOS57_Subartu.txt", "shape": "dot", "size": 10}, {"id": "p249_s_a.txt", "label": "p249_s_a.txt", "shape": "dot", "size": 10}, {"id": "OzgucN_1994_HroudaFS_seals1a-b.txt", "label": "OzgucN_1994_HroudaFS_seals1a-b.txt", "shape": "dot", "size": 10}, {"id": "zimansky1993.txt", "label": "zimansky1993.txt", "shape": "dot", "size": 10}, {"id": "middle_elamite_period.txt", "label": "middle_elamite_period.txt", "shape": "dot", "size": 10}, {"id": "Lemche_1979_JNES38_Social_Edicts.txt", "label": "Lemche_1979_JNES38_Social_Edicts.txt", "shape": "dot", "size": 10}, {"id": "wvdog_99.txt", "label": "wvdog_99.txt", "shape": "dot", "size": 10}, {"id": "Carruba, Giorgieri \u0026 Mora eds - Atti del il congresson internazionale di Hittitologia. StMed 9, 1995.txt", "label": "Carruba, Giorgieri \u0026 Mora eds - Atti del il congresson internazionale di Hittitologia. StMed 9, 1995.txt", "shape": "dot", "size": 10}, {"id": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "label": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "shape": "dot", "size": 10}, {"id": "IndiaRussiaand18thcenttranscentralasiancaravantrade.txt", "label": "IndiaRussiaand18thcenttranscentralasiancaravantrade.txt", "shape": "dot", "size": 10}, {"id": "Veenhof_Orthmann_Porada_1980_RlA5_kanish.txt", "label": "Veenhof_Orthmann_Porada_1980_RlA5_kanish.txt", "shape": "dot", "size": 10}, {"id": "Wiseman_1954_JCS8_Supp_Alalakh.txt", "label": "Wiseman_1954_JCS8_Supp_Alalakh.txt", "shape": "dot", "size": 10}, {"id": "Lyons, C. \u0026 J. Papadopolous eds - The Archaeology of Colonialism. 2002.txt", "label": "Lyons, C. \u0026 J. Papadopolous eds - The Archaeology of Colonialism. 2002.txt", "shape": "dot", "size": 10}, {"id": "OzgucT_2004_LarsenFS_Ib_archives.txt", "label": "OzgucT_2004_LarsenFS_Ib_archives.txt", "shape": "dot", "size": 10}, {"id": "Zeeb, Frank - Die Palastwirtschaft in Altsyrien. AOAT 282, 2001(cut).txt", "label": "Zeeb, Frank - Die Palastwirtschaft in Altsyrien. AOAT 282, 2001(cut).txt", "shape": "dot", "size": 10}, {"id": "Gunbatti_2001_VeenhofFS_river_miss_157.txt", "label": "Gunbatti_2001_VeenhofFS_river_miss_157.txt", "shape": "dot", "size": 10}, {"id": "mcadams1978.txt", "label": "mcadams1978.txt", "shape": "dot", "size": 10}, {"id": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "label": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "shape": "dot", "size": 10}, {"id": "Veenhof_1982c_KrausFS_manumission.txt", "label": "Veenhof_1982c_KrausFS_manumission.txt", "shape": "dot", "size": 10}, {"id": "mellink1992.txt", "label": "mellink1992.txt", "shape": "dot", "size": 10}, {"id": "Faist, Betina - Der Fernhandel des assyrischen Reiches. AOAT 265, 2001.txt", "label": "Faist, Betina - Der Fernhandel des assyrischen Reiches. AOAT 265, 2001.txt", "shape": "dot", "size": 10}, {"id": "Kantor_62_plaque_from_tainat.txt", "label": "Kantor_62_plaque_from_tainat.txt", "shape": "dot", "size": 10}, {"id": "Veenhof, Klaas R. - Review of Notes on a New Volume of Old Assyrian Texts by Karl Hecker. JAOS 122 4, 2002, pp. 797-802.txt", "label": "Veenhof, Klaas R. - Review of Notes on a New Volume of Old Assyrian Texts by Karl Hecker. JAOS 122 4, 2002, pp. 797-802.txt", "shape": "dot", "size": 10}, {"id": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "label": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "shape": "dot", "size": 10}, {"id": "Jacobsen_1943_JNES2_Primitive_Democracy.txt", "label": "Jacobsen_1943_JNES2_Primitive_Democracy.txt", "shape": "dot", "size": 10}, {"id": "Dercksen, J. G. - When We Met in Hattus\u030c. FS Veenhof 2001.txt", "label": "Dercksen, J. G. - When We Met in Hattus\u030c. FS Veenhof 2001.txt", "shape": "dot", "size": 10}, {"id": "pardee2001a.txt", "label": "pardee2001a.txt", "shape": "dot", "size": 10}, {"id": "Veenhof, Klaas R. - Some displaced Tablets from Karum Kanesh (Kultepe). AoF 35 1, 2008, pp. 10-27.txt", "label": "Veenhof, Klaas R. - Some displaced Tablets from Karum Kanesh (Kultepe). AoF 35 1, 2008, pp. 10-27.txt", "shape": "dot", "size": 10}, {"id": "Luckenbill_1921_AJSLL_HittiteTreatiesandLettters.txt", "label": "Luckenbill_1921_AJSLL_HittiteTreatiesandLettters.txt", "shape": "dot", "size": 10}, {"id": "Gu\u0308nbatti_2008_AOF 35-1_An Eponym List - KEL G - from Ku\u0308ltepe.txt", "label": "Gu\u0308nbatti_2008_AOF 35-1_An Eponym List - KEL G - from Ku\u0308ltepe.txt", "shape": "dot", "size": 10}, {"id": "PRU 3 plates.txt", "label": "PRU 3 plates.txt", "shape": "dot", "size": 10}, {"id": "Bilgic\u0327_1947b_Bel11_C\u0327ivi Yaz\u0131l\u0131 Hukuki-I\u0307ktisadi Kaynaklar, Mahiyeti ve Muhtevalar\u0131. Belleten 11 (44), 1947 573-602.txt", "label": "Bilgic\u0327_1947b_Bel11_C\u0327ivi Yaz\u0131l\u0131 Hukuki-I\u0307ktisadi Kaynaklar, Mahiyeti ve Muhtevalar\u0131. Belleten 11 (44), 1947 573-602.txt", "shape": "dot", "size": 10}, {"id": "Dercksen_1999_MOS1_financing.txt", "label": "Dercksen_1999_MOS1_financing.txt", "shape": "dot", "size": 10}, {"id": "Yakubovich 2010_Luvian-book.txt", "label": "Yakubovich 2010_Luvian-book.txt", "shape": "dot", "size": 10}, {"id": "LewyJ_1936_RHA3_chronologie.txt", "label": "LewyJ_1936_RHA3_chronologie.txt", "shape": "dot", "size": 10}, {"id": "Pritsch_1956_JCS10_Rev_Babylonian_Laws.txt", "label": "Pritsch_1956_JCS10_Rev_Babylonian_Laws.txt", "shape": "dot", "size": 10}, {"id": "Michel_2015_KIM1_Subartu35.txt", "label": "Michel_2015_KIM1_Subartu35.txt", "shape": "dot", "size": 10}, {"id": "Michel_1998_3UHKB_Quelques re\u0301flexions sur les archives_p419-433.txt", "label": "Michel_1998_3UHKB_Quelques re\u0301flexions sur les archives_p419-433.txt", "shape": "dot", "size": 10}, {"id": "Klein_2004_ZA94_6_tablets_Uruk.txt", "label": "Klein_2004_ZA94_6_tablets_Uruk.txt", "shape": "dot", "size": 10}, {"id": "AnSt 7, 1957.txt", "label": "AnSt 7, 1957.txt", "shape": "dot", "size": 10}, {"id": "Muhly, J. D. - The Copper Ox-Hide Ingots and the Bronze Age Metals Trade 13.txt", "label": "Muhly, J. D. - The Copper Ox-Hide Ingots and the Bronze Age Metals Trade 13.txt", "shape": "dot", "size": 10}, {"id": "AnSt 54, 2004.txt", "label": "AnSt 54, 2004.txt", "shape": "dot", "size": 10}, {"id": "Larsen-Lassen_2014_cultural_encounters_Fs_Stolper_Final-libre.txt", "label": "Larsen-Lassen_2014_cultural_encounters_Fs_Stolper_Final-libre.txt", "shape": "dot", "size": 10}, {"id": "Pinches_1881a_PSBA_British_Museum.txt", "label": "Pinches_1881a_PSBA_British_Museum.txt", "shape": "dot", "size": 10}, {"id": "Jankowska_1967_ArOr35_ep_rotation.txt", "label": "Jankowska_1967_ArOr35_ep_rotation.txt", "shape": "dot", "size": 10}, {"id": "Kramer, S. N. - Commerce and Trade Gleanings from Sumerian Literature 10.txt", "label": "Kramer, S. N. - Commerce and Trade Gleanings from Sumerian Literature 10.txt", "shape": "dot", "size": 10}, {"id": "Karaduman_2008_JNES67_3_installment_debts.txt", "label": "Karaduman_2008_JNES67_3_installment_debts.txt", "shape": "dot", "size": 10}, {"id": "Larsen 1971_Or40_slander.txt", "label": "Larsen 1971_Or40_slander.txt", "shape": "dot", "size": 10}, {"id": "Anastasio, Stefano - The Archaeology of Upper Mesopotamia. Subartu 1, 1995 (grey).txt", "label": "Anastasio, Stefano - The Archaeology of Upper Mesopotamia. Subartu 1, 1995 (grey).txt", "shape": "dot", "size": 10}, {"id": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "label": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "shape": "dot", "size": 10}, {"id": "Michel_2008_La Correspondes.txt", "label": "Michel_2008_La Correspondes.txt", "shape": "dot", "size": 10}, {"id": "Melchert_sarnikzel.txt", "label": "Melchert_sarnikzel.txt", "shape": "dot", "size": 10}, {"id": "Renger_2003_Mercanti_trade_market_in_ane.txt", "label": "Renger_2003_Mercanti_trade_market_in_ane.txt", "shape": "dot", "size": 10}, {"id": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "label": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "shape": "dot", "size": 10}, {"id": "Kienast_1998_DellerFS_tertum.txt", "label": "Kienast_1998_DellerFS_tertum.txt", "shape": "dot", "size": 10}, {"id": "Stein, Gil - Produces, Patrons, and Prestige - Craft Specialists and Emergent Elites in Mesopotamia from 5500-3100.txt", "label": "Stein, Gil - Produces, Patrons, and Prestige - Craft Specialists and Emergent Elites in Mesopotamia from 5500-3100.txt", "shape": "dot", "size": 10}, {"id": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "label": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "shape": "dot", "size": 10}, {"id": "Dercksen, J. G. ed. - Trade and Finance in Ancient Mesopotamia, MOS 1. PIHANS 84, 1997 (2).txt", "label": "Dercksen, J. G. ed. - Trade and Finance in Ancient Mesopotamia, MOS 1. PIHANS 84, 1997 (2).txt", "shape": "dot", "size": 10}, {"id": "Zaccagnini_1983_Mobility.txt", "label": "Zaccagnini_1983_Mobility.txt", "shape": "dot", "size": 10}, {"id": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "label": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "shape": "dot", "size": 10}, {"id": "Gelb_1969_Ath47_capp_karkemish.txt", "label": "Gelb_1969_Ath47_capp_karkemish.txt", "shape": "dot", "size": 10}, {"id": "vandenhout2002d.txt", "label": "vandenhout2002d.txt", "shape": "dot", "size": 10}, {"id": "Matous_1982b_KrausFS_imdi-ilum.txt", "label": "Matous_1982b_KrausFS_imdi-ilum.txt", "shape": "dot", "size": 10}, {"id": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "label": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "shape": "dot", "size": 10}, {"id": "Jaques_04_inannaetEbih.txt", "label": "Jaques_04_inannaetEbih.txt", "shape": "dot", "size": 10}, {"id": "politics of mesha routledge.txt", "label": "politics of mesha routledge.txt", "shape": "dot", "size": 10}, {"id": "Bilgic_1951a_AfO15_ortsnamen.txt", "label": "Bilgic_1951a_AfO15_ortsnamen.txt", "shape": "dot", "size": 10}, {"id": "Anatolica 28, 2002.txt", "label": "Anatolica 28, 2002.txt", "shape": "dot", "size": 10}, {"id": "Garelli_1962_RA56_religion.txt", "label": "Garelli_1962_RA56_religion.txt", "shape": "dot", "size": 10}, {"id": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "label": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "shape": "dot", "size": 10}, {"id": "pardee1979-80a.txt", "label": "pardee1979-80a.txt", "shape": "dot", "size": 10}, {"id": "AnSt 19, 1969.txt", "label": "AnSt 19, 1969.txt", "shape": "dot", "size": 10}, {"id": "Soldt, W.H. van ed. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "label": "Soldt, W.H. van ed. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "shape": "dot", "size": 10}, {"id": "Kienast_2003_KienastFS_Intro.txt", "label": "Kienast_2003_KienastFS_Intro.txt", "shape": "dot", "size": 10}, {"id": "LewyJ_1928_ZA38_Amoriterfrage.txt", "label": "LewyJ_1928_ZA38_Amoriterfrage.txt", "shape": "dot", "size": 10}, {"id": "vandenhout2002.txt", "label": "vandenhout2002.txt", "shape": "dot", "size": 10}, {"id": "Bayram_1996_Bel229_slavery.txt", "label": "Bayram_1996_Bel229_slavery.txt", "shape": "dot", "size": 10}, {"id": "Deller_1986_JEOL25_kanwarta.txt", "label": "Deller_1986_JEOL25_kanwarta.txt", "shape": "dot", "size": 10}, {"id": "richardson2004.txt", "label": "richardson2004.txt", "shape": "dot", "size": 10}, {"id": "Michel_2010_JCS62.txt", "label": "Michel_2010_JCS62.txt", "shape": "dot", "size": 10}, {"id": "Bilgic_1990_TTK10_Turkish.txt", "label": "Bilgic_1990_TTK10_Turkish.txt", "shape": "dot", "size": 10}, {"id": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "label": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "shape": "dot", "size": 10}, {"id": "Thureau-Dangin_1911_RA8_date.txt", "label": "Thureau-Dangin_1911_RA8_date.txt", "shape": "dot", "size": 10}, {"id": "Dercksen_2005_JEOL39_Adad_king.txt", "label": "Dercksen_2005_JEOL39_Adad_king.txt", "shape": "dot", "size": 10}, {"id": "Michel_2007_RlA11_SadumAdal_Labua.txt", "label": "Michel_2007_RlA11_SadumAdal_Labua.txt", "shape": "dot", "size": 10}, {"id": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "label": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "shape": "dot", "size": 10}, {"id": "Landsberger_1924_ZA35_Volker.txt", "label": "Landsberger_1924_ZA35_Volker.txt", "shape": "dot", "size": 10}, {"id": "pru3pt1000.txt", "label": "pru3pt1000.txt", "shape": "dot", "size": 10}, {"id": "Matous_1981_DiakonoffFS_siegelentumer.txt", "label": "Matous_1981_DiakonoffFS_siegelentumer.txt", "shape": "dot", "size": 10}, {"id": "pru3pt1001.txt", "label": "pru3pt1001.txt", "shape": "dot", "size": 10}, {"id": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "label": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "shape": "dot", "size": 10}, {"id": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "label": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "shape": "dot", "size": 10}, {"id": "Veenhof_1982b_JEOL27_over.txt", "label": "Veenhof_1982b_JEOL27_over.txt", "shape": "dot", "size": 10}, {"id": "Hrozny_1928_OLZ1928_rev_Clay_BIN4.PDF.txt", "label": "Hrozny_1928_OLZ1928_rev_Clay_BIN4.PDF.txt", "shape": "dot", "size": 10}, {"id": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "label": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "shape": "dot", "size": 10}, {"id": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "label": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "shape": "dot", "size": 10}, {"id": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "label": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "shape": "dot", "size": 10}, {"id": "singer.txt", "label": "singer.txt", "shape": "dot", "size": 10}, {"id": "owen1990.txt", "label": "owen1990.txt", "shape": "dot", "size": 10}, {"id": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "label": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "shape": "dot", "size": 10}, {"id": "Goetze_1953b_Language29_PN.txt", "label": "Goetze_1953b_Language29_PN.txt", "shape": "dot", "size": 10}, {"id": "Yilmaz_2007_AMMY2006.txt", "label": "Yilmaz_2007_AMMY2006.txt", "shape": "dot", "size": 10}, {"id": "Kienast_1975_WdO8_Pfandrecht.txt", "label": "Kienast_1975_WdO8_Pfandrecht.txt", "shape": "dot", "size": 10}, {"id": "starke1985.txt", "label": "starke1985.txt", "shape": "dot", "size": 10}, {"id": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "label": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "shape": "dot", "size": 10}, {"id": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "label": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "shape": "dot", "size": 10}, {"id": "Tunnawi_Ritual.txt", "label": "Tunnawi_Ritual.txt", "shape": "dot", "size": 10}, {"id": "Wartke_1995_inDiscoveries_OA_period.txt", "label": "Wartke_1995_inDiscoveries_OA_period.txt", "shape": "dot", "size": 10}, {"id": "Cecen_1995_ArAn1_mutanu.txt", "label": "Cecen_1995_ArAn1_mutanu.txt", "shape": "dot", "size": 10}, {"id": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "label": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "shape": "dot", "size": 10}, {"id": "Larsen 1982b_BSMS4_caravan.txt", "label": "Larsen 1982b_BSMS4_caravan.txt", "shape": "dot", "size": 10}, {"id": "kuhrt1988.txt", "label": "kuhrt1988.txt", "shape": "dot", "size": 10}, {"id": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "label": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "shape": "dot", "size": 10}, {"id": "Hecker, K., G. Kryszat \u0026 L. Matous\u030c - Kappadokische Keilschrifttafeln aus den Sammlungen der Karlsuniversita\u0308t Prag. ICK 4, 1998(cut).txt", "label": "Hecker, K., G. Kryszat \u0026 L. Matous\u030c - Kappadokische Keilschrifttafeln aus den Sammlungen der Karlsuniversita\u0308t Prag. ICK 4, 1998(cut).txt", "shape": "dot", "size": 10}, {"id": "Michel_2010_C9T9_Transport.txt", "label": "Michel_2010_C9T9_Transport.txt", "shape": "dot", "size": 10}, {"id": "pardee2001b.txt", "label": "pardee2001b.txt", "shape": "dot", "size": 10}, {"id": "Hecker_1978b_OrNS47_tib\u0027imma.txt", "label": "Hecker_1978b_OrNS47_tib\u0027imma.txt", "shape": "dot", "size": 10}, {"id": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "label": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "shape": "dot", "size": 10}, {"id": "Matous_1972_ArOr40_dialekt.txt", "label": "Matous_1972_ArOr40_dialekt.txt", "shape": "dot", "size": 10}, {"id": "tuplin1987.txt", "label": "tuplin1987.txt", "shape": "dot", "size": 10}, {"id": "Sever_Cecen_1993_Bel57_soc_hist.txt", "label": "Sever_Cecen_1993_Bel57_soc_hist.txt", "shape": "dot", "size": 10}, {"id": "sjoberg_eduba.txt", "label": "sjoberg_eduba.txt", "shape": "dot", "size": 10}, {"id": "Sever_1997_ArAn3_BigicFS_amutum.txt", "label": "Sever_1997_ArAn3_BigicFS_amutum.txt", "shape": "dot", "size": 10}, {"id": "zadok1996a000.txt", "label": "zadok1996a000.txt", "shape": "dot", "size": 10}, {"id": "sasson1981.txt", "label": "sasson1981.txt", "shape": "dot", "size": 10}, {"id": "Watkins_1986.txt", "label": "Watkins_1986.txt", "shape": "dot", "size": 10}, {"id": "wiseman1958.txt", "label": "wiseman1958.txt", "shape": "dot", "size": 10}, {"id": "oelsner1989.txt", "label": "oelsner1989.txt", "shape": "dot", "size": 10}, {"id": "mosca1987.txt", "label": "mosca1987.txt", "shape": "dot", "size": 10}, {"id": "Michel, C. - 2007_RlA11_Qattunan.txt", "label": "Michel, C. - 2007_RlA11_Qattunan.txt", "shape": "dot", "size": 10}, {"id": "leblanc1999.txt", "label": "leblanc1999.txt", "shape": "dot", "size": 10}, {"id": "pardee1986a.txt", "label": "pardee1986a.txt", "shape": "dot", "size": 10}, {"id": "richards1994.txt", "label": "richards1994.txt", "shape": "dot", "size": 10}, {"id": "long1989.txt", "label": "long1989.txt", "shape": "dot", "size": 10}, {"id": "Streck_2000_ZA90_aktennotiz.txt", "label": "Streck_2000_ZA90_aktennotiz.txt", "shape": "dot", "size": 10}, {"id": "Melchert_mina.txt", "label": "Melchert_mina.txt", "shape": "dot", "size": 10}, {"id": "zaccagnini1999.txt", "label": "zaccagnini1999.txt", "shape": "dot", "size": 10}, {"id": "Larsen 1989.txt", "label": "Larsen 1989.txt", "shape": "dot", "size": 10}, {"id": "weishofer1996.txt", "label": "weishofer1996.txt", "shape": "dot", "size": 10}, {"id": "Melchert_covertcompounds.txt", "label": "Melchert_covertcompounds.txt", "shape": "dot", "size": 10}, {"id": "rosen1998.txt", "label": "rosen1998.txt", "shape": "dot", "size": 10}, {"id": "nougayrol1960.txt", "label": "nougayrol1960.txt", "shape": "dot", "size": 10}, {"id": "Larsen 1979_Sumer35_earlyAssur.txt", "label": "Larsen 1979_Sumer35_earlyAssur.txt", "shape": "dot", "size": 10}, {"id": "AnSt 52, 2002.txt", "label": "AnSt 52, 2002.txt", "shape": "dot", "size": 10}, {"id": "Garelli_Michel_1994_AMMY93_tablets_Ankara.txt", "label": "Garelli_Michel_1994_AMMY93_tablets_Ankara.txt", "shape": "dot", "size": 10}, {"id": "LewyJ_1961_HUCA32_Amurritica. HUCA 32, 1961 31-74.txt", "label": "LewyJ_1961_HUCA32_Amurritica. HUCA 32, 1961 31-74.txt", "shape": "dot", "size": 10}, {"id": "villard_cane.txt", "label": "villard_cane.txt", "shape": "dot", "size": 10}]);
edges = new vis.DataSet([{"Weight": 0.9427531361579896, "from": "Llop_2010_AuOr_28_Rec._OBO_160_5.txt", "to": "Dercksen_1997_ArAn3_BilgicFS_ikribu.txt", "weight": 1}, {"Weight": 0.9318217039108276, "from": "Llop_2010_AuOr_28_Rec._OBO_160_5.txt", "to": "Goetze_1937_JAOS57_Subartu.txt", "weight": 1}, {"Weight": 0.9008696675300598, "from": "Llop_2010_AuOr_28_Rec._OBO_160_5.txt", "to": "p249_s_a.txt", "weight": 1}, {"Weight": 0.9087567925453186, "from": "Llop_2010_AuOr_28_Rec._OBO_160_5.txt", "to": "OzgucN_1994_HroudaFS_seals1a-b.txt", "weight": 1}, {"Weight": 0.930776059627533, "from": "Llop_2010_AuOr_28_Rec._OBO_160_5.txt", "to": "zimansky1993.txt", "weight": 1}, {"Weight": 0.911579132080078, "from": "Llop_2010_AuOr_28_Rec._OBO_160_5.txt", "to": "middle_elamite_period.txt", "weight": 1}, {"Weight": 0.962185800075531, "from": "Llop_2010_AuOr_28_Rec._OBO_160_5.txt", "to": "Lemche_1979_JNES38_Social_Edicts.txt", "weight": 1}, {"Weight": 0.965295672416687, "from": "Llop_2010_AuOr_28_Rec._OBO_160_5.txt", "to": "wvdog_99.txt", "weight": 1}, {"Weight": 0.9306775331497192, "from": "Llop_2010_AuOr_28_Rec._OBO_160_5.txt", "to": "Carruba, Giorgieri \u0026 Mora eds - Atti del il congresson internazionale di Hittitologia. StMed 9, 1995.txt", "weight": 1}, {"Weight": 0.9100461602211, "from": "Llop_2010_AuOr_28_Rec._OBO_160_5.txt", "to": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "weight": 1}, {"Weight": 0.9407216906547546, "from": "Llop_2010_AuOr_28_Rec._OBO_160_5.txt", "to": "IndiaRussiaand18thcenttranscentralasiancaravantrade.txt", "weight": 1}, {"Weight": 0.9392094612121582, "from": "Llop_2010_AuOr_28_Rec._OBO_160_5.txt", "to": "Veenhof_Orthmann_Porada_1980_RlA5_kanish.txt", "weight": 1}, {"Weight": 0.9445634484291076, "from": "Llop_2010_AuOr_28_Rec._OBO_160_5.txt", "to": "Wiseman_1954_JCS8_Supp_Alalakh.txt", "weight": 1}, {"Weight": 0.9393271207809448, "from": "Llop_2010_AuOr_28_Rec._OBO_160_5.txt", "to": "Lyons, C. \u0026 J. Papadopolous eds - The Archaeology of Colonialism. 2002.txt", "weight": 1}, {"Weight": 0.9103327989578248, "from": "Llop_2010_AuOr_28_Rec._OBO_160_5.txt", "to": "OzgucT_2004_LarsenFS_Ib_archives.txt", "weight": 1}, {"Weight": 0.954756200313568, "from": "Llop_2010_AuOr_28_Rec._OBO_160_5.txt", "to": "Zeeb, Frank - Die Palastwirtschaft in Altsyrien. AOAT 282, 2001(cut).txt", "weight": 1}, {"Weight": 0.9389622807502748, "from": "Llop_2010_AuOr_28_Rec._OBO_160_5.txt", "to": "Gunbatti_2001_VeenhofFS_river_miss_157.txt", "weight": 1}, {"Weight": 0.9134892225265504, "from": "Llop_2010_AuOr_28_Rec._OBO_160_5.txt", "to": "mcadams1978.txt", "weight": 1}, {"Weight": 0.9085231423377992, "from": "Llop_2010_AuOr_28_Rec._OBO_160_5.txt", "to": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "weight": 1}, {"Weight": 0.9021138548851012, "from": "Llop_2010_AuOr_28_Rec._OBO_160_5.txt", "to": "Veenhof_1982c_KrausFS_manumission.txt", "weight": 1}, {"Weight": 0.9264376759529114, "from": "Llop_2010_AuOr_28_Rec._OBO_160_5.txt", "to": "mellink1992.txt", "weight": 1}, {"Weight": 0.9173187017440796, "from": "Llop_2010_AuOr_28_Rec._OBO_160_5.txt", "to": "Faist, Betina - Der Fernhandel des assyrischen Reiches. AOAT 265, 2001.txt", "weight": 1}, {"Weight": 0.9273775219917296, "from": "Llop_2010_AuOr_28_Rec._OBO_160_5.txt", "to": "Kantor_62_plaque_from_tainat.txt", "weight": 1}, {"Weight": 0.917168140411377, "from": "Llop_2010_AuOr_28_Rec._OBO_160_5.txt", "to": "Veenhof, Klaas R. - Review of Notes on a New Volume of Old Assyrian Texts by Karl Hecker. JAOS 122 4, 2002, pp. 797-802.txt", "weight": 1}, {"Weight": 0.9090961813926696, "from": "Llop_2010_AuOr_28_Rec._OBO_160_5.txt", "to": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "weight": 1}, {"Weight": 0.9079339504241944, "from": "Llop_2010_AuOr_28_Rec._OBO_160_5.txt", "to": "Jacobsen_1943_JNES2_Primitive_Democracy.txt", "weight": 1}, {"Weight": 0.9449635744094848, "from": "Llop_2010_AuOr_28_Rec._OBO_160_5.txt", "to": "Dercksen, J. G. - When We Met in Hattus\u030c. FS Veenhof 2001.txt", "weight": 1}, {"Weight": 0.9666092991828918, "from": "Llop_2010_AuOr_28_Rec._OBO_160_5.txt", "to": "pardee2001a.txt", "weight": 1}, {"Weight": 0.9020053148269652, "from": "Llop_2010_AuOr_28_Rec._OBO_160_5.txt", "to": "Veenhof, Klaas R. - Some displaced Tablets from Karum Kanesh (Kultepe). AoF 35 1, 2008, pp. 10-27.txt", "weight": 1}, {"Weight": 0.919713020324707, "from": "Llop_2010_AuOr_28_Rec._OBO_160_5.txt", "to": "Luckenbill_1921_AJSLL_HittiteTreatiesandLettters.txt", "weight": 1}, {"Weight": 0.925643265247345, "from": "Dercksen_1997_ArAn3_BilgicFS_ikribu.txt", "to": "Gu\u0308nbatti_2008_AOF 35-1_An Eponym List - KEL G - from Ku\u0308ltepe.txt", "weight": 1}, {"Weight": 0.9681146740913392, "from": "Dercksen_1997_ArAn3_BilgicFS_ikribu.txt", "to": "Goetze_1937_JAOS57_Subartu.txt", "weight": 1}, {"Weight": 0.949404001235962, "from": "Dercksen_1997_ArAn3_BilgicFS_ikribu.txt", "to": "p249_s_a.txt", "weight": 1}, {"Weight": 0.9065178632736206, "from": "Dercksen_1997_ArAn3_BilgicFS_ikribu.txt", "to": "PRU 3 plates.txt", "weight": 1}, {"Weight": 0.9096941351890564, "from": "Dercksen_1997_ArAn3_BilgicFS_ikribu.txt", "to": "zimansky1993.txt", "weight": 1}, {"Weight": 0.90821373462677, "from": "Dercksen_1997_ArAn3_BilgicFS_ikribu.txt", "to": "middle_elamite_period.txt", "weight": 1}, {"Weight": 0.9548557996749878, "from": "Dercksen_1997_ArAn3_BilgicFS_ikribu.txt", "to": "Bilgic\u0327_1947b_Bel11_C\u0327ivi Yaz\u0131l\u0131 Hukuki-I\u0307ktisadi Kaynaklar, Mahiyeti ve Muhtevalar\u0131. Belleten 11 (44), 1947 573-602.txt", "weight": 1}, {"Weight": 0.9600327610969543, "from": "Dercksen_1997_ArAn3_BilgicFS_ikribu.txt", "to": "Lemche_1979_JNES38_Social_Edicts.txt", "weight": 1}, {"Weight": 0.9236306548118592, "from": "Dercksen_1997_ArAn3_BilgicFS_ikribu.txt", "to": "wvdog_99.txt", "weight": 1}, {"Weight": 0.9638680219650269, "from": "Dercksen_1997_ArAn3_BilgicFS_ikribu.txt", "to": "Carruba, Giorgieri \u0026 Mora eds - Atti del il congresson internazionale di Hittitologia. StMed 9, 1995.txt", "weight": 1}, {"Weight": 0.907805860042572, "from": "Dercksen_1997_ArAn3_BilgicFS_ikribu.txt", "to": "Dercksen_1999_MOS1_financing.txt", "weight": 1}, {"Weight": 0.9554908275604248, "from": "Dercksen_1997_ArAn3_BilgicFS_ikribu.txt", "to": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "weight": 1}, {"Weight": 0.942768692970276, "from": "Dercksen_1997_ArAn3_BilgicFS_ikribu.txt", "to": "IndiaRussiaand18thcenttranscentralasiancaravantrade.txt", "weight": 1}, {"Weight": 0.9208102822303772, "from": "Dercksen_1997_ArAn3_BilgicFS_ikribu.txt", "to": "Yakubovich 2010_Luvian-book.txt", "weight": 1}, {"Weight": 0.9494028687477112, "from": "Dercksen_1997_ArAn3_BilgicFS_ikribu.txt", "to": "Veenhof_Orthmann_Porada_1980_RlA5_kanish.txt", "weight": 1}, {"Weight": 0.9311201572418212, "from": "Dercksen_1997_ArAn3_BilgicFS_ikribu.txt", "to": "Wiseman_1954_JCS8_Supp_Alalakh.txt", "weight": 1}, {"Weight": 0.9037925601005554, "from": "Dercksen_1997_ArAn3_BilgicFS_ikribu.txt", "to": "LewyJ_1936_RHA3_chronologie.txt", "weight": 1}, {"Weight": 0.9285837411880492, "from": "Dercksen_1997_ArAn3_BilgicFS_ikribu.txt", "to": "Pritsch_1956_JCS10_Rev_Babylonian_Laws.txt", "weight": 1}, {"Weight": 0.9511114954948424, "from": "Dercksen_1997_ArAn3_BilgicFS_ikribu.txt", "to": "Lyons, C. \u0026 J. Papadopolous eds - The Archaeology of Colonialism. 2002.txt", "weight": 1}, {"Weight": 0.9636717438697816, "from": "Dercksen_1997_ArAn3_BilgicFS_ikribu.txt", "to": "OzgucT_2004_LarsenFS_Ib_archives.txt", "weight": 1}, {"Weight": 0.9342467188835144, "from": "Dercksen_1997_ArAn3_BilgicFS_ikribu.txt", "to": "Zeeb, Frank - Die Palastwirtschaft in Altsyrien. AOAT 282, 2001(cut).txt", "weight": 1}, {"Weight": 0.9195983409881592, "from": "Dercksen_1997_ArAn3_BilgicFS_ikribu.txt", "to": "Gunbatti_2001_VeenhofFS_river_miss_157.txt", "weight": 1}, {"Weight": 0.946711003780365, "from": "Dercksen_1997_ArAn3_BilgicFS_ikribu.txt", "to": "mcadams1978.txt", "weight": 1}, {"Weight": 0.914025902748108, "from": "Dercksen_1997_ArAn3_BilgicFS_ikribu.txt", "to": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "weight": 1}, {"Weight": 0.9332671165466307, "from": "Dercksen_1997_ArAn3_BilgicFS_ikribu.txt", "to": "Michel_2015_KIM1_Subartu35.txt", "weight": 1}, {"Weight": 0.9318178296089172, "from": "Dercksen_1997_ArAn3_BilgicFS_ikribu.txt", "to": "Michel_1998_3UHKB_Quelques re\u0301flexions sur les archives_p419-433.txt", "weight": 1}, {"Weight": 0.9435574412345886, "from": "Dercksen_1997_ArAn3_BilgicFS_ikribu.txt", "to": "Klein_2004_ZA94_6_tablets_Uruk.txt", "weight": 1}, {"Weight": 0.9332146048545836, "from": "Dercksen_1997_ArAn3_BilgicFS_ikribu.txt", "to": "Veenhof_1982c_KrausFS_manumission.txt", "weight": 1}, {"Weight": 0.969393253326416, "from": "Dercksen_1997_ArAn3_BilgicFS_ikribu.txt", "to": "mellink1992.txt", "weight": 1}, {"Weight": 0.9023061990737916, "from": "Dercksen_1997_ArAn3_BilgicFS_ikribu.txt", "to": "AnSt 7, 1957.txt", "weight": 1}, {"Weight": 0.9217926859855652, "from": "Dercksen_1997_ArAn3_BilgicFS_ikribu.txt", "to": "Muhly, J. D. - The Copper Ox-Hide Ingots and the Bronze Age Metals Trade 13.txt", "weight": 1}, {"Weight": 0.9169619679450988, "from": "Dercksen_1997_ArAn3_BilgicFS_ikribu.txt", "to": "Faist, Betina - Der Fernhandel des assyrischen Reiches. AOAT 265, 2001.txt", "weight": 1}, {"Weight": 0.9201897382736206, "from": "Dercksen_1997_ArAn3_BilgicFS_ikribu.txt", "to": "Kantor_62_plaque_from_tainat.txt", "weight": 1}, {"Weight": 0.9383159875869752, "from": "Dercksen_1997_ArAn3_BilgicFS_ikribu.txt", "to": "Veenhof, Klaas R. - Review of Notes on a New Volume of Old Assyrian Texts by Karl Hecker. JAOS 122 4, 2002, pp. 797-802.txt", "weight": 1}, {"Weight": 0.92321115732193, "from": "Dercksen_1997_ArAn3_BilgicFS_ikribu.txt", "to": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "weight": 1}, {"Weight": 0.9459376335144044, "from": "Dercksen_1997_ArAn3_BilgicFS_ikribu.txt", "to": "Jacobsen_1943_JNES2_Primitive_Democracy.txt", "weight": 1}, {"Weight": 0.9636993408203124, "from": "Dercksen_1997_ArAn3_BilgicFS_ikribu.txt", "to": "Dercksen, J. G. - When We Met in Hattus\u030c. FS Veenhof 2001.txt", "weight": 1}, {"Weight": 0.9493784308433532, "from": "Dercksen_1997_ArAn3_BilgicFS_ikribu.txt", "to": "AnSt 54, 2004.txt", "weight": 1}, {"Weight": 0.9332277178764344, "from": "Dercksen_1997_ArAn3_BilgicFS_ikribu.txt", "to": "pardee2001a.txt", "weight": 1}, {"Weight": 0.9449287056922911, "from": "Dercksen_1997_ArAn3_BilgicFS_ikribu.txt", "to": "Veenhof, Klaas R. - Some displaced Tablets from Karum Kanesh (Kultepe). AoF 35 1, 2008, pp. 10-27.txt", "weight": 1}, {"Weight": 0.9044620394706726, "from": "Dercksen_1997_ArAn3_BilgicFS_ikribu.txt", "to": "Larsen-Lassen_2014_cultural_encounters_Fs_Stolper_Final-libre.txt", "weight": 1}, {"Weight": 0.9035404324531556, "from": "Dercksen_1997_ArAn3_BilgicFS_ikribu.txt", "to": "Pinches_1881a_PSBA_British_Museum.txt", "weight": 1}, {"Weight": 0.9109871983528136, "from": "Dercksen_1997_ArAn3_BilgicFS_ikribu.txt", "to": "Jankowska_1967_ArOr35_ep_rotation.txt", "weight": 1}, {"Weight": 0.9098843932151794, "from": "Dercksen_1997_ArAn3_BilgicFS_ikribu.txt", "to": "Kramer, S. N. - Commerce and Trade Gleanings from Sumerian Literature 10.txt", "weight": 1}, {"Weight": 0.9024950861930848, "from": "Dercksen_1997_ArAn3_BilgicFS_ikribu.txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.924159049987793, "from": "Dercksen_1997_ArAn3_BilgicFS_ikribu.txt", "to": "Larsen 1971_Or40_slander.txt", "weight": 1}, {"Weight": 0.9526232481002808, "from": "Dercksen_1997_ArAn3_BilgicFS_ikribu.txt", "to": "Luckenbill_1921_AJSLL_HittiteTreatiesandLettters.txt", "weight": 1}, {"Weight": 0.9115830063819884, "from": "Dercksen_1997_ArAn3_BilgicFS_ikribu.txt", "to": "Anastasio, Stefano - The Archaeology of Upper Mesopotamia. Subartu 1, 1995 (grey).txt", "weight": 1}, {"Weight": 0.9507688879966736, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "p249_s_a.txt", "weight": 1}, {"Weight": 0.953674614429474, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "PRU 3 plates.txt", "weight": 1}, {"Weight": 0.927365243434906, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "OzgucN_1994_HroudaFS_seals1a-b.txt", "weight": 1}, {"Weight": 0.9393494129180908, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "zimansky1993.txt", "weight": 1}, {"Weight": 0.9420279264450072, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "middle_elamite_period.txt", "weight": 1}, {"Weight": 0.9180381894111632, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "weight": 1}, {"Weight": 0.919993817806244, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "Michel_2008_La Correspondes.txt", "weight": 1}, {"Weight": 0.9419538974761964, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "Melchert_sarnikzel.txt", "weight": 1}, {"Weight": 0.94778174161911, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "Bilgic\u0327_1947b_Bel11_C\u0327ivi Yaz\u0131l\u0131 Hukuki-I\u0307ktisadi Kaynaklar, Mahiyeti ve Muhtevalar\u0131. Belleten 11 (44), 1947 573-602.txt", "weight": 1}, {"Weight": 0.9806487560272216, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "Lemche_1979_JNES38_Social_Edicts.txt", "weight": 1}, {"Weight": 0.93327397108078, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "wvdog_99.txt", "weight": 1}, {"Weight": 0.9710918664932252, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "Carruba, Giorgieri \u0026 Mora eds - Atti del il congresson internazionale di Hittitologia. StMed 9, 1995.txt", "weight": 1}, {"Weight": 0.9333810210227966, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "Dercksen_1999_MOS1_financing.txt", "weight": 1}, {"Weight": 0.9685382843017578, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "weight": 1}, {"Weight": 0.9636369943618774, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "IndiaRussiaand18thcenttranscentralasiancaravantrade.txt", "weight": 1}, {"Weight": 0.9071874618530272, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "Renger_2003_Mercanti_trade_market_in_ane.txt", "weight": 1}, {"Weight": 0.9119402766227722, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "Yakubovich 2010_Luvian-book.txt", "weight": 1}, {"Weight": 0.9248439073562622, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "Veenhof_Orthmann_Porada_1980_RlA5_kanish.txt", "weight": 1}, {"Weight": 0.9240437150001526, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "Wiseman_1954_JCS8_Supp_Alalakh.txt", "weight": 1}, {"Weight": 0.9571015238761902, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "weight": 1}, {"Weight": 0.94653058052063, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "LewyJ_1936_RHA3_chronologie.txt", "weight": 1}, {"Weight": 0.96652352809906, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "Pritsch_1956_JCS10_Rev_Babylonian_Laws.txt", "weight": 1}, {"Weight": 0.9165784120559692, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "Kienast_1998_DellerFS_tertum.txt", "weight": 1}, {"Weight": 0.9301896691322328, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "Lyons, C. \u0026 J. Papadopolous eds - The Archaeology of Colonialism. 2002.txt", "weight": 1}, {"Weight": 0.9417321085929872, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "OzgucT_2004_LarsenFS_Ib_archives.txt", "weight": 1}, {"Weight": 0.9179774522781372, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "Zeeb, Frank - Die Palastwirtschaft in Altsyrien. AOAT 282, 2001(cut).txt", "weight": 1}, {"Weight": 0.9531452655792236, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "mcadams1978.txt", "weight": 1}, {"Weight": 0.9559695720672609, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "weight": 1}, {"Weight": 0.916557550430298, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "Michel_2015_KIM1_Subartu35.txt", "weight": 1}, {"Weight": 0.9343357682228088, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "Michel_1998_3UHKB_Quelques re\u0301flexions sur les archives_p419-433.txt", "weight": 1}, {"Weight": 0.9272040128707886, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "Stein, Gil - Produces, Patrons, and Prestige - Craft Specialists and Emergent Elites in Mesopotamia from 5500-3100.txt", "weight": 1}, {"Weight": 0.9155447483062744, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "weight": 1}, {"Weight": 0.9213860630989076, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "Dercksen, J. G. ed. - Trade and Finance in Ancient Mesopotamia, MOS 1. PIHANS 84, 1997 (2).txt", "weight": 1}, {"Weight": 0.9300584197044371, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "Zaccagnini_1983_Mobility.txt", "weight": 1}, {"Weight": 0.9624106287956238, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "Klein_2004_ZA94_6_tablets_Uruk.txt", "weight": 1}, {"Weight": 0.9108194708824158, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.904893398284912, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "Gelb_1969_Ath47_capp_karkemish.txt", "weight": 1}, {"Weight": 0.9292858242988586, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "vandenhout2002d.txt", "weight": 1}, {"Weight": 0.9538279175758362, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "Veenhof_1982c_KrausFS_manumission.txt", "weight": 1}, {"Weight": 0.9575307369232178, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "mellink1992.txt", "weight": 1}, {"Weight": 0.9015735387802124, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "AnSt 7, 1957.txt", "weight": 1}, {"Weight": 0.9130608439445496, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.9615711569786072, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "Muhly, J. D. - The Copper Ox-Hide Ingots and the Bronze Age Metals Trade 13.txt", "weight": 1}, {"Weight": 0.9374187588691713, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.9284172654151917, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.9160690307617188, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "Faist, Betina - Der Fernhandel des assyrischen Reiches. AOAT 265, 2001.txt", "weight": 1}, {"Weight": 0.938141405582428, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "politics of mesha routledge.txt", "weight": 1}, {"Weight": 0.9655223488807678, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "Kantor_62_plaque_from_tainat.txt", "weight": 1}, {"Weight": 0.9432872533798218, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.9354403614997864, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "Anatolica 28, 2002.txt", "weight": 1}, {"Weight": 0.9218369126319884, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "Veenhof, Klaas R. - Review of Notes on a New Volume of Old Assyrian Texts by Karl Hecker. JAOS 122 4, 2002, pp. 797-802.txt", "weight": 1}, {"Weight": 0.9598656892776488, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "weight": 1}, {"Weight": 0.9604843854904176, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "Jacobsen_1943_JNES2_Primitive_Democracy.txt", "weight": 1}, {"Weight": 0.9674978256225586, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "Dercksen, J. G. - When We Met in Hattus\u030c. FS Veenhof 2001.txt", "weight": 1}, {"Weight": 0.9369980692863464, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "AnSt 54, 2004.txt", "weight": 1}, {"Weight": 0.927251636981964, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "pardee2001a.txt", "weight": 1}, {"Weight": 0.9252206087112428, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "Garelli_1962_RA56_religion.txt", "weight": 1}, {"Weight": 0.9468306303024292, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "Veenhof, Klaas R. - Some displaced Tablets from Karum Kanesh (Kultepe). AoF 35 1, 2008, pp. 10-27.txt", "weight": 1}, {"Weight": 0.9444268345832824, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "Pinches_1881a_PSBA_British_Museum.txt", "weight": 1}, {"Weight": 0.951364815235138, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "weight": 1}, {"Weight": 0.941112458705902, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "Jankowska_1967_ArOr35_ep_rotation.txt", "weight": 1}, {"Weight": 0.9541923403739928, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "Kramer, S. N. - Commerce and Trade Gleanings from Sumerian Literature 10.txt", "weight": 1}, {"Weight": 0.9497381448745728, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.9366708397865297, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "Larsen 1971_Or40_slander.txt", "weight": 1}, {"Weight": 0.9596093893051147, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "Luckenbill_1921_AJSLL_HittiteTreatiesandLettters.txt", "weight": 1}, {"Weight": 0.9047383666038512, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "pardee1979-80a.txt", "weight": 1}, {"Weight": 0.9607977867126464, "from": "Goetze_1937_JAOS57_Subartu.txt", "to": "Gu\u0308nbatti_2008_AOF 35-1_An Eponym List - KEL G - from Ku\u0308ltepe.txt", "weight": 1}, {"Weight": 0.908161461353302, "from": "p249_s_a.txt", "to": "PRU 3 plates.txt", "weight": 1}, {"Weight": 0.9115443229675292, "from": "p249_s_a.txt", "to": "AnSt 19, 1969.txt", "weight": 1}, {"Weight": 0.9649579524993896, "from": "p249_s_a.txt", "to": "Bilgic\u0327_1947b_Bel11_C\u0327ivi Yaz\u0131l\u0131 Hukuki-I\u0307ktisadi Kaynaklar, Mahiyeti ve Muhtevalar\u0131. Belleten 11 (44), 1947 573-602.txt", "weight": 1}, {"Weight": 0.9421859979629515, "from": "p249_s_a.txt", "to": "Lemche_1979_JNES38_Social_Edicts.txt", "weight": 1}, {"Weight": 0.9541321396827698, "from": "p249_s_a.txt", "to": "Carruba, Giorgieri \u0026 Mora eds - Atti del il congresson internazionale di Hittitologia. StMed 9, 1995.txt", "weight": 1}, {"Weight": 0.9353691935539246, "from": "p249_s_a.txt", "to": "Dercksen_1999_MOS1_financing.txt", "weight": 1}, {"Weight": 0.9386364817619324, "from": "p249_s_a.txt", "to": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "weight": 1}, {"Weight": 0.9469532370567322, "from": "p249_s_a.txt", "to": "IndiaRussiaand18thcenttranscentralasiancaravantrade.txt", "weight": 1}, {"Weight": 0.962496280670166, "from": "p249_s_a.txt", "to": "Yakubovich 2010_Luvian-book.txt", "weight": 1}, {"Weight": 0.9567564725875854, "from": "p249_s_a.txt", "to": "Veenhof_Orthmann_Porada_1980_RlA5_kanish.txt", "weight": 1}, {"Weight": 0.901320457458496, "from": "p249_s_a.txt", "to": "LewyJ_1936_RHA3_chronologie.txt", "weight": 1}, {"Weight": 0.9271479845046996, "from": "p249_s_a.txt", "to": "Pritsch_1956_JCS10_Rev_Babylonian_Laws.txt", "weight": 1}, {"Weight": 0.9549371004104614, "from": "p249_s_a.txt", "to": "Lyons, C. \u0026 J. Papadopolous eds - The Archaeology of Colonialism. 2002.txt", "weight": 1}, {"Weight": 0.9476624727249146, "from": "p249_s_a.txt", "to": "OzgucT_2004_LarsenFS_Ib_archives.txt", "weight": 1}, {"Weight": 0.9096351265907288, "from": "p249_s_a.txt", "to": "Zeeb, Frank - Die Palastwirtschaft in Altsyrien. AOAT 282, 2001(cut).txt", "weight": 1}, {"Weight": 0.923447608947754, "from": "p249_s_a.txt", "to": "Gunbatti_2001_VeenhofFS_river_miss_157.txt", "weight": 1}, {"Weight": 0.9686086773872375, "from": "p249_s_a.txt", "to": "mcadams1978.txt", "weight": 1}, {"Weight": 0.953089714050293, "from": "p249_s_a.txt", "to": "Michel_2015_KIM1_Subartu35.txt", "weight": 1}, {"Weight": 0.9367054104804992, "from": "p249_s_a.txt", "to": "Michel_1998_3UHKB_Quelques re\u0301flexions sur les archives_p419-433.txt", "weight": 1}, {"Weight": 0.9314284920692444, "from": "p249_s_a.txt", "to": "Dercksen, J. G. ed. - Trade and Finance in Ancient Mesopotamia, MOS 1. PIHANS 84, 1997 (2).txt", "weight": 1}, {"Weight": 0.9501977562904358, "from": "p249_s_a.txt", "to": "Klein_2004_ZA94_6_tablets_Uruk.txt", "weight": 1}, {"Weight": 0.9323375821113586, "from": "p249_s_a.txt", "to": "Veenhof_1982c_KrausFS_manumission.txt", "weight": 1}, {"Weight": 0.9471887946128844, "from": "p249_s_a.txt", "to": "mellink1992.txt", "weight": 1}, {"Weight": 0.9520123600959778, "from": "p249_s_a.txt", "to": "AnSt 7, 1957.txt", "weight": 1}, {"Weight": 0.9221028685569764, "from": "p249_s_a.txt", "to": "Muhly, J. D. - The Copper Ox-Hide Ingots and the Bronze Age Metals Trade 13.txt", "weight": 1}, {"Weight": 0.9220801591873168, "from": "p249_s_a.txt", "to": "Soldt, W.H. van ed. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "weight": 1}, {"Weight": 0.9161904454231262, "from": "p249_s_a.txt", "to": "Faist, Betina - Der Fernhandel des assyrischen Reiches. AOAT 265, 2001.txt", "weight": 1}, {"Weight": 0.9592882990837096, "from": "p249_s_a.txt", "to": "Veenhof, Klaas R. - Review of Notes on a New Volume of Old Assyrian Texts by Karl Hecker. JAOS 122 4, 2002, pp. 797-802.txt", "weight": 1}, {"Weight": 0.9201107025146484, "from": "p249_s_a.txt", "to": "Kienast_2003_KienastFS_Intro.txt", "weight": 1}, {"Weight": 0.920568823814392, "from": "p249_s_a.txt", "to": "Jacobsen_1943_JNES2_Primitive_Democracy.txt", "weight": 1}, {"Weight": 0.9715934991836548, "from": "p249_s_a.txt", "to": "Dercksen, J. G. - When We Met in Hattus\u030c. FS Veenhof 2001.txt", "weight": 1}, {"Weight": 0.964879035949707, "from": "p249_s_a.txt", "to": "AnSt 54, 2004.txt", "weight": 1}, {"Weight": 0.9037449955940248, "from": "p249_s_a.txt", "to": "pardee2001a.txt", "weight": 1}, {"Weight": 0.975561499595642, "from": "p249_s_a.txt", "to": "Veenhof, Klaas R. - Some displaced Tablets from Karum Kanesh (Kultepe). AoF 35 1, 2008, pp. 10-27.txt", "weight": 1}, {"Weight": 0.9020460247993468, "from": "p249_s_a.txt", "to": "Pinches_1881a_PSBA_British_Museum.txt", "weight": 1}, {"Weight": 0.9015788435935974, "from": "p249_s_a.txt", "to": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "weight": 1}, {"Weight": 0.92607581615448, "from": "p249_s_a.txt", "to": "Jankowska_1967_ArOr35_ep_rotation.txt", "weight": 1}, {"Weight": 0.9056367874145508, "from": "p249_s_a.txt", "to": "Kramer, S. N. - Commerce and Trade Gleanings from Sumerian Literature 10.txt", "weight": 1}, {"Weight": 0.9372901320457458, "from": "p249_s_a.txt", "to": "Larsen 1971_Or40_slander.txt", "weight": 1}, {"Weight": 0.9492695331573486, "from": "p249_s_a.txt", "to": "Luckenbill_1921_AJSLL_HittiteTreatiesandLettters.txt", "weight": 1}, {"Weight": 0.939674437046051, "from": "p249_s_a.txt", "to": "Gu\u0308nbatti_2008_AOF 35-1_An Eponym List - KEL G - from Ku\u0308ltepe.txt", "weight": 1}, {"Weight": 0.9178622961044312, "from": "p249_s_a.txt", "to": "Anastasio, Stefano - The Archaeology of Upper Mesopotamia. Subartu 1, 1995 (grey).txt", "weight": 1}, {"Weight": 0.9010367393493652, "from": "OzgucN_1994_HroudaFS_seals1a-b.txt", "to": "LewyJ_1928_ZA38_Amoriterfrage.txt", "weight": 1}, {"Weight": 0.9546276926994324, "from": "OzgucN_1994_HroudaFS_seals1a-b.txt", "to": "zimansky1993.txt", "weight": 1}, {"Weight": 0.9193940162658693, "from": "OzgucN_1994_HroudaFS_seals1a-b.txt", "to": "vandenhout2002.txt", "weight": 1}, {"Weight": 0.972591519355774, "from": "OzgucN_1994_HroudaFS_seals1a-b.txt", "to": "middle_elamite_period.txt", "weight": 1}, {"Weight": 0.9479982852935792, "from": "OzgucN_1994_HroudaFS_seals1a-b.txt", "to": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "weight": 1}, {"Weight": 0.923529863357544, "from": "OzgucN_1994_HroudaFS_seals1a-b.txt", "to": "Michel_2008_La Correspondes.txt", "weight": 1}, {"Weight": 0.9421523809432985, "from": "OzgucN_1994_HroudaFS_seals1a-b.txt", "to": "Bayram_1996_Bel229_slavery.txt", "weight": 1}, {"Weight": 0.932101845741272, "from": "OzgucN_1994_HroudaFS_seals1a-b.txt", "to": "Lemche_1979_JNES38_Social_Edicts.txt", "weight": 1}, {"Weight": 0.9282388687133788, "from": "OzgucN_1994_HroudaFS_seals1a-b.txt", "to": "wvdog_99.txt", "weight": 1}, {"Weight": 0.912644863128662, "from": "OzgucN_1994_HroudaFS_seals1a-b.txt", "to": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "weight": 1}, {"Weight": 0.9055808186531068, "from": "OzgucN_1994_HroudaFS_seals1a-b.txt", "to": "IndiaRussiaand18thcenttranscentralasiancaravantrade.txt", "weight": 1}, {"Weight": 0.9151114225387572, "from": "OzgucN_1994_HroudaFS_seals1a-b.txt", "to": "Deller_1986_JEOL25_kanwarta.txt", "weight": 1}, {"Weight": 0.9342973828315736, "from": "OzgucN_1994_HroudaFS_seals1a-b.txt", "to": "Renger_2003_Mercanti_trade_market_in_ane.txt", "weight": 1}, {"Weight": 0.92247474193573, "from": "OzgucN_1994_HroudaFS_seals1a-b.txt", "to": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "weight": 1}, {"Weight": 0.900032639503479, "from": "OzgucN_1994_HroudaFS_seals1a-b.txt", "to": "richardson2004.txt", "weight": 1}, {"Weight": 0.9328038096427916, "from": "OzgucN_1994_HroudaFS_seals1a-b.txt", "to": "LewyJ_1936_RHA3_chronologie.txt", "weight": 1}, {"Weight": 0.9544912576675416, "from": "OzgucN_1994_HroudaFS_seals1a-b.txt", "to": "Kienast_1998_DellerFS_tertum.txt", "weight": 1}, {"Weight": 0.9030365943908693, "from": "OzgucN_1994_HroudaFS_seals1a-b.txt", "to": "Michel_2010_JCS62.txt", "weight": 1}, {"Weight": 0.9422019720077516, "from": "OzgucN_1994_HroudaFS_seals1a-b.txt", "to": "Bilgic_1990_TTK10_Turkish.txt", "weight": 1}, {"Weight": 0.9461512565612792, "from": "OzgucN_1994_HroudaFS_seals1a-b.txt", "to": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "weight": 1}, {"Weight": 0.9571731686592102, "from": "OzgucN_1994_HroudaFS_seals1a-b.txt", "to": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "weight": 1}, {"Weight": 0.9271875023841858, "from": "OzgucN_1994_HroudaFS_seals1a-b.txt", "to": "Thureau-Dangin_1911_RA8_date.txt", "weight": 1}, {"Weight": 0.9484522342681884, "from": "OzgucN_1994_HroudaFS_seals1a-b.txt", "to": "Dercksen_2005_JEOL39_Adad_king.txt", "weight": 1}, {"Weight": 0.9184284210205078, "from": "OzgucN_1994_HroudaFS_seals1a-b.txt", "to": "Michel_2007_RlA11_SadumAdal_Labua.txt", "weight": 1}, {"Weight": 0.9538230299949646, "from": "OzgucN_1994_HroudaFS_seals1a-b.txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.9580026268959044, "from": "OzgucN_1994_HroudaFS_seals1a-b.txt", "to": "Gelb_1969_Ath47_capp_karkemish.txt", "weight": 1}, {"Weight": 0.9329015016555786, "from": "OzgucN_1994_HroudaFS_seals1a-b.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.9289746880531312, "from": "OzgucN_1994_HroudaFS_seals1a-b.txt", "to": "vandenhout2002d.txt", "weight": 1}, {"Weight": 0.9200878143310548, "from": "OzgucN_1994_HroudaFS_seals1a-b.txt", "to": "Veenhof_1982c_KrausFS_manumission.txt", "weight": 1}, {"Weight": 0.9436811208724976, "from": "OzgucN_1994_HroudaFS_seals1a-b.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.9446781873703004, "from": "OzgucN_1994_HroudaFS_seals1a-b.txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.9266457557678224, "from": "OzgucN_1994_HroudaFS_seals1a-b.txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.9572798013687134, "from": "OzgucN_1994_HroudaFS_seals1a-b.txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.9158416390419006, "from": "OzgucN_1994_HroudaFS_seals1a-b.txt", "to": "politics of mesha routledge.txt", "weight": 1}, {"Weight": 0.956774115562439, "from": "OzgucN_1994_HroudaFS_seals1a-b.txt", "to": "Kantor_62_plaque_from_tainat.txt", "weight": 1}, {"Weight": 0.9469600319862366, "from": "OzgucN_1994_HroudaFS_seals1a-b.txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.922286331653595, "from": "OzgucN_1994_HroudaFS_seals1a-b.txt", "to": "Anatolica 28, 2002.txt", "weight": 1}, {"Weight": 0.9319666028022766, "from": "OzgucN_1994_HroudaFS_seals1a-b.txt", "to": "pru3pt1000.txt", "weight": 1}, {"Weight": 0.946850597858429, "from": "OzgucN_1994_HroudaFS_seals1a-b.txt", "to": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "weight": 1}, {"Weight": 0.9271441102027892, "from": "OzgucN_1994_HroudaFS_seals1a-b.txt", "to": "Matous_1981_DiakonoffFS_siegelentumer.txt", "weight": 1}, {"Weight": 0.9280036091804504, "from": "OzgucN_1994_HroudaFS_seals1a-b.txt", "to": "pru3pt1001.txt", "weight": 1}, {"Weight": 0.9074501991271972, "from": "OzgucN_1994_HroudaFS_seals1a-b.txt", "to": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "weight": 1}, {"Weight": 0.9218656420707704, "from": "OzgucN_1994_HroudaFS_seals1a-b.txt", "to": "pardee2001a.txt", "weight": 1}, {"Weight": 0.923446774482727, "from": "OzgucN_1994_HroudaFS_seals1a-b.txt", "to": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "weight": 1}, {"Weight": 0.9336001873016356, "from": "OzgucN_1994_HroudaFS_seals1a-b.txt", "to": "Veenhof_1982b_JEOL27_over.txt", "weight": 1}, {"Weight": 0.9455493092536926, "from": "OzgucN_1994_HroudaFS_seals1a-b.txt", "to": "Hrozny_1928_OLZ1928_rev_Clay_BIN4.PDF.txt", "weight": 1}, {"Weight": 0.937410295009613, "from": "OzgucN_1994_HroudaFS_seals1a-b.txt", "to": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "weight": 1}, {"Weight": 0.912185788154602, "from": "OzgucN_1994_HroudaFS_seals1a-b.txt", "to": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "weight": 1}, {"Weight": 0.925483763217926, "from": "OzgucN_1994_HroudaFS_seals1a-b.txt", "to": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "weight": 1}, {"Weight": 0.9057607054710388, "from": "OzgucN_1994_HroudaFS_seals1a-b.txt", "to": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "weight": 1}, {"Weight": 0.9371241331100464, "from": "OzgucN_1994_HroudaFS_seals1a-b.txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.935509443283081, "from": "OzgucN_1994_HroudaFS_seals1a-b.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.9251009821891784, "from": "OzgucN_1994_HroudaFS_seals1a-b.txt", "to": "owen1990.txt", "weight": 1}, {"Weight": 0.9170184135437012, "from": "OzgucN_1994_HroudaFS_seals1a-b.txt", "to": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "weight": 1}, {"Weight": 0.9264007210731506, "from": "OzgucN_1994_HroudaFS_seals1a-b.txt", "to": "Goetze_1953b_Language29_PN.txt", "weight": 1}, {"Weight": 0.9350279569625854, "from": "OzgucN_1994_HroudaFS_seals1a-b.txt", "to": "pardee1979-80a.txt", "weight": 1}, {"Weight": 0.9268581867218018, "from": "OzgucN_1994_HroudaFS_seals1a-b.txt", "to": "Yilmaz_2007_AMMY2006.txt", "weight": 1}, {"Weight": 0.9075170755386353, "from": "OzgucN_1994_HroudaFS_seals1a-b.txt", "to": "Gu\u0308nbatti_2008_AOF 35-1_An Eponym List - KEL G - from Ku\u0308ltepe.txt", "weight": 1}, {"Weight": 0.9393666386604308, "from": "OzgucN_1994_HroudaFS_seals1a-b.txt", "to": "Kienast_1975_WdO8_Pfandrecht.txt", "weight": 1}, {"Weight": 0.930144727230072, "from": "OzgucN_1994_HroudaFS_seals1a-b.txt", "to": "PRU 3 plates.txt", "weight": 1}, {"Weight": 0.9170392751693726, "from": "zimansky1993.txt", "to": "vandenhout2002.txt", "weight": 1}, {"Weight": 0.9743935465812684, "from": "zimansky1993.txt", "to": "middle_elamite_period.txt", "weight": 1}, {"Weight": 0.9438170194625854, "from": "zimansky1993.txt", "to": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "weight": 1}, {"Weight": 0.9307680130004884, "from": "zimansky1993.txt", "to": "Michel_2008_La Correspondes.txt", "weight": 1}, {"Weight": 0.9397715926170348, "from": "zimansky1993.txt", "to": "Bayram_1996_Bel229_slavery.txt", "weight": 1}, {"Weight": 0.9145869612693788, "from": "zimansky1993.txt", "to": "starke1985.txt", "weight": 1}, {"Weight": 0.9427933692932128, "from": "zimansky1993.txt", "to": "Lemche_1979_JNES38_Social_Edicts.txt", "weight": 1}, {"Weight": 0.9296997785568236, "from": "zimansky1993.txt", "to": "wvdog_99.txt", "weight": 1}, {"Weight": 0.9212738275527954, "from": "zimansky1993.txt", "to": "Carruba, Giorgieri \u0026 Mora eds - Atti del il congresson internazionale di Hittitologia. StMed 9, 1995.txt", "weight": 1}, {"Weight": 0.9301328659057616, "from": "zimansky1993.txt", "to": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "weight": 1}, {"Weight": 0.9193062782287598, "from": "zimansky1993.txt", "to": "IndiaRussiaand18thcenttranscentralasiancaravantrade.txt", "weight": 1}, {"Weight": 0.9230913519859314, "from": "zimansky1993.txt", "to": "Deller_1986_JEOL25_kanwarta.txt", "weight": 1}, {"Weight": 0.9421659111976624, "from": "zimansky1993.txt", "to": "Renger_2003_Mercanti_trade_market_in_ane.txt", "weight": 1}, {"Weight": 0.9234784245491028, "from": "zimansky1993.txt", "to": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "weight": 1}, {"Weight": 0.9587489366531372, "from": "zimansky1993.txt", "to": "LewyJ_1936_RHA3_chronologie.txt", "weight": 1}, {"Weight": 0.9454144835472108, "from": "zimansky1993.txt", "to": "Kienast_1998_DellerFS_tertum.txt", "weight": 1}, {"Weight": 0.9067052602767944, "from": "zimansky1993.txt", "to": "Michel_2010_JCS62.txt", "weight": 1}, {"Weight": 0.948675811290741, "from": "zimansky1993.txt", "to": "Bilgic_1990_TTK10_Turkish.txt", "weight": 1}, {"Weight": 0.9275950193405152, "from": "zimansky1993.txt", "to": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "weight": 1}, {"Weight": 0.9565733671188354, "from": "zimansky1993.txt", "to": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "weight": 1}, {"Weight": 0.9177312850952148, "from": "zimansky1993.txt", "to": "Thureau-Dangin_1911_RA8_date.txt", "weight": 1}, {"Weight": 0.9124147295951844, "from": "zimansky1993.txt", "to": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "weight": 1}, {"Weight": 0.9413789510726928, "from": "zimansky1993.txt", "to": "Dercksen_2005_JEOL39_Adad_king.txt", "weight": 1}, {"Weight": 0.93072909116745, "from": "zimansky1993.txt", "to": "Michel_2007_RlA11_SadumAdal_Labua.txt", "weight": 1}, {"Weight": 0.9450372457504272, "from": "zimansky1993.txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.9623582363128662, "from": "zimansky1993.txt", "to": "Gelb_1969_Ath47_capp_karkemish.txt", "weight": 1}, {"Weight": 0.9374539852142334, "from": "zimansky1993.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.9347389340400696, "from": "zimansky1993.txt", "to": "vandenhout2002d.txt", "weight": 1}, {"Weight": 0.9470630884170532, "from": "zimansky1993.txt", "to": "Veenhof_1982c_KrausFS_manumission.txt", "weight": 1}, {"Weight": 0.9239422678947448, "from": "zimansky1993.txt", "to": "mellink1992.txt", "weight": 1}, {"Weight": 0.9526445865631104, "from": "zimansky1993.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.9097976684570312, "from": "zimansky1993.txt", "to": "Muhly, J. D. - The Copper Ox-Hide Ingots and the Bronze Age Metals Trade 13.txt", "weight": 1}, {"Weight": 0.9469169974327089, "from": "zimansky1993.txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.9053823947906494, "from": "zimansky1993.txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.9642550349235536, "from": "zimansky1993.txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.9106773138046264, "from": "zimansky1993.txt", "to": "politics of mesha routledge.txt", "weight": 1}, {"Weight": 0.9589260220527648, "from": "zimansky1993.txt", "to": "Kantor_62_plaque_from_tainat.txt", "weight": 1}, {"Weight": 0.9584493041038512, "from": "zimansky1993.txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.9305620789527892, "from": "zimansky1993.txt", "to": "Anatolica 28, 2002.txt", "weight": 1}, {"Weight": 0.9214382767677308, "from": "zimansky1993.txt", "to": "pru3pt1000.txt", "weight": 1}, {"Weight": 0.9661375284194946, "from": "zimansky1993.txt", "to": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "weight": 1}, {"Weight": 0.9210340976715088, "from": "zimansky1993.txt", "to": "Matous_1981_DiakonoffFS_siegelentumer.txt", "weight": 1}, {"Weight": 0.9204204082489014, "from": "zimansky1993.txt", "to": "pru3pt1001.txt", "weight": 1}, {"Weight": 0.9022087454795836, "from": "zimansky1993.txt", "to": "Dercksen, J. G. - When We Met in Hattus\u030c. FS Veenhof 2001.txt", "weight": 1}, {"Weight": 0.9007584452629088, "from": "zimansky1993.txt", "to": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "weight": 1}, {"Weight": 0.9471677541732788, "from": "zimansky1993.txt", "to": "pardee2001a.txt", "weight": 1}, {"Weight": 0.9232217669487, "from": "zimansky1993.txt", "to": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "weight": 1}, {"Weight": 0.9216574430465698, "from": "zimansky1993.txt", "to": "Veenhof_1982b_JEOL27_over.txt", "weight": 1}, {"Weight": 0.9479877948760986, "from": "zimansky1993.txt", "to": "Hrozny_1928_OLZ1928_rev_Clay_BIN4.PDF.txt", "weight": 1}, {"Weight": 0.901837170124054, "from": "zimansky1993.txt", "to": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "weight": 1}, {"Weight": 0.9266404509544371, "from": "zimansky1993.txt", "to": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "weight": 1}, {"Weight": 0.9011006355285645, "from": "zimansky1993.txt", "to": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "weight": 1}, {"Weight": 0.9356161952018738, "from": "zimansky1993.txt", "to": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "weight": 1}, {"Weight": 0.940869152545929, "from": "zimansky1993.txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.9532652497291564, "from": "zimansky1993.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.9105427265167236, "from": "zimansky1993.txt", "to": "owen1990.txt", "weight": 1}, {"Weight": 0.9074512720108032, "from": "zimansky1993.txt", "to": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "weight": 1}, {"Weight": 0.9314041137695312, "from": "zimansky1993.txt", "to": "Goetze_1953b_Language29_PN.txt", "weight": 1}, {"Weight": 0.9411467909812928, "from": "zimansky1993.txt", "to": "pardee1979-80a.txt", "weight": 1}, {"Weight": 0.9438866376876832, "from": "zimansky1993.txt", "to": "Yilmaz_2007_AMMY2006.txt", "weight": 1}, {"Weight": 0.9298043847084044, "from": "zimansky1993.txt", "to": "Gu\u0308nbatti_2008_AOF 35-1_An Eponym List - KEL G - from Ku\u0308ltepe.txt", "weight": 1}, {"Weight": 0.9404019713401794, "from": "zimansky1993.txt", "to": "Kienast_1975_WdO8_Pfandrecht.txt", "weight": 1}, {"Weight": 0.9505842328071594, "from": "zimansky1993.txt", "to": "PRU 3 plates.txt", "weight": 1}, {"Weight": 0.9707936644554138, "from": "middle_elamite_period.txt", "to": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "weight": 1}, {"Weight": 0.9279794692993164, "from": "middle_elamite_period.txt", "to": "Michel_2008_La Correspondes.txt", "weight": 1}, {"Weight": 0.9094876050949096, "from": "middle_elamite_period.txt", "to": "Melchert_sarnikzel.txt", "weight": 1}, {"Weight": 0.9608927369117736, "from": "middle_elamite_period.txt", "to": "Bayram_1996_Bel229_slavery.txt", "weight": 1}, {"Weight": 0.9147947430610656, "from": "middle_elamite_period.txt", "to": "starke1985.txt", "weight": 1}, {"Weight": 0.9354851841926576, "from": "middle_elamite_period.txt", "to": "Lemche_1979_JNES38_Social_Edicts.txt", "weight": 1}, {"Weight": 0.9187971353530884, "from": "middle_elamite_period.txt", "to": "wvdog_99.txt", "weight": 1}, {"Weight": 0.915505826473236, "from": "middle_elamite_period.txt", "to": "Carruba, Giorgieri \u0026 Mora eds - Atti del il congresson internazionale di Hittitologia. StMed 9, 1995.txt", "weight": 1}, {"Weight": 0.9343592524528505, "from": "middle_elamite_period.txt", "to": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "weight": 1}, {"Weight": 0.909600019454956, "from": "middle_elamite_period.txt", "to": "IndiaRussiaand18thcenttranscentralasiancaravantrade.txt", "weight": 1}, {"Weight": 0.942236304283142, "from": "middle_elamite_period.txt", "to": "Deller_1986_JEOL25_kanwarta.txt", "weight": 1}, {"Weight": 0.951384663581848, "from": "middle_elamite_period.txt", "to": "Renger_2003_Mercanti_trade_market_in_ane.txt", "weight": 1}, {"Weight": 0.9329796433448792, "from": "middle_elamite_period.txt", "to": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "weight": 1}, {"Weight": 0.9200761914253236, "from": "middle_elamite_period.txt", "to": "richardson2004.txt", "weight": 1}, {"Weight": 0.9573745131492616, "from": "middle_elamite_period.txt", "to": "LewyJ_1936_RHA3_chronologie.txt", "weight": 1}, {"Weight": 0.962229549884796, "from": "middle_elamite_period.txt", "to": "Kienast_1998_DellerFS_tertum.txt", "weight": 1}, {"Weight": 0.9253948330879213, "from": "middle_elamite_period.txt", "to": "Michel_2010_JCS62.txt", "weight": 1}, {"Weight": 0.9069223403930664, "from": "middle_elamite_period.txt", "to": "Tunnawi_Ritual.txt", "weight": 1}, {"Weight": 0.9604610800743104, "from": "middle_elamite_period.txt", "to": "Bilgic_1990_TTK10_Turkish.txt", "weight": 1}, {"Weight": 0.9429957270622252, "from": "middle_elamite_period.txt", "to": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "weight": 1}, {"Weight": 0.9608361721038818, "from": "middle_elamite_period.txt", "to": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "weight": 1}, {"Weight": 0.9322361350059508, "from": "middle_elamite_period.txt", "to": "Thureau-Dangin_1911_RA8_date.txt", "weight": 1}, {"Weight": 0.918113112449646, "from": "middle_elamite_period.txt", "to": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "weight": 1}, {"Weight": 0.9638855457305908, "from": "middle_elamite_period.txt", "to": "Dercksen_2005_JEOL39_Adad_king.txt", "weight": 1}, {"Weight": 0.9348095059394836, "from": "middle_elamite_period.txt", "to": "Michel_2007_RlA11_SadumAdal_Labua.txt", "weight": 1}, {"Weight": 0.963613986968994, "from": "middle_elamite_period.txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.9761325716972352, "from": "middle_elamite_period.txt", "to": "Gelb_1969_Ath47_capp_karkemish.txt", "weight": 1}, {"Weight": 0.949467658996582, "from": "middle_elamite_period.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.9522627592086792, "from": "middle_elamite_period.txt", "to": "vandenhout2002d.txt", "weight": 1}, {"Weight": 0.951296329498291, "from": "middle_elamite_period.txt", "to": "Veenhof_1982c_KrausFS_manumission.txt", "weight": 1}, {"Weight": 0.9197521805763244, "from": "middle_elamite_period.txt", "to": "mellink1992.txt", "weight": 1}, {"Weight": 0.9655521512031556, "from": "middle_elamite_period.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.9069311618804932, "from": "middle_elamite_period.txt", "to": "Muhly, J. D. - The Copper Ox-Hide Ingots and the Bronze Age Metals Trade 13.txt", "weight": 1}, {"Weight": 0.9672497510910034, "from": "middle_elamite_period.txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.938362717628479, "from": "middle_elamite_period.txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.972301185131073, "from": "middle_elamite_period.txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.9075157046318054, "from": "middle_elamite_period.txt", "to": "Wartke_1995_inDiscoveries_OA_period.txt", "weight": 1}, {"Weight": 0.935398280620575, "from": "middle_elamite_period.txt", "to": "politics of mesha routledge.txt", "weight": 1}, {"Weight": 0.9592027068138124, "from": "middle_elamite_period.txt", "to": "Kantor_62_plaque_from_tainat.txt", "weight": 1}, {"Weight": 0.9615042209625244, "from": "middle_elamite_period.txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.93866628408432, "from": "middle_elamite_period.txt", "to": "Anatolica 28, 2002.txt", "weight": 1}, {"Weight": 0.9494017958641052, "from": "middle_elamite_period.txt", "to": "pru3pt1000.txt", "weight": 1}, {"Weight": 0.9677146077156068, "from": "middle_elamite_period.txt", "to": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "weight": 1}, {"Weight": 0.9311964511871338, "from": "middle_elamite_period.txt", "to": "Matous_1981_DiakonoffFS_siegelentumer.txt", "weight": 1}, {"Weight": 0.9164518117904664, "from": "middle_elamite_period.txt", "to": "Cecen_1995_ArAn1_mutanu.txt", "weight": 1}, {"Weight": 0.9364362955093384, "from": "middle_elamite_period.txt", "to": "pru3pt1001.txt", "weight": 1}, {"Weight": 0.9027591347694396, "from": "middle_elamite_period.txt", "to": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "weight": 1}, {"Weight": 0.9234006404876708, "from": "middle_elamite_period.txt", "to": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "weight": 1}, {"Weight": 0.935680091381073, "from": "middle_elamite_period.txt", "to": "pardee2001a.txt", "weight": 1}, {"Weight": 0.9383095502853394, "from": "middle_elamite_period.txt", "to": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "weight": 1}, {"Weight": 0.946326494216919, "from": "middle_elamite_period.txt", "to": "Veenhof_1982b_JEOL27_over.txt", "weight": 1}, {"Weight": 0.9151183366775512, "from": "middle_elamite_period.txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.9576207399368286, "from": "middle_elamite_period.txt", "to": "Hrozny_1928_OLZ1928_rev_Clay_BIN4.PDF.txt", "weight": 1}, {"Weight": 0.9109780192375184, "from": "middle_elamite_period.txt", "to": "Pinches_1881a_PSBA_British_Museum.txt", "weight": 1}, {"Weight": 0.9272540211677552, "from": "middle_elamite_period.txt", "to": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "weight": 1}, {"Weight": 0.9385915398597716, "from": "middle_elamite_period.txt", "to": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "weight": 1}, {"Weight": 0.9224754571914672, "from": "middle_elamite_period.txt", "to": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "weight": 1}, {"Weight": 0.9394579529762268, "from": "middle_elamite_period.txt", "to": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "weight": 1}, {"Weight": 0.9173131585121156, "from": "middle_elamite_period.txt", "to": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "weight": 1}, {"Weight": 0.9509769678115844, "from": "middle_elamite_period.txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.9560428261756896, "from": "middle_elamite_period.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.92596834897995, "from": "middle_elamite_period.txt", "to": "owen1990.txt", "weight": 1}, {"Weight": 0.9265475273132324, "from": "middle_elamite_period.txt", "to": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "weight": 1}, {"Weight": 0.9256772398948668, "from": "middle_elamite_period.txt", "to": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "weight": 1}, {"Weight": 0.9014073610305786, "from": "middle_elamite_period.txt", "to": "kuhrt1988.txt", "weight": 1}, {"Weight": 0.9510362148284912, "from": "middle_elamite_period.txt", "to": "Goetze_1953b_Language29_PN.txt", "weight": 1}, {"Weight": 0.9146013259887696, "from": "middle_elamite_period.txt", "to": "LewyJ_1928_ZA38_Amoriterfrage.txt", "weight": 1}, {"Weight": 0.9167449474334716, "from": "middle_elamite_period.txt", "to": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "weight": 1}, {"Weight": 0.9550954103469848, "from": "middle_elamite_period.txt", "to": "pardee1979-80a.txt", "weight": 1}, {"Weight": 0.9508082270622252, "from": "middle_elamite_period.txt", "to": "Yilmaz_2007_AMMY2006.txt", "weight": 1}, {"Weight": 0.9338754415512084, "from": "middle_elamite_period.txt", "to": "Gu\u0308nbatti_2008_AOF 35-1_An Eponym List - KEL G - from Ku\u0308ltepe.txt", "weight": 1}, {"Weight": 0.9599553346633912, "from": "middle_elamite_period.txt", "to": "Kienast_1975_WdO8_Pfandrecht.txt", "weight": 1}, {"Weight": 0.9512319564819336, "from": "middle_elamite_period.txt", "to": "PRU 3 plates.txt", "weight": 1}, {"Weight": 0.9399081468582152, "from": "middle_elamite_period.txt", "to": "vandenhout2002.txt", "weight": 1}, {"Weight": 0.9584182500839232, "from": "Lemche_1979_JNES38_Social_Edicts.txt", "to": "wvdog_99.txt", "weight": 1}, {"Weight": 0.953411340713501, "from": "Lemche_1979_JNES38_Social_Edicts.txt", "to": "Carruba, Giorgieri \u0026 Mora eds - Atti del il congresson internazionale di Hittitologia. StMed 9, 1995.txt", "weight": 1}, {"Weight": 0.9425231218338012, "from": "Lemche_1979_JNES38_Social_Edicts.txt", "to": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "weight": 1}, {"Weight": 0.964601993560791, "from": "Lemche_1979_JNES38_Social_Edicts.txt", "to": "IndiaRussiaand18thcenttranscentralasiancaravantrade.txt", "weight": 1}, {"Weight": 0.9098355770111084, "from": "Lemche_1979_JNES38_Social_Edicts.txt", "to": "Yakubovich 2010_Luvian-book.txt", "weight": 1}, {"Weight": 0.932715654373169, "from": "Lemche_1979_JNES38_Social_Edicts.txt", "to": "Veenhof_Orthmann_Porada_1980_RlA5_kanish.txt", "weight": 1}, {"Weight": 0.940059781074524, "from": "Lemche_1979_JNES38_Social_Edicts.txt", "to": "Wiseman_1954_JCS8_Supp_Alalakh.txt", "weight": 1}, {"Weight": 0.9237093925476074, "from": "Lemche_1979_JNES38_Social_Edicts.txt", "to": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "weight": 1}, {"Weight": 0.922184944152832, "from": "Lemche_1979_JNES38_Social_Edicts.txt", "to": "LewyJ_1936_RHA3_chronologie.txt", "weight": 1}, {"Weight": 0.9358898997306824, "from": "Lemche_1979_JNES38_Social_Edicts.txt", "to": "Pritsch_1956_JCS10_Rev_Babylonian_Laws.txt", "weight": 1}, {"Weight": 0.912596881389618, "from": "Lemche_1979_JNES38_Social_Edicts.txt", "to": "Kienast_1998_DellerFS_tertum.txt", "weight": 1}, {"Weight": 0.9396204352378844, "from": "Lemche_1979_JNES38_Social_Edicts.txt", "to": "Lyons, C. \u0026 J. Papadopolous eds - The Archaeology of Colonialism. 2002.txt", "weight": 1}, {"Weight": 0.9334378242492676, "from": "Lemche_1979_JNES38_Social_Edicts.txt", "to": "OzgucT_2004_LarsenFS_Ib_archives.txt", "weight": 1}, {"Weight": 0.925221621990204, "from": "Lemche_1979_JNES38_Social_Edicts.txt", "to": "Zeeb, Frank - Die Palastwirtschaft in Altsyrien. AOAT 282, 2001(cut).txt", "weight": 1}, {"Weight": 0.914284348487854, "from": "Lemche_1979_JNES38_Social_Edicts.txt", "to": "Gunbatti_2001_VeenhofFS_river_miss_157.txt", "weight": 1}, {"Weight": 0.941981077194214, "from": "Lemche_1979_JNES38_Social_Edicts.txt", "to": "mcadams1978.txt", "weight": 1}, {"Weight": 0.9575413465499878, "from": "Lemche_1979_JNES38_Social_Edicts.txt", "to": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "weight": 1}, {"Weight": 0.9067097306251526, "from": "Lemche_1979_JNES38_Social_Edicts.txt", "to": "Michel_2015_KIM1_Subartu35.txt", "weight": 1}, {"Weight": 0.9179859161376952, "from": "Lemche_1979_JNES38_Social_Edicts.txt", "to": "Michel_1998_3UHKB_Quelques re\u0301flexions sur les archives_p419-433.txt", "weight": 1}, {"Weight": 0.922801673412323, "from": "Lemche_1979_JNES38_Social_Edicts.txt", "to": "Klein_2004_ZA94_6_tablets_Uruk.txt", "weight": 1}, {"Weight": 0.9411535859107972, "from": "Lemche_1979_JNES38_Social_Edicts.txt", "to": "Veenhof_1982c_KrausFS_manumission.txt", "weight": 1}, {"Weight": 0.9424719214439392, "from": "Lemche_1979_JNES38_Social_Edicts.txt", "to": "mellink1992.txt", "weight": 1}, {"Weight": 0.9415665864944458, "from": "Lemche_1979_JNES38_Social_Edicts.txt", "to": "Muhly, J. D. - The Copper Ox-Hide Ingots and the Bronze Age Metals Trade 13.txt", "weight": 1}, {"Weight": 0.9114977121353148, "from": "Lemche_1979_JNES38_Social_Edicts.txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.920789897441864, "from": "Lemche_1979_JNES38_Social_Edicts.txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.9054439067840576, "from": "Lemche_1979_JNES38_Social_Edicts.txt", "to": "Faist, Betina - Der Fernhandel des assyrischen Reiches. AOAT 265, 2001.txt", "weight": 1}, {"Weight": 0.9644856452941896, "from": "Lemche_1979_JNES38_Social_Edicts.txt", "to": "Kantor_62_plaque_from_tainat.txt", "weight": 1}, {"Weight": 0.9259790778160096, "from": "Lemche_1979_JNES38_Social_Edicts.txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.9082893133163452, "from": "Lemche_1979_JNES38_Social_Edicts.txt", "to": "Anatolica 28, 2002.txt", "weight": 1}, {"Weight": 0.9288510680198668, "from": "Lemche_1979_JNES38_Social_Edicts.txt", "to": "Veenhof, Klaas R. - Review of Notes on a New Volume of Old Assyrian Texts by Karl Hecker. JAOS 122 4, 2002, pp. 797-802.txt", "weight": 1}, {"Weight": 0.9426674246788024, "from": "Lemche_1979_JNES38_Social_Edicts.txt", "to": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "weight": 1}, {"Weight": 0.9438672661781312, "from": "Lemche_1979_JNES38_Social_Edicts.txt", "to": "Jacobsen_1943_JNES2_Primitive_Democracy.txt", "weight": 1}, {"Weight": 0.9645296931266784, "from": "Lemche_1979_JNES38_Social_Edicts.txt", "to": "Dercksen, J. G. - When We Met in Hattus\u030c. FS Veenhof 2001.txt", "weight": 1}, {"Weight": 0.9249083995819092, "from": "Lemche_1979_JNES38_Social_Edicts.txt", "to": "AnSt 54, 2004.txt", "weight": 1}, {"Weight": 0.951907217502594, "from": "Lemche_1979_JNES38_Social_Edicts.txt", "to": "pardee2001a.txt", "weight": 1}, {"Weight": 0.9353193640708924, "from": "Lemche_1979_JNES38_Social_Edicts.txt", "to": "Veenhof, Klaas R. - Some displaced Tablets from Karum Kanesh (Kultepe). AoF 35 1, 2008, pp. 10-27.txt", "weight": 1}, {"Weight": 0.9225700497627258, "from": "Lemche_1979_JNES38_Social_Edicts.txt", "to": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "weight": 1}, {"Weight": 0.9354584217071532, "from": "Lemche_1979_JNES38_Social_Edicts.txt", "to": "Kramer, S. N. - Commerce and Trade Gleanings from Sumerian Literature 10.txt", "weight": 1}, {"Weight": 0.930419921875, "from": "Lemche_1979_JNES38_Social_Edicts.txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.9103909730911256, "from": "Lemche_1979_JNES38_Social_Edicts.txt", "to": "Larsen 1971_Or40_slander.txt", "weight": 1}, {"Weight": 0.949049711227417, "from": "Lemche_1979_JNES38_Social_Edicts.txt", "to": "Luckenbill_1921_AJSLL_HittiteTreatiesandLettters.txt", "weight": 1}, {"Weight": 0.9326481819152832, "from": "Lemche_1979_JNES38_Social_Edicts.txt", "to": "Gu\u0308nbatti_2008_AOF 35-1_An Eponym List - KEL G - from Ku\u0308ltepe.txt", "weight": 1}, {"Weight": 0.9386603832244872, "from": "Lemche_1979_JNES38_Social_Edicts.txt", "to": "PRU 3 plates.txt", "weight": 1}, {"Weight": 0.9195732474327089, "from": "Lemche_1979_JNES38_Social_Edicts.txt", "to": "Michel_2008_La Correspondes.txt", "weight": 1}, {"Weight": 0.9311463832855223, "from": "Lemche_1979_JNES38_Social_Edicts.txt", "to": "Bilgic\u0327_1947b_Bel11_C\u0327ivi Yaz\u0131l\u0131 Hukuki-I\u0307ktisadi Kaynaklar, Mahiyeti ve Muhtevalar\u0131. Belleten 11 (44), 1947 573-602.txt", "weight": 1}, {"Weight": 0.93575781583786, "from": "wvdog_99.txt", "to": "Carruba, Giorgieri \u0026 Mora eds - Atti del il congresson internazionale di Hittitologia. StMed 9, 1995.txt", "weight": 1}, {"Weight": 0.9122821092605592, "from": "wvdog_99.txt", "to": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "weight": 1}, {"Weight": 0.9448660612106324, "from": "wvdog_99.txt", "to": "IndiaRussiaand18thcenttranscentralasiancaravantrade.txt", "weight": 1}, {"Weight": 0.907942831516266, "from": "wvdog_99.txt", "to": "Veenhof_Orthmann_Porada_1980_RlA5_kanish.txt", "weight": 1}, {"Weight": 0.9345473051071168, "from": "wvdog_99.txt", "to": "Wiseman_1954_JCS8_Supp_Alalakh.txt", "weight": 1}, {"Weight": 0.9042406678199768, "from": "wvdog_99.txt", "to": "LewyJ_1936_RHA3_chronologie.txt", "weight": 1}, {"Weight": 0.9015163779258728, "from": "wvdog_99.txt", "to": "Kienast_1998_DellerFS_tertum.txt", "weight": 1}, {"Weight": 0.913395881652832, "from": "wvdog_99.txt", "to": "Lyons, C. \u0026 J. Papadopolous eds - The Archaeology of Colonialism. 2002.txt", "weight": 1}, {"Weight": 0.953444480895996, "from": "wvdog_99.txt", "to": "Zeeb, Frank - Die Palastwirtschaft in Altsyrien. AOAT 282, 2001(cut).txt", "weight": 1}, {"Weight": 0.9118695259094238, "from": "wvdog_99.txt", "to": "Gunbatti_2001_VeenhofFS_river_miss_157.txt", "weight": 1}, {"Weight": 0.9154817461967468, "from": "wvdog_99.txt", "to": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "weight": 1}, {"Weight": 0.9206565022468568, "from": "wvdog_99.txt", "to": "mellink1992.txt", "weight": 1}, {"Weight": 0.9034078121185304, "from": "wvdog_99.txt", "to": "Muhly, J. D. - The Copper Ox-Hide Ingots and the Bronze Age Metals Trade 13.txt", "weight": 1}, {"Weight": 0.9151065945625304, "from": "wvdog_99.txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.9237101674079896, "from": "wvdog_99.txt", "to": "Faist, Betina - Der Fernhandel des assyrischen Reiches. AOAT 265, 2001.txt", "weight": 1}, {"Weight": 0.9348795413970948, "from": "wvdog_99.txt", "to": "Kantor_62_plaque_from_tainat.txt", "weight": 1}, {"Weight": 0.9178267121315002, "from": "wvdog_99.txt", "to": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "weight": 1}, {"Weight": 0.9038529992103576, "from": "wvdog_99.txt", "to": "Jacobsen_1943_JNES2_Primitive_Democracy.txt", "weight": 1}, {"Weight": 0.9233973026275636, "from": "wvdog_99.txt", "to": "Dercksen, J. G. - When We Met in Hattus\u030c. FS Veenhof 2001.txt", "weight": 1}, {"Weight": 0.9526628851890564, "from": "wvdog_99.txt", "to": "pardee2001a.txt", "weight": 1}, {"Weight": 0.9082525372505188, "from": "wvdog_99.txt", "to": "Luckenbill_1921_AJSLL_HittiteTreatiesandLettters.txt", "weight": 1}, {"Weight": 0.9413022994995116, "from": "Carruba, Giorgieri \u0026 Mora eds - Atti del il congresson internazionale di Hittitologia. StMed 9, 1995.txt", "to": "Dercksen_1999_MOS1_financing.txt", "weight": 1}, {"Weight": 0.9634921550750732, "from": "Carruba, Giorgieri \u0026 Mora eds - Atti del il congresson internazionale di Hittitologia. StMed 9, 1995.txt", "to": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "weight": 1}, {"Weight": 0.9536358118057252, "from": "Carruba, Giorgieri \u0026 Mora eds - Atti del il congresson internazionale di Hittitologia. StMed 9, 1995.txt", "to": "IndiaRussiaand18thcenttranscentralasiancaravantrade.txt", "weight": 1}, {"Weight": 0.935971200466156, "from": "Carruba, Giorgieri \u0026 Mora eds - Atti del il congresson internazionale di Hittitologia. StMed 9, 1995.txt", "to": "Yakubovich 2010_Luvian-book.txt", "weight": 1}, {"Weight": 0.9436882138252258, "from": "Carruba, Giorgieri \u0026 Mora eds - Atti del il congresson internazionale di Hittitologia. StMed 9, 1995.txt", "to": "Veenhof_Orthmann_Porada_1980_RlA5_kanish.txt", "weight": 1}, {"Weight": 0.9179807305336, "from": "Carruba, Giorgieri \u0026 Mora eds - Atti del il congresson internazionale di Hittitologia. StMed 9, 1995.txt", "to": "Wiseman_1954_JCS8_Supp_Alalakh.txt", "weight": 1}, {"Weight": 0.9176849722862244, "from": "Carruba, Giorgieri \u0026 Mora eds - Atti del il congresson internazionale di Hittitologia. StMed 9, 1995.txt", "to": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "weight": 1}, {"Weight": 0.941741943359375, "from": "Carruba, Giorgieri \u0026 Mora eds - Atti del il congresson internazionale di Hittitologia. StMed 9, 1995.txt", "to": "LewyJ_1936_RHA3_chronologie.txt", "weight": 1}, {"Weight": 0.9420612454414368, "from": "Carruba, Giorgieri \u0026 Mora eds - Atti del il congresson internazionale di Hittitologia. StMed 9, 1995.txt", "to": "Pritsch_1956_JCS10_Rev_Babylonian_Laws.txt", "weight": 1}, {"Weight": 0.9411468505859376, "from": "Carruba, Giorgieri \u0026 Mora eds - Atti del il congresson internazionale di Hittitologia. StMed 9, 1995.txt", "to": "Lyons, C. \u0026 J. Papadopolous eds - The Archaeology of Colonialism. 2002.txt", "weight": 1}, {"Weight": 0.9499568939208984, "from": "Carruba, Giorgieri \u0026 Mora eds - Atti del il congresson internazionale di Hittitologia. StMed 9, 1995.txt", "to": "OzgucT_2004_LarsenFS_Ib_archives.txt", "weight": 1}, {"Weight": 0.947926700115204, "from": "Carruba, Giorgieri \u0026 Mora eds - Atti del il congresson internazionale di Hittitologia. StMed 9, 1995.txt", "to": "Zeeb, Frank - Die Palastwirtschaft in Altsyrien. AOAT 282, 2001(cut).txt", "weight": 1}, {"Weight": 0.9185343980789183, "from": "Carruba, Giorgieri \u0026 Mora eds - Atti del il congresson internazionale di Hittitologia. StMed 9, 1995.txt", "to": "Gunbatti_2001_VeenhofFS_river_miss_157.txt", "weight": 1}, {"Weight": 0.9581963419914246, "from": "Carruba, Giorgieri \u0026 Mora eds - Atti del il congresson internazionale di Hittitologia. StMed 9, 1995.txt", "to": "mcadams1978.txt", "weight": 1}, {"Weight": 0.915707230567932, "from": "Carruba, Giorgieri \u0026 Mora eds - Atti del il congresson internazionale di Hittitologia. StMed 9, 1995.txt", "to": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "weight": 1}, {"Weight": 0.9357466101646424, "from": "Carruba, Giorgieri \u0026 Mora eds - Atti del il congresson internazionale di Hittitologia. StMed 9, 1995.txt", "to": "Michel_2015_KIM1_Subartu35.txt", "weight": 1}, {"Weight": 0.9401462078094482, "from": "Carruba, Giorgieri \u0026 Mora eds - Atti del il congresson internazionale di Hittitologia. StMed 9, 1995.txt", "to": "Michel_1998_3UHKB_Quelques re\u0301flexions sur les archives_p419-433.txt", "weight": 1}, {"Weight": 0.902935028076172, "from": "Carruba, Giorgieri \u0026 Mora eds - Atti del il congresson internazionale di Hittitologia. StMed 9, 1995.txt", "to": "Stein, Gil - Produces, Patrons, and Prestige - Craft Specialists and Emergent Elites in Mesopotamia from 5500-3100.txt", "weight": 1}, {"Weight": 0.919040024280548, "from": "Carruba, Giorgieri \u0026 Mora eds - Atti del il congresson internazionale di Hittitologia. StMed 9, 1995.txt", "to": "Dercksen, J. G. ed. - Trade and Finance in Ancient Mesopotamia, MOS 1. PIHANS 84, 1997 (2).txt", "weight": 1}, {"Weight": 0.955718457698822, "from": "Carruba, Giorgieri \u0026 Mora eds - Atti del il congresson internazionale di Hittitologia. StMed 9, 1995.txt", "to": "Klein_2004_ZA94_6_tablets_Uruk.txt", "weight": 1}, {"Weight": 0.9381802678108216, "from": "Carruba, Giorgieri \u0026 Mora eds - Atti del il congresson internazionale di Hittitologia. StMed 9, 1995.txt", "to": "Veenhof_1982c_KrausFS_manumission.txt", "weight": 1}, {"Weight": 0.972781777381897, "from": "Carruba, Giorgieri \u0026 Mora eds - Atti del il congresson internazionale di Hittitologia. StMed 9, 1995.txt", "to": "mellink1992.txt", "weight": 1}, {"Weight": 0.9110055565834044, "from": "Carruba, Giorgieri \u0026 Mora eds - Atti del il congresson internazionale di Hittitologia. StMed 9, 1995.txt", "to": "AnSt 7, 1957.txt", "weight": 1}, {"Weight": 0.9450415372848512, "from": "Carruba, Giorgieri \u0026 Mora eds - Atti del il congresson internazionale di Hittitologia. StMed 9, 1995.txt", "to": "Muhly, J. D. - The Copper Ox-Hide Ingots and the Bronze Age Metals Trade 13.txt", "weight": 1}, {"Weight": 0.9008269906044006, "from": "Carruba, Giorgieri \u0026 Mora eds - Atti del il congresson internazionale di Hittitologia. StMed 9, 1995.txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.9199399948120116, "from": "Carruba, Giorgieri \u0026 Mora eds - Atti del il congresson internazionale di Hittitologia. StMed 9, 1995.txt", "to": "Soldt, W.H. van ed. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "weight": 1}, {"Weight": 0.9526044130325316, "from": "Carruba, Giorgieri \u0026 Mora eds - Atti del il congresson internazionale di Hittitologia. StMed 9, 1995.txt", "to": "Faist, Betina - Der Fernhandel des assyrischen Reiches. AOAT 265, 2001.txt", "weight": 1}, {"Weight": 0.9342191219329834, "from": "Carruba, Giorgieri \u0026 Mora eds - Atti del il congresson internazionale di Hittitologia. StMed 9, 1995.txt", "to": "Kantor_62_plaque_from_tainat.txt", "weight": 1}, {"Weight": 0.9141872525215148, "from": "Carruba, Giorgieri \u0026 Mora eds - Atti del il congresson internazionale di Hittitologia. StMed 9, 1995.txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.931036651134491, "from": "Carruba, Giorgieri \u0026 Mora eds - Atti del il congresson internazionale di Hittitologia. StMed 9, 1995.txt", "to": "Veenhof, Klaas R. - Review of Notes on a New Volume of Old Assyrian Texts by Karl Hecker. JAOS 122 4, 2002, pp. 797-802.txt", "weight": 1}, {"Weight": 0.9060266017913818, "from": "Carruba, Giorgieri \u0026 Mora eds - Atti del il congresson internazionale di Hittitologia. StMed 9, 1995.txt", "to": "Kienast_2003_KienastFS_Intro.txt", "weight": 1}, {"Weight": 0.9482142329216005, "from": "Carruba, Giorgieri \u0026 Mora eds - Atti del il congresson internazionale di Hittitologia. StMed 9, 1995.txt", "to": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "weight": 1}, {"Weight": 0.943918764591217, "from": "Carruba, Giorgieri \u0026 Mora eds - Atti del il congresson internazionale di Hittitologia. StMed 9, 1995.txt", "to": "Jacobsen_1943_JNES2_Primitive_Democracy.txt", "weight": 1}, {"Weight": 0.9638132452964784, "from": "Carruba, Giorgieri \u0026 Mora eds - Atti del il congresson internazionale di Hittitologia. StMed 9, 1995.txt", "to": "Dercksen, J. G. - When We Met in Hattus\u030c. FS Veenhof 2001.txt", "weight": 1}, {"Weight": 0.9461203813552856, "from": "Carruba, Giorgieri \u0026 Mora eds - Atti del il congresson internazionale di Hittitologia. StMed 9, 1995.txt", "to": "AnSt 54, 2004.txt", "weight": 1}, {"Weight": 0.9286056756973268, "from": "Carruba, Giorgieri \u0026 Mora eds - Atti del il congresson internazionale di Hittitologia. StMed 9, 1995.txt", "to": "pardee2001a.txt", "weight": 1}, {"Weight": 0.9032344222068788, "from": "Carruba, Giorgieri \u0026 Mora eds - Atti del il congresson internazionale di Hittitologia. StMed 9, 1995.txt", "to": "Garelli_1962_RA56_religion.txt", "weight": 1}, {"Weight": 0.9546713829040528, "from": "Carruba, Giorgieri \u0026 Mora eds - Atti del il congresson internazionale di Hittitologia. StMed 9, 1995.txt", "to": "Veenhof, Klaas R. - Some displaced Tablets from Karum Kanesh (Kultepe). AoF 35 1, 2008, pp. 10-27.txt", "weight": 1}, {"Weight": 0.9139219522476196, "from": "Carruba, Giorgieri \u0026 Mora eds - Atti del il congresson internazionale di Hittitologia. StMed 9, 1995.txt", "to": "Pinches_1881a_PSBA_British_Museum.txt", "weight": 1}, {"Weight": 0.9294971823692322, "from": "Carruba, Giorgieri \u0026 Mora eds - Atti del il congresson internazionale di Hittitologia. StMed 9, 1995.txt", "to": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "weight": 1}, {"Weight": 0.9283512234687804, "from": "Carruba, Giorgieri \u0026 Mora eds - Atti del il congresson internazionale di Hittitologia. StMed 9, 1995.txt", "to": "Jankowska_1967_ArOr35_ep_rotation.txt", "weight": 1}, {"Weight": 0.9156531691551208, "from": "Carruba, Giorgieri \u0026 Mora eds - Atti del il congresson internazionale di Hittitologia. StMed 9, 1995.txt", "to": "Kramer, S. N. - Commerce and Trade Gleanings from Sumerian Literature 10.txt", "weight": 1}, {"Weight": 0.9030649662017822, "from": "Carruba, Giorgieri \u0026 Mora eds - Atti del il congresson internazionale di Hittitologia. StMed 9, 1995.txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.9441126585006714, "from": "Carruba, Giorgieri \u0026 Mora eds - Atti del il congresson internazionale di Hittitologia. StMed 9, 1995.txt", "to": "Larsen 1971_Or40_slander.txt", "weight": 1}, {"Weight": 0.9510515928268432, "from": "Carruba, Giorgieri \u0026 Mora eds - Atti del il congresson internazionale di Hittitologia. StMed 9, 1995.txt", "to": "Luckenbill_1921_AJSLL_HittiteTreatiesandLettters.txt", "weight": 1}, {"Weight": 0.9462698101997375, "from": "Carruba, Giorgieri \u0026 Mora eds - Atti del il congresson internazionale di Hittitologia. StMed 9, 1995.txt", "to": "Gu\u0308nbatti_2008_AOF 35-1_An Eponym List - KEL G - from Ku\u0308ltepe.txt", "weight": 1}, {"Weight": 0.9338818192481996, "from": "Carruba, Giorgieri \u0026 Mora eds - Atti del il congresson internazionale di Hittitologia. StMed 9, 1995.txt", "to": "PRU 3 plates.txt", "weight": 1}, {"Weight": 0.90951007604599, "from": "Carruba, Giorgieri \u0026 Mora eds - Atti del il congresson internazionale di Hittitologia. StMed 9, 1995.txt", "to": "Melchert_sarnikzel.txt", "weight": 1}, {"Weight": 0.9008124470710754, "from": "Carruba, Giorgieri \u0026 Mora eds - Atti del il congresson internazionale di Hittitologia. StMed 9, 1995.txt", "to": "Anastasio, Stefano - The Archaeology of Upper Mesopotamia. Subartu 1, 1995 (grey).txt", "weight": 1}, {"Weight": 0.9618117213249208, "from": "Carruba, Giorgieri \u0026 Mora eds - Atti del il congresson internazionale di Hittitologia. StMed 9, 1995.txt", "to": "Bilgic\u0327_1947b_Bel11_C\u0327ivi Yaz\u0131l\u0131 Hukuki-I\u0307ktisadi Kaynaklar, Mahiyeti ve Muhtevalar\u0131. Belleten 11 (44), 1947 573-602.txt", "weight": 1}, {"Weight": 0.9496970772743224, "from": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "to": "IndiaRussiaand18thcenttranscentralasiancaravantrade.txt", "weight": 1}, {"Weight": 0.9102717638015748, "from": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "to": "Renger_2003_Mercanti_trade_market_in_ane.txt", "weight": 1}, {"Weight": 0.905354917049408, "from": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "to": "Veenhof_Orthmann_Porada_1980_RlA5_kanish.txt", "weight": 1}, {"Weight": 0.91845965385437, "from": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "to": "Wiseman_1954_JCS8_Supp_Alalakh.txt", "weight": 1}, {"Weight": 0.9460391402244568, "from": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "to": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "weight": 1}, {"Weight": 0.940144181251526, "from": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "to": "LewyJ_1936_RHA3_chronologie.txt", "weight": 1}, {"Weight": 0.9552513360977172, "from": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "to": "Pritsch_1956_JCS10_Rev_Babylonian_Laws.txt", "weight": 1}, {"Weight": 0.9121013283729552, "from": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "to": "Lyons, C. \u0026 J. Papadopolous eds - The Archaeology of Colonialism. 2002.txt", "weight": 1}, {"Weight": 0.9487972259521484, "from": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "to": "OzgucT_2004_LarsenFS_Ib_archives.txt", "weight": 1}, {"Weight": 0.9167805314064026, "from": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "to": "Zeeb, Frank - Die Palastwirtschaft in Altsyrien. AOAT 282, 2001(cut).txt", "weight": 1}, {"Weight": 0.932580590248108, "from": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "to": "mcadams1978.txt", "weight": 1}, {"Weight": 0.9286881685256958, "from": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "to": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "weight": 1}, {"Weight": 0.9129993319511414, "from": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "to": "Michel_2015_KIM1_Subartu35.txt", "weight": 1}, {"Weight": 0.9323949813842772, "from": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "to": "Michel_1998_3UHKB_Quelques re\u0301flexions sur les archives_p419-433.txt", "weight": 1}, {"Weight": 0.935253083705902, "from": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "to": "Stein, Gil - Produces, Patrons, and Prestige - Craft Specialists and Emergent Elites in Mesopotamia from 5500-3100.txt", "weight": 1}, {"Weight": 0.9052825570106506, "from": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "to": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "weight": 1}, {"Weight": 0.9137687683105468, "from": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "to": "Dercksen, J. G. ed. - Trade and Finance in Ancient Mesopotamia, MOS 1. PIHANS 84, 1997 (2).txt", "weight": 1}, {"Weight": 0.9108408093452454, "from": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "to": "Zaccagnini_1983_Mobility.txt", "weight": 1}, {"Weight": 0.9619374871253968, "from": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "to": "Klein_2004_ZA94_6_tablets_Uruk.txt", "weight": 1}, {"Weight": 0.904678463935852, "from": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.929284930229187, "from": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "to": "vandenhout2002d.txt", "weight": 1}, {"Weight": 0.9360955357551576, "from": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "to": "Veenhof_1982c_KrausFS_manumission.txt", "weight": 1}, {"Weight": 0.9645572900772096, "from": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "to": "mellink1992.txt", "weight": 1}, {"Weight": 0.9004226326942444, "from": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.9508262872695924, "from": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "to": "Muhly, J. D. - The Copper Ox-Hide Ingots and the Bronze Age Metals Trade 13.txt", "weight": 1}, {"Weight": 0.9240581393241882, "from": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.9169315695762634, "from": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.9114548563957214, "from": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "to": "Faist, Betina - Der Fernhandel des assyrischen Reiches. AOAT 265, 2001.txt", "weight": 1}, {"Weight": 0.9332033395767212, "from": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "to": "politics of mesha routledge.txt", "weight": 1}, {"Weight": 0.9489501118659972, "from": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "to": "Kantor_62_plaque_from_tainat.txt", "weight": 1}, {"Weight": 0.9283065795898438, "from": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.9211401343345642, "from": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "to": "Anatolica 28, 2002.txt", "weight": 1}, {"Weight": 0.9435819387435912, "from": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "to": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "weight": 1}, {"Weight": 0.9544336199760436, "from": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "to": "Jacobsen_1943_JNES2_Primitive_Democracy.txt", "weight": 1}, {"Weight": 0.9417167901992798, "from": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "to": "Dercksen, J. G. - When We Met in Hattus\u030c. FS Veenhof 2001.txt", "weight": 1}, {"Weight": 0.9222905039787292, "from": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "to": "AnSt 54, 2004.txt", "weight": 1}, {"Weight": 0.9123944640159608, "from": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "to": "pardee2001a.txt", "weight": 1}, {"Weight": 0.9081867337226868, "from": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "to": "Garelli_1962_RA56_religion.txt", "weight": 1}, {"Weight": 0.9472271203994752, "from": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "to": "Veenhof, Klaas R. - Some displaced Tablets from Karum Kanesh (Kultepe). AoF 35 1, 2008, pp. 10-27.txt", "weight": 1}, {"Weight": 0.939596712589264, "from": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "to": "Pinches_1881a_PSBA_British_Museum.txt", "weight": 1}, {"Weight": 0.9375293850898744, "from": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "to": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "weight": 1}, {"Weight": 0.9407561421394348, "from": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "to": "Jankowska_1967_ArOr35_ep_rotation.txt", "weight": 1}, {"Weight": 0.9336735606193542, "from": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "to": "Kramer, S. N. - Commerce and Trade Gleanings from Sumerian Literature 10.txt", "weight": 1}, {"Weight": 0.9370190501213074, "from": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.9376250505447388, "from": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "to": "Larsen 1971_Or40_slander.txt", "weight": 1}, {"Weight": 0.9456746578216552, "from": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "to": "Luckenbill_1921_AJSLL_HittiteTreatiesandLettters.txt", "weight": 1}, {"Weight": 0.946935772895813, "from": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "to": "Gu\u0308nbatti_2008_AOF 35-1_An Eponym List - KEL G - from Ku\u0308ltepe.txt", "weight": 1}, {"Weight": 0.9279966950416564, "from": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "to": "PRU 3 plates.txt", "weight": 1}, {"Weight": 0.9135263562202454, "from": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "to": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "weight": 1}, {"Weight": 0.927872598171234, "from": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "to": "Melchert_sarnikzel.txt", "weight": 1}, {"Weight": 0.9292895793914796, "from": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "to": "Bilgic\u0327_1947b_Bel11_C\u0327ivi Yaz\u0131l\u0131 Hukuki-I\u0307ktisadi Kaynaklar, Mahiyeti ve Muhtevalar\u0131. Belleten 11 (44), 1947 573-602.txt", "weight": 1}, {"Weight": 0.9438075423240662, "from": "Dercksen, J. G. - The Assyrian Colony at Kanesh. CDOG 8, 2008 109-124.txt", "to": "Dercksen_1999_MOS1_financing.txt", "weight": 1}, {"Weight": 0.9110624194145204, "from": "IndiaRussiaand18thcenttranscentralasiancaravantrade.txt", "to": "Yakubovich 2010_Luvian-book.txt", "weight": 1}, {"Weight": 0.9422139525413512, "from": "IndiaRussiaand18thcenttranscentralasiancaravantrade.txt", "to": "Veenhof_Orthmann_Porada_1980_RlA5_kanish.txt", "weight": 1}, {"Weight": 0.9406463503837584, "from": "IndiaRussiaand18thcenttranscentralasiancaravantrade.txt", "to": "Wiseman_1954_JCS8_Supp_Alalakh.txt", "weight": 1}, {"Weight": 0.9280689358711244, "from": "IndiaRussiaand18thcenttranscentralasiancaravantrade.txt", "to": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "weight": 1}, {"Weight": 0.9191203117370604, "from": "IndiaRussiaand18thcenttranscentralasiancaravantrade.txt", "to": "LewyJ_1936_RHA3_chronologie.txt", "weight": 1}, {"Weight": 0.9433528780937196, "from": "IndiaRussiaand18thcenttranscentralasiancaravantrade.txt", "to": "Pritsch_1956_JCS10_Rev_Babylonian_Laws.txt", "weight": 1}, {"Weight": 0.9555716514587402, "from": "IndiaRussiaand18thcenttranscentralasiancaravantrade.txt", "to": "Lyons, C. \u0026 J. Papadopolous eds - The Archaeology of Colonialism. 2002.txt", "weight": 1}, {"Weight": 0.923431932926178, "from": "IndiaRussiaand18thcenttranscentralasiancaravantrade.txt", "to": "OzgucT_2004_LarsenFS_Ib_archives.txt", "weight": 1}, {"Weight": 0.9403109550476074, "from": "IndiaRussiaand18thcenttranscentralasiancaravantrade.txt", "to": "Zeeb, Frank - Die Palastwirtschaft in Altsyrien. AOAT 282, 2001(cut).txt", "weight": 1}, {"Weight": 0.9374796748161316, "from": "IndiaRussiaand18thcenttranscentralasiancaravantrade.txt", "to": "Gunbatti_2001_VeenhofFS_river_miss_157.txt", "weight": 1}, {"Weight": 0.9637683629989624, "from": "IndiaRussiaand18thcenttranscentralasiancaravantrade.txt", "to": "mcadams1978.txt", "weight": 1}, {"Weight": 0.915410816669464, "from": "IndiaRussiaand18thcenttranscentralasiancaravantrade.txt", "to": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "weight": 1}, {"Weight": 0.919803500175476, "from": "IndiaRussiaand18thcenttranscentralasiancaravantrade.txt", "to": "Michel_2015_KIM1_Subartu35.txt", "weight": 1}, {"Weight": 0.9449077248573304, "from": "IndiaRussiaand18thcenttranscentralasiancaravantrade.txt", "to": "Michel_1998_3UHKB_Quelques re\u0301flexions sur les archives_p419-433.txt", "weight": 1}, {"Weight": 0.931749701499939, "from": "IndiaRussiaand18thcenttranscentralasiancaravantrade.txt", "to": "Klein_2004_ZA94_6_tablets_Uruk.txt", "weight": 1}, {"Weight": 0.925897181034088, "from": "IndiaRussiaand18thcenttranscentralasiancaravantrade.txt", "to": "Veenhof_1982c_KrausFS_manumission.txt", "weight": 1}, {"Weight": 0.9399176836013794, "from": "IndiaRussiaand18thcenttranscentralasiancaravantrade.txt", "to": "mellink1992.txt", "weight": 1}, {"Weight": 0.9018933176994324, "from": "IndiaRussiaand18thcenttranscentralasiancaravantrade.txt", "to": "AnSt 7, 1957.txt", "weight": 1}, {"Weight": 0.9532760381698608, "from": "IndiaRussiaand18thcenttranscentralasiancaravantrade.txt", "to": "Muhly, J. D. - The Copper Ox-Hide Ingots and the Bronze Age Metals Trade 13.txt", "weight": 1}, {"Weight": 0.935525357723236, "from": "IndiaRussiaand18thcenttranscentralasiancaravantrade.txt", "to": "Faist, Betina - Der Fernhandel des assyrischen Reiches. AOAT 265, 2001.txt", "weight": 1}, {"Weight": 0.9107144474983216, "from": "IndiaRussiaand18thcenttranscentralasiancaravantrade.txt", "to": "politics of mesha routledge.txt", "weight": 1}, {"Weight": 0.9550832509994508, "from": "IndiaRussiaand18thcenttranscentralasiancaravantrade.txt", "to": "Kantor_62_plaque_from_tainat.txt", "weight": 1}, {"Weight": 0.9052767753601074, "from": "IndiaRussiaand18thcenttranscentralasiancaravantrade.txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.9059043526649476, "from": "IndiaRussiaand18thcenttranscentralasiancaravantrade.txt", "to": "Anatolica 28, 2002.txt", "weight": 1}, {"Weight": 0.9388030171394348, "from": "IndiaRussiaand18thcenttranscentralasiancaravantrade.txt", "to": "Veenhof, Klaas R. - Review of Notes on a New Volume of Old Assyrian Texts by Karl Hecker. JAOS 122 4, 2002, pp. 797-802.txt", "weight": 1}, {"Weight": 0.9264743328094482, "from": "IndiaRussiaand18thcenttranscentralasiancaravantrade.txt", "to": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "weight": 1}, {"Weight": 0.9516522884368896, "from": "IndiaRussiaand18thcenttranscentralasiancaravantrade.txt", "to": "Jacobsen_1943_JNES2_Primitive_Democracy.txt", "weight": 1}, {"Weight": 0.9663759469985962, "from": "IndiaRussiaand18thcenttranscentralasiancaravantrade.txt", "to": "Dercksen, J. G. - When We Met in Hattus\u030c. FS Veenhof 2001.txt", "weight": 1}, {"Weight": 0.936396300792694, "from": "IndiaRussiaand18thcenttranscentralasiancaravantrade.txt", "to": "AnSt 54, 2004.txt", "weight": 1}, {"Weight": 0.9287245273590088, "from": "IndiaRussiaand18thcenttranscentralasiancaravantrade.txt", "to": "pardee2001a.txt", "weight": 1}, {"Weight": 0.951857089996338, "from": "IndiaRussiaand18thcenttranscentralasiancaravantrade.txt", "to": "Veenhof, Klaas R. - Some displaced Tablets from Karum Kanesh (Kultepe). AoF 35 1, 2008, pp. 10-27.txt", "weight": 1}, {"Weight": 0.9059132933616638, "from": "IndiaRussiaand18thcenttranscentralasiancaravantrade.txt", "to": "Pinches_1881a_PSBA_British_Museum.txt", "weight": 1}, {"Weight": 0.9216651916503906, "from": "IndiaRussiaand18thcenttranscentralasiancaravantrade.txt", "to": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "weight": 1}, {"Weight": 0.904996931552887, "from": "IndiaRussiaand18thcenttranscentralasiancaravantrade.txt", "to": "Jankowska_1967_ArOr35_ep_rotation.txt", "weight": 1}, {"Weight": 0.9183072447776794, "from": "IndiaRussiaand18thcenttranscentralasiancaravantrade.txt", "to": "Kramer, S. N. - Commerce and Trade Gleanings from Sumerian Literature 10.txt", "weight": 1}, {"Weight": 0.907078742980957, "from": "IndiaRussiaand18thcenttranscentralasiancaravantrade.txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.9514420628547668, "from": "IndiaRussiaand18thcenttranscentralasiancaravantrade.txt", "to": "Larsen 1971_Or40_slander.txt", "weight": 1}, {"Weight": 0.9644678831100464, "from": "IndiaRussiaand18thcenttranscentralasiancaravantrade.txt", "to": "Luckenbill_1921_AJSLL_HittiteTreatiesandLettters.txt", "weight": 1}, {"Weight": 0.934515118598938, "from": "IndiaRussiaand18thcenttranscentralasiancaravantrade.txt", "to": "Gu\u0308nbatti_2008_AOF 35-1_An Eponym List - KEL G - from Ku\u0308ltepe.txt", "weight": 1}, {"Weight": 0.9125064015388488, "from": "IndiaRussiaand18thcenttranscentralasiancaravantrade.txt", "to": "PRU 3 plates.txt", "weight": 1}, {"Weight": 0.9070396423339844, "from": "IndiaRussiaand18thcenttranscentralasiancaravantrade.txt", "to": "Melchert_sarnikzel.txt", "weight": 1}, {"Weight": 0.94129079580307, "from": "IndiaRussiaand18thcenttranscentralasiancaravantrade.txt", "to": "Bilgic\u0327_1947b_Bel11_C\u0327ivi Yaz\u0131l\u0131 Hukuki-I\u0307ktisadi Kaynaklar, Mahiyeti ve Muhtevalar\u0131. Belleten 11 (44), 1947 573-602.txt", "weight": 1}, {"Weight": 0.9331160187721252, "from": "IndiaRussiaand18thcenttranscentralasiancaravantrade.txt", "to": "Dercksen_1999_MOS1_financing.txt", "weight": 1}, {"Weight": 0.9130368232727052, "from": "Veenhof_Orthmann_Porada_1980_RlA5_kanish.txt", "to": "Wiseman_1954_JCS8_Supp_Alalakh.txt", "weight": 1}, {"Weight": 0.9790645837783812, "from": "Veenhof_Orthmann_Porada_1980_RlA5_kanish.txt", "to": "Lyons, C. \u0026 J. Papadopolous eds - The Archaeology of Colonialism. 2002.txt", "weight": 1}, {"Weight": 0.9441713690757751, "from": "Veenhof_Orthmann_Porada_1980_RlA5_kanish.txt", "to": "OzgucT_2004_LarsenFS_Ib_archives.txt", "weight": 1}, {"Weight": 0.9408787488937378, "from": "Veenhof_Orthmann_Porada_1980_RlA5_kanish.txt", "to": "Zeeb, Frank - Die Palastwirtschaft in Altsyrien. AOAT 282, 2001(cut).txt", "weight": 1}, {"Weight": 0.9754014015197754, "from": "Veenhof_Orthmann_Porada_1980_RlA5_kanish.txt", "to": "Gunbatti_2001_VeenhofFS_river_miss_157.txt", "weight": 1}, {"Weight": 0.9693816304206848, "from": "Veenhof_Orthmann_Porada_1980_RlA5_kanish.txt", "to": "mcadams1978.txt", "weight": 1}, {"Weight": 0.9472786784172058, "from": "Veenhof_Orthmann_Porada_1980_RlA5_kanish.txt", "to": "Michel_2015_KIM1_Subartu35.txt", "weight": 1}, {"Weight": 0.941715121269226, "from": "Veenhof_Orthmann_Porada_1980_RlA5_kanish.txt", "to": "Michel_1998_3UHKB_Quelques re\u0301flexions sur les archives_p419-433.txt", "weight": 1}, {"Weight": 0.9056568145751952, "from": "Veenhof_Orthmann_Porada_1980_RlA5_kanish.txt", "to": "Klein_2004_ZA94_6_tablets_Uruk.txt", "weight": 1}, {"Weight": 0.9318798780441284, "from": "Veenhof_Orthmann_Porada_1980_RlA5_kanish.txt", "to": "mellink1992.txt", "weight": 1}, {"Weight": 0.9364628195762634, "from": "Veenhof_Orthmann_Porada_1980_RlA5_kanish.txt", "to": "AnSt 7, 1957.txt", "weight": 1}, {"Weight": 0.9167286157608032, "from": "Veenhof_Orthmann_Porada_1980_RlA5_kanish.txt", "to": "Soldt, W.H. van ed. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "weight": 1}, {"Weight": 0.9326717853546144, "from": "Veenhof_Orthmann_Porada_1980_RlA5_kanish.txt", "to": "Faist, Betina - Der Fernhandel des assyrischen Reiches. AOAT 265, 2001.txt", "weight": 1}, {"Weight": 0.9790361523628236, "from": "Veenhof_Orthmann_Porada_1980_RlA5_kanish.txt", "to": "Veenhof, Klaas R. - Review of Notes on a New Volume of Old Assyrian Texts by Karl Hecker. JAOS 122 4, 2002, pp. 797-802.txt", "weight": 1}, {"Weight": 0.9522653818130492, "from": "Veenhof_Orthmann_Porada_1980_RlA5_kanish.txt", "to": "Kienast_2003_KienastFS_Intro.txt", "weight": 1}, {"Weight": 0.9084448218345642, "from": "Veenhof_Orthmann_Porada_1980_RlA5_kanish.txt", "to": "Jacobsen_1943_JNES2_Primitive_Democracy.txt", "weight": 1}, {"Weight": 0.9735252261161804, "from": "Veenhof_Orthmann_Porada_1980_RlA5_kanish.txt", "to": "Dercksen, J. G. - When We Met in Hattus\u030c. FS Veenhof 2001.txt", "weight": 1}, {"Weight": 0.9613840579986572, "from": "Veenhof_Orthmann_Porada_1980_RlA5_kanish.txt", "to": "AnSt 54, 2004.txt", "weight": 1}, {"Weight": 0.9159534573554992, "from": "Veenhof_Orthmann_Porada_1980_RlA5_kanish.txt", "to": "pardee2001a.txt", "weight": 1}, {"Weight": 0.951752543449402, "from": "Veenhof_Orthmann_Porada_1980_RlA5_kanish.txt", "to": "Veenhof, Klaas R. - Some displaced Tablets from Karum Kanesh (Kultepe). AoF 35 1, 2008, pp. 10-27.txt", "weight": 1}, {"Weight": 0.9440271854400636, "from": "Veenhof_Orthmann_Porada_1980_RlA5_kanish.txt", "to": "Larsen-Lassen_2014_cultural_encounters_Fs_Stolper_Final-libre.txt", "weight": 1}, {"Weight": 0.9379948377609252, "from": "Veenhof_Orthmann_Porada_1980_RlA5_kanish.txt", "to": "Larsen 1971_Or40_slander.txt", "weight": 1}, {"Weight": 0.9471673965454102, "from": "Veenhof_Orthmann_Porada_1980_RlA5_kanish.txt", "to": "Luckenbill_1921_AJSLL_HittiteTreatiesandLettters.txt", "weight": 1}, {"Weight": 0.9685460329055786, "from": "Veenhof_Orthmann_Porada_1980_RlA5_kanish.txt", "to": "Anastasio, Stefano - The Archaeology of Upper Mesopotamia. Subartu 1, 1995 (grey).txt", "weight": 1}, {"Weight": 0.9620177745819092, "from": "Veenhof_Orthmann_Porada_1980_RlA5_kanish.txt", "to": "Bilgic\u0327_1947b_Bel11_C\u0327ivi Yaz\u0131l\u0131 Hukuki-I\u0307ktisadi Kaynaklar, Mahiyeti ve Muhtevalar\u0131. Belleten 11 (44), 1947 573-602.txt", "weight": 1}, {"Weight": 0.9480944275856018, "from": "Veenhof_Orthmann_Porada_1980_RlA5_kanish.txt", "to": "Yakubovich 2010_Luvian-book.txt", "weight": 1}, {"Weight": 0.9231252670288086, "from": "Wiseman_1954_JCS8_Supp_Alalakh.txt", "to": "Pritsch_1956_JCS10_Rev_Babylonian_Laws.txt", "weight": 1}, {"Weight": 0.9307196736335754, "from": "Wiseman_1954_JCS8_Supp_Alalakh.txt", "to": "Lyons, C. \u0026 J. Papadopolous eds - The Archaeology of Colonialism. 2002.txt", "weight": 1}, {"Weight": 0.9258888959884644, "from": "Wiseman_1954_JCS8_Supp_Alalakh.txt", "to": "OzgucT_2004_LarsenFS_Ib_archives.txt", "weight": 1}, {"Weight": 0.9356803894042968, "from": "Wiseman_1954_JCS8_Supp_Alalakh.txt", "to": "Zeeb, Frank - Die Palastwirtschaft in Altsyrien. AOAT 282, 2001(cut).txt", "weight": 1}, {"Weight": 0.9168154001235962, "from": "Wiseman_1954_JCS8_Supp_Alalakh.txt", "to": "Gunbatti_2001_VeenhofFS_river_miss_157.txt", "weight": 1}, {"Weight": 0.9060115814208984, "from": "Wiseman_1954_JCS8_Supp_Alalakh.txt", "to": "Michel_2015_KIM1_Subartu35.txt", "weight": 1}, {"Weight": 0.9367124438285828, "from": "Wiseman_1954_JCS8_Supp_Alalakh.txt", "to": "Michel_1998_3UHKB_Quelques re\u0301flexions sur les archives_p419-433.txt", "weight": 1}, {"Weight": 0.9208176732063292, "from": "Wiseman_1954_JCS8_Supp_Alalakh.txt", "to": "Muhly, J. D. - The Copper Ox-Hide Ingots and the Bronze Age Metals Trade 13.txt", "weight": 1}, {"Weight": 0.9315702319145204, "from": "Wiseman_1954_JCS8_Supp_Alalakh.txt", "to": "Kantor_62_plaque_from_tainat.txt", "weight": 1}, {"Weight": 0.9177672863006592, "from": "Wiseman_1954_JCS8_Supp_Alalakh.txt", "to": "Veenhof, Klaas R. - Review of Notes on a New Volume of Old Assyrian Texts by Karl Hecker. JAOS 122 4, 2002, pp. 797-802.txt", "weight": 1}, {"Weight": 0.9599472880363464, "from": "Wiseman_1954_JCS8_Supp_Alalakh.txt", "to": "Jacobsen_1943_JNES2_Primitive_Democracy.txt", "weight": 1}, {"Weight": 0.9276898503303528, "from": "Wiseman_1954_JCS8_Supp_Alalakh.txt", "to": "Dercksen, J. G. - When We Met in Hattus\u030c. FS Veenhof 2001.txt", "weight": 1}, {"Weight": 0.9033099412918092, "from": "Wiseman_1954_JCS8_Supp_Alalakh.txt", "to": "AnSt 54, 2004.txt", "weight": 1}, {"Weight": 0.9056277275085448, "from": "Wiseman_1954_JCS8_Supp_Alalakh.txt", "to": "Kramer, S. N. - Commerce and Trade Gleanings from Sumerian Literature 10.txt", "weight": 1}, {"Weight": 0.9162369966506958, "from": "Wiseman_1954_JCS8_Supp_Alalakh.txt", "to": "Larsen 1971_Or40_slander.txt", "weight": 1}, {"Weight": 0.9579691290855408, "from": "Wiseman_1954_JCS8_Supp_Alalakh.txt", "to": "Luckenbill_1921_AJSLL_HittiteTreatiesandLettters.txt", "weight": 1}, {"Weight": 0.9101603627204896, "from": "Wiseman_1954_JCS8_Supp_Alalakh.txt", "to": "Bilgic\u0327_1947b_Bel11_C\u0327ivi Yaz\u0131l\u0131 Hukuki-I\u0307ktisadi Kaynaklar, Mahiyeti ve Muhtevalar\u0131. Belleten 11 (44), 1947 573-602.txt", "weight": 1}, {"Weight": 0.9449913501739502, "from": "Lyons, C. \u0026 J. Papadopolous eds - The Archaeology of Colonialism. 2002.txt", "to": "OzgucT_2004_LarsenFS_Ib_archives.txt", "weight": 1}, {"Weight": 0.9508025646209716, "from": "Lyons, C. \u0026 J. Papadopolous eds - The Archaeology of Colonialism. 2002.txt", "to": "Zeeb, Frank - Die Palastwirtschaft in Altsyrien. AOAT 282, 2001(cut).txt", "weight": 1}, {"Weight": 0.9756029844284058, "from": "Lyons, C. \u0026 J. Papadopolous eds - The Archaeology of Colonialism. 2002.txt", "to": "Gunbatti_2001_VeenhofFS_river_miss_157.txt", "weight": 1}, {"Weight": 0.9638208746910096, "from": "Lyons, C. \u0026 J. Papadopolous eds - The Archaeology of Colonialism. 2002.txt", "to": "mcadams1978.txt", "weight": 1}, {"Weight": 0.9606618285179138, "from": "Lyons, C. \u0026 J. Papadopolous eds - The Archaeology of Colonialism. 2002.txt", "to": "Michel_2015_KIM1_Subartu35.txt", "weight": 1}, {"Weight": 0.937564730644226, "from": "Lyons, C. \u0026 J. Papadopolous eds - The Archaeology of Colonialism. 2002.txt", "to": "Michel_1998_3UHKB_Quelques re\u0301flexions sur les archives_p419-433.txt", "weight": 1}, {"Weight": 0.9000223875045776, "from": "Lyons, C. \u0026 J. Papadopolous eds - The Archaeology of Colonialism. 2002.txt", "to": "Klein_2004_ZA94_6_tablets_Uruk.txt", "weight": 1}, {"Weight": 0.934502899646759, "from": "Lyons, C. \u0026 J. Papadopolous eds - The Archaeology of Colonialism. 2002.txt", "to": "mellink1992.txt", "weight": 1}, {"Weight": 0.9365167617797852, "from": "Lyons, C. \u0026 J. Papadopolous eds - The Archaeology of Colonialism. 2002.txt", "to": "AnSt 7, 1957.txt", "weight": 1}, {"Weight": 0.9189363121986388, "from": "Lyons, C. \u0026 J. Papadopolous eds - The Archaeology of Colonialism. 2002.txt", "to": "Soldt, W.H. van ed. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "weight": 1}, {"Weight": 0.9390795826911926, "from": "Lyons, C. \u0026 J. Papadopolous eds - The Archaeology of Colonialism. 2002.txt", "to": "Faist, Betina - Der Fernhandel des assyrischen Reiches. AOAT 265, 2001.txt", "weight": 1}, {"Weight": 0.986105978488922, "from": "Lyons, C. \u0026 J. Papadopolous eds - The Archaeology of Colonialism. 2002.txt", "to": "Veenhof, Klaas R. - Review of Notes on a New Volume of Old Assyrian Texts by Karl Hecker. JAOS 122 4, 2002, pp. 797-802.txt", "weight": 1}, {"Weight": 0.9536283612251282, "from": "Lyons, C. \u0026 J. Papadopolous eds - The Archaeology of Colonialism. 2002.txt", "to": "Kienast_2003_KienastFS_Intro.txt", "weight": 1}, {"Weight": 0.927561581134796, "from": "Lyons, C. \u0026 J. Papadopolous eds - The Archaeology of Colonialism. 2002.txt", "to": "Jacobsen_1943_JNES2_Primitive_Democracy.txt", "weight": 1}, {"Weight": 0.9744777083396912, "from": "Lyons, C. \u0026 J. Papadopolous eds - The Archaeology of Colonialism. 2002.txt", "to": "Dercksen, J. G. - When We Met in Hattus\u030c. FS Veenhof 2001.txt", "weight": 1}, {"Weight": 0.9703794121742249, "from": "Lyons, C. \u0026 J. Papadopolous eds - The Archaeology of Colonialism. 2002.txt", "to": "AnSt 54, 2004.txt", "weight": 1}, {"Weight": 0.9117761850357056, "from": "Lyons, C. \u0026 J. Papadopolous eds - The Archaeology of Colonialism. 2002.txt", "to": "pardee2001a.txt", "weight": 1}, {"Weight": 0.9531347155570984, "from": "Lyons, C. \u0026 J. Papadopolous eds - The Archaeology of Colonialism. 2002.txt", "to": "Veenhof, Klaas R. - Some displaced Tablets from Karum Kanesh (Kultepe). AoF 35 1, 2008, pp. 10-27.txt", "weight": 1}, {"Weight": 0.9523357152938844, "from": "Lyons, C. \u0026 J. Papadopolous eds - The Archaeology of Colonialism. 2002.txt", "to": "Larsen-Lassen_2014_cultural_encounters_Fs_Stolper_Final-libre.txt", "weight": 1}, {"Weight": 0.941366970539093, "from": "Lyons, C. \u0026 J. Papadopolous eds - The Archaeology of Colonialism. 2002.txt", "to": "Larsen 1971_Or40_slander.txt", "weight": 1}, {"Weight": 0.9650807976722716, "from": "Lyons, C. \u0026 J. Papadopolous eds - The Archaeology of Colonialism. 2002.txt", "to": "Luckenbill_1921_AJSLL_HittiteTreatiesandLettters.txt", "weight": 1}, {"Weight": 0.9696623682975768, "from": "Lyons, C. \u0026 J. Papadopolous eds - The Archaeology of Colonialism. 2002.txt", "to": "Anastasio, Stefano - The Archaeology of Upper Mesopotamia. Subartu 1, 1995 (grey).txt", "weight": 1}, {"Weight": 0.9657431840896606, "from": "Lyons, C. \u0026 J. Papadopolous eds - The Archaeology of Colonialism. 2002.txt", "to": "Bilgic\u0327_1947b_Bel11_C\u0327ivi Yaz\u0131l\u0131 Hukuki-I\u0307ktisadi Kaynaklar, Mahiyeti ve Muhtevalar\u0131. Belleten 11 (44), 1947 573-602.txt", "weight": 1}, {"Weight": 0.9460103511810304, "from": "Lyons, C. \u0026 J. Papadopolous eds - The Archaeology of Colonialism. 2002.txt", "to": "Yakubovich 2010_Luvian-book.txt", "weight": 1}, {"Weight": 0.9007262587547302, "from": "Lyons, C. \u0026 J. Papadopolous eds - The Archaeology of Colonialism. 2002.txt", "to": "Pritsch_1956_JCS10_Rev_Babylonian_Laws.txt", "weight": 1}, {"Weight": 0.9130712747573853, "from": "OzgucT_2004_LarsenFS_Ib_archives.txt", "to": "Zeeb, Frank - Die Palastwirtschaft in Altsyrien. AOAT 282, 2001(cut).txt", "weight": 1}, {"Weight": 0.913766860961914, "from": "OzgucT_2004_LarsenFS_Ib_archives.txt", "to": "Gunbatti_2001_VeenhofFS_river_miss_157.txt", "weight": 1}, {"Weight": 0.9398159384727478, "from": "OzgucT_2004_LarsenFS_Ib_archives.txt", "to": "mcadams1978.txt", "weight": 1}, {"Weight": 0.9583861231803894, "from": "OzgucT_2004_LarsenFS_Ib_archives.txt", "to": "Michel_2015_KIM1_Subartu35.txt", "weight": 1}, {"Weight": 0.9436028599739076, "from": "OzgucT_2004_LarsenFS_Ib_archives.txt", "to": "Michel_1998_3UHKB_Quelques re\u0301flexions sur les archives_p419-433.txt", "weight": 1}, {"Weight": 0.9352414608001708, "from": "OzgucT_2004_LarsenFS_Ib_archives.txt", "to": "Klein_2004_ZA94_6_tablets_Uruk.txt", "weight": 1}, {"Weight": 0.9510842561721802, "from": "OzgucT_2004_LarsenFS_Ib_archives.txt", "to": "mellink1992.txt", "weight": 1}, {"Weight": 0.9263935685157776, "from": "OzgucT_2004_LarsenFS_Ib_archives.txt", "to": "AnSt 7, 1957.txt", "weight": 1}, {"Weight": 0.9037293791770936, "from": "OzgucT_2004_LarsenFS_Ib_archives.txt", "to": "Muhly, J. D. - The Copper Ox-Hide Ingots and the Bronze Age Metals Trade 13.txt", "weight": 1}, {"Weight": 0.9130287170410156, "from": "OzgucT_2004_LarsenFS_Ib_archives.txt", "to": "Soldt, W.H. van ed. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "weight": 1}, {"Weight": 0.943127989768982, "from": "OzgucT_2004_LarsenFS_Ib_archives.txt", "to": "Veenhof, Klaas R. - Review of Notes on a New Volume of Old Assyrian Texts by Karl Hecker. JAOS 122 4, 2002, pp. 797-802.txt", "weight": 1}, {"Weight": 0.9091370105743408, "from": "OzgucT_2004_LarsenFS_Ib_archives.txt", "to": "Kienast_2003_KienastFS_Intro.txt", "weight": 1}, {"Weight": 0.941301703453064, "from": "OzgucT_2004_LarsenFS_Ib_archives.txt", "to": "Jacobsen_1943_JNES2_Primitive_Democracy.txt", "weight": 1}, {"Weight": 0.9488775134086608, "from": "OzgucT_2004_LarsenFS_Ib_archives.txt", "to": "Dercksen, J. G. - When We Met in Hattus\u030c. FS Veenhof 2001.txt", "weight": 1}, {"Weight": 0.9591953754425048, "from": "OzgucT_2004_LarsenFS_Ib_archives.txt", "to": "AnSt 54, 2004.txt", "weight": 1}, {"Weight": 0.9397541880607604, "from": "OzgucT_2004_LarsenFS_Ib_archives.txt", "to": "Veenhof, Klaas R. - Some displaced Tablets from Karum Kanesh (Kultepe). AoF 35 1, 2008, pp. 10-27.txt", "weight": 1}, {"Weight": 0.9147709608078004, "from": "OzgucT_2004_LarsenFS_Ib_archives.txt", "to": "Larsen-Lassen_2014_cultural_encounters_Fs_Stolper_Final-libre.txt", "weight": 1}, {"Weight": 0.9079629778862, "from": "OzgucT_2004_LarsenFS_Ib_archives.txt", "to": "Jankowska_1967_ArOr35_ep_rotation.txt", "weight": 1}, {"Weight": 0.9021149277687072, "from": "OzgucT_2004_LarsenFS_Ib_archives.txt", "to": "Kramer, S. N. - Commerce and Trade Gleanings from Sumerian Literature 10.txt", "weight": 1}, {"Weight": 0.9186869263648988, "from": "OzgucT_2004_LarsenFS_Ib_archives.txt", "to": "Larsen 1971_Or40_slander.txt", "weight": 1}, {"Weight": 0.951811671257019, "from": "OzgucT_2004_LarsenFS_Ib_archives.txt", "to": "Luckenbill_1921_AJSLL_HittiteTreatiesandLettters.txt", "weight": 1}, {"Weight": 0.9231024980545044, "from": "OzgucT_2004_LarsenFS_Ib_archives.txt", "to": "Anastasio, Stefano - The Archaeology of Upper Mesopotamia. Subartu 1, 1995 (grey).txt", "weight": 1}, {"Weight": 0.9603811502456664, "from": "OzgucT_2004_LarsenFS_Ib_archives.txt", "to": "Bilgic\u0327_1947b_Bel11_C\u0327ivi Yaz\u0131l\u0131 Hukuki-I\u0307ktisadi Kaynaklar, Mahiyeti ve Muhtevalar\u0131. Belleten 11 (44), 1947 573-602.txt", "weight": 1}, {"Weight": 0.9252462983131408, "from": "OzgucT_2004_LarsenFS_Ib_archives.txt", "to": "Yakubovich 2010_Luvian-book.txt", "weight": 1}, {"Weight": 0.9244550466537476, "from": "OzgucT_2004_LarsenFS_Ib_archives.txt", "to": "Pritsch_1956_JCS10_Rev_Babylonian_Laws.txt", "weight": 1}, {"Weight": 0.9565123319625854, "from": "Zeeb, Frank - Die Palastwirtschaft in Altsyrien. AOAT 282, 2001(cut).txt", "to": "Gunbatti_2001_VeenhofFS_river_miss_157.txt", "weight": 1}, {"Weight": 0.9222052097320556, "from": "Zeeb, Frank - Die Palastwirtschaft in Altsyrien. AOAT 282, 2001(cut).txt", "to": "mcadams1978.txt", "weight": 1}, {"Weight": 0.9100261926651, "from": "Zeeb, Frank - Die Palastwirtschaft in Altsyrien. AOAT 282, 2001(cut).txt", "to": "Michel_2015_KIM1_Subartu35.txt", "weight": 1}, {"Weight": 0.915820062160492, "from": "Zeeb, Frank - Die Palastwirtschaft in Altsyrien. AOAT 282, 2001(cut).txt", "to": "Michel_1998_3UHKB_Quelques re\u0301flexions sur les archives_p419-433.txt", "weight": 1}, {"Weight": 0.9389312267303468, "from": "Zeeb, Frank - Die Palastwirtschaft in Altsyrien. AOAT 282, 2001(cut).txt", "to": "mellink1992.txt", "weight": 1}, {"Weight": 0.9707646369934082, "from": "Zeeb, Frank - Die Palastwirtschaft in Altsyrien. AOAT 282, 2001(cut).txt", "to": "Faist, Betina - Der Fernhandel des assyrischen Reiches. AOAT 265, 2001.txt", "weight": 1}, {"Weight": 0.925420343875885, "from": "Zeeb, Frank - Die Palastwirtschaft in Altsyrien. AOAT 282, 2001(cut).txt", "to": "Veenhof, Klaas R. - Review of Notes on a New Volume of Old Assyrian Texts by Karl Hecker. JAOS 122 4, 2002, pp. 797-802.txt", "weight": 1}, {"Weight": 0.9164552092552184, "from": "Zeeb, Frank - Die Palastwirtschaft in Altsyrien. AOAT 282, 2001(cut).txt", "to": "Kienast_2003_KienastFS_Intro.txt", "weight": 1}, {"Weight": 0.913806676864624, "from": "Zeeb, Frank - Die Palastwirtschaft in Altsyrien. AOAT 282, 2001(cut).txt", "to": "Jacobsen_1943_JNES2_Primitive_Democracy.txt", "weight": 1}, {"Weight": 0.9388249516487122, "from": "Zeeb, Frank - Die Palastwirtschaft in Altsyrien. AOAT 282, 2001(cut).txt", "to": "Dercksen, J. G. - When We Met in Hattus\u030c. FS Veenhof 2001.txt", "weight": 1}, {"Weight": 0.916751265525818, "from": "Zeeb, Frank - Die Palastwirtschaft in Altsyrien. AOAT 282, 2001(cut).txt", "to": "AnSt 54, 2004.txt", "weight": 1}, {"Weight": 0.9312541484832764, "from": "Zeeb, Frank - Die Palastwirtschaft in Altsyrien. AOAT 282, 2001(cut).txt", "to": "pardee2001a.txt", "weight": 1}, {"Weight": 0.919720470905304, "from": "Zeeb, Frank - Die Palastwirtschaft in Altsyrien. AOAT 282, 2001(cut).txt", "to": "Veenhof, Klaas R. - Some displaced Tablets from Karum Kanesh (Kultepe). AoF 35 1, 2008, pp. 10-27.txt", "weight": 1}, {"Weight": 0.9199863076210022, "from": "Zeeb, Frank - Die Palastwirtschaft in Altsyrien. AOAT 282, 2001(cut).txt", "to": "Larsen-Lassen_2014_cultural_encounters_Fs_Stolper_Final-libre.txt", "weight": 1}, {"Weight": 0.928959310054779, "from": "Zeeb, Frank - Die Palastwirtschaft in Altsyrien. AOAT 282, 2001(cut).txt", "to": "Larsen 1971_Or40_slander.txt", "weight": 1}, {"Weight": 0.9286268949508668, "from": "Zeeb, Frank - Die Palastwirtschaft in Altsyrien. AOAT 282, 2001(cut).txt", "to": "Luckenbill_1921_AJSLL_HittiteTreatiesandLettters.txt", "weight": 1}, {"Weight": 0.921609342098236, "from": "Zeeb, Frank - Die Palastwirtschaft in Altsyrien. AOAT 282, 2001(cut).txt", "to": "Anastasio, Stefano - The Archaeology of Upper Mesopotamia. Subartu 1, 1995 (grey).txt", "weight": 1}, {"Weight": 0.9222607016563416, "from": "Zeeb, Frank - Die Palastwirtschaft in Altsyrien. AOAT 282, 2001(cut).txt", "to": "Bilgic\u0327_1947b_Bel11_C\u0327ivi Yaz\u0131l\u0131 Hukuki-I\u0307ktisadi Kaynaklar, Mahiyeti ve Muhtevalar\u0131. Belleten 11 (44), 1947 573-602.txt", "weight": 1}, {"Weight": 0.9453529715538024, "from": "Gunbatti_2001_VeenhofFS_river_miss_157.txt", "to": "mcadams1978.txt", "weight": 1}, {"Weight": 0.9247013926506042, "from": "Gunbatti_2001_VeenhofFS_river_miss_157.txt", "to": "Michel_2015_KIM1_Subartu35.txt", "weight": 1}, {"Weight": 0.9163105487823486, "from": "Gunbatti_2001_VeenhofFS_river_miss_157.txt", "to": "Michel_1998_3UHKB_Quelques re\u0301flexions sur les archives_p419-433.txt", "weight": 1}, {"Weight": 0.9086918234825134, "from": "Gunbatti_2001_VeenhofFS_river_miss_157.txt", "to": "mellink1992.txt", "weight": 1}, {"Weight": 0.9363056421279908, "from": "Gunbatti_2001_VeenhofFS_river_miss_157.txt", "to": "Faist, Betina - Der Fernhandel des assyrischen Reiches. AOAT 265, 2001.txt", "weight": 1}, {"Weight": 0.9657835364341736, "from": "Gunbatti_2001_VeenhofFS_river_miss_157.txt", "to": "Veenhof, Klaas R. - Review of Notes on a New Volume of Old Assyrian Texts by Karl Hecker. JAOS 122 4, 2002, pp. 797-802.txt", "weight": 1}, {"Weight": 0.9449666738510132, "from": "Gunbatti_2001_VeenhofFS_river_miss_157.txt", "to": "Kienast_2003_KienastFS_Intro.txt", "weight": 1}, {"Weight": 0.9491668343544006, "from": "Gunbatti_2001_VeenhofFS_river_miss_157.txt", "to": "Dercksen, J. G. - When We Met in Hattus\u030c. FS Veenhof 2001.txt", "weight": 1}, {"Weight": 0.9335550665855408, "from": "Gunbatti_2001_VeenhofFS_river_miss_157.txt", "to": "AnSt 54, 2004.txt", "weight": 1}, {"Weight": 0.9074035882949828, "from": "Gunbatti_2001_VeenhofFS_river_miss_157.txt", "to": "pardee2001a.txt", "weight": 1}, {"Weight": 0.9282258152961732, "from": "Gunbatti_2001_VeenhofFS_river_miss_157.txt", "to": "Veenhof, Klaas R. - Some displaced Tablets from Karum Kanesh (Kultepe). AoF 35 1, 2008, pp. 10-27.txt", "weight": 1}, {"Weight": 0.9492339491844176, "from": "Gunbatti_2001_VeenhofFS_river_miss_157.txt", "to": "Larsen-Lassen_2014_cultural_encounters_Fs_Stolper_Final-libre.txt", "weight": 1}, {"Weight": 0.917539119720459, "from": "Gunbatti_2001_VeenhofFS_river_miss_157.txt", "to": "Larsen 1971_Or40_slander.txt", "weight": 1}, {"Weight": 0.9297439455986024, "from": "Gunbatti_2001_VeenhofFS_river_miss_157.txt", "to": "Luckenbill_1921_AJSLL_HittiteTreatiesandLettters.txt", "weight": 1}, {"Weight": 0.9717918634414672, "from": "Gunbatti_2001_VeenhofFS_river_miss_157.txt", "to": "Anastasio, Stefano - The Archaeology of Upper Mesopotamia. Subartu 1, 1995 (grey).txt", "weight": 1}, {"Weight": 0.9365499019622804, "from": "Gunbatti_2001_VeenhofFS_river_miss_157.txt", "to": "Bilgic\u0327_1947b_Bel11_C\u0327ivi Yaz\u0131l\u0131 Hukuki-I\u0307ktisadi Kaynaklar, Mahiyeti ve Muhtevalar\u0131. Belleten 11 (44), 1947 573-602.txt", "weight": 1}, {"Weight": 0.914233148097992, "from": "Gunbatti_2001_VeenhofFS_river_miss_157.txt", "to": "Yakubovich 2010_Luvian-book.txt", "weight": 1}, {"Weight": 0.9395747780799866, "from": "mcadams1978.txt", "to": "Michel_2015_KIM1_Subartu35.txt", "weight": 1}, {"Weight": 0.951907515525818, "from": "mcadams1978.txt", "to": "Michel_1998_3UHKB_Quelques re\u0301flexions sur les archives_p419-433.txt", "weight": 1}, {"Weight": 0.9142696261405944, "from": "mcadams1978.txt", "to": "Dercksen, J. G. ed. - Trade and Finance in Ancient Mesopotamia, MOS 1. PIHANS 84, 1997 (2).txt", "weight": 1}, {"Weight": 0.949019968509674, "from": "mcadams1978.txt", "to": "Klein_2004_ZA94_6_tablets_Uruk.txt", "weight": 1}, {"Weight": 0.9362788796424866, "from": "mcadams1978.txt", "to": "Veenhof_1982c_KrausFS_manumission.txt", "weight": 1}, {"Weight": 0.9474636912345886, "from": "mcadams1978.txt", "to": "mellink1992.txt", "weight": 1}, {"Weight": 0.9455181360244752, "from": "mcadams1978.txt", "to": "AnSt 7, 1957.txt", "weight": 1}, {"Weight": 0.9306843280792236, "from": "mcadams1978.txt", "to": "Muhly, J. D. - The Copper Ox-Hide Ingots and the Bronze Age Metals Trade 13.txt", "weight": 1}, {"Weight": 0.934933304786682, "from": "mcadams1978.txt", "to": "Soldt, W.H. van ed. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "weight": 1}, {"Weight": 0.940731406211853, "from": "mcadams1978.txt", "to": "Faist, Betina - Der Fernhandel des assyrischen Reiches. AOAT 265, 2001.txt", "weight": 1}, {"Weight": 0.9103599190711976, "from": "mcadams1978.txt", "to": "Kantor_62_plaque_from_tainat.txt", "weight": 1}, {"Weight": 0.9585521817207336, "from": "mcadams1978.txt", "to": "Veenhof, Klaas R. - Review of Notes on a New Volume of Old Assyrian Texts by Karl Hecker. JAOS 122 4, 2002, pp. 797-802.txt", "weight": 1}, {"Weight": 0.9256420135498048, "from": "mcadams1978.txt", "to": "Kienast_2003_KienastFS_Intro.txt", "weight": 1}, {"Weight": 0.9065739512443542, "from": "mcadams1978.txt", "to": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "weight": 1}, {"Weight": 0.92741060256958, "from": "mcadams1978.txt", "to": "Jacobsen_1943_JNES2_Primitive_Democracy.txt", "weight": 1}, {"Weight": 0.970489263534546, "from": "mcadams1978.txt", "to": "Dercksen, J. G. - When We Met in Hattus\u030c. FS Veenhof 2001.txt", "weight": 1}, {"Weight": 0.9595509767532348, "from": "mcadams1978.txt", "to": "AnSt 54, 2004.txt", "weight": 1}, {"Weight": 0.9163607954978944, "from": "mcadams1978.txt", "to": "pardee2001a.txt", "weight": 1}, {"Weight": 0.969250500202179, "from": "mcadams1978.txt", "to": "Veenhof, Klaas R. - Some displaced Tablets from Karum Kanesh (Kultepe). AoF 35 1, 2008, pp. 10-27.txt", "weight": 1}, {"Weight": 0.903458833694458, "from": "mcadams1978.txt", "to": "Larsen-Lassen_2014_cultural_encounters_Fs_Stolper_Final-libre.txt", "weight": 1}, {"Weight": 0.906850814819336, "from": "mcadams1978.txt", "to": "Pinches_1881a_PSBA_British_Museum.txt", "weight": 1}, {"Weight": 0.9051560759544371, "from": "mcadams1978.txt", "to": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "weight": 1}, {"Weight": 0.925714910030365, "from": "mcadams1978.txt", "to": "Jankowska_1967_ArOr35_ep_rotation.txt", "weight": 1}, {"Weight": 0.9536312818527222, "from": "mcadams1978.txt", "to": "Larsen 1971_Or40_slander.txt", "weight": 1}, {"Weight": 0.9518566727638244, "from": "mcadams1978.txt", "to": "Luckenbill_1921_AJSLL_HittiteTreatiesandLettters.txt", "weight": 1}, {"Weight": 0.9413089156150818, "from": "mcadams1978.txt", "to": "Gu\u0308nbatti_2008_AOF 35-1_An Eponym List - KEL G - from Ku\u0308ltepe.txt", "weight": 1}, {"Weight": 0.9027892351150512, "from": "mcadams1978.txt", "to": "PRU 3 plates.txt", "weight": 1}, {"Weight": 0.9010244607925416, "from": "mcadams1978.txt", "to": "Melchert_sarnikzel.txt", "weight": 1}, {"Weight": 0.912047266960144, "from": "mcadams1978.txt", "to": "LewyJ_1936_RHA3_chronologie.txt", "weight": 1}, {"Weight": 0.9252729415893556, "from": "mcadams1978.txt", "to": "Anastasio, Stefano - The Archaeology of Upper Mesopotamia. Subartu 1, 1995 (grey).txt", "weight": 1}, {"Weight": 0.9704106450080872, "from": "mcadams1978.txt", "to": "Bilgic\u0327_1947b_Bel11_C\u0327ivi Yaz\u0131l\u0131 Hukuki-I\u0307ktisadi Kaynaklar, Mahiyeti ve Muhtevalar\u0131. Belleten 11 (44), 1947 573-602.txt", "weight": 1}, {"Weight": 0.9450727701187134, "from": "mcadams1978.txt", "to": "Yakubovich 2010_Luvian-book.txt", "weight": 1}, {"Weight": 0.9462380409240724, "from": "mcadams1978.txt", "to": "Dercksen_1999_MOS1_financing.txt", "weight": 1}, {"Weight": 0.9277817606925964, "from": "mcadams1978.txt", "to": "Pritsch_1956_JCS10_Rev_Babylonian_Laws.txt", "weight": 1}, {"Weight": 0.9058902263641356, "from": "mcadams1978.txt", "to": "AnSt 19, 1969.txt", "weight": 1}, {"Weight": 0.9101850390434264, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "Thureau-Dangin_1911_RA8_date.txt", "weight": 1}, {"Weight": 0.9049283266067504, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "Stein, Gil - Produces, Patrons, and Prestige - Craft Specialists and Emergent Elites in Mesopotamia from 5500-3100.txt", "weight": 1}, {"Weight": 0.9175814986228944, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "weight": 1}, {"Weight": 0.9421344995498656, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "Dercksen_2005_JEOL39_Adad_king.txt", "weight": 1}, {"Weight": 0.9222113490104676, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "Zaccagnini_1983_Mobility.txt", "weight": 1}, {"Weight": 0.910762906074524, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "Michel_2007_RlA11_SadumAdal_Labua.txt", "weight": 1}, {"Weight": 0.9009655117988586, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "Klein_2004_ZA94_6_tablets_Uruk.txt", "weight": 1}, {"Weight": 0.9455085396766664, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.9421922564506532, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "Gelb_1969_Ath47_capp_karkemish.txt", "weight": 1}, {"Weight": 0.9217402935028076, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.944404125213623, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "vandenhout2002d.txt", "weight": 1}, {"Weight": 0.9483403563499452, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "Veenhof_1982c_KrausFS_manumission.txt", "weight": 1}, {"Weight": 0.9103432893753052, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "mellink1992.txt", "weight": 1}, {"Weight": 0.947359263896942, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.906523048877716, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "Muhly, J. D. - The Copper Ox-Hide Ingots and the Bronze Age Metals Trade 13.txt", "weight": 1}, {"Weight": 0.9497523307800292, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.9166420102119446, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.9493513703346252, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.9029762148857116, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "Wartke_1995_inDiscoveries_OA_period.txt", "weight": 1}, {"Weight": 0.9347358345985411, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "politics of mesha routledge.txt", "weight": 1}, {"Weight": 0.9582760334014891, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "Kantor_62_plaque_from_tainat.txt", "weight": 1}, {"Weight": 0.9601948857307434, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.944224178791046, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "Anatolica 28, 2002.txt", "weight": 1}, {"Weight": 0.9207075834274292, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "pru3pt1000.txt", "weight": 1}, {"Weight": 0.9573911428451538, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "weight": 1}, {"Weight": 0.9206606149673462, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "pru3pt1001.txt", "weight": 1}, {"Weight": 0.9064342975616456, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "Dercksen, J. G. - When We Met in Hattus\u030c. FS Veenhof 2001.txt", "weight": 1}, {"Weight": 0.9007180333137512, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "weight": 1}, {"Weight": 0.9250743985176086, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "pardee2001a.txt", "weight": 1}, {"Weight": 0.938551664352417, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "Veenhof_1982b_JEOL27_over.txt", "weight": 1}, {"Weight": 0.9161980152130128, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "Hrozny_1928_OLZ1928_rev_Clay_BIN4.PDF.txt", "weight": 1}, {"Weight": 0.9128504991531372, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "Pinches_1881a_PSBA_British_Museum.txt", "weight": 1}, {"Weight": 0.9002177715301514, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "weight": 1}, {"Weight": 0.9117112159729004, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "weight": 1}, {"Weight": 0.9416443109512328, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "weight": 1}, {"Weight": 0.9247614145278932, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "Kramer, S. N. - Commerce and Trade Gleanings from Sumerian Literature 10.txt", "weight": 1}, {"Weight": 0.9651299118995668, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.9204683303833008, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.9070450663566588, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "owen1990.txt", "weight": 1}, {"Weight": 0.9058586359024048, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "weight": 1}, {"Weight": 0.9051851630210876, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "weight": 1}, {"Weight": 0.9222173690795898, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "Goetze_1953b_Language29_PN.txt", "weight": 1}, {"Weight": 0.9067575931549072, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "weight": 1}, {"Weight": 0.9025983214378356, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "Deller_1986_JEOL25_kanwarta.txt", "weight": 1}, {"Weight": 0.9076254963874816, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "Michel_2010_JCS62.txt", "weight": 1}, {"Weight": 0.946355402469635, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "pardee1979-80a.txt", "weight": 1}, {"Weight": 0.9321656227111816, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "Yilmaz_2007_AMMY2006.txt", "weight": 1}, {"Weight": 0.9370077252388, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "Gu\u0308nbatti_2008_AOF 35-1_An Eponym List - KEL G - from Ku\u0308ltepe.txt", "weight": 1}, {"Weight": 0.9245924949645996, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "Kienast_1975_WdO8_Pfandrecht.txt", "weight": 1}, {"Weight": 0.96241295337677, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "PRU 3 plates.txt", "weight": 1}, {"Weight": 0.9037936329841614, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "Hecker, K., G. Kryszat \u0026 L. Matous\u030c - Kappadokische Keilschrifttafeln aus den Sammlungen der Karlsuniversita\u0308t Prag. ICK 4, 1998(cut).txt", "weight": 1}, {"Weight": 0.925549566745758, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "vandenhout2002.txt", "weight": 1}, {"Weight": 0.9504966735839844, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "weight": 1}, {"Weight": 0.9565169215202332, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "Michel_2008_La Correspondes.txt", "weight": 1}, {"Weight": 0.9224812388420104, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "Melchert_sarnikzel.txt", "weight": 1}, {"Weight": 0.9157836437225342, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "Bayram_1996_Bel229_slavery.txt", "weight": 1}, {"Weight": 0.9296286702156068, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "Renger_2003_Mercanti_trade_market_in_ane.txt", "weight": 1}, {"Weight": 0.938988208770752, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "weight": 1}, {"Weight": 0.9372870326042176, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "LewyJ_1936_RHA3_chronologie.txt", "weight": 1}, {"Weight": 0.9500352144241332, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "Kienast_1998_DellerFS_tertum.txt", "weight": 1}, {"Weight": 0.9169967174530028, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "Bilgic_1990_TTK10_Turkish.txt", "weight": 1}, {"Weight": 0.9319470524787904, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "weight": 1}, {"Weight": 0.9062131643295288, "from": "Manning, et al_2016_Integrated Tree-ring-radiocarbon high-resolution timeframe to resolve earlier 2ndMillBCE Mesopotamian Chronology_PLoS1, 11(7).txt", "to": "Pritsch_1956_JCS10_Rev_Babylonian_Laws.txt", "weight": 1}, {"Weight": 0.9397866725921632, "from": "Veenhof_1982c_KrausFS_manumission.txt", "to": "mellink1992.txt", "weight": 1}, {"Weight": 0.9188187718391418, "from": "Veenhof_1982c_KrausFS_manumission.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.924660623073578, "from": "Veenhof_1982c_KrausFS_manumission.txt", "to": "Muhly, J. D. - The Copper Ox-Hide Ingots and the Bronze Age Metals Trade 13.txt", "weight": 1}, {"Weight": 0.9429276585578918, "from": "Veenhof_1982c_KrausFS_manumission.txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.915899693965912, "from": "Veenhof_1982c_KrausFS_manumission.txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.9019043445587158, "from": "Veenhof_1982c_KrausFS_manumission.txt", "to": "Wartke_1995_inDiscoveries_OA_period.txt", "weight": 1}, {"Weight": 0.9404073357582092, "from": "Veenhof_1982c_KrausFS_manumission.txt", "to": "politics of mesha routledge.txt", "weight": 1}, {"Weight": 0.93659245967865, "from": "Veenhof_1982c_KrausFS_manumission.txt", "to": "Kantor_62_plaque_from_tainat.txt", "weight": 1}, {"Weight": 0.9586957693099976, "from": "Veenhof_1982c_KrausFS_manumission.txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.955806851387024, "from": "Veenhof_1982c_KrausFS_manumission.txt", "to": "Anatolica 28, 2002.txt", "weight": 1}, {"Weight": 0.957988977432251, "from": "Veenhof_1982c_KrausFS_manumission.txt", "to": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "weight": 1}, {"Weight": 0.9308801293373108, "from": "Veenhof_1982c_KrausFS_manumission.txt", "to": "Dercksen, J. G. - When We Met in Hattus\u030c. FS Veenhof 2001.txt", "weight": 1}, {"Weight": 0.9330967664718628, "from": "Veenhof_1982c_KrausFS_manumission.txt", "to": "pardee2001a.txt", "weight": 1}, {"Weight": 0.9362293481826782, "from": "Veenhof_1982c_KrausFS_manumission.txt", "to": "Garelli_1962_RA56_religion.txt", "weight": 1}, {"Weight": 0.902766227722168, "from": "Veenhof_1982c_KrausFS_manumission.txt", "to": "Veenhof_1982b_JEOL27_over.txt", "weight": 1}, {"Weight": 0.9342279434204102, "from": "Veenhof_1982c_KrausFS_manumission.txt", "to": "Veenhof, Klaas R. - Some displaced Tablets from Karum Kanesh (Kultepe). AoF 35 1, 2008, pp. 10-27.txt", "weight": 1}, {"Weight": 0.9098247289657592, "from": "Veenhof_1982c_KrausFS_manumission.txt", "to": "Hrozny_1928_OLZ1928_rev_Clay_BIN4.PDF.txt", "weight": 1}, {"Weight": 0.940442681312561, "from": "Veenhof_1982c_KrausFS_manumission.txt", "to": "Pinches_1881a_PSBA_British_Museum.txt", "weight": 1}, {"Weight": 0.9497023224830629, "from": "Veenhof_1982c_KrausFS_manumission.txt", "to": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "weight": 1}, {"Weight": 0.9286529421806335, "from": "Veenhof_1982c_KrausFS_manumission.txt", "to": "Jankowska_1967_ArOr35_ep_rotation.txt", "weight": 1}, {"Weight": 0.9061073064804076, "from": "Veenhof_1982c_KrausFS_manumission.txt", "to": "Kramer, S. N. - Commerce and Trade Gleanings from Sumerian Literature 10.txt", "weight": 1}, {"Weight": 0.9439478516578674, "from": "Veenhof_1982c_KrausFS_manumission.txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.9033418893814088, "from": "Veenhof_1982c_KrausFS_manumission.txt", "to": "Larsen 1971_Or40_slander.txt", "weight": 1}, {"Weight": 0.9164077639579772, "from": "Veenhof_1982c_KrausFS_manumission.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.9004008173942566, "from": "Veenhof_1982c_KrausFS_manumission.txt", "to": "Goetze_1953b_Language29_PN.txt", "weight": 1}, {"Weight": 0.9418941736221312, "from": "Veenhof_1982c_KrausFS_manumission.txt", "to": "pardee1979-80a.txt", "weight": 1}, {"Weight": 0.9255138039588928, "from": "Veenhof_1982c_KrausFS_manumission.txt", "to": "Yilmaz_2007_AMMY2006.txt", "weight": 1}, {"Weight": 0.972229301929474, "from": "Veenhof_1982c_KrausFS_manumission.txt", "to": "Gu\u0308nbatti_2008_AOF 35-1_An Eponym List - KEL G - from Ku\u0308ltepe.txt", "weight": 1}, {"Weight": 0.9639335870742798, "from": "Veenhof_1982c_KrausFS_manumission.txt", "to": "PRU 3 plates.txt", "weight": 1}, {"Weight": 0.9046151638031006, "from": "Veenhof_1982c_KrausFS_manumission.txt", "to": "vandenhout2002.txt", "weight": 1}, {"Weight": 0.9335565567016602, "from": "Veenhof_1982c_KrausFS_manumission.txt", "to": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "weight": 1}, {"Weight": 0.9429200887680054, "from": "Veenhof_1982c_KrausFS_manumission.txt", "to": "Michel_2008_La Correspondes.txt", "weight": 1}, {"Weight": 0.9357845187187196, "from": "Veenhof_1982c_KrausFS_manumission.txt", "to": "Melchert_sarnikzel.txt", "weight": 1}, {"Weight": 0.931775152683258, "from": "Veenhof_1982c_KrausFS_manumission.txt", "to": "Renger_2003_Mercanti_trade_market_in_ane.txt", "weight": 1}, {"Weight": 0.9193732738494872, "from": "Veenhof_1982c_KrausFS_manumission.txt", "to": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "weight": 1}, {"Weight": 0.9662696719169616, "from": "Veenhof_1982c_KrausFS_manumission.txt", "to": "LewyJ_1936_RHA3_chronologie.txt", "weight": 1}, {"Weight": 0.9114003777503968, "from": "Veenhof_1982c_KrausFS_manumission.txt", "to": "Kienast_1998_DellerFS_tertum.txt", "weight": 1}, {"Weight": 0.9180842638015748, "from": "Veenhof_1982c_KrausFS_manumission.txt", "to": "Stein, Gil - Produces, Patrons, and Prestige - Craft Specialists and Emergent Elites in Mesopotamia from 5500-3100.txt", "weight": 1}, {"Weight": 0.926766037940979, "from": "Veenhof_1982c_KrausFS_manumission.txt", "to": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "weight": 1}, {"Weight": 0.9124361276626588, "from": "Veenhof_1982c_KrausFS_manumission.txt", "to": "Dercksen_2005_JEOL39_Adad_king.txt", "weight": 1}, {"Weight": 0.9083113074302672, "from": "Veenhof_1982c_KrausFS_manumission.txt", "to": "Zaccagnini_1983_Mobility.txt", "weight": 1}, {"Weight": 0.9060155153274536, "from": "Veenhof_1982c_KrausFS_manumission.txt", "to": "Michel_2007_RlA11_SadumAdal_Labua.txt", "weight": 1}, {"Weight": 0.905103862285614, "from": "Veenhof_1982c_KrausFS_manumission.txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.9237920641899108, "from": "Veenhof_1982c_KrausFS_manumission.txt", "to": "Gelb_1969_Ath47_capp_karkemish.txt", "weight": 1}, {"Weight": 0.9305863976478576, "from": "Veenhof_1982c_KrausFS_manumission.txt", "to": "vandenhout2002d.txt", "weight": 1}, {"Weight": 0.9242534637451172, "from": "Veenhof_1982c_KrausFS_manumission.txt", "to": "Dercksen_1999_MOS1_financing.txt", "weight": 1}, {"Weight": 0.9092430472373962, "from": "Veenhof_1982c_KrausFS_manumission.txt", "to": "Pritsch_1956_JCS10_Rev_Babylonian_Laws.txt", "weight": 1}, {"Weight": 0.9373572468757628, "from": "Veenhof_1982c_KrausFS_manumission.txt", "to": "Klein_2004_ZA94_6_tablets_Uruk.txt", "weight": 1}, {"Weight": 0.9255196452140808, "from": "Veenhof_1982c_KrausFS_manumission.txt", "to": "Dercksen, J. G. ed. - Trade and Finance in Ancient Mesopotamia, MOS 1. PIHANS 84, 1997 (2).txt", "weight": 1}, {"Weight": 0.9140305519104004, "from": "mellink1992.txt", "to": "Muhly, J. D. - The Copper Ox-Hide Ingots and the Bronze Age Metals Trade 13.txt", "weight": 1}, {"Weight": 0.941787600517273, "from": "mellink1992.txt", "to": "Faist, Betina - Der Fernhandel des assyrischen Reiches. AOAT 265, 2001.txt", "weight": 1}, {"Weight": 0.9139076471328736, "from": "mellink1992.txt", "to": "Kantor_62_plaque_from_tainat.txt", "weight": 1}, {"Weight": 0.9055852890014648, "from": "mellink1992.txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.9106972813606262, "from": "mellink1992.txt", "to": "Veenhof, Klaas R. - Review of Notes on a New Volume of Old Assyrian Texts by Karl Hecker. JAOS 122 4, 2002, pp. 797-802.txt", "weight": 1}, {"Weight": 0.9476168155670166, "from": "mellink1992.txt", "to": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "weight": 1}, {"Weight": 0.9170842170715332, "from": "mellink1992.txt", "to": "Jacobsen_1943_JNES2_Primitive_Democracy.txt", "weight": 1}, {"Weight": 0.9475989937782288, "from": "mellink1992.txt", "to": "Dercksen, J. G. - When We Met in Hattus\u030c. FS Veenhof 2001.txt", "weight": 1}, {"Weight": 0.9304933547973632, "from": "mellink1992.txt", "to": "AnSt 54, 2004.txt", "weight": 1}, {"Weight": 0.9431117177009584, "from": "mellink1992.txt", "to": "pardee2001a.txt", "weight": 1}, {"Weight": 0.9507731199264526, "from": "mellink1992.txt", "to": "Veenhof, Klaas R. - Some displaced Tablets from Karum Kanesh (Kultepe). AoF 35 1, 2008, pp. 10-27.txt", "weight": 1}, {"Weight": 0.9072198271751404, "from": "mellink1992.txt", "to": "Pinches_1881a_PSBA_British_Museum.txt", "weight": 1}, {"Weight": 0.9130936861038208, "from": "mellink1992.txt", "to": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "weight": 1}, {"Weight": 0.9149451851844788, "from": "mellink1992.txt", "to": "Jankowska_1967_ArOr35_ep_rotation.txt", "weight": 1}, {"Weight": 0.9037047028541564, "from": "mellink1992.txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.9223151803016664, "from": "mellink1992.txt", "to": "Larsen 1971_Or40_slander.txt", "weight": 1}, {"Weight": 0.9254440069198608, "from": "mellink1992.txt", "to": "Luckenbill_1921_AJSLL_HittiteTreatiesandLettters.txt", "weight": 1}, {"Weight": 0.937467634677887, "from": "mellink1992.txt", "to": "Gu\u0308nbatti_2008_AOF 35-1_An Eponym List - KEL G - from Ku\u0308ltepe.txt", "weight": 1}, {"Weight": 0.9196690320968628, "from": "mellink1992.txt", "to": "PRU 3 plates.txt", "weight": 1}, {"Weight": 0.937070608139038, "from": "mellink1992.txt", "to": "LewyJ_1936_RHA3_chronologie.txt", "weight": 1}, {"Weight": 0.9007102847099304, "from": "mellink1992.txt", "to": "Stein, Gil - Produces, Patrons, and Prestige - Craft Specialists and Emergent Elites in Mesopotamia from 5500-3100.txt", "weight": 1}, {"Weight": 0.9380810260772704, "from": "mellink1992.txt", "to": "Bilgic\u0327_1947b_Bel11_C\u0327ivi Yaz\u0131l\u0131 Hukuki-I\u0307ktisadi Kaynaklar, Mahiyeti ve Muhtevalar\u0131. Belleten 11 (44), 1947 573-602.txt", "weight": 1}, {"Weight": 0.9220023155212402, "from": "mellink1992.txt", "to": "Yakubovich 2010_Luvian-book.txt", "weight": 1}, {"Weight": 0.9111607670783995, "from": "mellink1992.txt", "to": "Michel_2015_KIM1_Subartu35.txt", "weight": 1}, {"Weight": 0.9154067039489746, "from": "mellink1992.txt", "to": "Michel_1998_3UHKB_Quelques re\u0301flexions sur les archives_p419-433.txt", "weight": 1}, {"Weight": 0.9349984526634216, "from": "mellink1992.txt", "to": "Dercksen_1999_MOS1_financing.txt", "weight": 1}, {"Weight": 0.912304162979126, "from": "mellink1992.txt", "to": "Pritsch_1956_JCS10_Rev_Babylonian_Laws.txt", "weight": 1}, {"Weight": 0.9465551376342772, "from": "mellink1992.txt", "to": "Klein_2004_ZA94_6_tablets_Uruk.txt", "weight": 1}, {"Weight": 0.91612446308136, "from": "Faist, Betina - Der Fernhandel des assyrischen Reiches. AOAT 265, 2001.txt", "to": "Veenhof, Klaas R. - Review of Notes on a New Volume of Old Assyrian Texts by Karl Hecker. JAOS 122 4, 2002, pp. 797-802.txt", "weight": 1}, {"Weight": 0.9260476231575012, "from": "Faist, Betina - Der Fernhandel des assyrischen Reiches. AOAT 265, 2001.txt", "to": "Kienast_2003_KienastFS_Intro.txt", "weight": 1}, {"Weight": 0.9065316915512084, "from": "Faist, Betina - Der Fernhandel des assyrischen Reiches. AOAT 265, 2001.txt", "to": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "weight": 1}, {"Weight": 0.9326517581939696, "from": "Faist, Betina - Der Fernhandel des assyrischen Reiches. AOAT 265, 2001.txt", "to": "Dercksen, J. G. - When We Met in Hattus\u030c. FS Veenhof 2001.txt", "weight": 1}, {"Weight": 0.9148396849632264, "from": "Faist, Betina - Der Fernhandel des assyrischen Reiches. AOAT 265, 2001.txt", "to": "AnSt 54, 2004.txt", "weight": 1}, {"Weight": 0.9135859608650208, "from": "Faist, Betina - Der Fernhandel des assyrischen Reiches. AOAT 265, 2001.txt", "to": "pardee2001a.txt", "weight": 1}, {"Weight": 0.9308090806007384, "from": "Faist, Betina - Der Fernhandel des assyrischen Reiches. AOAT 265, 2001.txt", "to": "Veenhof, Klaas R. - Some displaced Tablets from Karum Kanesh (Kultepe). AoF 35 1, 2008, pp. 10-27.txt", "weight": 1}, {"Weight": 0.903126299381256, "from": "Faist, Betina - Der Fernhandel des assyrischen Reiches. AOAT 265, 2001.txt", "to": "Larsen-Lassen_2014_cultural_encounters_Fs_Stolper_Final-libre.txt", "weight": 1}, {"Weight": 0.9350277185440063, "from": "Faist, Betina - Der Fernhandel des assyrischen Reiches. AOAT 265, 2001.txt", "to": "Larsen 1971_Or40_slander.txt", "weight": 1}, {"Weight": 0.9139139652252196, "from": "Faist, Betina - Der Fernhandel des assyrischen Reiches. AOAT 265, 2001.txt", "to": "Luckenbill_1921_AJSLL_HittiteTreatiesandLettters.txt", "weight": 1}, {"Weight": 0.9073441624641418, "from": "Faist, Betina - Der Fernhandel des assyrischen Reiches. AOAT 265, 2001.txt", "to": "LewyJ_1936_RHA3_chronologie.txt", "weight": 1}, {"Weight": 0.907770574092865, "from": "Faist, Betina - Der Fernhandel des assyrischen Reiches. AOAT 265, 2001.txt", "to": "Anastasio, Stefano - The Archaeology of Upper Mesopotamia. Subartu 1, 1995 (grey).txt", "weight": 1}, {"Weight": 0.9298502206802368, "from": "Faist, Betina - Der Fernhandel des assyrischen Reiches. AOAT 265, 2001.txt", "to": "Bilgic\u0327_1947b_Bel11_C\u0327ivi Yaz\u0131l\u0131 Hukuki-I\u0307ktisadi Kaynaklar, Mahiyeti ve Muhtevalar\u0131. Belleten 11 (44), 1947 573-602.txt", "weight": 1}, {"Weight": 0.9041742086410522, "from": "Faist, Betina - Der Fernhandel des assyrischen Reiches. AOAT 265, 2001.txt", "to": "Yakubovich 2010_Luvian-book.txt", "weight": 1}, {"Weight": 0.9064875841140748, "from": "Faist, Betina - Der Fernhandel des assyrischen Reiches. AOAT 265, 2001.txt", "to": "Michel_1998_3UHKB_Quelques re\u0301flexions sur les archives_p419-433.txt", "weight": 1}, {"Weight": 0.9042761325836182, "from": "Faist, Betina - Der Fernhandel des assyrischen Reiches. AOAT 265, 2001.txt", "to": "Soldt, W.H. van ed. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "weight": 1}, {"Weight": 0.9234328269958496, "from": "Faist, Betina - Der Fernhandel des assyrischen Reiches. AOAT 265, 2001.txt", "to": "Dercksen_1999_MOS1_financing.txt", "weight": 1}, {"Weight": 0.9022116661071776, "from": "Faist, Betina - Der Fernhandel des assyrischen Reiches. AOAT 265, 2001.txt", "to": "Muhly, J. D. - The Copper Ox-Hide Ingots and the Bronze Age Metals Trade 13.txt", "weight": 1}, {"Weight": 0.9510141611099244, "from": "Kantor_62_plaque_from_tainat.txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.9414416551589966, "from": "Kantor_62_plaque_from_tainat.txt", "to": "Anatolica 28, 2002.txt", "weight": 1}, {"Weight": 0.9002803564071655, "from": "Kantor_62_plaque_from_tainat.txt", "to": "pru3pt1000.txt", "weight": 1}, {"Weight": 0.9541354775428772, "from": "Kantor_62_plaque_from_tainat.txt", "to": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "weight": 1}, {"Weight": 0.9517323970794678, "from": "Kantor_62_plaque_from_tainat.txt", "to": "Jacobsen_1943_JNES2_Primitive_Democracy.txt", "weight": 1}, {"Weight": 0.9263211488723756, "from": "Kantor_62_plaque_from_tainat.txt", "to": "Dercksen, J. G. - When We Met in Hattus\u030c. FS Veenhof 2001.txt", "weight": 1}, {"Weight": 0.9190900325775146, "from": "Kantor_62_plaque_from_tainat.txt", "to": "pardee2001a.txt", "weight": 1}, {"Weight": 0.915067195892334, "from": "Kantor_62_plaque_from_tainat.txt", "to": "Veenhof_1982b_JEOL27_over.txt", "weight": 1}, {"Weight": 0.9420955181121826, "from": "Kantor_62_plaque_from_tainat.txt", "to": "Hrozny_1928_OLZ1928_rev_Clay_BIN4.PDF.txt", "weight": 1}, {"Weight": 0.9260878562927246, "from": "Kantor_62_plaque_from_tainat.txt", "to": "Pinches_1881a_PSBA_British_Museum.txt", "weight": 1}, {"Weight": 0.9438936114311218, "from": "Kantor_62_plaque_from_tainat.txt", "to": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "weight": 1}, {"Weight": 0.9073758125305176, "from": "Kantor_62_plaque_from_tainat.txt", "to": "Jankowska_1967_ArOr35_ep_rotation.txt", "weight": 1}, {"Weight": 0.9545571804046632, "from": "Kantor_62_plaque_from_tainat.txt", "to": "Kramer, S. N. - Commerce and Trade Gleanings from Sumerian Literature 10.txt", "weight": 1}, {"Weight": 0.9524885416030884, "from": "Kantor_62_plaque_from_tainat.txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.9126507639884948, "from": "Kantor_62_plaque_from_tainat.txt", "to": "Larsen 1971_Or40_slander.txt", "weight": 1}, {"Weight": 0.9318389296531676, "from": "Kantor_62_plaque_from_tainat.txt", "to": "Luckenbill_1921_AJSLL_HittiteTreatiesandLettters.txt", "weight": 1}, {"Weight": 0.9196608662605286, "from": "Kantor_62_plaque_from_tainat.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.902519941329956, "from": "Kantor_62_plaque_from_tainat.txt", "to": "Goetze_1953b_Language29_PN.txt", "weight": 1}, {"Weight": 0.9290499687194824, "from": "Kantor_62_plaque_from_tainat.txt", "to": "pardee1979-80a.txt", "weight": 1}, {"Weight": 0.9155231714248656, "from": "Kantor_62_plaque_from_tainat.txt", "to": "Yilmaz_2007_AMMY2006.txt", "weight": 1}, {"Weight": 0.940353512763977, "from": "Kantor_62_plaque_from_tainat.txt", "to": "Gu\u0308nbatti_2008_AOF 35-1_An Eponym List - KEL G - from Ku\u0308ltepe.txt", "weight": 1}, {"Weight": 0.9204912185668944, "from": "Kantor_62_plaque_from_tainat.txt", "to": "Kienast_1975_WdO8_Pfandrecht.txt", "weight": 1}, {"Weight": 0.9389604330062866, "from": "Kantor_62_plaque_from_tainat.txt", "to": "PRU 3 plates.txt", "weight": 1}, {"Weight": 0.903891384601593, "from": "Kantor_62_plaque_from_tainat.txt", "to": "vandenhout2002.txt", "weight": 1}, {"Weight": 0.9420154094696044, "from": "Kantor_62_plaque_from_tainat.txt", "to": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "weight": 1}, {"Weight": 0.9301151633262634, "from": "Kantor_62_plaque_from_tainat.txt", "to": "Michel_2008_La Correspondes.txt", "weight": 1}, {"Weight": 0.934746265411377, "from": "Kantor_62_plaque_from_tainat.txt", "to": "Melchert_sarnikzel.txt", "weight": 1}, {"Weight": 0.9069680571556092, "from": "Kantor_62_plaque_from_tainat.txt", "to": "Bayram_1996_Bel229_slavery.txt", "weight": 1}, {"Weight": 0.9415767192840576, "from": "Kantor_62_plaque_from_tainat.txt", "to": "Renger_2003_Mercanti_trade_market_in_ane.txt", "weight": 1}, {"Weight": 0.9696954488754272, "from": "Kantor_62_plaque_from_tainat.txt", "to": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "weight": 1}, {"Weight": 0.9407238364219666, "from": "Kantor_62_plaque_from_tainat.txt", "to": "LewyJ_1936_RHA3_chronologie.txt", "weight": 1}, {"Weight": 0.9437169432640076, "from": "Kantor_62_plaque_from_tainat.txt", "to": "Kienast_1998_DellerFS_tertum.txt", "weight": 1}, {"Weight": 0.9173872470855712, "from": "Kantor_62_plaque_from_tainat.txt", "to": "Bilgic_1990_TTK10_Turkish.txt", "weight": 1}, {"Weight": 0.9152063727378844, "from": "Kantor_62_plaque_from_tainat.txt", "to": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "weight": 1}, {"Weight": 0.9131879210472108, "from": "Kantor_62_plaque_from_tainat.txt", "to": "Stein, Gil - Produces, Patrons, and Prestige - Craft Specialists and Emergent Elites in Mesopotamia from 5500-3100.txt", "weight": 1}, {"Weight": 0.918488621711731, "from": "Kantor_62_plaque_from_tainat.txt", "to": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "weight": 1}, {"Weight": 0.9350883364677428, "from": "Kantor_62_plaque_from_tainat.txt", "to": "Dercksen_2005_JEOL39_Adad_king.txt", "weight": 1}, {"Weight": 0.9339247941970824, "from": "Kantor_62_plaque_from_tainat.txt", "to": "Zaccagnini_1983_Mobility.txt", "weight": 1}, {"Weight": 0.9124600887298584, "from": "Kantor_62_plaque_from_tainat.txt", "to": "Michel_2007_RlA11_SadumAdal_Labua.txt", "weight": 1}, {"Weight": 0.9439145922660828, "from": "Kantor_62_plaque_from_tainat.txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.9482989311218262, "from": "Kantor_62_plaque_from_tainat.txt", "to": "Gelb_1969_Ath47_capp_karkemish.txt", "weight": 1}, {"Weight": 0.9181031584739684, "from": "Kantor_62_plaque_from_tainat.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.9377326965332032, "from": "Kantor_62_plaque_from_tainat.txt", "to": "vandenhout2002d.txt", "weight": 1}, {"Weight": 0.9391571879386902, "from": "Kantor_62_plaque_from_tainat.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.9494886994361876, "from": "Kantor_62_plaque_from_tainat.txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.9129325747489928, "from": "Kantor_62_plaque_from_tainat.txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.9579633474349976, "from": "Kantor_62_plaque_from_tainat.txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.9378632307052612, "from": "Kantor_62_plaque_from_tainat.txt", "to": "politics of mesha routledge.txt", "weight": 1}, {"Weight": 0.9173642992973328, "from": "Kantor_62_plaque_from_tainat.txt", "to": "Michel_1998_3UHKB_Quelques re\u0301flexions sur les archives_p419-433.txt", "weight": 1}, {"Weight": 0.956034779548645, "from": "Kantor_62_plaque_from_tainat.txt", "to": "Pritsch_1956_JCS10_Rev_Babylonian_Laws.txt", "weight": 1}, {"Weight": 0.9166125059127808, "from": "Kantor_62_plaque_from_tainat.txt", "to": "Klein_2004_ZA94_6_tablets_Uruk.txt", "weight": 1}, {"Weight": 0.9613165259361268, "from": "Kantor_62_plaque_from_tainat.txt", "to": "Muhly, J. D. - The Copper Ox-Hide Ingots and the Bronze Age Metals Trade 13.txt", "weight": 1}, {"Weight": 0.9565517902374268, "from": "Veenhof, Klaas R. - Review of Notes on a New Volume of Old Assyrian Texts by Karl Hecker. JAOS 122 4, 2002, pp. 797-802.txt", "to": "Kienast_2003_KienastFS_Intro.txt", "weight": 1}, {"Weight": 0.9213523268699646, "from": "Veenhof, Klaas R. - Review of Notes on a New Volume of Old Assyrian Texts by Karl Hecker. JAOS 122 4, 2002, pp. 797-802.txt", "to": "Jacobsen_1943_JNES2_Primitive_Democracy.txt", "weight": 1}, {"Weight": 0.9739975333213806, "from": "Veenhof, Klaas R. - Review of Notes on a New Volume of Old Assyrian Texts by Karl Hecker. JAOS 122 4, 2002, pp. 797-802.txt", "to": "Dercksen, J. G. - When We Met in Hattus\u030c. FS Veenhof 2001.txt", "weight": 1}, {"Weight": 0.9737608432769777, "from": "Veenhof, Klaas R. - Review of Notes on a New Volume of Old Assyrian Texts by Karl Hecker. JAOS 122 4, 2002, pp. 797-802.txt", "to": "AnSt 54, 2004.txt", "weight": 1}, {"Weight": 0.9474086165428162, "from": "Veenhof, Klaas R. - Review of Notes on a New Volume of Old Assyrian Texts by Karl Hecker. JAOS 122 4, 2002, pp. 797-802.txt", "to": "Veenhof, Klaas R. - Some displaced Tablets from Karum Kanesh (Kultepe). AoF 35 1, 2008, pp. 10-27.txt", "weight": 1}, {"Weight": 0.94605153799057, "from": "Veenhof, Klaas R. - Review of Notes on a New Volume of Old Assyrian Texts by Karl Hecker. JAOS 122 4, 2002, pp. 797-802.txt", "to": "Larsen-Lassen_2014_cultural_encounters_Fs_Stolper_Final-libre.txt", "weight": 1}, {"Weight": 0.9345967173576356, "from": "Veenhof, Klaas R. - Review of Notes on a New Volume of Old Assyrian Texts by Karl Hecker. JAOS 122 4, 2002, pp. 797-802.txt", "to": "Larsen 1971_Or40_slander.txt", "weight": 1}, {"Weight": 0.9641551971435548, "from": "Veenhof, Klaas R. - Review of Notes on a New Volume of Old Assyrian Texts by Karl Hecker. JAOS 122 4, 2002, pp. 797-802.txt", "to": "Luckenbill_1921_AJSLL_HittiteTreatiesandLettters.txt", "weight": 1}, {"Weight": 0.9734818935394288, "from": "Veenhof, Klaas R. - Review of Notes on a New Volume of Old Assyrian Texts by Karl Hecker. JAOS 122 4, 2002, pp. 797-802.txt", "to": "Anastasio, Stefano - The Archaeology of Upper Mesopotamia. Subartu 1, 1995 (grey).txt", "weight": 1}, {"Weight": 0.9705874919891356, "from": "Veenhof, Klaas R. - Review of Notes on a New Volume of Old Assyrian Texts by Karl Hecker. JAOS 122 4, 2002, pp. 797-802.txt", "to": "Bilgic\u0327_1947b_Bel11_C\u0327ivi Yaz\u0131l\u0131 Hukuki-I\u0307ktisadi Kaynaklar, Mahiyeti ve Muhtevalar\u0131. Belleten 11 (44), 1947 573-602.txt", "weight": 1}, {"Weight": 0.9535027742385864, "from": "Veenhof, Klaas R. - Review of Notes on a New Volume of Old Assyrian Texts by Karl Hecker. JAOS 122 4, 2002, pp. 797-802.txt", "to": "Yakubovich 2010_Luvian-book.txt", "weight": 1}, {"Weight": 0.9686359167099, "from": "Veenhof, Klaas R. - Review of Notes on a New Volume of Old Assyrian Texts by Karl Hecker. JAOS 122 4, 2002, pp. 797-802.txt", "to": "Michel_2015_KIM1_Subartu35.txt", "weight": 1}, {"Weight": 0.9372730255126952, "from": "Veenhof, Klaas R. - Review of Notes on a New Volume of Old Assyrian Texts by Karl Hecker. JAOS 122 4, 2002, pp. 797-802.txt", "to": "Michel_1998_3UHKB_Quelques re\u0301flexions sur les archives_p419-433.txt", "weight": 1}, {"Weight": 0.9546627998352052, "from": "Veenhof, Klaas R. - Review of Notes on a New Volume of Old Assyrian Texts by Karl Hecker. JAOS 122 4, 2002, pp. 797-802.txt", "to": "AnSt 7, 1957.txt", "weight": 1}, {"Weight": 0.926770031452179, "from": "Veenhof, Klaas R. - Review of Notes on a New Volume of Old Assyrian Texts by Karl Hecker. JAOS 122 4, 2002, pp. 797-802.txt", "to": "Soldt, W.H. van ed. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "weight": 1}, {"Weight": 0.901239573955536, "from": "Veenhof, Klaas R. - Review of Notes on a New Volume of Old Assyrian Texts by Karl Hecker. JAOS 122 4, 2002, pp. 797-802.txt", "to": "Pritsch_1956_JCS10_Rev_Babylonian_Laws.txt", "weight": 1}, {"Weight": 0.9166565537452698, "from": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "to": "Dercksen, J. G. - When We Met in Hattus\u030c. FS Veenhof 2001.txt", "weight": 1}, {"Weight": 0.9001844525337219, "from": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "to": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "weight": 1}, {"Weight": 0.9315428137779236, "from": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "to": "pardee2001a.txt", "weight": 1}, {"Weight": 0.922640323638916, "from": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "to": "Garelli_1962_RA56_religion.txt", "weight": 1}, {"Weight": 0.91303288936615, "from": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "to": "Veenhof_1982b_JEOL27_over.txt", "weight": 1}, {"Weight": 0.9049050211906432, "from": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "to": "Veenhof, Klaas R. - Some displaced Tablets from Karum Kanesh (Kultepe). AoF 35 1, 2008, pp. 10-27.txt", "weight": 1}, {"Weight": 0.9207680821418762, "from": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "to": "Hrozny_1928_OLZ1928_rev_Clay_BIN4.PDF.txt", "weight": 1}, {"Weight": 0.92588609457016, "from": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "to": "Pinches_1881a_PSBA_British_Museum.txt", "weight": 1}, {"Weight": 0.9145139455795288, "from": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "to": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "weight": 1}, {"Weight": 0.9624820351600648, "from": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "to": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "weight": 1}, {"Weight": 0.9086515307426452, "from": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "to": "Jankowska_1967_ArOr35_ep_rotation.txt", "weight": 1}, {"Weight": 0.9031045436859132, "from": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "to": "Kramer, S. N. - Commerce and Trade Gleanings from Sumerian Literature 10.txt", "weight": 1}, {"Weight": 0.947308361530304, "from": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.9398085474967957, "from": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.9092334508895874, "from": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "to": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "weight": 1}, {"Weight": 0.926017999649048, "from": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "to": "Goetze_1953b_Language29_PN.txt", "weight": 1}, {"Weight": 0.9140965938568116, "from": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "to": "Deller_1986_JEOL25_kanwarta.txt", "weight": 1}, {"Weight": 0.9141770005226136, "from": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "to": "pru3pt1000.txt", "weight": 1}, {"Weight": 0.948170244693756, "from": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "to": "pardee1979-80a.txt", "weight": 1}, {"Weight": 0.9556890726089478, "from": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "to": "Yilmaz_2007_AMMY2006.txt", "weight": 1}, {"Weight": 0.9547805786132812, "from": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "to": "Gu\u0308nbatti_2008_AOF 35-1_An Eponym List - KEL G - from Ku\u0308ltepe.txt", "weight": 1}, {"Weight": 0.931405544281006, "from": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "to": "Kienast_1975_WdO8_Pfandrecht.txt", "weight": 1}, {"Weight": 0.966633141040802, "from": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "to": "PRU 3 plates.txt", "weight": 1}, {"Weight": 0.9072087407112122, "from": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "to": "Michel_2010_C9T9_Transport.txt", "weight": 1}, {"Weight": 0.9249873757362366, "from": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "to": "vandenhout2002.txt", "weight": 1}, {"Weight": 0.9525817632675172, "from": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "to": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "weight": 1}, {"Weight": 0.9342637062072754, "from": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "to": "Michel_2008_La Correspondes.txt", "weight": 1}, {"Weight": 0.9342601895332336, "from": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "to": "Melchert_sarnikzel.txt", "weight": 1}, {"Weight": 0.9148706197738647, "from": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "to": "Bayram_1996_Bel229_slavery.txt", "weight": 1}, {"Weight": 0.9290204644203186, "from": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "to": "starke1985.txt", "weight": 1}, {"Weight": 0.946914553642273, "from": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "to": "Renger_2003_Mercanti_trade_market_in_ane.txt", "weight": 1}, {"Weight": 0.943053126335144, "from": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "to": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "weight": 1}, {"Weight": 0.9721144437789916, "from": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "to": "LewyJ_1936_RHA3_chronologie.txt", "weight": 1}, {"Weight": 0.9332101941108704, "from": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "to": "Kienast_1998_DellerFS_tertum.txt", "weight": 1}, {"Weight": 0.930367350578308, "from": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "to": "Bilgic_1990_TTK10_Turkish.txt", "weight": 1}, {"Weight": 0.9315223693847656, "from": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "to": "Stein, Gil - Produces, Patrons, and Prestige - Craft Specialists and Emergent Elites in Mesopotamia from 5500-3100.txt", "weight": 1}, {"Weight": 0.93975031375885, "from": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "to": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "weight": 1}, {"Weight": 0.9419240951538086, "from": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "to": "Dercksen_2005_JEOL39_Adad_king.txt", "weight": 1}, {"Weight": 0.9088675379753112, "from": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "to": "Zaccagnini_1983_Mobility.txt", "weight": 1}, {"Weight": 0.926941990852356, "from": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "to": "Michel_2007_RlA11_SadumAdal_Labua.txt", "weight": 1}, {"Weight": 0.9401076436042786, "from": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.9436129927635192, "from": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "to": "Gelb_1969_Ath47_capp_karkemish.txt", "weight": 1}, {"Weight": 0.9193071722984314, "from": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.9531400203704834, "from": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "to": "vandenhout2002d.txt", "weight": 1}, {"Weight": 0.9494732618331908, "from": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.9530586004257202, "from": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.9012472033500672, "from": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.953708827495575, "from": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.9068993330001832, "from": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "to": "Wartke_1995_inDiscoveries_OA_period.txt", "weight": 1}, {"Weight": 0.9395389556884766, "from": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "to": "politics of mesha routledge.txt", "weight": 1}, {"Weight": 0.962979793548584, "from": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.9459205269813538, "from": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "to": "Anatolica 28, 2002.txt", "weight": 1}, {"Weight": 0.9184163212776184, "from": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "to": "Dercksen_1999_MOS1_financing.txt", "weight": 1}, {"Weight": 0.913597583770752, "from": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "to": "Pritsch_1956_JCS10_Rev_Babylonian_Laws.txt", "weight": 1}, {"Weight": 0.926178216934204, "from": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "to": "Klein_2004_ZA94_6_tablets_Uruk.txt", "weight": 1}, {"Weight": 0.9247121810913086, "from": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "to": "Muhly, J. D. - The Copper Ox-Hide Ingots and the Bronze Age Metals Trade 13.txt", "weight": 1}, {"Weight": 0.9055398106575012, "from": "Kramer, Samuel N. - Sumerian Literary Tablets and Fragments in the Archaeological Museum of Istanbul - I. TTKY VI 13, 1969(cut).txt", "to": "Dercksen, J. G. ed. - Trade and Finance in Ancient Mesopotamia, MOS 1. PIHANS 84, 1997 (2).txt", "weight": 1}, {"Weight": 0.9452220797538756, "from": "Jacobsen_1943_JNES2_Primitive_Democracy.txt", "to": "Dercksen, J. G. - When We Met in Hattus\u030c. FS Veenhof 2001.txt", "weight": 1}, {"Weight": 0.93695729970932, "from": "Jacobsen_1943_JNES2_Primitive_Democracy.txt", "to": "AnSt 54, 2004.txt", "weight": 1}, {"Weight": 0.9170826077461244, "from": "Jacobsen_1943_JNES2_Primitive_Democracy.txt", "to": "Veenhof, Klaas R. - Some displaced Tablets from Karum Kanesh (Kultepe). AoF 35 1, 2008, pp. 10-27.txt", "weight": 1}, {"Weight": 0.9138870239257812, "from": "Jacobsen_1943_JNES2_Primitive_Democracy.txt", "to": "Pinches_1881a_PSBA_British_Museum.txt", "weight": 1}, {"Weight": 0.9200451374053956, "from": "Jacobsen_1943_JNES2_Primitive_Democracy.txt", "to": "Jankowska_1967_ArOr35_ep_rotation.txt", "weight": 1}, {"Weight": 0.9566155076026917, "from": "Jacobsen_1943_JNES2_Primitive_Democracy.txt", "to": "Kramer, S. N. - Commerce and Trade Gleanings from Sumerian Literature 10.txt", "weight": 1}, {"Weight": 0.951138436794281, "from": "Jacobsen_1943_JNES2_Primitive_Democracy.txt", "to": "Larsen 1971_Or40_slander.txt", "weight": 1}, {"Weight": 0.9787524938583374, "from": "Jacobsen_1943_JNES2_Primitive_Democracy.txt", "to": "Luckenbill_1921_AJSLL_HittiteTreatiesandLettters.txt", "weight": 1}, {"Weight": 0.913853108882904, "from": "Jacobsen_1943_JNES2_Primitive_Democracy.txt", "to": "Gu\u0308nbatti_2008_AOF 35-1_An Eponym List - KEL G - from Ku\u0308ltepe.txt", "weight": 1}, {"Weight": 0.9017282724380492, "from": "Jacobsen_1943_JNES2_Primitive_Democracy.txt", "to": "Melchert_sarnikzel.txt", "weight": 1}, {"Weight": 0.9418200254440308, "from": "Jacobsen_1943_JNES2_Primitive_Democracy.txt", "to": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "weight": 1}, {"Weight": 0.9041315317153932, "from": "Jacobsen_1943_JNES2_Primitive_Democracy.txt", "to": "Zaccagnini_1983_Mobility.txt", "weight": 1}, {"Weight": 0.9424555897712708, "from": "Jacobsen_1943_JNES2_Primitive_Democracy.txt", "to": "Bilgic\u0327_1947b_Bel11_C\u0327ivi Yaz\u0131l\u0131 Hukuki-I\u0307ktisadi Kaynaklar, Mahiyeti ve Muhtevalar\u0131. Belleten 11 (44), 1947 573-602.txt", "weight": 1}, {"Weight": 0.930614173412323, "from": "Jacobsen_1943_JNES2_Primitive_Democracy.txt", "to": "Michel_2015_KIM1_Subartu35.txt", "weight": 1}, {"Weight": 0.9553499817848206, "from": "Jacobsen_1943_JNES2_Primitive_Democracy.txt", "to": "Michel_1998_3UHKB_Quelques re\u0301flexions sur les archives_p419-433.txt", "weight": 1}, {"Weight": 0.9049469232559204, "from": "Jacobsen_1943_JNES2_Primitive_Democracy.txt", "to": "AnSt 7, 1957.txt", "weight": 1}, {"Weight": 0.9127432703971864, "from": "Jacobsen_1943_JNES2_Primitive_Democracy.txt", "to": "Soldt, W.H. van ed. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "weight": 1}, {"Weight": 0.9058484435081482, "from": "Jacobsen_1943_JNES2_Primitive_Democracy.txt", "to": "Dercksen_1999_MOS1_financing.txt", "weight": 1}, {"Weight": 0.9783591032028198, "from": "Jacobsen_1943_JNES2_Primitive_Democracy.txt", "to": "Pritsch_1956_JCS10_Rev_Babylonian_Laws.txt", "weight": 1}, {"Weight": 0.9342782497406006, "from": "Jacobsen_1943_JNES2_Primitive_Democracy.txt", "to": "Klein_2004_ZA94_6_tablets_Uruk.txt", "weight": 1}, {"Weight": 0.9659824967384338, "from": "Jacobsen_1943_JNES2_Primitive_Democracy.txt", "to": "Muhly, J. D. - The Copper Ox-Hide Ingots and the Bronze Age Metals Trade 13.txt", "weight": 1}, {"Weight": 0.9677483439445496, "from": "Dercksen, J. G. - When We Met in Hattus\u030c. FS Veenhof 2001.txt", "to": "AnSt 54, 2004.txt", "weight": 1}, {"Weight": 0.921612024307251, "from": "Dercksen, J. G. - When We Met in Hattus\u030c. FS Veenhof 2001.txt", "to": "pardee2001a.txt", "weight": 1}, {"Weight": 0.9634472727775574, "from": "Dercksen, J. G. - When We Met in Hattus\u030c. FS Veenhof 2001.txt", "to": "Veenhof, Klaas R. - Some displaced Tablets from Karum Kanesh (Kultepe). AoF 35 1, 2008, pp. 10-27.txt", "weight": 1}, {"Weight": 0.9057830572128296, "from": "Dercksen, J. G. - When We Met in Hattus\u030c. FS Veenhof 2001.txt", "to": "Larsen-Lassen_2014_cultural_encounters_Fs_Stolper_Final-libre.txt", "weight": 1}, {"Weight": 0.9000415205955505, "from": "Dercksen, J. G. - When We Met in Hattus\u030c. FS Veenhof 2001.txt", "to": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "weight": 1}, {"Weight": 0.9073938131332396, "from": "Dercksen, J. G. - When We Met in Hattus\u030c. FS Veenhof 2001.txt", "to": "Jankowska_1967_ArOr35_ep_rotation.txt", "weight": 1}, {"Weight": 0.9135780334472656, "from": "Dercksen, J. G. - When We Met in Hattus\u030c. FS Veenhof 2001.txt", "to": "Kramer, S. N. - Commerce and Trade Gleanings from Sumerian Literature 10.txt", "weight": 1}, {"Weight": 0.953005850315094, "from": "Dercksen, J. G. - When We Met in Hattus\u030c. FS Veenhof 2001.txt", "to": "Larsen 1971_Or40_slander.txt", "weight": 1}, {"Weight": 0.9723348021507264, "from": "Dercksen, J. G. - When We Met in Hattus\u030c. FS Veenhof 2001.txt", "to": "Luckenbill_1921_AJSLL_HittiteTreatiesandLettters.txt", "weight": 1}, {"Weight": 0.938922643661499, "from": "Dercksen, J. G. - When We Met in Hattus\u030c. FS Veenhof 2001.txt", "to": "Gu\u0308nbatti_2008_AOF 35-1_An Eponym List - KEL G - from Ku\u0308ltepe.txt", "weight": 1}, {"Weight": 0.9113538265228271, "from": "Dercksen, J. G. - When We Met in Hattus\u030c. FS Veenhof 2001.txt", "to": "PRU 3 plates.txt", "weight": 1}, {"Weight": 0.90081387758255, "from": "Dercksen, J. G. - When We Met in Hattus\u030c. FS Veenhof 2001.txt", "to": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "weight": 1}, {"Weight": 0.9047245979309082, "from": "Dercksen, J. G. - When We Met in Hattus\u030c. FS Veenhof 2001.txt", "to": "LewyJ_1936_RHA3_chronologie.txt", "weight": 1}, {"Weight": 0.9389781355857848, "from": "Dercksen, J. G. - When We Met in Hattus\u030c. FS Veenhof 2001.txt", "to": "Anastasio, Stefano - The Archaeology of Upper Mesopotamia. Subartu 1, 1995 (grey).txt", "weight": 1}, {"Weight": 0.9707302451133728, "from": "Dercksen, J. G. - When We Met in Hattus\u030c. FS Veenhof 2001.txt", "to": "Bilgic\u0327_1947b_Bel11_C\u0327ivi Yaz\u0131l\u0131 Hukuki-I\u0307ktisadi Kaynaklar, Mahiyeti ve Muhtevalar\u0131. Belleten 11 (44), 1947 573-602.txt", "weight": 1}, {"Weight": 0.952664315700531, "from": "Dercksen, J. G. - When We Met in Hattus\u030c. FS Veenhof 2001.txt", "to": "Yakubovich 2010_Luvian-book.txt", "weight": 1}, {"Weight": 0.9547665119171144, "from": "Dercksen, J. G. - When We Met in Hattus\u030c. FS Veenhof 2001.txt", "to": "Michel_2015_KIM1_Subartu35.txt", "weight": 1}, {"Weight": 0.9531561136245728, "from": "Dercksen, J. G. - When We Met in Hattus\u030c. FS Veenhof 2001.txt", "to": "Michel_1998_3UHKB_Quelques re\u0301flexions sur les archives_p419-433.txt", "weight": 1}, {"Weight": 0.9457055330276488, "from": "Dercksen, J. G. - When We Met in Hattus\u030c. FS Veenhof 2001.txt", "to": "AnSt 7, 1957.txt", "weight": 1}, {"Weight": 0.9191542267799376, "from": "Dercksen, J. G. - When We Met in Hattus\u030c. FS Veenhof 2001.txt", "to": "Soldt, W.H. van ed. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "weight": 1}, {"Weight": 0.9264503121376038, "from": "Dercksen, J. G. - When We Met in Hattus\u030c. FS Veenhof 2001.txt", "to": "Kienast_2003_KienastFS_Intro.txt", "weight": 1}, {"Weight": 0.9252843260765076, "from": "Dercksen, J. G. - When We Met in Hattus\u030c. FS Veenhof 2001.txt", "to": "Dercksen_1999_MOS1_financing.txt", "weight": 1}, {"Weight": 0.9397180676460266, "from": "Dercksen, J. G. - When We Met in Hattus\u030c. FS Veenhof 2001.txt", "to": "Pritsch_1956_JCS10_Rev_Babylonian_Laws.txt", "weight": 1}, {"Weight": 0.9358133673667908, "from": "Dercksen, J. G. - When We Met in Hattus\u030c. FS Veenhof 2001.txt", "to": "Klein_2004_ZA94_6_tablets_Uruk.txt", "weight": 1}, {"Weight": 0.9328429102897644, "from": "Dercksen, J. G. - When We Met in Hattus\u030c. FS Veenhof 2001.txt", "to": "Muhly, J. D. - The Copper Ox-Hide Ingots and the Bronze Age Metals Trade 13.txt", "weight": 1}, {"Weight": 0.9103599786758424, "from": "Dercksen, J. G. - When We Met in Hattus\u030c. FS Veenhof 2001.txt", "to": "Dercksen, J. G. ed. - Trade and Finance in Ancient Mesopotamia, MOS 1. PIHANS 84, 1997 (2).txt", "weight": 1}, {"Weight": 0.9115005135536194, "from": "pardee2001a.txt", "to": "Veenhof, Klaas R. - Some displaced Tablets from Karum Kanesh (Kultepe). AoF 35 1, 2008, pp. 10-27.txt", "weight": 1}, {"Weight": 0.9124282598495485, "from": "pardee2001a.txt", "to": "PRU 3 plates.txt", "weight": 1}, {"Weight": 0.9199025630950928, "from": "pardee2001a.txt", "to": "LewyJ_1936_RHA3_chronologie.txt", "weight": 1}, {"Weight": 0.9004538655281067, "from": "pardee2001a.txt", "to": "Gelb_1969_Ath47_capp_karkemish.txt", "weight": 1}, {"Weight": 0.9098957180976868, "from": "pardee2001a.txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.9006548523902893, "from": "pardee2001a.txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.9058615565299988, "from": "Veenhof, Klaas R. - Some displaced Tablets from Karum Kanesh (Kultepe). AoF 35 1, 2008, pp. 10-27.txt", "to": "Pinches_1881a_PSBA_British_Museum.txt", "weight": 1}, {"Weight": 0.90994530916214, "from": "Veenhof, Klaas R. - Some displaced Tablets from Karum Kanesh (Kultepe). AoF 35 1, 2008, pp. 10-27.txt", "to": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "weight": 1}, {"Weight": 0.9237468242645264, "from": "Veenhof, Klaas R. - Some displaced Tablets from Karum Kanesh (Kultepe). AoF 35 1, 2008, pp. 10-27.txt", "to": "Jankowska_1967_ArOr35_ep_rotation.txt", "weight": 1}, {"Weight": 0.9432564377784728, "from": "Veenhof, Klaas R. - Some displaced Tablets from Karum Kanesh (Kultepe). AoF 35 1, 2008, pp. 10-27.txt", "to": "Larsen 1971_Or40_slander.txt", "weight": 1}, {"Weight": 0.9411638379096984, "from": "Veenhof, Klaas R. - Some displaced Tablets from Karum Kanesh (Kultepe). AoF 35 1, 2008, pp. 10-27.txt", "to": "Luckenbill_1921_AJSLL_HittiteTreatiesandLettters.txt", "weight": 1}, {"Weight": 0.940343976020813, "from": "Veenhof, Klaas R. - Some displaced Tablets from Karum Kanesh (Kultepe). AoF 35 1, 2008, pp. 10-27.txt", "to": "Gu\u0308nbatti_2008_AOF 35-1_An Eponym List - KEL G - from Ku\u0308ltepe.txt", "weight": 1}, {"Weight": 0.9066469073295592, "from": "Veenhof, Klaas R. - Some displaced Tablets from Karum Kanesh (Kultepe). AoF 35 1, 2008, pp. 10-27.txt", "to": "PRU 3 plates.txt", "weight": 1}, {"Weight": 0.914879024028778, "from": "Veenhof, Klaas R. - Some displaced Tablets from Karum Kanesh (Kultepe). AoF 35 1, 2008, pp. 10-27.txt", "to": "LewyJ_1936_RHA3_chronologie.txt", "weight": 1}, {"Weight": 0.9147977232933044, "from": "Veenhof, Klaas R. - Some displaced Tablets from Karum Kanesh (Kultepe). AoF 35 1, 2008, pp. 10-27.txt", "to": "Anastasio, Stefano - The Archaeology of Upper Mesopotamia. Subartu 1, 1995 (grey).txt", "weight": 1}, {"Weight": 0.9553451538085938, "from": "Veenhof, Klaas R. - Some displaced Tablets from Karum Kanesh (Kultepe). AoF 35 1, 2008, pp. 10-27.txt", "to": "Bilgic\u0327_1947b_Bel11_C\u0327ivi Yaz\u0131l\u0131 Hukuki-I\u0307ktisadi Kaynaklar, Mahiyeti ve Muhtevalar\u0131. Belleten 11 (44), 1947 573-602.txt", "weight": 1}, {"Weight": 0.951373279094696, "from": "Veenhof, Klaas R. - Some displaced Tablets from Karum Kanesh (Kultepe). AoF 35 1, 2008, pp. 10-27.txt", "to": "Yakubovich 2010_Luvian-book.txt", "weight": 1}, {"Weight": 0.9444580078125, "from": "Veenhof, Klaas R. - Some displaced Tablets from Karum Kanesh (Kultepe). AoF 35 1, 2008, pp. 10-27.txt", "to": "Michel_2015_KIM1_Subartu35.txt", "weight": 1}, {"Weight": 0.9330222010612488, "from": "Veenhof, Klaas R. - Some displaced Tablets from Karum Kanesh (Kultepe). AoF 35 1, 2008, pp. 10-27.txt", "to": "Michel_1998_3UHKB_Quelques re\u0301flexions sur les archives_p419-433.txt", "weight": 1}, {"Weight": 0.9334114789962769, "from": "Veenhof, Klaas R. - Some displaced Tablets from Karum Kanesh (Kultepe). AoF 35 1, 2008, pp. 10-27.txt", "to": "AnSt 7, 1957.txt", "weight": 1}, {"Weight": 0.919086217880249, "from": "Veenhof, Klaas R. - Some displaced Tablets from Karum Kanesh (Kultepe). AoF 35 1, 2008, pp. 10-27.txt", "to": "Soldt, W.H. van ed. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "weight": 1}, {"Weight": 0.9196000099182128, "from": "Veenhof, Klaas R. - Some displaced Tablets from Karum Kanesh (Kultepe). AoF 35 1, 2008, pp. 10-27.txt", "to": "Kienast_2003_KienastFS_Intro.txt", "weight": 1}, {"Weight": 0.9486868977546692, "from": "Veenhof, Klaas R. - Some displaced Tablets from Karum Kanesh (Kultepe). AoF 35 1, 2008, pp. 10-27.txt", "to": "AnSt 54, 2004.txt", "weight": 1}, {"Weight": 0.9502626657485962, "from": "Veenhof, Klaas R. - Some displaced Tablets from Karum Kanesh (Kultepe). AoF 35 1, 2008, pp. 10-27.txt", "to": "Dercksen_1999_MOS1_financing.txt", "weight": 1}, {"Weight": 0.9173856377601624, "from": "Veenhof, Klaas R. - Some displaced Tablets from Karum Kanesh (Kultepe). AoF 35 1, 2008, pp. 10-27.txt", "to": "Pritsch_1956_JCS10_Rev_Babylonian_Laws.txt", "weight": 1}, {"Weight": 0.9513035416603088, "from": "Veenhof, Klaas R. - Some displaced Tablets from Karum Kanesh (Kultepe). AoF 35 1, 2008, pp. 10-27.txt", "to": "Klein_2004_ZA94_6_tablets_Uruk.txt", "weight": 1}, {"Weight": 0.9244789481163024, "from": "Veenhof, Klaas R. - Some displaced Tablets from Karum Kanesh (Kultepe). AoF 35 1, 2008, pp. 10-27.txt", "to": "Muhly, J. D. - The Copper Ox-Hide Ingots and the Bronze Age Metals Trade 13.txt", "weight": 1}, {"Weight": 0.9286757707595824, "from": "Veenhof, Klaas R. - Some displaced Tablets from Karum Kanesh (Kultepe). AoF 35 1, 2008, pp. 10-27.txt", "to": "Dercksen, J. G. ed. - Trade and Finance in Ancient Mesopotamia, MOS 1. PIHANS 84, 1997 (2).txt", "weight": 1}, {"Weight": 0.9183053970336914, "from": "Luckenbill_1921_AJSLL_HittiteTreatiesandLettters.txt", "to": "Gu\u0308nbatti_2008_AOF 35-1_An Eponym List - KEL G - from Ku\u0308ltepe.txt", "weight": 1}, {"Weight": 0.9203364849090576, "from": "Luckenbill_1921_AJSLL_HittiteTreatiesandLettters.txt", "to": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "weight": 1}, {"Weight": 0.9245059490203856, "from": "Luckenbill_1921_AJSLL_HittiteTreatiesandLettters.txt", "to": "Anastasio, Stefano - The Archaeology of Upper Mesopotamia. Subartu 1, 1995 (grey).txt", "weight": 1}, {"Weight": 0.967215657234192, "from": "Luckenbill_1921_AJSLL_HittiteTreatiesandLettters.txt", "to": "Bilgic\u0327_1947b_Bel11_C\u0327ivi Yaz\u0131l\u0131 Hukuki-I\u0307ktisadi Kaynaklar, Mahiyeti ve Muhtevalar\u0131. Belleten 11 (44), 1947 573-602.txt", "weight": 1}, {"Weight": 0.916479766368866, "from": "Luckenbill_1921_AJSLL_HittiteTreatiesandLettters.txt", "to": "Yakubovich 2010_Luvian-book.txt", "weight": 1}, {"Weight": 0.9588464498519896, "from": "Luckenbill_1921_AJSLL_HittiteTreatiesandLettters.txt", "to": "Michel_2015_KIM1_Subartu35.txt", "weight": 1}, {"Weight": 0.966334342956543, "from": "Luckenbill_1921_AJSLL_HittiteTreatiesandLettters.txt", "to": "Michel_1998_3UHKB_Quelques re\u0301flexions sur les archives_p419-433.txt", "weight": 1}, {"Weight": 0.944144606590271, "from": "Luckenbill_1921_AJSLL_HittiteTreatiesandLettters.txt", "to": "AnSt 7, 1957.txt", "weight": 1}, {"Weight": 0.934376060962677, "from": "Luckenbill_1921_AJSLL_HittiteTreatiesandLettters.txt", "to": "Soldt, W.H. van ed. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "weight": 1}, {"Weight": 0.9119879007339478, "from": "Luckenbill_1921_AJSLL_HittiteTreatiesandLettters.txt", "to": "Kienast_2003_KienastFS_Intro.txt", "weight": 1}, {"Weight": 0.9642175436019896, "from": "Luckenbill_1921_AJSLL_HittiteTreatiesandLettters.txt", "to": "AnSt 54, 2004.txt", "weight": 1}, {"Weight": 0.9056430459022522, "from": "Luckenbill_1921_AJSLL_HittiteTreatiesandLettters.txt", "to": "Dercksen_1999_MOS1_financing.txt", "weight": 1}, {"Weight": 0.9677426218986512, "from": "Luckenbill_1921_AJSLL_HittiteTreatiesandLettters.txt", "to": "Pritsch_1956_JCS10_Rev_Babylonian_Laws.txt", "weight": 1}, {"Weight": 0.9299506545066832, "from": "Luckenbill_1921_AJSLL_HittiteTreatiesandLettters.txt", "to": "Klein_2004_ZA94_6_tablets_Uruk.txt", "weight": 1}, {"Weight": 0.9500117897987366, "from": "Luckenbill_1921_AJSLL_HittiteTreatiesandLettters.txt", "to": "Muhly, J. D. - The Copper Ox-Hide Ingots and the Bronze Age Metals Trade 13.txt", "weight": 1}, {"Weight": 0.9105654954910278, "from": "Luckenbill_1921_AJSLL_HittiteTreatiesandLettters.txt", "to": "Jankowska_1967_ArOr35_ep_rotation.txt", "weight": 1}, {"Weight": 0.9366661310195924, "from": "Luckenbill_1921_AJSLL_HittiteTreatiesandLettters.txt", "to": "Kramer, S. N. - Commerce and Trade Gleanings from Sumerian Literature 10.txt", "weight": 1}, {"Weight": 0.9614665508270264, "from": "Luckenbill_1921_AJSLL_HittiteTreatiesandLettters.txt", "to": "Larsen 1971_Or40_slander.txt", "weight": 1}, {"Weight": 0.9753265976905824, "from": "pardee2001b.txt", "to": "Hecker_1978b_OrNS47_tib\u0027imma.txt", "weight": 1}, {"Weight": 0.933891534805298, "from": "pardee2001b.txt", "to": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "weight": 1}, {"Weight": 0.9504681825637816, "from": "pardee2001b.txt", "to": "kuhrt1988.txt", "weight": 1}, {"Weight": 0.942806839942932, "from": "pardee2001b.txt", "to": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "weight": 1}, {"Weight": 0.9011050462722778, "from": "pardee2001b.txt", "to": "Goetze_1953b_Language29_PN.txt", "weight": 1}, {"Weight": 0.9420206546783448, "from": "pardee2001b.txt", "to": "LewyJ_1928_ZA38_Amoriterfrage.txt", "weight": 1}, {"Weight": 0.975482165813446, "from": "pardee2001b.txt", "to": "Matous_1972_ArOr40_dialekt.txt", "weight": 1}, {"Weight": 0.9663618803024292, "from": "pardee2001b.txt", "to": "tuplin1987.txt", "weight": 1}, {"Weight": 0.96665221452713, "from": "pardee2001b.txt", "to": "Sever_Cecen_1993_Bel57_soc_hist.txt", "weight": 1}, {"Weight": 0.9377039670944214, "from": "pardee2001b.txt", "to": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "weight": 1}, {"Weight": 0.978941798210144, "from": "pardee2001b.txt", "to": "sjoberg_eduba.txt", "weight": 1}, {"Weight": 0.979293167591095, "from": "pardee2001b.txt", "to": "Sever_1997_ArAn3_BigicFS_amutum.txt", "weight": 1}, {"Weight": 0.9611737132072448, "from": "pardee2001b.txt", "to": "zadok1996a000.txt", "weight": 1}, {"Weight": 0.9070810079574584, "from": "pardee2001b.txt", "to": "Deller_1986_JEOL25_kanwarta.txt", "weight": 1}, {"Weight": 0.9649644494056702, "from": "pardee2001b.txt", "to": "sasson1981.txt", "weight": 1}, {"Weight": 0.9722469449043274, "from": "pardee2001b.txt", "to": "Watkins_1986.txt", "weight": 1}, {"Weight": 0.9616792798042296, "from": "pardee2001b.txt", "to": "wiseman1958.txt", "weight": 1}, {"Weight": 0.947490394115448, "from": "pardee2001b.txt", "to": "richardson2004.txt", "weight": 1}, {"Weight": 0.9512311816215516, "from": "pardee2001b.txt", "to": "oelsner1989.txt", "weight": 1}, {"Weight": 0.944617509841919, "from": "pardee2001b.txt", "to": "Michel_2010_JCS62.txt", "weight": 1}, {"Weight": 0.9377306699752808, "from": "pardee2001b.txt", "to": "mosca1987.txt", "weight": 1}, {"Weight": 0.9602043628692628, "from": "pardee2001b.txt", "to": "Tunnawi_Ritual.txt", "weight": 1}, {"Weight": 0.9254500269889832, "from": "pardee2001b.txt", "to": "Thureau-Dangin_1911_RA8_date.txt", "weight": 1}, {"Weight": 0.927358329296112, "from": "pardee2001b.txt", "to": "Michel, C. - 2007_RlA11_Qattunan.txt", "weight": 1}, {"Weight": 0.974075734615326, "from": "pardee2001b.txt", "to": "leblanc1999.txt", "weight": 1}, {"Weight": 0.9783589243888856, "from": "pardee2001b.txt", "to": "pardee1986a.txt", "weight": 1}, {"Weight": 0.9857321381568908, "from": "pardee2001b.txt", "to": "richards1994.txt", "weight": 1}, {"Weight": 0.9879608750343324, "from": "pardee2001b.txt", "to": "long1989.txt", "weight": 1}, {"Weight": 0.964318037033081, "from": "pardee2001b.txt", "to": "Streck_2000_ZA90_aktennotiz.txt", "weight": 1}, {"Weight": 0.9313687682151794, "from": "pardee2001b.txt", "to": "pru3pt1000.txt", "weight": 1}, {"Weight": 0.9418579936027528, "from": "pardee2001b.txt", "to": "Melchert_mina.txt", "weight": 1}, {"Weight": 0.937575340270996, "from": "pardee2001b.txt", "to": "Cecen_1995_ArAn1_mutanu.txt", "weight": 1}, {"Weight": 0.925751566886902, "from": "pardee2001b.txt", "to": "pru3pt1001.txt", "weight": 1}, {"Weight": 0.9536205530166626, "from": "pardee2001b.txt", "to": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "weight": 1}, {"Weight": 0.9682873487472534, "from": "pardee2001b.txt", "to": "zaccagnini1999.txt", "weight": 1}, {"Weight": 0.9233417510986328, "from": "pardee2001b.txt", "to": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "weight": 1}, {"Weight": 0.9174460172653198, "from": "pardee2001b.txt", "to": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "weight": 1}, {"Weight": 0.9813083410263062, "from": "pardee2001b.txt", "to": "Larsen 1989.txt", "weight": 1}, {"Weight": 0.9837064146995544, "from": "pardee2001b.txt", "to": "weishofer1996.txt", "weight": 1}, {"Weight": 0.9161706566810608, "from": "pardee2001b.txt", "to": "Veenhof_1982b_JEOL27_over.txt", "weight": 1}, {"Weight": 0.9103406667709352, "from": "pardee2001b.txt", "to": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "weight": 1}, {"Weight": 0.9136170148849488, "from": "pardee2001b.txt", "to": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "weight": 1}, {"Weight": 0.9045244455337524, "from": "pardee2001b.txt", "to": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "weight": 1}, {"Weight": 0.9755440354347228, "from": "pardee2001b.txt", "to": "Melchert_covertcompounds.txt", "weight": 1}, {"Weight": 0.9210231900215148, "from": "pardee2001b.txt", "to": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "weight": 1}, {"Weight": 0.9832378029823304, "from": "pardee2001b.txt", "to": "rosen1998.txt", "weight": 1}, {"Weight": 0.9747254252433776, "from": "pardee2001b.txt", "to": "nougayrol1960.txt", "weight": 1}, {"Weight": 0.931383490562439, "from": "pardee2001b.txt", "to": "owen1990.txt", "weight": 1}, {"Weight": 0.9038808345794678, "from": "pardee2001b.txt", "to": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "weight": 1}, {"Weight": 0.916227400302887, "from": "Hecker_1978b_OrNS47_tib\u0027imma.txt", "to": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "weight": 1}, {"Weight": 0.916478991508484, "from": "Hecker_1978b_OrNS47_tib\u0027imma.txt", "to": "kuhrt1988.txt", "weight": 1}, {"Weight": 0.9474197626113892, "from": "Hecker_1978b_OrNS47_tib\u0027imma.txt", "to": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "weight": 1}, {"Weight": 0.9328410625457764, "from": "Hecker_1978b_OrNS47_tib\u0027imma.txt", "to": "LewyJ_1928_ZA38_Amoriterfrage.txt", "weight": 1}, {"Weight": 0.9701370000839232, "from": "Hecker_1978b_OrNS47_tib\u0027imma.txt", "to": "Matous_1972_ArOr40_dialekt.txt", "weight": 1}, {"Weight": 0.9637469053268432, "from": "Hecker_1978b_OrNS47_tib\u0027imma.txt", "to": "tuplin1987.txt", "weight": 1}, {"Weight": 0.977353572845459, "from": "Hecker_1978b_OrNS47_tib\u0027imma.txt", "to": "Sever_Cecen_1993_Bel57_soc_hist.txt", "weight": 1}, {"Weight": 0.920454740524292, "from": "Hecker_1978b_OrNS47_tib\u0027imma.txt", "to": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "weight": 1}, {"Weight": 0.9652070999145508, "from": "Hecker_1978b_OrNS47_tib\u0027imma.txt", "to": "sjoberg_eduba.txt", "weight": 1}, {"Weight": 0.9848374724388124, "from": "Hecker_1978b_OrNS47_tib\u0027imma.txt", "to": "Sever_1997_ArAn3_BigicFS_amutum.txt", "weight": 1}, {"Weight": 0.9448661208152772, "from": "Hecker_1978b_OrNS47_tib\u0027imma.txt", "to": "zadok1996a000.txt", "weight": 1}, {"Weight": 0.9059418439865112, "from": "Hecker_1978b_OrNS47_tib\u0027imma.txt", "to": "Deller_1986_JEOL25_kanwarta.txt", "weight": 1}, {"Weight": 0.9637229442596436, "from": "Hecker_1978b_OrNS47_tib\u0027imma.txt", "to": "sasson1981.txt", "weight": 1}, {"Weight": 0.9409785866737366, "from": "Hecker_1978b_OrNS47_tib\u0027imma.txt", "to": "Watkins_1986.txt", "weight": 1}, {"Weight": 0.9533270597457886, "from": "Hecker_1978b_OrNS47_tib\u0027imma.txt", "to": "wiseman1958.txt", "weight": 1}, {"Weight": 0.919266641139984, "from": "Hecker_1978b_OrNS47_tib\u0027imma.txt", "to": "richardson2004.txt", "weight": 1}, {"Weight": 0.9323107600212096, "from": "Hecker_1978b_OrNS47_tib\u0027imma.txt", "to": "oelsner1989.txt", "weight": 1}, {"Weight": 0.9240018725395204, "from": "Hecker_1978b_OrNS47_tib\u0027imma.txt", "to": "Michel_2010_JCS62.txt", "weight": 1}, {"Weight": 0.94435453414917, "from": "Hecker_1978b_OrNS47_tib\u0027imma.txt", "to": "mosca1987.txt", "weight": 1}, {"Weight": 0.9385242462158204, "from": "Hecker_1978b_OrNS47_tib\u0027imma.txt", "to": "Tunnawi_Ritual.txt", "weight": 1}, {"Weight": 0.9199679493904114, "from": "Hecker_1978b_OrNS47_tib\u0027imma.txt", "to": "Thureau-Dangin_1911_RA8_date.txt", "weight": 1}, {"Weight": 0.9116857051849364, "from": "Hecker_1978b_OrNS47_tib\u0027imma.txt", "to": "Michel, C. - 2007_RlA11_Qattunan.txt", "weight": 1}, {"Weight": 0.960399091243744, "from": "Hecker_1978b_OrNS47_tib\u0027imma.txt", "to": "leblanc1999.txt", "weight": 1}, {"Weight": 0.965325117111206, "from": "Hecker_1978b_OrNS47_tib\u0027imma.txt", "to": "pardee1986a.txt", "weight": 1}, {"Weight": 0.972697377204895, "from": "Hecker_1978b_OrNS47_tib\u0027imma.txt", "to": "richards1994.txt", "weight": 1}, {"Weight": 0.9833219051361084, "from": "Hecker_1978b_OrNS47_tib\u0027imma.txt", "to": "long1989.txt", "weight": 1}, {"Weight": 0.9473434686660768, "from": "Hecker_1978b_OrNS47_tib\u0027imma.txt", "to": "Streck_2000_ZA90_aktennotiz.txt", "weight": 1}, {"Weight": 0.9105345606803894, "from": "Hecker_1978b_OrNS47_tib\u0027imma.txt", "to": "pru3pt1000.txt", "weight": 1}, {"Weight": 0.9269549250602722, "from": "Hecker_1978b_OrNS47_tib\u0027imma.txt", "to": "Melchert_mina.txt", "weight": 1}, {"Weight": 0.9328525066375732, "from": "Hecker_1978b_OrNS47_tib\u0027imma.txt", "to": "Cecen_1995_ArAn1_mutanu.txt", "weight": 1}, {"Weight": 0.9098706841468812, "from": "Hecker_1978b_OrNS47_tib\u0027imma.txt", "to": "pru3pt1001.txt", "weight": 1}, {"Weight": 0.9563504457473756, "from": "Hecker_1978b_OrNS47_tib\u0027imma.txt", "to": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "weight": 1}, {"Weight": 0.9593032598495485, "from": "Hecker_1978b_OrNS47_tib\u0027imma.txt", "to": "zaccagnini1999.txt", "weight": 1}, {"Weight": 0.9220382571220398, "from": "Hecker_1978b_OrNS47_tib\u0027imma.txt", "to": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "weight": 1}, {"Weight": 0.9653390049934388, "from": "Hecker_1978b_OrNS47_tib\u0027imma.txt", "to": "Larsen 1989.txt", "weight": 1}, {"Weight": 0.98062664270401, "from": "Hecker_1978b_OrNS47_tib\u0027imma.txt", "to": "weishofer1996.txt", "weight": 1}, {"Weight": 0.9167946577072144, "from": "Hecker_1978b_OrNS47_tib\u0027imma.txt", "to": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "weight": 1}, {"Weight": 0.9156754612922668, "from": "Hecker_1978b_OrNS47_tib\u0027imma.txt", "to": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "weight": 1}, {"Weight": 0.9680529236793518, "from": "Hecker_1978b_OrNS47_tib\u0027imma.txt", "to": "Melchert_covertcompounds.txt", "weight": 1}, {"Weight": 0.9133541584014891, "from": "Hecker_1978b_OrNS47_tib\u0027imma.txt", "to": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "weight": 1}, {"Weight": 0.9825406074523926, "from": "Hecker_1978b_OrNS47_tib\u0027imma.txt", "to": "rosen1998.txt", "weight": 1}, {"Weight": 0.9613410234451294, "from": "Hecker_1978b_OrNS47_tib\u0027imma.txt", "to": "nougayrol1960.txt", "weight": 1}, {"Weight": 0.924605906009674, "from": "Hecker_1978b_OrNS47_tib\u0027imma.txt", "to": "owen1990.txt", "weight": 1}, {"Weight": 0.9571157097816468, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "Yilmaz_2007_AMMY2006.txt", "weight": 1}, {"Weight": 0.9590573310852052, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "kuhrt1988.txt", "weight": 1}, {"Weight": 0.9430049657821656, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "weight": 1}, {"Weight": 0.9746538996696472, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "Goetze_1953b_Language29_PN.txt", "weight": 1}, {"Weight": 0.947652280330658, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "Kienast_1975_WdO8_Pfandrecht.txt", "weight": 1}, {"Weight": 0.9624447226524352, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "LewyJ_1928_ZA38_Amoriterfrage.txt", "weight": 1}, {"Weight": 0.933783769607544, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "Matous_1972_ArOr40_dialekt.txt", "weight": 1}, {"Weight": 0.9208853244781494, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "Hecker, K., G. Kryszat \u0026 L. Matous\u030c - Kappadokische Keilschrifttafeln aus den Sammlungen der Karlsuniversita\u0308t Prag. ICK 4, 1998(cut).txt", "weight": 1}, {"Weight": 0.971128523349762, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "weight": 1}, {"Weight": 0.9609681963920592, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "sjoberg_eduba.txt", "weight": 1}, {"Weight": 0.975287914276123, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "vandenhout2002.txt", "weight": 1}, {"Weight": 0.949776828289032, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "weight": 1}, {"Weight": 0.9000414609909058, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "Michel_2008_La Correspondes.txt", "weight": 1}, {"Weight": 0.9489783644676208, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "Bayram_1996_Bel229_slavery.txt", "weight": 1}, {"Weight": 0.9073694944381714, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "starke1985.txt", "weight": 1}, {"Weight": 0.9407461881637572, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "Sever_1997_ArAn3_BigicFS_amutum.txt", "weight": 1}, {"Weight": 0.9647637605667114, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "zadok1996a000.txt", "weight": 1}, {"Weight": 0.966219961643219, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "Deller_1986_JEOL25_kanwarta.txt", "weight": 1}, {"Weight": 0.936773419380188, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "Renger_2003_Mercanti_trade_market_in_ane.txt", "weight": 1}, {"Weight": 0.9616564512252808, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "Watkins_1986.txt", "weight": 1}, {"Weight": 0.9344544410705566, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "wiseman1958.txt", "weight": 1}, {"Weight": 0.965600311756134, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "richardson2004.txt", "weight": 1}, {"Weight": 0.9229851961135864, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "Kienast_1998_DellerFS_tertum.txt", "weight": 1}, {"Weight": 0.9724393486976624, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "oelsner1989.txt", "weight": 1}, {"Weight": 0.9797306060791016, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "Michel_2010_JCS62.txt", "weight": 1}, {"Weight": 0.9721729159355164, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "Tunnawi_Ritual.txt", "weight": 1}, {"Weight": 0.9534894227981568, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "Bilgic_1990_TTK10_Turkish.txt", "weight": 1}, {"Weight": 0.942955732345581, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "weight": 1}, {"Weight": 0.9562016129493712, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "Thureau-Dangin_1911_RA8_date.txt", "weight": 1}, {"Weight": 0.9108841419219972, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "weight": 1}, {"Weight": 0.9635443091392516, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "Dercksen_2005_JEOL39_Adad_king.txt", "weight": 1}, {"Weight": 0.9559093117713928, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "Michel_2007_RlA11_SadumAdal_Labua.txt", "weight": 1}, {"Weight": 0.9510539770126344, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.940008819103241, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "Gelb_1969_Ath47_capp_karkemish.txt", "weight": 1}, {"Weight": 0.9627792835235596, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.936960518360138, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "vandenhout2002d.txt", "weight": 1}, {"Weight": 0.976514220237732, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "Michel, C. - 2007_RlA11_Qattunan.txt", "weight": 1}, {"Weight": 0.9514595866203308, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "leblanc1999.txt", "weight": 1}, {"Weight": 0.9501368403434752, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.9569990634918212, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "pardee1986a.txt", "weight": 1}, {"Weight": 0.9359268546104432, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.9424934387207032, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "richards1994.txt", "weight": 1}, {"Weight": 0.9543302059173584, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.9238231778144836, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.93610018491745, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "Wartke_1995_inDiscoveries_OA_period.txt", "weight": 1}, {"Weight": 0.904163897037506, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "politics of mesha routledge.txt", "weight": 1}, {"Weight": 0.9041568636894226, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "Larsen 1979_Sumer35_earlyAssur.txt", "weight": 1}, {"Weight": 0.9224645495414734, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "long1989.txt", "weight": 1}, {"Weight": 0.9203585982322692, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.9122217297554016, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "Anatolica 28, 2002.txt", "weight": 1}, {"Weight": 0.973768949508667, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "Streck_2000_ZA90_aktennotiz.txt", "weight": 1}, {"Weight": 0.9839953780174256, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "pru3pt1000.txt", "weight": 1}, {"Weight": 0.9560051560401917, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "Melchert_mina.txt", "weight": 1}, {"Weight": 0.916301727294922, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "Matous_1981_DiakonoffFS_siegelentumer.txt", "weight": 1}, {"Weight": 0.9680802226066588, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "Cecen_1995_ArAn1_mutanu.txt", "weight": 1}, {"Weight": 0.9670786261558532, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "pru3pt1001.txt", "weight": 1}, {"Weight": 0.958181381225586, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "weight": 1}, {"Weight": 0.9652878046035768, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "zaccagnini1999.txt", "weight": 1}, {"Weight": 0.9779872298240662, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "weight": 1}, {"Weight": 0.95642352104187, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "weight": 1}, {"Weight": 0.945722997188568, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "Larsen 1989.txt", "weight": 1}, {"Weight": 0.9178151488304138, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "weishofer1996.txt", "weight": 1}, {"Weight": 0.978577733039856, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "Veenhof_1982b_JEOL27_over.txt", "weight": 1}, {"Weight": 0.9640421271324158, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.912607491016388, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "Hrozny_1928_OLZ1928_rev_Clay_BIN4.PDF.txt", "weight": 1}, {"Weight": 0.972679615020752, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "weight": 1}, {"Weight": 0.9588974714279176, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "weight": 1}, {"Weight": 0.9398170113563538, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "weight": 1}, {"Weight": 0.9268918633461, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "Melchert_covertcompounds.txt", "weight": 1}, {"Weight": 0.971165657043457, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "weight": 1}, {"Weight": 0.9110538363456726, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.9403802752494812, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.9451144337654114, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "nougayrol1960.txt", "weight": 1}, {"Weight": 0.9645401239395142, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "owen1990.txt", "weight": 1}, {"Weight": 0.9640486240386964, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "weight": 1}, {"Weight": 0.95896977186203, "from": "Lassen, Agnete - Glyptic Encounters Appendicies.txt", "to": "pardee1979-80a.txt", "weight": 1}, {"Weight": 0.9491062760353088, "from": "kuhrt1988.txt", "to": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "weight": 1}, {"Weight": 0.9473403096199036, "from": "kuhrt1988.txt", "to": "Goetze_1953b_Language29_PN.txt", "weight": 1}, {"Weight": 0.9206811785697936, "from": "kuhrt1988.txt", "to": "Kienast_1975_WdO8_Pfandrecht.txt", "weight": 1}, {"Weight": 0.951323390007019, "from": "kuhrt1988.txt", "to": "LewyJ_1928_ZA38_Amoriterfrage.txt", "weight": 1}, {"Weight": 0.9614681005477904, "from": "kuhrt1988.txt", "to": "Matous_1972_ArOr40_dialekt.txt", "weight": 1}, {"Weight": 0.9188145399093628, "from": "kuhrt1988.txt", "to": "tuplin1987.txt", "weight": 1}, {"Weight": 0.9088152050971984, "from": "kuhrt1988.txt", "to": "Sever_Cecen_1993_Bel57_soc_hist.txt", "weight": 1}, {"Weight": 0.9076064229011536, "from": "kuhrt1988.txt", "to": "Hecker, K., G. Kryszat \u0026 L. Matous\u030c - Kappadokische Keilschrifttafeln aus den Sammlungen der Karlsuniversita\u0308t Prag. ICK 4, 1998(cut).txt", "weight": 1}, {"Weight": 0.9649855494499208, "from": "kuhrt1988.txt", "to": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "weight": 1}, {"Weight": 0.9676491022109984, "from": "kuhrt1988.txt", "to": "sjoberg_eduba.txt", "weight": 1}, {"Weight": 0.9526560306549072, "from": "kuhrt1988.txt", "to": "vandenhout2002.txt", "weight": 1}, {"Weight": 0.915227711200714, "from": "kuhrt1988.txt", "to": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "weight": 1}, {"Weight": 0.9319444894790648, "from": "kuhrt1988.txt", "to": "Bayram_1996_Bel229_slavery.txt", "weight": 1}, {"Weight": 0.9428991675376892, "from": "kuhrt1988.txt", "to": "Sever_1997_ArAn3_BigicFS_amutum.txt", "weight": 1}, {"Weight": 0.9654403924942015, "from": "kuhrt1988.txt", "to": "zadok1996a000.txt", "weight": 1}, {"Weight": 0.932835578918457, "from": "kuhrt1988.txt", "to": "Deller_1986_JEOL25_kanwarta.txt", "weight": 1}, {"Weight": 0.9140942692756652, "from": "kuhrt1988.txt", "to": "sasson1981.txt", "weight": 1}, {"Weight": 0.9450741410255432, "from": "kuhrt1988.txt", "to": "Watkins_1986.txt", "weight": 1}, {"Weight": 0.9599562287330629, "from": "kuhrt1988.txt", "to": "wiseman1958.txt", "weight": 1}, {"Weight": 0.965312957763672, "from": "kuhrt1988.txt", "to": "richardson2004.txt", "weight": 1}, {"Weight": 0.9485698938369752, "from": "kuhrt1988.txt", "to": "oelsner1989.txt", "weight": 1}, {"Weight": 0.9756270051002502, "from": "kuhrt1988.txt", "to": "Michel_2010_JCS62.txt", "weight": 1}, {"Weight": 0.9774499535560608, "from": "kuhrt1988.txt", "to": "Tunnawi_Ritual.txt", "weight": 1}, {"Weight": 0.9270159602165222, "from": "kuhrt1988.txt", "to": "Bilgic_1990_TTK10_Turkish.txt", "weight": 1}, {"Weight": 0.9475224614143372, "from": "kuhrt1988.txt", "to": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "weight": 1}, {"Weight": 0.9661412835121156, "from": "kuhrt1988.txt", "to": "Thureau-Dangin_1911_RA8_date.txt", "weight": 1}, {"Weight": 0.9363481402397156, "from": "kuhrt1988.txt", "to": "Dercksen_2005_JEOL39_Adad_king.txt", "weight": 1}, {"Weight": 0.9145602583885192, "from": "kuhrt1988.txt", "to": "Michel_2007_RlA11_SadumAdal_Labua.txt", "weight": 1}, {"Weight": 0.9043814539909364, "from": "kuhrt1988.txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.9118485450744628, "from": "kuhrt1988.txt", "to": "Gelb_1969_Ath47_capp_karkemish.txt", "weight": 1}, {"Weight": 0.9411620497703552, "from": "kuhrt1988.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.9448583722114564, "from": "kuhrt1988.txt", "to": "Michel, C. - 2007_RlA11_Qattunan.txt", "weight": 1}, {"Weight": 0.9475581049919128, "from": "kuhrt1988.txt", "to": "leblanc1999.txt", "weight": 1}, {"Weight": 0.9242048263549804, "from": "kuhrt1988.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.9738141894340516, "from": "kuhrt1988.txt", "to": "pardee1986a.txt", "weight": 1}, {"Weight": 0.9455479383468628, "from": "kuhrt1988.txt", "to": "richards1994.txt", "weight": 1}, {"Weight": 0.9151890873908995, "from": "kuhrt1988.txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.9409807324409484, "from": "kuhrt1988.txt", "to": "long1989.txt", "weight": 1}, {"Weight": 0.9660946130752563, "from": "kuhrt1988.txt", "to": "Streck_2000_ZA90_aktennotiz.txt", "weight": 1}, {"Weight": 0.9658790230751038, "from": "kuhrt1988.txt", "to": "pru3pt1000.txt", "weight": 1}, {"Weight": 0.952933430671692, "from": "kuhrt1988.txt", "to": "Melchert_mina.txt", "weight": 1}, {"Weight": 0.9017177820205688, "from": "kuhrt1988.txt", "to": "Matous_1981_DiakonoffFS_siegelentumer.txt", "weight": 1}, {"Weight": 0.9447445273399352, "from": "kuhrt1988.txt", "to": "Cecen_1995_ArAn1_mutanu.txt", "weight": 1}, {"Weight": 0.9734559655189514, "from": "kuhrt1988.txt", "to": "pru3pt1001.txt", "weight": 1}, {"Weight": 0.9569877982139589, "from": "kuhrt1988.txt", "to": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "weight": 1}, {"Weight": 0.9718029499053956, "from": "kuhrt1988.txt", "to": "zaccagnini1999.txt", "weight": 1}, {"Weight": 0.9666869640350342, "from": "kuhrt1988.txt", "to": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "weight": 1}, {"Weight": 0.9517447352409364, "from": "kuhrt1988.txt", "to": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "weight": 1}, {"Weight": 0.9591044187545776, "from": "kuhrt1988.txt", "to": "Larsen 1989.txt", "weight": 1}, {"Weight": 0.9362733960151672, "from": "kuhrt1988.txt", "to": "weishofer1996.txt", "weight": 1}, {"Weight": 0.9614793658256532, "from": "kuhrt1988.txt", "to": "Veenhof_1982b_JEOL27_over.txt", "weight": 1}, {"Weight": 0.926379919052124, "from": "kuhrt1988.txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.9303691387176514, "from": "kuhrt1988.txt", "to": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "weight": 1}, {"Weight": 0.9599239826202391, "from": "kuhrt1988.txt", "to": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "weight": 1}, {"Weight": 0.9189973473548888, "from": "kuhrt1988.txt", "to": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "weight": 1}, {"Weight": 0.9592461585998536, "from": "kuhrt1988.txt", "to": "Melchert_covertcompounds.txt", "weight": 1}, {"Weight": 0.9317651987075806, "from": "kuhrt1988.txt", "to": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "weight": 1}, {"Weight": 0.9202284812927246, "from": "kuhrt1988.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.920136034488678, "from": "kuhrt1988.txt", "to": "rosen1998.txt", "weight": 1}, {"Weight": 0.961829423904419, "from": "kuhrt1988.txt", "to": "nougayrol1960.txt", "weight": 1}, {"Weight": 0.9632874727249146, "from": "kuhrt1988.txt", "to": "owen1990.txt", "weight": 1}, {"Weight": 0.9536009430885316, "from": "kuhrt1988.txt", "to": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "weight": 1}, {"Weight": 0.9226189851760864, "from": "kuhrt1988.txt", "to": "pardee1979-80a.txt", "weight": 1}, {"Weight": 0.9241364598274232, "from": "kuhrt1988.txt", "to": "Yilmaz_2007_AMMY2006.txt", "weight": 1}, {"Weight": 0.9449658989906312, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "Goetze_1953b_Language29_PN.txt", "weight": 1}, {"Weight": 0.9507728815078736, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "Kienast_1975_WdO8_Pfandrecht.txt", "weight": 1}, {"Weight": 0.9757710695266724, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "LewyJ_1928_ZA38_Amoriterfrage.txt", "weight": 1}, {"Weight": 0.9538756012916564, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "Matous_1972_ArOr40_dialekt.txt", "weight": 1}, {"Weight": 0.9133376479148864, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "tuplin1987.txt", "weight": 1}, {"Weight": 0.9137542247772216, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "Sever_Cecen_1993_Bel57_soc_hist.txt", "weight": 1}, {"Weight": 0.9662603735923768, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "weight": 1}, {"Weight": 0.9690918922424316, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "sjoberg_eduba.txt", "weight": 1}, {"Weight": 0.9229085445404052, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "vandenhout2002.txt", "weight": 1}, {"Weight": 0.9136369228363036, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "weight": 1}, {"Weight": 0.953659176826477, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "Bayram_1996_Bel229_slavery.txt", "weight": 1}, {"Weight": 0.96005517244339, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "Sever_1997_ArAn3_BigicFS_amutum.txt", "weight": 1}, {"Weight": 0.9563549757003784, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "zadok1996a000.txt", "weight": 1}, {"Weight": 0.95213383436203, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "Deller_1986_JEOL25_kanwarta.txt", "weight": 1}, {"Weight": 0.9074927568435668, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "sasson1981.txt", "weight": 1}, {"Weight": 0.9284385442733764, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "Watkins_1986.txt", "weight": 1}, {"Weight": 0.9657762050628662, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "wiseman1958.txt", "weight": 1}, {"Weight": 0.9537266492843628, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "richardson2004.txt", "weight": 1}, {"Weight": 0.92854905128479, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "Kienast_1998_DellerFS_tertum.txt", "weight": 1}, {"Weight": 0.9473645687103271, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "oelsner1989.txt", "weight": 1}, {"Weight": 0.961554229259491, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "Michel_2010_JCS62.txt", "weight": 1}, {"Weight": 0.9496110677719116, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "Tunnawi_Ritual.txt", "weight": 1}, {"Weight": 0.948828399181366, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "Bilgic_1990_TTK10_Turkish.txt", "weight": 1}, {"Weight": 0.95175701379776, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "weight": 1}, {"Weight": 0.9714975357055664, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "Thureau-Dangin_1911_RA8_date.txt", "weight": 1}, {"Weight": 0.9199920296669006, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "Dercksen_2005_JEOL39_Adad_king.txt", "weight": 1}, {"Weight": 0.902890145778656, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "Michel_2007_RlA11_SadumAdal_Labua.txt", "weight": 1}, {"Weight": 0.932239294052124, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.9294099807739258, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "Gelb_1969_Ath47_capp_karkemish.txt", "weight": 1}, {"Weight": 0.9502721428871156, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.9286453723907472, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "Michel, C. - 2007_RlA11_Qattunan.txt", "weight": 1}, {"Weight": 0.96179860830307, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "leblanc1999.txt", "weight": 1}, {"Weight": 0.9338864088058472, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.9597336649894714, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "pardee1986a.txt", "weight": 1}, {"Weight": 0.9494604468345642, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "richards1994.txt", "weight": 1}, {"Weight": 0.941532552242279, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.9256141185760498, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.9402236342430116, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "long1989.txt", "weight": 1}, {"Weight": 0.966086745262146, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "Streck_2000_ZA90_aktennotiz.txt", "weight": 1}, {"Weight": 0.9526188373565674, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "pru3pt1000.txt", "weight": 1}, {"Weight": 0.9325698018074036, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "Melchert_mina.txt", "weight": 1}, {"Weight": 0.9500909447669984, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "Matous_1981_DiakonoffFS_siegelentumer.txt", "weight": 1}, {"Weight": 0.9692754149436952, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "Cecen_1995_ArAn1_mutanu.txt", "weight": 1}, {"Weight": 0.9631192684173584, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "pru3pt1001.txt", "weight": 1}, {"Weight": 0.9758920073509216, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "weight": 1}, {"Weight": 0.968847632408142, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "zaccagnini1999.txt", "weight": 1}, {"Weight": 0.9271019697189332, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "weight": 1}, {"Weight": 0.9585928916931152, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "weight": 1}, {"Weight": 0.956006646156311, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "Larsen 1989.txt", "weight": 1}, {"Weight": 0.9389325380325316, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "weishofer1996.txt", "weight": 1}, {"Weight": 0.939305543899536, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "Veenhof_1982b_JEOL27_over.txt", "weight": 1}, {"Weight": 0.9092960953712464, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.9353339076042176, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "weight": 1}, {"Weight": 0.9636211395263672, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "weight": 1}, {"Weight": 0.9615144729614258, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "weight": 1}, {"Weight": 0.9548730850219728, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "Melchert_covertcompounds.txt", "weight": 1}, {"Weight": 0.9508641362190248, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "weight": 1}, {"Weight": 0.9173718094825744, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.9218040704727172, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "rosen1998.txt", "weight": 1}, {"Weight": 0.9411458373069764, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "nougayrol1960.txt", "weight": 1}, {"Weight": 0.9615254998207092, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "owen1990.txt", "weight": 1}, {"Weight": 0.9133718013763428, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "weight": 1}, {"Weight": 0.9154300689697266, "from": "Gu\u0308nbatti, Cahit - Die Beziehungen zwischen assyrischen Kaufleuten und anatolischen Fu\u0308rsten aus Ku\u0308ltepe. CDOG 8, 2008 125-136.txt", "to": "Yilmaz_2007_AMMY2006.txt", "weight": 1}, {"Weight": 0.9698636531829834, "from": "Goetze_1953b_Language29_PN.txt", "to": "Kienast_1975_WdO8_Pfandrecht.txt", "weight": 1}, {"Weight": 0.9199906587600708, "from": "Goetze_1953b_Language29_PN.txt", "to": "PRU 3 plates.txt", "weight": 1}, {"Weight": 0.96025550365448, "from": "Goetze_1953b_Language29_PN.txt", "to": "LewyJ_1928_ZA38_Amoriterfrage.txt", "weight": 1}, {"Weight": 0.9080052971839904, "from": "Goetze_1953b_Language29_PN.txt", "to": "Matous_1972_ArOr40_dialekt.txt", "weight": 1}, {"Weight": 0.9239465594291688, "from": "Goetze_1953b_Language29_PN.txt", "to": "Hecker, K., G. Kryszat \u0026 L. Matous\u030c - Kappadokische Keilschrifttafeln aus den Sammlungen der Karlsuniversita\u0308t Prag. ICK 4, 1998(cut).txt", "weight": 1}, {"Weight": 0.9725688099861144, "from": "Goetze_1953b_Language29_PN.txt", "to": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "weight": 1}, {"Weight": 0.9463505148887634, "from": "Goetze_1953b_Language29_PN.txt", "to": "sjoberg_eduba.txt", "weight": 1}, {"Weight": 0.9031981229782104, "from": "Goetze_1953b_Language29_PN.txt", "to": "Michel_2010_C9T9_Transport.txt", "weight": 1}, {"Weight": 0.9753924012184144, "from": "Goetze_1953b_Language29_PN.txt", "to": "vandenhout2002.txt", "weight": 1}, {"Weight": 0.9651201367378236, "from": "Goetze_1953b_Language29_PN.txt", "to": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "weight": 1}, {"Weight": 0.9166539907455444, "from": "Goetze_1953b_Language29_PN.txt", "to": "Michel_2008_La Correspondes.txt", "weight": 1}, {"Weight": 0.9646554589271544, "from": "Goetze_1953b_Language29_PN.txt", "to": "Bayram_1996_Bel229_slavery.txt", "weight": 1}, {"Weight": 0.9268515706062316, "from": "Goetze_1953b_Language29_PN.txt", "to": "starke1985.txt", "weight": 1}, {"Weight": 0.9179453253746032, "from": "Goetze_1953b_Language29_PN.txt", "to": "Sever_1997_ArAn3_BigicFS_amutum.txt", "weight": 1}, {"Weight": 0.9556994438171388, "from": "Goetze_1953b_Language29_PN.txt", "to": "zadok1996a000.txt", "weight": 1}, {"Weight": 0.9749563932418824, "from": "Goetze_1953b_Language29_PN.txt", "to": "Deller_1986_JEOL25_kanwarta.txt", "weight": 1}, {"Weight": 0.943561851978302, "from": "Goetze_1953b_Language29_PN.txt", "to": "Renger_2003_Mercanti_trade_market_in_ane.txt", "weight": 1}, {"Weight": 0.9258636832237244, "from": "Goetze_1953b_Language29_PN.txt", "to": "Watkins_1986.txt", "weight": 1}, {"Weight": 0.909407675266266, "from": "Goetze_1953b_Language29_PN.txt", "to": "wiseman1958.txt", "weight": 1}, {"Weight": 0.9033353924751282, "from": "Goetze_1953b_Language29_PN.txt", "to": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "weight": 1}, {"Weight": 0.957999050617218, "from": "Goetze_1953b_Language29_PN.txt", "to": "richardson2004.txt", "weight": 1}, {"Weight": 0.92442786693573, "from": "Goetze_1953b_Language29_PN.txt", "to": "LewyJ_1936_RHA3_chronologie.txt", "weight": 1}, {"Weight": 0.9446038603782654, "from": "Goetze_1953b_Language29_PN.txt", "to": "Kienast_1998_DellerFS_tertum.txt", "weight": 1}, {"Weight": 0.9610139727592468, "from": "Goetze_1953b_Language29_PN.txt", "to": "oelsner1989.txt", "weight": 1}, {"Weight": 0.9775859117507936, "from": "Goetze_1953b_Language29_PN.txt", "to": "Michel_2010_JCS62.txt", "weight": 1}, {"Weight": 0.9607309699058532, "from": "Goetze_1953b_Language29_PN.txt", "to": "Tunnawi_Ritual.txt", "weight": 1}, {"Weight": 0.9688109755516052, "from": "Goetze_1953b_Language29_PN.txt", "to": "Bilgic_1990_TTK10_Turkish.txt", "weight": 1}, {"Weight": 0.937730312347412, "from": "Goetze_1953b_Language29_PN.txt", "to": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "weight": 1}, {"Weight": 0.9570501446723938, "from": "Goetze_1953b_Language29_PN.txt", "to": "Thureau-Dangin_1911_RA8_date.txt", "weight": 1}, {"Weight": 0.9323716163635254, "from": "Goetze_1953b_Language29_PN.txt", "to": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "weight": 1}, {"Weight": 0.9702799320220948, "from": "Goetze_1953b_Language29_PN.txt", "to": "Dercksen_2005_JEOL39_Adad_king.txt", "weight": 1}, {"Weight": 0.9628875255584716, "from": "Goetze_1953b_Language29_PN.txt", "to": "Michel_2007_RlA11_SadumAdal_Labua.txt", "weight": 1}, {"Weight": 0.9622483253479004, "from": "Goetze_1953b_Language29_PN.txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.964358687400818, "from": "Goetze_1953b_Language29_PN.txt", "to": "Gelb_1969_Ath47_capp_karkemish.txt", "weight": 1}, {"Weight": 0.9693796634674072, "from": "Goetze_1953b_Language29_PN.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.9501243233680724, "from": "Goetze_1953b_Language29_PN.txt", "to": "vandenhout2002d.txt", "weight": 1}, {"Weight": 0.9686622023582458, "from": "Goetze_1953b_Language29_PN.txt", "to": "Michel, C. - 2007_RlA11_Qattunan.txt", "weight": 1}, {"Weight": 0.9298853278160096, "from": "Goetze_1953b_Language29_PN.txt", "to": "leblanc1999.txt", "weight": 1}, {"Weight": 0.9708751440048218, "from": "Goetze_1953b_Language29_PN.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.9334970116615297, "from": "Goetze_1953b_Language29_PN.txt", "to": "pardee1986a.txt", "weight": 1}, {"Weight": 0.9607599973678588, "from": "Goetze_1953b_Language29_PN.txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.913237690925598, "from": "Goetze_1953b_Language29_PN.txt", "to": "richards1994.txt", "weight": 1}, {"Weight": 0.9571088552474976, "from": "Goetze_1953b_Language29_PN.txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.9508591294288636, "from": "Goetze_1953b_Language29_PN.txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.9323320388793944, "from": "Goetze_1953b_Language29_PN.txt", "to": "Wartke_1995_inDiscoveries_OA_period.txt", "weight": 1}, {"Weight": 0.9195830821990968, "from": "Goetze_1953b_Language29_PN.txt", "to": "politics of mesha routledge.txt", "weight": 1}, {"Weight": 0.9400110840797424, "from": "Goetze_1953b_Language29_PN.txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.9247170090675354, "from": "Goetze_1953b_Language29_PN.txt", "to": "Anatolica 28, 2002.txt", "weight": 1}, {"Weight": 0.9586121439933776, "from": "Goetze_1953b_Language29_PN.txt", "to": "Streck_2000_ZA90_aktennotiz.txt", "weight": 1}, {"Weight": 0.9808817505836488, "from": "Goetze_1953b_Language29_PN.txt", "to": "pru3pt1000.txt", "weight": 1}, {"Weight": 0.9457340836524964, "from": "Goetze_1953b_Language29_PN.txt", "to": "Melchert_mina.txt", "weight": 1}, {"Weight": 0.9301329851150512, "from": "Goetze_1953b_Language29_PN.txt", "to": "Matous_1981_DiakonoffFS_siegelentumer.txt", "weight": 1}, {"Weight": 0.9677250981330872, "from": "Goetze_1953b_Language29_PN.txt", "to": "Cecen_1995_ArAn1_mutanu.txt", "weight": 1}, {"Weight": 0.968733847141266, "from": "Goetze_1953b_Language29_PN.txt", "to": "pru3pt1001.txt", "weight": 1}, {"Weight": 0.9495612978935242, "from": "Goetze_1953b_Language29_PN.txt", "to": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "weight": 1}, {"Weight": 0.9446636438369752, "from": "Goetze_1953b_Language29_PN.txt", "to": "zaccagnini1999.txt", "weight": 1}, {"Weight": 0.972662627696991, "from": "Goetze_1953b_Language29_PN.txt", "to": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "weight": 1}, {"Weight": 0.9582818746566772, "from": "Goetze_1953b_Language29_PN.txt", "to": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "weight": 1}, {"Weight": 0.9162848591804504, "from": "Goetze_1953b_Language29_PN.txt", "to": "Larsen 1989.txt", "weight": 1}, {"Weight": 0.9742222428321838, "from": "Goetze_1953b_Language29_PN.txt", "to": "Veenhof_1982b_JEOL27_over.txt", "weight": 1}, {"Weight": 0.960716724395752, "from": "Goetze_1953b_Language29_PN.txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.9308025240898132, "from": "Goetze_1953b_Language29_PN.txt", "to": "Hrozny_1928_OLZ1928_rev_Clay_BIN4.PDF.txt", "weight": 1}, {"Weight": 0.977404236793518, "from": "Goetze_1953b_Language29_PN.txt", "to": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "weight": 1}, {"Weight": 0.9614216685295104, "from": "Goetze_1953b_Language29_PN.txt", "to": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "weight": 1}, {"Weight": 0.9424802660942078, "from": "Goetze_1953b_Language29_PN.txt", "to": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "weight": 1}, {"Weight": 0.9135656356811525, "from": "Goetze_1953b_Language29_PN.txt", "to": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "weight": 1}, {"Weight": 0.9027324914932252, "from": "Goetze_1953b_Language29_PN.txt", "to": "Melchert_covertcompounds.txt", "weight": 1}, {"Weight": 0.9698429107666016, "from": "Goetze_1953b_Language29_PN.txt", "to": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "weight": 1}, {"Weight": 0.926125466823578, "from": "Goetze_1953b_Language29_PN.txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.9590771794319152, "from": "Goetze_1953b_Language29_PN.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.9134851098060608, "from": "Goetze_1953b_Language29_PN.txt", "to": "nougayrol1960.txt", "weight": 1}, {"Weight": 0.9597525000572203, "from": "Goetze_1953b_Language29_PN.txt", "to": "owen1990.txt", "weight": 1}, {"Weight": 0.9713720083236694, "from": "Goetze_1953b_Language29_PN.txt", "to": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "weight": 1}, {"Weight": 0.9698837399482728, "from": "Goetze_1953b_Language29_PN.txt", "to": "pardee1979-80a.txt", "weight": 1}, {"Weight": 0.9720086455345154, "from": "Goetze_1953b_Language29_PN.txt", "to": "Yilmaz_2007_AMMY2006.txt", "weight": 1}, {"Weight": 0.9398026466369628, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "Matous_1972_ArOr40_dialekt.txt", "weight": 1}, {"Weight": 0.9037185907363892, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "Hecker, K., G. Kryszat \u0026 L. Matous\u030c - Kappadokische Keilschrifttafeln aus den Sammlungen der Karlsuniversita\u0308t Prag. ICK 4, 1998(cut).txt", "weight": 1}, {"Weight": 0.9757767915725708, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "weight": 1}, {"Weight": 0.9679938554763794, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "sjoberg_eduba.txt", "weight": 1}, {"Weight": 0.9464102983474731, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "vandenhout2002.txt", "weight": 1}, {"Weight": 0.9407590627670288, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "weight": 1}, {"Weight": 0.9530300498008728, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "Bayram_1996_Bel229_slavery.txt", "weight": 1}, {"Weight": 0.9516422152519226, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "Sever_1997_ArAn3_BigicFS_amutum.txt", "weight": 1}, {"Weight": 0.9646296501159668, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "zadok1996a000.txt", "weight": 1}, {"Weight": 0.9670023322105408, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "Deller_1986_JEOL25_kanwarta.txt", "weight": 1}, {"Weight": 0.9022831320762634, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "Renger_2003_Mercanti_trade_market_in_ane.txt", "weight": 1}, {"Weight": 0.9495952129364014, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "Watkins_1986.txt", "weight": 1}, {"Weight": 0.9551523327827454, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "wiseman1958.txt", "weight": 1}, {"Weight": 0.9658451080322266, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "richardson2004.txt", "weight": 1}, {"Weight": 0.9413992166519164, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "Kienast_1998_DellerFS_tertum.txt", "weight": 1}, {"Weight": 0.9675095677375792, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "oelsner1989.txt", "weight": 1}, {"Weight": 0.9716331958770752, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "Michel_2010_JCS62.txt", "weight": 1}, {"Weight": 0.9546456336975098, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "Tunnawi_Ritual.txt", "weight": 1}, {"Weight": 0.9545201063156128, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "Bilgic_1990_TTK10_Turkish.txt", "weight": 1}, {"Weight": 0.94754958152771, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "weight": 1}, {"Weight": 0.9659530520439148, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "Thureau-Dangin_1911_RA8_date.txt", "weight": 1}, {"Weight": 0.9373834133148192, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "Dercksen_2005_JEOL39_Adad_king.txt", "weight": 1}, {"Weight": 0.9320176839828492, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "Michel_2007_RlA11_SadumAdal_Labua.txt", "weight": 1}, {"Weight": 0.9547985792160034, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.9488444328308104, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "Gelb_1969_Ath47_capp_karkemish.txt", "weight": 1}, {"Weight": 0.9655075073242188, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.9042329788208008, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "vandenhout2002d.txt", "weight": 1}, {"Weight": 0.9546349048614502, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "Michel, C. - 2007_RlA11_Qattunan.txt", "weight": 1}, {"Weight": 0.9712414145469666, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "leblanc1999.txt", "weight": 1}, {"Weight": 0.9549897909164428, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.9566314816474916, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "pardee1986a.txt", "weight": 1}, {"Weight": 0.9305064082145692, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.9454641342163086, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "richards1994.txt", "weight": 1}, {"Weight": 0.9647215008735656, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.9366637468338012, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.9297665357589722, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "long1989.txt", "weight": 1}, {"Weight": 0.9028608202934264, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.9838078618049622, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "Streck_2000_ZA90_aktennotiz.txt", "weight": 1}, {"Weight": 0.966212809085846, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "pru3pt1000.txt", "weight": 1}, {"Weight": 0.931598961353302, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "Melchert_mina.txt", "weight": 1}, {"Weight": 0.9268496632575988, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "Matous_1981_DiakonoffFS_siegelentumer.txt", "weight": 1}, {"Weight": 0.9807852506637572, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "Cecen_1995_ArAn1_mutanu.txt", "weight": 1}, {"Weight": 0.9625177383422852, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "pru3pt1001.txt", "weight": 1}, {"Weight": 0.9635449051856996, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "weight": 1}, {"Weight": 0.9568015933036804, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "zaccagnini1999.txt", "weight": 1}, {"Weight": 0.9407561421394348, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "weight": 1}, {"Weight": 0.9538002014160156, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "weight": 1}, {"Weight": 0.9537386298179626, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "Larsen 1989.txt", "weight": 1}, {"Weight": 0.9230210781097412, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "weishofer1996.txt", "weight": 1}, {"Weight": 0.9670241475105286, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "Veenhof_1982b_JEOL27_over.txt", "weight": 1}, {"Weight": 0.9305477738380432, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.914862096309662, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "Hrozny_1928_OLZ1928_rev_Clay_BIN4.PDF.txt", "weight": 1}, {"Weight": 0.9582701325416564, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "weight": 1}, {"Weight": 0.9533115029335022, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "weight": 1}, {"Weight": 0.9614990949630736, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "weight": 1}, {"Weight": 0.9390578269958496, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "Melchert_covertcompounds.txt", "weight": 1}, {"Weight": 0.968147337436676, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "weight": 1}, {"Weight": 0.9255542159080504, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.9095643758773804, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "rosen1998.txt", "weight": 1}, {"Weight": 0.9400516152381896, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "nougayrol1960.txt", "weight": 1}, {"Weight": 0.9566282033920288, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "owen1990.txt", "weight": 1}, {"Weight": 0.9407804608345032, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "weight": 1}, {"Weight": 0.9358220100402832, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "pardee1979-80a.txt", "weight": 1}, {"Weight": 0.932157576084137, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "Yilmaz_2007_AMMY2006.txt", "weight": 1}, {"Weight": 0.9589627981185912, "from": "LewyJ_1928_ZA38_Amoriterfrage.txt", "to": "Kienast_1975_WdO8_Pfandrecht.txt", "weight": 1}, {"Weight": 0.9758215546607972, "from": "Matous_1972_ArOr40_dialekt.txt", "to": "tuplin1987.txt", "weight": 1}, {"Weight": 0.9600489139556884, "from": "Matous_1972_ArOr40_dialekt.txt", "to": "Sever_Cecen_1993_Bel57_soc_hist.txt", "weight": 1}, {"Weight": 0.9448166489601136, "from": "Matous_1972_ArOr40_dialekt.txt", "to": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "weight": 1}, {"Weight": 0.9770321249961852, "from": "Matous_1972_ArOr40_dialekt.txt", "to": "sjoberg_eduba.txt", "weight": 1}, {"Weight": 0.91991525888443, "from": "Matous_1972_ArOr40_dialekt.txt", "to": "Bayram_1996_Bel229_slavery.txt", "weight": 1}, {"Weight": 0.9794584512710572, "from": "Matous_1972_ArOr40_dialekt.txt", "to": "Sever_1997_ArAn3_BigicFS_amutum.txt", "weight": 1}, {"Weight": 0.963689386844635, "from": "Matous_1972_ArOr40_dialekt.txt", "to": "zadok1996a000.txt", "weight": 1}, {"Weight": 0.9086452722549438, "from": "Matous_1972_ArOr40_dialekt.txt", "to": "Deller_1986_JEOL25_kanwarta.txt", "weight": 1}, {"Weight": 0.9744859933853148, "from": "Matous_1972_ArOr40_dialekt.txt", "to": "sasson1981.txt", "weight": 1}, {"Weight": 0.9439241886138916, "from": "Matous_1972_ArOr40_dialekt.txt", "to": "Watkins_1986.txt", "weight": 1}, {"Weight": 0.9808418154716492, "from": "Matous_1972_ArOr40_dialekt.txt", "to": "wiseman1958.txt", "weight": 1}, {"Weight": 0.9434757232666016, "from": "Matous_1972_ArOr40_dialekt.txt", "to": "richardson2004.txt", "weight": 1}, {"Weight": 0.9284066557884216, "from": "Matous_1972_ArOr40_dialekt.txt", "to": "oelsner1989.txt", "weight": 1}, {"Weight": 0.944741666316986, "from": "Matous_1972_ArOr40_dialekt.txt", "to": "Michel_2010_JCS62.txt", "weight": 1}, {"Weight": 0.9254233241081238, "from": "Matous_1972_ArOr40_dialekt.txt", "to": "mosca1987.txt", "weight": 1}, {"Weight": 0.9647632241249084, "from": "Matous_1972_ArOr40_dialekt.txt", "to": "Tunnawi_Ritual.txt", "weight": 1}, {"Weight": 0.9015762209892272, "from": "Matous_1972_ArOr40_dialekt.txt", "to": "Bilgic_1990_TTK10_Turkish.txt", "weight": 1}, {"Weight": 0.934004008769989, "from": "Matous_1972_ArOr40_dialekt.txt", "to": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "weight": 1}, {"Weight": 0.956859290599823, "from": "Matous_1972_ArOr40_dialekt.txt", "to": "Thureau-Dangin_1911_RA8_date.txt", "weight": 1}, {"Weight": 0.9113900065422058, "from": "Matous_1972_ArOr40_dialekt.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.9148845672607422, "from": "Matous_1972_ArOr40_dialekt.txt", "to": "Michel, C. - 2007_RlA11_Qattunan.txt", "weight": 1}, {"Weight": 0.9584619998931884, "from": "Matous_1972_ArOr40_dialekt.txt", "to": "leblanc1999.txt", "weight": 1}, {"Weight": 0.987769901752472, "from": "Matous_1972_ArOr40_dialekt.txt", "to": "pardee1986a.txt", "weight": 1}, {"Weight": 0.972306489944458, "from": "Matous_1972_ArOr40_dialekt.txt", "to": "richards1994.txt", "weight": 1}, {"Weight": 0.9820746779441832, "from": "Matous_1972_ArOr40_dialekt.txt", "to": "long1989.txt", "weight": 1}, {"Weight": 0.9591707587242126, "from": "Matous_1972_ArOr40_dialekt.txt", "to": "Streck_2000_ZA90_aktennotiz.txt", "weight": 1}, {"Weight": 0.9400181770324708, "from": "Matous_1972_ArOr40_dialekt.txt", "to": "pru3pt1000.txt", "weight": 1}, {"Weight": 0.9390916228294371, "from": "Matous_1972_ArOr40_dialekt.txt", "to": "Melchert_mina.txt", "weight": 1}, {"Weight": 0.9294084310531616, "from": "Matous_1972_ArOr40_dialekt.txt", "to": "Cecen_1995_ArAn1_mutanu.txt", "weight": 1}, {"Weight": 0.9483789801597596, "from": "Matous_1972_ArOr40_dialekt.txt", "to": "pru3pt1001.txt", "weight": 1}, {"Weight": 0.9647296071052552, "from": "Matous_1972_ArOr40_dialekt.txt", "to": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "weight": 1}, {"Weight": 0.9766282439231871, "from": "Matous_1972_ArOr40_dialekt.txt", "to": "zaccagnini1999.txt", "weight": 1}, {"Weight": 0.9277582168579102, "from": "Matous_1972_ArOr40_dialekt.txt", "to": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "weight": 1}, {"Weight": 0.947727620601654, "from": "Matous_1972_ArOr40_dialekt.txt", "to": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "weight": 1}, {"Weight": 0.9692749381065368, "from": "Matous_1972_ArOr40_dialekt.txt", "to": "Larsen 1989.txt", "weight": 1}, {"Weight": 0.9840510487556458, "from": "Matous_1972_ArOr40_dialekt.txt", "to": "weishofer1996.txt", "weight": 1}, {"Weight": 0.924871563911438, "from": "Matous_1972_ArOr40_dialekt.txt", "to": "Veenhof_1982b_JEOL27_over.txt", "weight": 1}, {"Weight": 0.9466813802719116, "from": "Matous_1972_ArOr40_dialekt.txt", "to": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "weight": 1}, {"Weight": 0.9170255661010742, "from": "Matous_1972_ArOr40_dialekt.txt", "to": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "weight": 1}, {"Weight": 0.9930731058120728, "from": "Matous_1972_ArOr40_dialekt.txt", "to": "Melchert_covertcompounds.txt", "weight": 1}, {"Weight": 0.9089000821113586, "from": "Matous_1972_ArOr40_dialekt.txt", "to": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "weight": 1}, {"Weight": 0.9704575538635254, "from": "Matous_1972_ArOr40_dialekt.txt", "to": "rosen1998.txt", "weight": 1}, {"Weight": 0.9757410883903505, "from": "Matous_1972_ArOr40_dialekt.txt", "to": "nougayrol1960.txt", "weight": 1}, {"Weight": 0.9552772641181946, "from": "Matous_1972_ArOr40_dialekt.txt", "to": "owen1990.txt", "weight": 1}, {"Weight": 0.9701915979385376, "from": "tuplin1987.txt", "to": "Sever_Cecen_1993_Bel57_soc_hist.txt", "weight": 1}, {"Weight": 0.9454710483551024, "from": "tuplin1987.txt", "to": "sjoberg_eduba.txt", "weight": 1}, {"Weight": 0.9628008604049684, "from": "tuplin1987.txt", "to": "Sever_1997_ArAn3_BigicFS_amutum.txt", "weight": 1}, {"Weight": 0.9279677271842957, "from": "tuplin1987.txt", "to": "zadok1996a000.txt", "weight": 1}, {"Weight": 0.9957019090652466, "from": "tuplin1987.txt", "to": "sasson1981.txt", "weight": 1}, {"Weight": 0.9136783480644226, "from": "tuplin1987.txt", "to": "Watkins_1986.txt", "weight": 1}, {"Weight": 0.9563542604446412, "from": "tuplin1987.txt", "to": "wiseman1958.txt", "weight": 1}, {"Weight": 0.969527781009674, "from": "tuplin1987.txt", "to": "mosca1987.txt", "weight": 1}, {"Weight": 0.9225640892982484, "from": "tuplin1987.txt", "to": "Tunnawi_Ritual.txt", "weight": 1}, {"Weight": 0.9059168100357056, "from": "tuplin1987.txt", "to": "Thureau-Dangin_1911_RA8_date.txt", "weight": 1}, {"Weight": 0.934198796749115, "from": "tuplin1987.txt", "to": "leblanc1999.txt", "weight": 1}, {"Weight": 0.9656782746315002, "from": "tuplin1987.txt", "to": "pardee1986a.txt", "weight": 1}, {"Weight": 0.9605900645256042, "from": "tuplin1987.txt", "to": "richards1994.txt", "weight": 1}, {"Weight": 0.9808169007301332, "from": "tuplin1987.txt", "to": "long1989.txt", "weight": 1}, {"Weight": 0.9227082133293152, "from": "tuplin1987.txt", "to": "Streck_2000_ZA90_aktennotiz.txt", "weight": 1}, {"Weight": 0.9004607200622559, "from": "tuplin1987.txt", "to": "pru3pt1001.txt", "weight": 1}, {"Weight": 0.9216873645782472, "from": "tuplin1987.txt", "to": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "weight": 1}, {"Weight": 0.9475521445274352, "from": "tuplin1987.txt", "to": "zaccagnini1999.txt", "weight": 1}, {"Weight": 0.9535766243934632, "from": "tuplin1987.txt", "to": "Larsen 1989.txt", "weight": 1}, {"Weight": 0.984100341796875, "from": "tuplin1987.txt", "to": "weishofer1996.txt", "weight": 1}, {"Weight": 0.980247974395752, "from": "tuplin1987.txt", "to": "Melchert_covertcompounds.txt", "weight": 1}, {"Weight": 0.9829559922218324, "from": "tuplin1987.txt", "to": "rosen1998.txt", "weight": 1}, {"Weight": 0.9594998359680176, "from": "tuplin1987.txt", "to": "nougayrol1960.txt", "weight": 1}, {"Weight": 0.914621114730835, "from": "tuplin1987.txt", "to": "owen1990.txt", "weight": 1}, {"Weight": 0.9535852074623108, "from": "Sever_Cecen_1993_Bel57_soc_hist.txt", "to": "sjoberg_eduba.txt", "weight": 1}, {"Weight": 0.968600332736969, "from": "Sever_Cecen_1993_Bel57_soc_hist.txt", "to": "Sever_1997_ArAn3_BigicFS_amutum.txt", "weight": 1}, {"Weight": 0.9370864033699036, "from": "Sever_Cecen_1993_Bel57_soc_hist.txt", "to": "zadok1996a000.txt", "weight": 1}, {"Weight": 0.9705244898796082, "from": "Sever_Cecen_1993_Bel57_soc_hist.txt", "to": "sasson1981.txt", "weight": 1}, {"Weight": 0.92216819524765, "from": "Sever_Cecen_1993_Bel57_soc_hist.txt", "to": "Watkins_1986.txt", "weight": 1}, {"Weight": 0.934073805809021, "from": "Sever_Cecen_1993_Bel57_soc_hist.txt", "to": "wiseman1958.txt", "weight": 1}, {"Weight": 0.9011507630348206, "from": "Sever_Cecen_1993_Bel57_soc_hist.txt", "to": "richardson2004.txt", "weight": 1}, {"Weight": 0.914631962776184, "from": "Sever_Cecen_1993_Bel57_soc_hist.txt", "to": "oelsner1989.txt", "weight": 1}, {"Weight": 0.9008286595344543, "from": "Sever_Cecen_1993_Bel57_soc_hist.txt", "to": "Michel_2010_JCS62.txt", "weight": 1}, {"Weight": 0.9509317874908448, "from": "Sever_Cecen_1993_Bel57_soc_hist.txt", "to": "mosca1987.txt", "weight": 1}, {"Weight": 0.9366345405578612, "from": "Sever_Cecen_1993_Bel57_soc_hist.txt", "to": "Tunnawi_Ritual.txt", "weight": 1}, {"Weight": 0.9303319454193116, "from": "Sever_Cecen_1993_Bel57_soc_hist.txt", "to": "leblanc1999.txt", "weight": 1}, {"Weight": 0.9541733860969543, "from": "Sever_Cecen_1993_Bel57_soc_hist.txt", "to": "pardee1986a.txt", "weight": 1}, {"Weight": 0.9672418832778932, "from": "Sever_Cecen_1993_Bel57_soc_hist.txt", "to": "richards1994.txt", "weight": 1}, {"Weight": 0.9746225476264954, "from": "Sever_Cecen_1993_Bel57_soc_hist.txt", "to": "long1989.txt", "weight": 1}, {"Weight": 0.920686662197113, "from": "Sever_Cecen_1993_Bel57_soc_hist.txt", "to": "Streck_2000_ZA90_aktennotiz.txt", "weight": 1}, {"Weight": 0.9253150224685668, "from": "Sever_Cecen_1993_Bel57_soc_hist.txt", "to": "Melchert_mina.txt", "weight": 1}, {"Weight": 0.9362967014312744, "from": "Sever_Cecen_1993_Bel57_soc_hist.txt", "to": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "weight": 1}, {"Weight": 0.9523850083351136, "from": "Sever_Cecen_1993_Bel57_soc_hist.txt", "to": "zaccagnini1999.txt", "weight": 1}, {"Weight": 0.9010728597640992, "from": "Sever_Cecen_1993_Bel57_soc_hist.txt", "to": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "weight": 1}, {"Weight": 0.9531413912773132, "from": "Sever_Cecen_1993_Bel57_soc_hist.txt", "to": "Larsen 1989.txt", "weight": 1}, {"Weight": 0.9784756898880004, "from": "Sever_Cecen_1993_Bel57_soc_hist.txt", "to": "weishofer1996.txt", "weight": 1}, {"Weight": 0.9014620184898376, "from": "Sever_Cecen_1993_Bel57_soc_hist.txt", "to": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "weight": 1}, {"Weight": 0.9595357775688172, "from": "Sever_Cecen_1993_Bel57_soc_hist.txt", "to": "Melchert_covertcompounds.txt", "weight": 1}, {"Weight": 0.9806589484214784, "from": "Sever_Cecen_1993_Bel57_soc_hist.txt", "to": "rosen1998.txt", "weight": 1}, {"Weight": 0.9481331706047058, "from": "Sever_Cecen_1993_Bel57_soc_hist.txt", "to": "nougayrol1960.txt", "weight": 1}, {"Weight": 0.9207826256752014, "from": "Sever_Cecen_1993_Bel57_soc_hist.txt", "to": "owen1990.txt", "weight": 1}, {"Weight": 0.965629518032074, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "sjoberg_eduba.txt", "weight": 1}, {"Weight": 0.9575576186180116, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "vandenhout2002.txt", "weight": 1}, {"Weight": 0.9313737750053406, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "weight": 1}, {"Weight": 0.956457257270813, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "Bayram_1996_Bel229_slavery.txt", "weight": 1}, {"Weight": 0.9444482326507568, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "Sever_1997_ArAn3_BigicFS_amutum.txt", "weight": 1}, {"Weight": 0.96920245885849, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "zadok1996a000.txt", "weight": 1}, {"Weight": 0.9590150117874146, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "Deller_1986_JEOL25_kanwarta.txt", "weight": 1}, {"Weight": 0.9003947973251343, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "Renger_2003_Mercanti_trade_market_in_ane.txt", "weight": 1}, {"Weight": 0.9471448659896852, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "Watkins_1986.txt", "weight": 1}, {"Weight": 0.9534705281257628, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "wiseman1958.txt", "weight": 1}, {"Weight": 0.9624521136283876, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "richardson2004.txt", "weight": 1}, {"Weight": 0.9263001084327698, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "Kienast_1998_DellerFS_tertum.txt", "weight": 1}, {"Weight": 0.9612488746643066, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "oelsner1989.txt", "weight": 1}, {"Weight": 0.9796900153160096, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "Michel_2010_JCS62.txt", "weight": 1}, {"Weight": 0.9608069062232972, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "Tunnawi_Ritual.txt", "weight": 1}, {"Weight": 0.9498727917671204, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "Bilgic_1990_TTK10_Turkish.txt", "weight": 1}, {"Weight": 0.9470494389533995, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "weight": 1}, {"Weight": 0.9712392687797546, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "Thureau-Dangin_1911_RA8_date.txt", "weight": 1}, {"Weight": 0.9421187043190002, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "Dercksen_2005_JEOL39_Adad_king.txt", "weight": 1}, {"Weight": 0.929783582687378, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "Michel_2007_RlA11_SadumAdal_Labua.txt", "weight": 1}, {"Weight": 0.9377031922340392, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.941175639629364, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "Gelb_1969_Ath47_capp_karkemish.txt", "weight": 1}, {"Weight": 0.9532101154327391, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.9101310968399048, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "vandenhout2002d.txt", "weight": 1}, {"Weight": 0.9543729424476624, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "Michel, C. - 2007_RlA11_Qattunan.txt", "weight": 1}, {"Weight": 0.9574872851371764, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "leblanc1999.txt", "weight": 1}, {"Weight": 0.9410668015480042, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.9646782279014589, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "pardee1986a.txt", "weight": 1}, {"Weight": 0.9240437746047974, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.9376193881034852, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "richards1994.txt", "weight": 1}, {"Weight": 0.9445842504501344, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.9182854890823364, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.9307007193565368, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "long1989.txt", "weight": 1}, {"Weight": 0.901427686214447, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.9823529124259948, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "Streck_2000_ZA90_aktennotiz.txt", "weight": 1}, {"Weight": 0.971196174621582, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "pru3pt1000.txt", "weight": 1}, {"Weight": 0.9346328377723694, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "Melchert_mina.txt", "weight": 1}, {"Weight": 0.9109402894973756, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "Matous_1981_DiakonoffFS_siegelentumer.txt", "weight": 1}, {"Weight": 0.9649310111999512, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "Cecen_1995_ArAn1_mutanu.txt", "weight": 1}, {"Weight": 0.979659616947174, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "pru3pt1001.txt", "weight": 1}, {"Weight": 0.9618309140205384, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "weight": 1}, {"Weight": 0.9580324292182922, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "zaccagnini1999.txt", "weight": 1}, {"Weight": 0.9583908915519714, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "weight": 1}, {"Weight": 0.9550991654396056, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "weight": 1}, {"Weight": 0.9479130506515504, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "Larsen 1989.txt", "weight": 1}, {"Weight": 0.9264288544654846, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "weishofer1996.txt", "weight": 1}, {"Weight": 0.9721856117248536, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "Veenhof_1982b_JEOL27_over.txt", "weight": 1}, {"Weight": 0.9442070722579956, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.9051379561424256, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "Hrozny_1928_OLZ1928_rev_Clay_BIN4.PDF.txt", "weight": 1}, {"Weight": 0.954450249671936, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "weight": 1}, {"Weight": 0.9564754962921144, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "weight": 1}, {"Weight": 0.931573748588562, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "weight": 1}, {"Weight": 0.9431850910186768, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "Melchert_covertcompounds.txt", "weight": 1}, {"Weight": 0.9542950987815856, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "weight": 1}, {"Weight": 0.9259716272354126, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.9070499539375304, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "rosen1998.txt", "weight": 1}, {"Weight": 0.9434862732887268, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "nougayrol1960.txt", "weight": 1}, {"Weight": 0.9606651663780212, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "owen1990.txt", "weight": 1}, {"Weight": 0.9531254768371582, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "weight": 1}, {"Weight": 0.9404953122138976, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "pardee1979-80a.txt", "weight": 1}, {"Weight": 0.936225175857544, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "Yilmaz_2007_AMMY2006.txt", "weight": 1}, {"Weight": 0.9466224908828736, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "Kienast_1975_WdO8_Pfandrecht.txt", "weight": 1}, {"Weight": 0.903078317642212, "from": "Gunbatti_1997_ArAn3_BigicFS_sargon.txt", "to": "Hecker, K., G. Kryszat \u0026 L. Matous\u030c - Kappadokische Keilschrifttafeln aus den Sammlungen der Karlsuniversita\u0308t Prag. ICK 4, 1998(cut).txt", "weight": 1}, {"Weight": 0.935868799686432, "from": "sjoberg_eduba.txt", "to": "vandenhout2002.txt", "weight": 1}, {"Weight": 0.910653591156006, "from": "sjoberg_eduba.txt", "to": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "weight": 1}, {"Weight": 0.9455494284629822, "from": "sjoberg_eduba.txt", "to": "Bayram_1996_Bel229_slavery.txt", "weight": 1}, {"Weight": 0.979968249797821, "from": "sjoberg_eduba.txt", "to": "Sever_1997_ArAn3_BigicFS_amutum.txt", "weight": 1}, {"Weight": 0.9780123233795166, "from": "sjoberg_eduba.txt", "to": "zadok1996a000.txt", "weight": 1}, {"Weight": 0.9494340419769288, "from": "sjoberg_eduba.txt", "to": "Deller_1986_JEOL25_kanwarta.txt", "weight": 1}, {"Weight": 0.9411070942878724, "from": "sjoberg_eduba.txt", "to": "sasson1981.txt", "weight": 1}, {"Weight": 0.9631041884422302, "from": "sjoberg_eduba.txt", "to": "Watkins_1986.txt", "weight": 1}, {"Weight": 0.9721347093582152, "from": "sjoberg_eduba.txt", "to": "wiseman1958.txt", "weight": 1}, {"Weight": 0.97409987449646, "from": "sjoberg_eduba.txt", "to": "richardson2004.txt", "weight": 1}, {"Weight": 0.9629507660865784, "from": "sjoberg_eduba.txt", "to": "oelsner1989.txt", "weight": 1}, {"Weight": 0.969495415687561, "from": "sjoberg_eduba.txt", "to": "Michel_2010_JCS62.txt", "weight": 1}, {"Weight": 0.980573832988739, "from": "sjoberg_eduba.txt", "to": "Tunnawi_Ritual.txt", "weight": 1}, {"Weight": 0.9356310367584229, "from": "sjoberg_eduba.txt", "to": "Bilgic_1990_TTK10_Turkish.txt", "weight": 1}, {"Weight": 0.9373766183853148, "from": "sjoberg_eduba.txt", "to": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "weight": 1}, {"Weight": 0.9604746699333192, "from": "sjoberg_eduba.txt", "to": "Thureau-Dangin_1911_RA8_date.txt", "weight": 1}, {"Weight": 0.9252268075942992, "from": "sjoberg_eduba.txt", "to": "Dercksen_2005_JEOL39_Adad_king.txt", "weight": 1}, {"Weight": 0.9088067412376404, "from": "sjoberg_eduba.txt", "to": "Michel_2007_RlA11_SadumAdal_Labua.txt", "weight": 1}, {"Weight": 0.9114077687263488, "from": "sjoberg_eduba.txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.9140630960464478, "from": "sjoberg_eduba.txt", "to": "Gelb_1969_Ath47_capp_karkemish.txt", "weight": 1}, {"Weight": 0.9395660758018494, "from": "sjoberg_eduba.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.948940098285675, "from": "sjoberg_eduba.txt", "to": "Michel, C. - 2007_RlA11_Qattunan.txt", "weight": 1}, {"Weight": 0.9794442653656006, "from": "sjoberg_eduba.txt", "to": "leblanc1999.txt", "weight": 1}, {"Weight": 0.9162954092025756, "from": "sjoberg_eduba.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.9817723631858826, "from": "sjoberg_eduba.txt", "to": "pardee1986a.txt", "weight": 1}, {"Weight": 0.9786370992660522, "from": "sjoberg_eduba.txt", "to": "richards1994.txt", "weight": 1}, {"Weight": 0.9326655268669128, "from": "sjoberg_eduba.txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.9691724181175232, "from": "sjoberg_eduba.txt", "to": "long1989.txt", "weight": 1}, {"Weight": 0.978233277797699, "from": "sjoberg_eduba.txt", "to": "Streck_2000_ZA90_aktennotiz.txt", "weight": 1}, {"Weight": 0.9646514654159546, "from": "sjoberg_eduba.txt", "to": "pru3pt1000.txt", "weight": 1}, {"Weight": 0.9545745849609376, "from": "sjoberg_eduba.txt", "to": "Melchert_mina.txt", "weight": 1}, {"Weight": 0.9155534505844116, "from": "sjoberg_eduba.txt", "to": "Matous_1981_DiakonoffFS_siegelentumer.txt", "weight": 1}, {"Weight": 0.9621275663375854, "from": "sjoberg_eduba.txt", "to": "Cecen_1995_ArAn1_mutanu.txt", "weight": 1}, {"Weight": 0.9643213152885436, "from": "sjoberg_eduba.txt", "to": "pru3pt1001.txt", "weight": 1}, {"Weight": 0.9730224013328552, "from": "sjoberg_eduba.txt", "to": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "weight": 1}, {"Weight": 0.9821777939796448, "from": "sjoberg_eduba.txt", "to": "zaccagnini1999.txt", "weight": 1}, {"Weight": 0.9530192613601683, "from": "sjoberg_eduba.txt", "to": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "weight": 1}, {"Weight": 0.9575720429420472, "from": "sjoberg_eduba.txt", "to": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "weight": 1}, {"Weight": 0.975843071937561, "from": "sjoberg_eduba.txt", "to": "Larsen 1989.txt", "weight": 1}, {"Weight": 0.968731701374054, "from": "sjoberg_eduba.txt", "to": "weishofer1996.txt", "weight": 1}, {"Weight": 0.9504004716873168, "from": "sjoberg_eduba.txt", "to": "Veenhof_1982b_JEOL27_over.txt", "weight": 1}, {"Weight": 0.9256557822227478, "from": "sjoberg_eduba.txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.9448325634002686, "from": "sjoberg_eduba.txt", "to": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "weight": 1}, {"Weight": 0.9566673040390016, "from": "sjoberg_eduba.txt", "to": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "weight": 1}, {"Weight": 0.9460260272026062, "from": "sjoberg_eduba.txt", "to": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "weight": 1}, {"Weight": 0.974545419216156, "from": "sjoberg_eduba.txt", "to": "Melchert_covertcompounds.txt", "weight": 1}, {"Weight": 0.95056414604187, "from": "sjoberg_eduba.txt", "to": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "weight": 1}, {"Weight": 0.9060354232788086, "from": "sjoberg_eduba.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.955463707447052, "from": "sjoberg_eduba.txt", "to": "rosen1998.txt", "weight": 1}, {"Weight": 0.9635928273200988, "from": "sjoberg_eduba.txt", "to": "nougayrol1960.txt", "weight": 1}, {"Weight": 0.9645479917526244, "from": "sjoberg_eduba.txt", "to": "owen1990.txt", "weight": 1}, {"Weight": 0.9362923502922058, "from": "sjoberg_eduba.txt", "to": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "weight": 1}, {"Weight": 0.9011653661727904, "from": "sjoberg_eduba.txt", "to": "pardee1979-80a.txt", "weight": 1}, {"Weight": 0.9110633730888368, "from": "sjoberg_eduba.txt", "to": "Yilmaz_2007_AMMY2006.txt", "weight": 1}, {"Weight": 0.9338394403457642, "from": "sjoberg_eduba.txt", "to": "Kienast_1975_WdO8_Pfandrecht.txt", "weight": 1}, {"Weight": 0.9630995988845824, "from": "Sever_1997_ArAn3_BigicFS_amutum.txt", "to": "zadok1996a000.txt", "weight": 1}, {"Weight": 0.921992838382721, "from": "Sever_1997_ArAn3_BigicFS_amutum.txt", "to": "Deller_1986_JEOL25_kanwarta.txt", "weight": 1}, {"Weight": 0.9605860114097596, "from": "Sever_1997_ArAn3_BigicFS_amutum.txt", "to": "sasson1981.txt", "weight": 1}, {"Weight": 0.9577171206474304, "from": "Sever_1997_ArAn3_BigicFS_amutum.txt", "to": "Watkins_1986.txt", "weight": 1}, {"Weight": 0.971119225025177, "from": "Sever_1997_ArAn3_BigicFS_amutum.txt", "to": "wiseman1958.txt", "weight": 1}, {"Weight": 0.9445350766181946, "from": "Sever_1997_ArAn3_BigicFS_amutum.txt", "to": "richardson2004.txt", "weight": 1}, {"Weight": 0.9493833184242249, "from": "Sever_1997_ArAn3_BigicFS_amutum.txt", "to": "oelsner1989.txt", "weight": 1}, {"Weight": 0.9500919580459596, "from": "Sever_1997_ArAn3_BigicFS_amutum.txt", "to": "Michel_2010_JCS62.txt", "weight": 1}, {"Weight": 0.9277435541152954, "from": "Sever_1997_ArAn3_BigicFS_amutum.txt", "to": "mosca1987.txt", "weight": 1}, {"Weight": 0.9592583179473876, "from": "Sever_1997_ArAn3_BigicFS_amutum.txt", "to": "Tunnawi_Ritual.txt", "weight": 1}, {"Weight": 0.911048173904419, "from": "Sever_1997_ArAn3_BigicFS_amutum.txt", "to": "Bilgic_1990_TTK10_Turkish.txt", "weight": 1}, {"Weight": 0.9145469665527344, "from": "Sever_1997_ArAn3_BigicFS_amutum.txt", "to": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "weight": 1}, {"Weight": 0.949536383152008, "from": "Sever_1997_ArAn3_BigicFS_amutum.txt", "to": "Thureau-Dangin_1911_RA8_date.txt", "weight": 1}, {"Weight": 0.921186625957489, "from": "Sever_1997_ArAn3_BigicFS_amutum.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.9307019710540771, "from": "Sever_1997_ArAn3_BigicFS_amutum.txt", "to": "Michel, C. - 2007_RlA11_Qattunan.txt", "weight": 1}, {"Weight": 0.9765667915344238, "from": "Sever_1997_ArAn3_BigicFS_amutum.txt", "to": "leblanc1999.txt", "weight": 1}, {"Weight": 0.9814228415489196, "from": "Sever_1997_ArAn3_BigicFS_amutum.txt", "to": "pardee1986a.txt", "weight": 1}, {"Weight": 0.9786414504051208, "from": "Sever_1997_ArAn3_BigicFS_amutum.txt", "to": "richards1994.txt", "weight": 1}, {"Weight": 0.9022405743598938, "from": "Sever_1997_ArAn3_BigicFS_amutum.txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.9854925274848938, "from": "Sever_1997_ArAn3_BigicFS_amutum.txt", "to": "long1989.txt", "weight": 1}, {"Weight": 0.9691988229751588, "from": "Sever_1997_ArAn3_BigicFS_amutum.txt", "to": "Streck_2000_ZA90_aktennotiz.txt", "weight": 1}, {"Weight": 0.9408150315284728, "from": "Sever_1997_ArAn3_BigicFS_amutum.txt", "to": "pru3pt1000.txt", "weight": 1}, {"Weight": 0.94000506401062, "from": "Sever_1997_ArAn3_BigicFS_amutum.txt", "to": "Melchert_mina.txt", "weight": 1}, {"Weight": 0.9004177451133728, "from": "Sever_1997_ArAn3_BigicFS_amutum.txt", "to": "Matous_1981_DiakonoffFS_siegelentumer.txt", "weight": 1}, {"Weight": 0.9491310119628906, "from": "Sever_1997_ArAn3_BigicFS_amutum.txt", "to": "Cecen_1995_ArAn1_mutanu.txt", "weight": 1}, {"Weight": 0.9374185800552368, "from": "Sever_1997_ArAn3_BigicFS_amutum.txt", "to": "pru3pt1001.txt", "weight": 1}, {"Weight": 0.9666576981544496, "from": "Sever_1997_ArAn3_BigicFS_amutum.txt", "to": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "weight": 1}, {"Weight": 0.9788727164268494, "from": "Sever_1997_ArAn3_BigicFS_amutum.txt", "to": "zaccagnini1999.txt", "weight": 1}, {"Weight": 0.9248663187026978, "from": "Sever_1997_ArAn3_BigicFS_amutum.txt", "to": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "weight": 1}, {"Weight": 0.9492785334587096, "from": "Sever_1997_ArAn3_BigicFS_amutum.txt", "to": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "weight": 1}, {"Weight": 0.9764263033866882, "from": "Sever_1997_ArAn3_BigicFS_amutum.txt", "to": "Larsen 1989.txt", "weight": 1}, {"Weight": 0.9825300574302672, "from": "Sever_1997_ArAn3_BigicFS_amutum.txt", "to": "weishofer1996.txt", "weight": 1}, {"Weight": 0.9234535694122314, "from": "Sever_1997_ArAn3_BigicFS_amutum.txt", "to": "Veenhof_1982b_JEOL27_over.txt", "weight": 1}, {"Weight": 0.9185226559638976, "from": "Sever_1997_ArAn3_BigicFS_amutum.txt", "to": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "weight": 1}, {"Weight": 0.9435125589370728, "from": "Sever_1997_ArAn3_BigicFS_amutum.txt", "to": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "weight": 1}, {"Weight": 0.9357672333717346, "from": "Sever_1997_ArAn3_BigicFS_amutum.txt", "to": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "weight": 1}, {"Weight": 0.97636741399765, "from": "Sever_1997_ArAn3_BigicFS_amutum.txt", "to": "Melchert_covertcompounds.txt", "weight": 1}, {"Weight": 0.9351360201835632, "from": "Sever_1997_ArAn3_BigicFS_amutum.txt", "to": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "weight": 1}, {"Weight": 0.9746630787849426, "from": "Sever_1997_ArAn3_BigicFS_amutum.txt", "to": "rosen1998.txt", "weight": 1}, {"Weight": 0.9757665991783142, "from": "Sever_1997_ArAn3_BigicFS_amutum.txt", "to": "nougayrol1960.txt", "weight": 1}, {"Weight": 0.9495779275894164, "from": "Sever_1997_ArAn3_BigicFS_amutum.txt", "to": "owen1990.txt", "weight": 1}, {"Weight": 0.90381920337677, "from": "Sever_1997_ArAn3_BigicFS_amutum.txt", "to": "Kienast_1975_WdO8_Pfandrecht.txt", "weight": 1}, {"Weight": 0.9025928974151612, "from": "Sever_1997_ArAn3_BigicFS_amutum.txt", "to": "vandenhout2002.txt", "weight": 1}, {"Weight": 0.9208528995513916, "from": "Sever_1997_ArAn3_BigicFS_amutum.txt", "to": "Bayram_1996_Bel229_slavery.txt", "weight": 1}, {"Weight": 0.9475401043891908, "from": "zadok1996a000.txt", "to": "Deller_1986_JEOL25_kanwarta.txt", "weight": 1}, {"Weight": 0.9256002306938172, "from": "zadok1996a000.txt", "to": "sasson1981.txt", "weight": 1}, {"Weight": 0.9538720846176147, "from": "zadok1996a000.txt", "to": "Watkins_1986.txt", "weight": 1}, {"Weight": 0.9591220617294312, "from": "zadok1996a000.txt", "to": "wiseman1958.txt", "weight": 1}, {"Weight": 0.957918107509613, "from": "zadok1996a000.txt", "to": "richardson2004.txt", "weight": 1}, {"Weight": 0.9662523865699768, "from": "zadok1996a000.txt", "to": "oelsner1989.txt", "weight": 1}, {"Weight": 0.9701663255691528, "from": "zadok1996a000.txt", "to": "Michel_2010_JCS62.txt", "weight": 1}, {"Weight": 0.9732438921928406, "from": "zadok1996a000.txt", "to": "Tunnawi_Ritual.txt", "weight": 1}, {"Weight": 0.9369810819625854, "from": "zadok1996a000.txt", "to": "Bilgic_1990_TTK10_Turkish.txt", "weight": 1}, {"Weight": 0.9298129677772522, "from": "zadok1996a000.txt", "to": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "weight": 1}, {"Weight": 0.9511178135871888, "from": "zadok1996a000.txt", "to": "Thureau-Dangin_1911_RA8_date.txt", "weight": 1}, {"Weight": 0.9364141821861268, "from": "zadok1996a000.txt", "to": "Dercksen_2005_JEOL39_Adad_king.txt", "weight": 1}, {"Weight": 0.9206330180168152, "from": "zadok1996a000.txt", "to": "Michel_2007_RlA11_SadumAdal_Labua.txt", "weight": 1}, {"Weight": 0.9137194156646729, "from": "zadok1996a000.txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.9175832867622375, "from": "zadok1996a000.txt", "to": "Gelb_1969_Ath47_capp_karkemish.txt", "weight": 1}, {"Weight": 0.9481001496315002, "from": "zadok1996a000.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.9638041853904724, "from": "zadok1996a000.txt", "to": "Michel, C. - 2007_RlA11_Qattunan.txt", "weight": 1}, {"Weight": 0.9606205821037292, "from": "zadok1996a000.txt", "to": "leblanc1999.txt", "weight": 1}, {"Weight": 0.92057067155838, "from": "zadok1996a000.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.973060667514801, "from": "zadok1996a000.txt", "to": "pardee1986a.txt", "weight": 1}, {"Weight": 0.9630811810493468, "from": "zadok1996a000.txt", "to": "richards1994.txt", "weight": 1}, {"Weight": 0.9230356812477112, "from": "zadok1996a000.txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.9538167715072632, "from": "zadok1996a000.txt", "to": "long1989.txt", "weight": 1}, {"Weight": 0.9719221591949464, "from": "zadok1996a000.txt", "to": "Streck_2000_ZA90_aktennotiz.txt", "weight": 1}, {"Weight": 0.9677860140800476, "from": "zadok1996a000.txt", "to": "pru3pt1000.txt", "weight": 1}, {"Weight": 0.9514757394790648, "from": "zadok1996a000.txt", "to": "Melchert_mina.txt", "weight": 1}, {"Weight": 0.9051669239997864, "from": "zadok1996a000.txt", "to": "Matous_1981_DiakonoffFS_siegelentumer.txt", "weight": 1}, {"Weight": 0.9597971439361572, "from": "zadok1996a000.txt", "to": "Cecen_1995_ArAn1_mutanu.txt", "weight": 1}, {"Weight": 0.9636378288269044, "from": "zadok1996a000.txt", "to": "pru3pt1001.txt", "weight": 1}, {"Weight": 0.9615014791488647, "from": "zadok1996a000.txt", "to": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "weight": 1}, {"Weight": 0.9717485904693604, "from": "zadok1996a000.txt", "to": "zaccagnini1999.txt", "weight": 1}, {"Weight": 0.9581368565559388, "from": "zadok1996a000.txt", "to": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "weight": 1}, {"Weight": 0.9499142169952391, "from": "zadok1996a000.txt", "to": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "weight": 1}, {"Weight": 0.9647146463394164, "from": "zadok1996a000.txt", "to": "Larsen 1989.txt", "weight": 1}, {"Weight": 0.9545401334762572, "from": "zadok1996a000.txt", "to": "weishofer1996.txt", "weight": 1}, {"Weight": 0.9592538475990297, "from": "zadok1996a000.txt", "to": "Veenhof_1982b_JEOL27_over.txt", "weight": 1}, {"Weight": 0.9334796071052552, "from": "zadok1996a000.txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.9467114806175232, "from": "zadok1996a000.txt", "to": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "weight": 1}, {"Weight": 0.9523840546607972, "from": "zadok1996a000.txt", "to": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "weight": 1}, {"Weight": 0.9347158670425416, "from": "zadok1996a000.txt", "to": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "weight": 1}, {"Weight": 0.9640387296676636, "from": "zadok1996a000.txt", "to": "Melchert_covertcompounds.txt", "weight": 1}, {"Weight": 0.9483042359352112, "from": "zadok1996a000.txt", "to": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "weight": 1}, {"Weight": 0.9162372350692748, "from": "zadok1996a000.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.9351845383644104, "from": "zadok1996a000.txt", "to": "rosen1998.txt", "weight": 1}, {"Weight": 0.9523104429244996, "from": "zadok1996a000.txt", "to": "nougayrol1960.txt", "weight": 1}, {"Weight": 0.9702413082122804, "from": "zadok1996a000.txt", "to": "owen1990.txt", "weight": 1}, {"Weight": 0.9470319747924804, "from": "zadok1996a000.txt", "to": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "weight": 1}, {"Weight": 0.920125126838684, "from": "zadok1996a000.txt", "to": "pardee1979-80a.txt", "weight": 1}, {"Weight": 0.9238232374191284, "from": "zadok1996a000.txt", "to": "Yilmaz_2007_AMMY2006.txt", "weight": 1}, {"Weight": 0.9259045124053956, "from": "zadok1996a000.txt", "to": "Kienast_1975_WdO8_Pfandrecht.txt", "weight": 1}, {"Weight": 0.9472596645355223, "from": "zadok1996a000.txt", "to": "vandenhout2002.txt", "weight": 1}, {"Weight": 0.9167240858078004, "from": "zadok1996a000.txt", "to": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "weight": 1}, {"Weight": 0.937922179698944, "from": "zadok1996a000.txt", "to": "Bayram_1996_Bel229_slavery.txt", "weight": 1}, {"Weight": 0.9452682733535768, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "Renger_2003_Mercanti_trade_market_in_ane.txt", "weight": 1}, {"Weight": 0.9256470203399658, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "Watkins_1986.txt", "weight": 1}, {"Weight": 0.9037941694259644, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "wiseman1958.txt", "weight": 1}, {"Weight": 0.9675109386444092, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "richardson2004.txt", "weight": 1}, {"Weight": 0.9158594012260436, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "LewyJ_1936_RHA3_chronologie.txt", "weight": 1}, {"Weight": 0.9507687091827391, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "Kienast_1998_DellerFS_tertum.txt", "weight": 1}, {"Weight": 0.9570472240447998, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "oelsner1989.txt", "weight": 1}, {"Weight": 0.9666356444358826, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "Michel_2010_JCS62.txt", "weight": 1}, {"Weight": 0.9553985595703124, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "Tunnawi_Ritual.txt", "weight": 1}, {"Weight": 0.9798476099967957, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "Bilgic_1990_TTK10_Turkish.txt", "weight": 1}, {"Weight": 0.9324018955230712, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "weight": 1}, {"Weight": 0.948458731174469, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "Thureau-Dangin_1911_RA8_date.txt", "weight": 1}, {"Weight": 0.9143922328948976, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "weight": 1}, {"Weight": 0.9552031755447388, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "Dercksen_2005_JEOL39_Adad_king.txt", "weight": 1}, {"Weight": 0.9636053442955016, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "Michel_2007_RlA11_SadumAdal_Labua.txt", "weight": 1}, {"Weight": 0.9706091284751892, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.964889645576477, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "Gelb_1969_Ath47_capp_karkemish.txt", "weight": 1}, {"Weight": 0.9727309346199036, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.9396620988845824, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "vandenhout2002d.txt", "weight": 1}, {"Weight": 0.9602254629135132, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "Michel, C. - 2007_RlA11_Qattunan.txt", "weight": 1}, {"Weight": 0.9308964610099792, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "leblanc1999.txt", "weight": 1}, {"Weight": 0.9738033413887024, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.9292284846305848, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "pardee1986a.txt", "weight": 1}, {"Weight": 0.95209401845932, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.9179577827453612, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "richards1994.txt", "weight": 1}, {"Weight": 0.9699979424476624, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.9576606154441832, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.91789710521698, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "Wartke_1995_inDiscoveries_OA_period.txt", "weight": 1}, {"Weight": 0.9062786102294922, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "politics of mesha routledge.txt", "weight": 1}, {"Weight": 0.9296156764030457, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.908408522605896, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "Anatolica 28, 2002.txt", "weight": 1}, {"Weight": 0.9542142152786256, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "Streck_2000_ZA90_aktennotiz.txt", "weight": 1}, {"Weight": 0.9708966016769408, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "pru3pt1000.txt", "weight": 1}, {"Weight": 0.9395576119422911, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "Melchert_mina.txt", "weight": 1}, {"Weight": 0.9462504386901855, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "Matous_1981_DiakonoffFS_siegelentumer.txt", "weight": 1}, {"Weight": 0.9795325994491576, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "Cecen_1995_ArAn1_mutanu.txt", "weight": 1}, {"Weight": 0.949709951877594, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "pru3pt1001.txt", "weight": 1}, {"Weight": 0.9592958092689514, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "weight": 1}, {"Weight": 0.9403916597366332, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "zaccagnini1999.txt", "weight": 1}, {"Weight": 0.956146478652954, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "weight": 1}, {"Weight": 0.9639617204666138, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "weight": 1}, {"Weight": 0.9129678010940552, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "Larsen 1989.txt", "weight": 1}, {"Weight": 0.9641202092170716, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "Veenhof_1982b_JEOL27_over.txt", "weight": 1}, {"Weight": 0.9481430053710938, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.941010057926178, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "Hrozny_1928_OLZ1928_rev_Clay_BIN4.PDF.txt", "weight": 1}, {"Weight": 0.978892982006073, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "weight": 1}, {"Weight": 0.9524164795875548, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "weight": 1}, {"Weight": 0.964853286743164, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "weight": 1}, {"Weight": 0.9016804099082948, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "weight": 1}, {"Weight": 0.901780366897583, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "Melchert_covertcompounds.txt", "weight": 1}, {"Weight": 0.9736663699150084, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "weight": 1}, {"Weight": 0.9102664589881896, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.9545846581459044, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.9059630036354064, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "nougayrol1960.txt", "weight": 1}, {"Weight": 0.9481874108314514, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "owen1990.txt", "weight": 1}, {"Weight": 0.9559820294380188, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "weight": 1}, {"Weight": 0.953847348690033, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "pardee1979-80a.txt", "weight": 1}, {"Weight": 0.9658871293067932, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "Yilmaz_2007_AMMY2006.txt", "weight": 1}, {"Weight": 0.9803051948547364, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "Kienast_1975_WdO8_Pfandrecht.txt", "weight": 1}, {"Weight": 0.9075155258178712, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "PRU 3 plates.txt", "weight": 1}, {"Weight": 0.9090353846549988, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "Hecker, K., G. Kryszat \u0026 L. Matous\u030c - Kappadokische Keilschrifttafeln aus den Sammlungen der Karlsuniversita\u0308t Prag. ICK 4, 1998(cut).txt", "weight": 1}, {"Weight": 0.9601618647575378, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "vandenhout2002.txt", "weight": 1}, {"Weight": 0.962982714176178, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "weight": 1}, {"Weight": 0.9696792364120485, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "Bayram_1996_Bel229_slavery.txt", "weight": 1}, {"Weight": 0.9286640286445618, "from": "Deller_1986_JEOL25_kanwarta.txt", "to": "starke1985.txt", "weight": 1}, {"Weight": 0.9149063229560852, "from": "sasson1981.txt", "to": "Watkins_1986.txt", "weight": 1}, {"Weight": 0.953981876373291, "from": "sasson1981.txt", "to": "wiseman1958.txt", "weight": 1}, {"Weight": 0.9720274209976196, "from": "sasson1981.txt", "to": "mosca1987.txt", "weight": 1}, {"Weight": 0.9155154228210448, "from": "sasson1981.txt", "to": "Tunnawi_Ritual.txt", "weight": 1}, {"Weight": 0.9003791213035583, "from": "sasson1981.txt", "to": "Thureau-Dangin_1911_RA8_date.txt", "weight": 1}, {"Weight": 0.9302006363868712, "from": "sasson1981.txt", "to": "leblanc1999.txt", "weight": 1}, {"Weight": 0.9627174735069276, "from": "sasson1981.txt", "to": "pardee1986a.txt", "weight": 1}, {"Weight": 0.9587868452072144, "from": "sasson1981.txt", "to": "richards1994.txt", "weight": 1}, {"Weight": 0.9807193875312804, "from": "sasson1981.txt", "to": "long1989.txt", "weight": 1}, {"Weight": 0.920907199382782, "from": "sasson1981.txt", "to": "Streck_2000_ZA90_aktennotiz.txt", "weight": 1}, {"Weight": 0.9180753231048584, "from": "sasson1981.txt", "to": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "weight": 1}, {"Weight": 0.9432974457740784, "from": "sasson1981.txt", "to": "zaccagnini1999.txt", "weight": 1}, {"Weight": 0.954145073890686, "from": "sasson1981.txt", "to": "Larsen 1989.txt", "weight": 1}, {"Weight": 0.9842803478240968, "from": "sasson1981.txt", "to": "weishofer1996.txt", "weight": 1}, {"Weight": 0.977285623550415, "from": "sasson1981.txt", "to": "Melchert_covertcompounds.txt", "weight": 1}, {"Weight": 0.9833119511604308, "from": "sasson1981.txt", "to": "rosen1998.txt", "weight": 1}, {"Weight": 0.957623302936554, "from": "sasson1981.txt", "to": "nougayrol1960.txt", "weight": 1}, {"Weight": 0.90888774394989, "from": "sasson1981.txt", "to": "owen1990.txt", "weight": 1}, {"Weight": 0.9384859800338744, "from": "Watkins_1986.txt", "to": "wiseman1958.txt", "weight": 1}, {"Weight": 0.9505049586296082, "from": "Watkins_1986.txt", "to": "richardson2004.txt", "weight": 1}, {"Weight": 0.9708517789840698, "from": "Watkins_1986.txt", "to": "oelsner1989.txt", "weight": 1}, {"Weight": 0.9544909000396729, "from": "Watkins_1986.txt", "to": "Michel_2010_JCS62.txt", "weight": 1}, {"Weight": 0.9556195735931396, "from": "Watkins_1986.txt", "to": "Tunnawi_Ritual.txt", "weight": 1}, {"Weight": 0.9209223985671996, "from": "Watkins_1986.txt", "to": "Thureau-Dangin_1911_RA8_date.txt", "weight": 1}, {"Weight": 0.9026727676391602, "from": "Watkins_1986.txt", "to": "Dercksen_2005_JEOL39_Adad_king.txt", "weight": 1}, {"Weight": 0.9067756533622742, "from": "Watkins_1986.txt", "to": "Michel_2007_RlA11_SadumAdal_Labua.txt", "weight": 1}, {"Weight": 0.9188245534896852, "from": "Watkins_1986.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.950517475605011, "from": "Watkins_1986.txt", "to": "Michel, C. - 2007_RlA11_Qattunan.txt", "weight": 1}, {"Weight": 0.9755677580833436, "from": "Watkins_1986.txt", "to": "leblanc1999.txt", "weight": 1}, {"Weight": 0.9645261764526368, "from": "Watkins_1986.txt", "to": "pardee1986a.txt", "weight": 1}, {"Weight": 0.9677804708480836, "from": "Watkins_1986.txt", "to": "richards1994.txt", "weight": 1}, {"Weight": 0.9237975478172302, "from": "Watkins_1986.txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.9571177363395692, "from": "Watkins_1986.txt", "to": "long1989.txt", "weight": 1}, {"Weight": 0.971466898918152, "from": "Watkins_1986.txt", "to": "Streck_2000_ZA90_aktennotiz.txt", "weight": 1}, {"Weight": 0.9519342184066772, "from": "Watkins_1986.txt", "to": "pru3pt1000.txt", "weight": 1}, {"Weight": 0.9400914907455444, "from": "Watkins_1986.txt", "to": "Melchert_mina.txt", "weight": 1}, {"Weight": 0.9549949765205384, "from": "Watkins_1986.txt", "to": "Cecen_1995_ArAn1_mutanu.txt", "weight": 1}, {"Weight": 0.921279788017273, "from": "Watkins_1986.txt", "to": "pru3pt1001.txt", "weight": 1}, {"Weight": 0.9372646808624268, "from": "Watkins_1986.txt", "to": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "weight": 1}, {"Weight": 0.9614903926849364, "from": "Watkins_1986.txt", "to": "zaccagnini1999.txt", "weight": 1}, {"Weight": 0.945477306842804, "from": "Watkins_1986.txt", "to": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "weight": 1}, {"Weight": 0.9117925763130188, "from": "Watkins_1986.txt", "to": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "weight": 1}, {"Weight": 0.97286856174469, "from": "Watkins_1986.txt", "to": "Larsen 1989.txt", "weight": 1}, {"Weight": 0.9494794011116028, "from": "Watkins_1986.txt", "to": "weishofer1996.txt", "weight": 1}, {"Weight": 0.9471503496170044, "from": "Watkins_1986.txt", "to": "Veenhof_1982b_JEOL27_over.txt", "weight": 1}, {"Weight": 0.9293954372406006, "from": "Watkins_1986.txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.9458528757095336, "from": "Watkins_1986.txt", "to": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "weight": 1}, {"Weight": 0.9106240272521972, "from": "Watkins_1986.txt", "to": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "weight": 1}, {"Weight": 0.913197100162506, "from": "Watkins_1986.txt", "to": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "weight": 1}, {"Weight": 0.9410915970802308, "from": "Watkins_1986.txt", "to": "Melchert_covertcompounds.txt", "weight": 1}, {"Weight": 0.9492363333702089, "from": "Watkins_1986.txt", "to": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "weight": 1}, {"Weight": 0.941112756729126, "from": "Watkins_1986.txt", "to": "rosen1998.txt", "weight": 1}, {"Weight": 0.9632821083068848, "from": "Watkins_1986.txt", "to": "nougayrol1960.txt", "weight": 1}, {"Weight": 0.924669086933136, "from": "Watkins_1986.txt", "to": "owen1990.txt", "weight": 1}, {"Weight": 0.9311503171920776, "from": "Watkins_1986.txt", "to": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "weight": 1}, {"Weight": 0.9362806677818298, "from": "Watkins_1986.txt", "to": "vandenhout2002.txt", "weight": 1}, {"Weight": 0.9337816834449768, "from": "wiseman1958.txt", "to": "richardson2004.txt", "weight": 1}, {"Weight": 0.9288018941879272, "from": "wiseman1958.txt", "to": "oelsner1989.txt", "weight": 1}, {"Weight": 0.948698878288269, "from": "wiseman1958.txt", "to": "Michel_2010_JCS62.txt", "weight": 1}, {"Weight": 0.9127941727638244, "from": "wiseman1958.txt", "to": "mosca1987.txt", "weight": 1}, {"Weight": 0.9487361311912536, "from": "wiseman1958.txt", "to": "Tunnawi_Ritual.txt", "weight": 1}, {"Weight": 0.9014803767204284, "from": "wiseman1958.txt", "to": "Bilgic_1990_TTK10_Turkish.txt", "weight": 1}, {"Weight": 0.9492360353469848, "from": "wiseman1958.txt", "to": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "weight": 1}, {"Weight": 0.9656322002410888, "from": "wiseman1958.txt", "to": "Thureau-Dangin_1911_RA8_date.txt", "weight": 1}, {"Weight": 0.901265561580658, "from": "wiseman1958.txt", "to": "Dercksen_2005_JEOL39_Adad_king.txt", "weight": 1}, {"Weight": 0.9179319143295288, "from": "wiseman1958.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.9085996747016908, "from": "wiseman1958.txt", "to": "Michel, C. - 2007_RlA11_Qattunan.txt", "weight": 1}, {"Weight": 0.9662218689918518, "from": "wiseman1958.txt", "to": "leblanc1999.txt", "weight": 1}, {"Weight": 0.977392315864563, "from": "wiseman1958.txt", "to": "pardee1986a.txt", "weight": 1}, {"Weight": 0.9550751447677612, "from": "wiseman1958.txt", "to": "richards1994.txt", "weight": 1}, {"Weight": 0.9026428461074828, "from": "wiseman1958.txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.9705616235733032, "from": "wiseman1958.txt", "to": "long1989.txt", "weight": 1}, {"Weight": 0.9667052626609802, "from": "wiseman1958.txt", "to": "Streck_2000_ZA90_aktennotiz.txt", "weight": 1}, {"Weight": 0.9400445222854614, "from": "wiseman1958.txt", "to": "pru3pt1000.txt", "weight": 1}, {"Weight": 0.9176042675971984, "from": "wiseman1958.txt", "to": "Melchert_mina.txt", "weight": 1}, {"Weight": 0.9317129254341124, "from": "wiseman1958.txt", "to": "Cecen_1995_ArAn1_mutanu.txt", "weight": 1}, {"Weight": 0.9555574059486388, "from": "wiseman1958.txt", "to": "pru3pt1001.txt", "weight": 1}, {"Weight": 0.9573505520820618, "from": "wiseman1958.txt", "to": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "weight": 1}, {"Weight": 0.9726741909980774, "from": "wiseman1958.txt", "to": "zaccagnini1999.txt", "weight": 1}, {"Weight": 0.916676104068756, "from": "wiseman1958.txt", "to": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "weight": 1}, {"Weight": 0.9399052262306212, "from": "wiseman1958.txt", "to": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "weight": 1}, {"Weight": 0.969480276107788, "from": "wiseman1958.txt", "to": "Larsen 1989.txt", "weight": 1}, {"Weight": 0.9694634675979614, "from": "wiseman1958.txt", "to": "weishofer1996.txt", "weight": 1}, {"Weight": 0.9315761923789978, "from": "wiseman1958.txt", "to": "Veenhof_1982b_JEOL27_over.txt", "weight": 1}, {"Weight": 0.9474271535873412, "from": "wiseman1958.txt", "to": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "weight": 1}, {"Weight": 0.9246475100517272, "from": "wiseman1958.txt", "to": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "weight": 1}, {"Weight": 0.9782068729400636, "from": "wiseman1958.txt", "to": "Melchert_covertcompounds.txt", "weight": 1}, {"Weight": 0.912684977054596, "from": "wiseman1958.txt", "to": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "weight": 1}, {"Weight": 0.9512339234352112, "from": "wiseman1958.txt", "to": "rosen1998.txt", "weight": 1}, {"Weight": 0.961859405040741, "from": "wiseman1958.txt", "to": "nougayrol1960.txt", "weight": 1}, {"Weight": 0.9538715481758118, "from": "wiseman1958.txt", "to": "owen1990.txt", "weight": 1}, {"Weight": 0.9015744924545288, "from": "wiseman1958.txt", "to": "vandenhout2002.txt", "weight": 1}, {"Weight": 0.9236239790916444, "from": "wiseman1958.txt", "to": "Bayram_1996_Bel229_slavery.txt", "weight": 1}, {"Weight": 0.9191473722457886, "from": "richardson2004.txt", "to": "Kienast_1998_DellerFS_tertum.txt", "weight": 1}, {"Weight": 0.9608716368675232, "from": "richardson2004.txt", "to": "oelsner1989.txt", "weight": 1}, {"Weight": 0.9706210494041444, "from": "richardson2004.txt", "to": "Michel_2010_JCS62.txt", "weight": 1}, {"Weight": 0.9785398840904236, "from": "richardson2004.txt", "to": "Tunnawi_Ritual.txt", "weight": 1}, {"Weight": 0.953265368938446, "from": "richardson2004.txt", "to": "Bilgic_1990_TTK10_Turkish.txt", "weight": 1}, {"Weight": 0.9328909516334534, "from": "richardson2004.txt", "to": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "weight": 1}, {"Weight": 0.9566523432731628, "from": "richardson2004.txt", "to": "Thureau-Dangin_1911_RA8_date.txt", "weight": 1}, {"Weight": 0.9358096718788148, "from": "richardson2004.txt", "to": "Dercksen_2005_JEOL39_Adad_king.txt", "weight": 1}, {"Weight": 0.9413466453552246, "from": "richardson2004.txt", "to": "Michel_2007_RlA11_SadumAdal_Labua.txt", "weight": 1}, {"Weight": 0.9398760199546814, "from": "richardson2004.txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.9377594590187072, "from": "richardson2004.txt", "to": "Gelb_1969_Ath47_capp_karkemish.txt", "weight": 1}, {"Weight": 0.9499676823616028, "from": "richardson2004.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.919468879699707, "from": "richardson2004.txt", "to": "vandenhout2002d.txt", "weight": 1}, {"Weight": 0.9528362154960632, "from": "richardson2004.txt", "to": "Michel, C. - 2007_RlA11_Qattunan.txt", "weight": 1}, {"Weight": 0.9554632902145386, "from": "richardson2004.txt", "to": "leblanc1999.txt", "weight": 1}, {"Weight": 0.943634033203125, "from": "richardson2004.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.958957850933075, "from": "richardson2004.txt", "to": "pardee1986a.txt", "weight": 1}, {"Weight": 0.9248462319374084, "from": "richardson2004.txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.9522112011909484, "from": "richardson2004.txt", "to": "richards1994.txt", "weight": 1}, {"Weight": 0.9461963176727296, "from": "richardson2004.txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.922638177871704, "from": "richardson2004.txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.9248576760292052, "from": "richardson2004.txt", "to": "long1989.txt", "weight": 1}, {"Weight": 0.9095283150672911, "from": "richardson2004.txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.9692846536636353, "from": "richardson2004.txt", "to": "Streck_2000_ZA90_aktennotiz.txt", "weight": 1}, {"Weight": 0.9678422212600708, "from": "richardson2004.txt", "to": "pru3pt1000.txt", "weight": 1}, {"Weight": 0.9487159252166748, "from": "richardson2004.txt", "to": "Melchert_mina.txt", "weight": 1}, {"Weight": 0.9184266924858092, "from": "richardson2004.txt", "to": "Matous_1981_DiakonoffFS_siegelentumer.txt", "weight": 1}, {"Weight": 0.965806484222412, "from": "richardson2004.txt", "to": "Cecen_1995_ArAn1_mutanu.txt", "weight": 1}, {"Weight": 0.9614739418029784, "from": "richardson2004.txt", "to": "pru3pt1001.txt", "weight": 1}, {"Weight": 0.9635084867477416, "from": "richardson2004.txt", "to": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "weight": 1}, {"Weight": 0.961463451385498, "from": "richardson2004.txt", "to": "zaccagnini1999.txt", "weight": 1}, {"Weight": 0.9649243354797364, "from": "richardson2004.txt", "to": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "weight": 1}, {"Weight": 0.9627935290336608, "from": "richardson2004.txt", "to": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "weight": 1}, {"Weight": 0.9466565251350404, "from": "richardson2004.txt", "to": "Larsen 1989.txt", "weight": 1}, {"Weight": 0.921229898929596, "from": "richardson2004.txt", "to": "weishofer1996.txt", "weight": 1}, {"Weight": 0.964792788028717, "from": "richardson2004.txt", "to": "Veenhof_1982b_JEOL27_over.txt", "weight": 1}, {"Weight": 0.942060887813568, "from": "richardson2004.txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.90805584192276, "from": "richardson2004.txt", "to": "Hrozny_1928_OLZ1928_rev_Clay_BIN4.PDF.txt", "weight": 1}, {"Weight": 0.9648199081420898, "from": "richardson2004.txt", "to": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "weight": 1}, {"Weight": 0.9521535634994508, "from": "richardson2004.txt", "to": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "weight": 1}, {"Weight": 0.942455530166626, "from": "richardson2004.txt", "to": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "weight": 1}, {"Weight": 0.9390084147453308, "from": "richardson2004.txt", "to": "Melchert_covertcompounds.txt", "weight": 1}, {"Weight": 0.958581566810608, "from": "richardson2004.txt", "to": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "weight": 1}, {"Weight": 0.932774782180786, "from": "richardson2004.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.9079832434654236, "from": "richardson2004.txt", "to": "rosen1998.txt", "weight": 1}, {"Weight": 0.9423128962516784, "from": "richardson2004.txt", "to": "nougayrol1960.txt", "weight": 1}, {"Weight": 0.9538292288780212, "from": "richardson2004.txt", "to": "owen1990.txt", "weight": 1}, {"Weight": 0.9619957804679872, "from": "richardson2004.txt", "to": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "weight": 1}, {"Weight": 0.9402005672454834, "from": "richardson2004.txt", "to": "pardee1979-80a.txt", "weight": 1}, {"Weight": 0.9449653029441832, "from": "richardson2004.txt", "to": "Yilmaz_2007_AMMY2006.txt", "weight": 1}, {"Weight": 0.9525619149208068, "from": "richardson2004.txt", "to": "Kienast_1975_WdO8_Pfandrecht.txt", "weight": 1}, {"Weight": 0.9027575850486756, "from": "richardson2004.txt", "to": "Hecker, K., G. Kryszat \u0026 L. Matous\u030c - Kappadokische Keilschrifttafeln aus den Sammlungen der Karlsuniversita\u0308t Prag. ICK 4, 1998(cut).txt", "weight": 1}, {"Weight": 0.9559454321861268, "from": "richardson2004.txt", "to": "vandenhout2002.txt", "weight": 1}, {"Weight": 0.9355690479278564, "from": "richardson2004.txt", "to": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "weight": 1}, {"Weight": 0.9537037014961244, "from": "richardson2004.txt", "to": "Bayram_1996_Bel229_slavery.txt", "weight": 1}, {"Weight": 0.9068036675453186, "from": "richardson2004.txt", "to": "starke1985.txt", "weight": 1}, {"Weight": 0.9156673550605774, "from": "richardson2004.txt", "to": "Renger_2003_Mercanti_trade_market_in_ane.txt", "weight": 1}, {"Weight": 0.9710846543312072, "from": "oelsner1989.txt", "to": "Michel_2010_JCS62.txt", "weight": 1}, {"Weight": 0.9668747782707214, "from": "oelsner1989.txt", "to": "Tunnawi_Ritual.txt", "weight": 1}, {"Weight": 0.9315433502197266, "from": "oelsner1989.txt", "to": "Bilgic_1990_TTK10_Turkish.txt", "weight": 1}, {"Weight": 0.9084760546684264, "from": "oelsner1989.txt", "to": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "weight": 1}, {"Weight": 0.9331493973731996, "from": "oelsner1989.txt", "to": "Thureau-Dangin_1911_RA8_date.txt", "weight": 1}, {"Weight": 0.9356271624565125, "from": "oelsner1989.txt", "to": "Dercksen_2005_JEOL39_Adad_king.txt", "weight": 1}, {"Weight": 0.9418144822120668, "from": "oelsner1989.txt", "to": "Michel_2007_RlA11_SadumAdal_Labua.txt", "weight": 1}, {"Weight": 0.9332851767539978, "from": "oelsner1989.txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.9122704267501832, "from": "oelsner1989.txt", "to": "Gelb_1969_Ath47_capp_karkemish.txt", "weight": 1}, {"Weight": 0.9514331817626952, "from": "oelsner1989.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.9137362241744996, "from": "oelsner1989.txt", "to": "vandenhout2002d.txt", "weight": 1}, {"Weight": 0.9779912829399108, "from": "oelsner1989.txt", "to": "Michel, C. - 2007_RlA11_Qattunan.txt", "weight": 1}, {"Weight": 0.963222861289978, "from": "oelsner1989.txt", "to": "leblanc1999.txt", "weight": 1}, {"Weight": 0.9391928911209106, "from": "oelsner1989.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.9516770839691162, "from": "oelsner1989.txt", "to": "pardee1986a.txt", "weight": 1}, {"Weight": 0.914163053035736, "from": "oelsner1989.txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.9569379687309264, "from": "oelsner1989.txt", "to": "richards1994.txt", "weight": 1}, {"Weight": 0.943648397922516, "from": "oelsner1989.txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.9165339469909668, "from": "oelsner1989.txt", "to": "Wartke_1995_inDiscoveries_OA_period.txt", "weight": 1}, {"Weight": 0.9047998785972596, "from": "oelsner1989.txt", "to": "Larsen 1979_Sumer35_earlyAssur.txt", "weight": 1}, {"Weight": 0.9316575527191162, "from": "oelsner1989.txt", "to": "long1989.txt", "weight": 1}, {"Weight": 0.9739006161689758, "from": "oelsner1989.txt", "to": "Streck_2000_ZA90_aktennotiz.txt", "weight": 1}, {"Weight": 0.96672123670578, "from": "oelsner1989.txt", "to": "pru3pt1000.txt", "weight": 1}, {"Weight": 0.9595478177070618, "from": "oelsner1989.txt", "to": "Melchert_mina.txt", "weight": 1}, {"Weight": 0.976020097732544, "from": "oelsner1989.txt", "to": "Cecen_1995_ArAn1_mutanu.txt", "weight": 1}, {"Weight": 0.9453994035720824, "from": "oelsner1989.txt", "to": "pru3pt1001.txt", "weight": 1}, {"Weight": 0.9537129402160645, "from": "oelsner1989.txt", "to": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "weight": 1}, {"Weight": 0.9615323543548584, "from": "oelsner1989.txt", "to": "zaccagnini1999.txt", "weight": 1}, {"Weight": 0.9635674357414246, "from": "oelsner1989.txt", "to": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "weight": 1}, {"Weight": 0.9324886798858644, "from": "oelsner1989.txt", "to": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "weight": 1}, {"Weight": 0.960734486579895, "from": "oelsner1989.txt", "to": "Larsen 1989.txt", "weight": 1}, {"Weight": 0.9286454319953918, "from": "oelsner1989.txt", "to": "weishofer1996.txt", "weight": 1}, {"Weight": 0.9608322381973268, "from": "oelsner1989.txt", "to": "Veenhof_1982b_JEOL27_over.txt", "weight": 1}, {"Weight": 0.9562823176383972, "from": "oelsner1989.txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.9754267930984496, "from": "oelsner1989.txt", "to": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "weight": 1}, {"Weight": 0.938237965106964, "from": "oelsner1989.txt", "to": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "weight": 1}, {"Weight": 0.9355483651161194, "from": "oelsner1989.txt", "to": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "weight": 1}, {"Weight": 0.9280459880828856, "from": "oelsner1989.txt", "to": "Melchert_covertcompounds.txt", "weight": 1}, {"Weight": 0.9747827649116516, "from": "oelsner1989.txt", "to": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "weight": 1}, {"Weight": 0.9274649620056152, "from": "oelsner1989.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.915015995502472, "from": "oelsner1989.txt", "to": "rosen1998.txt", "weight": 1}, {"Weight": 0.9483150243759156, "from": "oelsner1989.txt", "to": "nougayrol1960.txt", "weight": 1}, {"Weight": 0.9529568552970886, "from": "oelsner1989.txt", "to": "owen1990.txt", "weight": 1}, {"Weight": 0.9575157761573792, "from": "oelsner1989.txt", "to": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "weight": 1}, {"Weight": 0.9434373378753662, "from": "oelsner1989.txt", "to": "pardee1979-80a.txt", "weight": 1}, {"Weight": 0.9446263313293456, "from": "oelsner1989.txt", "to": "Yilmaz_2007_AMMY2006.txt", "weight": 1}, {"Weight": 0.934352457523346, "from": "oelsner1989.txt", "to": "Kienast_1975_WdO8_Pfandrecht.txt", "weight": 1}, {"Weight": 0.9295808672904968, "from": "oelsner1989.txt", "to": "Hecker, K., G. Kryszat \u0026 L. Matous\u030c - Kappadokische Keilschrifttafeln aus den Sammlungen der Karlsuniversita\u0308t Prag. ICK 4, 1998(cut).txt", "weight": 1}, {"Weight": 0.963388442993164, "from": "oelsner1989.txt", "to": "vandenhout2002.txt", "weight": 1}, {"Weight": 0.927435576915741, "from": "oelsner1989.txt", "to": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "weight": 1}, {"Weight": 0.9183667302131652, "from": "oelsner1989.txt", "to": "Bayram_1996_Bel229_slavery.txt", "weight": 1}, {"Weight": 0.9040433764457704, "from": "oelsner1989.txt", "to": "starke1985.txt", "weight": 1}, {"Weight": 0.9040711522102356, "from": "oelsner1989.txt", "to": "Renger_2003_Mercanti_trade_market_in_ane.txt", "weight": 1}, {"Weight": 0.975783348083496, "from": "Michel_2010_JCS62.txt", "to": "Tunnawi_Ritual.txt", "weight": 1}, {"Weight": 0.9529688358306884, "from": "Michel_2010_JCS62.txt", "to": "Bilgic_1990_TTK10_Turkish.txt", "weight": 1}, {"Weight": 0.9481486678123474, "from": "Michel_2010_JCS62.txt", "to": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "weight": 1}, {"Weight": 0.9720229506492616, "from": "Michel_2010_JCS62.txt", "to": "Thureau-Dangin_1911_RA8_date.txt", "weight": 1}, {"Weight": 0.9026498198509216, "from": "Michel_2010_JCS62.txt", "to": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "weight": 1}, {"Weight": 0.9588738679885864, "from": "Michel_2010_JCS62.txt", "to": "Dercksen_2005_JEOL39_Adad_king.txt", "weight": 1}, {"Weight": 0.9511520862579346, "from": "Michel_2010_JCS62.txt", "to": "Michel_2007_RlA11_SadumAdal_Labua.txt", "weight": 1}, {"Weight": 0.9417792558670044, "from": "Michel_2010_JCS62.txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.9448654055595398, "from": "Michel_2010_JCS62.txt", "to": "Gelb_1969_Ath47_capp_karkemish.txt", "weight": 1}, {"Weight": 0.9685541987419128, "from": "Michel_2010_JCS62.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.9280314445495604, "from": "Michel_2010_JCS62.txt", "to": "vandenhout2002d.txt", "weight": 1}, {"Weight": 0.9740655422210692, "from": "Michel_2010_JCS62.txt", "to": "Michel, C. - 2007_RlA11_Qattunan.txt", "weight": 1}, {"Weight": 0.958709716796875, "from": "Michel_2010_JCS62.txt", "to": "leblanc1999.txt", "weight": 1}, {"Weight": 0.955804407596588, "from": "Michel_2010_JCS62.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.9660345911979676, "from": "Michel_2010_JCS62.txt", "to": "pardee1986a.txt", "weight": 1}, {"Weight": 0.9358084201812744, "from": "Michel_2010_JCS62.txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.944932460784912, "from": "Michel_2010_JCS62.txt", "to": "richards1994.txt", "weight": 1}, {"Weight": 0.9473431706428528, "from": "Michel_2010_JCS62.txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.9291914701461792, "from": "Michel_2010_JCS62.txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.912099301815033, "from": "Michel_2010_JCS62.txt", "to": "Wartke_1995_inDiscoveries_OA_period.txt", "weight": 1}, {"Weight": 0.933250606060028, "from": "Michel_2010_JCS62.txt", "to": "long1989.txt", "weight": 1}, {"Weight": 0.9191516041755676, "from": "Michel_2010_JCS62.txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.9049206376075744, "from": "Michel_2010_JCS62.txt", "to": "Anatolica 28, 2002.txt", "weight": 1}, {"Weight": 0.979671061038971, "from": "Michel_2010_JCS62.txt", "to": "Streck_2000_ZA90_aktennotiz.txt", "weight": 1}, {"Weight": 0.9838622212409972, "from": "Michel_2010_JCS62.txt", "to": "pru3pt1000.txt", "weight": 1}, {"Weight": 0.9582093954086304, "from": "Michel_2010_JCS62.txt", "to": "Melchert_mina.txt", "weight": 1}, {"Weight": 0.9224887490272522, "from": "Michel_2010_JCS62.txt", "to": "Matous_1981_DiakonoffFS_siegelentumer.txt", "weight": 1}, {"Weight": 0.9727839231491088, "from": "Michel_2010_JCS62.txt", "to": "Cecen_1995_ArAn1_mutanu.txt", "weight": 1}, {"Weight": 0.976944088935852, "from": "Michel_2010_JCS62.txt", "to": "pru3pt1001.txt", "weight": 1}, {"Weight": 0.9663907885551452, "from": "Michel_2010_JCS62.txt", "to": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "weight": 1}, {"Weight": 0.9688260555267334, "from": "Michel_2010_JCS62.txt", "to": "zaccagnini1999.txt", "weight": 1}, {"Weight": 0.9740537405014038, "from": "Michel_2010_JCS62.txt", "to": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "weight": 1}, {"Weight": 0.9623051285743712, "from": "Michel_2010_JCS62.txt", "to": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "weight": 1}, {"Weight": 0.9519481658935548, "from": "Michel_2010_JCS62.txt", "to": "Larsen 1989.txt", "weight": 1}, {"Weight": 0.925731599330902, "from": "Michel_2010_JCS62.txt", "to": "weishofer1996.txt", "weight": 1}, {"Weight": 0.9766477346420288, "from": "Michel_2010_JCS62.txt", "to": "Veenhof_1982b_JEOL27_over.txt", "weight": 1}, {"Weight": 0.947738766670227, "from": "Michel_2010_JCS62.txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.9028452038764954, "from": "Michel_2010_JCS62.txt", "to": "Hrozny_1928_OLZ1928_rev_Clay_BIN4.PDF.txt", "weight": 1}, {"Weight": 0.9693579077720642, "from": "Michel_2010_JCS62.txt", "to": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "weight": 1}, {"Weight": 0.9643091559410096, "from": "Michel_2010_JCS62.txt", "to": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "weight": 1}, {"Weight": 0.9432862401008606, "from": "Michel_2010_JCS62.txt", "to": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "weight": 1}, {"Weight": 0.9408716559410096, "from": "Michel_2010_JCS62.txt", "to": "Melchert_covertcompounds.txt", "weight": 1}, {"Weight": 0.9637150168418884, "from": "Michel_2010_JCS62.txt", "to": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "weight": 1}, {"Weight": 0.9068631529808044, "from": "Michel_2010_JCS62.txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.9393783211708068, "from": "Michel_2010_JCS62.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.9103652238845824, "from": "Michel_2010_JCS62.txt", "to": "rosen1998.txt", "weight": 1}, {"Weight": 0.9538499712944032, "from": "Michel_2010_JCS62.txt", "to": "nougayrol1960.txt", "weight": 1}, {"Weight": 0.9686427712440492, "from": "Michel_2010_JCS62.txt", "to": "owen1990.txt", "weight": 1}, {"Weight": 0.9687210321426392, "from": "Michel_2010_JCS62.txt", "to": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "weight": 1}, {"Weight": 0.9516236782073976, "from": "Michel_2010_JCS62.txt", "to": "pardee1979-80a.txt", "weight": 1}, {"Weight": 0.955724596977234, "from": "Michel_2010_JCS62.txt", "to": "Yilmaz_2007_AMMY2006.txt", "weight": 1}, {"Weight": 0.9534153342247008, "from": "Michel_2010_JCS62.txt", "to": "Kienast_1975_WdO8_Pfandrecht.txt", "weight": 1}, {"Weight": 0.9222896099090576, "from": "Michel_2010_JCS62.txt", "to": "Hecker, K., G. Kryszat \u0026 L. Matous\u030c - Kappadokische Keilschrifttafeln aus den Sammlungen der Karlsuniversita\u0308t Prag. ICK 4, 1998(cut).txt", "weight": 1}, {"Weight": 0.9722720980644226, "from": "Michel_2010_JCS62.txt", "to": "vandenhout2002.txt", "weight": 1}, {"Weight": 0.9494651556015016, "from": "Michel_2010_JCS62.txt", "to": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "weight": 1}, {"Weight": 0.9135871529579164, "from": "Michel_2010_JCS62.txt", "to": "Michel_2008_La Correspondes.txt", "weight": 1}, {"Weight": 0.9530348777770996, "from": "Michel_2010_JCS62.txt", "to": "Bayram_1996_Bel229_slavery.txt", "weight": 1}, {"Weight": 0.9102025032043456, "from": "Michel_2010_JCS62.txt", "to": "starke1985.txt", "weight": 1}, {"Weight": 0.9257802963256836, "from": "Michel_2010_JCS62.txt", "to": "Renger_2003_Mercanti_trade_market_in_ane.txt", "weight": 1}, {"Weight": 0.9270287156105042, "from": "Michel_2010_JCS62.txt", "to": "Kienast_1998_DellerFS_tertum.txt", "weight": 1}, {"Weight": 0.9155005812644958, "from": "mosca1987.txt", "to": "pardee1986a.txt", "weight": 1}, {"Weight": 0.9252012968063354, "from": "mosca1987.txt", "to": "richards1994.txt", "weight": 1}, {"Weight": 0.9566723108291626, "from": "mosca1987.txt", "to": "long1989.txt", "weight": 1}, {"Weight": 0.9227684736251832, "from": "mosca1987.txt", "to": "Larsen 1989.txt", "weight": 1}, {"Weight": 0.9531856775283812, "from": "mosca1987.txt", "to": "weishofer1996.txt", "weight": 1}, {"Weight": 0.9295721054077148, "from": "mosca1987.txt", "to": "Melchert_covertcompounds.txt", "weight": 1}, {"Weight": 0.974290668964386, "from": "mosca1987.txt", "to": "rosen1998.txt", "weight": 1}, {"Weight": 0.9193631410598756, "from": "mosca1987.txt", "to": "nougayrol1960.txt", "weight": 1}, {"Weight": 0.944226861000061, "from": "Tunnawi_Ritual.txt", "to": "Bilgic_1990_TTK10_Turkish.txt", "weight": 1}, {"Weight": 0.9335372447967528, "from": "Tunnawi_Ritual.txt", "to": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "weight": 1}, {"Weight": 0.9600093960762024, "from": "Tunnawi_Ritual.txt", "to": "Thureau-Dangin_1911_RA8_date.txt", "weight": 1}, {"Weight": 0.9420848488807678, "from": "Tunnawi_Ritual.txt", "to": "Dercksen_2005_JEOL39_Adad_king.txt", "weight": 1}, {"Weight": 0.9382739663124084, "from": "Tunnawi_Ritual.txt", "to": "Michel_2007_RlA11_SadumAdal_Labua.txt", "weight": 1}, {"Weight": 0.9182575941085817, "from": "Tunnawi_Ritual.txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.9238423705101012, "from": "Tunnawi_Ritual.txt", "to": "Gelb_1969_Ath47_capp_karkemish.txt", "weight": 1}, {"Weight": 0.9493393301963806, "from": "Tunnawi_Ritual.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.903972864151001, "from": "Tunnawi_Ritual.txt", "to": "vandenhout2002d.txt", "weight": 1}, {"Weight": 0.9642189145088196, "from": "Tunnawi_Ritual.txt", "to": "Michel, C. - 2007_RlA11_Qattunan.txt", "weight": 1}, {"Weight": 0.9532445073127748, "from": "Tunnawi_Ritual.txt", "to": "leblanc1999.txt", "weight": 1}, {"Weight": 0.9292083382606506, "from": "Tunnawi_Ritual.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.9750892519950868, "from": "Tunnawi_Ritual.txt", "to": "pardee1986a.txt", "weight": 1}, {"Weight": 0.9022337794303894, "from": "Tunnawi_Ritual.txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.965146005153656, "from": "Tunnawi_Ritual.txt", "to": "richards1994.txt", "weight": 1}, {"Weight": 0.9286895394325256, "from": "Tunnawi_Ritual.txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.9030105471611024, "from": "Tunnawi_Ritual.txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.9471420049667358, "from": "Tunnawi_Ritual.txt", "to": "long1989.txt", "weight": 1}, {"Weight": 0.9681844115257264, "from": "Tunnawi_Ritual.txt", "to": "Streck_2000_ZA90_aktennotiz.txt", "weight": 1}, {"Weight": 0.9760304689407348, "from": "Tunnawi_Ritual.txt", "to": "pru3pt1000.txt", "weight": 1}, {"Weight": 0.9708930850028992, "from": "Tunnawi_Ritual.txt", "to": "Melchert_mina.txt", "weight": 1}, {"Weight": 0.9174273014068604, "from": "Tunnawi_Ritual.txt", "to": "Matous_1981_DiakonoffFS_siegelentumer.txt", "weight": 1}, {"Weight": 0.9590094089508056, "from": "Tunnawi_Ritual.txt", "to": "Cecen_1995_ArAn1_mutanu.txt", "weight": 1}, {"Weight": 0.9675167798995972, "from": "Tunnawi_Ritual.txt", "to": "pru3pt1001.txt", "weight": 1}, {"Weight": 0.9712543487548828, "from": "Tunnawi_Ritual.txt", "to": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "weight": 1}, {"Weight": 0.9789928197860718, "from": "Tunnawi_Ritual.txt", "to": "zaccagnini1999.txt", "weight": 1}, {"Weight": 0.9784812927246094, "from": "Tunnawi_Ritual.txt", "to": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "weight": 1}, {"Weight": 0.9627594351768494, "from": "Tunnawi_Ritual.txt", "to": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "weight": 1}, {"Weight": 0.9590539336204528, "from": "Tunnawi_Ritual.txt", "to": "Larsen 1989.txt", "weight": 1}, {"Weight": 0.9476073384284972, "from": "Tunnawi_Ritual.txt", "to": "weishofer1996.txt", "weight": 1}, {"Weight": 0.9603941440582277, "from": "Tunnawi_Ritual.txt", "to": "Veenhof_1982b_JEOL27_over.txt", "weight": 1}, {"Weight": 0.9440008997917176, "from": "Tunnawi_Ritual.txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.9563962817192078, "from": "Tunnawi_Ritual.txt", "to": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "weight": 1}, {"Weight": 0.9645861983299256, "from": "Tunnawi_Ritual.txt", "to": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "weight": 1}, {"Weight": 0.9343872666358948, "from": "Tunnawi_Ritual.txt", "to": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "weight": 1}, {"Weight": 0.9593175649642944, "from": "Tunnawi_Ritual.txt", "to": "Melchert_covertcompounds.txt", "weight": 1}, {"Weight": 0.9534382224082948, "from": "Tunnawi_Ritual.txt", "to": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "weight": 1}, {"Weight": 0.9342269897460938, "from": "Tunnawi_Ritual.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.9308211207389832, "from": "Tunnawi_Ritual.txt", "to": "rosen1998.txt", "weight": 1}, {"Weight": 0.962045192718506, "from": "Tunnawi_Ritual.txt", "to": "nougayrol1960.txt", "weight": 1}, {"Weight": 0.974510908126831, "from": "Tunnawi_Ritual.txt", "to": "owen1990.txt", "weight": 1}, {"Weight": 0.9574825763702391, "from": "Tunnawi_Ritual.txt", "to": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "weight": 1}, {"Weight": 0.9320886731147766, "from": "Tunnawi_Ritual.txt", "to": "pardee1979-80a.txt", "weight": 1}, {"Weight": 0.938411831855774, "from": "Tunnawi_Ritual.txt", "to": "Yilmaz_2007_AMMY2006.txt", "weight": 1}, {"Weight": 0.938317596912384, "from": "Tunnawi_Ritual.txt", "to": "Kienast_1975_WdO8_Pfandrecht.txt", "weight": 1}, {"Weight": 0.9018160700798036, "from": "Tunnawi_Ritual.txt", "to": "Hecker, K., G. Kryszat \u0026 L. Matous\u030c - Kappadokische Keilschrifttafeln aus den Sammlungen der Karlsuniversita\u0308t Prag. ICK 4, 1998(cut).txt", "weight": 1}, {"Weight": 0.9553837180137634, "from": "Tunnawi_Ritual.txt", "to": "vandenhout2002.txt", "weight": 1}, {"Weight": 0.925572633743286, "from": "Tunnawi_Ritual.txt", "to": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "weight": 1}, {"Weight": 0.9442936778068542, "from": "Tunnawi_Ritual.txt", "to": "Bayram_1996_Bel229_slavery.txt", "weight": 1}, {"Weight": 0.9048782587051392, "from": "Tunnawi_Ritual.txt", "to": "starke1985.txt", "weight": 1}, {"Weight": 0.9004378914833069, "from": "Tunnawi_Ritual.txt", "to": "Renger_2003_Mercanti_trade_market_in_ane.txt", "weight": 1}, {"Weight": 0.946032166481018, "from": "Thureau-Dangin_1911_RA8_date.txt", "to": "Dercksen_2005_JEOL39_Adad_king.txt", "weight": 1}, {"Weight": 0.9231825470924376, "from": "Thureau-Dangin_1911_RA8_date.txt", "to": "Michel_2007_RlA11_SadumAdal_Labua.txt", "weight": 1}, {"Weight": 0.9370487332344056, "from": "Thureau-Dangin_1911_RA8_date.txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.9556233286857604, "from": "Thureau-Dangin_1911_RA8_date.txt", "to": "Gelb_1969_Ath47_capp_karkemish.txt", "weight": 1}, {"Weight": 0.9585752487182616, "from": "Thureau-Dangin_1911_RA8_date.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.9282112121582032, "from": "Thureau-Dangin_1911_RA8_date.txt", "to": "Michel, C. - 2007_RlA11_Qattunan.txt", "weight": 1}, {"Weight": 0.9456191062927246, "from": "Thureau-Dangin_1911_RA8_date.txt", "to": "leblanc1999.txt", "weight": 1}, {"Weight": 0.9399074912071228, "from": "Thureau-Dangin_1911_RA8_date.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.9653037190437316, "from": "Thureau-Dangin_1911_RA8_date.txt", "to": "pardee1986a.txt", "weight": 1}, {"Weight": 0.9187918305397034, "from": "Thureau-Dangin_1911_RA8_date.txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.9310399889945984, "from": "Thureau-Dangin_1911_RA8_date.txt", "to": "richards1994.txt", "weight": 1}, {"Weight": 0.9412267208099364, "from": "Thureau-Dangin_1911_RA8_date.txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.9375540614128112, "from": "Thureau-Dangin_1911_RA8_date.txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.9279168844223022, "from": "Thureau-Dangin_1911_RA8_date.txt", "to": "long1989.txt", "weight": 1}, {"Weight": 0.9678932428359984, "from": "Thureau-Dangin_1911_RA8_date.txt", "to": "Streck_2000_ZA90_aktennotiz.txt", "weight": 1}, {"Weight": 0.967142939567566, "from": "Thureau-Dangin_1911_RA8_date.txt", "to": "pru3pt1000.txt", "weight": 1}, {"Weight": 0.9288060069084167, "from": "Thureau-Dangin_1911_RA8_date.txt", "to": "Melchert_mina.txt", "weight": 1}, {"Weight": 0.9455437064170836, "from": "Thureau-Dangin_1911_RA8_date.txt", "to": "Matous_1981_DiakonoffFS_siegelentumer.txt", "weight": 1}, {"Weight": 0.9543733596801758, "from": "Thureau-Dangin_1911_RA8_date.txt", "to": "Cecen_1995_ArAn1_mutanu.txt", "weight": 1}, {"Weight": 0.9812750220298768, "from": "Thureau-Dangin_1911_RA8_date.txt", "to": "pru3pt1001.txt", "weight": 1}, {"Weight": 0.9682461619377136, "from": "Thureau-Dangin_1911_RA8_date.txt", "to": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "weight": 1}, {"Weight": 0.9684610962867736, "from": "Thureau-Dangin_1911_RA8_date.txt", "to": "zaccagnini1999.txt", "weight": 1}, {"Weight": 0.944840371608734, "from": "Thureau-Dangin_1911_RA8_date.txt", "to": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "weight": 1}, {"Weight": 0.9754937291145324, "from": "Thureau-Dangin_1911_RA8_date.txt", "to": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "weight": 1}, {"Weight": 0.9404984712600708, "from": "Thureau-Dangin_1911_RA8_date.txt", "to": "Larsen 1989.txt", "weight": 1}, {"Weight": 0.9235362410545348, "from": "Thureau-Dangin_1911_RA8_date.txt", "to": "weishofer1996.txt", "weight": 1}, {"Weight": 0.96084725856781, "from": "Thureau-Dangin_1911_RA8_date.txt", "to": "Veenhof_1982b_JEOL27_over.txt", "weight": 1}, {"Weight": 0.9118231534957886, "from": "Thureau-Dangin_1911_RA8_date.txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.9226582050323486, "from": "Thureau-Dangin_1911_RA8_date.txt", "to": "Hrozny_1928_OLZ1928_rev_Clay_BIN4.PDF.txt", "weight": 1}, {"Weight": 0.931311309337616, "from": "Thureau-Dangin_1911_RA8_date.txt", "to": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "weight": 1}, {"Weight": 0.9805058240890504, "from": "Thureau-Dangin_1911_RA8_date.txt", "to": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "weight": 1}, {"Weight": 0.9510019421577454, "from": "Thureau-Dangin_1911_RA8_date.txt", "to": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "weight": 1}, {"Weight": 0.9487889409065248, "from": "Thureau-Dangin_1911_RA8_date.txt", "to": "Melchert_covertcompounds.txt", "weight": 1}, {"Weight": 0.9402807950973512, "from": "Thureau-Dangin_1911_RA8_date.txt", "to": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "weight": 1}, {"Weight": 0.9299098253250122, "from": "Thureau-Dangin_1911_RA8_date.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.9035929441452026, "from": "Thureau-Dangin_1911_RA8_date.txt", "to": "rosen1998.txt", "weight": 1}, {"Weight": 0.947982907295227, "from": "Thureau-Dangin_1911_RA8_date.txt", "to": "nougayrol1960.txt", "weight": 1}, {"Weight": 0.9712597131729126, "from": "Thureau-Dangin_1911_RA8_date.txt", "to": "owen1990.txt", "weight": 1}, {"Weight": 0.9237404465675354, "from": "Thureau-Dangin_1911_RA8_date.txt", "to": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "weight": 1}, {"Weight": 0.9228174686431884, "from": "Thureau-Dangin_1911_RA8_date.txt", "to": "pardee1979-80a.txt", "weight": 1}, {"Weight": 0.9224808812141418, "from": "Thureau-Dangin_1911_RA8_date.txt", "to": "Yilmaz_2007_AMMY2006.txt", "weight": 1}, {"Weight": 0.9524763226509094, "from": "Thureau-Dangin_1911_RA8_date.txt", "to": "Kienast_1975_WdO8_Pfandrecht.txt", "weight": 1}, {"Weight": 0.9384542107582092, "from": "Thureau-Dangin_1911_RA8_date.txt", "to": "vandenhout2002.txt", "weight": 1}, {"Weight": 0.931247353553772, "from": "Thureau-Dangin_1911_RA8_date.txt", "to": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "weight": 1}, {"Weight": 0.9700655341148376, "from": "Thureau-Dangin_1911_RA8_date.txt", "to": "Bayram_1996_Bel229_slavery.txt", "weight": 1}, {"Weight": 0.9393275380134584, "from": "Thureau-Dangin_1911_RA8_date.txt", "to": "Kienast_1998_DellerFS_tertum.txt", "weight": 1}, {"Weight": 0.9567173719406128, "from": "Thureau-Dangin_1911_RA8_date.txt", "to": "Bilgic_1990_TTK10_Turkish.txt", "weight": 1}, {"Weight": 0.9772027134895324, "from": "Thureau-Dangin_1911_RA8_date.txt", "to": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "weight": 1}, {"Weight": 0.9379447102546692, "from": "Michel, C. - 2007_RlA11_Qattunan.txt", "to": "leblanc1999.txt", "weight": 1}, {"Weight": 0.9409645795822144, "from": "Michel, C. - 2007_RlA11_Qattunan.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.9422541856765748, "from": "Michel, C. - 2007_RlA11_Qattunan.txt", "to": "pardee1986a.txt", "weight": 1}, {"Weight": 0.9200761318206788, "from": "Michel, C. - 2007_RlA11_Qattunan.txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.9358595609664916, "from": "Michel, C. - 2007_RlA11_Qattunan.txt", "to": "richards1994.txt", "weight": 1}, {"Weight": 0.9303702116012572, "from": "Michel, C. - 2007_RlA11_Qattunan.txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.9033803343772888, "from": "Michel, C. - 2007_RlA11_Qattunan.txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.9269990921020508, "from": "Michel, C. - 2007_RlA11_Qattunan.txt", "to": "Wartke_1995_inDiscoveries_OA_period.txt", "weight": 1}, {"Weight": 0.9022616147994996, "from": "Michel, C. - 2007_RlA11_Qattunan.txt", "to": "Larsen 1979_Sumer35_earlyAssur.txt", "weight": 1}, {"Weight": 0.9115622639656068, "from": "Michel, C. - 2007_RlA11_Qattunan.txt", "to": "long1989.txt", "weight": 1}, {"Weight": 0.9126373529434204, "from": "Michel, C. - 2007_RlA11_Qattunan.txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.9095948934555054, "from": "Michel, C. - 2007_RlA11_Qattunan.txt", "to": "Anatolica 28, 2002.txt", "weight": 1}, {"Weight": 0.9617940187454224, "from": "Michel, C. - 2007_RlA11_Qattunan.txt", "to": "Streck_2000_ZA90_aktennotiz.txt", "weight": 1}, {"Weight": 0.9692886471748352, "from": "Michel, C. - 2007_RlA11_Qattunan.txt", "to": "pru3pt1000.txt", "weight": 1}, {"Weight": 0.9559749364852904, "from": "Michel, C. - 2007_RlA11_Qattunan.txt", "to": "Melchert_mina.txt", "weight": 1}, {"Weight": 0.9659820199012756, "from": "Michel, C. - 2007_RlA11_Qattunan.txt", "to": "Cecen_1995_ArAn1_mutanu.txt", "weight": 1}, {"Weight": 0.9458516836166382, "from": "Michel, C. - 2007_RlA11_Qattunan.txt", "to": "pru3pt1001.txt", "weight": 1}, {"Weight": 0.94393652677536, "from": "Michel, C. - 2007_RlA11_Qattunan.txt", "to": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "weight": 1}, {"Weight": 0.94657701253891, "from": "Michel, C. - 2007_RlA11_Qattunan.txt", "to": "zaccagnini1999.txt", "weight": 1}, {"Weight": 0.9715521931648254, "from": "Michel, C. - 2007_RlA11_Qattunan.txt", "to": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "weight": 1}, {"Weight": 0.9363561868667604, "from": "Michel, C. - 2007_RlA11_Qattunan.txt", "to": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "weight": 1}, {"Weight": 0.93824964761734, "from": "Michel, C. - 2007_RlA11_Qattunan.txt", "to": "Larsen 1989.txt", "weight": 1}, {"Weight": 0.907378911972046, "from": "Michel, C. - 2007_RlA11_Qattunan.txt", "to": "weishofer1996.txt", "weight": 1}, {"Weight": 0.96365624666214, "from": "Michel, C. - 2007_RlA11_Qattunan.txt", "to": "Veenhof_1982b_JEOL27_over.txt", "weight": 1}, {"Weight": 0.951987326145172, "from": "Michel, C. - 2007_RlA11_Qattunan.txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.9733364582061768, "from": "Michel, C. - 2007_RlA11_Qattunan.txt", "to": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "weight": 1}, {"Weight": 0.9386393427848816, "from": "Michel, C. - 2007_RlA11_Qattunan.txt", "to": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "weight": 1}, {"Weight": 0.9226561188697816, "from": "Michel, C. - 2007_RlA11_Qattunan.txt", "to": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "weight": 1}, {"Weight": 0.9143619537353516, "from": "Michel, C. - 2007_RlA11_Qattunan.txt", "to": "Melchert_covertcompounds.txt", "weight": 1}, {"Weight": 0.9623207449913024, "from": "Michel, C. - 2007_RlA11_Qattunan.txt", "to": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "weight": 1}, {"Weight": 0.9379196763038636, "from": "Michel, C. - 2007_RlA11_Qattunan.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.933743417263031, "from": "Michel, C. - 2007_RlA11_Qattunan.txt", "to": "nougayrol1960.txt", "weight": 1}, {"Weight": 0.955216646194458, "from": "Michel, C. - 2007_RlA11_Qattunan.txt", "to": "owen1990.txt", "weight": 1}, {"Weight": 0.9646825790405272, "from": "Michel, C. - 2007_RlA11_Qattunan.txt", "to": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "weight": 1}, {"Weight": 0.958350658416748, "from": "Michel, C. - 2007_RlA11_Qattunan.txt", "to": "pardee1979-80a.txt", "weight": 1}, {"Weight": 0.9581565260887146, "from": "Michel, C. - 2007_RlA11_Qattunan.txt", "to": "Yilmaz_2007_AMMY2006.txt", "weight": 1}, {"Weight": 0.9326003789901732, "from": "Michel, C. - 2007_RlA11_Qattunan.txt", "to": "Kienast_1975_WdO8_Pfandrecht.txt", "weight": 1}, {"Weight": 0.927337884902954, "from": "Michel, C. - 2007_RlA11_Qattunan.txt", "to": "Hecker, K., G. Kryszat \u0026 L. Matous\u030c - Kappadokische Keilschrifttafeln aus den Sammlungen der Karlsuniversita\u0308t Prag. ICK 4, 1998(cut).txt", "weight": 1}, {"Weight": 0.90156489610672, "from": "Michel, C. - 2007_RlA11_Qattunan.txt", "to": "Michel_2010_C9T9_Transport.txt", "weight": 1}, {"Weight": 0.9673611521720886, "from": "Michel, C. - 2007_RlA11_Qattunan.txt", "to": "vandenhout2002.txt", "weight": 1}, {"Weight": 0.9441742300987244, "from": "Michel, C. - 2007_RlA11_Qattunan.txt", "to": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "weight": 1}, {"Weight": 0.9228439927101136, "from": "Michel, C. - 2007_RlA11_Qattunan.txt", "to": "Bayram_1996_Bel229_slavery.txt", "weight": 1}, {"Weight": 0.9172350764274596, "from": "Michel, C. - 2007_RlA11_Qattunan.txt", "to": "starke1985.txt", "weight": 1}, {"Weight": 0.9314084053039552, "from": "Michel, C. - 2007_RlA11_Qattunan.txt", "to": "Renger_2003_Mercanti_trade_market_in_ane.txt", "weight": 1}, {"Weight": 0.9375560879707336, "from": "Michel, C. - 2007_RlA11_Qattunan.txt", "to": "Bilgic_1990_TTK10_Turkish.txt", "weight": 1}, {"Weight": 0.908373475074768, "from": "Michel, C. - 2007_RlA11_Qattunan.txt", "to": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "weight": 1}, {"Weight": 0.9171056747436525, "from": "Michel, C. - 2007_RlA11_Qattunan.txt", "to": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "weight": 1}, {"Weight": 0.9473291039466858, "from": "Michel, C. - 2007_RlA11_Qattunan.txt", "to": "Dercksen_2005_JEOL39_Adad_king.txt", "weight": 1}, {"Weight": 0.966346561908722, "from": "Michel, C. - 2007_RlA11_Qattunan.txt", "to": "Michel_2007_RlA11_SadumAdal_Labua.txt", "weight": 1}, {"Weight": 0.9306178092956544, "from": "Michel, C. - 2007_RlA11_Qattunan.txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.9241297245025636, "from": "Michel, C. - 2007_RlA11_Qattunan.txt", "to": "Gelb_1969_Ath47_capp_karkemish.txt", "weight": 1}, {"Weight": 0.959123194217682, "from": "Michel, C. - 2007_RlA11_Qattunan.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.9226468205451964, "from": "Michel, C. - 2007_RlA11_Qattunan.txt", "to": "vandenhout2002d.txt", "weight": 1}, {"Weight": 0.9062024354934692, "from": "leblanc1999.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.9711695909500122, "from": "leblanc1999.txt", "to": "pardee1986a.txt", "weight": 1}, {"Weight": 0.973379611968994, "from": "leblanc1999.txt", "to": "richards1994.txt", "weight": 1}, {"Weight": 0.9328137636184692, "from": "leblanc1999.txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.9667904376983644, "from": "leblanc1999.txt", "to": "long1989.txt", "weight": 1}, {"Weight": 0.98222017288208, "from": "leblanc1999.txt", "to": "Streck_2000_ZA90_aktennotiz.txt", "weight": 1}, {"Weight": 0.9488003849983216, "from": "leblanc1999.txt", "to": "pru3pt1000.txt", "weight": 1}, {"Weight": 0.9303368330001832, "from": "leblanc1999.txt", "to": "Melchert_mina.txt", "weight": 1}, {"Weight": 0.9595963358879088, "from": "leblanc1999.txt", "to": "Cecen_1995_ArAn1_mutanu.txt", "weight": 1}, {"Weight": 0.9384612441062928, "from": "leblanc1999.txt", "to": "pru3pt1001.txt", "weight": 1}, {"Weight": 0.9515592455863952, "from": "leblanc1999.txt", "to": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "weight": 1}, {"Weight": 0.9702767133712769, "from": "leblanc1999.txt", "to": "zaccagnini1999.txt", "weight": 1}, {"Weight": 0.9272222518920898, "from": "leblanc1999.txt", "to": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "weight": 1}, {"Weight": 0.9312734603881836, "from": "leblanc1999.txt", "to": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "weight": 1}, {"Weight": 0.9809936881065368, "from": "leblanc1999.txt", "to": "Larsen 1989.txt", "weight": 1}, {"Weight": 0.9611656069755554, "from": "leblanc1999.txt", "to": "weishofer1996.txt", "weight": 1}, {"Weight": 0.9433591961860656, "from": "leblanc1999.txt", "to": "Veenhof_1982b_JEOL27_over.txt", "weight": 1}, {"Weight": 0.9093267321586608, "from": "leblanc1999.txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.9385074973106384, "from": "leblanc1999.txt", "to": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "weight": 1}, {"Weight": 0.930318295955658, "from": "leblanc1999.txt", "to": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "weight": 1}, {"Weight": 0.9376033544540404, "from": "leblanc1999.txt", "to": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "weight": 1}, {"Weight": 0.9586350321769714, "from": "leblanc1999.txt", "to": "Melchert_covertcompounds.txt", "weight": 1}, {"Weight": 0.948886513710022, "from": "leblanc1999.txt", "to": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "weight": 1}, {"Weight": 0.9511249661445618, "from": "leblanc1999.txt", "to": "rosen1998.txt", "weight": 1}, {"Weight": 0.9662342667579652, "from": "leblanc1999.txt", "to": "nougayrol1960.txt", "weight": 1}, {"Weight": 0.938057005405426, "from": "leblanc1999.txt", "to": "owen1990.txt", "weight": 1}, {"Weight": 0.9147503972053528, "from": "leblanc1999.txt", "to": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "weight": 1}, {"Weight": 0.9157572388648988, "from": "leblanc1999.txt", "to": "Kienast_1975_WdO8_Pfandrecht.txt", "weight": 1}, {"Weight": 0.923090934753418, "from": "leblanc1999.txt", "to": "vandenhout2002.txt", "weight": 1}, {"Weight": 0.9155446887016296, "from": "leblanc1999.txt", "to": "Bayram_1996_Bel229_slavery.txt", "weight": 1}, {"Weight": 0.9096116423606871, "from": "leblanc1999.txt", "to": "Bilgic_1990_TTK10_Turkish.txt", "weight": 1}, {"Weight": 0.9196680784225464, "from": "leblanc1999.txt", "to": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "weight": 1}, {"Weight": 0.9030529260635376, "from": "leblanc1999.txt", "to": "Dercksen_2005_JEOL39_Adad_king.txt", "weight": 1}, {"Weight": 0.9038363695144652, "from": "leblanc1999.txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.9279220700263976, "from": "leblanc1999.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.9772798418998718, "from": "pardee1986a.txt", "to": "richards1994.txt", "weight": 1}, {"Weight": 0.9071516394615172, "from": "pardee1986a.txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.9820380210876464, "from": "pardee1986a.txt", "to": "long1989.txt", "weight": 1}, {"Weight": 0.9767612218856812, "from": "pardee1986a.txt", "to": "Streck_2000_ZA90_aktennotiz.txt", "weight": 1}, {"Weight": 0.9587736129760742, "from": "pardee1986a.txt", "to": "pru3pt1000.txt", "weight": 1}, {"Weight": 0.949545443058014, "from": "pardee1986a.txt", "to": "Melchert_mina.txt", "weight": 1}, {"Weight": 0.9015053510665894, "from": "pardee1986a.txt", "to": "Matous_1981_DiakonoffFS_siegelentumer.txt", "weight": 1}, {"Weight": 0.9504000544548036, "from": "pardee1986a.txt", "to": "Cecen_1995_ArAn1_mutanu.txt", "weight": 1}, {"Weight": 0.9613409042358398, "from": "pardee1986a.txt", "to": "pru3pt1001.txt", "weight": 1}, {"Weight": 0.9662243723869324, "from": "pardee1986a.txt", "to": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "weight": 1}, {"Weight": 0.9851123690605164, "from": "pardee1986a.txt", "to": "zaccagnini1999.txt", "weight": 1}, {"Weight": 0.9509835243225098, "from": "pardee1986a.txt", "to": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "weight": 1}, {"Weight": 0.952938675880432, "from": "pardee1986a.txt", "to": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "weight": 1}, {"Weight": 0.9783501625061036, "from": "pardee1986a.txt", "to": "Larsen 1989.txt", "weight": 1}, {"Weight": 0.9780097007751464, "from": "pardee1986a.txt", "to": "weishofer1996.txt", "weight": 1}, {"Weight": 0.9474930763244628, "from": "pardee1986a.txt", "to": "Veenhof_1982b_JEOL27_over.txt", "weight": 1}, {"Weight": 0.9004042148590088, "from": "pardee1986a.txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.9234331250190736, "from": "pardee1986a.txt", "to": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "weight": 1}, {"Weight": 0.9545056819915771, "from": "pardee1986a.txt", "to": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "weight": 1}, {"Weight": 0.928768515586853, "from": "pardee1986a.txt", "to": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "weight": 1}, {"Weight": 0.9854382276535034, "from": "pardee1986a.txt", "to": "Melchert_covertcompounds.txt", "weight": 1}, {"Weight": 0.9330899119377136, "from": "pardee1986a.txt", "to": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "weight": 1}, {"Weight": 0.9679675102233888, "from": "pardee1986a.txt", "to": "rosen1998.txt", "weight": 1}, {"Weight": 0.9839722514152528, "from": "pardee1986a.txt", "to": "nougayrol1960.txt", "weight": 1}, {"Weight": 0.9629372358322144, "from": "pardee1986a.txt", "to": "owen1990.txt", "weight": 1}, {"Weight": 0.9186091423034668, "from": "pardee1986a.txt", "to": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "weight": 1}, {"Weight": 0.90887850522995, "from": "pardee1986a.txt", "to": "Kienast_1975_WdO8_Pfandrecht.txt", "weight": 1}, {"Weight": 0.923599898815155, "from": "pardee1986a.txt", "to": "vandenhout2002.txt", "weight": 1}, {"Weight": 0.9262326955795288, "from": "pardee1986a.txt", "to": "Bayram_1996_Bel229_slavery.txt", "weight": 1}, {"Weight": 0.9183753728866576, "from": "pardee1986a.txt", "to": "Bilgic_1990_TTK10_Turkish.txt", "weight": 1}, {"Weight": 0.9373207092285156, "from": "pardee1986a.txt", "to": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "weight": 1}, {"Weight": 0.9121397733688354, "from": "pardee1986a.txt", "to": "Dercksen_2005_JEOL39_Adad_king.txt", "weight": 1}, {"Weight": 0.9068408608436584, "from": "pardee1986a.txt", "to": "Michel_2007_RlA11_SadumAdal_Labua.txt", "weight": 1}, {"Weight": 0.9028061628341676, "from": "pardee1986a.txt", "to": "Gelb_1969_Ath47_capp_karkemish.txt", "weight": 1}, {"Weight": 0.9316556453704834, "from": "pardee1986a.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.9781387448310852, "from": "richards1994.txt", "to": "long1989.txt", "weight": 1}, {"Weight": 0.9637719392776488, "from": "richards1994.txt", "to": "Streck_2000_ZA90_aktennotiz.txt", "weight": 1}, {"Weight": 0.9390736222267152, "from": "richards1994.txt", "to": "pru3pt1000.txt", "weight": 1}, {"Weight": 0.9481320977211, "from": "richards1994.txt", "to": "Melchert_mina.txt", "weight": 1}, {"Weight": 0.944650411605835, "from": "richards1994.txt", "to": "Cecen_1995_ArAn1_mutanu.txt", "weight": 1}, {"Weight": 0.9328457713127136, "from": "richards1994.txt", "to": "pru3pt1001.txt", "weight": 1}, {"Weight": 0.9570380449295044, "from": "richards1994.txt", "to": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "weight": 1}, {"Weight": 0.975835382938385, "from": "richards1994.txt", "to": "zaccagnini1999.txt", "weight": 1}, {"Weight": 0.9299712181091307, "from": "richards1994.txt", "to": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "weight": 1}, {"Weight": 0.92696613073349, "from": "richards1994.txt", "to": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "weight": 1}, {"Weight": 0.980924427509308, "from": "richards1994.txt", "to": "Larsen 1989.txt", "weight": 1}, {"Weight": 0.9780017733573914, "from": "richards1994.txt", "to": "weishofer1996.txt", "weight": 1}, {"Weight": 0.9205642938613892, "from": "richards1994.txt", "to": "Veenhof_1982b_JEOL27_over.txt", "weight": 1}, {"Weight": 0.9223641753196716, "from": "richards1994.txt", "to": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "weight": 1}, {"Weight": 0.9301520586013794, "from": "richards1994.txt", "to": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "weight": 1}, {"Weight": 0.9192957878112792, "from": "richards1994.txt", "to": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "weight": 1}, {"Weight": 0.970589518547058, "from": "richards1994.txt", "to": "Melchert_covertcompounds.txt", "weight": 1}, {"Weight": 0.9334000945091248, "from": "richards1994.txt", "to": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "weight": 1}, {"Weight": 0.9739114046096802, "from": "richards1994.txt", "to": "rosen1998.txt", "weight": 1}, {"Weight": 0.9726033806800842, "from": "richards1994.txt", "to": "nougayrol1960.txt", "weight": 1}, {"Weight": 0.9471119046211244, "from": "richards1994.txt", "to": "owen1990.txt", "weight": 1}, {"Weight": 0.9032443761825562, "from": "richards1994.txt", "to": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "weight": 1}, {"Weight": 0.904011070728302, "from": "richards1994.txt", "to": "vandenhout2002.txt", "weight": 1}, {"Weight": 0.9004533290863037, "from": "richards1994.txt", "to": "Bilgic_1990_TTK10_Turkish.txt", "weight": 1}, {"Weight": 0.9003394842147827, "from": "richards1994.txt", "to": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "weight": 1}, {"Weight": 0.912000834941864, "from": "richards1994.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.9566828608512878, "from": "long1989.txt", "to": "Streck_2000_ZA90_aktennotiz.txt", "weight": 1}, {"Weight": 0.918795645236969, "from": "long1989.txt", "to": "pru3pt1000.txt", "weight": 1}, {"Weight": 0.926902711391449, "from": "long1989.txt", "to": "Melchert_mina.txt", "weight": 1}, {"Weight": 0.921094298362732, "from": "long1989.txt", "to": "Cecen_1995_ArAn1_mutanu.txt", "weight": 1}, {"Weight": 0.9210314750671388, "from": "long1989.txt", "to": "pru3pt1001.txt", "weight": 1}, {"Weight": 0.9486557841300964, "from": "long1989.txt", "to": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "weight": 1}, {"Weight": 0.9675214886665344, "from": "long1989.txt", "to": "zaccagnini1999.txt", "weight": 1}, {"Weight": 0.9080691933631896, "from": "long1989.txt", "to": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "weight": 1}, {"Weight": 0.915663719177246, "from": "long1989.txt", "to": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "weight": 1}, {"Weight": 0.9773422479629515, "from": "long1989.txt", "to": "Larsen 1989.txt", "weight": 1}, {"Weight": 0.9916422367095948, "from": "long1989.txt", "to": "weishofer1996.txt", "weight": 1}, {"Weight": 0.9002121090888977, "from": "long1989.txt", "to": "Veenhof_1982b_JEOL27_over.txt", "weight": 1}, {"Weight": 0.9139271378517152, "from": "long1989.txt", "to": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "weight": 1}, {"Weight": 0.981291890144348, "from": "long1989.txt", "to": "Melchert_covertcompounds.txt", "weight": 1}, {"Weight": 0.902996838092804, "from": "long1989.txt", "to": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "weight": 1}, {"Weight": 0.9909877181053162, "from": "long1989.txt", "to": "rosen1998.txt", "weight": 1}, {"Weight": 0.9776453375816344, "from": "long1989.txt", "to": "nougayrol1960.txt", "weight": 1}, {"Weight": 0.9283422231674194, "from": "long1989.txt", "to": "owen1990.txt", "weight": 1}, {"Weight": 0.9700981378555298, "from": "Streck_2000_ZA90_aktennotiz.txt", "to": "pru3pt1000.txt", "weight": 1}, {"Weight": 0.941199541091919, "from": "Streck_2000_ZA90_aktennotiz.txt", "to": "Melchert_mina.txt", "weight": 1}, {"Weight": 0.9016863107681274, "from": "Streck_2000_ZA90_aktennotiz.txt", "to": "Matous_1981_DiakonoffFS_siegelentumer.txt", "weight": 1}, {"Weight": 0.9687238335609436, "from": "Streck_2000_ZA90_aktennotiz.txt", "to": "Cecen_1995_ArAn1_mutanu.txt", "weight": 1}, {"Weight": 0.9698157906532288, "from": "Streck_2000_ZA90_aktennotiz.txt", "to": "pru3pt1001.txt", "weight": 1}, {"Weight": 0.963638424873352, "from": "Streck_2000_ZA90_aktennotiz.txt", "to": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "weight": 1}, {"Weight": 0.9712262153625488, "from": "Streck_2000_ZA90_aktennotiz.txt", "to": "zaccagnini1999.txt", "weight": 1}, {"Weight": 0.9563497304916382, "from": "Streck_2000_ZA90_aktennotiz.txt", "to": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "weight": 1}, {"Weight": 0.9518272876739502, "from": "Streck_2000_ZA90_aktennotiz.txt", "to": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "weight": 1}, {"Weight": 0.9708861112594604, "from": "Streck_2000_ZA90_aktennotiz.txt", "to": "Larsen 1989.txt", "weight": 1}, {"Weight": 0.94973224401474, "from": "Streck_2000_ZA90_aktennotiz.txt", "to": "weishofer1996.txt", "weight": 1}, {"Weight": 0.9695940613746644, "from": "Streck_2000_ZA90_aktennotiz.txt", "to": "Veenhof_1982b_JEOL27_over.txt", "weight": 1}, {"Weight": 0.93504399061203, "from": "Streck_2000_ZA90_aktennotiz.txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.955771028995514, "from": "Streck_2000_ZA90_aktennotiz.txt", "to": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "weight": 1}, {"Weight": 0.9543176889419556, "from": "Streck_2000_ZA90_aktennotiz.txt", "to": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "weight": 1}, {"Weight": 0.9375314116477966, "from": "Streck_2000_ZA90_aktennotiz.txt", "to": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "weight": 1}, {"Weight": 0.9572657346725464, "from": "Streck_2000_ZA90_aktennotiz.txt", "to": "Melchert_covertcompounds.txt", "weight": 1}, {"Weight": 0.9637816548347472, "from": "Streck_2000_ZA90_aktennotiz.txt", "to": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "weight": 1}, {"Weight": 0.908790409564972, "from": "Streck_2000_ZA90_aktennotiz.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.939253032207489, "from": "Streck_2000_ZA90_aktennotiz.txt", "to": "rosen1998.txt", "weight": 1}, {"Weight": 0.9678020477294922, "from": "Streck_2000_ZA90_aktennotiz.txt", "to": "nougayrol1960.txt", "weight": 1}, {"Weight": 0.9618496298789978, "from": "Streck_2000_ZA90_aktennotiz.txt", "to": "owen1990.txt", "weight": 1}, {"Weight": 0.9452269077301024, "from": "Streck_2000_ZA90_aktennotiz.txt", "to": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "weight": 1}, {"Weight": 0.9290135502815248, "from": "Streck_2000_ZA90_aktennotiz.txt", "to": "pardee1979-80a.txt", "weight": 1}, {"Weight": 0.922401487827301, "from": "Streck_2000_ZA90_aktennotiz.txt", "to": "Yilmaz_2007_AMMY2006.txt", "weight": 1}, {"Weight": 0.9360771775245668, "from": "Streck_2000_ZA90_aktennotiz.txt", "to": "Kienast_1975_WdO8_Pfandrecht.txt", "weight": 1}, {"Weight": 0.9010768532752992, "from": "Streck_2000_ZA90_aktennotiz.txt", "to": "Hecker, K., G. Kryszat \u0026 L. Matous\u030c - Kappadokische Keilschrifttafeln aus den Sammlungen der Karlsuniversita\u0308t Prag. ICK 4, 1998(cut).txt", "weight": 1}, {"Weight": 0.9510232210159302, "from": "Streck_2000_ZA90_aktennotiz.txt", "to": "vandenhout2002.txt", "weight": 1}, {"Weight": 0.9231700301170348, "from": "Streck_2000_ZA90_aktennotiz.txt", "to": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "weight": 1}, {"Weight": 0.940995156764984, "from": "Streck_2000_ZA90_aktennotiz.txt", "to": "Bayram_1996_Bel229_slavery.txt", "weight": 1}, {"Weight": 0.9113599061965942, "from": "Streck_2000_ZA90_aktennotiz.txt", "to": "Kienast_1998_DellerFS_tertum.txt", "weight": 1}, {"Weight": 0.9360931515693665, "from": "Streck_2000_ZA90_aktennotiz.txt", "to": "Bilgic_1990_TTK10_Turkish.txt", "weight": 1}, {"Weight": 0.942259967327118, "from": "Streck_2000_ZA90_aktennotiz.txt", "to": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "weight": 1}, {"Weight": 0.930553674697876, "from": "Streck_2000_ZA90_aktennotiz.txt", "to": "Dercksen_2005_JEOL39_Adad_king.txt", "weight": 1}, {"Weight": 0.9274592399597168, "from": "Streck_2000_ZA90_aktennotiz.txt", "to": "Michel_2007_RlA11_SadumAdal_Labua.txt", "weight": 1}, {"Weight": 0.9276506304740906, "from": "Streck_2000_ZA90_aktennotiz.txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.9274417161941528, "from": "Streck_2000_ZA90_aktennotiz.txt", "to": "Gelb_1969_Ath47_capp_karkemish.txt", "weight": 1}, {"Weight": 0.9494857788085938, "from": "Streck_2000_ZA90_aktennotiz.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.9326568841934204, "from": "Streck_2000_ZA90_aktennotiz.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.9085678458213806, "from": "Streck_2000_ZA90_aktennotiz.txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.946461856365204, "from": "Streck_2000_ZA90_aktennotiz.txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.9030982851982116, "from": "Streck_2000_ZA90_aktennotiz.txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.96069073677063, "from": "pru3pt1000.txt", "to": "Melchert_mina.txt", "weight": 1}, {"Weight": 0.934320330619812, "from": "pru3pt1000.txt", "to": "Matous_1981_DiakonoffFS_siegelentumer.txt", "weight": 1}, {"Weight": 0.9712530970573424, "from": "pru3pt1000.txt", "to": "Cecen_1995_ArAn1_mutanu.txt", "weight": 1}, {"Weight": 0.972078800201416, "from": "pru3pt1000.txt", "to": "pru3pt1001.txt", "weight": 1}, {"Weight": 0.9633454084396362, "from": "pru3pt1000.txt", "to": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "weight": 1}, {"Weight": 0.9686453938484192, "from": "pru3pt1000.txt", "to": "zaccagnini1999.txt", "weight": 1}, {"Weight": 0.9786645770072936, "from": "pru3pt1000.txt", "to": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "weight": 1}, {"Weight": 0.9680019617080688, "from": "pru3pt1000.txt", "to": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "weight": 1}, {"Weight": 0.9390719532966614, "from": "pru3pt1000.txt", "to": "Larsen 1989.txt", "weight": 1}, {"Weight": 0.9165566563606262, "from": "pru3pt1000.txt", "to": "weishofer1996.txt", "weight": 1}, {"Weight": 0.9835282564163208, "from": "pru3pt1000.txt", "to": "Veenhof_1982b_JEOL27_over.txt", "weight": 1}, {"Weight": 0.9583508968353271, "from": "pru3pt1000.txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.928263783454895, "from": "pru3pt1000.txt", "to": "Hrozny_1928_OLZ1928_rev_Clay_BIN4.PDF.txt", "weight": 1}, {"Weight": 0.9742684960365297, "from": "pru3pt1000.txt", "to": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "weight": 1}, {"Weight": 0.9689666628837584, "from": "pru3pt1000.txt", "to": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "weight": 1}, {"Weight": 0.9527556300163268, "from": "pru3pt1000.txt", "to": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "weight": 1}, {"Weight": 0.9004911780357361, "from": "pru3pt1000.txt", "to": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "weight": 1}, {"Weight": 0.932569980621338, "from": "pru3pt1000.txt", "to": "Melchert_covertcompounds.txt", "weight": 1}, {"Weight": 0.9707612991333008, "from": "pru3pt1000.txt", "to": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "weight": 1}, {"Weight": 0.922099471092224, "from": "pru3pt1000.txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.9527658820152284, "from": "pru3pt1000.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.9409775733947754, "from": "pru3pt1000.txt", "to": "nougayrol1960.txt", "weight": 1}, {"Weight": 0.972583532333374, "from": "pru3pt1000.txt", "to": "owen1990.txt", "weight": 1}, {"Weight": 0.9672857522964478, "from": "pru3pt1000.txt", "to": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "weight": 1}, {"Weight": 0.9614747762680054, "from": "pru3pt1000.txt", "to": "pardee1979-80a.txt", "weight": 1}, {"Weight": 0.9626346826553344, "from": "pru3pt1000.txt", "to": "Yilmaz_2007_AMMY2006.txt", "weight": 1}, {"Weight": 0.960957646369934, "from": "pru3pt1000.txt", "to": "Kienast_1975_WdO8_Pfandrecht.txt", "weight": 1}, {"Weight": 0.9062299728393556, "from": "pru3pt1000.txt", "to": "PRU 3 plates.txt", "weight": 1}, {"Weight": 0.9236823320388794, "from": "pru3pt1000.txt", "to": "Hecker, K., G. Kryszat \u0026 L. Matous\u030c - Kappadokische Keilschrifttafeln aus den Sammlungen der Karlsuniversita\u0308t Prag. ICK 4, 1998(cut).txt", "weight": 1}, {"Weight": 0.977531671524048, "from": "pru3pt1000.txt", "to": "vandenhout2002.txt", "weight": 1}, {"Weight": 0.9629136323928832, "from": "pru3pt1000.txt", "to": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "weight": 1}, {"Weight": 0.9124332070350648, "from": "pru3pt1000.txt", "to": "Michel_2008_La Correspondes.txt", "weight": 1}, {"Weight": 0.9628656506538392, "from": "pru3pt1000.txt", "to": "Bayram_1996_Bel229_slavery.txt", "weight": 1}, {"Weight": 0.91787451505661, "from": "pru3pt1000.txt", "to": "starke1985.txt", "weight": 1}, {"Weight": 0.9447298645973206, "from": "pru3pt1000.txt", "to": "Renger_2003_Mercanti_trade_market_in_ane.txt", "weight": 1}, {"Weight": 0.9068872332572936, "from": "pru3pt1000.txt", "to": "LewyJ_1936_RHA3_chronologie.txt", "weight": 1}, {"Weight": 0.9409838914871216, "from": "pru3pt1000.txt", "to": "Kienast_1998_DellerFS_tertum.txt", "weight": 1}, {"Weight": 0.9657180309295654, "from": "pru3pt1000.txt", "to": "Bilgic_1990_TTK10_Turkish.txt", "weight": 1}, {"Weight": 0.9559470415115356, "from": "pru3pt1000.txt", "to": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "weight": 1}, {"Weight": 0.9145036339759828, "from": "pru3pt1000.txt", "to": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "weight": 1}, {"Weight": 0.9722365736961364, "from": "pru3pt1000.txt", "to": "Dercksen_2005_JEOL39_Adad_king.txt", "weight": 1}, {"Weight": 0.9592924118041992, "from": "pru3pt1000.txt", "to": "Michel_2007_RlA11_SadumAdal_Labua.txt", "weight": 1}, {"Weight": 0.9571717977523804, "from": "pru3pt1000.txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.9589015245437622, "from": "pru3pt1000.txt", "to": "Gelb_1969_Ath47_capp_karkemish.txt", "weight": 1}, {"Weight": 0.9740193486213684, "from": "pru3pt1000.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.9429966807365416, "from": "pru3pt1000.txt", "to": "vandenhout2002d.txt", "weight": 1}, {"Weight": 0.9647860527038574, "from": "pru3pt1000.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.9479939937591552, "from": "pru3pt1000.txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.9599550366401672, "from": "pru3pt1000.txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.9434533715248108, "from": "pru3pt1000.txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.9274526834487916, "from": "pru3pt1000.txt", "to": "Wartke_1995_inDiscoveries_OA_period.txt", "weight": 1}, {"Weight": 0.9115926027297974, "from": "pru3pt1000.txt", "to": "politics of mesha routledge.txt", "weight": 1}, {"Weight": 0.9334718585014344, "from": "pru3pt1000.txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.9202681183815002, "from": "pru3pt1000.txt", "to": "Anatolica 28, 2002.txt", "weight": 1}, {"Weight": 0.9116989970207214, "from": "Melchert_mina.txt", "to": "Matous_1981_DiakonoffFS_siegelentumer.txt", "weight": 1}, {"Weight": 0.953224778175354, "from": "Melchert_mina.txt", "to": "Cecen_1995_ArAn1_mutanu.txt", "weight": 1}, {"Weight": 0.9423655271530152, "from": "Melchert_mina.txt", "to": "pru3pt1001.txt", "weight": 1}, {"Weight": 0.961399495601654, "from": "Melchert_mina.txt", "to": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "weight": 1}, {"Weight": 0.9619654417037964, "from": "Melchert_mina.txt", "to": "zaccagnini1999.txt", "weight": 1}, {"Weight": 0.9601818323135376, "from": "Melchert_mina.txt", "to": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "weight": 1}, {"Weight": 0.9444366693496704, "from": "Melchert_mina.txt", "to": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "weight": 1}, {"Weight": 0.9421310424804688, "from": "Melchert_mina.txt", "to": "Larsen 1989.txt", "weight": 1}, {"Weight": 0.924806833267212, "from": "Melchert_mina.txt", "to": "weishofer1996.txt", "weight": 1}, {"Weight": 0.935863435268402, "from": "Melchert_mina.txt", "to": "Veenhof_1982b_JEOL27_over.txt", "weight": 1}, {"Weight": 0.9294546842575072, "from": "Melchert_mina.txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.9451514482498168, "from": "Melchert_mina.txt", "to": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "weight": 1}, {"Weight": 0.947489619255066, "from": "Melchert_mina.txt", "to": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "weight": 1}, {"Weight": 0.9253690838813782, "from": "Melchert_mina.txt", "to": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "weight": 1}, {"Weight": 0.9341968297958374, "from": "Melchert_mina.txt", "to": "Melchert_covertcompounds.txt", "weight": 1}, {"Weight": 0.9481989145278932, "from": "Melchert_mina.txt", "to": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "weight": 1}, {"Weight": 0.9396281242370604, "from": "Melchert_mina.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.916245937347412, "from": "Melchert_mina.txt", "to": "rosen1998.txt", "weight": 1}, {"Weight": 0.9477602243423462, "from": "Melchert_mina.txt", "to": "nougayrol1960.txt", "weight": 1}, {"Weight": 0.9536256194114684, "from": "Melchert_mina.txt", "to": "owen1990.txt", "weight": 1}, {"Weight": 0.9454768300056458, "from": "Melchert_mina.txt", "to": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "weight": 1}, {"Weight": 0.91581392288208, "from": "Melchert_mina.txt", "to": "pardee1979-80a.txt", "weight": 1}, {"Weight": 0.9351531863212584, "from": "Melchert_mina.txt", "to": "Yilmaz_2007_AMMY2006.txt", "weight": 1}, {"Weight": 0.9187588691711426, "from": "Melchert_mina.txt", "to": "Kienast_1975_WdO8_Pfandrecht.txt", "weight": 1}, {"Weight": 0.9138489961624146, "from": "Melchert_mina.txt", "to": "Hecker, K., G. Kryszat \u0026 L. Matous\u030c - Kappadokische Keilschrifttafeln aus den Sammlungen der Karlsuniversita\u0308t Prag. ICK 4, 1998(cut).txt", "weight": 1}, {"Weight": 0.94255930185318, "from": "Melchert_mina.txt", "to": "vandenhout2002.txt", "weight": 1}, {"Weight": 0.9072030782699584, "from": "Melchert_mina.txt", "to": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "weight": 1}, {"Weight": 0.9174394607543944, "from": "Melchert_mina.txt", "to": "Bayram_1996_Bel229_slavery.txt", "weight": 1}, {"Weight": 0.9133132696151732, "from": "Melchert_mina.txt", "to": "starke1985.txt", "weight": 1}, {"Weight": 0.9247782230377196, "from": "Melchert_mina.txt", "to": "Bilgic_1990_TTK10_Turkish.txt", "weight": 1}, {"Weight": 0.9135758876800536, "from": "Melchert_mina.txt", "to": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "weight": 1}, {"Weight": 0.9276813864707948, "from": "Melchert_mina.txt", "to": "Dercksen_2005_JEOL39_Adad_king.txt", "weight": 1}, {"Weight": 0.9319429993629456, "from": "Melchert_mina.txt", "to": "Michel_2007_RlA11_SadumAdal_Labua.txt", "weight": 1}, {"Weight": 0.9049554467201232, "from": "Melchert_mina.txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.9016891717910768, "from": "Melchert_mina.txt", "to": "Gelb_1969_Ath47_capp_karkemish.txt", "weight": 1}, {"Weight": 0.9417290091514589, "from": "Melchert_mina.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.9209789633750916, "from": "Melchert_mina.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.9089901447296144, "from": "Melchert_mina.txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.9489235281944276, "from": "Cecen_1995_ArAn1_mutanu.txt", "to": "pru3pt1001.txt", "weight": 1}, {"Weight": 0.9667906761169434, "from": "Cecen_1995_ArAn1_mutanu.txt", "to": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "weight": 1}, {"Weight": 0.9603081345558168, "from": "Cecen_1995_ArAn1_mutanu.txt", "to": "zaccagnini1999.txt", "weight": 1}, {"Weight": 0.951282799243927, "from": "Cecen_1995_ArAn1_mutanu.txt", "to": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "weight": 1}, {"Weight": 0.9587029218673706, "from": "Cecen_1995_ArAn1_mutanu.txt", "to": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "weight": 1}, {"Weight": 0.9487720131874084, "from": "Cecen_1995_ArAn1_mutanu.txt", "to": "Larsen 1989.txt", "weight": 1}, {"Weight": 0.9143971800804138, "from": "Cecen_1995_ArAn1_mutanu.txt", "to": "weishofer1996.txt", "weight": 1}, {"Weight": 0.9638710021972656, "from": "Cecen_1995_ArAn1_mutanu.txt", "to": "Veenhof_1982b_JEOL27_over.txt", "weight": 1}, {"Weight": 0.9404336810112, "from": "Cecen_1995_ArAn1_mutanu.txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.9189592599868774, "from": "Cecen_1995_ArAn1_mutanu.txt", "to": "Hrozny_1928_OLZ1928_rev_Clay_BIN4.PDF.txt", "weight": 1}, {"Weight": 0.9743579626083374, "from": "Cecen_1995_ArAn1_mutanu.txt", "to": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "weight": 1}, {"Weight": 0.95420241355896, "from": "Cecen_1995_ArAn1_mutanu.txt", "to": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "weight": 1}, {"Weight": 0.9718987345695496, "from": "Cecen_1995_ArAn1_mutanu.txt", "to": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "weight": 1}, {"Weight": 0.9250429272651672, "from": "Cecen_1995_ArAn1_mutanu.txt", "to": "Melchert_covertcompounds.txt", "weight": 1}, {"Weight": 0.9799354076385498, "from": "Cecen_1995_ArAn1_mutanu.txt", "to": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "weight": 1}, {"Weight": 0.9450435638427734, "from": "Cecen_1995_ArAn1_mutanu.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.9018972516059875, "from": "Cecen_1995_ArAn1_mutanu.txt", "to": "rosen1998.txt", "weight": 1}, {"Weight": 0.9382061958312988, "from": "Cecen_1995_ArAn1_mutanu.txt", "to": "nougayrol1960.txt", "weight": 1}, {"Weight": 0.9526639580726624, "from": "Cecen_1995_ArAn1_mutanu.txt", "to": "owen1990.txt", "weight": 1}, {"Weight": 0.949704885482788, "from": "Cecen_1995_ArAn1_mutanu.txt", "to": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "weight": 1}, {"Weight": 0.943713366985321, "from": "Cecen_1995_ArAn1_mutanu.txt", "to": "pardee1979-80a.txt", "weight": 1}, {"Weight": 0.9499829411506652, "from": "Cecen_1995_ArAn1_mutanu.txt", "to": "Yilmaz_2007_AMMY2006.txt", "weight": 1}, {"Weight": 0.9667983055114746, "from": "Cecen_1995_ArAn1_mutanu.txt", "to": "Kienast_1975_WdO8_Pfandrecht.txt", "weight": 1}, {"Weight": 0.9227231740951538, "from": "Cecen_1995_ArAn1_mutanu.txt", "to": "Hecker, K., G. Kryszat \u0026 L. Matous\u030c - Kappadokische Keilschrifttafeln aus den Sammlungen der Karlsuniversita\u0308t Prag. ICK 4, 1998(cut).txt", "weight": 1}, {"Weight": 0.9556997418403624, "from": "Cecen_1995_ArAn1_mutanu.txt", "to": "vandenhout2002.txt", "weight": 1}, {"Weight": 0.9480440616607666, "from": "Cecen_1995_ArAn1_mutanu.txt", "to": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "weight": 1}, {"Weight": 0.9505648016929626, "from": "Cecen_1995_ArAn1_mutanu.txt", "to": "Bayram_1996_Bel229_slavery.txt", "weight": 1}, {"Weight": 0.9108015894889832, "from": "Cecen_1995_ArAn1_mutanu.txt", "to": "starke1985.txt", "weight": 1}, {"Weight": 0.9241963624954224, "from": "Cecen_1995_ArAn1_mutanu.txt", "to": "Renger_2003_Mercanti_trade_market_in_ane.txt", "weight": 1}, {"Weight": 0.938196301460266, "from": "Cecen_1995_ArAn1_mutanu.txt", "to": "Kienast_1998_DellerFS_tertum.txt", "weight": 1}, {"Weight": 0.9642876386642456, "from": "Cecen_1995_ArAn1_mutanu.txt", "to": "Bilgic_1990_TTK10_Turkish.txt", "weight": 1}, {"Weight": 0.9361180663108826, "from": "Cecen_1995_ArAn1_mutanu.txt", "to": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "weight": 1}, {"Weight": 0.9455581307411194, "from": "Cecen_1995_ArAn1_mutanu.txt", "to": "Dercksen_2005_JEOL39_Adad_king.txt", "weight": 1}, {"Weight": 0.953725039958954, "from": "Cecen_1995_ArAn1_mutanu.txt", "to": "Michel_2007_RlA11_SadumAdal_Labua.txt", "weight": 1}, {"Weight": 0.9623868465423584, "from": "Cecen_1995_ArAn1_mutanu.txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.9485275149345398, "from": "Cecen_1995_ArAn1_mutanu.txt", "to": "Gelb_1969_Ath47_capp_karkemish.txt", "weight": 1}, {"Weight": 0.9770922064781188, "from": "Cecen_1995_ArAn1_mutanu.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.9194373488426208, "from": "Cecen_1995_ArAn1_mutanu.txt", "to": "vandenhout2002d.txt", "weight": 1}, {"Weight": 0.9653933048248292, "from": "Cecen_1995_ArAn1_mutanu.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.9351932406425476, "from": "Cecen_1995_ArAn1_mutanu.txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.966789960861206, "from": "Cecen_1995_ArAn1_mutanu.txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.940691351890564, "from": "Cecen_1995_ArAn1_mutanu.txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.90211021900177, "from": "Cecen_1995_ArAn1_mutanu.txt", "to": "Wartke_1995_inDiscoveries_OA_period.txt", "weight": 1}, {"Weight": 0.9139015674591064, "from": "Cecen_1995_ArAn1_mutanu.txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.9409143924713136, "from": "Cecen_1995_ArAn1_mutanu.txt", "to": "Matous_1981_DiakonoffFS_siegelentumer.txt", "weight": 1}, {"Weight": 0.9666653871536256, "from": "pru3pt1001.txt", "to": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "weight": 1}, {"Weight": 0.9638416171073914, "from": "pru3pt1001.txt", "to": "zaccagnini1999.txt", "weight": 1}, {"Weight": 0.9625129699707032, "from": "pru3pt1001.txt", "to": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "weight": 1}, {"Weight": 0.965261459350586, "from": "pru3pt1001.txt", "to": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "weight": 1}, {"Weight": 0.9394121170043944, "from": "pru3pt1001.txt", "to": "Larsen 1989.txt", "weight": 1}, {"Weight": 0.9214338660240172, "from": "pru3pt1001.txt", "to": "weishofer1996.txt", "weight": 1}, {"Weight": 0.963226079940796, "from": "pru3pt1001.txt", "to": "Veenhof_1982b_JEOL27_over.txt", "weight": 1}, {"Weight": 0.9368793964385986, "from": "pru3pt1001.txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.9063642621040344, "from": "pru3pt1001.txt", "to": "Hrozny_1928_OLZ1928_rev_Clay_BIN4.PDF.txt", "weight": 1}, {"Weight": 0.9409869313240052, "from": "pru3pt1001.txt", "to": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "weight": 1}, {"Weight": 0.979403018951416, "from": "pru3pt1001.txt", "to": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "weight": 1}, {"Weight": 0.9292757511138916, "from": "pru3pt1001.txt", "to": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "weight": 1}, {"Weight": 0.9458510875701904, "from": "pru3pt1001.txt", "to": "Melchert_covertcompounds.txt", "weight": 1}, {"Weight": 0.943568468093872, "from": "pru3pt1001.txt", "to": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "weight": 1}, {"Weight": 0.9402109980583192, "from": "pru3pt1001.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.9005517363548279, "from": "pru3pt1001.txt", "to": "rosen1998.txt", "weight": 1}, {"Weight": 0.9404675364494324, "from": "pru3pt1001.txt", "to": "nougayrol1960.txt", "weight": 1}, {"Weight": 0.9796209931373596, "from": "pru3pt1001.txt", "to": "owen1990.txt", "weight": 1}, {"Weight": 0.9488173723220824, "from": "pru3pt1001.txt", "to": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "weight": 1}, {"Weight": 0.9387656450271606, "from": "pru3pt1001.txt", "to": "pardee1979-80a.txt", "weight": 1}, {"Weight": 0.9408679008483888, "from": "pru3pt1001.txt", "to": "Yilmaz_2007_AMMY2006.txt", "weight": 1}, {"Weight": 0.947285532951355, "from": "pru3pt1001.txt", "to": "Kienast_1975_WdO8_Pfandrecht.txt", "weight": 1}, {"Weight": 0.903073787689209, "from": "pru3pt1001.txt", "to": "Hecker, K., G. Kryszat \u0026 L. Matous\u030c - Kappadokische Keilschrifttafeln aus den Sammlungen der Karlsuniversita\u0308t Prag. ICK 4, 1998(cut).txt", "weight": 1}, {"Weight": 0.9542827010154724, "from": "pru3pt1001.txt", "to": "vandenhout2002.txt", "weight": 1}, {"Weight": 0.9319632649421692, "from": "pru3pt1001.txt", "to": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "weight": 1}, {"Weight": 0.9661155343055724, "from": "pru3pt1001.txt", "to": "Bayram_1996_Bel229_slavery.txt", "weight": 1}, {"Weight": 0.9001823663711548, "from": "pru3pt1001.txt", "to": "Renger_2003_Mercanti_trade_market_in_ane.txt", "weight": 1}, {"Weight": 0.9266677498817444, "from": "pru3pt1001.txt", "to": "Kienast_1998_DellerFS_tertum.txt", "weight": 1}, {"Weight": 0.9515013098716736, "from": "pru3pt1001.txt", "to": "Bilgic_1990_TTK10_Turkish.txt", "weight": 1}, {"Weight": 0.9653194546699524, "from": "pru3pt1001.txt", "to": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "weight": 1}, {"Weight": 0.949887216091156, "from": "pru3pt1001.txt", "to": "Dercksen_2005_JEOL39_Adad_king.txt", "weight": 1}, {"Weight": 0.9290771484375, "from": "pru3pt1001.txt", "to": "Michel_2007_RlA11_SadumAdal_Labua.txt", "weight": 1}, {"Weight": 0.9333866238594056, "from": "pru3pt1001.txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.9453277587890624, "from": "pru3pt1001.txt", "to": "Gelb_1969_Ath47_capp_karkemish.txt", "weight": 1}, {"Weight": 0.9500599503517152, "from": "pru3pt1001.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.9144816398620604, "from": "pru3pt1001.txt", "to": "vandenhout2002d.txt", "weight": 1}, {"Weight": 0.9410786628723145, "from": "pru3pt1001.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.9213495254516602, "from": "pru3pt1001.txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.9326040744781494, "from": "pru3pt1001.txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.9288039207458496, "from": "pru3pt1001.txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.9102815985679626, "from": "pru3pt1001.txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.9316034913063048, "from": "pru3pt1001.txt", "to": "Matous_1981_DiakonoffFS_siegelentumer.txt", "weight": 1}, {"Weight": 0.9745033383369446, "from": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "to": "zaccagnini1999.txt", "weight": 1}, {"Weight": 0.9479773044586182, "from": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "to": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "weight": 1}, {"Weight": 0.9754768013954164, "from": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "to": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "weight": 1}, {"Weight": 0.9541416764259338, "from": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "to": "Larsen 1989.txt", "weight": 1}, {"Weight": 0.9483594298362732, "from": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "to": "weishofer1996.txt", "weight": 1}, {"Weight": 0.9424219131469728, "from": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "to": "Veenhof_1982b_JEOL27_over.txt", "weight": 1}, {"Weight": 0.9249054193496704, "from": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.944414496421814, "from": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "to": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "weight": 1}, {"Weight": 0.9708731770515442, "from": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "to": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "weight": 1}, {"Weight": 0.951710283756256, "from": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "to": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "weight": 1}, {"Weight": 0.9610060453414916, "from": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "to": "Melchert_covertcompounds.txt", "weight": 1}, {"Weight": 0.9534105658531188, "from": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "to": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "weight": 1}, {"Weight": 0.9349713325500488, "from": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.9348520040512084, "from": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "to": "rosen1998.txt", "weight": 1}, {"Weight": 0.9542333483695984, "from": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "to": "nougayrol1960.txt", "weight": 1}, {"Weight": 0.9698126316070556, "from": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "to": "owen1990.txt", "weight": 1}, {"Weight": 0.9300395250320436, "from": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "to": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "weight": 1}, {"Weight": 0.9083005785942078, "from": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "to": "pardee1979-80a.txt", "weight": 1}, {"Weight": 0.9284118413925172, "from": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "to": "Yilmaz_2007_AMMY2006.txt", "weight": 1}, {"Weight": 0.944482922554016, "from": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "to": "Kienast_1975_WdO8_Pfandrecht.txt", "weight": 1}, {"Weight": 0.9355067610740662, "from": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "to": "vandenhout2002.txt", "weight": 1}, {"Weight": 0.9142685532569884, "from": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "to": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "weight": 1}, {"Weight": 0.9580411911010742, "from": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "to": "Bayram_1996_Bel229_slavery.txt", "weight": 1}, {"Weight": 0.9001708626747131, "from": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "to": "starke1985.txt", "weight": 1}, {"Weight": 0.9096957445144652, "from": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "to": "Kienast_1998_DellerFS_tertum.txt", "weight": 1}, {"Weight": 0.9568979144096376, "from": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "to": "Bilgic_1990_TTK10_Turkish.txt", "weight": 1}, {"Weight": 0.9482561945915222, "from": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "to": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "weight": 1}, {"Weight": 0.9302160143852234, "from": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "to": "Dercksen_2005_JEOL39_Adad_king.txt", "weight": 1}, {"Weight": 0.9206083416938782, "from": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "to": "Michel_2007_RlA11_SadumAdal_Labua.txt", "weight": 1}, {"Weight": 0.9251683354377748, "from": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.9267345070838928, "from": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "to": "Gelb_1969_Ath47_capp_karkemish.txt", "weight": 1}, {"Weight": 0.951824188232422, "from": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.9284424781799316, "from": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.9324206709861756, "from": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.912088930606842, "from": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.9461601972579956, "from": "Eren_1980_ArAn8_kultepe_collection.PDF.txt", "to": "Matous_1981_DiakonoffFS_siegelentumer.txt", "weight": 1}, {"Weight": 0.9587805271148682, "from": "zaccagnini1999.txt", "to": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "weight": 1}, {"Weight": 0.9622450470924376, "from": "zaccagnini1999.txt", "to": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "weight": 1}, {"Weight": 0.9784734845161438, "from": "zaccagnini1999.txt", "to": "Larsen 1989.txt", "weight": 1}, {"Weight": 0.967193365097046, "from": "zaccagnini1999.txt", "to": "weishofer1996.txt", "weight": 1}, {"Weight": 0.950654685497284, "from": "zaccagnini1999.txt", "to": "Veenhof_1982b_JEOL27_over.txt", "weight": 1}, {"Weight": 0.92269629240036, "from": "zaccagnini1999.txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.940708875656128, "from": "zaccagnini1999.txt", "to": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "weight": 1}, {"Weight": 0.9695991277694702, "from": "zaccagnini1999.txt", "to": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "weight": 1}, {"Weight": 0.950538158416748, "from": "zaccagnini1999.txt", "to": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "weight": 1}, {"Weight": 0.9734190106391908, "from": "zaccagnini1999.txt", "to": "Melchert_covertcompounds.txt", "weight": 1}, {"Weight": 0.951390027999878, "from": "zaccagnini1999.txt", "to": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "weight": 1}, {"Weight": 0.9159395694732666, "from": "zaccagnini1999.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.9503179788589478, "from": "zaccagnini1999.txt", "to": "rosen1998.txt", "weight": 1}, {"Weight": 0.9762283563613892, "from": "zaccagnini1999.txt", "to": "nougayrol1960.txt", "weight": 1}, {"Weight": 0.9747365713119508, "from": "zaccagnini1999.txt", "to": "owen1990.txt", "weight": 1}, {"Weight": 0.9278095364570618, "from": "zaccagnini1999.txt", "to": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "weight": 1}, {"Weight": 0.9067850708961488, "from": "zaccagnini1999.txt", "to": "pardee1979-80a.txt", "weight": 1}, {"Weight": 0.9153980016708374, "from": "zaccagnini1999.txt", "to": "Yilmaz_2007_AMMY2006.txt", "weight": 1}, {"Weight": 0.9267553091049194, "from": "zaccagnini1999.txt", "to": "Kienast_1975_WdO8_Pfandrecht.txt", "weight": 1}, {"Weight": 0.9421057105064392, "from": "zaccagnini1999.txt", "to": "vandenhout2002.txt", "weight": 1}, {"Weight": 0.9100977778434752, "from": "zaccagnini1999.txt", "to": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "weight": 1}, {"Weight": 0.9387986063957214, "from": "zaccagnini1999.txt", "to": "Bayram_1996_Bel229_slavery.txt", "weight": 1}, {"Weight": 0.9353045225143432, "from": "zaccagnini1999.txt", "to": "Bilgic_1990_TTK10_Turkish.txt", "weight": 1}, {"Weight": 0.947602927684784, "from": "zaccagnini1999.txt", "to": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "weight": 1}, {"Weight": 0.935216188430786, "from": "zaccagnini1999.txt", "to": "Dercksen_2005_JEOL39_Adad_king.txt", "weight": 1}, {"Weight": 0.9159482717514038, "from": "zaccagnini1999.txt", "to": "Michel_2007_RlA11_SadumAdal_Labua.txt", "weight": 1}, {"Weight": 0.9129530787467957, "from": "zaccagnini1999.txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.9129303693771362, "from": "zaccagnini1999.txt", "to": "Gelb_1969_Ath47_capp_karkemish.txt", "weight": 1}, {"Weight": 0.9461241960525512, "from": "zaccagnini1999.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.9186962842941284, "from": "zaccagnini1999.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.9277839064598083, "from": "zaccagnini1999.txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.929150402545929, "from": "zaccagnini1999.txt", "to": "Matous_1981_DiakonoffFS_siegelentumer.txt", "weight": 1}, {"Weight": 0.949213206768036, "from": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "to": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "weight": 1}, {"Weight": 0.9351742267608644, "from": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "to": "Larsen 1989.txt", "weight": 1}, {"Weight": 0.9075522422790528, "from": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "to": "weishofer1996.txt", "weight": 1}, {"Weight": 0.972068727016449, "from": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "to": "Veenhof_1982b_JEOL27_over.txt", "weight": 1}, {"Weight": 0.9597772359848022, "from": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.966075360774994, "from": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "to": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "weight": 1}, {"Weight": 0.9566673040390016, "from": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "to": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "weight": 1}, {"Weight": 0.921000063419342, "from": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "to": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "weight": 1}, {"Weight": 0.9237676858901978, "from": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "to": "Melchert_covertcompounds.txt", "weight": 1}, {"Weight": 0.9565299153327942, "from": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "to": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "weight": 1}, {"Weight": 0.9069420695304872, "from": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.9492406249046326, "from": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.9356931447982788, "from": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "to": "nougayrol1960.txt", "weight": 1}, {"Weight": 0.9638253450393676, "from": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "to": "owen1990.txt", "weight": 1}, {"Weight": 0.9714961647987366, "from": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "to": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "weight": 1}, {"Weight": 0.9592843055725098, "from": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "to": "pardee1979-80a.txt", "weight": 1}, {"Weight": 0.9613322615623474, "from": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "to": "Yilmaz_2007_AMMY2006.txt", "weight": 1}, {"Weight": 0.9380192160606384, "from": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "to": "Kienast_1975_WdO8_Pfandrecht.txt", "weight": 1}, {"Weight": 0.9016996622085572, "from": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "to": "PRU 3 plates.txt", "weight": 1}, {"Weight": 0.931736171245575, "from": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "to": "Hecker, K., G. Kryszat \u0026 L. Matous\u030c - Kappadokische Keilschrifttafeln aus den Sammlungen der Karlsuniversita\u0308t Prag. ICK 4, 1998(cut).txt", "weight": 1}, {"Weight": 0.9767971634864808, "from": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "to": "vandenhout2002.txt", "weight": 1}, {"Weight": 0.9437614679336548, "from": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "to": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "weight": 1}, {"Weight": 0.9064634442329408, "from": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "to": "Michel_2008_La Correspondes.txt", "weight": 1}, {"Weight": 0.9372588992118835, "from": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "to": "Bayram_1996_Bel229_slavery.txt", "weight": 1}, {"Weight": 0.9239943623542786, "from": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "to": "starke1985.txt", "weight": 1}, {"Weight": 0.9310163259506226, "from": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "to": "Renger_2003_Mercanti_trade_market_in_ane.txt", "weight": 1}, {"Weight": 0.9044511318206788, "from": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "to": "LewyJ_1936_RHA3_chronologie.txt", "weight": 1}, {"Weight": 0.9036410450935364, "from": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "to": "Kienast_1998_DellerFS_tertum.txt", "weight": 1}, {"Weight": 0.9426711797714232, "from": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "to": "Bilgic_1990_TTK10_Turkish.txt", "weight": 1}, {"Weight": 0.9295846819877625, "from": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "to": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "weight": 1}, {"Weight": 0.9148598313331604, "from": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "to": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "weight": 1}, {"Weight": 0.9616385102272034, "from": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "to": "Dercksen_2005_JEOL39_Adad_king.txt", "weight": 1}, {"Weight": 0.9556487798690796, "from": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "to": "Michel_2007_RlA11_SadumAdal_Labua.txt", "weight": 1}, {"Weight": 0.930398166179657, "from": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.9308409094810486, "from": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "to": "Gelb_1969_Ath47_capp_karkemish.txt", "weight": 1}, {"Weight": 0.9487541913986206, "from": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.9406846761703492, "from": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "to": "vandenhout2002d.txt", "weight": 1}, {"Weight": 0.9425471425056458, "from": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.9266194105148317, "from": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.9278361797332764, "from": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.9127442836761476, "from": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.9311734437942504, "from": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "to": "Wartke_1995_inDiscoveries_OA_period.txt", "weight": 1}, {"Weight": 0.9006608724594116, "from": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "to": "politics of mesha routledge.txt", "weight": 1}, {"Weight": 0.924700140953064, "from": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.9201406836509703, "from": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "to": "Anatolica 28, 2002.txt", "weight": 1}, {"Weight": 0.907500147819519, "from": "DONBAZ_SAMMELMEMORANDUMS AND CONSIDERATIONS.txt", "to": "Matous_1981_DiakonoffFS_siegelentumer.txt", "weight": 1}, {"Weight": 0.9257237911224364, "from": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "to": "Larsen 1989.txt", "weight": 1}, {"Weight": 0.9154400825500488, "from": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "to": "weishofer1996.txt", "weight": 1}, {"Weight": 0.951343297958374, "from": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "to": "Veenhof_1982b_JEOL27_over.txt", "weight": 1}, {"Weight": 0.916310489177704, "from": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.935190498828888, "from": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "to": "Hrozny_1928_OLZ1928_rev_Clay_BIN4.PDF.txt", "weight": 1}, {"Weight": 0.9443730115890504, "from": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "to": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "weight": 1}, {"Weight": 0.9785537123680116, "from": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "to": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "weight": 1}, {"Weight": 0.95942360162735, "from": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "to": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "weight": 1}, {"Weight": 0.939086377620697, "from": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "to": "Melchert_covertcompounds.txt", "weight": 1}, {"Weight": 0.9479371905326844, "from": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "to": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "weight": 1}, {"Weight": 0.9489954113960266, "from": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.9346553683280944, "from": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "to": "nougayrol1960.txt", "weight": 1}, {"Weight": 0.9661414623260498, "from": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "to": "owen1990.txt", "weight": 1}, {"Weight": 0.930891215801239, "from": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "to": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "weight": 1}, {"Weight": 0.9250041842460632, "from": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "to": "pardee1979-80a.txt", "weight": 1}, {"Weight": 0.937440037727356, "from": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "to": "Yilmaz_2007_AMMY2006.txt", "weight": 1}, {"Weight": 0.9641489386558532, "from": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "to": "Kienast_1975_WdO8_Pfandrecht.txt", "weight": 1}, {"Weight": 0.9410783052444458, "from": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "to": "vandenhout2002.txt", "weight": 1}, {"Weight": 0.9407012462615968, "from": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "to": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "weight": 1}, {"Weight": 0.9800142049789428, "from": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "to": "Bayram_1996_Bel229_slavery.txt", "weight": 1}, {"Weight": 0.9125003814697266, "from": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "to": "Renger_2003_Mercanti_trade_market_in_ane.txt", "weight": 1}, {"Weight": 0.93527352809906, "from": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "to": "Kienast_1998_DellerFS_tertum.txt", "weight": 1}, {"Weight": 0.9728462100028992, "from": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "to": "Bilgic_1990_TTK10_Turkish.txt", "weight": 1}, {"Weight": 0.9605352282524108, "from": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "to": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "weight": 1}, {"Weight": 0.9517618417739868, "from": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "to": "Dercksen_2005_JEOL39_Adad_king.txt", "weight": 1}, {"Weight": 0.9373864531517028, "from": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "to": "Michel_2007_RlA11_SadumAdal_Labua.txt", "weight": 1}, {"Weight": 0.9417207837104796, "from": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.9592391848564148, "from": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "to": "Gelb_1969_Ath47_capp_karkemish.txt", "weight": 1}, {"Weight": 0.9660511612892152, "from": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.9011749029159546, "from": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "to": "vandenhout2002d.txt", "weight": 1}, {"Weight": 0.9454308152198792, "from": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.9185510277748108, "from": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.9373170733451844, "from": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.9407411813735962, "from": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.9015533924102784, "from": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.9586142897605896, "from": "Hakan EROL_2005_Kultepe\u0027den nikkassum\u0027la Ilgili Alti Yeni Belge.txt", "to": "Matous_1981_DiakonoffFS_siegelentumer.txt", "weight": 1}, {"Weight": 0.9747199416160583, "from": "Larsen 1989.txt", "to": "weishofer1996.txt", "weight": 1}, {"Weight": 0.9312977194786072, "from": "Larsen 1989.txt", "to": "Veenhof_1982b_JEOL27_over.txt", "weight": 1}, {"Weight": 0.9032890796661376, "from": "Larsen 1989.txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.9195005297660828, "from": "Larsen 1989.txt", "to": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "weight": 1}, {"Weight": 0.936314821243286, "from": "Larsen 1989.txt", "to": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "weight": 1}, {"Weight": 0.9231920838356018, "from": "Larsen 1989.txt", "to": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "weight": 1}, {"Weight": 0.9717600345611572, "from": "Larsen 1989.txt", "to": "Melchert_covertcompounds.txt", "weight": 1}, {"Weight": 0.9352206587791444, "from": "Larsen 1989.txt", "to": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "weight": 1}, {"Weight": 0.9669597148895264, "from": "Larsen 1989.txt", "to": "rosen1998.txt", "weight": 1}, {"Weight": 0.9784197807312012, "from": "Larsen 1989.txt", "to": "nougayrol1960.txt", "weight": 1}, {"Weight": 0.9488177299499512, "from": "Larsen 1989.txt", "to": "owen1990.txt", "weight": 1}, {"Weight": 0.9089395999908448, "from": "Larsen 1989.txt", "to": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "weight": 1}, {"Weight": 0.9149314165115356, "from": "Larsen 1989.txt", "to": "vandenhout2002.txt", "weight": 1}, {"Weight": 0.917370855808258, "from": "Larsen 1989.txt", "to": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "weight": 1}, {"Weight": 0.9157587885856628, "from": "Larsen 1989.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.9063573479652404, "from": "Larsen 1989.txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.9164201617240906, "from": "weishofer1996.txt", "to": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "weight": 1}, {"Weight": 0.9862639307975768, "from": "weishofer1996.txt", "to": "Melchert_covertcompounds.txt", "weight": 1}, {"Weight": 0.987101137638092, "from": "weishofer1996.txt", "to": "rosen1998.txt", "weight": 1}, {"Weight": 0.9735203981399536, "from": "weishofer1996.txt", "to": "nougayrol1960.txt", "weight": 1}, {"Weight": 0.9352131485939026, "from": "weishofer1996.txt", "to": "owen1990.txt", "weight": 1}, {"Weight": 0.9534634351730348, "from": "Veenhof_1982b_JEOL27_over.txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.932418167591095, "from": "Veenhof_1982b_JEOL27_over.txt", "to": "Hrozny_1928_OLZ1928_rev_Clay_BIN4.PDF.txt", "weight": 1}, {"Weight": 0.9668771028518676, "from": "Veenhof_1982b_JEOL27_over.txt", "to": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "weight": 1}, {"Weight": 0.9540269374847412, "from": "Veenhof_1982b_JEOL27_over.txt", "to": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "weight": 1}, {"Weight": 0.9426488876342772, "from": "Veenhof_1982b_JEOL27_over.txt", "to": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "weight": 1}, {"Weight": 0.909834623336792, "from": "Veenhof_1982b_JEOL27_over.txt", "to": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "weight": 1}, {"Weight": 0.9203630089759828, "from": "Veenhof_1982b_JEOL27_over.txt", "to": "Melchert_covertcompounds.txt", "weight": 1}, {"Weight": 0.9601701498031616, "from": "Veenhof_1982b_JEOL27_over.txt", "to": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "weight": 1}, {"Weight": 0.9428791999816896, "from": "Veenhof_1982b_JEOL27_over.txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.9427602291107178, "from": "Veenhof_1982b_JEOL27_over.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.9297240376472472, "from": "Veenhof_1982b_JEOL27_over.txt", "to": "nougayrol1960.txt", "weight": 1}, {"Weight": 0.9597941637039183, "from": "Veenhof_1982b_JEOL27_over.txt", "to": "owen1990.txt", "weight": 1}, {"Weight": 0.96517151594162, "from": "Veenhof_1982b_JEOL27_over.txt", "to": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "weight": 1}, {"Weight": 0.972676396369934, "from": "Veenhof_1982b_JEOL27_over.txt", "to": "pardee1979-80a.txt", "weight": 1}, {"Weight": 0.9560959339141846, "from": "Veenhof_1982b_JEOL27_over.txt", "to": "Yilmaz_2007_AMMY2006.txt", "weight": 1}, {"Weight": 0.9516990184783936, "from": "Veenhof_1982b_JEOL27_over.txt", "to": "Kienast_1975_WdO8_Pfandrecht.txt", "weight": 1}, {"Weight": 0.9188354015350342, "from": "Veenhof_1982b_JEOL27_over.txt", "to": "PRU 3 plates.txt", "weight": 1}, {"Weight": 0.9344619512557985, "from": "Veenhof_1982b_JEOL27_over.txt", "to": "Hecker, K., G. Kryszat \u0026 L. Matous\u030c - Kappadokische Keilschrifttafeln aus den Sammlungen der Karlsuniversita\u0308t Prag. ICK 4, 1998(cut).txt", "weight": 1}, {"Weight": 0.9786521792411804, "from": "Veenhof_1982b_JEOL27_over.txt", "to": "vandenhout2002.txt", "weight": 1}, {"Weight": 0.9655596613883972, "from": "Veenhof_1982b_JEOL27_over.txt", "to": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "weight": 1}, {"Weight": 0.9367541670799256, "from": "Veenhof_1982b_JEOL27_over.txt", "to": "Michel_2008_La Correspondes.txt", "weight": 1}, {"Weight": 0.9537618160247804, "from": "Veenhof_1982b_JEOL27_over.txt", "to": "Bayram_1996_Bel229_slavery.txt", "weight": 1}, {"Weight": 0.9055026769638062, "from": "Veenhof_1982b_JEOL27_over.txt", "to": "starke1985.txt", "weight": 1}, {"Weight": 0.950198233127594, "from": "Veenhof_1982b_JEOL27_over.txt", "to": "Renger_2003_Mercanti_trade_market_in_ane.txt", "weight": 1}, {"Weight": 0.9118072986602784, "from": "Veenhof_1982b_JEOL27_over.txt", "to": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "weight": 1}, {"Weight": 0.9102956652641296, "from": "Veenhof_1982b_JEOL27_over.txt", "to": "LewyJ_1936_RHA3_chronologie.txt", "weight": 1}, {"Weight": 0.9430654048919678, "from": "Veenhof_1982b_JEOL27_over.txt", "to": "Kienast_1998_DellerFS_tertum.txt", "weight": 1}, {"Weight": 0.955275535583496, "from": "Veenhof_1982b_JEOL27_over.txt", "to": "Bilgic_1990_TTK10_Turkish.txt", "weight": 1}, {"Weight": 0.9548209309577942, "from": "Veenhof_1982b_JEOL27_over.txt", "to": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "weight": 1}, {"Weight": 0.9220497608184814, "from": "Veenhof_1982b_JEOL27_over.txt", "to": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "weight": 1}, {"Weight": 0.9707109928131104, "from": "Veenhof_1982b_JEOL27_over.txt", "to": "Dercksen_2005_JEOL39_Adad_king.txt", "weight": 1}, {"Weight": 0.9009870290756226, "from": "Veenhof_1982b_JEOL27_over.txt", "to": "Zaccagnini_1983_Mobility.txt", "weight": 1}, {"Weight": 0.9574165940284728, "from": "Veenhof_1982b_JEOL27_over.txt", "to": "Michel_2007_RlA11_SadumAdal_Labua.txt", "weight": 1}, {"Weight": 0.9578940868377686, "from": "Veenhof_1982b_JEOL27_over.txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.9605028033256532, "from": "Veenhof_1982b_JEOL27_over.txt", "to": "Gelb_1969_Ath47_capp_karkemish.txt", "weight": 1}, {"Weight": 0.9701589345932008, "from": "Veenhof_1982b_JEOL27_over.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.9475815892219543, "from": "Veenhof_1982b_JEOL27_over.txt", "to": "vandenhout2002d.txt", "weight": 1}, {"Weight": 0.9641208052635192, "from": "Veenhof_1982b_JEOL27_over.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.956516444683075, "from": "Veenhof_1982b_JEOL27_over.txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.9587134718894958, "from": "Veenhof_1982b_JEOL27_over.txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.9403610825538636, "from": "Veenhof_1982b_JEOL27_over.txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.940724551677704, "from": "Veenhof_1982b_JEOL27_over.txt", "to": "Wartke_1995_inDiscoveries_OA_period.txt", "weight": 1}, {"Weight": 0.9312095642089844, "from": "Veenhof_1982b_JEOL27_over.txt", "to": "politics of mesha routledge.txt", "weight": 1}, {"Weight": 0.9115665555000304, "from": "Veenhof_1982b_JEOL27_over.txt", "to": "Larsen 1979_Sumer35_earlyAssur.txt", "weight": 1}, {"Weight": 0.9443703293800354, "from": "Veenhof_1982b_JEOL27_over.txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.9432312250137328, "from": "Veenhof_1982b_JEOL27_over.txt", "to": "Anatolica 28, 2002.txt", "weight": 1}, {"Weight": 0.9113287925720216, "from": "Veenhof_1982b_JEOL27_over.txt", "to": "Matous_1981_DiakonoffFS_siegelentumer.txt", "weight": 1}, {"Weight": 0.9394587278366088, "from": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "to": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "weight": 1}, {"Weight": 0.9433596134185792, "from": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "to": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "weight": 1}, {"Weight": 0.918666124343872, "from": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "to": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "weight": 1}, {"Weight": 0.9794152975082396, "from": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "to": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "weight": 1}, {"Weight": 0.9219610691070556, "from": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.943847358226776, "from": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.9092778563499452, "from": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "to": "nougayrol1960.txt", "weight": 1}, {"Weight": 0.942501425743103, "from": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "to": "owen1990.txt", "weight": 1}, {"Weight": 0.9715786576271056, "from": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "to": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "weight": 1}, {"Weight": 0.9662275910377502, "from": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "to": "pardee1979-80a.txt", "weight": 1}, {"Weight": 0.9751766920089722, "from": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "to": "Yilmaz_2007_AMMY2006.txt", "weight": 1}, {"Weight": 0.9630388021469116, "from": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "to": "Kienast_1975_WdO8_Pfandrecht.txt", "weight": 1}, {"Weight": 0.9077149033546448, "from": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "to": "PRU 3 plates.txt", "weight": 1}, {"Weight": 0.9256997108459472, "from": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "to": "Hecker, K., G. Kryszat \u0026 L. Matous\u030c - Kappadokische Keilschrifttafeln aus den Sammlungen der Karlsuniversita\u0308t Prag. ICK 4, 1998(cut).txt", "weight": 1}, {"Weight": 0.9246593117713928, "from": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "to": "Michel_2010_C9T9_Transport.txt", "weight": 1}, {"Weight": 0.9775803685188292, "from": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "to": "vandenhout2002.txt", "weight": 1}, {"Weight": 0.9611591696739196, "from": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "to": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "weight": 1}, {"Weight": 0.9040796160697936, "from": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "to": "Michel_2008_La Correspondes.txt", "weight": 1}, {"Weight": 0.90072762966156, "from": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "to": "Melchert_sarnikzel.txt", "weight": 1}, {"Weight": 0.9427334070205688, "from": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "to": "Bayram_1996_Bel229_slavery.txt", "weight": 1}, {"Weight": 0.92626291513443, "from": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "to": "starke1985.txt", "weight": 1}, {"Weight": 0.9471684098243712, "from": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "to": "Renger_2003_Mercanti_trade_market_in_ane.txt", "weight": 1}, {"Weight": 0.9080968499183656, "from": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "to": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "weight": 1}, {"Weight": 0.9135767221450806, "from": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "to": "LewyJ_1936_RHA3_chronologie.txt", "weight": 1}, {"Weight": 0.9318511486053468, "from": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "to": "Kienast_1998_DellerFS_tertum.txt", "weight": 1}, {"Weight": 0.9600419998168944, "from": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "to": "Bilgic_1990_TTK10_Turkish.txt", "weight": 1}, {"Weight": 0.91302227973938, "from": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "to": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "weight": 1}, {"Weight": 0.9002933502197266, "from": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "to": "Stein, Gil - Produces, Patrons, and Prestige - Craft Specialists and Emergent Elites in Mesopotamia from 5500-3100.txt", "weight": 1}, {"Weight": 0.9411049485206604, "from": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "to": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "weight": 1}, {"Weight": 0.957345724105835, "from": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "to": "Dercksen_2005_JEOL39_Adad_king.txt", "weight": 1}, {"Weight": 0.9004904627799988, "from": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "to": "Zaccagnini_1983_Mobility.txt", "weight": 1}, {"Weight": 0.9648621678352356, "from": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "to": "Michel_2007_RlA11_SadumAdal_Labua.txt", "weight": 1}, {"Weight": 0.9623563885688782, "from": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.943801760673523, "from": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "to": "Gelb_1969_Ath47_capp_karkemish.txt", "weight": 1}, {"Weight": 0.9634414315223694, "from": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.9522007703781128, "from": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "to": "vandenhout2002d.txt", "weight": 1}, {"Weight": 0.9681737422943116, "from": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.9538312554359436, "from": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.9638468027114868, "from": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.9383313655853271, "from": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.9477344751358032, "from": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "to": "Wartke_1995_inDiscoveries_OA_period.txt", "weight": 1}, {"Weight": 0.9206711053848268, "from": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "to": "politics of mesha routledge.txt", "weight": 1}, {"Weight": 0.9283906817436218, "from": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "to": "Larsen 1979_Sumer35_earlyAssur.txt", "weight": 1}, {"Weight": 0.9356961250305176, "from": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.9244937300682068, "from": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "to": "Anatolica 28, 2002.txt", "weight": 1}, {"Weight": 0.9675445556640624, "from": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.9122195839881896, "from": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "to": "Hrozny_1928_OLZ1928_rev_Clay_BIN4.PDF.txt", "weight": 1}, {"Weight": 0.9120038747787476, "from": "Uzunalimoglu_1990_AMMY89_Turkish.txt", "to": "Matous_1981_DiakonoffFS_siegelentumer.txt", "weight": 1}, {"Weight": 0.9550526738166808, "from": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "to": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "weight": 1}, {"Weight": 0.9403875470161438, "from": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "to": "Melchert_covertcompounds.txt", "weight": 1}, {"Weight": 0.9497904777526855, "from": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "to": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "weight": 1}, {"Weight": 0.9518865346908568, "from": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.9380300045013428, "from": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "to": "nougayrol1960.txt", "weight": 1}, {"Weight": 0.9830119013786316, "from": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "to": "owen1990.txt", "weight": 1}, {"Weight": 0.9303091168403624, "from": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "to": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "weight": 1}, {"Weight": 0.9315051436424256, "from": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "to": "pardee1979-80a.txt", "weight": 1}, {"Weight": 0.9424878358840942, "from": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "to": "Yilmaz_2007_AMMY2006.txt", "weight": 1}, {"Weight": 0.9578706622123718, "from": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "to": "Kienast_1975_WdO8_Pfandrecht.txt", "weight": 1}, {"Weight": 0.9080526828765868, "from": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "to": "Hecker, K., G. Kryszat \u0026 L. Matous\u030c - Kappadokische Keilschrifttafeln aus den Sammlungen der Karlsuniversita\u0308t Prag. ICK 4, 1998(cut).txt", "weight": 1}, {"Weight": 0.9450081586837769, "from": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "to": "vandenhout2002.txt", "weight": 1}, {"Weight": 0.937529981136322, "from": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "to": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "weight": 1}, {"Weight": 0.9694923758506776, "from": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "to": "Bayram_1996_Bel229_slavery.txt", "weight": 1}, {"Weight": 0.9071826338768004, "from": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "to": "starke1985.txt", "weight": 1}, {"Weight": 0.9038497805595398, "from": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "to": "Renger_2003_Mercanti_trade_market_in_ane.txt", "weight": 1}, {"Weight": 0.937472939491272, "from": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "to": "Kienast_1998_DellerFS_tertum.txt", "weight": 1}, {"Weight": 0.9628450274467468, "from": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "to": "Bilgic_1990_TTK10_Turkish.txt", "weight": 1}, {"Weight": 0.9725682139396667, "from": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "to": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "weight": 1}, {"Weight": 0.9564677476882936, "from": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "to": "Dercksen_2005_JEOL39_Adad_king.txt", "weight": 1}, {"Weight": 0.9357028603553772, "from": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "to": "Michel_2007_RlA11_SadumAdal_Labua.txt", "weight": 1}, {"Weight": 0.940138339996338, "from": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.9526127576828004, "from": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "to": "Gelb_1969_Ath47_capp_karkemish.txt", "weight": 1}, {"Weight": 0.9620793461799622, "from": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.9087291359901428, "from": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "to": "vandenhout2002d.txt", "weight": 1}, {"Weight": 0.9489791989326476, "from": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.9181494116783142, "from": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.9371950030326844, "from": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.9431067109107972, "from": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.910802125930786, "from": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.9229932427406312, "from": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.9176419377326964, "from": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "to": "Hrozny_1928_OLZ1928_rev_Clay_BIN4.PDF.txt", "weight": 1}, {"Weight": 0.9617322683334352, "from": "ANADOLUNUN_ONSOZU_KULTEPE_KANIS-libre.txt", "to": "Matous_1981_DiakonoffFS_siegelentumer.txt", "weight": 1}, {"Weight": 0.9099112749099731, "from": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "to": "Melchert_covertcompounds.txt", "weight": 1}, {"Weight": 0.9612699151039124, "from": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "to": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "weight": 1}, {"Weight": 0.9345667362213136, "from": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.9062867164611816, "from": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "to": "nougayrol1960.txt", "weight": 1}, {"Weight": 0.941916525363922, "from": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "to": "owen1990.txt", "weight": 1}, {"Weight": 0.9084039926528932, "from": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "to": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "weight": 1}, {"Weight": 0.912542164325714, "from": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "to": "pardee1979-80a.txt", "weight": 1}, {"Weight": 0.9253556132316588, "from": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "to": "Yilmaz_2007_AMMY2006.txt", "weight": 1}, {"Weight": 0.9690359830856324, "from": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "to": "Kienast_1975_WdO8_Pfandrecht.txt", "weight": 1}, {"Weight": 0.9287574887275696, "from": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "to": "vandenhout2002.txt", "weight": 1}, {"Weight": 0.9439260959625244, "from": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "to": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "weight": 1}, {"Weight": 0.958790957927704, "from": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "to": "Bayram_1996_Bel229_slavery.txt", "weight": 1}, {"Weight": 0.904872715473175, "from": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "to": "Renger_2003_Mercanti_trade_market_in_ane.txt", "weight": 1}, {"Weight": 0.9496874809265136, "from": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "to": "Kienast_1998_DellerFS_tertum.txt", "weight": 1}, {"Weight": 0.9632176160812378, "from": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "to": "Bilgic_1990_TTK10_Turkish.txt", "weight": 1}, {"Weight": 0.9459242224693298, "from": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "to": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "weight": 1}, {"Weight": 0.9450591802597046, "from": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "to": "Dercksen_2005_JEOL39_Adad_king.txt", "weight": 1}, {"Weight": 0.9287896156311036, "from": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "to": "Michel_2007_RlA11_SadumAdal_Labua.txt", "weight": 1}, {"Weight": 0.9592825770378112, "from": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.954942524433136, "from": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "to": "Gelb_1969_Ath47_capp_karkemish.txt", "weight": 1}, {"Weight": 0.9686452746391296, "from": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.9054358601570128, "from": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "to": "vandenhout2002d.txt", "weight": 1}, {"Weight": 0.9579331874847412, "from": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.9250946640968324, "from": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.9642525315284728, "from": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.9573299288749696, "from": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.9048987030982972, "from": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.9257972836494446, "from": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "to": "Hrozny_1928_OLZ1928_rev_Clay_BIN4.PDF.txt", "weight": 1}, {"Weight": 0.966960310935974, "from": "Eisser_1939_KoschakerFS_rechtsurkunden.txt", "to": "Matous_1981_DiakonoffFS_siegelentumer.txt", "weight": 1}, {"Weight": 0.9037062525749208, "from": "Melchert_covertcompounds.txt", "to": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "weight": 1}, {"Weight": 0.970653772354126, "from": "Melchert_covertcompounds.txt", "to": "rosen1998.txt", "weight": 1}, {"Weight": 0.9727514386177064, "from": "Melchert_covertcompounds.txt", "to": "nougayrol1960.txt", "weight": 1}, {"Weight": 0.9540613293647766, "from": "Melchert_covertcompounds.txt", "to": "owen1990.txt", "weight": 1}, {"Weight": 0.9089035391807556, "from": "Melchert_covertcompounds.txt", "to": "Bayram_1996_Bel229_slavery.txt", "weight": 1}, {"Weight": 0.9285100102424622, "from": "Melchert_covertcompounds.txt", "to": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "weight": 1}, {"Weight": 0.904728353023529, "from": "Melchert_covertcompounds.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.9048486351966858, "from": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.9459673166275024, "from": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.922040581703186, "from": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "to": "nougayrol1960.txt", "weight": 1}, {"Weight": 0.946802854537964, "from": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "to": "owen1990.txt", "weight": 1}, {"Weight": 0.9558915495872498, "from": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "to": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "weight": 1}, {"Weight": 0.9488404989242554, "from": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "to": "pardee1979-80a.txt", "weight": 1}, {"Weight": 0.9549995064735411, "from": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "to": "Yilmaz_2007_AMMY2006.txt", "weight": 1}, {"Weight": 0.9648887515068054, "from": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "to": "Kienast_1975_WdO8_Pfandrecht.txt", "weight": 1}, {"Weight": 0.9234769940376282, "from": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "to": "Hecker, K., G. Kryszat \u0026 L. Matous\u030c - Kappadokische Keilschrifttafeln aus den Sammlungen der Karlsuniversita\u0308t Prag. ICK 4, 1998(cut).txt", "weight": 1}, {"Weight": 0.9639613032341005, "from": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "to": "vandenhout2002.txt", "weight": 1}, {"Weight": 0.9523882865905762, "from": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "to": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "weight": 1}, {"Weight": 0.9432063698768616, "from": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "to": "Bayram_1996_Bel229_slavery.txt", "weight": 1}, {"Weight": 0.9173319935798644, "from": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "to": "starke1985.txt", "weight": 1}, {"Weight": 0.927731156349182, "from": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "to": "Renger_2003_Mercanti_trade_market_in_ane.txt", "weight": 1}, {"Weight": 0.9391909241676332, "from": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "to": "Kienast_1998_DellerFS_tertum.txt", "weight": 1}, {"Weight": 0.9576802253723145, "from": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "to": "Bilgic_1990_TTK10_Turkish.txt", "weight": 1}, {"Weight": 0.9225819706916808, "from": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "to": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "weight": 1}, {"Weight": 0.9178048968315125, "from": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "to": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "weight": 1}, {"Weight": 0.9522334933280944, "from": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "to": "Dercksen_2005_JEOL39_Adad_king.txt", "weight": 1}, {"Weight": 0.9549167156219482, "from": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "to": "Michel_2007_RlA11_SadumAdal_Labua.txt", "weight": 1}, {"Weight": 0.9641101360321044, "from": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.9426499009132384, "from": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "to": "Gelb_1969_Ath47_capp_karkemish.txt", "weight": 1}, {"Weight": 0.9612025618553162, "from": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.935019850730896, "from": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "to": "vandenhout2002d.txt", "weight": 1}, {"Weight": 0.9654092788696288, "from": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.9432604908943176, "from": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.9721389412879944, "from": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.9419187903404236, "from": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.9292098879814148, "from": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "to": "Wartke_1995_inDiscoveries_OA_period.txt", "weight": 1}, {"Weight": 0.90469092130661, "from": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "to": "politics of mesha routledge.txt", "weight": 1}, {"Weight": 0.90679669380188, "from": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "to": "Larsen 1979_Sumer35_earlyAssur.txt", "weight": 1}, {"Weight": 0.9194349050521852, "from": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.9008057117462158, "from": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "to": "Anatolica 28, 2002.txt", "weight": 1}, {"Weight": 0.9565751552581788, "from": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.913175106048584, "from": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "to": "Hrozny_1928_OLZ1928_rev_Clay_BIN4.PDF.txt", "weight": 1}, {"Weight": 0.9334312081336976, "from": "Kryszat, Guido. 2008. Assur ist Konig. Das mittelassyrische Kro\u0308nungsritual im Lichte assyrischer Identita\u0308tsfindung.txt", "to": "Matous_1981_DiakonoffFS_siegelentumer.txt", "weight": 1}, {"Weight": 0.9690385460853576, "from": "rosen1998.txt", "to": "nougayrol1960.txt", "weight": 1}, {"Weight": 0.9114378690719604, "from": "rosen1998.txt", "to": "owen1990.txt", "weight": 1}, {"Weight": 0.9468822479248048, "from": "nougayrol1960.txt", "to": "owen1990.txt", "weight": 1}, {"Weight": 0.9006262421607971, "from": "nougayrol1960.txt", "to": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "weight": 1}, {"Weight": 0.906722128391266, "from": "nougayrol1960.txt", "to": "vandenhout2002.txt", "weight": 1}, {"Weight": 0.9141766428947448, "from": "nougayrol1960.txt", "to": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "weight": 1}, {"Weight": 0.914988934993744, "from": "nougayrol1960.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.9335074424743652, "from": "owen1990.txt", "to": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "weight": 1}, {"Weight": 0.9381857514381408, "from": "owen1990.txt", "to": "pardee1979-80a.txt", "weight": 1}, {"Weight": 0.9402969479560852, "from": "owen1990.txt", "to": "Yilmaz_2007_AMMY2006.txt", "weight": 1}, {"Weight": 0.942383885383606, "from": "owen1990.txt", "to": "Kienast_1975_WdO8_Pfandrecht.txt", "weight": 1}, {"Weight": 0.9136644005775452, "from": "owen1990.txt", "to": "Hecker, K., G. Kryszat \u0026 L. Matous\u030c - Kappadokische Keilschrifttafeln aus den Sammlungen der Karlsuniversita\u0308t Prag. ICK 4, 1998(cut).txt", "weight": 1}, {"Weight": 0.9465978145599364, "from": "owen1990.txt", "to": "vandenhout2002.txt", "weight": 1}, {"Weight": 0.9351633191108704, "from": "owen1990.txt", "to": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "weight": 1}, {"Weight": 0.9553769826889038, "from": "owen1990.txt", "to": "Bayram_1996_Bel229_slavery.txt", "weight": 1}, {"Weight": 0.9029372930526732, "from": "owen1990.txt", "to": "starke1985.txt", "weight": 1}, {"Weight": 0.9039165377616882, "from": "owen1990.txt", "to": "Renger_2003_Mercanti_trade_market_in_ane.txt", "weight": 1}, {"Weight": 0.916450560092926, "from": "owen1990.txt", "to": "Kienast_1998_DellerFS_tertum.txt", "weight": 1}, {"Weight": 0.9507429003715516, "from": "owen1990.txt", "to": "Bilgic_1990_TTK10_Turkish.txt", "weight": 1}, {"Weight": 0.9597182273864746, "from": "owen1990.txt", "to": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "weight": 1}, {"Weight": 0.951643168926239, "from": "owen1990.txt", "to": "Dercksen_2005_JEOL39_Adad_king.txt", "weight": 1}, {"Weight": 0.9383030533790588, "from": "owen1990.txt", "to": "Michel_2007_RlA11_SadumAdal_Labua.txt", "weight": 1}, {"Weight": 0.9301807284355164, "from": "owen1990.txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.9426124095916748, "from": "owen1990.txt", "to": "Gelb_1969_Ath47_capp_karkemish.txt", "weight": 1}, {"Weight": 0.9569506645202636, "from": "owen1990.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.9014747738838196, "from": "owen1990.txt", "to": "vandenhout2002d.txt", "weight": 1}, {"Weight": 0.9360570311546326, "from": "owen1990.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.9045444130897522, "from": "owen1990.txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.9243981242179872, "from": "owen1990.txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.9255307912826538, "from": "owen1990.txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.9031779766082764, "from": "owen1990.txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.9278852343559264, "from": "owen1990.txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.9049729108810424, "from": "owen1990.txt", "to": "Hrozny_1928_OLZ1928_rev_Clay_BIN4.PDF.txt", "weight": 1}, {"Weight": 0.944720983505249, "from": "owen1990.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.9418423175811768, "from": "owen1990.txt", "to": "Matous_1981_DiakonoffFS_siegelentumer.txt", "weight": 1}, {"Weight": 0.9648003578186036, "from": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "to": "pardee1979-80a.txt", "weight": 1}, {"Weight": 0.9670554399490356, "from": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "to": "Yilmaz_2007_AMMY2006.txt", "weight": 1}, {"Weight": 0.9363930821418762, "from": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "to": "Kienast_1975_WdO8_Pfandrecht.txt", "weight": 1}, {"Weight": 0.9182201623916626, "from": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "to": "PRU 3 plates.txt", "weight": 1}, {"Weight": 0.924037754535675, "from": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "to": "Hecker, K., G. Kryszat \u0026 L. Matous\u030c - Kappadokische Keilschrifttafeln aus den Sammlungen der Karlsuniversita\u0308t Prag. ICK 4, 1998(cut).txt", "weight": 1}, {"Weight": 0.9196595549583436, "from": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "to": "Michel_2010_C9T9_Transport.txt", "weight": 1}, {"Weight": 0.9832569360733032, "from": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "to": "vandenhout2002.txt", "weight": 1}, {"Weight": 0.9481756687164308, "from": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "to": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "weight": 1}, {"Weight": 0.91219824552536, "from": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "to": "Michel_2008_La Correspondes.txt", "weight": 1}, {"Weight": 0.928213894367218, "from": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "to": "Bayram_1996_Bel229_slavery.txt", "weight": 1}, {"Weight": 0.9296392798423768, "from": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "to": "starke1985.txt", "weight": 1}, {"Weight": 0.9359185695648192, "from": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "to": "Renger_2003_Mercanti_trade_market_in_ane.txt", "weight": 1}, {"Weight": 0.91941636800766, "from": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "to": "LewyJ_1936_RHA3_chronologie.txt", "weight": 1}, {"Weight": 0.9073171019554138, "from": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "to": "Kienast_1998_DellerFS_tertum.txt", "weight": 1}, {"Weight": 0.940998375415802, "from": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "to": "Bilgic_1990_TTK10_Turkish.txt", "weight": 1}, {"Weight": 0.9044970273971558, "from": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "to": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "weight": 1}, {"Weight": 0.93869811296463, "from": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "to": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "weight": 1}, {"Weight": 0.9548343420028688, "from": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "to": "Dercksen_2005_JEOL39_Adad_king.txt", "weight": 1}, {"Weight": 0.9494433403015136, "from": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "to": "Michel_2007_RlA11_SadumAdal_Labua.txt", "weight": 1}, {"Weight": 0.9366391897201538, "from": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.9251960515975952, "from": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "to": "Gelb_1969_Ath47_capp_karkemish.txt", "weight": 1}, {"Weight": 0.9441988468170166, "from": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.9562014937400818, "from": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "to": "vandenhout2002d.txt", "weight": 1}, {"Weight": 0.9528340697288512, "from": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.9453287720680236, "from": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.9363977313041688, "from": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.9157271385192872, "from": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.9490506649017334, "from": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "to": "Wartke_1995_inDiscoveries_OA_period.txt", "weight": 1}, {"Weight": 0.9229827523231506, "from": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "to": "politics of mesha routledge.txt", "weight": 1}, {"Weight": 0.9174289107322692, "from": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "to": "Larsen 1979_Sumer35_earlyAssur.txt", "weight": 1}, {"Weight": 0.9433217644691468, "from": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.935334861278534, "from": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "to": "Anatolica 28, 2002.txt", "weight": 1}, {"Weight": 0.9702301621437072, "from": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.9175703525543212, "from": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "to": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "weight": 1}, {"Weight": 0.9280485510826112, "from": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.9401814341545104, "from": "Donbaz_1984_Kienast Kaufvertragsrecht_review.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.9762568473815918, "from": "pardee1979-80a.txt", "to": "Yilmaz_2007_AMMY2006.txt", "weight": 1}, {"Weight": 0.936257302761078, "from": "pardee1979-80a.txt", "to": "Gu\u0308nbatti_2008_AOF 35-1_An Eponym List - KEL G - from Ku\u0308ltepe.txt", "weight": 1}, {"Weight": 0.9444527626037598, "from": "pardee1979-80a.txt", "to": "Kienast_1975_WdO8_Pfandrecht.txt", "weight": 1}, {"Weight": 0.9512060284614564, "from": "pardee1979-80a.txt", "to": "PRU 3 plates.txt", "weight": 1}, {"Weight": 0.9443315267562866, "from": "pardee1979-80a.txt", "to": "Hecker, K., G. Kryszat \u0026 L. Matous\u030c - Kappadokische Keilschrifttafeln aus den Sammlungen der Karlsuniversita\u0308t Prag. ICK 4, 1998(cut).txt", "weight": 1}, {"Weight": 0.9356122016906738, "from": "pardee1979-80a.txt", "to": "Michel_2010_C9T9_Transport.txt", "weight": 1}, {"Weight": 0.9754639863967896, "from": "pardee1979-80a.txt", "to": "vandenhout2002.txt", "weight": 1}, {"Weight": 0.9702492952346802, "from": "pardee1979-80a.txt", "to": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "weight": 1}, {"Weight": 0.951661229133606, "from": "pardee1979-80a.txt", "to": "Michel_2008_La Correspondes.txt", "weight": 1}, {"Weight": 0.9401888847351074, "from": "pardee1979-80a.txt", "to": "Melchert_sarnikzel.txt", "weight": 1}, {"Weight": 0.9315816760063172, "from": "pardee1979-80a.txt", "to": "Bayram_1996_Bel229_slavery.txt", "weight": 1}, {"Weight": 0.9361748099327089, "from": "pardee1979-80a.txt", "to": "starke1985.txt", "weight": 1}, {"Weight": 0.97013258934021, "from": "pardee1979-80a.txt", "to": "Renger_2003_Mercanti_trade_market_in_ane.txt", "weight": 1}, {"Weight": 0.9364569783210754, "from": "pardee1979-80a.txt", "to": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "weight": 1}, {"Weight": 0.9558078646659852, "from": "pardee1979-80a.txt", "to": "LewyJ_1936_RHA3_chronologie.txt", "weight": 1}, {"Weight": 0.9358641505241394, "from": "pardee1979-80a.txt", "to": "Kienast_1998_DellerFS_tertum.txt", "weight": 1}, {"Weight": 0.9495900869369508, "from": "pardee1979-80a.txt", "to": "Bilgic_1990_TTK10_Turkish.txt", "weight": 1}, {"Weight": 0.9151152968406676, "from": "pardee1979-80a.txt", "to": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "weight": 1}, {"Weight": 0.9313663840293884, "from": "pardee1979-80a.txt", "to": "Stein, Gil - Produces, Patrons, and Prestige - Craft Specialists and Emergent Elites in Mesopotamia from 5500-3100.txt", "weight": 1}, {"Weight": 0.9634249210357666, "from": "pardee1979-80a.txt", "to": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "weight": 1}, {"Weight": 0.962842345237732, "from": "pardee1979-80a.txt", "to": "Dercksen_2005_JEOL39_Adad_king.txt", "weight": 1}, {"Weight": 0.932758331298828, "from": "pardee1979-80a.txt", "to": "Zaccagnini_1983_Mobility.txt", "weight": 1}, {"Weight": 0.972774624824524, "from": "pardee1979-80a.txt", "to": "Michel_2007_RlA11_SadumAdal_Labua.txt", "weight": 1}, {"Weight": 0.9592092037200928, "from": "pardee1979-80a.txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.9565963745117188, "from": "pardee1979-80a.txt", "to": "Gelb_1969_Ath47_capp_karkemish.txt", "weight": 1}, {"Weight": 0.9587913155555724, "from": "pardee1979-80a.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.963546633720398, "from": "pardee1979-80a.txt", "to": "vandenhout2002d.txt", "weight": 1}, {"Weight": 0.9668424725532532, "from": "pardee1979-80a.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.9687706232070924, "from": "pardee1979-80a.txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.9399375915527344, "from": "pardee1979-80a.txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.9431077241897584, "from": "pardee1979-80a.txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.9570741653442384, "from": "pardee1979-80a.txt", "to": "Wartke_1995_inDiscoveries_OA_period.txt", "weight": 1}, {"Weight": 0.9483343362808228, "from": "pardee1979-80a.txt", "to": "politics of mesha routledge.txt", "weight": 1}, {"Weight": 0.9231228828430176, "from": "pardee1979-80a.txt", "to": "Larsen 1979_Sumer35_earlyAssur.txt", "weight": 1}, {"Weight": 0.9716062545776368, "from": "pardee1979-80a.txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.9696191549301147, "from": "pardee1979-80a.txt", "to": "Anatolica 28, 2002.txt", "weight": 1}, {"Weight": 0.9323249459266664, "from": "pardee1979-80a.txt", "to": "Garelli_1962_RA56_religion.txt", "weight": 1}, {"Weight": 0.9540693759918212, "from": "pardee1979-80a.txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.9365413784980774, "from": "pardee1979-80a.txt", "to": "Hrozny_1928_OLZ1928_rev_Clay_BIN4.PDF.txt", "weight": 1}, {"Weight": 0.9285757541656494, "from": "pardee1979-80a.txt", "to": "Pinches_1881a_PSBA_British_Museum.txt", "weight": 1}, {"Weight": 0.949143409729004, "from": "pardee1979-80a.txt", "to": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "weight": 1}, {"Weight": 0.9532811641693116, "from": "pardee1979-80a.txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.9580339193344116, "from": "pardee1979-80a.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.9204455018043518, "from": "Yilmaz_2007_AMMY2006.txt", "to": "Gu\u0308nbatti_2008_AOF 35-1_An Eponym List - KEL G - from Ku\u0308ltepe.txt", "weight": 1}, {"Weight": 0.9579580426216124, "from": "Yilmaz_2007_AMMY2006.txt", "to": "Kienast_1975_WdO8_Pfandrecht.txt", "weight": 1}, {"Weight": 0.9494179487228394, "from": "Yilmaz_2007_AMMY2006.txt", "to": "PRU 3 plates.txt", "weight": 1}, {"Weight": 0.9416879415512084, "from": "Yilmaz_2007_AMMY2006.txt", "to": "Hecker, K., G. Kryszat \u0026 L. Matous\u030c - Kappadokische Keilschrifttafeln aus den Sammlungen der Karlsuniversita\u0308t Prag. ICK 4, 1998(cut).txt", "weight": 1}, {"Weight": 0.9388983249664308, "from": "Yilmaz_2007_AMMY2006.txt", "to": "Michel_2010_C9T9_Transport.txt", "weight": 1}, {"Weight": 0.9733988046646118, "from": "Yilmaz_2007_AMMY2006.txt", "to": "vandenhout2002.txt", "weight": 1}, {"Weight": 0.9679419994354248, "from": "Yilmaz_2007_AMMY2006.txt", "to": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "weight": 1}, {"Weight": 0.9343825578689576, "from": "Yilmaz_2007_AMMY2006.txt", "to": "Michel_2008_La Correspondes.txt", "weight": 1}, {"Weight": 0.9211549758911132, "from": "Yilmaz_2007_AMMY2006.txt", "to": "Melchert_sarnikzel.txt", "weight": 1}, {"Weight": 0.9396191835403442, "from": "Yilmaz_2007_AMMY2006.txt", "to": "Bayram_1996_Bel229_slavery.txt", "weight": 1}, {"Weight": 0.9564964771270752, "from": "Yilmaz_2007_AMMY2006.txt", "to": "starke1985.txt", "weight": 1}, {"Weight": 0.9621016383171082, "from": "Yilmaz_2007_AMMY2006.txt", "to": "Renger_2003_Mercanti_trade_market_in_ane.txt", "weight": 1}, {"Weight": 0.9223634004592896, "from": "Yilmaz_2007_AMMY2006.txt", "to": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "weight": 1}, {"Weight": 0.9568175673484802, "from": "Yilmaz_2007_AMMY2006.txt", "to": "LewyJ_1936_RHA3_chronologie.txt", "weight": 1}, {"Weight": 0.9341096878051758, "from": "Yilmaz_2007_AMMY2006.txt", "to": "Kienast_1998_DellerFS_tertum.txt", "weight": 1}, {"Weight": 0.9639599919319152, "from": "Yilmaz_2007_AMMY2006.txt", "to": "Bilgic_1990_TTK10_Turkish.txt", "weight": 1}, {"Weight": 0.91675865650177, "from": "Yilmaz_2007_AMMY2006.txt", "to": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "weight": 1}, {"Weight": 0.9271206855773926, "from": "Yilmaz_2007_AMMY2006.txt", "to": "Stein, Gil - Produces, Patrons, and Prestige - Craft Specialists and Emergent Elites in Mesopotamia from 5500-3100.txt", "weight": 1}, {"Weight": 0.9586957097053528, "from": "Yilmaz_2007_AMMY2006.txt", "to": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "weight": 1}, {"Weight": 0.9623460173606871, "from": "Yilmaz_2007_AMMY2006.txt", "to": "Dercksen_2005_JEOL39_Adad_king.txt", "weight": 1}, {"Weight": 0.9129575490951538, "from": "Yilmaz_2007_AMMY2006.txt", "to": "Zaccagnini_1983_Mobility.txt", "weight": 1}, {"Weight": 0.9686545133590698, "from": "Yilmaz_2007_AMMY2006.txt", "to": "Michel_2007_RlA11_SadumAdal_Labua.txt", "weight": 1}, {"Weight": 0.9596773982048036, "from": "Yilmaz_2007_AMMY2006.txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.949381709098816, "from": "Yilmaz_2007_AMMY2006.txt", "to": "Gelb_1969_Ath47_capp_karkemish.txt", "weight": 1}, {"Weight": 0.9599989652633668, "from": "Yilmaz_2007_AMMY2006.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.968068301677704, "from": "Yilmaz_2007_AMMY2006.txt", "to": "vandenhout2002d.txt", "weight": 1}, {"Weight": 0.9719915986061096, "from": "Yilmaz_2007_AMMY2006.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.9625479578971864, "from": "Yilmaz_2007_AMMY2006.txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.9419281482696532, "from": "Yilmaz_2007_AMMY2006.txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.9496117830276488, "from": "Yilmaz_2007_AMMY2006.txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.9440026879310608, "from": "Yilmaz_2007_AMMY2006.txt", "to": "Wartke_1995_inDiscoveries_OA_period.txt", "weight": 1}, {"Weight": 0.9369107484817504, "from": "Yilmaz_2007_AMMY2006.txt", "to": "politics of mesha routledge.txt", "weight": 1}, {"Weight": 0.9083471298217772, "from": "Yilmaz_2007_AMMY2006.txt", "to": "Larsen 1979_Sumer35_earlyAssur.txt", "weight": 1}, {"Weight": 0.963680863380432, "from": "Yilmaz_2007_AMMY2006.txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.9476682543754578, "from": "Yilmaz_2007_AMMY2006.txt", "to": "Anatolica 28, 2002.txt", "weight": 1}, {"Weight": 0.9187878966331482, "from": "Yilmaz_2007_AMMY2006.txt", "to": "Matous_1981_DiakonoffFS_siegelentumer.txt", "weight": 1}, {"Weight": 0.9096996784210204, "from": "Yilmaz_2007_AMMY2006.txt", "to": "Garelli_1962_RA56_religion.txt", "weight": 1}, {"Weight": 0.9558309316635132, "from": "Yilmaz_2007_AMMY2006.txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.92035973072052, "from": "Yilmaz_2007_AMMY2006.txt", "to": "Hrozny_1928_OLZ1928_rev_Clay_BIN4.PDF.txt", "weight": 1}, {"Weight": 0.9113192558288574, "from": "Yilmaz_2007_AMMY2006.txt", "to": "Pinches_1881a_PSBA_British_Museum.txt", "weight": 1}, {"Weight": 0.9501644372940063, "from": "Yilmaz_2007_AMMY2006.txt", "to": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "weight": 1}, {"Weight": 0.943506121635437, "from": "Yilmaz_2007_AMMY2006.txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.9671315550804138, "from": "Yilmaz_2007_AMMY2006.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.9620925188064576, "from": "Gu\u0308nbatti_2008_AOF 35-1_An Eponym List - KEL G - from Ku\u0308ltepe.txt", "to": "PRU 3 plates.txt", "weight": 1}, {"Weight": 0.9213173985481262, "from": "Gu\u0308nbatti_2008_AOF 35-1_An Eponym List - KEL G - from Ku\u0308ltepe.txt", "to": "Michel_2010_C9T9_Transport.txt", "weight": 1}, {"Weight": 0.9264836311340332, "from": "Gu\u0308nbatti_2008_AOF 35-1_An Eponym List - KEL G - from Ku\u0308ltepe.txt", "to": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "weight": 1}, {"Weight": 0.937677264213562, "from": "Gu\u0308nbatti_2008_AOF 35-1_An Eponym List - KEL G - from Ku\u0308ltepe.txt", "to": "Michel_2008_La Correspondes.txt", "weight": 1}, {"Weight": 0.9644466042518616, "from": "Gu\u0308nbatti_2008_AOF 35-1_An Eponym List - KEL G - from Ku\u0308ltepe.txt", "to": "Melchert_sarnikzel.txt", "weight": 1}, {"Weight": 0.9166663289070128, "from": "Gu\u0308nbatti_2008_AOF 35-1_An Eponym List - KEL G - from Ku\u0308ltepe.txt", "to": "Bilgic\u0327_1947b_Bel11_C\u0327ivi Yaz\u0131l\u0131 Hukuki-I\u0307ktisadi Kaynaklar, Mahiyeti ve Muhtevalar\u0131. Belleten 11 (44), 1947 573-602.txt", "weight": 1}, {"Weight": 0.9395323395729064, "from": "Gu\u0308nbatti_2008_AOF 35-1_An Eponym List - KEL G - from Ku\u0308ltepe.txt", "to": "Dercksen_1999_MOS1_financing.txt", "weight": 1}, {"Weight": 0.9446234703063964, "from": "Gu\u0308nbatti_2008_AOF 35-1_An Eponym List - KEL G - from Ku\u0308ltepe.txt", "to": "Renger_2003_Mercanti_trade_market_in_ane.txt", "weight": 1}, {"Weight": 0.9471402168273926, "from": "Gu\u0308nbatti_2008_AOF 35-1_An Eponym List - KEL G - from Ku\u0308ltepe.txt", "to": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "weight": 1}, {"Weight": 0.9657288789749146, "from": "Gu\u0308nbatti_2008_AOF 35-1_An Eponym List - KEL G - from Ku\u0308ltepe.txt", "to": "LewyJ_1936_RHA3_chronologie.txt", "weight": 1}, {"Weight": 0.942232072353363, "from": "Gu\u0308nbatti_2008_AOF 35-1_An Eponym List - KEL G - from Ku\u0308ltepe.txt", "to": "Pritsch_1956_JCS10_Rev_Babylonian_Laws.txt", "weight": 1}, {"Weight": 0.9226110577583312, "from": "Gu\u0308nbatti_2008_AOF 35-1_An Eponym List - KEL G - from Ku\u0308ltepe.txt", "to": "Michel_1998_3UHKB_Quelques re\u0301flexions sur les archives_p419-433.txt", "weight": 1}, {"Weight": 0.9512118697166444, "from": "Gu\u0308nbatti_2008_AOF 35-1_An Eponym List - KEL G - from Ku\u0308ltepe.txt", "to": "Stein, Gil - Produces, Patrons, and Prestige - Craft Specialists and Emergent Elites in Mesopotamia from 5500-3100.txt", "weight": 1}, {"Weight": 0.942042112350464, "from": "Gu\u0308nbatti_2008_AOF 35-1_An Eponym List - KEL G - from Ku\u0308ltepe.txt", "to": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "weight": 1}, {"Weight": 0.9517453908920288, "from": "Gu\u0308nbatti_2008_AOF 35-1_An Eponym List - KEL G - from Ku\u0308ltepe.txt", "to": "Dercksen, J. G. ed. - Trade and Finance in Ancient Mesopotamia, MOS 1. PIHANS 84, 1997 (2).txt", "weight": 1}, {"Weight": 0.9387444853782654, "from": "Gu\u0308nbatti_2008_AOF 35-1_An Eponym List - KEL G - from Ku\u0308ltepe.txt", "to": "Zaccagnini_1983_Mobility.txt", "weight": 1}, {"Weight": 0.9037514328956604, "from": "Gu\u0308nbatti_2008_AOF 35-1_An Eponym List - KEL G - from Ku\u0308ltepe.txt", "to": "Michel_2007_RlA11_SadumAdal_Labua.txt", "weight": 1}, {"Weight": 0.9537458419799804, "from": "Gu\u0308nbatti_2008_AOF 35-1_An Eponym List - KEL G - from Ku\u0308ltepe.txt", "to": "Klein_2004_ZA94_6_tablets_Uruk.txt", "weight": 1}, {"Weight": 0.9083243608474731, "from": "Gu\u0308nbatti_2008_AOF 35-1_An Eponym List - KEL G - from Ku\u0308ltepe.txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.9035521745681764, "from": "Gu\u0308nbatti_2008_AOF 35-1_An Eponym List - KEL G - from Ku\u0308ltepe.txt", "to": "Gelb_1969_Ath47_capp_karkemish.txt", "weight": 1}, {"Weight": 0.9339058995246888, "from": "Gu\u0308nbatti_2008_AOF 35-1_An Eponym List - KEL G - from Ku\u0308ltepe.txt", "to": "vandenhout2002d.txt", "weight": 1}, {"Weight": 0.9159679412841796, "from": "Gu\u0308nbatti_2008_AOF 35-1_An Eponym List - KEL G - from Ku\u0308ltepe.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.9420532584190368, "from": "Gu\u0308nbatti_2008_AOF 35-1_An Eponym List - KEL G - from Ku\u0308ltepe.txt", "to": "Muhly, J. D. - The Copper Ox-Hide Ingots and the Bronze Age Metals Trade 13.txt", "weight": 1}, {"Weight": 0.941569209098816, "from": "Gu\u0308nbatti_2008_AOF 35-1_An Eponym List - KEL G - from Ku\u0308ltepe.txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.909309983253479, "from": "Gu\u0308nbatti_2008_AOF 35-1_An Eponym List - KEL G - from Ku\u0308ltepe.txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.9105877876281738, "from": "Gu\u0308nbatti_2008_AOF 35-1_An Eponym List - KEL G - from Ku\u0308ltepe.txt", "to": "Wartke_1995_inDiscoveries_OA_period.txt", "weight": 1}, {"Weight": 0.9497811198234558, "from": "Gu\u0308nbatti_2008_AOF 35-1_An Eponym List - KEL G - from Ku\u0308ltepe.txt", "to": "politics of mesha routledge.txt", "weight": 1}, {"Weight": 0.9594884514808656, "from": "Gu\u0308nbatti_2008_AOF 35-1_An Eponym List - KEL G - from Ku\u0308ltepe.txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.9619577527046204, "from": "Gu\u0308nbatti_2008_AOF 35-1_An Eponym List - KEL G - from Ku\u0308ltepe.txt", "to": "Anatolica 28, 2002.txt", "weight": 1}, {"Weight": 0.966213047504425, "from": "Gu\u0308nbatti_2008_AOF 35-1_An Eponym List - KEL G - from Ku\u0308ltepe.txt", "to": "Garelli_1962_RA56_religion.txt", "weight": 1}, {"Weight": 0.9559503197669984, "from": "Gu\u0308nbatti_2008_AOF 35-1_An Eponym List - KEL G - from Ku\u0308ltepe.txt", "to": "Pinches_1881a_PSBA_British_Museum.txt", "weight": 1}, {"Weight": 0.9604253172874452, "from": "Gu\u0308nbatti_2008_AOF 35-1_An Eponym List - KEL G - from Ku\u0308ltepe.txt", "to": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "weight": 1}, {"Weight": 0.95717191696167, "from": "Gu\u0308nbatti_2008_AOF 35-1_An Eponym List - KEL G - from Ku\u0308ltepe.txt", "to": "Jankowska_1967_ArOr35_ep_rotation.txt", "weight": 1}, {"Weight": 0.9298413395881652, "from": "Gu\u0308nbatti_2008_AOF 35-1_An Eponym List - KEL G - from Ku\u0308ltepe.txt", "to": "Kramer, S. N. - Commerce and Trade Gleanings from Sumerian Literature 10.txt", "weight": 1}, {"Weight": 0.9456377029418944, "from": "Gu\u0308nbatti_2008_AOF 35-1_An Eponym List - KEL G - from Ku\u0308ltepe.txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.9312816262245178, "from": "Gu\u0308nbatti_2008_AOF 35-1_An Eponym List - KEL G - from Ku\u0308ltepe.txt", "to": "Larsen 1971_Or40_slander.txt", "weight": 1}, {"Weight": 0.9143278002738952, "from": "Kienast_1975_WdO8_Pfandrecht.txt", "to": "PRU 3 plates.txt", "weight": 1}, {"Weight": 0.9458433985710144, "from": "Kienast_1975_WdO8_Pfandrecht.txt", "to": "vandenhout2002.txt", "weight": 1}, {"Weight": 0.969612956047058, "from": "Kienast_1975_WdO8_Pfandrecht.txt", "to": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "weight": 1}, {"Weight": 0.9058827757835388, "from": "Kienast_1975_WdO8_Pfandrecht.txt", "to": "Michel_2008_La Correspondes.txt", "weight": 1}, {"Weight": 0.9768568277359008, "from": "Kienast_1975_WdO8_Pfandrecht.txt", "to": "Bayram_1996_Bel229_slavery.txt", "weight": 1}, {"Weight": 0.92121160030365, "from": "Kienast_1975_WdO8_Pfandrecht.txt", "to": "starke1985.txt", "weight": 1}, {"Weight": 0.935096561908722, "from": "Kienast_1975_WdO8_Pfandrecht.txt", "to": "Renger_2003_Mercanti_trade_market_in_ane.txt", "weight": 1}, {"Weight": 0.9038718938827516, "from": "Kienast_1975_WdO8_Pfandrecht.txt", "to": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "weight": 1}, {"Weight": 0.9222866296768188, "from": "Kienast_1975_WdO8_Pfandrecht.txt", "to": "LewyJ_1936_RHA3_chronologie.txt", "weight": 1}, {"Weight": 0.9769731163978576, "from": "Kienast_1975_WdO8_Pfandrecht.txt", "to": "Kienast_1998_DellerFS_tertum.txt", "weight": 1}, {"Weight": 0.9784770607948304, "from": "Kienast_1975_WdO8_Pfandrecht.txt", "to": "Bilgic_1990_TTK10_Turkish.txt", "weight": 1}, {"Weight": 0.9458684921264648, "from": "Kienast_1975_WdO8_Pfandrecht.txt", "to": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "weight": 1}, {"Weight": 0.9056663513183594, "from": "Kienast_1975_WdO8_Pfandrecht.txt", "to": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "weight": 1}, {"Weight": 0.9600799679756165, "from": "Kienast_1975_WdO8_Pfandrecht.txt", "to": "Dercksen_2005_JEOL39_Adad_king.txt", "weight": 1}, {"Weight": 0.9498922228813172, "from": "Kienast_1975_WdO8_Pfandrecht.txt", "to": "Michel_2007_RlA11_SadumAdal_Labua.txt", "weight": 1}, {"Weight": 0.9796780943870544, "from": "Kienast_1975_WdO8_Pfandrecht.txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.9767754673957824, "from": "Kienast_1975_WdO8_Pfandrecht.txt", "to": "Gelb_1969_Ath47_capp_karkemish.txt", "weight": 1}, {"Weight": 0.9716407060623168, "from": "Kienast_1975_WdO8_Pfandrecht.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.9386938214302064, "from": "Kienast_1975_WdO8_Pfandrecht.txt", "to": "vandenhout2002d.txt", "weight": 1}, {"Weight": 0.9808911085128784, "from": "Kienast_1975_WdO8_Pfandrecht.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.9614468812942504, "from": "Kienast_1975_WdO8_Pfandrecht.txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.9727590084075928, "from": "Kienast_1975_WdO8_Pfandrecht.txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.9793238639831544, "from": "Kienast_1975_WdO8_Pfandrecht.txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.9094346761703492, "from": "Kienast_1975_WdO8_Pfandrecht.txt", "to": "politics of mesha routledge.txt", "weight": 1}, {"Weight": 0.9358131885528564, "from": "Kienast_1975_WdO8_Pfandrecht.txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.902051031589508, "from": "Kienast_1975_WdO8_Pfandrecht.txt", "to": "Anatolica 28, 2002.txt", "weight": 1}, {"Weight": 0.9645736813545228, "from": "Kienast_1975_WdO8_Pfandrecht.txt", "to": "Matous_1981_DiakonoffFS_siegelentumer.txt", "weight": 1}, {"Weight": 0.9293109178543092, "from": "Kienast_1975_WdO8_Pfandrecht.txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.950397253036499, "from": "Kienast_1975_WdO8_Pfandrecht.txt", "to": "Hrozny_1928_OLZ1928_rev_Clay_BIN4.PDF.txt", "weight": 1}, {"Weight": 0.9096271991729736, "from": "Kienast_1975_WdO8_Pfandrecht.txt", "to": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "weight": 1}, {"Weight": 0.922091782093048, "from": "Kienast_1975_WdO8_Pfandrecht.txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.9563257694244384, "from": "Kienast_1975_WdO8_Pfandrecht.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.9141744375228882, "from": "PRU 3 plates.txt", "to": "Hecker, K., G. Kryszat \u0026 L. Matous\u030c - Kappadokische Keilschrifttafeln aus den Sammlungen der Karlsuniversita\u0308t Prag. ICK 4, 1998(cut).txt", "weight": 1}, {"Weight": 0.9300682544708252, "from": "PRU 3 plates.txt", "to": "Michel_2010_C9T9_Transport.txt", "weight": 1}, {"Weight": 0.9249495267868042, "from": "PRU 3 plates.txt", "to": "vandenhout2002.txt", "weight": 1}, {"Weight": 0.9473695158958436, "from": "PRU 3 plates.txt", "to": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "weight": 1}, {"Weight": 0.9593673944473268, "from": "PRU 3 plates.txt", "to": "Michel_2008_La Correspondes.txt", "weight": 1}, {"Weight": 0.9487966895103456, "from": "PRU 3 plates.txt", "to": "Melchert_sarnikzel.txt", "weight": 1}, {"Weight": 0.9311304688453674, "from": "PRU 3 plates.txt", "to": "starke1985.txt", "weight": 1}, {"Weight": 0.9038900136947632, "from": "PRU 3 plates.txt", "to": "Dercksen_1999_MOS1_financing.txt", "weight": 1}, {"Weight": 0.95094233751297, "from": "PRU 3 plates.txt", "to": "Renger_2003_Mercanti_trade_market_in_ane.txt", "weight": 1}, {"Weight": 0.9377976059913636, "from": "PRU 3 plates.txt", "to": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "weight": 1}, {"Weight": 0.9647516012191772, "from": "PRU 3 plates.txt", "to": "LewyJ_1936_RHA3_chronologie.txt", "weight": 1}, {"Weight": 0.9107077717781068, "from": "PRU 3 plates.txt", "to": "Pritsch_1956_JCS10_Rev_Babylonian_Laws.txt", "weight": 1}, {"Weight": 0.9262912273406982, "from": "PRU 3 plates.txt", "to": "Kienast_1998_DellerFS_tertum.txt", "weight": 1}, {"Weight": 0.9101073145866394, "from": "PRU 3 plates.txt", "to": "Bilgic_1990_TTK10_Turkish.txt", "weight": 1}, {"Weight": 0.9287132024765016, "from": "PRU 3 plates.txt", "to": "Stein, Gil - Produces, Patrons, and Prestige - Craft Specialists and Emergent Elites in Mesopotamia from 5500-3100.txt", "weight": 1}, {"Weight": 0.9520963430404664, "from": "PRU 3 plates.txt", "to": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "weight": 1}, {"Weight": 0.9295024871826172, "from": "PRU 3 plates.txt", "to": "Dercksen, J. G. ed. - Trade and Finance in Ancient Mesopotamia, MOS 1. PIHANS 84, 1997 (2).txt", "weight": 1}, {"Weight": 0.9292152523994446, "from": "PRU 3 plates.txt", "to": "Dercksen_2005_JEOL39_Adad_king.txt", "weight": 1}, {"Weight": 0.9284573793411256, "from": "PRU 3 plates.txt", "to": "Zaccagnini_1983_Mobility.txt", "weight": 1}, {"Weight": 0.9273021817207336, "from": "PRU 3 plates.txt", "to": "Michel_2007_RlA11_SadumAdal_Labua.txt", "weight": 1}, {"Weight": 0.9291965365409852, "from": "PRU 3 plates.txt", "to": "Klein_2004_ZA94_6_tablets_Uruk.txt", "weight": 1}, {"Weight": 0.934653103351593, "from": "PRU 3 plates.txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.924885869026184, "from": "PRU 3 plates.txt", "to": "Gelb_1969_Ath47_capp_karkemish.txt", "weight": 1}, {"Weight": 0.9119670391082764, "from": "PRU 3 plates.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.9554296135902404, "from": "PRU 3 plates.txt", "to": "vandenhout2002d.txt", "weight": 1}, {"Weight": 0.9468891620635986, "from": "PRU 3 plates.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.9204649329185486, "from": "PRU 3 plates.txt", "to": "Muhly, J. D. - The Copper Ox-Hide Ingots and the Bronze Age Metals Trade 13.txt", "weight": 1}, {"Weight": 0.9548287391662598, "from": "PRU 3 plates.txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.9003143906593323, "from": "PRU 3 plates.txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.9350119233131408, "from": "PRU 3 plates.txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.9171298146247864, "from": "PRU 3 plates.txt", "to": "Wartke_1995_inDiscoveries_OA_period.txt", "weight": 1}, {"Weight": 0.9434950947761536, "from": "PRU 3 plates.txt", "to": "politics of mesha routledge.txt", "weight": 1}, {"Weight": 0.9699497818946838, "from": "PRU 3 plates.txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.9655367732048036, "from": "PRU 3 plates.txt", "to": "Anatolica 28, 2002.txt", "weight": 1}, {"Weight": 0.9436105489730836, "from": "PRU 3 plates.txt", "to": "Garelli_1962_RA56_religion.txt", "weight": 1}, {"Weight": 0.9035582542419434, "from": "PRU 3 plates.txt", "to": "Hrozny_1928_OLZ1928_rev_Clay_BIN4.PDF.txt", "weight": 1}, {"Weight": 0.9331058263778688, "from": "PRU 3 plates.txt", "to": "Pinches_1881a_PSBA_British_Museum.txt", "weight": 1}, {"Weight": 0.9658814072608948, "from": "PRU 3 plates.txt", "to": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "weight": 1}, {"Weight": 0.9210955500602722, "from": "PRU 3 plates.txt", "to": "Jankowska_1967_ArOr35_ep_rotation.txt", "weight": 1}, {"Weight": 0.9167560338974, "from": "PRU 3 plates.txt", "to": "Kramer, S. N. - Commerce and Trade Gleanings from Sumerian Literature 10.txt", "weight": 1}, {"Weight": 0.955550491809845, "from": "PRU 3 plates.txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.9265779852867126, "from": "PRU 3 plates.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.9005032777786255, "from": "Hecker, K., G. Kryszat \u0026 L. Matous\u030c - Kappadokische Keilschrifttafeln aus den Sammlungen der Karlsuniversita\u0308t Prag. ICK 4, 1998(cut).txt", "to": "Michel_2010_C9T9_Transport.txt", "weight": 1}, {"Weight": 0.938618302345276, "from": "Hecker, K., G. Kryszat \u0026 L. Matous\u030c - Kappadokische Keilschrifttafeln aus den Sammlungen der Karlsuniversita\u0308t Prag. ICK 4, 1998(cut).txt", "to": "vandenhout2002.txt", "weight": 1}, {"Weight": 0.9219197034835817, "from": "Hecker, K., G. Kryszat \u0026 L. Matous\u030c - Kappadokische Keilschrifttafeln aus den Sammlungen der Karlsuniversita\u0308t Prag. ICK 4, 1998(cut).txt", "to": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "weight": 1}, {"Weight": 0.9412792921066284, "from": "Hecker, K., G. Kryszat \u0026 L. Matous\u030c - Kappadokische Keilschrifttafeln aus den Sammlungen der Karlsuniversita\u0308t Prag. ICK 4, 1998(cut).txt", "to": "Michel_2008_La Correspondes.txt", "weight": 1}, {"Weight": 0.9236976504325868, "from": "Hecker, K., G. Kryszat \u0026 L. Matous\u030c - Kappadokische Keilschrifttafeln aus den Sammlungen der Karlsuniversita\u0308t Prag. ICK 4, 1998(cut).txt", "to": "starke1985.txt", "weight": 1}, {"Weight": 0.9165314435958862, "from": "Hecker, K., G. Kryszat \u0026 L. Matous\u030c - Kappadokische Keilschrifttafeln aus den Sammlungen der Karlsuniversita\u0308t Prag. ICK 4, 1998(cut).txt", "to": "Renger_2003_Mercanti_trade_market_in_ane.txt", "weight": 1}, {"Weight": 0.9098612666130066, "from": "Hecker, K., G. Kryszat \u0026 L. Matous\u030c - Kappadokische Keilschrifttafeln aus den Sammlungen der Karlsuniversita\u0308t Prag. ICK 4, 1998(cut).txt", "to": "LewyJ_1936_RHA3_chronologie.txt", "weight": 1}, {"Weight": 0.9031933546066284, "from": "Hecker, K., G. Kryszat \u0026 L. Matous\u030c - Kappadokische Keilschrifttafeln aus den Sammlungen der Karlsuniversita\u0308t Prag. ICK 4, 1998(cut).txt", "to": "Bilgic_1990_TTK10_Turkish.txt", "weight": 1}, {"Weight": 0.932479202747345, "from": "Hecker, K., G. Kryszat \u0026 L. Matous\u030c - Kappadokische Keilschrifttafeln aus den Sammlungen der Karlsuniversita\u0308t Prag. ICK 4, 1998(cut).txt", "to": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "weight": 1}, {"Weight": 0.9242404699325562, "from": "Hecker, K., G. Kryszat \u0026 L. Matous\u030c - Kappadokische Keilschrifttafeln aus den Sammlungen der Karlsuniversita\u0308t Prag. ICK 4, 1998(cut).txt", "to": "Dercksen_2005_JEOL39_Adad_king.txt", "weight": 1}, {"Weight": 0.900839865207672, "from": "Hecker, K., G. Kryszat \u0026 L. Matous\u030c - Kappadokische Keilschrifttafeln aus den Sammlungen der Karlsuniversita\u0308t Prag. ICK 4, 1998(cut).txt", "to": "Zaccagnini_1983_Mobility.txt", "weight": 1}, {"Weight": 0.93102365732193, "from": "Hecker, K., G. Kryszat \u0026 L. Matous\u030c - Kappadokische Keilschrifttafeln aus den Sammlungen der Karlsuniversita\u0308t Prag. ICK 4, 1998(cut).txt", "to": "Michel_2007_RlA11_SadumAdal_Labua.txt", "weight": 1}, {"Weight": 0.912443459033966, "from": "Hecker, K., G. Kryszat \u0026 L. Matous\u030c - Kappadokische Keilschrifttafeln aus den Sammlungen der Karlsuniversita\u0308t Prag. ICK 4, 1998(cut).txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.926743984222412, "from": "Hecker, K., G. Kryszat \u0026 L. Matous\u030c - Kappadokische Keilschrifttafeln aus den Sammlungen der Karlsuniversita\u0308t Prag. ICK 4, 1998(cut).txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.9244329929351808, "from": "Hecker, K., G. Kryszat \u0026 L. Matous\u030c - Kappadokische Keilschrifttafeln aus den Sammlungen der Karlsuniversita\u0308t Prag. ICK 4, 1998(cut).txt", "to": "vandenhout2002d.txt", "weight": 1}, {"Weight": 0.9325922131538392, "from": "Hecker, K., G. Kryszat \u0026 L. Matous\u030c - Kappadokische Keilschrifttafeln aus den Sammlungen der Karlsuniversita\u0308t Prag. ICK 4, 1998(cut).txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.9147347807884216, "from": "Hecker, K., G. Kryszat \u0026 L. Matous\u030c - Kappadokische Keilschrifttafeln aus den Sammlungen der Karlsuniversita\u0308t Prag. ICK 4, 1998(cut).txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.9119809865951538, "from": "Hecker, K., G. Kryszat \u0026 L. Matous\u030c - Kappadokische Keilschrifttafeln aus den Sammlungen der Karlsuniversita\u0308t Prag. ICK 4, 1998(cut).txt", "to": "Wartke_1995_inDiscoveries_OA_period.txt", "weight": 1}, {"Weight": 0.9000967144966125, "from": "Hecker, K., G. Kryszat \u0026 L. Matous\u030c - Kappadokische Keilschrifttafeln aus den Sammlungen der Karlsuniversita\u0308t Prag. ICK 4, 1998(cut).txt", "to": "politics of mesha routledge.txt", "weight": 1}, {"Weight": 0.90295672416687, "from": "Hecker, K., G. Kryszat \u0026 L. Matous\u030c - Kappadokische Keilschrifttafeln aus den Sammlungen der Karlsuniversita\u0308t Prag. ICK 4, 1998(cut).txt", "to": "Larsen 1979_Sumer35_earlyAssur.txt", "weight": 1}, {"Weight": 0.9308829307556152, "from": "Hecker, K., G. Kryszat \u0026 L. Matous\u030c - Kappadokische Keilschrifttafeln aus den Sammlungen der Karlsuniversita\u0308t Prag. ICK 4, 1998(cut).txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.9332680106163024, "from": "Hecker, K., G. Kryszat \u0026 L. Matous\u030c - Kappadokische Keilschrifttafeln aus den Sammlungen der Karlsuniversita\u0308t Prag. ICK 4, 1998(cut).txt", "to": "Anatolica 28, 2002.txt", "weight": 1}, {"Weight": 0.9143925309181212, "from": "Hecker, K., G. Kryszat \u0026 L. Matous\u030c - Kappadokische Keilschrifttafeln aus den Sammlungen der Karlsuniversita\u0308t Prag. ICK 4, 1998(cut).txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.9179730415344238, "from": "Hecker, K., G. Kryszat \u0026 L. Matous\u030c - Kappadokische Keilschrifttafeln aus den Sammlungen der Karlsuniversita\u0308t Prag. ICK 4, 1998(cut).txt", "to": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "weight": 1}, {"Weight": 0.917721688747406, "from": "Hecker, K., G. Kryszat \u0026 L. Matous\u030c - Kappadokische Keilschrifttafeln aus den Sammlungen der Karlsuniversita\u0308t Prag. ICK 4, 1998(cut).txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.934541642665863, "from": "Hecker, K., G. Kryszat \u0026 L. Matous\u030c - Kappadokische Keilschrifttafeln aus den Sammlungen der Karlsuniversita\u0308t Prag. ICK 4, 1998(cut).txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.924094259738922, "from": "Michel_2010_C9T9_Transport.txt", "to": "vandenhout2002.txt", "weight": 1}, {"Weight": 0.9121021032333374, "from": "Michel_2010_C9T9_Transport.txt", "to": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "weight": 1}, {"Weight": 0.9521114826202391, "from": "Michel_2010_C9T9_Transport.txt", "to": "Melchert_sarnikzel.txt", "weight": 1}, {"Weight": 0.9113073348999025, "from": "Michel_2010_C9T9_Transport.txt", "to": "starke1985.txt", "weight": 1}, {"Weight": 0.9374520778656006, "from": "Michel_2010_C9T9_Transport.txt", "to": "Renger_2003_Mercanti_trade_market_in_ane.txt", "weight": 1}, {"Weight": 0.920275092124939, "from": "Michel_2010_C9T9_Transport.txt", "to": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "weight": 1}, {"Weight": 0.9281557202339172, "from": "Michel_2010_C9T9_Transport.txt", "to": "LewyJ_1936_RHA3_chronologie.txt", "weight": 1}, {"Weight": 0.9147467017173768, "from": "Michel_2010_C9T9_Transport.txt", "to": "AnSt 52, 2002.txt", "weight": 1}, {"Weight": 0.9524227976799012, "from": "Michel_2010_C9T9_Transport.txt", "to": "Stein, Gil - Produces, Patrons, and Prestige - Craft Specialists and Emergent Elites in Mesopotamia from 5500-3100.txt", "weight": 1}, {"Weight": 0.9685240387916564, "from": "Michel_2010_C9T9_Transport.txt", "to": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "weight": 1}, {"Weight": 0.9228086471557616, "from": "Michel_2010_C9T9_Transport.txt", "to": "Dercksen, J. G. ed. - Trade and Finance in Ancient Mesopotamia, MOS 1. PIHANS 84, 1997 (2).txt", "weight": 1}, {"Weight": 0.935713529586792, "from": "Michel_2010_C9T9_Transport.txt", "to": "Zaccagnini_1983_Mobility.txt", "weight": 1}, {"Weight": 0.9198395609855652, "from": "Michel_2010_C9T9_Transport.txt", "to": "Michel_2007_RlA11_SadumAdal_Labua.txt", "weight": 1}, {"Weight": 0.9387248754501344, "from": "Michel_2010_C9T9_Transport.txt", "to": "vandenhout2002d.txt", "weight": 1}, {"Weight": 0.9127228856086732, "from": "Michel_2010_C9T9_Transport.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.9238389134407043, "from": "Michel_2010_C9T9_Transport.txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.9469917416572572, "from": "Michel_2010_C9T9_Transport.txt", "to": "Wartke_1995_inDiscoveries_OA_period.txt", "weight": 1}, {"Weight": 0.9350664615631104, "from": "Michel_2010_C9T9_Transport.txt", "to": "politics of mesha routledge.txt", "weight": 1}, {"Weight": 0.9344953894615172, "from": "Michel_2010_C9T9_Transport.txt", "to": "Larsen 1979_Sumer35_earlyAssur.txt", "weight": 1}, {"Weight": 0.9256168007850648, "from": "Michel_2010_C9T9_Transport.txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.9463157653808594, "from": "Michel_2010_C9T9_Transport.txt", "to": "Anatolica 28, 2002.txt", "weight": 1}, {"Weight": 0.953366994857788, "from": "Michel_2010_C9T9_Transport.txt", "to": "Garelli_1962_RA56_religion.txt", "weight": 1}, {"Weight": 0.9126876592636108, "from": "Michel_2010_C9T9_Transport.txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.927358329296112, "from": "Michel_2010_C9T9_Transport.txt", "to": "Pinches_1881a_PSBA_British_Museum.txt", "weight": 1}, {"Weight": 0.9411770701408386, "from": "Michel_2010_C9T9_Transport.txt", "to": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "weight": 1}, {"Weight": 0.9192058444023132, "from": "Michel_2010_C9T9_Transport.txt", "to": "Jankowska_1967_ArOr35_ep_rotation.txt", "weight": 1}, {"Weight": 0.9073257446289062, "from": "Michel_2010_C9T9_Transport.txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.9246593117713928, "from": "Michel_2010_C9T9_Transport.txt", "to": "Garelli_Michel_1994_AMMY93_tablets_Ankara.txt", "weight": 1}, {"Weight": 0.9311012029647828, "from": "Michel_2010_C9T9_Transport.txt", "to": "LewyJ_1961_HUCA32_Amurritica. HUCA 32, 1961 31-74.txt", "weight": 1}, {"Weight": 0.964970052242279, "from": "vandenhout2002.txt", "to": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "weight": 1}, {"Weight": 0.92666894197464, "from": "vandenhout2002.txt", "to": "Michel_2008_La Correspondes.txt", "weight": 1}, {"Weight": 0.9104205965995787, "from": "vandenhout2002.txt", "to": "Melchert_sarnikzel.txt", "weight": 1}, {"Weight": 0.940535306930542, "from": "vandenhout2002.txt", "to": "Bayram_1996_Bel229_slavery.txt", "weight": 1}, {"Weight": 0.9274221062660216, "from": "vandenhout2002.txt", "to": "starke1985.txt", "weight": 1}, {"Weight": 0.9511700868606568, "from": "vandenhout2002.txt", "to": "Renger_2003_Mercanti_trade_market_in_ane.txt", "weight": 1}, {"Weight": 0.9161577224731444, "from": "vandenhout2002.txt", "to": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "weight": 1}, {"Weight": 0.9270183444023132, "from": "vandenhout2002.txt", "to": "LewyJ_1936_RHA3_chronologie.txt", "weight": 1}, {"Weight": 0.9281541109085084, "from": "vandenhout2002.txt", "to": "Kienast_1998_DellerFS_tertum.txt", "weight": 1}, {"Weight": 0.9517126679420472, "from": "vandenhout2002.txt", "to": "Bilgic_1990_TTK10_Turkish.txt", "weight": 1}, {"Weight": 0.9309754371643066, "from": "vandenhout2002.txt", "to": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "weight": 1}, {"Weight": 0.9121665358543396, "from": "vandenhout2002.txt", "to": "Stein, Gil - Produces, Patrons, and Prestige - Craft Specialists and Emergent Elites in Mesopotamia from 5500-3100.txt", "weight": 1}, {"Weight": 0.9456214904785156, "from": "vandenhout2002.txt", "to": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "weight": 1}, {"Weight": 0.9759365916252136, "from": "vandenhout2002.txt", "to": "Dercksen_2005_JEOL39_Adad_king.txt", "weight": 1}, {"Weight": 0.9084877967834472, "from": "vandenhout2002.txt", "to": "Zaccagnini_1983_Mobility.txt", "weight": 1}, {"Weight": 0.95725017786026, "from": "vandenhout2002.txt", "to": "Michel_2007_RlA11_SadumAdal_Labua.txt", "weight": 1}, {"Weight": 0.9543529748916626, "from": "vandenhout2002.txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.9414745569229126, "from": "vandenhout2002.txt", "to": "Gelb_1969_Ath47_capp_karkemish.txt", "weight": 1}, {"Weight": 0.9612581133842468, "from": "vandenhout2002.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.9691044688224792, "from": "vandenhout2002.txt", "to": "vandenhout2002d.txt", "weight": 1}, {"Weight": 0.9649934768676758, "from": "vandenhout2002.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.958661675453186, "from": "vandenhout2002.txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.9510877132415771, "from": "vandenhout2002.txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.9340822696685792, "from": "vandenhout2002.txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.9618558883666992, "from": "vandenhout2002.txt", "to": "Wartke_1995_inDiscoveries_OA_period.txt", "weight": 1}, {"Weight": 0.9409099221229552, "from": "vandenhout2002.txt", "to": "politics of mesha routledge.txt", "weight": 1}, {"Weight": 0.9331464767456056, "from": "vandenhout2002.txt", "to": "Larsen 1979_Sumer35_earlyAssur.txt", "weight": 1}, {"Weight": 0.9489686489105223, "from": "vandenhout2002.txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.9497737288475036, "from": "vandenhout2002.txt", "to": "Anatolica 28, 2002.txt", "weight": 1}, {"Weight": 0.9009679555892944, "from": "vandenhout2002.txt", "to": "Matous_1981_DiakonoffFS_siegelentumer.txt", "weight": 1}, {"Weight": 0.9754980802536012, "from": "vandenhout2002.txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.9064103960990906, "from": "vandenhout2002.txt", "to": "Hrozny_1928_OLZ1928_rev_Clay_BIN4.PDF.txt", "weight": 1}, {"Weight": 0.9107723236083984, "from": "vandenhout2002.txt", "to": "Pinches_1881a_PSBA_British_Museum.txt", "weight": 1}, {"Weight": 0.9300872087478638, "from": "vandenhout2002.txt", "to": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "weight": 1}, {"Weight": 0.9483182430267334, "from": "vandenhout2002.txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.9505102634429932, "from": "vandenhout2002.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.940698504447937, "from": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "to": "Michel_2008_La Correspondes.txt", "weight": 1}, {"Weight": 0.9280551075935364, "from": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "to": "Melchert_sarnikzel.txt", "weight": 1}, {"Weight": 0.95257967710495, "from": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "to": "Bayram_1996_Bel229_slavery.txt", "weight": 1}, {"Weight": 0.9250012636184692, "from": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "to": "starke1985.txt", "weight": 1}, {"Weight": 0.9616632461547852, "from": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "to": "Renger_2003_Mercanti_trade_market_in_ane.txt", "weight": 1}, {"Weight": 0.9440317153930664, "from": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "to": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "weight": 1}, {"Weight": 0.9467442631721495, "from": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "to": "LewyJ_1936_RHA3_chronologie.txt", "weight": 1}, {"Weight": 0.9631853699684144, "from": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "to": "Kienast_1998_DellerFS_tertum.txt", "weight": 1}, {"Weight": 0.9652228355407716, "from": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "to": "Bilgic_1990_TTK10_Turkish.txt", "weight": 1}, {"Weight": 0.9388306140899658, "from": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "to": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "weight": 1}, {"Weight": 0.9211776852607728, "from": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "to": "Stein, Gil - Produces, Patrons, and Prestige - Craft Specialists and Emergent Elites in Mesopotamia from 5500-3100.txt", "weight": 1}, {"Weight": 0.945265293121338, "from": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "to": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "weight": 1}, {"Weight": 0.9767689108848572, "from": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "to": "Dercksen_2005_JEOL39_Adad_king.txt", "weight": 1}, {"Weight": 0.9164313077926636, "from": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "to": "Zaccagnini_1983_Mobility.txt", "weight": 1}, {"Weight": 0.958858609199524, "from": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "to": "Michel_2007_RlA11_SadumAdal_Labua.txt", "weight": 1}, {"Weight": 0.974055826663971, "from": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.9716348648071288, "from": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "to": "Gelb_1969_Ath47_capp_karkemish.txt", "weight": 1}, {"Weight": 0.9703596234321594, "from": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.9651299118995668, "from": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "to": "vandenhout2002d.txt", "weight": 1}, {"Weight": 0.9797255992889404, "from": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.9015875458717346, "from": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "to": "Muhly, J. D. - The Copper Ox-Hide Ingots and the Bronze Age Metals Trade 13.txt", "weight": 1}, {"Weight": 0.9745773077011108, "from": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.960642635822296, "from": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.9706177115440368, "from": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.940319299697876, "from": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "to": "Wartke_1995_inDiscoveries_OA_period.txt", "weight": 1}, {"Weight": 0.952013909816742, "from": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "to": "politics of mesha routledge.txt", "weight": 1}, {"Weight": 0.959069848060608, "from": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.9526073932647704, "from": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "to": "Anatolica 28, 2002.txt", "weight": 1}, {"Weight": 0.9287790060043336, "from": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "to": "Matous_1981_DiakonoffFS_siegelentumer.txt", "weight": 1}, {"Weight": 0.9029209613800048, "from": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "to": "Garelli_1962_RA56_religion.txt", "weight": 1}, {"Weight": 0.9408629536628724, "from": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.944053053855896, "from": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "to": "Hrozny_1928_OLZ1928_rev_Clay_BIN4.PDF.txt", "weight": 1}, {"Weight": 0.9199656248092652, "from": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "to": "Pinches_1881a_PSBA_British_Museum.txt", "weight": 1}, {"Weight": 0.940995156764984, "from": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "to": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "weight": 1}, {"Weight": 0.9562749862670898, "from": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.9565457701683044, "from": "Hirsch, H. \u0026 H. Hunger eds - Vortra\u0308ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien. BAfO 19, 1982(cut).txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.9302473068237304, "from": "Michel_2008_La Correspondes.txt", "to": "Melchert_sarnikzel.txt", "weight": 1}, {"Weight": 0.91222482919693, "from": "Michel_2008_La Correspondes.txt", "to": "starke1985.txt", "weight": 1}, {"Weight": 0.9353726506233216, "from": "Michel_2008_La Correspondes.txt", "to": "Renger_2003_Mercanti_trade_market_in_ane.txt", "weight": 1}, {"Weight": 0.9223402738571168, "from": "Michel_2008_La Correspondes.txt", "to": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "weight": 1}, {"Weight": 0.9374142289161682, "from": "Michel_2008_La Correspondes.txt", "to": "LewyJ_1936_RHA3_chronologie.txt", "weight": 1}, {"Weight": 0.9206738471984864, "from": "Michel_2008_La Correspondes.txt", "to": "Kienast_1998_DellerFS_tertum.txt", "weight": 1}, {"Weight": 0.906745195388794, "from": "Michel_2008_La Correspondes.txt", "to": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "weight": 1}, {"Weight": 0.9075337052345276, "from": "Michel_2008_La Correspondes.txt", "to": "Stein, Gil - Produces, Patrons, and Prestige - Craft Specialists and Emergent Elites in Mesopotamia from 5500-3100.txt", "weight": 1}, {"Weight": 0.9317829012870787, "from": "Michel_2008_La Correspondes.txt", "to": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "weight": 1}, {"Weight": 0.9015998244285583, "from": "Michel_2008_La Correspondes.txt", "to": "Dercksen, J. G. ed. - Trade and Finance in Ancient Mesopotamia, MOS 1. PIHANS 84, 1997 (2).txt", "weight": 1}, {"Weight": 0.9249153137207032, "from": "Michel_2008_La Correspondes.txt", "to": "Dercksen_2005_JEOL39_Adad_king.txt", "weight": 1}, {"Weight": 0.9273762106895448, "from": "Michel_2008_La Correspondes.txt", "to": "Zaccagnini_1983_Mobility.txt", "weight": 1}, {"Weight": 0.925477147102356, "from": "Michel_2008_La Correspondes.txt", "to": "Michel_2007_RlA11_SadumAdal_Labua.txt", "weight": 1}, {"Weight": 0.920538604259491, "from": "Michel_2008_La Correspondes.txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.9230499863624572, "from": "Michel_2008_La Correspondes.txt", "to": "Gelb_1969_Ath47_capp_karkemish.txt", "weight": 1}, {"Weight": 0.9270201921463012, "from": "Michel_2008_La Correspondes.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.9266852736473083, "from": "Michel_2008_La Correspondes.txt", "to": "vandenhout2002d.txt", "weight": 1}, {"Weight": 0.9362511038780212, "from": "Michel_2008_La Correspondes.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.9405704140663148, "from": "Michel_2008_La Correspondes.txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.92046457529068, "from": "Michel_2008_La Correspondes.txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.9054840207099916, "from": "Michel_2008_La Correspondes.txt", "to": "Wartke_1995_inDiscoveries_OA_period.txt", "weight": 1}, {"Weight": 0.9268723726272584, "from": "Michel_2008_La Correspondes.txt", "to": "politics of mesha routledge.txt", "weight": 1}, {"Weight": 0.9572411775588988, "from": "Michel_2008_La Correspondes.txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.959673285484314, "from": "Michel_2008_La Correspondes.txt", "to": "Anatolica 28, 2002.txt", "weight": 1}, {"Weight": 0.9175153970718384, "from": "Michel_2008_La Correspondes.txt", "to": "Garelli_1962_RA56_religion.txt", "weight": 1}, {"Weight": 0.9011572599411012, "from": "Michel_2008_La Correspondes.txt", "to": "Hrozny_1928_OLZ1928_rev_Clay_BIN4.PDF.txt", "weight": 1}, {"Weight": 0.9071062803268432, "from": "Michel_2008_La Correspondes.txt", "to": "Pinches_1881a_PSBA_British_Museum.txt", "weight": 1}, {"Weight": 0.9396305680274964, "from": "Michel_2008_La Correspondes.txt", "to": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "weight": 1}, {"Weight": 0.9082220792770386, "from": "Michel_2008_La Correspondes.txt", "to": "Kramer, S. N. - Commerce and Trade Gleanings from Sumerian Literature 10.txt", "weight": 1}, {"Weight": 0.9482372999191284, "from": "Michel_2008_La Correspondes.txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.9227520227432252, "from": "Michel_2008_La Correspondes.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.9220697283744812, "from": "Melchert_sarnikzel.txt", "to": "Dercksen_1999_MOS1_financing.txt", "weight": 1}, {"Weight": 0.9509757161140442, "from": "Melchert_sarnikzel.txt", "to": "Renger_2003_Mercanti_trade_market_in_ane.txt", "weight": 1}, {"Weight": 0.9697968363761902, "from": "Melchert_sarnikzel.txt", "to": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "weight": 1}, {"Weight": 0.9425532221794128, "from": "Melchert_sarnikzel.txt", "to": "LewyJ_1936_RHA3_chronologie.txt", "weight": 1}, {"Weight": 0.9489883184432985, "from": "Melchert_sarnikzel.txt", "to": "Pritsch_1956_JCS10_Rev_Babylonian_Laws.txt", "weight": 1}, {"Weight": 0.9232360124588012, "from": "Melchert_sarnikzel.txt", "to": "AnSt 52, 2002.txt", "weight": 1}, {"Weight": 0.9666298031806946, "from": "Melchert_sarnikzel.txt", "to": "Stein, Gil - Produces, Patrons, and Prestige - Craft Specialists and Emergent Elites in Mesopotamia from 5500-3100.txt", "weight": 1}, {"Weight": 0.9677459597587584, "from": "Melchert_sarnikzel.txt", "to": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "weight": 1}, {"Weight": 0.94308739900589, "from": "Melchert_sarnikzel.txt", "to": "Dercksen, J. G. ed. - Trade and Finance in Ancient Mesopotamia, MOS 1. PIHANS 84, 1997 (2).txt", "weight": 1}, {"Weight": 0.9026158452033995, "from": "Melchert_sarnikzel.txt", "to": "Dercksen_2005_JEOL39_Adad_king.txt", "weight": 1}, {"Weight": 0.974498450756073, "from": "Melchert_sarnikzel.txt", "to": "Zaccagnini_1983_Mobility.txt", "weight": 1}, {"Weight": 0.9134238362312316, "from": "Melchert_sarnikzel.txt", "to": "Michel_2007_RlA11_SadumAdal_Labua.txt", "weight": 1}, {"Weight": 0.9465401768684388, "from": "Melchert_sarnikzel.txt", "to": "Klein_2004_ZA94_6_tablets_Uruk.txt", "weight": 1}, {"Weight": 0.9147965908050536, "from": "Melchert_sarnikzel.txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.9451394081115724, "from": "Melchert_sarnikzel.txt", "to": "vandenhout2002d.txt", "weight": 1}, {"Weight": 0.9197704195976256, "from": "Melchert_sarnikzel.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.9366989135742188, "from": "Melchert_sarnikzel.txt", "to": "Muhly, J. D. - The Copper Ox-Hide Ingots and the Bronze Age Metals Trade 13.txt", "weight": 1}, {"Weight": 0.942825198173523, "from": "Melchert_sarnikzel.txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.9425954818725586, "from": "Melchert_sarnikzel.txt", "to": "Wartke_1995_inDiscoveries_OA_period.txt", "weight": 1}, {"Weight": 0.963768184185028, "from": "Melchert_sarnikzel.txt", "to": "politics of mesha routledge.txt", "weight": 1}, {"Weight": 0.9253177642822266, "from": "Melchert_sarnikzel.txt", "to": "Larsen 1979_Sumer35_earlyAssur.txt", "weight": 1}, {"Weight": 0.9535459280014038, "from": "Melchert_sarnikzel.txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.9742313623428344, "from": "Melchert_sarnikzel.txt", "to": "Anatolica 28, 2002.txt", "weight": 1}, {"Weight": 0.9752853512763976, "from": "Melchert_sarnikzel.txt", "to": "Garelli_1962_RA56_religion.txt", "weight": 1}, {"Weight": 0.9652968645095824, "from": "Melchert_sarnikzel.txt", "to": "Pinches_1881a_PSBA_British_Museum.txt", "weight": 1}, {"Weight": 0.965155303478241, "from": "Melchert_sarnikzel.txt", "to": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "weight": 1}, {"Weight": 0.9584062099456788, "from": "Melchert_sarnikzel.txt", "to": "Jankowska_1967_ArOr35_ep_rotation.txt", "weight": 1}, {"Weight": 0.937248468399048, "from": "Melchert_sarnikzel.txt", "to": "Kramer, S. N. - Commerce and Trade Gleanings from Sumerian Literature 10.txt", "weight": 1}, {"Weight": 0.9484328627586364, "from": "Melchert_sarnikzel.txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.9125691652297974, "from": "Melchert_sarnikzel.txt", "to": "Garelli_Michel_1994_AMMY93_tablets_Ankara.txt", "weight": 1}, {"Weight": 0.9134536981582642, "from": "Melchert_sarnikzel.txt", "to": "LewyJ_1961_HUCA32_Amurritica. HUCA 32, 1961 31-74.txt", "weight": 1}, {"Weight": 0.9192121028900146, "from": "Bayram_1996_Bel229_slavery.txt", "to": "Renger_2003_Mercanti_trade_market_in_ane.txt", "weight": 1}, {"Weight": 0.9579067230224608, "from": "Bayram_1996_Bel229_slavery.txt", "to": "Kienast_1998_DellerFS_tertum.txt", "weight": 1}, {"Weight": 0.9799923300743104, "from": "Bayram_1996_Bel229_slavery.txt", "to": "Bilgic_1990_TTK10_Turkish.txt", "weight": 1}, {"Weight": 0.9607067108154296, "from": "Bayram_1996_Bel229_slavery.txt", "to": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "weight": 1}, {"Weight": 0.959289252758026, "from": "Bayram_1996_Bel229_slavery.txt", "to": "Dercksen_2005_JEOL39_Adad_king.txt", "weight": 1}, {"Weight": 0.9327539205551147, "from": "Bayram_1996_Bel229_slavery.txt", "to": "Michel_2007_RlA11_SadumAdal_Labua.txt", "weight": 1}, {"Weight": 0.9581181406974792, "from": "Bayram_1996_Bel229_slavery.txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.9751803874969482, "from": "Bayram_1996_Bel229_slavery.txt", "to": "Gelb_1969_Ath47_capp_karkemish.txt", "weight": 1}, {"Weight": 0.9617897272109984, "from": "Bayram_1996_Bel229_slavery.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.9200340509414672, "from": "Bayram_1996_Bel229_slavery.txt", "to": "vandenhout2002d.txt", "weight": 1}, {"Weight": 0.9564828276634216, "from": "Bayram_1996_Bel229_slavery.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.9406400918960572, "from": "Bayram_1996_Bel229_slavery.txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.9513816237449646, "from": "Bayram_1996_Bel229_slavery.txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.9622165560722352, "from": "Bayram_1996_Bel229_slavery.txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.911644458770752, "from": "Bayram_1996_Bel229_slavery.txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.958413541316986, "from": "Bayram_1996_Bel229_slavery.txt", "to": "Matous_1981_DiakonoffFS_siegelentumer.txt", "weight": 1}, {"Weight": 0.9234659671783448, "from": "Bayram_1996_Bel229_slavery.txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.9492747783660888, "from": "Bayram_1996_Bel229_slavery.txt", "to": "Hrozny_1928_OLZ1928_rev_Clay_BIN4.PDF.txt", "weight": 1}, {"Weight": 0.9031089544296264, "from": "Bayram_1996_Bel229_slavery.txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.9460161328315736, "from": "Bayram_1996_Bel229_slavery.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.9228402376174928, "from": "starke1985.txt", "to": "Renger_2003_Mercanti_trade_market_in_ane.txt", "weight": 1}, {"Weight": 0.9468955397605896, "from": "starke1985.txt", "to": "LewyJ_1936_RHA3_chronologie.txt", "weight": 1}, {"Weight": 0.9012734293937684, "from": "starke1985.txt", "to": "Kienast_1998_DellerFS_tertum.txt", "weight": 1}, {"Weight": 0.922426700592041, "from": "starke1985.txt", "to": "Bilgic_1990_TTK10_Turkish.txt", "weight": 1}, {"Weight": 0.9222440123558044, "from": "starke1985.txt", "to": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "weight": 1}, {"Weight": 0.9163967967033386, "from": "starke1985.txt", "to": "Dercksen_2005_JEOL39_Adad_king.txt", "weight": 1}, {"Weight": 0.9334954023361206, "from": "starke1985.txt", "to": "Michel_2007_RlA11_SadumAdal_Labua.txt", "weight": 1}, {"Weight": 0.9206153750419616, "from": "starke1985.txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.90254545211792, "from": "starke1985.txt", "to": "Gelb_1969_Ath47_capp_karkemish.txt", "weight": 1}, {"Weight": 0.9196720123291016, "from": "starke1985.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.927886128425598, "from": "starke1985.txt", "to": "vandenhout2002d.txt", "weight": 1}, {"Weight": 0.9352847337722778, "from": "starke1985.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.9163632988929749, "from": "starke1985.txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.9155132174491882, "from": "starke1985.txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.9343594908714294, "from": "starke1985.txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.9148325324058532, "from": "starke1985.txt", "to": "Anatolica 28, 2002.txt", "weight": 1}, {"Weight": 0.9035474061965942, "from": "starke1985.txt", "to": "Matous_1981_DiakonoffFS_siegelentumer.txt", "weight": 1}, {"Weight": 0.912787675857544, "from": "starke1985.txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.9345583915710448, "from": "starke1985.txt", "to": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "weight": 1}, {"Weight": 0.95667827129364, "from": "starke1985.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.949500322341919, "from": "Renger_2003_Mercanti_trade_market_in_ane.txt", "to": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "weight": 1}, {"Weight": 0.9546648859977722, "from": "Renger_2003_Mercanti_trade_market_in_ane.txt", "to": "LewyJ_1936_RHA3_chronologie.txt", "weight": 1}, {"Weight": 0.931574046611786, "from": "Renger_2003_Mercanti_trade_market_in_ane.txt", "to": "Kienast_1998_DellerFS_tertum.txt", "weight": 1}, {"Weight": 0.9454787969589232, "from": "Renger_2003_Mercanti_trade_market_in_ane.txt", "to": "Bilgic_1990_TTK10_Turkish.txt", "weight": 1}, {"Weight": 0.9345530271530152, "from": "Renger_2003_Mercanti_trade_market_in_ane.txt", "to": "Stein, Gil - Produces, Patrons, and Prestige - Craft Specialists and Emergent Elites in Mesopotamia from 5500-3100.txt", "weight": 1}, {"Weight": 0.9583422541618348, "from": "Renger_2003_Mercanti_trade_market_in_ane.txt", "to": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "weight": 1}, {"Weight": 0.9505407810211182, "from": "Renger_2003_Mercanti_trade_market_in_ane.txt", "to": "Dercksen_2005_JEOL39_Adad_king.txt", "weight": 1}, {"Weight": 0.9278321266174316, "from": "Renger_2003_Mercanti_trade_market_in_ane.txt", "to": "Zaccagnini_1983_Mobility.txt", "weight": 1}, {"Weight": 0.9713690280914308, "from": "Renger_2003_Mercanti_trade_market_in_ane.txt", "to": "Michel_2007_RlA11_SadumAdal_Labua.txt", "weight": 1}, {"Weight": 0.9522160291671752, "from": "Renger_2003_Mercanti_trade_market_in_ane.txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.9504778385162354, "from": "Renger_2003_Mercanti_trade_market_in_ane.txt", "to": "Gelb_1969_Ath47_capp_karkemish.txt", "weight": 1}, {"Weight": 0.9510364532470704, "from": "Renger_2003_Mercanti_trade_market_in_ane.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.955330729484558, "from": "Renger_2003_Mercanti_trade_market_in_ane.txt", "to": "vandenhout2002d.txt", "weight": 1}, {"Weight": 0.9588364958763124, "from": "Renger_2003_Mercanti_trade_market_in_ane.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.9078874588012696, "from": "Renger_2003_Mercanti_trade_market_in_ane.txt", "to": "Muhly, J. D. - The Copper Ox-Hide Ingots and the Bronze Age Metals Trade 13.txt", "weight": 1}, {"Weight": 0.9614598155021667, "from": "Renger_2003_Mercanti_trade_market_in_ane.txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.9283235669136048, "from": "Renger_2003_Mercanti_trade_market_in_ane.txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.9405675530433656, "from": "Renger_2003_Mercanti_trade_market_in_ane.txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.9449704885482788, "from": "Renger_2003_Mercanti_trade_market_in_ane.txt", "to": "Wartke_1995_inDiscoveries_OA_period.txt", "weight": 1}, {"Weight": 0.954846978187561, "from": "Renger_2003_Mercanti_trade_market_in_ane.txt", "to": "politics of mesha routledge.txt", "weight": 1}, {"Weight": 0.912796437740326, "from": "Renger_2003_Mercanti_trade_market_in_ane.txt", "to": "Larsen 1979_Sumer35_earlyAssur.txt", "weight": 1}, {"Weight": 0.9625495672225952, "from": "Renger_2003_Mercanti_trade_market_in_ane.txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.9652471542358398, "from": "Renger_2003_Mercanti_trade_market_in_ane.txt", "to": "Anatolica 28, 2002.txt", "weight": 1}, {"Weight": 0.934084415435791, "from": "Renger_2003_Mercanti_trade_market_in_ane.txt", "to": "Garelli_1962_RA56_religion.txt", "weight": 1}, {"Weight": 0.9228388667106628, "from": "Renger_2003_Mercanti_trade_market_in_ane.txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.9466148018836976, "from": "Renger_2003_Mercanti_trade_market_in_ane.txt", "to": "Hrozny_1928_OLZ1928_rev_Clay_BIN4.PDF.txt", "weight": 1}, {"Weight": 0.9252215027809144, "from": "Renger_2003_Mercanti_trade_market_in_ane.txt", "to": "Pinches_1881a_PSBA_British_Museum.txt", "weight": 1}, {"Weight": 0.9511185884475708, "from": "Renger_2003_Mercanti_trade_market_in_ane.txt", "to": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "weight": 1}, {"Weight": 0.9037100672721864, "from": "Renger_2003_Mercanti_trade_market_in_ane.txt", "to": "Jankowska_1967_ArOr35_ep_rotation.txt", "weight": 1}, {"Weight": 0.9429513216018676, "from": "Renger_2003_Mercanti_trade_market_in_ane.txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.9419100284576416, "from": "Renger_2003_Mercanti_trade_market_in_ane.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.933680534362793, "from": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "to": "LewyJ_1936_RHA3_chronologie.txt", "weight": 1}, {"Weight": 0.970419943332672, "from": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "to": "Pritsch_1956_JCS10_Rev_Babylonian_Laws.txt", "weight": 1}, {"Weight": 0.922942280769348, "from": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "to": "Kienast_1998_DellerFS_tertum.txt", "weight": 1}, {"Weight": 0.9007461071014404, "from": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "to": "Bilgic_1990_TTK10_Turkish.txt", "weight": 1}, {"Weight": 0.9587384462356568, "from": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "to": "Stein, Gil - Produces, Patrons, and Prestige - Craft Specialists and Emergent Elites in Mesopotamia from 5500-3100.txt", "weight": 1}, {"Weight": 0.9517468214035034, "from": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "to": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "weight": 1}, {"Weight": 0.9068787693977356, "from": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "to": "Dercksen, J. G. ed. - Trade and Finance in Ancient Mesopotamia, MOS 1. PIHANS 84, 1997 (2).txt", "weight": 1}, {"Weight": 0.9294667840003968, "from": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "to": "Dercksen_2005_JEOL39_Adad_king.txt", "weight": 1}, {"Weight": 0.9737123250961304, "from": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "to": "Zaccagnini_1983_Mobility.txt", "weight": 1}, {"Weight": 0.9168207049369812, "from": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "to": "Michel_2007_RlA11_SadumAdal_Labua.txt", "weight": 1}, {"Weight": 0.9288701415061952, "from": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "to": "Klein_2004_ZA94_6_tablets_Uruk.txt", "weight": 1}, {"Weight": 0.9419617652893066, "from": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.9226505756378174, "from": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "to": "Gelb_1969_Ath47_capp_karkemish.txt", "weight": 1}, {"Weight": 0.9101004004478456, "from": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.9493200182914734, "from": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "to": "vandenhout2002d.txt", "weight": 1}, {"Weight": 0.9364173412322998, "from": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.9571849703788756, "from": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "to": "Muhly, J. D. - The Copper Ox-Hide Ingots and the Bronze Age Metals Trade 13.txt", "weight": 1}, {"Weight": 0.953069269657135, "from": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.9150488376617432, "from": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.9367789030075072, "from": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.9320198893547058, "from": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "to": "Wartke_1995_inDiscoveries_OA_period.txt", "weight": 1}, {"Weight": 0.962288737297058, "from": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "to": "politics of mesha routledge.txt", "weight": 1}, {"Weight": 0.91189843416214, "from": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "to": "Larsen 1979_Sumer35_earlyAssur.txt", "weight": 1}, {"Weight": 0.9486903548240662, "from": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.9564390778541564, "from": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "to": "Anatolica 28, 2002.txt", "weight": 1}, {"Weight": 0.9381117820739746, "from": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "to": "Garelli_1962_RA56_religion.txt", "weight": 1}, {"Weight": 0.9097872376441956, "from": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "to": "Hrozny_1928_OLZ1928_rev_Clay_BIN4.PDF.txt", "weight": 1}, {"Weight": 0.951731503009796, "from": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "to": "Pinches_1881a_PSBA_British_Museum.txt", "weight": 1}, {"Weight": 0.9535121321678162, "from": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "to": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "weight": 1}, {"Weight": 0.936661422252655, "from": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "to": "Jankowska_1967_ArOr35_ep_rotation.txt", "weight": 1}, {"Weight": 0.9589062333106996, "from": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "to": "Kramer, S. N. - Commerce and Trade Gleanings from Sumerian Literature 10.txt", "weight": 1}, {"Weight": 0.9567431807518004, "from": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.9046596884727478, "from": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "to": "Larsen 1971_Or40_slander.txt", "weight": 1}, {"Weight": 0.901614248752594, "from": "Jacobsen_1943_JNES2_Parerga_Sumerologica.txt", "to": "Dercksen_1999_MOS1_financing.txt", "weight": 1}, {"Weight": 0.9084116816520692, "from": "LewyJ_1936_RHA3_chronologie.txt", "to": "Pritsch_1956_JCS10_Rev_Babylonian_Laws.txt", "weight": 1}, {"Weight": 0.9198335409164428, "from": "LewyJ_1936_RHA3_chronologie.txt", "to": "Kienast_1998_DellerFS_tertum.txt", "weight": 1}, {"Weight": 0.9232150912284852, "from": "LewyJ_1936_RHA3_chronologie.txt", "to": "Bilgic_1990_TTK10_Turkish.txt", "weight": 1}, {"Weight": 0.9368322491645812, "from": "LewyJ_1936_RHA3_chronologie.txt", "to": "Stein, Gil - Produces, Patrons, and Prestige - Craft Specialists and Emergent Elites in Mesopotamia from 5500-3100.txt", "weight": 1}, {"Weight": 0.9529557824134828, "from": "LewyJ_1936_RHA3_chronologie.txt", "to": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "weight": 1}, {"Weight": 0.9299008250236512, "from": "LewyJ_1936_RHA3_chronologie.txt", "to": "Dercksen, J. G. ed. - Trade and Finance in Ancient Mesopotamia, MOS 1. PIHANS 84, 1997 (2).txt", "weight": 1}, {"Weight": 0.9338929057121276, "from": "LewyJ_1936_RHA3_chronologie.txt", "to": "Dercksen_2005_JEOL39_Adad_king.txt", "weight": 1}, {"Weight": 0.9136122465133668, "from": "LewyJ_1936_RHA3_chronologie.txt", "to": "Zaccagnini_1983_Mobility.txt", "weight": 1}, {"Weight": 0.9410245418548584, "from": "LewyJ_1936_RHA3_chronologie.txt", "to": "Michel_2007_RlA11_SadumAdal_Labua.txt", "weight": 1}, {"Weight": 0.9290343523025512, "from": "LewyJ_1936_RHA3_chronologie.txt", "to": "Klein_2004_ZA94_6_tablets_Uruk.txt", "weight": 1}, {"Weight": 0.9362543225288392, "from": "LewyJ_1936_RHA3_chronologie.txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.9381120204925536, "from": "LewyJ_1936_RHA3_chronologie.txt", "to": "Gelb_1969_Ath47_capp_karkemish.txt", "weight": 1}, {"Weight": 0.9176440834999084, "from": "LewyJ_1936_RHA3_chronologie.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.9519830346107484, "from": "LewyJ_1936_RHA3_chronologie.txt", "to": "vandenhout2002d.txt", "weight": 1}, {"Weight": 0.9463671445846558, "from": "LewyJ_1936_RHA3_chronologie.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.928877055644989, "from": "LewyJ_1936_RHA3_chronologie.txt", "to": "Muhly, J. D. - The Copper Ox-Hide Ingots and the Bronze Age Metals Trade 13.txt", "weight": 1}, {"Weight": 0.9535580277442932, "from": "LewyJ_1936_RHA3_chronologie.txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.9411439895629884, "from": "LewyJ_1936_RHA3_chronologie.txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.9179763197898864, "from": "LewyJ_1936_RHA3_chronologie.txt", "to": "Wartke_1995_inDiscoveries_OA_period.txt", "weight": 1}, {"Weight": 0.943586528301239, "from": "LewyJ_1936_RHA3_chronologie.txt", "to": "politics of mesha routledge.txt", "weight": 1}, {"Weight": 0.9705318808555604, "from": "LewyJ_1936_RHA3_chronologie.txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.9598976373672484, "from": "LewyJ_1936_RHA3_chronologie.txt", "to": "Anatolica 28, 2002.txt", "weight": 1}, {"Weight": 0.93852299451828, "from": "LewyJ_1936_RHA3_chronologie.txt", "to": "Garelli_1962_RA56_religion.txt", "weight": 1}, {"Weight": 0.9262769818305968, "from": "LewyJ_1936_RHA3_chronologie.txt", "to": "Hrozny_1928_OLZ1928_rev_Clay_BIN4.PDF.txt", "weight": 1}, {"Weight": 0.9335600137710572, "from": "LewyJ_1936_RHA3_chronologie.txt", "to": "Pinches_1881a_PSBA_British_Museum.txt", "weight": 1}, {"Weight": 0.9678995013237, "from": "LewyJ_1936_RHA3_chronologie.txt", "to": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "weight": 1}, {"Weight": 0.9279731512069702, "from": "LewyJ_1936_RHA3_chronologie.txt", "to": "Jankowska_1967_ArOr35_ep_rotation.txt", "weight": 1}, {"Weight": 0.9007979035377502, "from": "LewyJ_1936_RHA3_chronologie.txt", "to": "Kramer, S. N. - Commerce and Trade Gleanings from Sumerian Literature 10.txt", "weight": 1}, {"Weight": 0.941445291042328, "from": "LewyJ_1936_RHA3_chronologie.txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.9582312703132628, "from": "LewyJ_1936_RHA3_chronologie.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.9329556822776794, "from": "LewyJ_1936_RHA3_chronologie.txt", "to": "Dercksen_1999_MOS1_financing.txt", "weight": 1}, {"Weight": 0.9578521251678468, "from": "Kienast_1998_DellerFS_tertum.txt", "to": "Bilgic_1990_TTK10_Turkish.txt", "weight": 1}, {"Weight": 0.9464383721351624, "from": "Kienast_1998_DellerFS_tertum.txt", "to": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "weight": 1}, {"Weight": 0.9486272931098938, "from": "Kienast_1998_DellerFS_tertum.txt", "to": "Dercksen_2005_JEOL39_Adad_king.txt", "weight": 1}, {"Weight": 0.9242110252380372, "from": "Kienast_1998_DellerFS_tertum.txt", "to": "Michel_2007_RlA11_SadumAdal_Labua.txt", "weight": 1}, {"Weight": 0.9762742519378662, "from": "Kienast_1998_DellerFS_tertum.txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.967836856842041, "from": "Kienast_1998_DellerFS_tertum.txt", "to": "Gelb_1969_Ath47_capp_karkemish.txt", "weight": 1}, {"Weight": 0.954773247241974, "from": "Kienast_1998_DellerFS_tertum.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.9329648613929749, "from": "Kienast_1998_DellerFS_tertum.txt", "to": "vandenhout2002d.txt", "weight": 1}, {"Weight": 0.9736400246620178, "from": "Kienast_1998_DellerFS_tertum.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.966187059879303, "from": "Kienast_1998_DellerFS_tertum.txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.9664170742034912, "from": "Kienast_1998_DellerFS_tertum.txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.9800254106521606, "from": "Kienast_1998_DellerFS_tertum.txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.9225483536720276, "from": "Kienast_1998_DellerFS_tertum.txt", "to": "politics of mesha routledge.txt", "weight": 1}, {"Weight": 0.940849542617798, "from": "Kienast_1998_DellerFS_tertum.txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.9116844534873962, "from": "Kienast_1998_DellerFS_tertum.txt", "to": "Anatolica 28, 2002.txt", "weight": 1}, {"Weight": 0.947112500667572, "from": "Kienast_1998_DellerFS_tertum.txt", "to": "Matous_1981_DiakonoffFS_siegelentumer.txt", "weight": 1}, {"Weight": 0.9042847156524658, "from": "Kienast_1998_DellerFS_tertum.txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.9467199444770812, "from": "Kienast_1998_DellerFS_tertum.txt", "to": "Hrozny_1928_OLZ1928_rev_Clay_BIN4.PDF.txt", "weight": 1}, {"Weight": 0.9209994673728944, "from": "Kienast_1998_DellerFS_tertum.txt", "to": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "weight": 1}, {"Weight": 0.9015958309173584, "from": "Kienast_1998_DellerFS_tertum.txt", "to": "Kramer, S. N. - Commerce and Trade Gleanings from Sumerian Literature 10.txt", "weight": 1}, {"Weight": 0.9393095970153807, "from": "Kienast_1998_DellerFS_tertum.txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.933212399482727, "from": "Kienast_1998_DellerFS_tertum.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.9453035593032836, "from": "Bilgic_1990_TTK10_Turkish.txt", "to": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "weight": 1}, {"Weight": 0.90840744972229, "from": "Bilgic_1990_TTK10_Turkish.txt", "to": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "weight": 1}, {"Weight": 0.9625712633132936, "from": "Bilgic_1990_TTK10_Turkish.txt", "to": "Dercksen_2005_JEOL39_Adad_king.txt", "weight": 1}, {"Weight": 0.955112636089325, "from": "Bilgic_1990_TTK10_Turkish.txt", "to": "Michel_2007_RlA11_SadumAdal_Labua.txt", "weight": 1}, {"Weight": 0.969166338443756, "from": "Bilgic_1990_TTK10_Turkish.txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.975836455821991, "from": "Bilgic_1990_TTK10_Turkish.txt", "to": "Gelb_1969_Ath47_capp_karkemish.txt", "weight": 1}, {"Weight": 0.9748317003250122, "from": "Bilgic_1990_TTK10_Turkish.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.935508906841278, "from": "Bilgic_1990_TTK10_Turkish.txt", "to": "vandenhout2002d.txt", "weight": 1}, {"Weight": 0.97176194190979, "from": "Bilgic_1990_TTK10_Turkish.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.9543943405151368, "from": "Bilgic_1990_TTK10_Turkish.txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.960355579853058, "from": "Bilgic_1990_TTK10_Turkish.txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.9678521156311036, "from": "Bilgic_1990_TTK10_Turkish.txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.9038011431694032, "from": "Bilgic_1990_TTK10_Turkish.txt", "to": "Wartke_1995_inDiscoveries_OA_period.txt", "weight": 1}, {"Weight": 0.9083541631698608, "from": "Bilgic_1990_TTK10_Turkish.txt", "to": "politics of mesha routledge.txt", "weight": 1}, {"Weight": 0.9326511025428772, "from": "Bilgic_1990_TTK10_Turkish.txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.9067397713661194, "from": "Bilgic_1990_TTK10_Turkish.txt", "to": "Anatolica 28, 2002.txt", "weight": 1}, {"Weight": 0.955572783946991, "from": "Bilgic_1990_TTK10_Turkish.txt", "to": "Matous_1981_DiakonoffFS_siegelentumer.txt", "weight": 1}, {"Weight": 0.9353493452072144, "from": "Bilgic_1990_TTK10_Turkish.txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.9577588438987732, "from": "Bilgic_1990_TTK10_Turkish.txt", "to": "Hrozny_1928_OLZ1928_rev_Clay_BIN4.PDF.txt", "weight": 1}, {"Weight": 0.9070172309875488, "from": "Bilgic_1990_TTK10_Turkish.txt", "to": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "weight": 1}, {"Weight": 0.9186112880706788, "from": "Bilgic_1990_TTK10_Turkish.txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.9634854793548584, "from": "Bilgic_1990_TTK10_Turkish.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.952081024646759, "from": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "to": "Dercksen_2005_JEOL39_Adad_king.txt", "weight": 1}, {"Weight": 0.908671498298645, "from": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "to": "Michel_2007_RlA11_SadumAdal_Labua.txt", "weight": 1}, {"Weight": 0.9421499967575072, "from": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.9510101079940796, "from": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "to": "Gelb_1969_Ath47_capp_karkemish.txt", "weight": 1}, {"Weight": 0.9548535943031312, "from": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.9075888395309448, "from": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "to": "vandenhout2002d.txt", "weight": 1}, {"Weight": 0.9404891133308412, "from": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.9189956188201904, "from": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.9368276000022888, "from": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.9462335109710692, "from": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.9069825410842896, "from": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.9481278657913208, "from": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "to": "Matous_1981_DiakonoffFS_siegelentumer.txt", "weight": 1}, {"Weight": 0.9006816148757935, "from": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.9224669933319092, "from": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "to": "Hrozny_1928_OLZ1928_rev_Clay_BIN4.PDF.txt", "weight": 1}, {"Weight": 0.9098013639450072, "from": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.9309992790222168, "from": "Oates, David - Studies in the Ancient History of Northern Iraq. 2005 (grey).txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.9552785754203796, "from": "Stein, Gil - Produces, Patrons, and Prestige - Craft Specialists and Emergent Elites in Mesopotamia from 5500-3100.txt", "to": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "weight": 1}, {"Weight": 0.9438130259513856, "from": "Stein, Gil - Produces, Patrons, and Prestige - Craft Specialists and Emergent Elites in Mesopotamia from 5500-3100.txt", "to": "Dercksen, J. G. ed. - Trade and Finance in Ancient Mesopotamia, MOS 1. PIHANS 84, 1997 (2).txt", "weight": 1}, {"Weight": 0.9035755395889282, "from": "Stein, Gil - Produces, Patrons, and Prestige - Craft Specialists and Emergent Elites in Mesopotamia from 5500-3100.txt", "to": "Dercksen_2005_JEOL39_Adad_king.txt", "weight": 1}, {"Weight": 0.9606088995933532, "from": "Stein, Gil - Produces, Patrons, and Prestige - Craft Specialists and Emergent Elites in Mesopotamia from 5500-3100.txt", "to": "Zaccagnini_1983_Mobility.txt", "weight": 1}, {"Weight": 0.938742995262146, "from": "Stein, Gil - Produces, Patrons, and Prestige - Craft Specialists and Emergent Elites in Mesopotamia from 5500-3100.txt", "to": "Klein_2004_ZA94_6_tablets_Uruk.txt", "weight": 1}, {"Weight": 0.9035834074020386, "from": "Stein, Gil - Produces, Patrons, and Prestige - Craft Specialists and Emergent Elites in Mesopotamia from 5500-3100.txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.943683624267578, "from": "Stein, Gil - Produces, Patrons, and Prestige - Craft Specialists and Emergent Elites in Mesopotamia from 5500-3100.txt", "to": "vandenhout2002d.txt", "weight": 1}, {"Weight": 0.912090003490448, "from": "Stein, Gil - Produces, Patrons, and Prestige - Craft Specialists and Emergent Elites in Mesopotamia from 5500-3100.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.9199992418289183, "from": "Stein, Gil - Produces, Patrons, and Prestige - Craft Specialists and Emergent Elites in Mesopotamia from 5500-3100.txt", "to": "Muhly, J. D. - The Copper Ox-Hide Ingots and the Bronze Age Metals Trade 13.txt", "weight": 1}, {"Weight": 0.9287838935852052, "from": "Stein, Gil - Produces, Patrons, and Prestige - Craft Specialists and Emergent Elites in Mesopotamia from 5500-3100.txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.9432641863822936, "from": "Stein, Gil - Produces, Patrons, and Prestige - Craft Specialists and Emergent Elites in Mesopotamia from 5500-3100.txt", "to": "Wartke_1995_inDiscoveries_OA_period.txt", "weight": 1}, {"Weight": 0.9568422436714172, "from": "Stein, Gil - Produces, Patrons, and Prestige - Craft Specialists and Emergent Elites in Mesopotamia from 5500-3100.txt", "to": "politics of mesha routledge.txt", "weight": 1}, {"Weight": 0.9223451018333436, "from": "Stein, Gil - Produces, Patrons, and Prestige - Craft Specialists and Emergent Elites in Mesopotamia from 5500-3100.txt", "to": "Larsen 1979_Sumer35_earlyAssur.txt", "weight": 1}, {"Weight": 0.9376128911972046, "from": "Stein, Gil - Produces, Patrons, and Prestige - Craft Specialists and Emergent Elites in Mesopotamia from 5500-3100.txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.9528778195381165, "from": "Stein, Gil - Produces, Patrons, and Prestige - Craft Specialists and Emergent Elites in Mesopotamia from 5500-3100.txt", "to": "Anatolica 28, 2002.txt", "weight": 1}, {"Weight": 0.957607924938202, "from": "Stein, Gil - Produces, Patrons, and Prestige - Craft Specialists and Emergent Elites in Mesopotamia from 5500-3100.txt", "to": "Garelli_1962_RA56_religion.txt", "weight": 1}, {"Weight": 0.9490349292755128, "from": "Stein, Gil - Produces, Patrons, and Prestige - Craft Specialists and Emergent Elites in Mesopotamia from 5500-3100.txt", "to": "Pinches_1881a_PSBA_British_Museum.txt", "weight": 1}, {"Weight": 0.9540241956710817, "from": "Stein, Gil - Produces, Patrons, and Prestige - Craft Specialists and Emergent Elites in Mesopotamia from 5500-3100.txt", "to": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "weight": 1}, {"Weight": 0.9537612795829772, "from": "Stein, Gil - Produces, Patrons, and Prestige - Craft Specialists and Emergent Elites in Mesopotamia from 5500-3100.txt", "to": "Jankowska_1967_ArOr35_ep_rotation.txt", "weight": 1}, {"Weight": 0.9157484769821168, "from": "Stein, Gil - Produces, Patrons, and Prestige - Craft Specialists and Emergent Elites in Mesopotamia from 5500-3100.txt", "to": "Kramer, S. N. - Commerce and Trade Gleanings from Sumerian Literature 10.txt", "weight": 1}, {"Weight": 0.944210171699524, "from": "Stein, Gil - Produces, Patrons, and Prestige - Craft Specialists and Emergent Elites in Mesopotamia from 5500-3100.txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.9265364408493042, "from": "Stein, Gil - Produces, Patrons, and Prestige - Craft Specialists and Emergent Elites in Mesopotamia from 5500-3100.txt", "to": "Dercksen_1999_MOS1_financing.txt", "weight": 1}, {"Weight": 0.9311047792434692, "from": "Stein, Gil - Produces, Patrons, and Prestige - Craft Specialists and Emergent Elites in Mesopotamia from 5500-3100.txt", "to": "Pritsch_1956_JCS10_Rev_Babylonian_Laws.txt", "weight": 1}, {"Weight": 0.9166974425315856, "from": "Stein, Gil - Produces, Patrons, and Prestige - Craft Specialists and Emergent Elites in Mesopotamia from 5500-3100.txt", "to": "LewyJ_1961_HUCA32_Amurritica. HUCA 32, 1961 31-74.txt", "weight": 1}, {"Weight": 0.9237533807754515, "from": "Stein, Gil - Produces, Patrons, and Prestige - Craft Specialists and Emergent Elites in Mesopotamia from 5500-3100.txt", "to": "AnSt 52, 2002.txt", "weight": 1}, {"Weight": 0.9263691306114196, "from": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "to": "Dercksen, J. G. ed. - Trade and Finance in Ancient Mesopotamia, MOS 1. PIHANS 84, 1997 (2).txt", "weight": 1}, {"Weight": 0.9303158521652222, "from": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "to": "Dercksen_2005_JEOL39_Adad_king.txt", "weight": 1}, {"Weight": 0.9549134969711304, "from": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "to": "Zaccagnini_1983_Mobility.txt", "weight": 1}, {"Weight": 0.9471041560173036, "from": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "to": "Michel_2007_RlA11_SadumAdal_Labua.txt", "weight": 1}, {"Weight": 0.9113102555274964, "from": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "to": "Klein_2004_ZA94_6_tablets_Uruk.txt", "weight": 1}, {"Weight": 0.9313969016075134, "from": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.9112631678581238, "from": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "to": "Gelb_1969_Ath47_capp_karkemish.txt", "weight": 1}, {"Weight": 0.9169409275054932, "from": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.9584239721298218, "from": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "to": "vandenhout2002d.txt", "weight": 1}, {"Weight": 0.9457544684410096, "from": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.9155116081237792, "from": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "to": "Muhly, J. D. - The Copper Ox-Hide Ingots and the Bronze Age Metals Trade 13.txt", "weight": 1}, {"Weight": 0.94923734664917, "from": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.9085589647293092, "from": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.9152387380599976, "from": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.9520394802093506, "from": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "to": "Wartke_1995_inDiscoveries_OA_period.txt", "weight": 1}, {"Weight": 0.9506856203079224, "from": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "to": "politics of mesha routledge.txt", "weight": 1}, {"Weight": 0.938125491142273, "from": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "to": "Larsen 1979_Sumer35_earlyAssur.txt", "weight": 1}, {"Weight": 0.9621886014938354, "from": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.970301628112793, "from": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "to": "Anatolica 28, 2002.txt", "weight": 1}, {"Weight": 0.9550695419311525, "from": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "to": "Garelli_1962_RA56_religion.txt", "weight": 1}, {"Weight": 0.925809681415558, "from": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.942426323890686, "from": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "to": "Pinches_1881a_PSBA_British_Museum.txt", "weight": 1}, {"Weight": 0.9659149646759032, "from": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "to": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "weight": 1}, {"Weight": 0.9287407994270324, "from": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "to": "Jankowska_1967_ArOr35_ep_rotation.txt", "weight": 1}, {"Weight": 0.9071387052536012, "from": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "to": "Kramer, S. N. - Commerce and Trade Gleanings from Sumerian Literature 10.txt", "weight": 1}, {"Weight": 0.9429746270179749, "from": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.9223551154136658, "from": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.9050174951553344, "from": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "to": "Pritsch_1956_JCS10_Rev_Babylonian_Laws.txt", "weight": 1}, {"Weight": 0.9184433817863464, "from": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "to": "Garelli_Michel_1994_AMMY93_tablets_Ankara.txt", "weight": 1}, {"Weight": 0.9040303230285645, "from": "Dercksen, J.G. et al. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "to": "LewyJ_1961_HUCA32_Amurritica. HUCA 32, 1961 31-74.txt", "weight": 1}, {"Weight": 0.9523202776908876, "from": "Dercksen_2005_JEOL39_Adad_king.txt", "to": "Michel_2007_RlA11_SadumAdal_Labua.txt", "weight": 1}, {"Weight": 0.9646579027175904, "from": "Dercksen_2005_JEOL39_Adad_king.txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.963640570640564, "from": "Dercksen_2005_JEOL39_Adad_king.txt", "to": "Gelb_1969_Ath47_capp_karkemish.txt", "weight": 1}, {"Weight": 0.9685123562812804, "from": "Dercksen_2005_JEOL39_Adad_king.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.9648933410644532, "from": "Dercksen_2005_JEOL39_Adad_king.txt", "to": "vandenhout2002d.txt", "weight": 1}, {"Weight": 0.9689376354217528, "from": "Dercksen_2005_JEOL39_Adad_king.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.961008369922638, "from": "Dercksen_2005_JEOL39_Adad_king.txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.9532964825630188, "from": "Dercksen_2005_JEOL39_Adad_king.txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.9591420888900756, "from": "Dercksen_2005_JEOL39_Adad_king.txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.9406565427780152, "from": "Dercksen_2005_JEOL39_Adad_king.txt", "to": "Wartke_1995_inDiscoveries_OA_period.txt", "weight": 1}, {"Weight": 0.942028820514679, "from": "Dercksen_2005_JEOL39_Adad_king.txt", "to": "politics of mesha routledge.txt", "weight": 1}, {"Weight": 0.948160707950592, "from": "Dercksen_2005_JEOL39_Adad_king.txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.9407014846801758, "from": "Dercksen_2005_JEOL39_Adad_king.txt", "to": "Anatolica 28, 2002.txt", "weight": 1}, {"Weight": 0.9330293536186218, "from": "Dercksen_2005_JEOL39_Adad_king.txt", "to": "Matous_1981_DiakonoffFS_siegelentumer.txt", "weight": 1}, {"Weight": 0.9502253532409668, "from": "Dercksen_2005_JEOL39_Adad_king.txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.9330886006355286, "from": "Dercksen_2005_JEOL39_Adad_king.txt", "to": "Hrozny_1928_OLZ1928_rev_Clay_BIN4.PDF.txt", "weight": 1}, {"Weight": 0.9009339213371276, "from": "Dercksen_2005_JEOL39_Adad_king.txt", "to": "Pinches_1881a_PSBA_British_Museum.txt", "weight": 1}, {"Weight": 0.9252090454101562, "from": "Dercksen_2005_JEOL39_Adad_king.txt", "to": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "weight": 1}, {"Weight": 0.9523165225982666, "from": "Dercksen_2005_JEOL39_Adad_king.txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.9580467343330384, "from": "Dercksen_2005_JEOL39_Adad_king.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.9192690253257751, "from": "Zaccagnini_1983_Mobility.txt", "to": "Klein_2004_ZA94_6_tablets_Uruk.txt", "weight": 1}, {"Weight": 0.9143729209899902, "from": "Zaccagnini_1983_Mobility.txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.9364731907844543, "from": "Zaccagnini_1983_Mobility.txt", "to": "vandenhout2002d.txt", "weight": 1}, {"Weight": 0.9144181609153748, "from": "Zaccagnini_1983_Mobility.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.9384738802909852, "from": "Zaccagnini_1983_Mobility.txt", "to": "Muhly, J. D. - The Copper Ox-Hide Ingots and the Bronze Age Metals Trade 13.txt", "weight": 1}, {"Weight": 0.9344671964645386, "from": "Zaccagnini_1983_Mobility.txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.9369328022003174, "from": "Zaccagnini_1983_Mobility.txt", "to": "Wartke_1995_inDiscoveries_OA_period.txt", "weight": 1}, {"Weight": 0.9517301917076112, "from": "Zaccagnini_1983_Mobility.txt", "to": "politics of mesha routledge.txt", "weight": 1}, {"Weight": 0.940587282180786, "from": "Zaccagnini_1983_Mobility.txt", "to": "Larsen 1979_Sumer35_earlyAssur.txt", "weight": 1}, {"Weight": 0.9385241270065308, "from": "Zaccagnini_1983_Mobility.txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.9584933519363404, "from": "Zaccagnini_1983_Mobility.txt", "to": "Anatolica 28, 2002.txt", "weight": 1}, {"Weight": 0.9540950059890748, "from": "Zaccagnini_1983_Mobility.txt", "to": "Garelli_1962_RA56_religion.txt", "weight": 1}, {"Weight": 0.955135464668274, "from": "Zaccagnini_1983_Mobility.txt", "to": "Pinches_1881a_PSBA_British_Museum.txt", "weight": 1}, {"Weight": 0.9473092555999756, "from": "Zaccagnini_1983_Mobility.txt", "to": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "weight": 1}, {"Weight": 0.9458290934562684, "from": "Zaccagnini_1983_Mobility.txt", "to": "Jankowska_1967_ArOr35_ep_rotation.txt", "weight": 1}, {"Weight": 0.9595218896865844, "from": "Zaccagnini_1983_Mobility.txt", "to": "Kramer, S. N. - Commerce and Trade Gleanings from Sumerian Literature 10.txt", "weight": 1}, {"Weight": 0.9508558511734008, "from": "Zaccagnini_1983_Mobility.txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.9527600407600404, "from": "Zaccagnini_1983_Mobility.txt", "to": "Pritsch_1956_JCS10_Rev_Babylonian_Laws.txt", "weight": 1}, {"Weight": 0.9253829717636108, "from": "Zaccagnini_1983_Mobility.txt", "to": "Dercksen, J. G. ed. - Trade and Finance in Ancient Mesopotamia, MOS 1. PIHANS 84, 1997 (2).txt", "weight": 1}, {"Weight": 0.9175995588302612, "from": "Zaccagnini_1983_Mobility.txt", "to": "Garelli_Michel_1994_AMMY93_tablets_Ankara.txt", "weight": 1}, {"Weight": 0.9147256016731262, "from": "Zaccagnini_1983_Mobility.txt", "to": "LewyJ_1961_HUCA32_Amurritica. HUCA 32, 1961 31-74.txt", "weight": 1}, {"Weight": 0.9340224266052246, "from": "Zaccagnini_1983_Mobility.txt", "to": "AnSt 52, 2002.txt", "weight": 1}, {"Weight": 0.9504689574241638, "from": "Michel_2007_RlA11_SadumAdal_Labua.txt", "to": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "weight": 1}, {"Weight": 0.9594377875328064, "from": "Michel_2007_RlA11_SadumAdal_Labua.txt", "to": "Gelb_1969_Ath47_capp_karkemish.txt", "weight": 1}, {"Weight": 0.9638772010803224, "from": "Michel_2007_RlA11_SadumAdal_Labua.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.9382344484329224, "from": "Michel_2007_RlA11_SadumAdal_Labua.txt", "to": "vandenhout2002d.txt", "weight": 1}, {"Weight": 0.9585198163986206, "from": "Michel_2007_RlA11_SadumAdal_Labua.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.9437435269355774, "from": "Michel_2007_RlA11_SadumAdal_Labua.txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.9347721338272096, "from": "Michel_2007_RlA11_SadumAdal_Labua.txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.9412538409233092, "from": "Michel_2007_RlA11_SadumAdal_Labua.txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.9289968609809875, "from": "Michel_2007_RlA11_SadumAdal_Labua.txt", "to": "Wartke_1995_inDiscoveries_OA_period.txt", "weight": 1}, {"Weight": 0.9196972846984864, "from": "Michel_2007_RlA11_SadumAdal_Labua.txt", "to": "politics of mesha routledge.txt", "weight": 1}, {"Weight": 0.945551097393036, "from": "Michel_2007_RlA11_SadumAdal_Labua.txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.93889319896698, "from": "Michel_2007_RlA11_SadumAdal_Labua.txt", "to": "Anatolica 28, 2002.txt", "weight": 1}, {"Weight": 0.9146010875701904, "from": "Michel_2007_RlA11_SadumAdal_Labua.txt", "to": "Matous_1981_DiakonoffFS_siegelentumer.txt", "weight": 1}, {"Weight": 0.9298743605613708, "from": "Michel_2007_RlA11_SadumAdal_Labua.txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.944892168045044, "from": "Michel_2007_RlA11_SadumAdal_Labua.txt", "to": "Hrozny_1928_OLZ1928_rev_Clay_BIN4.PDF.txt", "weight": 1}, {"Weight": 0.9257562160491944, "from": "Michel_2007_RlA11_SadumAdal_Labua.txt", "to": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "weight": 1}, {"Weight": 0.9104718565940856, "from": "Michel_2007_RlA11_SadumAdal_Labua.txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.961822271347046, "from": "Michel_2007_RlA11_SadumAdal_Labua.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.9713554978370668, "from": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "to": "Gelb_1969_Ath47_capp_karkemish.txt", "weight": 1}, {"Weight": 0.9697418808937072, "from": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.9585591554641724, "from": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "to": "vandenhout2002d.txt", "weight": 1}, {"Weight": 0.9830144643783568, "from": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.972273290157318, "from": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.9794341325759888, "from": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.9810093641281128, "from": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.9240025281906128, "from": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "to": "Wartke_1995_inDiscoveries_OA_period.txt", "weight": 1}, {"Weight": 0.93351548910141, "from": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "to": "politics of mesha routledge.txt", "weight": 1}, {"Weight": 0.9577339291572572, "from": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.9325754046440125, "from": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "to": "Anatolica 28, 2002.txt", "weight": 1}, {"Weight": 0.9457386136054992, "from": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "to": "Matous_1981_DiakonoffFS_siegelentumer.txt", "weight": 1}, {"Weight": 0.9389875531196594, "from": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.953063428401947, "from": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "to": "Hrozny_1928_OLZ1928_rev_Clay_BIN4.PDF.txt", "weight": 1}, {"Weight": 0.9079652428627014, "from": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "to": "Pinches_1881a_PSBA_British_Museum.txt", "weight": 1}, {"Weight": 0.934143364429474, "from": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "to": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "weight": 1}, {"Weight": 0.91169673204422, "from": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "to": "Kramer, S. N. - Commerce and Trade Gleanings from Sumerian Literature 10.txt", "weight": 1}, {"Weight": 0.9506372213363647, "from": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.9529921412467957, "from": "Buccellati, Federiko - Altassyrische Glyptik. Eine Inhaltliche und Methodologische Annaherung. Diss Tubingen 2005.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.9722487330436708, "from": "Gelb_1969_Ath47_capp_karkemish.txt", "to": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "weight": 1}, {"Weight": 0.9316420555114746, "from": "Gelb_1969_Ath47_capp_karkemish.txt", "to": "vandenhout2002d.txt", "weight": 1}, {"Weight": 0.9717995524406432, "from": "Gelb_1969_Ath47_capp_karkemish.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.961647093296051, "from": "Gelb_1969_Ath47_capp_karkemish.txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.953682541847229, "from": "Gelb_1969_Ath47_capp_karkemish.txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.9789626002311708, "from": "Gelb_1969_Ath47_capp_karkemish.txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.9173129200935364, "from": "Gelb_1969_Ath47_capp_karkemish.txt", "to": "politics of mesha routledge.txt", "weight": 1}, {"Weight": 0.944987654685974, "from": "Gelb_1969_Ath47_capp_karkemish.txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.9246655702590942, "from": "Gelb_1969_Ath47_capp_karkemish.txt", "to": "Anatolica 28, 2002.txt", "weight": 1}, {"Weight": 0.9470335841178894, "from": "Gelb_1969_Ath47_capp_karkemish.txt", "to": "Matous_1981_DiakonoffFS_siegelentumer.txt", "weight": 1}, {"Weight": 0.9093442559242249, "from": "Gelb_1969_Ath47_capp_karkemish.txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.9781997799873352, "from": "Gelb_1969_Ath47_capp_karkemish.txt", "to": "Hrozny_1928_OLZ1928_rev_Clay_BIN4.PDF.txt", "weight": 1}, {"Weight": 0.9118856191635132, "from": "Gelb_1969_Ath47_capp_karkemish.txt", "to": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "weight": 1}, {"Weight": 0.928928017616272, "from": "Gelb_1969_Ath47_capp_karkemish.txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.9596480131149292, "from": "Gelb_1969_Ath47_capp_karkemish.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.9343112111091614, "from": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "to": "vandenhout2002d.txt", "weight": 1}, {"Weight": 0.9763901829719543, "from": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.9513188004493712, "from": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.9598883390426636, "from": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.9641320109367372, "from": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.9072613716125488, "from": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "to": "Wartke_1995_inDiscoveries_OA_period.txt", "weight": 1}, {"Weight": 0.9085187315940856, "from": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "to": "politics of mesha routledge.txt", "weight": 1}, {"Weight": 0.9397183060646056, "from": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.9235275387763976, "from": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "to": "Anatolica 28, 2002.txt", "weight": 1}, {"Weight": 0.9491006135940552, "from": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "to": "Matous_1981_DiakonoffFS_siegelentumer.txt", "weight": 1}, {"Weight": 0.9335597157478333, "from": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.9481180906295776, "from": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "to": "Hrozny_1928_OLZ1928_rev_Clay_BIN4.PDF.txt", "weight": 1}, {"Weight": 0.9017821550369264, "from": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "to": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "weight": 1}, {"Weight": 0.9268767237663268, "from": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.9607577919960022, "from": "Kienast, Burkhart - Die altassyrischen Texte des Orientalischen Seminars in Heidelberg und der Sammlung Erlenmeyer (ATHE). UAVA 1, 1960(cut).txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.9630138278007508, "from": "vandenhout2002d.txt", "to": "Matous_1982b_KrausFS_imdi-ilum.txt", "weight": 1}, {"Weight": 0.9162471890449524, "from": "vandenhout2002d.txt", "to": "Muhly, J. D. - The Copper Ox-Hide Ingots and the Bronze Age Metals Trade 13.txt", "weight": 1}, {"Weight": 0.969097137451172, "from": "vandenhout2002d.txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.941781222820282, "from": "vandenhout2002d.txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.9466195702552797, "from": "vandenhout2002d.txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.9618483781814576, "from": "vandenhout2002d.txt", "to": "Wartke_1995_inDiscoveries_OA_period.txt", "weight": 1}, {"Weight": 0.9623436331748962, "from": "vandenhout2002d.txt", "to": "politics of mesha routledge.txt", "weight": 1}, {"Weight": 0.930658996105194, "from": "vandenhout2002d.txt", "to": "Larsen 1979_Sumer35_earlyAssur.txt", "weight": 1}, {"Weight": 0.9654712080955504, "from": "vandenhout2002d.txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.9614920020103456, "from": "vandenhout2002d.txt", "to": "Anatolica 28, 2002.txt", "weight": 1}, {"Weight": 0.9269192814826964, "from": "vandenhout2002d.txt", "to": "Garelli_1962_RA56_religion.txt", "weight": 1}, {"Weight": 0.954779088497162, "from": "vandenhout2002d.txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.9042230248451232, "from": "vandenhout2002d.txt", "to": "Hrozny_1928_OLZ1928_rev_Clay_BIN4.PDF.txt", "weight": 1}, {"Weight": 0.9470034837722778, "from": "vandenhout2002d.txt", "to": "Pinches_1881a_PSBA_British_Museum.txt", "weight": 1}, {"Weight": 0.9601398706436156, "from": "vandenhout2002d.txt", "to": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "weight": 1}, {"Weight": 0.9179166555404664, "from": "vandenhout2002d.txt", "to": "Jankowska_1967_ArOr35_ep_rotation.txt", "weight": 1}, {"Weight": 0.912770926952362, "from": "vandenhout2002d.txt", "to": "Kramer, S. N. - Commerce and Trade Gleanings from Sumerian Literature 10.txt", "weight": 1}, {"Weight": 0.969119906425476, "from": "vandenhout2002d.txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.9392293691635132, "from": "vandenhout2002d.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.9053639769554138, "from": "vandenhout2002d.txt", "to": "Pritsch_1956_JCS10_Rev_Babylonian_Laws.txt", "weight": 1}, {"Weight": 0.9158816933631896, "from": "vandenhout2002d.txt", "to": "Klein_2004_ZA94_6_tablets_Uruk.txt", "weight": 1}, {"Weight": 0.9789984822273254, "from": "Matous_1982b_KrausFS_imdi-ilum.txt", "to": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "weight": 1}, {"Weight": 0.9728245139122008, "from": "Matous_1982b_KrausFS_imdi-ilum.txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.9794251918792723, "from": "Matous_1982b_KrausFS_imdi-ilum.txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.9312400817871094, "from": "Matous_1982b_KrausFS_imdi-ilum.txt", "to": "Wartke_1995_inDiscoveries_OA_period.txt", "weight": 1}, {"Weight": 0.9414060115814208, "from": "Matous_1982b_KrausFS_imdi-ilum.txt", "to": "politics of mesha routledge.txt", "weight": 1}, {"Weight": 0.9642796516418456, "from": "Matous_1982b_KrausFS_imdi-ilum.txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.9452599883079528, "from": "Matous_1982b_KrausFS_imdi-ilum.txt", "to": "Anatolica 28, 2002.txt", "weight": 1}, {"Weight": 0.944450318813324, "from": "Matous_1982b_KrausFS_imdi-ilum.txt", "to": "Matous_1981_DiakonoffFS_siegelentumer.txt", "weight": 1}, {"Weight": 0.9435021877288818, "from": "Matous_1982b_KrausFS_imdi-ilum.txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.9449568390846252, "from": "Matous_1982b_KrausFS_imdi-ilum.txt", "to": "Hrozny_1928_OLZ1928_rev_Clay_BIN4.PDF.txt", "weight": 1}, {"Weight": 0.9120557904243468, "from": "Matous_1982b_KrausFS_imdi-ilum.txt", "to": "Pinches_1881a_PSBA_British_Museum.txt", "weight": 1}, {"Weight": 0.9448448419570924, "from": "Matous_1982b_KrausFS_imdi-ilum.txt", "to": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "weight": 1}, {"Weight": 0.9551889300346376, "from": "Matous_1982b_KrausFS_imdi-ilum.txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.9600749015808104, "from": "Matous_1982b_KrausFS_imdi-ilum.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.9603517055511476, "from": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "to": "Landsberger_1924_ZA35_Volker.txt", "weight": 1}, {"Weight": 0.9654423594474792, "from": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.9485716223716736, "from": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "to": "Wartke_1995_inDiscoveries_OA_period.txt", "weight": 1}, {"Weight": 0.9664319157600404, "from": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "to": "politics of mesha routledge.txt", "weight": 1}, {"Weight": 0.9088934659957886, "from": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "to": "Larsen 1979_Sumer35_earlyAssur.txt", "weight": 1}, {"Weight": 0.968025803565979, "from": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.9590743780136108, "from": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "to": "Anatolica 28, 2002.txt", "weight": 1}, {"Weight": 0.9071617126464844, "from": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "to": "Matous_1981_DiakonoffFS_siegelentumer.txt", "weight": 1}, {"Weight": 0.926528811454773, "from": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "to": "Garelli_1962_RA56_religion.txt", "weight": 1}, {"Weight": 0.9374330043792723, "from": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.9410640597343444, "from": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "to": "Hrozny_1928_OLZ1928_rev_Clay_BIN4.PDF.txt", "weight": 1}, {"Weight": 0.9515833258628844, "from": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "to": "Pinches_1881a_PSBA_British_Museum.txt", "weight": 1}, {"Weight": 0.9546855688095092, "from": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "to": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "weight": 1}, {"Weight": 0.9146960973739624, "from": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "to": "Jankowska_1967_ArOr35_ep_rotation.txt", "weight": 1}, {"Weight": 0.9195393323898317, "from": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "to": "Kramer, S. N. - Commerce and Trade Gleanings from Sumerian Literature 10.txt", "weight": 1}, {"Weight": 0.9647345542907716, "from": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.9407699704170228, "from": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.9143478274345398, "from": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "to": "Pritsch_1956_JCS10_Rev_Babylonian_Laws.txt", "weight": 1}, {"Weight": 0.9083539843559264, "from": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "to": "Klein_2004_ZA94_6_tablets_Uruk.txt", "weight": 1}, {"Weight": 0.917609930038452, "from": "Michel_1998e_CRRAI34_suites_de_la_mort.txt", "to": "Muhly, J. D. - The Copper Ox-Hide Ingots and the Bronze Age Metals Trade 13.txt", "weight": 1}, {"Weight": 0.9612963795661926, "from": "Landsberger_1924_ZA35_Volker.txt", "to": "Jaques_04_inannaetEbih.txt", "weight": 1}, {"Weight": 0.9209250211715698, "from": "Landsberger_1924_ZA35_Volker.txt", "to": "Wartke_1995_inDiscoveries_OA_period.txt", "weight": 1}, {"Weight": 0.9196894764900208, "from": "Landsberger_1924_ZA35_Volker.txt", "to": "politics of mesha routledge.txt", "weight": 1}, {"Weight": 0.925400733947754, "from": "Landsberger_1924_ZA35_Volker.txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.9066296815872192, "from": "Landsberger_1924_ZA35_Volker.txt", "to": "Anatolica 28, 2002.txt", "weight": 1}, {"Weight": 0.9330989718437196, "from": "Landsberger_1924_ZA35_Volker.txt", "to": "Matous_1981_DiakonoffFS_siegelentumer.txt", "weight": 1}, {"Weight": 0.9423821568489076, "from": "Landsberger_1924_ZA35_Volker.txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.9284453988075256, "from": "Landsberger_1924_ZA35_Volker.txt", "to": "Hrozny_1928_OLZ1928_rev_Clay_BIN4.PDF.txt", "weight": 1}, {"Weight": 0.9058490991592408, "from": "Landsberger_1924_ZA35_Volker.txt", "to": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "weight": 1}, {"Weight": 0.9281461238861084, "from": "Landsberger_1924_ZA35_Volker.txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.9303795099258424, "from": "Landsberger_1924_ZA35_Volker.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.9253432154655457, "from": "Jaques_04_inannaetEbih.txt", "to": "politics of mesha routledge.txt", "weight": 1}, {"Weight": 0.94956773519516, "from": "Jaques_04_inannaetEbih.txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.921834111213684, "from": "Jaques_04_inannaetEbih.txt", "to": "Anatolica 28, 2002.txt", "weight": 1}, {"Weight": 0.9591640830039978, "from": "Jaques_04_inannaetEbih.txt", "to": "Matous_1981_DiakonoffFS_siegelentumer.txt", "weight": 1}, {"Weight": 0.9071909189224244, "from": "Jaques_04_inannaetEbih.txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.9544825553894044, "from": "Jaques_04_inannaetEbih.txt", "to": "Hrozny_1928_OLZ1928_rev_Clay_BIN4.PDF.txt", "weight": 1}, {"Weight": 0.9298456311225892, "from": "Jaques_04_inannaetEbih.txt", "to": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "weight": 1}, {"Weight": 0.9067819714546204, "from": "Jaques_04_inannaetEbih.txt", "to": "Kramer, S. N. - Commerce and Trade Gleanings from Sumerian Literature 10.txt", "weight": 1}, {"Weight": 0.9422109723091124, "from": "Jaques_04_inannaetEbih.txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.955795407295227, "from": "Jaques_04_inannaetEbih.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.9084370732307434, "from": "Jaques_04_inannaetEbih.txt", "to": "Muhly, J. D. - The Copper Ox-Hide Ingots and the Bronze Age Metals Trade 13.txt", "weight": 1}, {"Weight": 0.9657525420188904, "from": "Wartke_1995_inDiscoveries_OA_period.txt", "to": "politics of mesha routledge.txt", "weight": 1}, {"Weight": 0.960426390171051, "from": "Wartke_1995_inDiscoveries_OA_period.txt", "to": "Larsen 1979_Sumer35_earlyAssur.txt", "weight": 1}, {"Weight": 0.932561695575714, "from": "Wartke_1995_inDiscoveries_OA_period.txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.9519634246826172, "from": "Wartke_1995_inDiscoveries_OA_period.txt", "to": "Anatolica 28, 2002.txt", "weight": 1}, {"Weight": 0.93747079372406, "from": "Wartke_1995_inDiscoveries_OA_period.txt", "to": "Garelli_1962_RA56_religion.txt", "weight": 1}, {"Weight": 0.9548502564430236, "from": "Wartke_1995_inDiscoveries_OA_period.txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.9453046917915344, "from": "Wartke_1995_inDiscoveries_OA_period.txt", "to": "Pinches_1881a_PSBA_British_Museum.txt", "weight": 1}, {"Weight": 0.9359201192855836, "from": "Wartke_1995_inDiscoveries_OA_period.txt", "to": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "weight": 1}, {"Weight": 0.9090494513511658, "from": "Wartke_1995_inDiscoveries_OA_period.txt", "to": "Jankowska_1967_ArOr35_ep_rotation.txt", "weight": 1}, {"Weight": 0.9419450759887696, "from": "Wartke_1995_inDiscoveries_OA_period.txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.907330334186554, "from": "Wartke_1995_inDiscoveries_OA_period.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.935533046722412, "from": "Wartke_1995_inDiscoveries_OA_period.txt", "to": "Garelli_Michel_1994_AMMY93_tablets_Ankara.txt", "weight": 1}, {"Weight": 0.9131384491920472, "from": "Wartke_1995_inDiscoveries_OA_period.txt", "to": "LewyJ_1961_HUCA32_Amurritica. HUCA 32, 1961 31-74.txt", "weight": 1}, {"Weight": 0.9009761810302734, "from": "Wartke_1995_inDiscoveries_OA_period.txt", "to": "AnSt 52, 2002.txt", "weight": 1}, {"Weight": 0.928902804851532, "from": "politics of mesha routledge.txt", "to": "Larsen 1979_Sumer35_earlyAssur.txt", "weight": 1}, {"Weight": 0.9497048258781432, "from": "politics of mesha routledge.txt", "to": "Bilgic_1951a_AfO15_ortsnamen.txt", "weight": 1}, {"Weight": 0.9656118750572203, "from": "politics of mesha routledge.txt", "to": "Anatolica 28, 2002.txt", "weight": 1}, {"Weight": 0.9502434134483336, "from": "politics of mesha routledge.txt", "to": "Garelli_1962_RA56_religion.txt", "weight": 1}, {"Weight": 0.9175033569335938, "from": "politics of mesha routledge.txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.9021958708763124, "from": "politics of mesha routledge.txt", "to": "Hrozny_1928_OLZ1928_rev_Clay_BIN4.PDF.txt", "weight": 1}, {"Weight": 0.9688014388084412, "from": "politics of mesha routledge.txt", "to": "Pinches_1881a_PSBA_British_Museum.txt", "weight": 1}, {"Weight": 0.9576845169067384, "from": "politics of mesha routledge.txt", "to": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "weight": 1}, {"Weight": 0.9384544491767884, "from": "politics of mesha routledge.txt", "to": "Jankowska_1967_ArOr35_ep_rotation.txt", "weight": 1}, {"Weight": 0.9232035279273988, "from": "politics of mesha routledge.txt", "to": "Kramer, S. N. - Commerce and Trade Gleanings from Sumerian Literature 10.txt", "weight": 1}, {"Weight": 0.9637171030044556, "from": "politics of mesha routledge.txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.9097382426261902, "from": "politics of mesha routledge.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.913213849067688, "from": "politics of mesha routledge.txt", "to": "Dercksen_1999_MOS1_financing.txt", "weight": 1}, {"Weight": 0.9281561374664308, "from": "politics of mesha routledge.txt", "to": "Pritsch_1956_JCS10_Rev_Babylonian_Laws.txt", "weight": 1}, {"Weight": 0.9346598386764526, "from": "politics of mesha routledge.txt", "to": "Klein_2004_ZA94_6_tablets_Uruk.txt", "weight": 1}, {"Weight": 0.9283657670021056, "from": "politics of mesha routledge.txt", "to": "Muhly, J. D. - The Copper Ox-Hide Ingots and the Bronze Age Metals Trade 13.txt", "weight": 1}, {"Weight": 0.9050648808479308, "from": "politics of mesha routledge.txt", "to": "Dercksen, J. G. ed. - Trade and Finance in Ancient Mesopotamia, MOS 1. PIHANS 84, 1997 (2).txt", "weight": 1}, {"Weight": 0.928952932357788, "from": "Larsen 1979_Sumer35_earlyAssur.txt", "to": "Anatolica 28, 2002.txt", "weight": 1}, {"Weight": 0.913428544998169, "from": "Larsen 1979_Sumer35_earlyAssur.txt", "to": "Garelli_1962_RA56_religion.txt", "weight": 1}, {"Weight": 0.9313142895698548, "from": "Larsen 1979_Sumer35_earlyAssur.txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.917051374912262, "from": "Larsen 1979_Sumer35_earlyAssur.txt", "to": "Pinches_1881a_PSBA_British_Museum.txt", "weight": 1}, {"Weight": 0.9051120281219482, "from": "Larsen 1979_Sumer35_earlyAssur.txt", "to": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "weight": 1}, {"Weight": 0.917500376701355, "from": "Larsen 1979_Sumer35_earlyAssur.txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.9648012518882751, "from": "Larsen 1979_Sumer35_earlyAssur.txt", "to": "Garelli_Michel_1994_AMMY93_tablets_Ankara.txt", "weight": 1}, {"Weight": 0.9368964433670044, "from": "Larsen 1979_Sumer35_earlyAssur.txt", "to": "LewyJ_1961_HUCA32_Amurritica. HUCA 32, 1961 31-74.txt", "weight": 1}, {"Weight": 0.9203389883041382, "from": "Larsen 1979_Sumer35_earlyAssur.txt", "to": "AnSt 52, 2002.txt", "weight": 1}, {"Weight": 0.9742323756217957, "from": "Bilgic_1951a_AfO15_ortsnamen.txt", "to": "Anatolica 28, 2002.txt", "weight": 1}, {"Weight": 0.9370269179344176, "from": "Bilgic_1951a_AfO15_ortsnamen.txt", "to": "Garelli_1962_RA56_religion.txt", "weight": 1}, {"Weight": 0.9246326684951782, "from": "Bilgic_1951a_AfO15_ortsnamen.txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.9285337328910828, "from": "Bilgic_1951a_AfO15_ortsnamen.txt", "to": "Hrozny_1928_OLZ1928_rev_Clay_BIN4.PDF.txt", "weight": 1}, {"Weight": 0.9363036751747132, "from": "Bilgic_1951a_AfO15_ortsnamen.txt", "to": "Pinches_1881a_PSBA_British_Museum.txt", "weight": 1}, {"Weight": 0.9716256856918336, "from": "Bilgic_1951a_AfO15_ortsnamen.txt", "to": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "weight": 1}, {"Weight": 0.9219470024108888, "from": "Bilgic_1951a_AfO15_ortsnamen.txt", "to": "Jankowska_1967_ArOr35_ep_rotation.txt", "weight": 1}, {"Weight": 0.919196367263794, "from": "Bilgic_1951a_AfO15_ortsnamen.txt", "to": "Kramer, S. N. - Commerce and Trade Gleanings from Sumerian Literature 10.txt", "weight": 1}, {"Weight": 0.9698065519332886, "from": "Bilgic_1951a_AfO15_ortsnamen.txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.9467437267303468, "from": "Bilgic_1951a_AfO15_ortsnamen.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.9113409519195556, "from": "Bilgic_1951a_AfO15_ortsnamen.txt", "to": "Pritsch_1956_JCS10_Rev_Babylonian_Laws.txt", "weight": 1}, {"Weight": 0.9146611094474792, "from": "Bilgic_1951a_AfO15_ortsnamen.txt", "to": "Klein_2004_ZA94_6_tablets_Uruk.txt", "weight": 1}, {"Weight": 0.9178062081336976, "from": "Bilgic_1951a_AfO15_ortsnamen.txt", "to": "Muhly, J. D. - The Copper Ox-Hide Ingots and the Bronze Age Metals Trade 13.txt", "weight": 1}, {"Weight": 0.9149053692817688, "from": "Bilgic_1951a_AfO15_ortsnamen.txt", "to": "Dercksen, J. G. ed. - Trade and Finance in Ancient Mesopotamia, MOS 1. PIHANS 84, 1997 (2).txt", "weight": 1}, {"Weight": 0.9593179225921632, "from": "Anatolica 28, 2002.txt", "to": "Garelli_1962_RA56_religion.txt", "weight": 1}, {"Weight": 0.9176735281944276, "from": "Anatolica 28, 2002.txt", "to": "Larsen 1982b_BSMS4_caravan.txt", "weight": 1}, {"Weight": 0.9119631052017212, "from": "Anatolica 28, 2002.txt", "to": "Hrozny_1928_OLZ1928_rev_Clay_BIN4.PDF.txt", "weight": 1}, {"Weight": 0.9544718861579896, "from": "Anatolica 28, 2002.txt", "to": "Pinches_1881a_PSBA_British_Museum.txt", "weight": 1}, {"Weight": 0.967827558517456, "from": "Anatolica 28, 2002.txt", "to": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "weight": 1}, {"Weight": 0.9329758286476136, "from": "Anatolica 28, 2002.txt", "to": "Jankowska_1967_ArOr35_ep_rotation.txt", "weight": 1}, {"Weight": 0.9239020943641664, "from": "Anatolica 28, 2002.txt", "to": "Kramer, S. N. - Commerce and Trade Gleanings from Sumerian Literature 10.txt", "weight": 1}, {"Weight": 0.9660245180130004, "from": "Anatolica 28, 2002.txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.9250725507736206, "from": "Anatolica 28, 2002.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.9081031084060668, "from": "Anatolica 28, 2002.txt", "to": "Dercksen_1999_MOS1_financing.txt", "weight": 1}, {"Weight": 0.9175077676773072, "from": "Anatolica 28, 2002.txt", "to": "Pritsch_1956_JCS10_Rev_Babylonian_Laws.txt", "weight": 1}, {"Weight": 0.9228457808494568, "from": "Anatolica 28, 2002.txt", "to": "Klein_2004_ZA94_6_tablets_Uruk.txt", "weight": 1}, {"Weight": 0.9274435639381408, "from": "Anatolica 28, 2002.txt", "to": "Muhly, J. D. - The Copper Ox-Hide Ingots and the Bronze Age Metals Trade 13.txt", "weight": 1}, {"Weight": 0.9332780838012696, "from": "Anatolica 28, 2002.txt", "to": "Dercksen, J. G. ed. - Trade and Finance in Ancient Mesopotamia, MOS 1. PIHANS 84, 1997 (2).txt", "weight": 1}, {"Weight": 0.9107444882392884, "from": "Anatolica 28, 2002.txt", "to": "Garelli_Michel_1994_AMMY93_tablets_Ankara.txt", "weight": 1}, {"Weight": 0.9611991047859192, "from": "Garelli_1962_RA56_religion.txt", "to": "Pinches_1881a_PSBA_British_Museum.txt", "weight": 1}, {"Weight": 0.9552697539329528, "from": "Garelli_1962_RA56_religion.txt", "to": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "weight": 1}, {"Weight": 0.9622724652290344, "from": "Garelli_1962_RA56_religion.txt", "to": "Jankowska_1967_ArOr35_ep_rotation.txt", "weight": 1}, {"Weight": 0.9134612679481506, "from": "Garelli_1962_RA56_religion.txt", "to": "Kramer, S. N. - Commerce and Trade Gleanings from Sumerian Literature 10.txt", "weight": 1}, {"Weight": 0.9303436279296876, "from": "Garelli_1962_RA56_religion.txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.9091030359268188, "from": "Garelli_1962_RA56_religion.txt", "to": "villard_cane.txt", "weight": 1}, {"Weight": 0.9230198264122008, "from": "Garelli_1962_RA56_religion.txt", "to": "Dercksen_1999_MOS1_financing.txt", "weight": 1}, {"Weight": 0.9232038855552672, "from": "Garelli_1962_RA56_religion.txt", "to": "Pritsch_1956_JCS10_Rev_Babylonian_Laws.txt", "weight": 1}, {"Weight": 0.9423249363899232, "from": "Garelli_1962_RA56_religion.txt", "to": "Klein_2004_ZA94_6_tablets_Uruk.txt", "weight": 1}, {"Weight": 0.9155266880989076, "from": "Garelli_1962_RA56_religion.txt", "to": "Muhly, J. D. - The Copper Ox-Hide Ingots and the Bronze Age Metals Trade 13.txt", "weight": 1}, {"Weight": 0.9526870846748352, "from": "Garelli_1962_RA56_religion.txt", "to": "Dercksen, J. G. ed. - Trade and Finance in Ancient Mesopotamia, MOS 1. PIHANS 84, 1997 (2).txt", "weight": 1}, {"Weight": 0.9093456268310548, "from": "Garelli_1962_RA56_religion.txt", "to": "Garelli_Michel_1994_AMMY93_tablets_Ankara.txt", "weight": 1}, {"Weight": 0.9224279522895812, "from": "Garelli_1962_RA56_religion.txt", "to": "LewyJ_1961_HUCA32_Amurritica. HUCA 32, 1961 31-74.txt", "weight": 1}, {"Weight": 0.9166961312294006, "from": "Garelli_1962_RA56_religion.txt", "to": "AnSt 52, 2002.txt", "weight": 1}, {"Weight": 0.9086087942123412, "from": "Larsen 1982b_BSMS4_caravan.txt", "to": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "weight": 1}, {"Weight": 0.9268881678581238, "from": "Larsen 1982b_BSMS4_caravan.txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.926771640777588, "from": "Larsen 1982b_BSMS4_caravan.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.9073663949966432, "from": "Hrozny_1928_OLZ1928_rev_Clay_BIN4.PDF.txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.9406625628471376, "from": "Hrozny_1928_OLZ1928_rev_Clay_BIN4.PDF.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.9212003350257874, "from": "Hrozny_1928_OLZ1928_rev_Clay_BIN4.PDF.txt", "to": "Matous_1981_DiakonoffFS_siegelentumer.txt", "weight": 1}, {"Weight": 0.9499544501304626, "from": "Pinches_1881a_PSBA_British_Museum.txt", "to": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "weight": 1}, {"Weight": 0.9689047336578368, "from": "Pinches_1881a_PSBA_British_Museum.txt", "to": "Jankowska_1967_ArOr35_ep_rotation.txt", "weight": 1}, {"Weight": 0.939960241317749, "from": "Pinches_1881a_PSBA_British_Museum.txt", "to": "Kramer, S. N. - Commerce and Trade Gleanings from Sumerian Literature 10.txt", "weight": 1}, {"Weight": 0.950896382331848, "from": "Pinches_1881a_PSBA_British_Museum.txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.927635669708252, "from": "Pinches_1881a_PSBA_British_Museum.txt", "to": "Dercksen_1999_MOS1_financing.txt", "weight": 1}, {"Weight": 0.9473243951797484, "from": "Pinches_1881a_PSBA_British_Museum.txt", "to": "Pritsch_1956_JCS10_Rev_Babylonian_Laws.txt", "weight": 1}, {"Weight": 0.9617406129837036, "from": "Pinches_1881a_PSBA_British_Museum.txt", "to": "Klein_2004_ZA94_6_tablets_Uruk.txt", "weight": 1}, {"Weight": 0.9416904449462892, "from": "Pinches_1881a_PSBA_British_Museum.txt", "to": "Muhly, J. D. - The Copper Ox-Hide Ingots and the Bronze Age Metals Trade 13.txt", "weight": 1}, {"Weight": 0.920051097869873, "from": "Pinches_1881a_PSBA_British_Museum.txt", "to": "Dercksen, J. G. ed. - Trade and Finance in Ancient Mesopotamia, MOS 1. PIHANS 84, 1997 (2).txt", "weight": 1}, {"Weight": 0.9037450551986694, "from": "Pinches_1881a_PSBA_British_Museum.txt", "to": "LewyJ_1961_HUCA32_Amurritica. HUCA 32, 1961 31-74.txt", "weight": 1}, {"Weight": 0.9047308564186096, "from": "Pinches_1881a_PSBA_British_Museum.txt", "to": "AnSt 52, 2002.txt", "weight": 1}, {"Weight": 0.9448398351669312, "from": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "to": "Jankowska_1967_ArOr35_ep_rotation.txt", "weight": 1}, {"Weight": 0.9275600910186768, "from": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "to": "Kramer, S. N. - Commerce and Trade Gleanings from Sumerian Literature 10.txt", "weight": 1}, {"Weight": 0.9587488174438475, "from": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "to": "Karaduman_2008_JNES67_3_installment_debts.txt", "weight": 1}, {"Weight": 0.9290828704833984, "from": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.9302205443382264, "from": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "to": "Dercksen_1999_MOS1_financing.txt", "weight": 1}, {"Weight": 0.927723467350006, "from": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "to": "Pritsch_1956_JCS10_Rev_Babylonian_Laws.txt", "weight": 1}, {"Weight": 0.9378609657287598, "from": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "to": "Klein_2004_ZA94_6_tablets_Uruk.txt", "weight": 1}, {"Weight": 0.936754822731018, "from": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "to": "Muhly, J. D. - The Copper Ox-Hide Ingots and the Bronze Age Metals Trade 13.txt", "weight": 1}, {"Weight": 0.9358476400375366, "from": "Erol_2016_Bir Annenin Og\u0306lunu Evlendirme C\u0327abas\u0131.txt", "to": "Dercksen, J. G. ed. - Trade and Finance in Ancient Mesopotamia, MOS 1. PIHANS 84, 1997 (2).txt", "weight": 1}, {"Weight": 0.9207046627998352, "from": "Karaduman_2008_JNES67_3_installment_debts.txt", "to": "singer.txt", "weight": 1}, {"Weight": 0.9248980283737184, "from": "Karaduman_2008_JNES67_3_installment_debts.txt", "to": "Pritsch_1956_JCS10_Rev_Babylonian_Laws.txt", "weight": 1}, {"Weight": 0.9264051914215088, "from": "Karaduman_2008_JNES67_3_installment_debts.txt", "to": "Klein_2004_ZA94_6_tablets_Uruk.txt", "weight": 1}, {"Weight": 0.9206838011741638, "from": "Karaduman_2008_JNES67_3_installment_debts.txt", "to": "Muhly, J. D. - The Copper Ox-Hide Ingots and the Bronze Age Metals Trade 13.txt", "weight": 1}, {"Weight": 0.9270633459091188, "from": "Karaduman_2008_JNES67_3_installment_debts.txt", "to": "Jankowska_1967_ArOr35_ep_rotation.txt", "weight": 1}, {"Weight": 0.9398253560066224, "from": "Karaduman_2008_JNES67_3_installment_debts.txt", "to": "Kramer, S. N. - Commerce and Trade Gleanings from Sumerian Literature 10.txt", "weight": 1}, {"Weight": 0.9001162052154541, "from": "Karaduman_2008_JNES67_3_installment_debts.txt", "to": "Dercksen, J. G. ed. - Trade and Finance in Ancient Mesopotamia, MOS 1. PIHANS 84, 1997 (2).txt", "weight": 1}, {"Weight": 0.943943738937378, "from": "singer.txt", "to": "Matous_1981_DiakonoffFS_siegelentumer.txt", "weight": 1}, {"Weight": 0.9460893273353576, "from": "Anastasio, Stefano - The Archaeology of Upper Mesopotamia. Subartu 1, 1995 (grey).txt", "to": "Bilgic\u0327_1947b_Bel11_C\u0327ivi Yaz\u0131l\u0131 Hukuki-I\u0307ktisadi Kaynaklar, Mahiyeti ve Muhtevalar\u0131. Belleten 11 (44), 1947 573-602.txt", "weight": 1}, {"Weight": 0.9251896739006042, "from": "Anastasio, Stefano - The Archaeology of Upper Mesopotamia. Subartu 1, 1995 (grey).txt", "to": "Yakubovich 2010_Luvian-book.txt", "weight": 1}, {"Weight": 0.949274241924286, "from": "Anastasio, Stefano - The Archaeology of Upper Mesopotamia. Subartu 1, 1995 (grey).txt", "to": "Michel_2015_KIM1_Subartu35.txt", "weight": 1}, {"Weight": 0.9089910984039308, "from": "Anastasio, Stefano - The Archaeology of Upper Mesopotamia. Subartu 1, 1995 (grey).txt", "to": "Michel_1998_3UHKB_Quelques re\u0301flexions sur les archives_p419-433.txt", "weight": 1}, {"Weight": 0.9187862277030944, "from": "Anastasio, Stefano - The Archaeology of Upper Mesopotamia. Subartu 1, 1995 (grey).txt", "to": "AnSt 7, 1957.txt", "weight": 1}, {"Weight": 0.9071372151374816, "from": "Anastasio, Stefano - The Archaeology of Upper Mesopotamia. Subartu 1, 1995 (grey).txt", "to": "Soldt, W.H. van ed. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "weight": 1}, {"Weight": 0.9682328701019288, "from": "Anastasio, Stefano - The Archaeology of Upper Mesopotamia. Subartu 1, 1995 (grey).txt", "to": "Kienast_2003_KienastFS_Intro.txt", "weight": 1}, {"Weight": 0.9487295746803284, "from": "Anastasio, Stefano - The Archaeology of Upper Mesopotamia. Subartu 1, 1995 (grey).txt", "to": "AnSt 54, 2004.txt", "weight": 1}, {"Weight": 0.9714577794075012, "from": "Anastasio, Stefano - The Archaeology of Upper Mesopotamia. Subartu 1, 1995 (grey).txt", "to": "Larsen-Lassen_2014_cultural_encounters_Fs_Stolper_Final-libre.txt", "weight": 1}, {"Weight": 0.9227649569511414, "from": "Bilgic\u0327_1947b_Bel11_C\u0327ivi Yaz\u0131l\u0131 Hukuki-I\u0307ktisadi Kaynaklar, Mahiyeti ve Muhtevalar\u0131. Belleten 11 (44), 1947 573-602.txt", "to": "Dercksen_1999_MOS1_financing.txt", "weight": 1}, {"Weight": 0.9458277225494384, "from": "Bilgic\u0327_1947b_Bel11_C\u0327ivi Yaz\u0131l\u0131 Hukuki-I\u0307ktisadi Kaynaklar, Mahiyeti ve Muhtevalar\u0131. Belleten 11 (44), 1947 573-602.txt", "to": "Yakubovich 2010_Luvian-book.txt", "weight": 1}, {"Weight": 0.9334622025489808, "from": "Bilgic\u0327_1947b_Bel11_C\u0327ivi Yaz\u0131l\u0131 Hukuki-I\u0307ktisadi Kaynaklar, Mahiyeti ve Muhtevalar\u0131. Belleten 11 (44), 1947 573-602.txt", "to": "Pritsch_1956_JCS10_Rev_Babylonian_Laws.txt", "weight": 1}, {"Weight": 0.968863010406494, "from": "Bilgic\u0327_1947b_Bel11_C\u0327ivi Yaz\u0131l\u0131 Hukuki-I\u0307ktisadi Kaynaklar, Mahiyeti ve Muhtevalar\u0131. Belleten 11 (44), 1947 573-602.txt", "to": "Michel_2015_KIM1_Subartu35.txt", "weight": 1}, {"Weight": 0.9552942514419556, "from": "Bilgic\u0327_1947b_Bel11_C\u0327ivi Yaz\u0131l\u0131 Hukuki-I\u0307ktisadi Kaynaklar, Mahiyeti ve Muhtevalar\u0131. Belleten 11 (44), 1947 573-602.txt", "to": "Michel_1998_3UHKB_Quelques re\u0301flexions sur les archives_p419-433.txt", "weight": 1}, {"Weight": 0.9020255208015442, "from": "Bilgic\u0327_1947b_Bel11_C\u0327ivi Yaz\u0131l\u0131 Hukuki-I\u0307ktisadi Kaynaklar, Mahiyeti ve Muhtevalar\u0131. Belleten 11 (44), 1947 573-602.txt", "to": "Dercksen, J. G. ed. - Trade and Finance in Ancient Mesopotamia, MOS 1. PIHANS 84, 1997 (2).txt", "weight": 1}, {"Weight": 0.9450536966323853, "from": "Bilgic\u0327_1947b_Bel11_C\u0327ivi Yaz\u0131l\u0131 Hukuki-I\u0307ktisadi Kaynaklar, Mahiyeti ve Muhtevalar\u0131. Belleten 11 (44), 1947 573-602.txt", "to": "Klein_2004_ZA94_6_tablets_Uruk.txt", "weight": 1}, {"Weight": 0.965022623538971, "from": "Bilgic\u0327_1947b_Bel11_C\u0327ivi Yaz\u0131l\u0131 Hukuki-I\u0307ktisadi Kaynaklar, Mahiyeti ve Muhtevalar\u0131. Belleten 11 (44), 1947 573-602.txt", "to": "AnSt 7, 1957.txt", "weight": 1}, {"Weight": 0.9211233854293824, "from": "Bilgic\u0327_1947b_Bel11_C\u0327ivi Yaz\u0131l\u0131 Hukuki-I\u0307ktisadi Kaynaklar, Mahiyeti ve Muhtevalar\u0131. Belleten 11 (44), 1947 573-602.txt", "to": "Muhly, J. D. - The Copper Ox-Hide Ingots and the Bronze Age Metals Trade 13.txt", "weight": 1}, {"Weight": 0.9508305191993712, "from": "Bilgic\u0327_1947b_Bel11_C\u0327ivi Yaz\u0131l\u0131 Hukuki-I\u0307ktisadi Kaynaklar, Mahiyeti ve Muhtevalar\u0131. Belleten 11 (44), 1947 573-602.txt", "to": "Soldt, W.H. van ed. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "weight": 1}, {"Weight": 0.9477989673614502, "from": "Bilgic\u0327_1947b_Bel11_C\u0327ivi Yaz\u0131l\u0131 Hukuki-I\u0307ktisadi Kaynaklar, Mahiyeti ve Muhtevalar\u0131. Belleten 11 (44), 1947 573-602.txt", "to": "Kienast_2003_KienastFS_Intro.txt", "weight": 1}, {"Weight": 0.977612853050232, "from": "Bilgic\u0327_1947b_Bel11_C\u0327ivi Yaz\u0131l\u0131 Hukuki-I\u0307ktisadi Kaynaklar, Mahiyeti ve Muhtevalar\u0131. Belleten 11 (44), 1947 573-602.txt", "to": "AnSt 54, 2004.txt", "weight": 1}, {"Weight": 0.9244265556335448, "from": "Bilgic\u0327_1947b_Bel11_C\u0327ivi Yaz\u0131l\u0131 Hukuki-I\u0307ktisadi Kaynaklar, Mahiyeti ve Muhtevalar\u0131. Belleten 11 (44), 1947 573-602.txt", "to": "Larsen-Lassen_2014_cultural_encounters_Fs_Stolper_Final-libre.txt", "weight": 1}, {"Weight": 0.9249721765518188, "from": "Bilgic\u0327_1947b_Bel11_C\u0327ivi Yaz\u0131l\u0131 Hukuki-I\u0307ktisadi Kaynaklar, Mahiyeti ve Muhtevalar\u0131. Belleten 11 (44), 1947 573-602.txt", "to": "Jankowska_1967_ArOr35_ep_rotation.txt", "weight": 1}, {"Weight": 0.9005391597747803, "from": "Bilgic\u0327_1947b_Bel11_C\u0327ivi Yaz\u0131l\u0131 Hukuki-I\u0307ktisadi Kaynaklar, Mahiyeti ve Muhtevalar\u0131. Belleten 11 (44), 1947 573-602.txt", "to": "Kramer, S. N. - Commerce and Trade Gleanings from Sumerian Literature 10.txt", "weight": 1}, {"Weight": 0.9445651769638062, "from": "Bilgic\u0327_1947b_Bel11_C\u0327ivi Yaz\u0131l\u0131 Hukuki-I\u0307ktisadi Kaynaklar, Mahiyeti ve Muhtevalar\u0131. Belleten 11 (44), 1947 573-602.txt", "to": "Larsen 1971_Or40_slander.txt", "weight": 1}, {"Weight": 0.9197734594345092, "from": "Bilgic\u0327_1947b_Bel11_C\u0327ivi Yaz\u0131l\u0131 Hukuki-I\u0307ktisadi Kaynaklar, Mahiyeti ve Muhtevalar\u0131. Belleten 11 (44), 1947 573-602.txt", "to": "AnSt 19, 1969.txt", "weight": 1}, {"Weight": 0.9536598324775696, "from": "Yakubovich 2010_Luvian-book.txt", "to": "Michel_2015_KIM1_Subartu35.txt", "weight": 1}, {"Weight": 0.9107423424720764, "from": "Yakubovich 2010_Luvian-book.txt", "to": "Dercksen, J. G. ed. - Trade and Finance in Ancient Mesopotamia, MOS 1. PIHANS 84, 1997 (2).txt", "weight": 1}, {"Weight": 0.9067677855491638, "from": "Yakubovich 2010_Luvian-book.txt", "to": "Klein_2004_ZA94_6_tablets_Uruk.txt", "weight": 1}, {"Weight": 0.9443397521972656, "from": "Yakubovich 2010_Luvian-book.txt", "to": "AnSt 7, 1957.txt", "weight": 1}, {"Weight": 0.9167206287384032, "from": "Yakubovich 2010_Luvian-book.txt", "to": "Soldt, W.H. van ed. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "weight": 1}, {"Weight": 0.938579797744751, "from": "Yakubovich 2010_Luvian-book.txt", "to": "Kienast_2003_KienastFS_Intro.txt", "weight": 1}, {"Weight": 0.959007978439331, "from": "Yakubovich 2010_Luvian-book.txt", "to": "AnSt 54, 2004.txt", "weight": 1}, {"Weight": 0.9081302285194396, "from": "Yakubovich 2010_Luvian-book.txt", "to": "Larsen-Lassen_2014_cultural_encounters_Fs_Stolper_Final-libre.txt", "weight": 1}, {"Weight": 0.9084515571594238, "from": "Yakubovich 2010_Luvian-book.txt", "to": "Larsen 1971_Or40_slander.txt", "weight": 1}, {"Weight": 0.9010407328605652, "from": "Yakubovich 2010_Luvian-book.txt", "to": "Dercksen_1999_MOS1_financing.txt", "weight": 1}, {"Weight": 0.905338168144226, "from": "Yakubovich 2010_Luvian-book.txt", "to": "AnSt 19, 1969.txt", "weight": 1}, {"Weight": 0.9388601183891296, "from": "Michel_2015_KIM1_Subartu35.txt", "to": "Michel_1998_3UHKB_Quelques re\u0301flexions sur les archives_p419-433.txt", "weight": 1}, {"Weight": 0.9160654544830322, "from": "Michel_2015_KIM1_Subartu35.txt", "to": "Klein_2004_ZA94_6_tablets_Uruk.txt", "weight": 1}, {"Weight": 0.960510790348053, "from": "Michel_2015_KIM1_Subartu35.txt", "to": "AnSt 7, 1957.txt", "weight": 1}, {"Weight": 0.9460820555686952, "from": "Michel_2015_KIM1_Subartu35.txt", "to": "Soldt, W.H. van ed. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "weight": 1}, {"Weight": 0.9471669793128968, "from": "Michel_2015_KIM1_Subartu35.txt", "to": "Kienast_2003_KienastFS_Intro.txt", "weight": 1}, {"Weight": 0.980068027973175, "from": "Michel_2015_KIM1_Subartu35.txt", "to": "AnSt 54, 2004.txt", "weight": 1}, {"Weight": 0.9279080629348756, "from": "Michel_2015_KIM1_Subartu35.txt", "to": "Larsen-Lassen_2014_cultural_encounters_Fs_Stolper_Final-libre.txt", "weight": 1}, {"Weight": 0.9311354756355286, "from": "Michel_2015_KIM1_Subartu35.txt", "to": "Larsen 1971_Or40_slander.txt", "weight": 1}, {"Weight": 0.9127700924873352, "from": "Michel_2015_KIM1_Subartu35.txt", "to": "Pritsch_1956_JCS10_Rev_Babylonian_Laws.txt", "weight": 1}, {"Weight": 0.9101813435554504, "from": "Michel_2015_KIM1_Subartu35.txt", "to": "AnSt 19, 1969.txt", "weight": 1}, {"Weight": 0.9283270239830016, "from": "Michel_1998_3UHKB_Quelques re\u0301flexions sur les archives_p419-433.txt", "to": "Klein_2004_ZA94_6_tablets_Uruk.txt", "weight": 1}, {"Weight": 0.9382320046424866, "from": "Michel_1998_3UHKB_Quelques re\u0301flexions sur les archives_p419-433.txt", "to": "AnSt 7, 1957.txt", "weight": 1}, {"Weight": 0.9338928461074828, "from": "Michel_1998_3UHKB_Quelques re\u0301flexions sur les archives_p419-433.txt", "to": "Muhly, J. D. - The Copper Ox-Hide Ingots and the Bronze Age Metals Trade 13.txt", "weight": 1}, {"Weight": 0.9416154026985168, "from": "Michel_1998_3UHKB_Quelques re\u0301flexions sur les archives_p419-433.txt", "to": "Soldt, W.H. van ed. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "weight": 1}, {"Weight": 0.9059576392173768, "from": "Michel_1998_3UHKB_Quelques re\u0301flexions sur les archives_p419-433.txt", "to": "Kienast_2003_KienastFS_Intro.txt", "weight": 1}, {"Weight": 0.943276584148407, "from": "Michel_1998_3UHKB_Quelques re\u0301flexions sur les archives_p419-433.txt", "to": "AnSt 54, 2004.txt", "weight": 1}, {"Weight": 0.9192622303962708, "from": "Michel_1998_3UHKB_Quelques re\u0301flexions sur les archives_p419-433.txt", "to": "Jankowska_1967_ArOr35_ep_rotation.txt", "weight": 1}, {"Weight": 0.9135276079177856, "from": "Michel_1998_3UHKB_Quelques re\u0301flexions sur les archives_p419-433.txt", "to": "Kramer, S. N. - Commerce and Trade Gleanings from Sumerian Literature 10.txt", "weight": 1}, {"Weight": 0.964829444885254, "from": "Michel_1998_3UHKB_Quelques re\u0301flexions sur les archives_p419-433.txt", "to": "Larsen 1971_Or40_slander.txt", "weight": 1}, {"Weight": 0.9147798418998718, "from": "Michel_1998_3UHKB_Quelques re\u0301flexions sur les archives_p419-433.txt", "to": "Dercksen_1999_MOS1_financing.txt", "weight": 1}, {"Weight": 0.9476251602172852, "from": "Michel_1998_3UHKB_Quelques re\u0301flexions sur les archives_p419-433.txt", "to": "Pritsch_1956_JCS10_Rev_Babylonian_Laws.txt", "weight": 1}, {"Weight": 0.9045358896255492, "from": "Michel_1998_3UHKB_Quelques re\u0301flexions sur les archives_p419-433.txt", "to": "AnSt 19, 1969.txt", "weight": 1}, {"Weight": 0.9618823528289796, "from": "AnSt 7, 1957.txt", "to": "Soldt, W.H. van ed. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "weight": 1}, {"Weight": 0.9379865527153016, "from": "AnSt 7, 1957.txt", "to": "Kienast_2003_KienastFS_Intro.txt", "weight": 1}, {"Weight": 0.9692700505256652, "from": "AnSt 7, 1957.txt", "to": "AnSt 54, 2004.txt", "weight": 1}, {"Weight": 0.9113261103630066, "from": "AnSt 7, 1957.txt", "to": "Jankowska_1967_ArOr35_ep_rotation.txt", "weight": 1}, {"Weight": 0.9334927201271056, "from": "AnSt 7, 1957.txt", "to": "Larsen 1971_Or40_slander.txt", "weight": 1}, {"Weight": 0.9119226932525636, "from": "AnSt 7, 1957.txt", "to": "Pritsch_1956_JCS10_Rev_Babylonian_Laws.txt", "weight": 1}, {"Weight": 0.9191327095031738, "from": "AnSt 7, 1957.txt", "to": "Klein_2004_ZA94_6_tablets_Uruk.txt", "weight": 1}, {"Weight": 0.9069519639015198, "from": "AnSt 7, 1957.txt", "to": "Dercksen, J. G. ed. - Trade and Finance in Ancient Mesopotamia, MOS 1. PIHANS 84, 1997 (2).txt", "weight": 1}, {"Weight": 0.9715344309806824, "from": "AnSt 7, 1957.txt", "to": "AnSt 19, 1969.txt", "weight": 1}, {"Weight": 0.9399508237838744, "from": "Soldt, W.H. van ed. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "to": "Kienast_2003_KienastFS_Intro.txt", "weight": 1}, {"Weight": 0.9456092715263368, "from": "Soldt, W.H. van ed. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "to": "AnSt 54, 2004.txt", "weight": 1}, {"Weight": 0.9025200009346008, "from": "Soldt, W.H. van ed. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "to": "Jankowska_1967_ArOr35_ep_rotation.txt", "weight": 1}, {"Weight": 0.9514189958572388, "from": "Soldt, W.H. van ed. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "to": "Larsen 1971_Or40_slander.txt", "weight": 1}, {"Weight": 0.9200063347816468, "from": "Soldt, W.H. van ed. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "to": "Dercksen_1999_MOS1_financing.txt", "weight": 1}, {"Weight": 0.9094111323356628, "from": "Soldt, W.H. van ed. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "to": "Pritsch_1956_JCS10_Rev_Babylonian_Laws.txt", "weight": 1}, {"Weight": 0.9160114526748656, "from": "Soldt, W.H. van ed. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "to": "Klein_2004_ZA94_6_tablets_Uruk.txt", "weight": 1}, {"Weight": 0.9000459909439087, "from": "Soldt, W.H. van ed. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "to": "Muhly, J. D. - The Copper Ox-Hide Ingots and the Bronze Age Metals Trade 13.txt", "weight": 1}, {"Weight": 0.9489160776138306, "from": "Soldt, W.H. van ed. - Veenhof Anniversary Volume. PIHANS 89, 2001.txt", "to": "AnSt 19, 1969.txt", "weight": 1}, {"Weight": 0.9466829895973206, "from": "Kienast_2003_KienastFS_Intro.txt", "to": "AnSt 54, 2004.txt", "weight": 1}, {"Weight": 0.9607552289962769, "from": "Kienast_2003_KienastFS_Intro.txt", "to": "Larsen-Lassen_2014_cultural_encounters_Fs_Stolper_Final-libre.txt", "weight": 1}, {"Weight": 0.9130329489707948, "from": "Kienast_2003_KienastFS_Intro.txt", "to": "Larsen 1971_Or40_slander.txt", "weight": 1}, {"Weight": 0.9305755496025084, "from": "AnSt 54, 2004.txt", "to": "Larsen-Lassen_2014_cultural_encounters_Fs_Stolper_Final-libre.txt", "weight": 1}, {"Weight": 0.900056779384613, "from": "AnSt 54, 2004.txt", "to": "Jankowska_1967_ArOr35_ep_rotation.txt", "weight": 1}, {"Weight": 0.940189242362976, "from": "AnSt 54, 2004.txt", "to": "Larsen 1971_Or40_slander.txt", "weight": 1}, {"Weight": 0.9088656902313232, "from": "AnSt 54, 2004.txt", "to": "Dercksen_1999_MOS1_financing.txt", "weight": 1}, {"Weight": 0.92374849319458, "from": "AnSt 54, 2004.txt", "to": "Pritsch_1956_JCS10_Rev_Babylonian_Laws.txt", "weight": 1}, {"Weight": 0.9300540685653688, "from": "AnSt 54, 2004.txt", "to": "Klein_2004_ZA94_6_tablets_Uruk.txt", "weight": 1}, {"Weight": 0.9076083898544312, "from": "AnSt 54, 2004.txt", "to": "Muhly, J. D. - The Copper Ox-Hide Ingots and the Bronze Age Metals Trade 13.txt", "weight": 1}, {"Weight": 0.9201478362083436, "from": "AnSt 54, 2004.txt", "to": "AnSt 19, 1969.txt", "weight": 1}, {"Weight": 0.919494092464447, "from": "Dercksen_1999_MOS1_financing.txt", "to": "Pritsch_1956_JCS10_Rev_Babylonian_Laws.txt", "weight": 1}, {"Weight": 0.9374442100524902, "from": "Dercksen_1999_MOS1_financing.txt", "to": "Dercksen, J. G. ed. - Trade and Finance in Ancient Mesopotamia, MOS 1. PIHANS 84, 1997 (2).txt", "weight": 1}, {"Weight": 0.958059012889862, "from": "Dercksen_1999_MOS1_financing.txt", "to": "Klein_2004_ZA94_6_tablets_Uruk.txt", "weight": 1}, {"Weight": 0.9343178272247314, "from": "Dercksen_1999_MOS1_financing.txt", "to": "Muhly, J. D. - The Copper Ox-Hide Ingots and the Bronze Age Metals Trade 13.txt", "weight": 1}, {"Weight": 0.9409738183021544, "from": "Dercksen_1999_MOS1_financing.txt", "to": "Jankowska_1967_ArOr35_ep_rotation.txt", "weight": 1}, {"Weight": 0.93954336643219, "from": "Dercksen_1999_MOS1_financing.txt", "to": "Larsen 1971_Or40_slander.txt", "weight": 1}, {"Weight": 0.9099997878074646, "from": "Pritsch_1956_JCS10_Rev_Babylonian_Laws.txt", "to": "Dercksen, J. G. ed. - Trade and Finance in Ancient Mesopotamia, MOS 1. PIHANS 84, 1997 (2).txt", "weight": 1}, {"Weight": 0.9495570063591005, "from": "Pritsch_1956_JCS10_Rev_Babylonian_Laws.txt", "to": "Klein_2004_ZA94_6_tablets_Uruk.txt", "weight": 1}, {"Weight": 0.9744399189949036, "from": "Pritsch_1956_JCS10_Rev_Babylonian_Laws.txt", "to": "Muhly, J. D. - The Copper Ox-Hide Ingots and the Bronze Age Metals Trade 13.txt", "weight": 1}, {"Weight": 0.951208472251892, "from": "Pritsch_1956_JCS10_Rev_Babylonian_Laws.txt", "to": "Jankowska_1967_ArOr35_ep_rotation.txt", "weight": 1}, {"Weight": 0.9735324382781982, "from": "Pritsch_1956_JCS10_Rev_Babylonian_Laws.txt", "to": "Kramer, S. N. - Commerce and Trade Gleanings from Sumerian Literature 10.txt", "weight": 1}, {"Weight": 0.9455150365829468, "from": "Pritsch_1956_JCS10_Rev_Babylonian_Laws.txt", "to": "Larsen 1971_Or40_slander.txt", "weight": 1}, {"Weight": 0.9400405883789062, "from": "Klein_2004_ZA94_6_tablets_Uruk.txt", "to": "Muhly, J. D. - The Copper Ox-Hide Ingots and the Bronze Age Metals Trade 13.txt", "weight": 1}, {"Weight": 0.9706853628158568, "from": "Klein_2004_ZA94_6_tablets_Uruk.txt", "to": "Jankowska_1967_ArOr35_ep_rotation.txt", "weight": 1}, {"Weight": 0.9239585399627686, "from": "Klein_2004_ZA94_6_tablets_Uruk.txt", "to": "Kramer, S. N. - Commerce and Trade Gleanings from Sumerian Literature 10.txt", "weight": 1}, {"Weight": 0.9355076551437378, "from": "Klein_2004_ZA94_6_tablets_Uruk.txt", "to": "Larsen 1971_Or40_slander.txt", "weight": 1}, {"Weight": 0.9362267851829528, "from": "Klein_2004_ZA94_6_tablets_Uruk.txt", "to": "Dercksen, J. G. ed. - Trade and Finance in Ancient Mesopotamia, MOS 1. PIHANS 84, 1997 (2).txt", "weight": 1}, {"Weight": 0.9081799983978271, "from": "Klein_2004_ZA94_6_tablets_Uruk.txt", "to": "AnSt 19, 1969.txt", "weight": 1}, {"Weight": 0.9367356300354004, "from": "Muhly, J. D. - The Copper Ox-Hide Ingots and the Bronze Age Metals Trade 13.txt", "to": "Jankowska_1967_ArOr35_ep_rotation.txt", "weight": 1}, {"Weight": 0.9670742750167848, "from": "Muhly, J. D. - The Copper Ox-Hide Ingots and the Bronze Age Metals Trade 13.txt", "to": "Kramer, S. N. - Commerce and Trade Gleanings from Sumerian Literature 10.txt", "weight": 1}, {"Weight": 0.9440342783927916, "from": "Muhly, J. D. - The Copper Ox-Hide Ingots and the Bronze Age Metals Trade 13.txt", "to": "Larsen 1971_Or40_slander.txt", "weight": 1}, {"Weight": 0.9133400917053224, "from": "Muhly, J. D. - The Copper Ox-Hide Ingots and the Bronze Age Metals Trade 13.txt", "to": "Dercksen, J. G. ed. - Trade and Finance in Ancient Mesopotamia, MOS 1. PIHANS 84, 1997 (2).txt", "weight": 1}, {"Weight": 0.9365070462226868, "from": "Jankowska_1967_ArOr35_ep_rotation.txt", "to": "Kramer, S. N. - Commerce and Trade Gleanings from Sumerian Literature 10.txt", "weight": 1}, {"Weight": 0.9138870239257812, "from": "Jankowska_1967_ArOr35_ep_rotation.txt", "to": "Larsen 1971_Or40_slander.txt", "weight": 1}, {"Weight": 0.9452275633811952, "from": "Jankowska_1967_ArOr35_ep_rotation.txt", "to": "Dercksen, J. G. ed. - Trade and Finance in Ancient Mesopotamia, MOS 1. PIHANS 84, 1997 (2).txt", "weight": 1}, {"Weight": 0.9161182641983032, "from": "Jankowska_1967_ArOr35_ep_rotation.txt", "to": "AnSt 19, 1969.txt", "weight": 1}, {"Weight": 0.9036546349525452, "from": "Jankowska_1967_ArOr35_ep_rotation.txt", "to": "LewyJ_1961_HUCA32_Amurritica. HUCA 32, 1961 31-74.txt", "weight": 1}, {"Weight": 0.9116340279579164, "from": "Jankowska_1967_ArOr35_ep_rotation.txt", "to": "AnSt 52, 2002.txt", "weight": 1}, {"Weight": 0.9018993377685548, "from": "Kramer, S. N. - Commerce and Trade Gleanings from Sumerian Literature 10.txt", "to": "Larsen 1971_Or40_slander.txt", "weight": 1}, {"Weight": 0.9021607637405396, "from": "Kramer, S. N. - Commerce and Trade Gleanings from Sumerian Literature 10.txt", "to": "Dercksen, J. G. ed. - Trade and Finance in Ancient Mesopotamia, MOS 1. PIHANS 84, 1997 (2).txt", "weight": 1}, {"Weight": 0.904851496219635, "from": "Larsen 1971_Or40_slander.txt", "to": "Dercksen, J. G. ed. - Trade and Finance in Ancient Mesopotamia, MOS 1. PIHANS 84, 1997 (2).txt", "weight": 1}, {"Weight": 0.900547981262207, "from": "Larsen 1971_Or40_slander.txt", "to": "AnSt 19, 1969.txt", "weight": 1}, {"Weight": 0.908599019050598, "from": "Dercksen, J. G. ed. - Trade and Finance in Ancient Mesopotamia, MOS 1. PIHANS 84, 1997 (2).txt", "to": "AnSt 19, 1969.txt", "weight": 1}, {"Weight": 0.9433289766311646, "from": "Garelli_Michel_1994_AMMY93_tablets_Ankara.txt", "to": "LewyJ_1961_HUCA32_Amurritica. HUCA 32, 1961 31-74.txt", "weight": 1}, {"Weight": 0.9236379861831664, "from": "Garelli_Michel_1994_AMMY93_tablets_Ankara.txt", "to": "AnSt 52, 2002.txt", "weight": 1}, {"Weight": 0.9511730074882508, "from": "LewyJ_1961_HUCA32_Amurritica. HUCA 32, 1961 31-74.txt", "to": "AnSt 52, 2002.txt", "weight": 1}, {"Weight": 0.9260937571525574, "from": "LewyJ_1961_HUCA32_Amurritica. HUCA 32, 1961 31-74.txt", "to": "villard_cane.txt", "weight": 1}, {"Weight": 0.916545271873474, "from": "AnSt 52, 2002.txt", "to": "villard_cane.txt", "weight": 1}]);
// adding nodes and edges to the graph
data = {nodes: nodes, edges: edges};
var options = {
"configure": {
"enabled": false
},
"edges": {
"color": {
"inherit": true
},
"smooth": {
"enabled": false,
"type": "continuous"
}
},
"interaction": {
"dragNodes": true,
"hideEdgesOnDrag": false,
"hideNodesOnDrag": false
},
"physics": {
"enabled": true,
"stabilization": {
"enabled": true,
"fit": true,
"iterations": 1000,
"onlyDynamicEdges": false,
"updateInterval": 50
}
}
};
network = new vis.Network(container, data, options);
network.on("stabilizationProgress", function(params) {
document.getElementById('loadingBar').removeAttribute("style");
var maxWidth = 496;
var minWidth = 20;
var widthFactor = params.iterations/params.total;
var width = Math.max(minWidth,maxWidth * widthFactor);
document.getElementById('bar').style.width = width + 'px';
document.getElementById('text').innerHTML = Math.round(widthFactor*100) + '%';
});
network.once("stabilizationIterationsDone", function() {
document.getElementById('text').innerHTML = '100%';
document.getElementById('bar').style.width = '496px';
document.getElementById('loadingBar').style.opacity = 0;
// really clean the dom element
setTimeout(function () {document.getElementById('loadingBar').style.display = 'none';}, 500);
});
return network;
}
drawGraph();
</script>
</body>
</html>