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
  205
  206
  207
  208
  209
  210
  211
  212
  213
  214
  215
  216
  217
  218
  219
  220
  221
  222
  223
  224
  225
  226
  227
  228
  229
  230
  231
  232
  233
  234
  235
  236
  237
  238
  239
  240
  241
  242
  243
  244
  245
  246
  247
  248
  249
  250
  251
  252
  253
  254
  255
  256
  257
  258
  259
  260
  261
  262
  263
  264
  265
  266
  267
  268
  269
  270
  271
  272
  273
  274
  275
  276
  277
  278
  279
  280
  281
  282
  283
  284
  285
  286
  287
  288
  289
  290
  291
  292
  293
  294
  295
  296
  297
  298
  299
  300
  301
  302
  303
  304
  305
  306
  307
  308
  309
  310
  311
  312
  313
  314
  315
  316
  317
  318
  319
  320
  321
  322
  323
  324
  325
  326
  327
  328
  329
  330
  331
  332
  333
  334
  335
  336
  337
  338
  339
  340
  341
  342
  343
  344
  345
  346
  347
  348
  349
  350
  351
  352
  353
  354
  355
  356
  357
  358
  359
  360
  361
  362
  363
  364
  365
  366
  367
  368
  369
  370
  371
  372
  373
  374
  375
  376
  377
  378
  379
  380
  381
  382
  383
  384
  385
  386
  387
  388
  389
  390
  391
  392
  393
  394
  395
  396
  397
  398
  399
  400
  401
  402
  403
  404
  405
  406
  407
  408
  409
  410
  411
  412
  413
  414
  415
  416
  417
  418
  419
  420
  421
  422
  423
  424
  425
  426
  427
  428
  429
  430
  431
  432
  433
  434
  435
  436
  437
  438
  439
  440
  441
  442
  443
  444
  445
  446
  447
  448
  449
  450
  451
  452
  453
  454
  455
  456
  457
  458
  459
  460
  461
  462
  463
  464
  465
  466
  467
  468
  469
  470
  471
  472
  473
  474
  475
  476
  477
  478
  479
  480
  481
  482
  483
  484
  485
  486
  487
  488
  489
  490
  491
  492
  493
  494
  495
  496
  497
  498
  499
  500
  501
  502
  503
  504
  505
  506
  507
  508
  509
  510
  511
  512
  513
  514
  515
  516
  517
  518
  519
  520
  521
  522
  523
  524
  525
  526
  527
  528
  529
  530
  531
  532
  533
  534
  535
  536
  537
  538
  539
  540
  541
  542
  543
  544
  545
  546
  547
  548
  549
  550
  551
  552
  553
  554
  555
  556
  557
  558
  559
  560
  561
  562
  563
  564
  565
  566
  567
  568
  569
  570
  571
  572
  573
  574
  575
  576
  577
  578
  579
  580
  581
  582
  583
  584
  585
  586
  587
  588
  589
  590
  591
  592
  593
  594
  595
  596
  597
  598
  599
  600
  601
  602
  603
  604
  605
  606
  607
  608
  609
  610
  611
  612
  613
  614
  615
  616
  617
  618
  619
  620
  621
  622
  623
  624
  625
  626
  627
  628
  629
  630
  631
  632
  633
  634
  635
  636
  637
  638
  639
  640
  641
  642
  643
  644
  645
  646
  647
  648
  649
  650
  651
  652
  653
  654
  655
  656
  657
  658
  659
  660
  661
  662
  663
  664
  665
  666
  667
  668
  669
  670
  671
  672
  673
  674
  675
  676
  677
  678
  679
  680
  681
  682
  683
  684
  685
  686
  687
  688
  689
  690
  691
  692
  693
  694
  695
  696
  697
  698
  699
  700
  701
  702
  703
  704
  705
  706
  707
  708
  709
  710
  711
  712
  713
  714
  715
  716
  717
  718
  719
  720
  721
  722
  723
  724
  725
  726
  727
  728
  729
  730
  731
  732
  733
  734
  735
  736
  737
  738
  739
  740
  741
  742
  743
  744
  745
  746
  747
  748
  749
  750
  751
  752
  753
  754
  755
  756
  757
  758
  759
  760
  761
  762
  763
  764
  765
  766
  767
  768
  769
  770
  771
  772
  773
  774
  775
  776
  777
  778
  779
  780
  781
  782
  783
  784
  785
  786
  787
  788
  789
  790
  791
  792
  793
  794
  795
  796
  797
  798
  799
  800
  801
  802
  803
  804
  805
  806
  807
  808
  809
  810
  811
  812
  813
  814
  815
  816
  817
  818
  819
  820
  821
  822
  823
  824
  825
  826
  827
  828
  829
  830
  831
  832
  833
  834
  835
  836
  837
  838
  839
  840
  841
  842
  843
  844
  845
  846
  847
  848
  849
  850
  851
  852
  853
  854
  855
  856
  857
  858
  859
  860
  861
  862
  863
  864
  865
  866
  867
  868
  869
  870
  871
  872
  873
  874
  875
  876
  877
  878
  879
  880
  881
  882
  883
  884
  885
  886
  887
  888
  889
  890
  891
  892
  893
  894
  895
  896
  897
  898
  899
  900
  901
  902
  903
  904
  905
  906
  907
  908
  909
  910
  911
  912
  913
  914
  915
  916
  917
  918
  919
  920
  921
  922
  923
  924
  925
  926
  927
  928
  929
  930
  931
  932
  933
  934
  935
  936
  937
  938
  939
  940
  941
  942
  943
  944
  945
  946
  947
  948
  949
  950
  951
  952
  953
  954
  955
  956
  957
  958
  959
  960
  961
  962
  963
  964
  965
  966
  967
  968
  969
  970
  971
  972
  973
  974
  975
  976
  977
  978
  979
  980
  981
  982
  983
  984
  985
  986
  987
  988
  989
  990
  991
  992
  993
  994
  995
  996
  997
  998
  999
 1000
 1001
 1002
 1003
 1004
 1005
 1006
 1007
 1008
 1009
 1010
 1011
 1012
 1013
 1014
 1015
 1016
 1017
 1018
 1019
 1020
 1021
 1022
 1023
 1024
 1025
 1026
 1027
 1028
 1029
 1030
 1031
 1032
 1033
 1034
 1035
 1036
 1037
 1038
 1039
 1040
 1041
 1042
 1043
 1044
 1045
 1046
 1047
 1048
 1049
 1050
 1051
 1052
 1053
 1054
 1055
 1056
 1057
 1058
 1059
 1060
 1061
 1062
 1063
 1064
 1065
 1066
 1067
 1068
 1069
 1070
 1071
 1072
 1073
 1074
 1075
 1076
 1077
 1078
 1079
 1080
 1081
 1082
 1083
 1084
 1085
 1086
 1087
 1088
 1089
 1090
 1091
 1092
 1093
 1094
 1095
 1096
 1097
 1098
 1099
 1100
 1101
 1102
 1103
 1104
 1105
 1106
 1107
 1108
 1109
 1110
 1111
 1112
 1113
 1114
 1115
 1116
 1117
 1118
 1119
 1120
 1121
 1122
 1123
 1124
 1125
 1126
 1127
 1128
 1129
 1130
 1131
 1132
 1133
 1134
 1135
 1136
 1137
 1138
 1139
 1140
 1141
 1142
 1143
 1144
 1145
 1146
 1147
 1148
 1149
 1150
 1151
 1152
 1153
 1154
 1155
 1156
 1157
 1158
 1159
 1160
 1161
 1162
 1163
 1164
 1165
 1166
 1167
 1168
 1169
 1170
 1171
 1172
 1173
 1174
 1175
 1176
 1177
 1178
 1179
 1180
 1181
 1182
 1183
 1184
 1185
 1186
 1187
 1188
 1189
 1190
 1191
 1192
 1193
 1194
 1195
 1196
 1197
 1198
 1199
 1200
 1201
 1202
 1203
 1204
 1205
 1206
 1207
 1208
 1209
 1210
 1211
 1212
 1213
 1214
 1215
 1216
 1217
 1218
 1219
 1220
 1221
 1222
 1223
 1224
 1225
 1226
 1227
 1228
 1229
 1230
 1231
 1232
 1233
 1234
 1235
 1236
 1237
 1238
 1239
 1240
 1241
 1242
 1243
 1244
 1245
 1246
 1247
 1248
 1249
 1250
 1251
 1252
 1253
 1254
 1255
 1256
 1257
 1258
 1259
 1260
 1261
 1262
 1263
 1264
 1265
 1266
 1267
 1268
 1269
 1270
 1271
 1272
 1273
 1274
 1275
 1276
 1277
 1278
 1279
 1280
 1281
 1282
 1283
 1284
 1285
 1286
 1287
 1288
 1289
 1290
 1291
 1292
 1293
 1294
 1295
 1296
 1297
 1298
 1299
 1300
 1301
 1302
 1303
 1304
 1305
 1306
 1307
 1308
 1309
 1310
 1311
 1312
 1313
 1314
 1315
 1316
 1317
 1318
 1319
 1320
 1321
 1322
 1323
 1324
 1325
 1326
 1327
 1328
 1329
 1330
 1331
 1332
 1333
 1334
 1335
 1336
 1337
 1338
 1339
 1340
 1341
 1342
 1343
 1344
 1345
 1346
 1347
 1348
 1349
 1350
 1351
 1352
 1353
 1354
 1355
 1356
 1357
 1358
 1359
 1360
 1361
 1362
 1363
 1364
 1365
 1366
 1367
 1368
 1369
 1370
 1371
 1372
 1373
 1374
 1375
 1376
 1377
 1378
 1379
 1380
 1381
 1382
 1383
 1384
 1385
 1386
 1387
 1388
 1389
 1390
 1391
 1392
 1393
 1394
 1395
 1396
 1397
 1398
 1399
 1400
 1401
 1402
 1403
 1404
 1405
 1406
 1407
 1408
 1409
 1410
 1411
 1412
 1413
 1414
 1415
 1416
 1417
 1418
 1419
 1420
 1421
 1422
 1423
 1424
 1425
 1426
 1427
 1428
 1429
 1430
 1431
 1432
 1433
 1434
 1435
 1436
 1437
 1438
 1439
 1440
 1441
 1442
 1443
 1444
 1445
 1446
 1447
 1448
 1449
 1450
 1451
 1452
 1453
 1454
 1455
 1456
 1457
 1458
 1459
 1460
 1461
 1462
 1463
 1464
 1465
 1466
 1467
 1468
 1469
 1470
 1471
 1472
 1473
 1474
 1475
 1476
 1477
 1478
 1479
 1480
 1481
 1482
 1483
 1484
 1485
 1486
 1487
 1488
 1489
 1490
 1491
 1492
 1493
 1494
 1495
 1496
 1497
 1498
 1499
 1500
 1501
 1502
 1503
 1504
 1505
 1506
 1507
 1508
 1509
 1510
 1511
 1512
 1513
 1514
 1515
 1516
 1517
 1518
 1519
 1520
 1521
 1522
 1523
 1524
 1525
 1526
 1527
 1528
 1529
 1530
 1531
 1532
 1533
 1534
 1535
 1536
 1537
 1538
 1539
 1540
 1541
 1542
 1543
 1544
 1545
 1546
 1547
 1548
 1549
 1550
 1551
 1552
 1553
 1554
 1555
 1556
 1557
 1558
 1559
 1560
 1561
 1562
 1563
 1564
 1565
 1566
 1567
 1568
 1569
 1570
 1571
 1572
 1573
 1574
 1575
 1576
 1577
 1578
 1579
 1580
 1581
 1582
 1583
 1584
 1585
 1586
 1587
 1588
 1589
 1590
 1591
 1592
 1593
 1594
 1595
 1596
 1597
 1598
 1599
 1600
 1601
 1602
 1603
 1604
 1605
 1606
 1607
 1608
 1609
 1610
 1611
 1612
 1613
 1614
 1615
 1616
 1617
 1618
 1619
 1620
 1621
 1622
 1623
 1624
 1625
 1626
 1627
 1628
 1629
 1630
 1631
 1632
 1633
 1634
 1635
 1636
 1637
 1638
 1639
 1640
 1641
 1642
 1643
 1644
 1645
 1646
 1647
 1648
 1649
 1650
 1651
 1652
 1653
 1654
 1655
 1656
 1657
 1658
 1659
 1660
 1661
 1662
 1663
 1664
 1665
 1666
 1667
 1668
 1669
 1670
 1671
 1672
 1673
 1674
 1675
 1676
 1677
 1678
 1679
 1680
 1681
 1682
 1683
 1684
 1685
 1686
 1687
 1688
 1689
 1690
 1691
 1692
 1693
 1694
 1695
 1696
 1697
 1698
 1699
 1700
 1701
 1702
 1703
 1704
 1705
 1706
 1707
 1708
 1709
 1710
 1711
 1712
 1713
 1714
 1715
 1716
 1717
 1718
 1719
 1720
 1721
 1722
 1723
 1724
 1725
 1726
 1727
 1728
 1729
 1730
 1731
 1732
 1733
 1734
 1735
 1736
 1737
 1738
 1739
 1740
 1741
 1742
 1743
 1744
 1745
 1746
 1747
 1748
 1749
 1750
 1751
 1752
 1753
 1754
 1755
 1756
 1757
 1758
 1759
 1760
 1761
 1762
 1763
 1764
 1765
 1766
 1767
 1768
 1769
 1770
 1771
 1772
 1773
 1774
 1775
 1776
 1777
 1778
 1779
 1780
 1781
 1782
 1783
 1784
 1785
 1786
 1787
 1788
 1789
 1790
 1791
 1792
 1793
 1794
 1795
 1796
 1797
 1798
 1799
 1800
 1801
 1802
 1803
 1804
 1805
 1806
 1807
 1808
 1809
 1810
 1811
 1812
 1813
 1814
 1815
 1816
 1817
 1818
 1819
 1820
 1821
 1822
 1823
 1824
 1825
 1826
 1827
 1828
 1829
 1830
 1831
 1832
 1833
 1834
 1835
 1836
 1837
 1838
 1839
 1840
 1841
 1842
 1843
 1844
 1845
 1846
 1847
 1848
 1849
 1850
 1851
 1852
 1853
 1854
 1855
 1856
 1857
 1858
 1859
 1860
 1861
 1862
 1863
 1864
 1865
 1866
 1867
 1868
 1869
 1870
 1871
 1872
 1873
 1874
 1875
 1876
 1877
 1878
 1879
 1880
 1881
 1882
 1883
 1884
 1885
 1886
 1887
 1888
 1889
 1890
 1891
 1892
 1893
 1894
 1895
 1896
 1897
 1898
 1899
 1900
 1901
 1902
 1903
 1904
 1905
 1906
 1907
 1908
 1909
 1910
 1911
 1912
 1913
 1914
 1915
 1916
 1917
 1918
 1919
 1920
 1921
 1922
 1923
 1924
 1925
 1926
 1927
 1928
 1929
 1930
 1931
 1932
 1933
 1934
 1935
 1936
 1937
 1938
 1939
 1940
 1941
 1942
 1943
 1944
 1945
 1946
 1947
 1948
 1949
 1950
 1951
 1952
 1953
 1954
 1955
 1956
 1957
 1958
 1959
 1960
 1961
 1962
 1963
 1964
 1965
 1966
 1967
 1968
 1969
 1970
 1971
 1972
 1973
 1974
 1975
 1976
 1977
 1978
 1979
 1980
 1981
 1982
 1983
 1984
 1985
 1986
 1987
 1988
 1989
 1990
 1991
 1992
 1993
 1994
 1995
 1996
 1997
 1998
 1999
 2000
 2001
 2002
 2003
 2004
 2005
 2006
 2007
 2008
 2009
 2010
 2011
 2012
 2013
 2014
 2015
 2016
 2017
 2018
 2019
 2020
 2021
 2022
 2023
 2024
 2025
 2026
 2027
 2028
 2029
 2030
 2031
 2032
 2033
 2034
 2035
 2036
 2037
 2038
 2039
 2040
 2041
 2042
 2043
 2044
 2045
 2046
 2047
 2048
 2049
 2050
 2051
 2052
 2053
 2054
 2055
 2056
 2057
 2058
 2059
 2060
 2061
 2062
 2063
 2064
 2065
 2066
 2067
 2068
 2069
 2070
 2071
 2072
 2073
 2074
 2075
 2076
 2077
 2078
 2079
 2080
 2081
 2082
 2083
 2084
 2085
 2086
 2087
 2088
 2089
 2090
 2091
 2092
 2093
 2094
 2095
 2096
 2097
 2098
 2099
 2100
 2101
 2102
 2103
 2104
 2105
 2106
 2107
 2108
 2109
 2110
 2111
 2112
 2113
 2114
 2115
 2116
 2117
 2118
 2119
 2120
 2121
 2122
 2123
 2124
 2125
 2126
 2127
 2128
 2129
 2130
 2131
 2132
 2133
 2134
 2135
 2136
 2137
 2138
 2139
 2140
 2141
 2142
 2143
 2144
 2145
 2146
 2147
 2148
 2149
 2150
 2151
 2152
 2153
 2154
 2155
 2156
 2157
 2158
 2159
 2160
 2161
 2162
 2163
 2164
 2165
 2166
 2167
 2168
 2169
 2170
 2171
 2172
 2173
 2174
 2175
 2176
 2177
 2178
 2179
 2180
 2181
 2182
 2183
 2184
 2185
 2186
 2187
 2188
 2189
 2190
 2191
 2192
 2193
 2194
 2195
 2196
 2197
 2198
 2199
 2200
 2201
 2202
 2203
 2204
 2205
 2206
 2207
 2208
 2209
 2210
 2211
 2212
 2213
 2214
 2215
 2216
 2217
 2218
 2219
 2220
 2221
 2222
 2223
 2224
 2225
 2226
 2227
 2228
 2229
 2230
 2231
 2232
 2233
 2234
 2235
 2236
 2237
 2238
 2239
 2240
 2241
 2242
 2243
 2244
 2245
 2246
 2247
 2248
 2249
 2250
 2251
 2252
 2253
 2254
 2255
 2256
 2257
 2258
 2259
 2260
 2261
 2262
 2263
 2264
 2265
 2266
 2267
 2268
 2269
 2270
 2271
 2272
 2273
 2274
 2275
 2276
 2277
 2278
 2279
 2280
 2281
 2282
 2283
 2284
 2285
 2286
 2287
 2288
 2289
 2290
 2291
 2292
 2293
 2294
 2295
 2296
 2297
 2298
 2299
 2300
 2301
 2302
 2303
 2304
 2305
 2306
 2307
 2308
 2309
 2310
 2311
 2312
 2313
 2314
 2315
 2316
 2317
 2318
 2319
 2320
 2321
 2322
 2323
 2324
 2325
 2326
 2327
 2328
 2329
 2330
 2331
 2332
 2333
 2334
 2335
 2336
 2337
 2338
 2339
 2340
 2341
 2342
 2343
 2344
 2345
 2346
 2347
 2348
 2349
 2350
 2351
 2352
 2353
 2354
 2355
 2356
 2357
 2358
 2359
 2360
 2361
 2362
 2363
 2364
 2365
 2366
 2367
 2368
 2369
 2370
 2371
 2372
 2373
 2374
 2375
 2376
 2377
 2378
 2379
 2380
 2381
 2382
 2383
 2384
 2385
 2386
 2387
 2388
 2389
 2390
 2391
 2392
 2393
 2394
 2395
 2396
 2397
 2398
 2399
 2400
 2401
 2402
 2403
 2404
 2405
 2406
 2407
 2408
 2409
 2410
 2411
 2412
 2413
 2414
 2415
 2416
 2417
 2418
 2419
 2420
 2421
 2422
 2423
 2424
 2425
 2426
 2427
 2428
 2429
 2430
 2431
 2432
 2433
 2434
 2435
 2436
 2437
 2438
 2439
 2440
 2441
 2442
 2443
 2444
 2445
 2446
 2447
 2448
 2449
 2450
 2451
 2452
 2453
 2454
 2455
 2456
 2457
 2458
 2459
 2460
 2461
 2462
 2463
 2464
 2465
 2466
 2467
 2468
 2469
 2470
 2471
 2472
 2473
 2474
 2475
 2476
 2477
 2478
 2479
 2480
 2481
 2482
 2483
 2484
 2485
 2486
 2487
 2488
 2489
 2490
 2491
 2492
 2493
 2494
 2495
 2496
 2497
 2498
 2499
 2500
 2501
 2502
 2503
 2504
 2505
 2506
 2507
 2508
 2509
 2510
 2511
 2512
 2513
 2514
 2515
 2516
 2517
 2518
 2519
 2520
 2521
 2522
 2523
 2524
 2525
 2526
 2527
 2528
 2529
 2530
 2531
 2532
 2533
 2534
 2535
 2536
 2537
 2538
 2539
 2540
 2541
 2542
 2543
 2544
 2545
 2546
 2547
 2548
 2549
 2550
 2551
 2552
 2553
 2554
 2555
 2556
 2557
 2558
 2559
 2560
 2561
 2562
 2563
 2564
 2565
 2566
 2567
 2568
 2569
 2570
 2571
 2572
 2573
 2574
 2575
 2576
 2577
 2578
 2579
 2580
 2581
 2582
 2583
 2584
 2585
 2586
 2587
 2588
 2589
 2590
 2591
 2592
 2593
 2594
 2595
 2596
 2597
 2598
 2599
 2600
 2601
 2602
 2603
 2604
 2605
 2606
 2607
 2608
 2609
 2610
 2611
 2612
 2613
 2614
 2615
 2616
 2617
 2618
 2619
 2620
 2621
 2622
 2623
 2624
 2625
 2626
 2627
 2628
 2629
 2630
 2631
 2632
 2633
 2634
 2635
 2636
 2637
 2638
 2639
 2640
 2641
 2642
 2643
 2644
 2645
 2646
 2647
 2648
 2649
 2650
 2651
 2652
 2653
 2654
 2655
 2656
 2657
 2658
 2659
 2660
 2661
 2662
 2663
 2664
 2665
 2666
 2667
 2668
 2669
 2670
 2671
 2672
 2673
 2674
 2675
 2676
 2677
 2678
 2679
 2680
 2681
 2682
 2683
 2684
 2685
 2686
 2687
 2688
 2689
 2690
 2691
 2692
 2693
 2694
 2695
 2696
 2697
 2698
 2699
 2700
 2701
 2702
 2703
 2704
 2705
 2706
 2707
 2708
 2709
 2710
 2711
 2712
 2713
 2714
 2715
 2716
 2717
 2718
 2719
 2720
 2721
 2722
 2723
 2724
 2725
 2726
 2727
 2728
 2729
 2730
 2731
 2732
 2733
 2734
 2735
 2736
 2737
 2738
 2739
 2740
 2741
 2742
 2743
 2744
 2745
 2746
 2747
 2748
 2749
 2750
 2751
 2752
 2753
 2754
 2755
 2756
 2757
 2758
 2759
 2760
 2761
 2762
 2763
 2764
 2765
 2766
 2767
 2768
 2769
 2770
 2771
 2772
 2773
 2774
 2775
 2776
 2777
 2778
 2779
 2780
 2781
 2782
 2783
 2784
 2785
 2786
 2787
 2788
 2789
 2790
 2791
 2792
 2793
 2794
 2795
 2796
 2797
 2798
 2799
 2800
 2801
 2802
 2803
 2804
 2805
 2806
 2807
 2808
 2809
 2810
 2811
 2812
 2813
 2814
 2815
 2816
 2817
 2818
 2819
 2820
 2821
 2822
 2823
 2824
 2825
 2826
 2827
 2828
 2829
 2830
 2831
 2832
 2833
 2834
 2835
 2836
 2837
 2838
 2839
 2840
 2841
 2842
 2843
 2844
 2845
 2846
 2847
 2848
 2849
 2850
 2851
 2852
 2853
 2854
 2855
 2856
 2857
 2858
 2859
 2860
 2861
 2862
 2863
 2864
 2865
 2866
 2867
 2868
 2869
 2870
 2871
 2872
 2873
 2874
 2875
 2876
 2877
 2878
 2879
 2880
 2881
 2882
 2883
 2884
 2885
 2886
 2887
 2888
 2889
 2890
 2891
 2892
 2893
 2894
 2895
 2896
 2897
 2898
 2899
 2900
 2901
 2902
 2903
 2904
 2905
 2906
 2907
 2908
 2909
 2910
 2911
 2912
 2913
 2914
 2915
 2916
 2917
 2918
 2919
 2920
 2921
 2922
 2923
 2924
 2925
 2926
 2927
 2928
 2929
 2930
 2931
 2932
 2933
 2934
 2935
 2936
 2937
 2938
 2939
 2940
 2941
 2942
 2943
 2944
 2945
 2946
 2947
 2948
 2949
 2950
 2951
 2952
 2953
 2954
 2955
 2956
 2957
 2958
 2959
 2960
 2961
 2962
 2963
 2964
 2965
 2966
 2967
 2968
 2969
 2970
 2971
 2972
 2973
 2974
 2975
 2976
 2977
 2978
 2979
 2980
 2981
 2982
 2983
 2984
 2985
 2986
 2987
 2988
 2989
 2990
 2991
 2992
 2993
 2994
 2995
 2996
 2997
 2998
 2999
 3000
 3001
 3002
 3003
 3004
 3005
 3006
 3007
 3008
 3009
 3010
 3011
 3012
 3013
 3014
 3015
 3016
 3017
 3018
 3019
 3020
 3021
 3022
 3023
 3024
 3025
 3026
 3027
 3028
 3029
 3030
 3031
 3032
 3033
 3034
 3035
 3036
 3037
 3038
 3039
 3040
 3041
 3042
 3043
 3044
 3045
 3046
 3047
 3048
 3049
 3050
 3051
 3052
 3053
 3054
 3055
 3056
 3057
 3058
 3059
 3060
 3061
 3062
 3063
 3064
 3065
 3066
 3067
 3068
 3069
 3070
 3071
 3072
 3073
 3074
 3075
 3076
 3077
 3078
 3079
 3080
 3081
 3082
 3083
 3084
 3085
 3086
 3087
 3088
 3089
 3090
 3091
 3092
 3093
 3094
 3095
 3096
 3097
 3098
 3099
 3100
 3101
 3102
 3103
 3104
 3105
 3106
 3107
 3108
 3109
 3110
 3111
 3112
 3113
 3114
 3115
 3116
 3117
 3118
 3119
 3120
 3121
 3122
 3123
 3124
 3125
 3126
 3127
 3128
 3129
 3130
 3131
 3132
 3133
 3134
 3135
 3136
 3137
 3138
 3139
 3140
 3141
 3142
 3143
 3144
 3145
 3146
 3147
 3148
 3149
 3150
 3151
 3152
 3153
 3154
 3155
 3156
 3157
 3158
 3159
 3160
 3161
 3162
 3163
 3164
 3165
 3166
 3167
 3168
 3169
 3170
 3171
 3172
 3173
 3174
 3175
 3176
 3177
 3178
 3179
 3180
 3181
 3182
 3183
 3184
 3185
 3186
 3187
 3188
 3189
 3190
 3191
 3192
 3193
 3194
 3195
 3196
 3197
 3198
 3199
 3200
 3201
 3202
 3203
 3204
 3205
 3206
 3207
 3208
 3209
 3210
 3211
 3212
 3213
 3214
 3215
 3216
 3217
 3218
 3219
 3220
 3221
 3222
 3223
 3224
 3225
 3226
 3227
 3228
 3229
 3230
 3231
 3232
 3233
 3234
 3235
 3236
 3237
 3238
 3239
 3240
 3241
 3242
 3243
 3244
 3245
 3246
 3247
 3248
 3249
 3250
 3251
 3252
 3253
 3254
 3255
 3256
 3257
 3258
 3259
 3260
 3261
 3262
 3263
 3264
 3265
 3266
 3267
 3268
 3269
 3270
 3271
 3272
 3273
 3274
 3275
 3276
 3277
 3278
 3279
 3280
 3281
 3282
 3283
 3284
 3285
 3286
 3287
 3288
 3289
 3290
 3291
 3292
 3293
 3294
 3295
 3296
 3297
 3298
 3299
 3300
 3301
 3302
 3303
 3304
 3305
 3306
 3307
 3308
 3309
 3310
 3311
 3312
 3313
 3314
 3315
 3316
 3317
 3318
 3319
 3320
 3321
 3322
 3323
 3324
 3325
 3326
 3327
 3328
 3329
 3330
 3331
 3332
 3333
 3334
 3335
 3336
 3337
 3338
 3339
 3340
 3341
 3342
 3343
 3344
 3345
 3346
 3347
 3348
 3349
 3350
 3351
 3352
 3353
 3354
 3355
 3356
 3357
 3358
 3359
 3360
 3361
 3362
 3363
 3364
 3365
 3366
 3367
 3368
 3369
 3370
 3371
 3372
 3373
 3374
 3375
 3376
 3377
 3378
 3379
 3380
 3381
 3382
 3383
 3384
 3385
 3386
 3387
 3388
 3389
 3390
 3391
 3392
 3393
 3394
 3395
 3396
 3397
 3398
 3399
 3400
 3401
 3402
 3403
 3404
 3405
 3406
 3407
 3408
 3409
 3410
 3411
 3412
 3413
 3414
 3415
 3416
 3417
 3418
 3419
 3420
 3421
 3422
 3423
 3424
 3425
 3426
 3427
 3428
 3429
 3430
 3431
 3432
 3433
 3434
 3435
 3436
 3437
 3438
 3439
 3440
 3441
 3442
 3443
 3444
 3445
 3446
 3447
 3448
 3449
 3450
 3451
 3452
 3453
 3454
 3455
 3456
 3457
 3458
 3459
 3460
 3461
 3462
 3463
 3464
 3465
 3466
 3467
 3468
 3469
 3470
 3471
 3472
 3473
 3474
 3475
 3476
 3477
 3478
 3479
 3480
 3481
 3482
 3483
 3484
 3485
 3486
 3487
 3488
 3489
 3490
 3491
 3492
 3493
 3494
 3495
 3496
 3497
 3498
 3499
 3500
 3501
 3502
 3503
 3504
 3505
 3506
 3507
 3508
 3509
 3510
 3511
 3512
 3513
 3514
 3515
 3516
 3517
 3518
 3519
 3520
 3521
 3522
 3523
 3524
 3525
 3526
 3527
 3528
 3529
 3530
 3531
 3532
 3533
 3534
 3535
 3536
 3537
 3538
 3539
 3540
 3541
 3542
 3543
 3544
 3545
 3546
 3547
 3548
 3549
 3550
 3551
 3552
 3553
 3554
 3555
 3556
 3557
 3558
 3559
 3560
 3561
 3562
 3563
 3564
 3565
 3566
 3567
 3568
 3569
 3570
 3571
 3572
 3573
 3574
 3575
 3576
 3577
 3578
 3579
 3580
 3581
 3582
 3583
 3584
 3585
 3586
 3587
 3588
 3589
 3590
 3591
 3592
 3593
 3594
 3595
 3596
 3597
 3598
 3599
 3600
 3601
 3602
 3603
 3604
 3605
 3606
 3607
 3608
 3609
 3610
 3611
 3612
 3613
 3614
 3615
 3616
 3617
 3618
 3619
 3620
 3621
 3622
 3623
 3624
 3625
 3626
 3627
 3628
 3629
 3630
 3631
 3632
 3633
 3634
 3635
 3636
 3637
 3638
 3639
 3640
 3641
 3642
 3643
 3644
 3645
 3646
 3647
 3648
 3649
 3650
 3651
 3652
 3653
 3654
 3655
 3656
 3657
 3658
 3659
 3660
 3661
 3662
 3663
 3664
 3665
 3666
 3667
 3668
 3669
 3670
 3671
 3672
 3673
 3674
 3675
 3676
 3677
 3678
 3679
 3680
 3681
 3682
 3683
 3684
 3685
 3686
 3687
 3688
 3689
 3690
 3691
 3692
 3693
 3694
 3695
 3696
 3697
 3698
 3699
 3700
 3701
 3702
 3703
 3704
 3705
 3706
 3707
 3708
 3709
 3710
 3711
 3712
 3713
 3714
 3715
 3716
 3717
 3718
 3719
 3720
 3721
 3722
 3723
 3724
 3725
 3726
 3727
 3728
 3729
 3730
 3731
 3732
 3733
 3734
 3735
 3736
 3737
 3738
 3739
 3740
 3741
 3742
 3743
 3744
 3745
 3746
 3747
 3748
 3749
 3750
 3751
 3752
 3753
 3754
 3755
 3756
 3757
 3758
 3759
 3760
 3761
 3762
 3763
 3764
 3765
 3766
 3767
 3768
 3769
 3770
 3771
 3772
 3773
 3774
 3775
 3776
 3777
 3778
 3779
 3780
 3781
 3782
 3783
 3784
 3785
 3786
 3787
 3788
 3789
 3790
 3791
 3792
 3793
 3794
 3795
 3796
 3797
 3798
 3799
 3800
 3801
 3802
 3803
 3804
 3805
 3806
 3807
 3808
 3809
 3810
 3811
 3812
 3813
 3814
 3815
 3816
 3817
 3818
 3819
 3820
 3821
 3822
 3823
 3824
 3825
 3826
 3827
 3828
 3829
 3830
 3831
 3832
 3833
 3834
 3835
 3836
 3837
 3838
 3839
 3840
 3841
 3842
 3843
 3844
 3845
 3846
 3847
 3848
 3849
 3850
 3851
 3852
 3853
 3854
 3855
 3856
 3857
 3858
 3859
 3860
 3861
 3862
 3863
 3864
 3865
 3866
 3867
 3868
 3869
 3870
 3871
 3872
 3873
 3874
 3875
 3876
 3877
 3878
 3879
 3880
 3881
 3882
 3883
 3884
 3885
 3886
 3887
 3888
 3889
 3890
 3891
 3892
 3893
 3894
 3895
 3896
 3897
 3898
 3899
 3900
 3901
 3902
 3903
 3904
 3905
 3906
 3907
 3908
 3909
 3910
 3911
 3912
 3913
 3914
 3915
 3916
 3917
 3918
 3919
 3920
 3921
 3922
 3923
 3924
 3925
 3926
 3927
 3928
 3929
 3930
 3931
 3932
 3933
 3934
 3935
 3936
 3937
 3938
 3939
 3940
 3941
 3942
 3943
 3944
 3945
 3946
 3947
 3948
 3949
 3950
 3951
 3952
 3953
 3954
 3955
 3956
 3957
 3958
 3959
 3960
 3961
 3962
 3963
 3964
 3965
 3966
 3967
 3968
 3969
 3970
 3971
 3972
 3973
 3974
 3975
 3976
 3977
 3978
 3979
 3980
 3981
 3982
 3983
 3984
 3985
 3986
 3987
 3988
 3989
 3990
 3991
 3992
 3993
 3994
 3995
 3996
 3997
 3998
 3999
 4000
 4001
 4002
 4003
 4004
 4005
 4006
 4007
 4008
 4009
 4010
 4011
 4012
 4013
 4014
 4015
 4016
 4017
 4018
 4019
 4020
 4021
 4022
 4023
 4024
 4025
 4026
 4027
 4028
 4029
 4030
 4031
 4032
 4033
 4034
 4035
 4036
 4037
 4038
 4039
 4040
 4041
 4042
 4043
 4044
 4045
 4046
 4047
 4048
 4049
 4050
 4051
 4052
 4053
 4054
 4055
 4056
 4057
 4058
 4059
 4060
 4061
 4062
 4063
 4064
 4065
 4066
 4067
 4068
 4069
 4070
 4071
 4072
 4073
 4074
 4075
 4076
 4077
 4078
 4079
 4080
 4081
 4082
 4083
 4084
 4085
 4086
 4087
 4088
 4089
 4090
 4091
 4092
 4093
 4094
 4095
 4096
 4097
 4098
 4099
 4100
 4101
 4102
 4103
 4104
 4105
 4106
 4107
 4108
 4109
 4110
 4111
 4112
 4113
 4114
 4115
 4116
 4117
 4118
 4119
 4120
 4121
 4122
 4123
 4124
 4125
 4126
 4127
 4128
 4129
 4130
 4131
 4132
 4133
 4134
 4135
 4136
 4137
 4138
 4139
 4140
 4141
 4142
 4143
 4144
 4145
 4146
 4147
 4148
 4149
 4150
 4151
 4152
 4153
 4154
 4155
 4156
 4157
 4158
 4159
 4160
 4161
 4162
 4163
 4164
 4165
 4166
 4167
 4168
 4169
 4170
 4171
 4172
 4173
 4174
 4175
 4176
 4177
 4178
 4179
 4180
 4181
 4182
 4183
 4184
 4185
 4186
 4187
 4188
 4189
 4190
 4191
 4192
 4193
 4194
 4195
 4196
 4197
 4198
 4199
 4200
 4201
 4202
 4203
 4204
 4205
 4206
 4207
 4208
 4209
 4210
 4211
 4212
 4213
 4214
 4215
 4216
 4217
 4218
 4219
 4220
 4221
 4222
 4223
 4224
 4225
 4226
 4227
 4228
 4229
 4230
 4231
 4232
 4233
 4234
 4235
 4236
 4237
 4238
 4239
 4240
 4241
 4242
 4243
 4244
 4245
 4246
 4247
 4248
 4249
 4250
 4251
 4252
 4253
 4254
 4255
 4256
 4257
 4258
 4259
 4260
 4261
 4262
 4263
 4264
 4265
 4266
 4267
 4268
 4269
 4270
 4271
 4272
 4273
 4274
 4275
 4276
 4277
 4278
 4279
 4280
 4281
 4282
 4283
 4284
 4285
 4286
 4287
 4288
 4289
 4290
 4291
 4292
 4293
 4294
 4295
 4296
 4297
 4298
 4299
 4300
 4301
 4302
 4303
 4304
 4305
 4306
 4307
 4308
 4309
 4310
 4311
 4312
 4313
 4314
 4315
 4316
 4317
 4318
 4319
 4320
 4321
 4322
 4323
 4324
 4325
 4326
 4327
 4328
 4329
 4330
 4331
 4332
 4333
 4334
 4335
 4336
 4337
 4338
 4339
 4340
 4341
 4342
 4343
 4344
 4345
 4346
 4347
 4348
 4349
 4350
 4351
 4352
 4353
 4354
 4355
 4356
 4357
 4358
 4359
 4360
 4361
 4362
 4363
 4364
 4365
 4366
 4367
 4368
 4369
 4370
 4371
 4372
 4373
 4374
 4375
 4376
 4377
 4378
 4379
 4380
 4381
 4382
 4383
 4384
 4385
 4386
 4387
 4388
 4389
 4390
 4391
 4392
 4393
 4394
 4395
 4396
 4397
 4398
 4399
 4400
 4401
 4402
 4403
 4404
 4405
 4406
 4407
 4408
 4409
 4410
 4411
 4412
 4413
 4414
 4415
 4416
 4417
 4418
 4419
 4420
 4421
 4422
 4423
 4424
 4425
 4426
 4427
 4428
 4429
 4430
 4431
 4432
 4433
 4434
 4435
 4436
 4437
 4438
 4439
 4440
 4441
 4442
 4443
 4444
 4445
 4446
 4447
 4448
 4449
 4450
 4451
 4452
 4453
 4454
 4455
 4456
 4457
 4458
 4459
 4460
 4461
 4462
 4463
 4464
 4465
 4466
 4467
 4468
 4469
 4470
 4471
 4472
 4473
 4474
 4475
 4476
 4477
 4478
 4479
 4480
 4481
 4482
 4483
 4484
 4485
 4486
 4487
 4488
 4489
 4490
 4491
 4492
 4493
 4494
 4495
 4496
 4497
 4498
 4499
 4500
 4501
 4502
 4503
 4504
 4505
 4506
 4507
 4508
 4509
 4510
 4511
 4512
 4513
 4514
 4515
 4516
 4517
 4518
 4519
 4520
 4521
 4522
 4523
 4524
 4525
 4526
 4527
 4528
 4529
 4530
 4531
 4532
 4533
 4534
 4535
 4536
 4537
 4538
 4539
 4540
 4541
 4542
 4543
 4544
 4545
 4546
 4547
 4548
 4549
 4550
 4551
 4552
 4553
 4554
 4555
 4556
 4557
 4558
 4559
 4560
 4561
 4562
 4563
 4564
 4565
 4566
 4567
 4568
 4569
 4570
 4571
 4572
 4573
 4574
 4575
 4576
 4577
 4578
 4579
 4580
 4581
 4582
 4583
 4584
 4585
 4586
 4587
 4588
 4589
 4590
 4591
 4592
 4593
 4594
 4595
 4596
 4597
 4598
 4599
 4600
 4601
 4602
 4603
 4604
 4605
 4606
 4607
 4608
 4609
 4610
 4611
 4612
 4613
 4614
 4615
 4616
 4617
 4618
 4619
 4620
 4621
 4622
 4623
 4624
 4625
 4626
 4627
 4628
 4629
 4630
 4631
 4632
 4633
 4634
 4635
 4636
 4637
 4638
 4639
 4640
 4641
 4642
 4643
 4644
 4645
 4646
 4647
 4648
 4649
 4650
 4651
 4652
 4653
 4654
 4655
 4656
 4657
 4658
 4659
 4660
 4661
 4662
 4663
 4664
 4665
 4666
 4667
 4668
 4669
 4670
 4671
 4672
 4673
 4674
 4675
 4676
 4677
 4678
 4679
 4680
 4681
 4682
 4683
 4684
 4685
 4686
 4687
 4688
 4689
 4690
 4691
 4692
 4693
 4694
 4695
 4696
 4697
 4698
 4699
 4700
 4701
 4702
 4703
 4704
 4705
 4706
 4707
 4708
 4709
 4710
 4711
 4712
 4713
 4714
 4715
 4716
 4717
 4718
 4719
 4720
 4721
 4722
 4723
 4724
 4725
 4726
 4727
 4728
 4729
 4730
 4731
 4732
 4733
 4734
 4735
 4736
 4737
 4738
 4739
 4740
 4741
 4742
 4743
 4744
 4745
 4746
 4747
 4748
 4749
 4750
 4751
 4752
 4753
 4754
 4755
 4756
 4757
 4758
 4759
 4760
 4761
 4762
 4763
 4764
 4765
 4766
 4767
 4768
 4769
 4770
 4771
 4772
 4773
 4774
 4775
 4776
 4777
 4778
 4779
 4780
 4781
 4782
 4783
 4784
 4785
 4786
 4787
 4788
 4789
 4790
 4791
 4792
 4793
 4794
 4795
 4796
 4797
 4798
 4799
 4800
 4801
 4802
 4803
 4804
 4805
 4806
 4807
 4808
 4809
 4810
 4811
 4812
 4813
 4814
 4815
 4816
 4817
 4818
 4819
 4820
 4821
 4822
 4823
 4824
 4825
 4826
 4827
 4828
 4829
 4830
 4831
 4832
 4833
 4834
 4835
 4836
 4837
 4838
 4839
 4840
 4841
 4842
 4843
 4844
 4845
 4846
 4847
 4848
 4849
 4850
 4851
 4852
 4853
 4854
 4855
 4856
 4857
 4858
 4859
 4860
 4861
 4862
 4863
 4864
 4865
 4866
 4867
 4868
 4869
 4870
 4871
 4872
 4873
 4874
 4875
 4876
 4877
 4878
 4879
 4880
 4881
 4882
 4883
 4884
 4885
 4886
 4887
 4888
 4889
 4890
 4891
 4892
 4893
 4894
 4895
 4896
 4897
 4898
 4899
 4900
 4901
 4902
 4903
 4904
 4905
 4906
 4907
 4908
 4909
 4910
 4911
 4912
 4913
 4914
 4915
 4916
 4917
 4918
 4919
 4920
 4921
 4922
 4923
 4924
 4925
 4926
 4927
 4928
 4929
 4930
 4931
 4932
 4933
 4934
 4935
 4936
 4937
 4938
 4939
 4940
 4941
 4942
 4943
 4944
 4945
 4946
 4947
 4948
 4949
 4950
 4951
 4952
 4953
 4954
 4955
 4956
 4957
 4958
 4959
 4960
 4961
 4962
 4963
 4964
 4965
 4966
 4967
 4968
 4969
 4970
 4971
 4972
 4973
 4974
 4975
 4976
 4977
 4978
 4979
 4980
 4981
 4982
 4983
 4984
 4985
 4986
 4987
 4988
 4989
 4990
 4991
 4992
 4993
 4994
 4995
 4996
 4997
 4998
 4999
 5000
 5001
 5002
 5003
 5004
 5005
 5006
 5007
 5008
 5009
 5010
 5011
 5012
 5013
 5014
 5015
 5016
 5017
 5018
 5019
 5020
 5021
 5022
 5023
 5024
 5025
 5026
 5027
 5028
 5029
 5030
 5031
 5032
 5033
 5034
 5035
 5036
 5037
 5038
 5039
 5040
 5041
 5042
 5043
 5044
 5045
 5046
 5047
 5048
 5049
 5050
 5051
 5052
 5053
 5054
 5055
 5056
 5057
 5058
 5059
 5060
 5061
 5062
 5063
 5064
 5065
 5066
 5067
 5068
 5069
 5070
 5071
 5072
 5073
 5074
 5075
 5076
 5077
 5078
 5079
 5080
 5081
 5082
 5083
 5084
 5085
 5086
 5087
 5088
 5089
 5090
 5091
 5092
 5093
 5094
 5095
 5096
 5097
 5098
 5099
 5100
 5101
 5102
 5103
 5104
 5105
 5106
 5107
 5108
 5109
 5110
 5111
 5112
 5113
 5114
 5115
 5116
 5117
 5118
 5119
 5120
 5121
 5122
 5123
 5124
 5125
 5126
 5127
 5128
 5129
 5130
 5131
 5132
 5133
 5134
 5135
 5136
 5137
 5138
 5139
 5140
 5141
 5142
 5143
 5144
 5145
 5146
 5147
 5148
 5149
 5150
 5151
 5152
 5153
 5154
 5155
 5156
 5157
 5158
 5159
 5160
 5161
 5162
 5163
 5164
 5165
 5166
 5167
 5168
 5169
 5170
 5171
 5172
 5173
 5174
 5175
 5176
 5177
 5178
 5179
 5180
 5181
 5182
 5183
 5184
 5185
 5186
 5187
 5188
 5189
 5190
 5191
 5192
 5193
 5194
 5195
 5196
 5197
 5198
 5199
 5200
 5201
 5202
 5203
 5204
 5205
 5206
 5207
 5208
 5209
 5210
 5211
 5212
 5213
 5214
 5215
 5216
 5217
 5218
 5219
 5220
 5221
 5222
 5223
 5224
 5225
 5226
 5227
 5228
 5229
 5230
 5231
 5232
 5233
 5234
 5235
 5236
 5237
 5238
 5239
 5240
 5241
 5242
 5243
 5244
 5245
 5246
 5247
 5248
 5249
 5250
 5251
 5252
 5253
 5254
 5255
 5256
 5257
 5258
 5259
 5260
 5261
 5262
 5263
 5264
 5265
 5266
 5267
 5268
 5269
 5270
 5271
 5272
 5273
 5274
 5275
 5276
 5277
 5278
 5279
 5280
 5281
 5282
 5283
 5284
 5285
 5286
 5287
 5288
 5289
 5290
 5291
 5292
 5293
 5294
 5295
 5296
 5297
 5298
 5299
 5300
 5301
 5302
 5303
 5304
 5305
 5306
 5307
 5308
 5309
 5310
 5311
 5312
 5313
 5314
 5315
 5316
 5317
 5318
 5319
 5320
 5321
 5322
 5323
 5324
 5325
 5326
 5327
 5328
 5329
 5330
 5331
 5332
 5333
 5334
 5335
 5336
 5337
 5338
 5339
 5340
 5341
 5342
 5343
 5344
 5345
 5346
 5347
 5348
 5349
 5350
 5351
 5352
 5353
 5354
 5355
 5356
 5357
 5358
 5359
 5360
 5361
 5362
 5363
 5364
 5365
 5366
 5367
 5368
 5369
 5370
 5371
 5372
 5373
 5374
 5375
 5376
 5377
 5378
 5379
 5380
 5381
 5382
 5383
 5384
 5385
 5386
 5387
 5388
 5389
 5390
 5391
 5392
 5393
 5394
 5395
 5396
 5397
 5398
 5399
 5400
 5401
 5402
 5403
 5404
 5405
 5406
 5407
 5408
 5409
 5410
 5411
 5412
 5413
 5414
 5415
 5416
 5417
 5418
 5419
 5420
 5421
 5422
 5423
 5424
 5425
 5426
 5427
 5428
 5429
 5430
 5431
 5432
 5433
 5434
 5435
 5436
 5437
 5438
 5439
 5440
 5441
 5442
 5443
 5444
 5445
 5446
 5447
 5448
 5449
 5450
 5451
 5452
 5453
 5454
 5455
 5456
 5457
 5458
 5459
 5460
 5461
 5462
 5463
 5464
 5465
 5466
 5467
 5468
 5469
 5470
 5471
 5472
 5473
 5474
 5475
 5476
 5477
 5478
 5479
 5480
 5481
 5482
 5483
 5484
 5485
 5486
 5487
 5488
 5489
 5490
 5491
 5492
 5493
 5494
 5495
 5496
 5497
 5498
 5499
 5500
 5501
 5502
 5503
 5504
 5505
 5506
 5507
 5508
 5509
 5510
 5511
 5512
 5513
 5514
 5515
 5516
 5517
 5518
 5519
 5520
 5521
 5522
 5523
 5524
 5525
 5526
 5527
 5528
 5529
 5530
 5531
 5532
 5533
 5534
 5535
 5536
 5537
 5538
 5539
 5540
 5541
 5542
 5543
 5544
 5545
 5546
 5547
 5548
 5549
 5550
 5551
 5552
 5553
 5554
 5555
 5556
 5557
 5558
 5559
 5560
 5561
 5562
 5563
 5564
 5565
 5566
 5567
 5568
 5569
 5570
 5571
 5572
 5573
 5574
 5575
 5576
 5577
 5578
 5579
 5580
 5581
 5582
 5583
 5584
 5585
 5586
 5587
 5588
 5589
 5590
 5591
 5592
 5593
 5594
 5595
 5596
 5597
 5598
 5599
 5600
 5601
 5602
 5603
 5604
 5605
 5606
 5607
 5608
 5609
 5610
 5611
 5612
 5613
 5614
 5615
 5616
 5617
 5618
 5619
 5620
 5621
 5622
 5623
 5624
 5625
 5626
 5627
 5628
 5629
 5630
 5631
 5632
 5633
 5634
 5635
 5636
 5637
 5638
 5639
 5640
 5641
 5642
 5643
 5644
 5645
 5646
 5647
 5648
 5649
 5650
 5651
 5652
 5653
 5654
 5655
 5656
 5657
 5658
 5659
 5660
 5661
 5662
 5663
 5664
 5665
 5666
 5667
 5668
 5669
 5670
 5671
 5672
 5673
 5674
 5675
 5676
 5677
 5678
 5679
 5680
 5681
 5682
 5683
 5684
 5685
 5686
 5687
 5688
 5689
 5690
 5691
 5692
 5693
 5694
 5695
 5696
 5697
 5698
 5699
 5700
 5701
 5702
 5703
 5704
 5705
 5706
 5707
 5708
 5709
 5710
 5711
 5712
 5713
 5714
 5715
 5716
 5717
 5718
 5719
 5720
 5721
 5722
 5723
 5724
 5725
 5726
 5727
 5728
 5729
 5730
 5731
 5732
 5733
 5734
 5735
 5736
 5737
 5738
 5739
 5740
 5741
 5742
 5743
 5744
 5745
 5746
 5747
 5748
 5749
 5750
 5751
 5752
 5753
 5754
 5755
 5756
 5757
 5758
 5759
 5760
 5761
 5762
 5763
 5764
 5765
 5766
 5767
 5768
 5769
 5770
 5771
 5772
 5773
 5774
 5775
 5776
 5777
 5778
 5779
 5780
 5781
 5782
 5783
 5784
 5785
 5786
 5787
 5788
 5789
 5790
 5791
 5792
 5793
 5794
 5795
 5796
 5797
 5798
 5799
 5800
 5801
 5802
 5803
 5804
 5805
 5806
 5807
 5808
 5809
 5810
 5811
 5812
 5813
 5814
 5815
 5816
 5817
 5818
 5819
 5820
 5821
 5822
 5823
 5824
 5825
 5826
 5827
 5828
 5829
 5830
 5831
 5832
 5833
 5834
 5835
 5836
 5837
 5838
 5839
 5840
 5841
 5842
 5843
 5844
 5845
 5846
 5847
 5848
 5849
 5850
 5851
 5852
 5853
 5854
 5855
 5856
 5857
 5858
 5859
 5860
 5861
 5862
 5863
 5864
 5865
 5866
 5867
 5868
 5869
 5870
 5871
 5872
 5873
 5874
 5875
 5876
 5877
 5878
 5879
 5880
 5881
 5882
 5883
 5884
 5885
 5886
 5887
 5888
 5889
 5890
 5891
 5892
 5893
 5894
 5895
 5896
 5897
 5898
 5899
 5900
 5901
 5902
 5903
 5904
 5905
 5906
 5907
 5908
 5909
 5910
 5911
 5912
 5913
 5914
 5915
 5916
 5917
 5918
 5919
 5920
 5921
 5922
 5923
 5924
 5925
 5926
 5927
 5928
 5929
 5930
 5931
 5932
 5933
 5934
 5935
 5936
 5937
 5938
 5939
 5940
 5941
 5942
 5943
 5944
 5945
 5946
 5947
 5948
 5949
 5950
 5951
 5952
 5953
 5954
 5955
 5956
 5957
 5958
 5959
 5960
 5961
 5962
 5963
 5964
 5965
 5966
 5967
 5968
 5969
 5970
 5971
 5972
 5973
 5974
 5975
 5976
 5977
 5978
 5979
 5980
 5981
 5982
 5983
 5984
 5985
 5986
 5987
 5988
 5989
 5990
 5991
 5992
 5993
 5994
 5995
 5996
 5997
 5998
 5999
 6000
 6001
 6002
 6003
 6004
 6005
 6006
 6007
 6008
 6009
 6010
 6011
 6012
 6013
 6014
 6015
 6016
 6017
 6018
 6019
 6020
 6021
 6022
 6023
 6024
 6025
 6026
 6027
 6028
 6029
 6030
 6031
 6032
 6033
 6034
 6035
 6036
 6037
 6038
 6039
 6040
 6041
 6042
 6043
 6044
 6045
 6046
 6047
 6048
 6049
 6050
 6051
 6052
 6053
 6054
 6055
 6056
 6057
 6058
 6059
 6060
 6061
 6062
 6063
 6064
 6065
 6066
 6067
 6068
 6069
 6070
 6071
 6072
 6073
 6074
 6075
 6076
 6077
 6078
 6079
 6080
 6081
 6082
 6083
 6084
 6085
 6086
 6087
 6088
 6089
 6090
 6091
 6092
 6093
 6094
 6095
 6096
 6097
 6098
 6099
 6100
 6101
 6102
 6103
 6104
 6105
 6106
 6107
 6108
 6109
 6110
 6111
 6112
 6113
 6114
 6115
 6116
 6117
 6118
 6119
 6120
 6121
 6122
 6123
 6124
 6125
 6126
 6127
 6128
 6129
 6130
 6131
 6132
 6133
 6134
 6135
 6136
 6137
 6138
 6139
 6140
 6141
 6142
 6143
 6144
 6145
 6146
 6147
 6148
 6149
 6150
 6151
 6152
 6153
 6154
 6155
 6156
 6157
 6158
 6159
 6160
 6161
 6162
 6163
 6164
 6165
 6166
 6167
 6168
 6169
 6170
 6171
 6172
 6173
 6174
 6175
 6176
 6177
 6178
 6179
 6180
 6181
 6182
 6183
 6184
 6185
 6186
 6187
 6188
 6189
 6190
 6191
 6192
 6193
 6194
 6195
 6196
 6197
 6198
 6199
 6200
 6201
 6202
 6203
 6204
 6205
 6206
 6207
 6208
 6209
 6210
 6211
 6212
 6213
 6214
 6215
 6216
 6217
 6218
 6219
 6220
 6221
 6222
 6223
 6224
 6225
 6226
 6227
 6228
 6229
 6230
 6231
 6232
 6233
 6234
 6235
 6236
 6237
 6238
 6239
 6240
 6241
 6242
 6243
 6244
 6245
 6246
 6247
 6248
 6249
 6250
 6251
 6252
 6253
 6254
 6255
 6256
 6257
 6258
 6259
 6260
 6261
 6262
 6263
 6264
 6265
 6266
 6267
 6268
 6269
 6270
 6271
 6272
 6273
 6274
 6275
 6276
 6277
 6278
 6279
 6280
 6281
 6282
 6283
 6284
 6285
 6286
 6287
 6288
 6289
 6290
 6291
 6292
 6293
 6294
 6295
 6296
 6297
 6298
 6299
 6300
 6301
 6302
 6303
 6304
 6305
 6306
 6307
 6308
 6309
 6310
 6311
 6312
 6313
 6314
 6315
 6316
 6317
 6318
 6319
 6320
 6321
 6322
 6323
 6324
 6325
 6326
 6327
 6328
 6329
 6330
 6331
 6332
 6333
 6334
 6335
 6336
 6337
 6338
 6339
 6340
 6341
 6342
 6343
 6344
 6345
 6346
 6347
 6348
 6349
 6350
 6351
 6352
 6353
 6354
 6355
 6356
 6357
 6358
 6359
 6360
 6361
 6362
 6363
 6364
 6365
 6366
 6367
 6368
 6369
 6370
 6371
 6372
 6373
 6374
 6375
 6376
 6377
 6378
 6379
 6380
 6381
 6382
 6383
 6384
 6385
 6386
 6387
 6388
 6389
 6390
 6391
 6392
 6393
 6394
 6395
 6396
 6397
 6398
 6399
 6400
 6401
 6402
 6403
 6404
 6405
 6406
 6407
 6408
 6409
 6410
 6411
 6412
 6413
 6414
 6415
 6416
 6417
 6418
 6419
 6420
 6421
 6422
 6423
 6424
 6425
 6426
 6427
 6428
 6429
 6430
 6431
 6432
 6433
 6434
 6435
 6436
 6437
 6438
 6439
 6440
 6441
 6442
 6443
 6444
 6445
 6446
 6447
 6448
 6449
 6450
 6451
 6452
 6453
 6454
 6455
 6456
 6457
 6458
 6459
 6460
 6461
 6462
 6463
 6464
 6465
 6466
 6467
 6468
 6469
 6470
 6471
 6472
 6473
 6474
 6475
 6476
 6477
 6478
 6479
 6480
 6481
 6482
 6483
 6484
 6485
 6486
 6487
 6488
 6489
 6490
 6491
 6492
 6493
 6494
 6495
 6496
 6497
 6498
 6499
 6500
 6501
 6502
 6503
 6504
 6505
 6506
 6507
 6508
 6509
 6510
 6511
 6512
 6513
 6514
 6515
 6516
 6517
 6518
 6519
 6520
 6521
 6522
 6523
 6524
 6525
 6526
 6527
 6528
 6529
 6530
 6531
 6532
 6533
 6534
 6535
 6536
 6537
 6538
 6539
 6540
 6541
 6542
 6543
 6544
 6545
 6546
 6547
 6548
 6549
 6550
 6551
 6552
 6553
 6554
 6555
 6556
 6557
 6558
 6559
 6560
 6561
 6562
 6563
 6564
 6565
 6566
 6567
 6568
 6569
 6570
 6571
 6572
 6573
 6574
 6575
 6576
 6577
 6578
 6579
 6580
 6581
 6582
 6583
 6584
 6585
 6586
 6587
 6588
 6589
 6590
 6591
 6592
 6593
 6594
 6595
 6596
 6597
 6598
 6599
 6600
 6601
 6602
 6603
 6604
 6605
 6606
 6607
 6608
 6609
 6610
 6611
 6612
 6613
 6614
 6615
 6616
 6617
 6618
 6619
 6620
 6621
 6622
 6623
 6624
 6625
 6626
 6627
 6628
 6629
 6630
 6631
 6632
 6633
 6634
 6635
 6636
 6637
 6638
 6639
 6640
 6641
 6642
 6643
 6644
 6645
 6646
 6647
 6648
 6649
 6650
 6651
 6652
 6653
 6654
 6655
 6656
 6657
 6658
 6659
 6660
 6661
 6662
 6663
 6664
 6665
 6666
 6667
 6668
 6669
 6670
 6671
 6672
 6673
 6674
 6675
 6676
 6677
 6678
 6679
 6680
 6681
 6682
 6683
 6684
 6685
 6686
 6687
 6688
 6689
 6690
 6691
 6692
 6693
 6694
 6695
 6696
 6697
 6698
 6699
 6700
 6701
 6702
 6703
 6704
 6705
 6706
 6707
 6708
 6709
 6710
 6711
 6712
 6713
 6714
 6715
 6716
 6717
 6718
 6719
 6720
 6721
 6722
 6723
 6724
 6725
 6726
 6727
 6728
 6729
 6730
 6731
 6732
 6733
 6734
 6735
 6736
 6737
 6738
 6739
 6740
 6741
 6742
 6743
 6744
 6745
 6746
 6747
 6748
 6749
 6750
 6751
 6752
 6753
 6754
 6755
 6756
 6757
 6758
 6759
 6760
 6761
 6762
 6763
 6764
 6765
 6766
 6767
 6768
 6769
 6770
 6771
 6772
 6773
 6774
 6775
 6776
 6777
 6778
 6779
 6780
 6781
 6782
 6783
 6784
 6785
 6786
 6787
 6788
 6789
 6790
 6791
 6792
 6793
 6794
 6795
 6796
 6797
 6798
 6799
 6800
 6801
 6802
 6803
 6804
 6805
 6806
 6807
 6808
 6809
 6810
 6811
 6812
 6813
 6814
 6815
 6816
 6817
 6818
 6819
 6820
 6821
 6822
 6823
 6824
 6825
 6826
 6827
 6828
 6829
 6830
 6831
 6832
 6833
 6834
 6835
 6836
 6837
 6838
 6839
 6840
 6841
 6842
 6843
 6844
 6845
 6846
 6847
 6848
 6849
 6850
 6851
 6852
 6853
 6854
 6855
 6856
 6857
 6858
 6859
 6860
 6861
 6862
 6863
 6864
 6865
 6866
 6867
 6868
 6869
 6870
 6871
 6872
 6873
 6874
 6875
 6876
 6877
 6878
 6879
 6880
 6881
 6882
 6883
 6884
 6885
 6886
 6887
 6888
 6889
 6890
 6891
 6892
 6893
 6894
 6895
 6896
 6897
 6898
 6899
 6900
 6901
 6902
 6903
 6904
 6905
 6906
 6907
 6908
 6909
 6910
 6911
 6912
 6913
 6914
 6915
 6916
 6917
 6918
 6919
 6920
 6921
 6922
 6923
 6924
 6925
 6926
 6927
 6928
 6929
 6930
 6931
 6932
 6933
 6934
 6935
 6936
 6937
 6938
 6939
 6940
 6941
 6942
 6943
 6944
 6945
 6946
 6947
 6948
 6949
 6950
 6951
 6952
 6953
 6954
 6955
 6956
 6957
 6958
 6959
 6960
 6961
 6962
 6963
 6964
 6965
 6966
 6967
 6968
 6969
 6970
 6971
 6972
 6973
 6974
 6975
 6976
 6977
 6978
 6979
 6980
 6981
 6982
 6983
 6984
 6985
 6986
 6987
 6988
 6989
 6990
 6991
 6992
 6993
 6994
 6995
 6996
 6997
 6998
 6999
 7000
 7001
 7002
 7003
 7004
 7005
 7006
 7007
 7008
 7009
 7010
 7011
 7012
 7013
 7014
 7015
 7016
 7017
 7018
 7019
 7020
 7021
 7022
 7023
 7024
 7025
 7026
 7027
 7028
 7029
 7030
 7031
 7032
 7033
 7034
 7035
 7036
 7037
 7038
 7039
 7040
 7041
 7042
 7043
 7044
 7045
 7046
 7047
 7048
 7049
 7050
 7051
 7052
 7053
 7054
 7055
 7056
 7057
 7058
 7059
 7060
 7061
 7062
 7063
 7064
 7065
 7066
 7067
 7068
 7069
 7070
 7071
 7072
 7073
 7074
 7075
 7076
 7077
 7078
 7079
 7080
 7081
 7082
 7083
 7084
 7085
 7086
 7087
 7088
 7089
 7090
 7091
 7092
 7093
 7094
 7095
 7096
 7097
 7098
 7099
 7100
 7101
 7102
 7103
 7104
 7105
 7106
 7107
 7108
 7109
 7110
 7111
 7112
 7113
 7114
 7115
 7116
 7117
 7118
 7119
 7120
 7121
 7122
 7123
 7124
 7125
 7126
 7127
 7128
 7129
 7130
 7131
 7132
 7133
 7134
 7135
 7136
 7137
 7138
 7139
 7140
 7141
 7142
 7143
 7144
 7145
 7146
 7147
 7148
 7149
 7150
 7151
 7152
 7153
 7154
 7155
 7156
 7157
 7158
 7159
 7160
 7161
 7162
 7163
 7164
 7165
 7166
 7167
 7168
 7169
 7170
 7171
 7172
 7173
 7174
 7175
 7176
 7177
 7178
 7179
 7180
 7181
 7182
 7183
 7184
 7185
 7186
 7187
 7188
 7189
 7190
 7191
 7192
 7193
 7194
 7195
 7196
 7197
 7198
 7199
 7200
 7201
 7202
 7203
 7204
 7205
 7206
 7207
 7208
 7209
 7210
 7211
 7212
 7213
 7214
 7215
 7216
 7217
 7218
 7219
 7220
 7221
 7222
 7223
 7224
 7225
 7226
 7227
 7228
 7229
 7230
 7231
 7232
 7233
 7234
 7235
 7236
 7237
 7238
 7239
 7240
 7241
 7242
 7243
 7244
 7245
 7246
 7247
 7248
 7249
 7250
 7251
 7252
 7253
 7254
 7255
 7256
 7257
 7258
 7259
 7260
 7261
 7262
 7263
 7264
 7265
 7266
 7267
 7268
 7269
 7270
 7271
 7272
 7273
 7274
 7275
 7276
 7277
 7278
 7279
 7280
 7281
 7282
 7283
 7284
 7285
 7286
 7287
 7288
 7289
 7290
 7291
 7292
 7293
 7294
 7295
 7296
 7297
 7298
 7299
 7300
 7301
 7302
 7303
 7304
 7305
 7306
 7307
 7308
 7309
 7310
 7311
 7312
 7313
 7314
 7315
 7316
 7317
 7318
 7319
 7320
 7321
 7322
 7323
 7324
 7325
 7326
 7327
 7328
 7329
 7330
 7331
 7332
 7333
 7334
 7335
 7336
 7337
 7338
 7339
 7340
 7341
 7342
 7343
 7344
 7345
 7346
 7347
 7348
 7349
 7350
 7351
 7352
 7353
 7354
 7355
 7356
 7357
 7358
 7359
 7360
 7361
 7362
 7363
 7364
 7365
 7366
 7367
 7368
 7369
 7370
 7371
 7372
 7373
 7374
 7375
 7376
 7377
 7378
 7379
 7380
 7381
 7382
 7383
 7384
 7385
 7386
 7387
 7388
 7389
 7390
 7391
 7392
 7393
 7394
 7395
 7396
 7397
 7398
 7399
 7400
 7401
 7402
 7403
 7404
 7405
 7406
 7407
 7408
 7409
 7410
 7411
 7412
 7413
 7414
 7415
 7416
 7417
 7418
 7419
 7420
 7421
 7422
 7423
 7424
 7425
 7426
 7427
 7428
 7429
 7430
 7431
 7432
 7433
 7434
 7435
 7436
 7437
 7438
 7439
 7440
 7441
 7442
 7443
 7444
 7445
 7446
 7447
 7448
 7449
 7450
 7451
 7452
 7453
 7454
 7455
 7456
 7457
 7458
 7459
 7460
 7461
 7462
 7463
 7464
 7465
 7466
 7467
 7468
 7469
 7470
 7471
 7472
 7473
 7474
 7475
 7476
 7477
 7478
 7479
 7480
 7481
 7482
 7483
 7484
 7485
 7486
 7487
 7488
 7489
 7490
 7491
 7492
 7493
 7494
 7495
 7496
 7497
 7498
 7499
 7500
 7501
 7502
 7503
 7504
 7505
 7506
 7507
 7508
 7509
 7510
 7511
 7512
 7513
 7514
 7515
 7516
 7517
 7518
 7519
 7520
 7521
 7522
 7523
 7524
 7525
 7526
 7527
 7528
 7529
 7530
 7531
 7532
 7533
 7534
 7535
 7536
 7537
 7538
 7539
 7540
 7541
 7542
 7543
 7544
 7545
 7546
 7547
 7548
 7549
 7550
 7551
 7552
 7553
 7554
 7555
 7556
 7557
 7558
 7559
 7560
 7561
 7562
 7563
 7564
 7565
 7566
 7567
 7568
 7569
 7570
 7571
 7572
 7573
 7574
 7575
 7576
 7577
 7578
 7579
 7580
 7581
 7582
 7583
 7584
 7585
 7586
 7587
 7588
 7589
 7590
 7591
 7592
 7593
 7594
 7595
 7596
 7597
 7598
 7599
 7600
 7601
 7602
 7603
 7604
 7605
 7606
 7607
 7608
 7609
 7610
 7611
 7612
 7613
 7614
 7615
 7616
 7617
 7618
 7619
 7620
 7621
 7622
 7623
 7624
 7625
 7626
 7627
 7628
 7629
 7630
 7631
 7632
 7633
 7634
 7635
 7636
 7637
 7638
 7639
 7640
 7641
 7642
 7643
 7644
 7645
 7646
 7647
 7648
 7649
 7650
 7651
 7652
 7653
 7654
 7655
 7656
 7657
 7658
 7659
 7660
 7661
 7662
 7663
 7664
 7665
 7666
 7667
 7668
 7669
 7670
 7671
 7672
 7673
 7674
 7675
 7676
 7677
 7678
 7679
 7680
 7681
 7682
 7683
 7684
 7685
 7686
 7687
 7688
 7689
 7690
 7691
 7692
 7693
 7694
 7695
 7696
 7697
 7698
 7699
 7700
 7701
 7702
 7703
 7704
 7705
 7706
 7707
 7708
 7709
 7710
 7711
 7712
 7713
 7714
 7715
 7716
 7717
 7718
 7719
 7720
 7721
 7722
 7723
 7724
 7725
 7726
 7727
 7728
 7729
 7730
 7731
 7732
 7733
 7734
 7735
 7736
 7737
 7738
 7739
 7740
 7741
 7742
 7743
 7744
 7745
 7746
 7747
 7748
 7749
 7750
 7751
 7752
 7753
 7754
 7755
 7756
 7757
 7758
 7759
 7760
 7761
 7762
 7763
 7764
 7765
 7766
 7767
 7768
 7769
 7770
 7771
 7772
 7773
 7774
 7775
 7776
 7777
 7778
 7779
 7780
 7781
 7782
 7783
 7784
 7785
 7786
 7787
 7788
 7789
 7790
 7791
 7792
 7793
 7794
 7795
 7796
 7797
 7798
 7799
 7800
 7801
 7802
 7803
 7804
 7805
 7806
 7807
 7808
 7809
 7810
 7811
 7812
 7813
 7814
 7815
 7816
 7817
 7818
 7819
 7820
 7821
 7822
 7823
 7824
 7825
 7826
 7827
 7828
 7829
 7830
 7831
 7832
 7833
 7834
 7835
 7836
 7837
 7838
 7839
 7840
 7841
 7842
 7843
 7844
 7845
 7846
 7847
 7848
 7849
 7850
 7851
 7852
 7853
 7854
 7855
 7856
 7857
 7858
 7859
 7860
 7861
 7862
 7863
 7864
 7865
 7866
 7867
 7868
 7869
 7870
 7871
 7872
 7873
 7874
 7875
 7876
 7877
 7878
 7879
 7880
 7881
 7882
 7883
 7884
 7885
 7886
 7887
 7888
 7889
 7890
 7891
 7892
 7893
 7894
 7895
 7896
 7897
 7898
 7899
 7900
 7901
 7902
 7903
 7904
 7905
 7906
 7907
 7908
 7909
 7910
 7911
 7912
 7913
 7914
 7915
 7916
 7917
 7918
 7919
 7920
 7921
 7922
 7923
 7924
 7925
 7926
 7927
 7928
 7929
 7930
 7931
 7932
 7933
 7934
 7935
 7936
 7937
 7938
 7939
 7940
 7941
 7942
 7943
 7944
 7945
 7946
 7947
 7948
 7949
 7950
 7951
 7952
 7953
 7954
 7955
 7956
 7957
 7958
 7959
 7960
 7961
 7962
 7963
 7964
 7965
 7966
 7967
 7968
 7969
 7970
 7971
 7972
 7973
 7974
 7975
 7976
 7977
 7978
 7979
 7980
 7981
 7982
 7983
 7984
 7985
 7986
 7987
 7988
 7989
 7990
 7991
 7992
 7993
 7994
 7995
 7996
 7997
 7998
 7999
 8000
 8001
 8002
 8003
 8004
 8005
 8006
 8007
 8008
 8009
 8010
 8011
 8012
 8013
 8014
 8015
 8016
 8017
 8018
 8019
 8020
 8021
 8022
 8023
 8024
 8025
 8026
 8027
 8028
 8029
 8030
 8031
 8032
 8033
 8034
 8035
 8036
 8037
 8038
 8039
 8040
 8041
 8042
 8043
 8044
 8045
 8046
 8047
 8048
 8049
 8050
 8051
 8052
 8053
 8054
 8055
 8056
 8057
 8058
 8059
 8060
 8061
 8062
 8063
 8064
 8065
 8066
 8067
 8068
 8069
 8070
 8071
 8072
 8073
 8074
 8075
 8076
 8077
 8078
 8079
 8080
 8081
 8082
 8083
 8084
 8085
 8086
 8087
 8088
 8089
 8090
 8091
 8092
 8093
 8094
 8095
 8096
 8097
 8098
 8099
 8100
 8101
 8102
 8103
 8104
 8105
 8106
 8107
 8108
 8109
 8110
 8111
 8112
 8113
 8114
 8115
 8116
 8117
 8118
 8119
 8120
 8121
 8122
 8123
 8124
 8125
 8126
 8127
 8128
 8129
 8130
 8131
 8132
 8133
 8134
 8135
 8136
 8137
 8138
 8139
 8140
 8141
 8142
 8143
 8144
 8145
 8146
 8147
 8148
 8149
 8150
 8151
 8152
 8153
 8154
 8155
 8156
 8157
 8158
 8159
 8160
 8161
 8162
 8163
 8164
 8165
 8166
 8167
 8168
 8169
 8170
 8171
 8172
 8173
 8174
 8175
 8176
 8177
 8178
 8179
 8180
 8181
 8182
 8183
 8184
 8185
 8186
 8187
 8188
 8189
 8190
 8191
 8192
 8193
 8194
 8195
 8196
 8197
 8198
 8199
 8200
 8201
 8202
 8203
 8204
 8205
 8206
 8207
 8208
 8209
 8210
 8211
 8212
 8213
 8214
 8215
 8216
 8217
 8218
 8219
 8220
 8221
 8222
 8223
 8224
 8225
 8226
 8227
 8228
 8229
 8230
 8231
 8232
 8233
 8234
 8235
 8236
 8237
 8238
 8239
 8240
 8241
 8242
 8243
 8244
 8245
 8246
 8247
 8248
 8249
 8250
 8251
 8252
 8253
 8254
 8255
 8256
 8257
 8258
 8259
 8260
 8261
 8262
 8263
 8264
 8265
 8266
 8267
 8268
 8269
 8270
 8271
 8272
 8273
 8274
 8275
 8276
 8277
 8278
 8279
 8280
 8281
 8282
 8283
 8284
 8285
 8286
 8287
 8288
 8289
 8290
 8291
 8292
 8293
 8294
 8295
 8296
 8297
 8298
 8299
 8300
 8301
 8302
 8303
 8304
 8305
 8306
 8307
 8308
 8309
 8310
 8311
 8312
 8313
 8314
 8315
 8316
 8317
 8318
 8319
 8320
 8321
 8322
 8323
 8324
 8325
 8326
 8327
 8328
 8329
 8330
 8331
 8332
 8333
 8334
 8335
 8336
 8337
 8338
 8339
 8340
 8341
 8342
 8343
 8344
 8345
 8346
 8347
 8348
 8349
 8350
 8351
 8352
 8353
 8354
 8355
 8356
 8357
 8358
 8359
 8360
 8361
 8362
 8363
 8364
 8365
 8366
 8367
 8368
 8369
 8370
 8371
 8372
 8373
 8374
 8375
 8376
 8377
 8378
 8379
 8380
 8381
 8382
 8383
 8384
 8385
 8386
 8387
 8388
 8389
 8390
 8391
 8392
 8393
 8394
 8395
 8396
 8397
 8398
 8399
 8400
 8401
 8402
 8403
 8404
 8405
 8406
 8407
 8408
 8409
 8410
 8411
 8412
 8413
 8414
 8415
 8416
 8417
 8418
 8419
 8420
 8421
 8422
 8423
 8424
 8425
 8426
 8427
 8428
 8429
 8430
 8431
 8432
 8433
 8434
 8435
 8436
 8437
 8438
 8439
 8440
 8441
 8442
 8443
 8444
 8445
 8446
 8447
 8448
 8449
 8450
 8451
 8452
 8453
 8454
 8455
 8456
 8457
 8458
 8459
 8460
 8461
 8462
 8463
 8464
 8465
 8466
 8467
 8468
 8469
 8470
 8471
 8472
 8473
 8474
 8475
 8476
 8477
 8478
 8479
 8480
 8481
 8482
 8483
 8484
 8485
 8486
 8487
 8488
 8489
 8490
 8491
 8492
 8493
 8494
 8495
 8496
 8497
 8498
 8499
 8500
 8501
 8502
 8503
 8504
 8505
 8506
 8507
 8508
 8509
 8510
 8511
 8512
 8513
 8514
 8515
 8516
 8517
 8518
 8519
 8520
 8521
 8522
 8523
 8524
 8525
 8526
 8527
 8528
 8529
 8530
 8531
 8532
 8533
 8534
 8535
 8536
 8537
 8538
 8539
 8540
 8541
 8542
 8543
 8544
 8545
 8546
 8547
 8548
 8549
 8550
 8551
 8552
 8553
 8554
 8555
 8556
 8557
 8558
 8559
 8560
 8561
 8562
 8563
 8564
 8565
 8566
 8567
 8568
 8569
 8570
 8571
 8572
 8573
 8574
 8575
 8576
 8577
 8578
 8579
 8580
 8581
 8582
 8583
 8584
 8585
 8586
 8587
 8588
 8589
 8590
 8591
 8592
 8593
 8594
 8595
 8596
 8597
 8598
 8599
 8600
 8601
 8602
 8603
 8604
 8605
 8606
 8607
 8608
 8609
 8610
 8611
 8612
 8613
 8614
 8615
 8616
 8617
 8618
 8619
 8620
 8621
 8622
 8623
 8624
 8625
 8626
 8627
 8628
 8629
 8630
 8631
 8632
 8633
 8634
 8635
 8636
 8637
 8638
 8639
 8640
 8641
 8642
 8643
 8644
 8645
 8646
 8647
 8648
 8649
 8650
 8651
 8652
 8653
 8654
 8655
 8656
 8657
 8658
 8659
 8660
 8661
 8662
 8663
 8664
 8665
 8666
 8667
 8668
 8669
 8670
 8671
 8672
 8673
 8674
 8675
 8676
 8677
 8678
 8679
 8680
 8681
 8682
 8683
 8684
 8685
 8686
 8687
 8688
 8689
 8690
 8691
 8692
 8693
 8694
 8695
 8696
 8697
 8698
 8699
 8700
 8701
 8702
 8703
 8704
 8705
 8706
 8707
 8708
 8709
 8710
 8711
 8712
 8713
 8714
 8715
 8716
 8717
 8718
 8719
 8720
 8721
 8722
 8723
 8724
 8725
 8726
 8727
 8728
 8729
 8730
 8731
 8732
 8733
 8734
 8735
 8736
 8737
 8738
 8739
 8740
 8741
 8742
 8743
 8744
 8745
 8746
 8747
 8748
 8749
 8750
 8751
 8752
 8753
 8754
 8755
 8756
 8757
 8758
 8759
 8760
 8761
 8762
 8763
 8764
 8765
 8766
 8767
 8768
 8769
 8770
 8771
 8772
 8773
 8774
 8775
 8776
 8777
 8778
 8779
 8780
 8781
 8782
 8783
 8784
 8785
 8786
 8787
 8788
 8789
 8790
 8791
 8792
 8793
 8794
 8795
 8796
 8797
 8798
 8799
 8800
 8801
 8802
 8803
 8804
 8805
 8806
 8807
 8808
 8809
 8810
 8811
 8812
 8813
 8814
 8815
 8816
 8817
 8818
 8819
 8820
 8821
 8822
 8823
 8824
 8825
 8826
 8827
 8828
 8829
 8830
 8831
 8832
 8833
 8834
 8835
 8836
 8837
 8838
 8839
 8840
 8841
 8842
 8843
 8844
 8845
 8846
 8847
 8848
 8849
 8850
 8851
 8852
 8853
 8854
 8855
 8856
 8857
 8858
 8859
 8860
 8861
 8862
 8863
 8864
 8865
 8866
 8867
 8868
 8869
 8870
 8871
 8872
 8873
 8874
 8875
 8876
 8877
 8878
 8879
 8880
 8881
 8882
 8883
 8884
 8885
 8886
 8887
 8888
 8889
 8890
 8891
 8892
 8893
 8894
 8895
 8896
 8897
 8898
 8899
 8900
 8901
 8902
 8903
 8904
 8905
 8906
 8907
 8908
 8909
 8910
 8911
 8912
 8913
 8914
 8915
 8916
 8917
 8918
 8919
 8920
 8921
 8922
 8923
 8924
 8925
 8926
 8927
 8928
 8929
 8930
 8931
 8932
 8933
 8934
 8935
 8936
 8937
 8938
 8939
 8940
 8941
 8942
 8943
 8944
 8945
 8946
 8947
 8948
 8949
 8950
 8951
 8952
 8953
 8954
 8955
 8956
 8957
 8958
 8959
 8960
 8961
 8962
 8963
 8964
 8965
 8966
 8967
 8968
 8969
 8970
 8971
 8972
 8973
 8974
 8975
 8976
 8977
 8978
 8979
 8980
 8981
 8982
 8983
 8984
 8985
 8986
 8987
 8988
 8989
 8990
 8991
 8992
 8993
 8994
 8995
 8996
 8997
 8998
 8999
 9000
 9001
 9002
 9003
 9004
 9005
 9006
 9007
 9008
 9009
 9010
 9011
 9012
 9013
 9014
 9015
 9016
 9017
 9018
 9019
 9020
 9021
 9022
 9023
 9024
 9025
 9026
 9027
 9028
 9029
 9030
 9031
 9032
 9033
 9034
 9035
 9036
 9037
 9038
 9039
 9040
 9041
 9042
 9043
 9044
 9045
 9046
 9047
 9048
 9049
 9050
 9051
 9052
 9053
 9054
 9055
 9056
 9057
 9058
 9059
 9060
 9061
 9062
 9063
 9064
 9065
 9066
 9067
 9068
 9069
 9070
 9071
 9072
 9073
 9074
 9075
 9076
 9077
 9078
 9079
 9080
 9081
 9082
 9083
 9084
 9085
 9086
 9087
 9088
 9089
 9090
 9091
 9092
 9093
 9094
 9095
 9096
 9097
 9098
 9099
 9100
 9101
 9102
 9103
 9104
 9105
 9106
 9107
 9108
 9109
 9110
 9111
 9112
 9113
 9114
 9115
 9116
 9117
 9118
 9119
 9120
 9121
 9122
 9123
 9124
 9125
 9126
 9127
 9128
 9129
 9130
 9131
 9132
 9133
 9134
 9135
 9136
 9137
 9138
 9139
 9140
 9141
 9142
 9143
 9144
 9145
 9146
 9147
 9148
 9149
 9150
 9151
 9152
 9153
 9154
 9155
 9156
 9157
 9158
 9159
 9160
 9161
 9162
 9163
 9164
 9165
 9166
 9167
 9168
 9169
 9170
 9171
 9172
 9173
 9174
 9175
 9176
 9177
 9178
 9179
 9180
 9181
 9182
 9183
 9184
 9185
 9186
 9187
 9188
 9189
 9190
 9191
 9192
 9193
 9194
 9195
 9196
 9197
 9198
 9199
 9200
 9201
 9202
 9203
 9204
 9205
 9206
 9207
 9208
 9209
 9210
 9211
 9212
 9213
 9214
 9215
 9216
 9217
 9218
 9219
 9220
 9221
 9222
 9223
 9224
 9225
 9226
 9227
 9228
 9229
 9230
 9231
 9232
 9233
 9234
 9235
 9236
 9237
 9238
 9239
 9240
 9241
 9242
 9243
 9244
 9245
 9246
 9247
 9248
 9249
 9250
 9251
 9252
 9253
 9254
 9255
 9256
 9257
 9258
 9259
 9260
 9261
 9262
 9263
 9264
 9265
 9266
 9267
 9268
 9269
 9270
 9271
 9272
 9273
 9274
 9275
 9276
 9277
 9278
 9279
 9280
 9281
 9282
 9283
 9284
 9285
 9286
 9287
 9288
 9289
 9290
 9291
 9292
 9293
 9294
 9295
 9296
 9297
 9298
 9299
 9300
 9301
 9302
 9303
 9304
 9305
 9306
 9307
 9308
 9309
 9310
 9311
 9312
 9313
 9314
 9315
 9316
 9317
 9318
 9319
 9320
 9321
 9322
 9323
 9324
 9325
 9326
 9327
 9328
 9329
 9330
 9331
 9332
 9333
 9334
 9335
 9336
 9337
 9338
 9339
 9340
 9341
 9342
 9343
 9344
 9345
 9346
 9347
 9348
 9349
 9350
 9351
 9352
 9353
 9354
 9355
 9356
 9357
 9358
 9359
 9360
 9361
 9362
 9363
 9364
 9365
 9366
 9367
 9368
 9369
 9370
 9371
 9372
 9373
 9374
 9375
 9376
 9377
 9378
 9379
 9380
 9381
 9382
 9383
 9384
 9385
 9386
 9387
 9388
 9389
 9390
 9391
 9392
 9393
 9394
 9395
 9396
 9397
 9398
 9399
 9400
 9401
 9402
 9403
 9404
 9405
 9406
 9407
 9408
 9409
 9410
 9411
 9412
 9413
 9414
 9415
 9416
 9417
 9418
 9419
 9420
 9421
 9422
 9423
 9424
 9425
 9426
 9427
 9428
 9429
 9430
 9431
 9432
 9433
 9434
 9435
 9436
 9437
 9438
 9439
 9440
 9441
 9442
 9443
 9444
 9445
 9446
 9447
 9448
 9449
 9450
 9451
 9452
 9453
 9454
 9455
 9456
 9457
 9458
 9459
 9460
 9461
 9462
 9463
 9464
 9465
 9466
 9467
 9468
 9469
 9470
 9471
 9472
 9473
 9474
 9475
 9476
 9477
 9478
 9479
 9480
 9481
 9482
 9483
 9484
 9485
 9486
 9487
 9488
 9489
 9490
 9491
 9492
 9493
 9494
 9495
 9496
 9497
 9498
 9499
 9500
 9501
 9502
 9503
 9504
 9505
 9506
 9507
 9508
 9509
 9510
 9511
 9512
 9513
 9514
 9515
 9516
 9517
 9518
 9519
 9520
 9521
 9522
 9523
 9524
 9525
 9526
 9527
 9528
 9529
 9530
 9531
 9532
 9533
 9534
 9535
 9536
 9537
 9538
 9539
 9540
 9541
 9542
 9543
 9544
 9545
 9546
 9547
 9548
 9549
 9550
 9551
 9552
 9553
 9554
 9555
 9556
 9557
 9558
 9559
 9560
 9561
 9562
 9563
 9564
 9565
 9566
 9567
 9568
 9569
 9570
 9571
 9572
 9573
 9574
 9575
 9576
 9577
 9578
 9579
 9580
 9581
 9582
 9583
 9584
 9585
 9586
 9587
 9588
 9589
 9590
 9591
 9592
 9593
 9594
 9595
 9596
 9597
 9598
 9599
 9600
 9601
 9602
 9603
 9604
 9605
 9606
 9607
 9608
 9609
 9610
 9611
 9612
 9613
 9614
 9615
 9616
 9617
 9618
 9619
 9620
 9621
 9622
 9623
 9624
 9625
 9626
 9627
 9628
 9629
 9630
 9631
 9632
 9633
 9634
 9635
 9636
 9637
 9638
 9639
 9640
 9641
 9642
 9643
 9644
 9645
 9646
 9647
 9648
 9649
 9650
 9651
 9652
 9653
 9654
 9655
 9656
 9657
 9658
 9659
 9660
 9661
 9662
 9663
 9664
 9665
 9666
 9667
 9668
 9669
 9670
 9671
 9672
 9673
 9674
 9675
 9676
 9677
 9678
 9679
 9680
 9681
 9682
 9683
 9684
 9685
 9686
 9687
 9688
 9689
 9690
 9691
 9692
 9693
 9694
 9695
 9696
 9697
 9698
 9699
 9700
 9701
 9702
 9703
 9704
 9705
 9706
 9707
 9708
 9709
 9710
 9711
 9712
 9713
 9714
 9715
 9716
 9717
 9718
 9719
 9720
 9721
 9722
 9723
 9724
 9725
 9726
 9727
 9728
 9729
 9730
 9731
 9732
 9733
 9734
 9735
 9736
 9737
 9738
 9739
 9740
 9741
 9742
 9743
 9744
 9745
 9746
 9747
 9748
 9749
 9750
 9751
 9752
 9753
 9754
 9755
 9756
 9757
 9758
 9759
 9760
 9761
 9762
 9763
 9764
 9765
 9766
 9767
 9768
 9769
 9770
 9771
 9772
 9773
 9774
 9775
 9776
 9777
 9778
 9779
 9780
 9781
 9782
 9783
 9784
 9785
 9786
 9787
 9788
 9789
 9790
 9791
 9792
 9793
 9794
 9795
 9796
 9797
 9798
 9799
 9800
 9801
 9802
 9803
 9804
 9805
 9806
 9807
 9808
 9809
 9810
 9811
 9812
 9813
 9814
 9815
 9816
 9817
 9818
 9819
 9820
 9821
 9822
 9823
 9824
 9825
 9826
 9827
 9828
 9829
 9830
 9831
 9832
 9833
 9834
 9835
 9836
 9837
 9838
 9839
 9840
 9841
 9842
 9843
 9844
 9845
 9846
 9847
 9848
 9849
 9850
 9851
 9852
 9853
 9854
 9855
 9856
 9857
 9858
 9859
 9860
 9861
 9862
 9863
 9864
 9865
 9866
 9867
 9868
 9869
 9870
 9871
 9872
 9873
 9874
 9875
 9876
 9877
 9878
 9879
 9880
 9881
 9882
 9883
 9884
 9885
 9886
 9887
 9888
 9889
 9890
 9891
 9892
 9893
 9894
 9895
 9896
 9897
 9898
 9899
 9900
 9901
 9902
 9903
 9904
 9905
 9906
 9907
 9908
 9909
 9910
 9911
 9912
 9913
 9914
 9915
 9916
 9917
 9918
 9919
 9920
 9921
 9922
 9923
 9924
 9925
 9926
 9927
 9928
 9929
 9930
 9931
 9932
 9933
 9934
 9935
 9936
 9937
 9938
 9939
 9940
 9941
 9942
 9943
 9944
 9945
 9946
 9947
 9948
 9949
 9950
 9951
 9952
 9953
 9954
 9955
 9956
 9957
 9958
 9959
 9960
 9961
 9962
 9963
 9964
 9965
 9966
 9967
 9968
 9969
 9970
 9971
 9972
 9973
 9974
 9975
 9976
 9977
 9978
 9979
 9980
 9981
 9982
 9983
 9984
 9985
 9986
 9987
 9988
 9989
 9990
 9991
 9992
 9993
 9994
 9995
 9996
 9997
 9998
 9999
10000
10001
10002
10003
10004
10005
10006
10007
10008
10009
10010
10011
10012
10013
10014
10015
10016
10017
10018
10019
10020
10021
10022
10023
10024
10025
10026
10027
10028
10029
10030
10031
10032
10033
10034
10035
10036
10037
10038
10039
10040
10041
10042
10043
10044
10045
10046
10047
10048
10049
10050
10051
10052
10053
10054
10055
10056
10057
10058
10059
10060
10061
10062
10063
10064
10065
10066
10067
10068
10069
10070
10071
10072
10073
10074
10075
10076
10077
10078
10079
10080
10081
10082
10083
10084
10085
10086
10087
10088
10089
10090
10091
10092
10093
10094
10095
10096
10097
10098
10099
10100
10101
10102
10103
10104
10105
10106
10107
10108
10109
10110
10111
10112
10113
10114
10115
10116
10117
10118
10119
10120
10121
10122
10123
10124
10125
10126
10127
10128
10129
10130
10131
10132
10133
10134
10135
10136
10137
10138
10139
10140
10141
10142
10143
10144
10145
10146
10147
10148
10149
10150
10151
10152
10153
10154
10155
10156
10157
10158
10159
10160
10161
10162
10163
10164
10165
10166
10167
10168
10169
10170
10171
10172
10173
10174
10175
10176
10177
10178
10179
10180
10181
10182
10183
10184
10185
10186
10187
10188
10189
10190
10191
10192
10193
10194
10195
10196
10197
10198
10199
10200
10201
10202
10203
10204
10205
10206
10207
10208
10209
10210
10211
10212
10213
10214
10215
10216
10217
10218
10219
10220
10221
10222
10223
10224
10225
10226
10227
10228
10229
10230
10231
10232
10233
10234
10235
10236
10237
10238
10239
10240
10241
10242
10243
10244
10245
10246
10247
10248
10249
10250
10251
10252
10253
10254
10255
10256
10257
10258
10259
10260
10261
10262
10263
10264
10265
10266
10267
10268
10269
10270
10271
10272
10273
10274
10275
10276
10277
10278
10279
10280
10281
10282
10283
10284
10285
10286
10287
10288
10289
10290
10291
10292
10293
10294
10295
10296
10297
10298
10299
10300
10301
10302
10303
10304
10305
10306
10307
10308
10309
10310
10311
10312
10313
10314
10315
10316
10317
10318
10319
10320
10321
10322
10323
10324
10325
10326
10327
10328
10329
10330
10331
10332
10333
10334
10335
10336
10337
10338
10339
10340
10341
10342
10343
10344
10345
10346
10347
10348
10349
10350
10351
10352
10353
10354
10355
10356
10357
10358
10359
10360
10361
10362
10363
10364
10365
10366
10367
10368
10369
10370
10371
10372
10373
10374
10375
10376
10377
10378
10379
10380
10381
10382
10383
10384
10385
10386
10387
10388
10389
10390
10391
10392
10393
10394
10395
10396
10397
10398
10399
10400
10401
10402
10403
10404
10405
10406
10407
10408
10409
10410
10411
10412
10413
10414
10415
10416
10417
10418
10419
10420
10421
10422
10423
10424
10425
10426
10427
10428
10429
10430
10431
10432
10433
10434
10435
10436
10437
10438
10439
10440
10441
10442
10443
10444
10445
10446
10447
10448
10449
10450
10451
10452
10453
10454
10455
10456
10457
10458
10459
10460
10461
10462
10463
10464
10465
10466
10467
10468
10469
10470
10471
10472
10473
10474
10475
10476
10477
10478
10479
10480
10481
10482
10483
10484
10485
10486
10487
10488
10489
10490
10491
10492
10493
10494
10495
10496
10497
10498
10499
10500
10501
10502
10503
10504
10505
10506
10507
10508
10509
10510
10511
10512
10513
10514
10515
10516
10517
10518
10519
10520
10521
10522
10523
10524
10525
10526
10527
10528
10529
10530
10531
10532
10533
10534
10535
10536
10537
10538
10539
10540
10541
10542
10543
10544
10545
10546
10547
10548
10549
10550
10551
10552
10553
10554
10555
10556
10557
10558
10559
10560
10561
10562
10563
10564
10565
10566
10567
10568
10569
10570
10571
10572
10573
10574
10575
10576
10577
10578
10579
10580
10581
10582
10583
10584
10585
10586
10587
10588
10589
10590
10591
10592
10593
10594
10595
10596
10597
10598
10599
10600
10601
10602
10603
10604
10605
10606
10607
10608
10609
10610
10611
10612
10613
10614
10615
10616
10617
10618
10619
10620
10621
10622
10623
10624
10625
10626
10627
10628
10629
10630
10631
10632
10633
10634
10635
10636
10637
10638
10639
10640
10641
10642
10643
10644
10645
10646
10647
10648
10649
10650
10651
10652
10653
10654
10655
10656
10657
10658
10659
10660
10661
10662
10663
10664
10665
10666
10667
10668
10669
10670
10671
10672
10673
10674
10675
10676
10677
10678
10679
10680
10681
10682
10683
10684
10685
10686
10687
10688
10689
10690
10691
10692
10693
10694
10695
10696
10697
10698
10699
10700
10701
10702
10703
10704
10705
10706
10707
10708
10709
10710
10711
10712
10713
10714
10715
10716
10717
10718
10719
10720
10721
10722
10723
10724
10725
10726
10727
10728
10729
10730
10731
10732
10733
10734
10735
10736
10737
10738
10739
10740
10741
10742
10743
10744
10745
10746
10747
10748
10749
10750
10751
10752
10753
10754
10755
10756
10757
10758
10759
10760
10761
10762
10763
10764
10765
10766
10767
10768
10769
10770
10771
10772
10773
10774
10775
10776
10777
10778
10779
10780
10781
10782
10783
10784
10785
10786
10787
10788
10789
10790
10791
10792
10793
10794
10795
10796
10797
10798
10799
10800
10801
10802
10803
10804
10805
10806
10807
10808
10809
10810
10811
10812
10813
10814
10815
10816
10817
10818
10819
10820
10821
10822
10823
10824
10825
10826
10827
10828
10829
10830
10831
10832
10833
10834
10835
10836
10837
10838
10839
10840
10841
10842
10843
10844
10845
10846
10847
10848
10849
10850
10851
10852
10853
10854
10855
10856
10857
10858
10859
10860
10861
10862
10863
10864
10865
10866
10867
10868
10869
10870
10871
10872
10873
10874
10875
10876
10877
10878
10879
10880
10881
10882
10883
10884
10885
10886
10887
10888
10889
10890
10891
10892
10893
10894
10895
10896
10897
10898
10899
10900
10901
10902
10903
10904
10905
10906
10907
10908
10909
10910
10911
10912
10913
10914
10915
10916
10917
10918
10919
10920
10921
10922
10923
10924
10925
10926
10927
10928
10929
10930
10931
10932
10933
10934
10935
10936
10937
10938
10939
10940
10941
10942
10943
10944
10945
10946
10947
10948
10949
10950
10951
10952
10953
10954
10955
10956
10957
10958
10959
10960
10961
10962
10963
10964
10965
10966
10967
10968
10969
10970
10971
10972
10973
10974
10975
10976
10977
10978
10979
10980
10981
10982
10983
10984
10985
10986
10987
10988
10989
10990
10991
10992
10993
10994
10995
10996
10997
10998
10999
11000
11001
11002
11003
11004
11005
11006
11007
11008
11009
11010
11011
11012
11013
11014
11015
11016
11017
11018
11019
11020
11021
11022
11023
11024
11025
11026
11027
11028
11029
11030
11031
11032
11033
11034
11035
11036
11037
11038
11039
11040
11041
11042
11043
11044
11045
11046
11047
11048
11049
11050
11051
11052
11053
11054
11055
11056
11057
11058
11059
11060
11061
11062
11063
11064
11065
11066
11067
11068
11069
11070
11071
11072
11073
11074
11075
11076
11077
11078
11079
11080
11081
11082
11083
11084
11085
11086
11087
11088
11089
11090
11091
11092
11093
11094
11095
11096
11097
11098
11099
11100
11101
11102
11103
11104
11105
11106
11107
11108
11109
11110
11111
11112
11113
11114
11115
11116
11117
11118
11119
11120
11121
11122
11123
11124
11125
11126
11127
11128
11129
11130
11131
11132
11133
11134
11135
11136
11137
11138
11139
11140
11141
11142
11143
11144
11145
11146
11147
11148
11149
11150
11151
11152
11153
11154
11155
11156
11157
11158
11159
11160
11161
11162
11163
11164
11165
11166
11167
11168
11169
11170
11171
11172
11173
11174
11175
11176
11177
11178
11179
11180
11181
11182
11183
11184
11185
11186
11187
11188
11189
11190
11191
11192
11193
11194
11195
11196
11197
11198
11199
11200
11201
11202
11203
11204
11205
11206
11207
11208
11209
11210
11211
11212
11213
11214
11215
11216
11217
11218
11219
11220
11221
11222
11223
11224
11225
11226
11227
11228
11229
11230
11231
11232
11233
11234
11235
11236
11237
11238
11239
11240
11241
11242
11243
11244
11245
11246
11247
11248
11249
11250
11251
11252
11253
11254
11255
11256
11257
11258
11259
11260
11261
11262
11263
11264
11265
11266
11267
11268
11269
11270
11271
11272
11273
11274
11275
11276
11277
11278
11279
11280
11281
11282
11283
11284
11285
11286
11287
11288
11289
11290
11291
11292
11293
11294
11295
11296
11297
11298
11299
11300
11301
11302
11303
11304
11305
11306
11307
11308
11309
11310
11311
11312
11313
11314
11315
11316
11317
11318
11319
11320
11321
11322
11323
11324
11325
11326
11327
11328
11329
11330
11331
11332
11333
11334
11335
11336
11337
11338
11339
11340
11341
11342
11343
11344
11345
11346
11347
11348
11349
11350
11351
11352
11353
11354
11355
11356
11357
11358
11359
11360
11361
11362
11363
11364
11365
11366
11367
11368
11369
11370
11371
11372
11373
11374
11375
11376
11377
11378
11379
11380
11381
11382
11383
11384
11385
11386
11387
11388
11389
11390
11391
11392
11393
11394
11395
11396
11397
11398
11399
11400
11401
11402
11403
11404
11405
11406
11407
11408
11409
11410
11411
11412
11413
11414
11415
11416
11417
11418
11419
11420
11421
11422
11423
11424
11425
11426
11427
11428
11429
11430
11431
11432
11433
11434
11435
11436
11437
11438
11439
11440
11441
11442
11443
11444
11445
11446
11447
11448
11449
11450
11451
11452
11453
11454
11455
11456
11457
11458
11459
11460
11461
11462
11463
11464
11465
11466
11467
11468
11469
11470
11471
11472
11473
11474
11475
11476
11477
11478
11479
11480
11481
11482
11483
11484
11485
11486
11487
11488
11489
11490
11491
11492
11493
11494
11495
11496
11497
11498
11499
11500
11501
11502
11503
11504
11505
11506
11507
11508
11509
11510
11511
11512
11513
11514
11515
11516
11517
11518
11519
11520
11521
11522
11523
11524
11525
11526
11527
11528
11529
11530
11531
11532
11533
11534
11535
11536
11537
11538
11539
11540
11541
11542
11543
11544
11545
11546
11547
11548
11549
11550
11551
11552
11553
11554
11555
11556
11557
11558
11559
11560
11561
11562
11563
11564
11565
11566
11567
11568
11569
11570
11571
11572
11573
11574
11575
11576
11577
11578
11579
11580
11581
11582
11583
11584
11585
11586
11587
11588
11589
11590
11591
11592
11593
11594
11595
11596
11597
11598
11599
11600
11601
11602
11603
11604
11605
11606
11607
11608
11609
11610
11611
11612
11613
11614
11615
11616
11617
11618
11619
11620
11621
11622
11623
11624
11625
11626
11627
11628
11629
11630
11631
11632
11633
11634
11635
11636
11637
11638
11639
11640
11641
11642
11643
11644
11645
11646
11647
11648
11649
11650
11651
11652
11653
11654
11655
11656
11657
11658
11659
11660
11661
11662
11663
11664
11665
11666
11667
11668
11669
11670
11671
11672
11673
11674
11675
11676
11677
11678
11679
11680
11681
11682
11683
11684
11685
11686
11687
11688
11689
11690
11691
11692
11693
11694
11695
11696
11697
11698
11699
11700
11701
11702
11703
11704
11705
11706
11707
11708
11709
11710
11711
11712
11713
11714
11715
11716
11717
11718
11719
11720
11721
11722
11723
11724
11725
11726
11727
11728
11729
11730
11731
11732
11733
11734
11735
11736
11737
11738
11739
11740
11741
11742
11743
11744
11745
11746
11747
11748
11749
11750
11751
11752
11753
11754
11755
11756
11757
11758
11759
11760
11761
11762
11763
11764
11765
11766
11767
11768
11769
11770
11771
11772
11773
11774
11775
11776
11777
11778
11779
11780
11781
11782
11783
11784
11785
11786
11787
11788
11789
11790
11791
11792
11793
11794
11795
11796
11797
11798
11799
11800
11801
11802
11803
11804
11805
11806
11807
11808
11809
11810
11811
11812
11813
11814
11815
11816
11817
11818
11819
11820
11821
11822
11823
11824
11825
11826
11827
11828
11829
11830
11831
11832
11833
11834
11835
11836
11837
11838
11839
11840
11841
11842
11843
11844
11845
11846
11847
11848
11849
11850
11851
11852
11853
11854
11855
11856
11857
11858
11859
11860
11861
11862
11863
11864
11865
11866
11867
11868
11869
11870
11871
11872
11873
11874
11875
11876
11877
11878
11879
11880
11881
11882
11883
11884
11885
11886
11887
11888
11889
11890
11891
11892
11893
11894
11895
11896
11897
11898
11899
11900
11901
11902
11903
11904
11905
11906
11907
11908
11909
11910
11911
11912
11913
11914
11915
11916
11917
11918
11919
11920
11921
11922
11923
11924
11925
11926
11927
11928
11929
11930
11931
11932
11933
11934
11935
11936
11937
11938
11939
11940
11941
11942
11943
11944
11945
11946
11947
11948
11949
11950
11951
11952
11953
11954
11955
11956
11957
11958
11959
11960
11961
11962
11963
11964
11965
11966
11967
11968
11969
11970
11971
11972
11973
11974
11975
11976
11977
11978
11979
11980
11981
11982
11983
11984
11985
11986
11987
11988
11989
11990
11991
11992
11993
11994
11995
11996
11997
11998
11999
12000
12001
12002
12003
12004
12005
12006
12007
12008
12009
12010
12011
12012
12013
12014
12015
12016
12017
12018
12019
12020
12021
12022
12023
12024
12025
12026
12027
12028
12029
12030
12031
12032
12033
12034
12035
12036
12037
12038
12039
12040
12041
12042
12043
12044
12045
12046
12047
12048
12049
12050
12051
12052
12053
12054
12055
12056
12057
12058
12059
12060
12061
12062
12063
12064
12065
12066
12067
12068
12069
12070
12071
12072
12073
12074
12075
12076
12077
12078
12079
12080
12081
12082
12083
12084
12085
12086
12087
12088
12089
12090
12091
12092
12093
12094
12095
12096
12097
12098
12099
12100
12101
12102
12103
12104
12105
12106
12107
12108
12109
12110
12111
12112
12113
12114
12115
12116
12117
12118
12119
12120
12121
12122
12123
12124
12125
12126
12127
12128
12129
12130
12131
12132
12133
12134
12135
12136
12137
12138
12139
12140
12141
12142
12143
12144
12145
12146
12147
12148
12149
12150
12151
12152
12153
12154
12155
12156
12157
12158
12159
12160
12161
12162
12163
12164
12165
12166
12167
12168
12169
12170
12171
12172
12173
12174
12175
12176
12177
12178
12179
12180
12181
12182
12183
12184
12185
12186
12187
12188
12189
12190
12191
12192
12193
12194
12195
12196
12197
12198
12199
12200
12201
12202
12203
12204
12205
12206
12207
12208
12209
12210
12211
12212
12213
12214
12215
12216
12217
12218
12219
12220
12221
12222
12223
12224
12225
12226
12227
12228
12229
12230
12231
12232
12233
12234
12235
12236
12237
12238
12239
12240
12241
12242
12243
12244
12245
12246
12247
12248
12249
12250
12251
12252
12253
12254
12255
12256
12257
12258
12259
12260
12261
12262
12263
12264
12265
12266
12267
12268
12269
12270
12271
12272
12273
12274
12275
12276
12277
12278
12279
12280
12281
12282
12283
12284
12285
12286
12287
12288
12289
12290
12291
12292
12293
12294
12295
12296
12297
12298
12299
12300
12301
12302
12303
12304
12305
12306
12307
12308
12309
12310
12311
12312
12313
12314
12315
12316
12317
12318
12319
12320
12321
12322
12323
12324
12325
12326
12327
12328
12329
12330
12331
12332
12333
12334
12335
12336
12337
12338
12339
12340
12341
12342
12343
12344
12345
12346
12347
12348
12349
12350
12351
12352
12353
12354
12355
12356
12357
12358
12359
12360
12361
12362
12363
12364
12365
12366
12367
12368
12369
12370
12371
12372
12373
12374
12375
12376
12377
12378
12379
12380
12381
12382
12383
12384
12385
12386
12387
12388
12389
12390
12391
12392
12393
12394
12395
12396
12397
12398
12399
12400
12401
12402
12403
12404
12405
12406
12407
12408
12409
12410
12411
12412
12413
12414
12415
12416
12417
12418
12419
12420
12421
12422
12423
12424
12425
12426
12427
12428
12429
12430
12431
12432
12433
12434
12435
12436
12437
12438
12439
12440
12441
12442
12443
12444
12445
12446
12447
12448
12449
12450
12451
12452
12453
12454
12455
12456
12457
12458
12459
12460
12461
12462
12463
12464
12465
12466
12467
12468
12469
12470
12471
12472
12473
12474
12475
12476
12477
12478
12479
12480
12481
12482
12483
12484
12485
12486
12487
12488
12489
12490
12491
12492
12493
12494
12495
12496
12497
12498
12499
12500
12501
12502
12503
12504
12505
12506
12507
12508
12509
12510
12511
12512
12513
12514
12515
12516
12517
12518
12519
12520
12521
12522
12523
12524
12525
12526
12527
12528
12529
12530
12531
12532
12533
12534
12535
12536
12537
12538
12539
12540
12541
12542
12543
12544
12545
12546
12547
12548
12549
12550
12551
12552
12553
12554
12555
12556
12557
12558
12559
12560
12561
12562
12563
12564
12565
12566
12567
12568
12569
12570
12571
12572
12573
12574
12575
12576
12577
12578
12579
12580
12581
12582
12583
12584
12585
12586
12587
12588
12589
12590
12591
12592
12593
12594
12595
12596
12597
12598
12599
12600
12601
12602
12603
12604
12605
12606
12607
12608
12609
12610
12611
12612
12613
12614
12615
12616
12617
12618
12619
12620
12621
12622
12623
12624
12625
12626
12627
12628
12629
12630
12631
12632
12633
12634
12635
12636
12637
12638
12639
12640
12641
12642
12643
12644
12645
12646
12647
12648
12649
12650
12651
12652
12653
12654
12655
12656
12657
12658
12659
12660
12661
12662
12663
12664
12665
12666
12667
12668
12669
12670
12671
12672
12673
12674
12675
12676
12677
12678
12679
12680
12681
12682
12683
12684
12685
12686
12687
12688
12689
12690
12691
12692
12693
12694
12695
12696
12697
12698
12699
12700
12701
12702
12703
12704
12705
12706
12707
12708
12709
12710
12711
12712
12713
12714
12715
12716
12717
12718
12719
12720
12721
12722
12723
12724
12725
12726
12727
12728
12729
12730
12731
12732
12733
12734
12735
12736
12737
12738
12739
12740
12741
12742
12743
12744
12745
12746
12747
12748
12749
12750
12751
12752
12753
12754
12755
12756
12757
12758
12759
12760
12761
12762
12763
12764
12765
12766
12767
12768
12769
12770
12771
12772
12773
12774
12775
12776
12777
12778
12779
12780
12781
12782
12783
12784
12785
12786
12787
12788
12789
12790
12791
12792
12793
12794
12795
12796
12797
12798
12799
12800
12801
12802
12803
12804
12805
12806
12807
12808
12809
12810
12811
12812
12813
12814
12815
12816
12817
12818
12819
12820
12821
12822
12823
12824
12825
12826
12827
12828
12829
12830
12831
12832
12833
12834
12835
12836
12837
12838
12839
12840
12841
12842
12843
12844
12845
12846
12847
12848
12849
12850
12851
12852
12853
12854
12855
12856
12857
12858
12859
12860
12861
12862
12863
12864
12865
12866
12867
12868
12869
12870
12871
12872
12873
12874
12875
12876
12877
12878
12879
12880
12881
12882
12883
12884
12885
12886
12887
12888
12889
12890
12891
12892
12893
12894
12895
12896
12897
12898
12899
12900
12901
12902
12903
12904
12905
12906
12907
12908
12909
12910
12911
12912
12913
12914
12915
12916
12917
12918
12919
12920
12921
12922
12923
12924
12925
12926
12927
12928
12929
12930
12931
12932
12933
12934
12935
12936
12937
12938
12939
12940
12941
12942
12943
12944
12945
12946
12947
12948
12949
12950
12951
12952
12953
12954
12955
12956
12957
12958
12959
12960
12961
12962
12963
12964
12965
12966
12967
12968
12969
12970
12971
12972
12973
12974
12975
12976
12977
12978
12979
12980
12981
12982
12983
12984
12985
12986
12987
12988
12989
12990
12991
12992
12993
12994
12995
12996
12997
12998
12999
13000
13001
13002
13003
13004
13005
13006
13007
13008
13009
13010
13011
13012
13013
13014
13015
13016
13017
13018
13019
13020
13021
13022
13023
13024
13025
13026
13027
13028
13029
13030
13031
13032
13033
13034
13035
13036
13037
13038
13039
13040
13041
13042
13043
13044
13045
13046
13047
13048
13049
13050
13051
13052
13053
13054
13055
13056
13057
13058
13059
13060
13061
13062
13063
13064
13065
13066
13067
13068
13069
13070
13071
13072
13073
13074
13075
13076
13077
13078
13079
13080
13081
13082
13083
13084
13085
13086
13087
13088
13089
13090
13091
13092
13093
13094
13095
13096
13097
13098
13099
13100
13101
13102
13103
13104
13105
13106
13107
13108
13109
13110
13111
13112
13113
13114
13115
13116
13117
13118
13119
13120
13121
13122
13123
13124
13125
13126
13127
13128
13129
13130
13131
13132
13133
13134
13135
13136
13137
13138
13139
13140
13141
13142
13143
13144
13145
13146
13147
13148
13149
13150
13151
13152
13153
13154
13155
13156
13157
13158
13159
13160
13161
13162
13163
13164
13165
13166
13167
13168
13169
13170
13171
13172
13173
13174
13175
13176
13177
13178
13179
13180
13181
13182
13183
13184
13185
13186
13187
13188
13189
13190
13191
13192
13193
13194
13195
13196
13197
13198
13199
13200
13201
13202
13203
13204
13205
13206
13207
13208
13209
13210
13211
13212
13213
13214
13215
13216
13217
13218
13219
13220
13221
13222
13223
13224
13225
13226
13227
13228
13229
13230
13231
13232
13233
13234
13235
13236
13237
13238
13239
13240
13241
13242
13243
13244
13245
13246
13247
13248
13249
13250
13251
13252
13253
13254
13255
13256
13257
13258
13259
13260
13261
13262
13263
13264
13265
13266
13267
13268
13269
13270
13271
13272
13273
13274
13275
13276
13277
13278
13279
13280
13281
13282
13283
13284
13285
13286
13287
13288
13289
13290
13291
13292
13293
13294
13295
13296
13297
13298
13299
13300
13301
13302
13303
13304
13305
13306
13307
13308
13309
13310
13311
13312
13313
13314
13315
13316
13317
13318
13319
13320
13321
13322
13323
13324
13325
13326
13327
13328
13329
13330
13331
13332
13333
13334
13335
13336
13337
13338
13339
13340
13341
13342
13343
13344
13345
13346
13347
13348
13349
13350
13351
13352
13353
13354
13355
13356
13357
13358
13359
13360
13361
13362
13363
13364
13365
13366
13367
13368
13369
13370
13371
13372
13373
13374
13375
13376
13377
13378
13379
13380
13381
13382
13383
13384
13385
13386
13387
13388
13389
13390
13391
13392
13393
13394
13395
13396
13397
13398
13399
13400
13401
13402
13403
13404
13405
13406
13407
13408
13409
13410
13411
13412
13413
13414
13415
13416
13417
13418
13419
13420
13421
13422
13423
13424
13425
13426
13427
13428
13429
13430
13431
13432
13433
13434
13435
13436
13437
13438
13439
13440
13441
13442
13443
13444
13445
13446
13447
13448
13449
13450
13451
13452
13453
13454
13455
13456
13457
13458
13459
13460
13461
13462
13463
13464
13465
13466
13467
13468
13469
13470
13471
13472
13473
13474
13475
13476
13477
13478
13479
13480
13481
13482
13483
13484
13485
13486
13487
13488
13489
13490
13491
13492
13493
13494
13495
13496
13497
13498
13499
13500
13501
13502
13503
13504
13505
13506
13507
13508
13509
13510
13511
13512
13513
13514
13515
13516
13517
13518
13519
13520
13521
13522
13523
13524
13525
13526
13527
13528
13529
13530
13531
13532
13533
13534
13535
13536
13537
13538
13539
13540
13541
13542
13543
13544
13545
13546
13547
13548
13549
13550
13551
13552
13553
13554
13555
13556
13557
13558
13559
13560
13561
13562
13563
13564
13565
13566
13567
13568
13569
13570
13571
13572
13573
13574
13575
13576
13577
13578
13579
13580
13581
13582
13583
13584
13585
13586
13587
13588
13589
13590
13591
13592
13593
13594
13595
13596
13597
13598
13599
13600
13601
13602
13603
13604
13605
13606
13607
13608
13609
13610
13611
13612
13613
13614
13615
13616
13617
13618
13619
13620
13621
13622
13623
13624
13625
13626
13627
13628
13629
13630
13631
13632
13633
13634
13635
13636
13637
13638
13639
13640
13641
13642
13643
13644
13645
13646
13647
13648
13649
13650
13651
13652
13653
13654
13655
13656
13657
13658
13659
13660
13661
13662
13663
13664
13665
13666
13667
13668
13669
13670
13671
13672
13673
13674
13675
13676
13677
13678
13679
13680
13681
13682
13683
13684
13685
13686
13687
13688
13689
13690
13691
13692
13693
13694
13695
13696
13697
13698
13699
13700
13701
13702
13703
13704
13705
13706
13707
13708
13709
13710
13711
13712
13713
13714
13715
13716
13717
13718
13719
13720
13721
13722
13723
13724
13725
13726
13727
13728
13729
13730
13731
13732
13733
13734
13735
13736
13737
13738
13739
13740
13741
13742
13743
13744
13745
13746
13747
13748
13749
13750
13751
13752
13753
13754
13755
13756
13757
13758
13759
13760
13761
13762
13763
13764
13765
13766
13767
13768
13769
13770
13771
13772
13773
13774
13775
13776
13777
13778
13779
13780
13781
13782
13783
13784
13785
13786
13787
13788
13789
13790
13791
13792
13793
13794
13795
13796
13797
13798
13799
13800
13801
13802
13803
13804
13805
13806
13807
13808
13809
13810
13811
13812
13813
13814
13815
13816
13817
13818
13819
13820
13821
13822
13823
13824
13825
13826
13827
13828
13829
13830
13831
13832
13833
13834
13835
13836
13837
13838
13839
13840
13841
13842
13843
13844
13845
13846
13847
13848
13849
13850
13851
13852
13853
13854
13855
13856
13857
13858
13859
13860
13861
13862
13863
13864
13865
13866
13867
13868
13869
13870
13871
13872
13873
13874
13875
13876
13877
13878
13879
13880
13881
13882
13883
13884
13885
13886
13887
13888
13889
13890
13891
13892
13893
13894
13895
13896
13897
13898
13899
13900
13901
13902
13903
13904
13905
13906
13907
13908
13909
13910
13911
13912
13913
13914
13915
13916
13917
13918
13919
13920
13921
13922
13923
13924
13925
13926
13927
13928
13929
13930
13931
13932
13933
13934
13935
13936
13937
13938
13939
13940
13941
13942
13943
13944
13945
13946
13947
13948
13949
13950
13951
13952
13953
13954
13955
13956
13957
13958
13959
13960
13961
13962
13963
13964
13965
13966
13967
13968
13969
13970
13971
13972
13973
13974
13975
13976
13977
13978
13979
13980
13981
13982
13983
13984
13985
13986
13987
13988
13989
13990
13991
13992
13993
13994
13995
13996
13997
13998
13999
14000
14001
14002
14003
14004
14005
14006
14007
14008
14009
14010
14011
14012
14013
14014
14015
14016
14017
14018
14019
14020
14021
14022
14023
14024
14025
14026
14027
14028
14029
14030
14031
14032
14033
14034
14035
14036
14037
14038
14039
14040
14041
14042
14043
14044
14045
14046
14047
14048
14049
14050
14051
14052
14053
14054
14055
14056
14057
14058
14059
14060
14061
14062
14063
14064
14065
14066
14067
14068
14069
14070
14071
14072
14073
14074
14075
14076
14077
14078
14079
14080
14081
14082
14083
14084
14085
14086
14087
14088
14089
14090
14091
14092
14093
14094
14095
14096
14097
14098
14099
14100
14101
14102
14103
14104
14105
14106
14107
14108
14109
14110
14111
14112
14113
14114
14115
14116
14117
14118
14119
14120
14121
14122
14123
14124
14125
14126
14127
14128
14129
14130
14131
14132
14133
14134
14135
14136
14137
14138
14139
14140
14141
14142
14143
14144
14145
14146
14147
14148
14149
14150
14151
14152
14153
14154
14155
14156
14157
14158
14159
14160
14161
14162
14163
14164
14165
14166
14167
14168
14169
14170
14171
14172
14173
14174
14175
14176
14177
14178
14179
14180
14181
14182
14183
14184
14185
14186
14187
14188
14189
14190
14191
14192
14193
14194
14195
14196
14197
14198
14199
14200
14201
14202
14203
14204
14205
14206
14207
14208
14209
14210
14211
14212
14213
14214
14215
14216
14217
14218
14219
14220
14221
14222
14223
14224
14225
14226
14227
14228
14229
14230
14231
14232
14233
14234
14235
14236
14237
14238
14239
14240
14241
14242
14243
14244
14245
14246
14247
14248
14249
14250
14251
14252
14253
14254
14255
14256
14257
14258
14259
14260
14261
14262
14263
14264
14265
14266
14267
14268
14269
14270
14271
14272
14273
14274
14275
14276
14277
14278
14279
14280
14281
14282
14283
14284
14285
14286
14287
14288
14289
14290
14291
14292
14293
14294
14295
14296
14297
14298
14299
14300
14301
14302
14303
14304
14305
14306
14307
14308
14309
14310
14311
14312
14313
14314
14315
14316
14317
14318
14319
14320
14321
14322
14323
14324
14325
14326
14327
14328
14329
14330
14331
14332
14333
14334
14335
14336
14337
14338
14339
14340
14341
14342
14343
14344
14345
14346
14347
14348
14349
14350
14351
14352
14353
14354
14355
14356
14357
14358
14359
14360
14361
14362
14363
14364
14365
14366
14367
14368
14369
14370
14371
14372
14373
14374
14375
14376
14377
14378
14379
14380
14381
14382
14383
14384
14385
14386
14387
14388
14389
14390
14391
14392
14393
14394
14395
14396
14397
14398
14399
14400
14401
14402
14403
14404
14405
14406
14407
14408
14409
14410
14411
14412
14413
14414
14415
14416
14417
14418
14419
14420
14421
14422
14423
14424
14425
14426
14427
14428
14429
14430
14431
14432
14433
14434
14435
14436
14437
14438
14439
14440
14441
14442
14443
14444
14445
14446
14447
14448
14449
14450
14451
14452
14453
14454
14455
14456
14457
14458
14459
14460
14461
14462
14463
14464
14465
14466
14467
14468
14469
14470
14471
14472
14473
14474
14475
14476
14477
14478
14479
14480
14481
14482
14483
14484
14485
14486
14487
14488
14489
14490
14491
14492
14493
14494
14495
14496
14497
14498
14499
14500
14501
14502
14503
14504
14505
14506
14507
14508
14509
14510
14511
14512
14513
14514
14515
14516
14517
14518
14519
14520
14521
14522
14523
14524
14525
14526
14527
14528
14529
14530
14531
14532
14533
14534
14535
14536
14537
14538
14539
14540
14541
14542
14543
14544
14545
14546
14547
14548
14549
14550
14551
14552
14553
14554
14555
14556
14557
14558
14559
14560
14561
14562
14563
14564
14565
14566
14567
14568
14569
14570
14571
14572
14573
14574
14575
14576
14577
14578
14579
14580
14581
14582
14583
14584
14585
14586
14587
14588
14589
14590
14591
14592
14593
14594
14595
14596
14597
14598
14599
14600
14601
14602
14603
14604
14605
14606
14607
14608
14609
14610
14611
14612
14613
14614
14615
14616
14617
14618
14619
14620
14621
14622
14623
14624
14625
14626
14627
14628
14629
14630
14631
14632
14633
14634
14635
14636
14637
14638
14639
14640
14641
14642
14643
14644
14645
14646
14647
14648
14649
14650
14651
14652
14653
14654
14655
14656
14657
14658
14659
14660
14661
14662
14663
14664
14665
14666
14667
14668
14669
14670
14671
14672
14673
14674
14675
14676
14677
14678
14679
14680
14681
14682
14683
14684
14685
14686
14687
14688
14689
14690
14691
14692
14693
14694
14695
14696
14697
14698
14699
14700
14701
14702
14703
14704
14705
14706
14707
14708
14709
14710
14711
14712
14713
14714
14715
14716
14717
14718
14719
14720
14721
14722
14723
14724
14725
14726
14727
14728
14729
14730
14731
14732
14733
14734
14735
14736
14737
14738
14739
14740
14741
14742
14743
14744
14745
14746
14747
14748
14749
14750
14751
14752
14753
14754
14755
14756
14757
14758
14759
14760
14761
14762
14763
14764
14765
14766
14767
14768
14769
14770
14771
14772
14773
14774
14775
14776
14777
14778
14779
14780
14781
14782
14783
14784
14785
14786
14787
14788
14789
14790
14791
14792
14793
14794
14795
14796
14797
14798
14799
14800
14801
14802
14803
14804
14805
14806
14807
14808
14809
14810
14811
14812
14813
14814
14815
14816
14817
14818
14819
14820
14821
14822
14823
14824
14825
14826
14827
14828
14829
14830
14831
14832
14833
14834
14835
14836
14837
14838
14839
14840
14841
14842
14843
14844
14845
14846
14847
14848
14849
14850
14851
14852
14853
14854
14855
14856
14857
14858
14859
14860
14861
14862
14863
14864
14865
14866
14867
14868
14869
14870
14871
14872
14873
14874
14875
14876
14877
14878
14879
14880
14881
14882
14883
14884
14885
14886
14887
14888
14889
14890
14891
14892
14893
14894
14895
14896
14897
14898
14899
14900
14901
14902
14903
14904
14905
14906
14907
14908
14909
14910
14911
14912
14913
14914
14915
14916
14917
14918
14919
14920
14921
14922
14923
14924
14925
14926
14927
14928
14929
14930
14931
14932
14933
14934
14935
14936
14937
14938
14939
14940
14941
14942
14943
14944
14945
14946
14947
14948
14949
14950
14951
14952
14953
14954
14955
14956
14957
14958
14959
14960
14961
14962
14963
14964
14965
14966
14967
14968
14969
14970
14971
14972
14973
14974
14975
14976
14977
14978
14979
14980
14981
14982
14983
14984
14985
14986
14987
14988
14989
14990
14991
14992
14993
14994
14995
14996
14997
14998
14999
15000
15001
15002
15003
15004
15005
15006
15007
15008
15009
15010
15011
15012
15013
15014
15015
15016
15017
15018
15019
15020
15021
15022
15023
15024
15025
15026
15027
15028
15029
15030
15031
15032
15033
15034
15035
15036
15037
15038
15039
15040
15041
15042
15043
15044
15045
15046
15047
15048
15049
15050
15051
15052
15053
15054
15055
15056
15057
15058
15059
15060
15061
15062
15063
15064
15065
15066
15067
15068
15069
15070
15071
15072
15073
15074
15075
15076
15077
15078
15079
15080
15081
15082
15083
15084
15085
15086
15087
15088
15089
15090
15091
15092
15093
15094
15095
15096
15097
15098
15099
15100
15101
15102
15103
15104
15105
15106
15107
15108
15109
15110
15111
15112
15113
15114
15115
15116
15117
15118
15119
15120
15121
15122
15123
15124
15125
15126
15127
15128
15129
15130
15131
15132
15133
15134
15135
15136
15137
15138
15139
15140
15141
15142
15143
15144
15145
15146
15147
15148
15149
15150
15151
15152
15153
15154
15155
15156
15157
15158
15159
15160
15161
15162
15163
15164
15165
15166
15167
15168
15169
15170
15171
15172
15173
15174
15175
15176
15177
15178
15179
15180
15181
15182
15183
15184
15185
15186
15187
15188
15189
15190
15191
15192
15193
15194
15195
15196
15197
15198
15199
15200
15201
15202
15203
15204
15205
15206
15207
15208
15209
15210
15211
15212
15213
15214
15215
15216
15217
15218
15219
15220
15221
15222
15223
15224
15225
15226
15227
15228
15229
15230
15231
15232
15233
15234
15235
15236
15237
15238
15239
15240
15241
15242
15243
15244
15245
15246
15247
15248
15249
15250
15251
15252
15253
15254
15255
15256
15257
15258
15259
15260
15261
15262
15263
15264
15265
15266
15267
15268
15269
15270
15271
15272
15273
15274
15275
15276
15277
15278
15279
15280
15281
15282
15283
15284
15285
15286
15287
15288
15289
15290
15291
15292
15293
15294
15295
15296
15297
15298
15299
15300
15301
15302
15303
15304
15305
15306
15307
15308
15309
15310
15311
15312
15313
15314
15315
15316
15317
15318
15319
15320
15321
15322
15323
15324
15325
15326
15327
15328
15329
15330
15331
15332
15333
15334
15335
15336
15337
15338
15339
15340
15341
15342
15343
15344
15345
15346
15347
15348
15349
15350
15351
15352
15353
15354
15355
15356
15357
15358
15359
15360
15361
15362
15363
15364
15365
15366
15367
15368
15369
15370
15371
15372
15373
15374
15375
15376
15377
15378
15379
15380
15381
15382
15383
15384
15385
15386
15387
15388
15389
15390
15391
15392
15393
15394
15395
15396
15397
15398
15399
15400
15401
15402
15403
15404
15405
15406
15407
15408
15409
15410
15411
15412
15413
15414
15415
15416
15417
15418
15419
15420
15421
15422
15423
15424
15425
15426
15427
15428
15429
15430
15431
15432
15433
15434
15435
15436
15437
15438
15439
15440
15441
15442
15443
15444
15445
15446
15447
15448
15449
15450
15451
15452
15453
15454
15455
15456
15457
15458
15459
15460
15461
15462
15463
15464
15465
15466
15467
15468
15469
15470
15471
15472
15473
15474
15475
15476
15477
15478
15479
15480
15481
15482
15483
15484
15485
15486
15487
15488
15489
15490
15491
15492
15493
15494
15495
15496
15497
15498
15499
15500
15501
15502
15503
15504
15505
15506
15507
15508
15509
15510
15511
15512
15513
15514
15515
15516
15517
15518
15519
15520
15521
15522
15523
15524
15525
15526
15527
15528
15529
15530
15531
15532
15533
15534
15535
15536
15537
15538
15539
15540
15541
15542
15543
15544
15545
15546
15547
15548
15549
15550
15551
15552
15553
15554
15555
15556
15557
15558
15559
15560
15561
15562
15563
15564
15565
15566
15567
15568
15569
15570
15571
15572
15573
15574
15575
15576
15577
15578
15579
15580
15581
15582
15583
15584
15585
15586
15587
15588
15589
15590
15591
15592
15593
15594
15595
15596
15597
15598
15599
15600
15601
15602
15603
15604
15605
15606
15607
15608
15609
15610
15611
15612
15613
15614
15615
15616
15617
15618
15619
15620
15621
15622
15623
15624
15625
15626
15627
15628
15629
15630
15631
15632
15633
15634
15635
15636
15637
15638
15639
15640
15641
15642
15643
15644
15645
15646
15647
15648
15649
15650
15651
15652
15653
15654
15655
15656
15657
15658
15659
15660
15661
15662
15663
15664
15665
15666
15667
15668
15669
15670
15671
15672
15673
15674
15675
15676
15677
15678
15679
15680
15681
15682
15683
15684
15685
15686
15687
15688
15689
15690
15691
15692
15693
15694
15695
15696
15697
15698
15699
15700
15701
15702
15703
15704
15705
15706
15707
15708
15709
15710
15711
15712
15713
15714
15715
15716
15717
15718
15719
15720
15721
15722
15723
15724
15725
15726
15727
15728
15729
15730
15731
15732
15733
15734
15735
15736
15737
15738
15739
15740
15741
15742
15743
15744
15745
15746
15747
15748
15749
15750
15751
15752
15753
15754
15755
15756
15757
15758
15759
15760
15761
15762
15763
15764
15765
15766
15767
15768
15769
15770
15771
15772
15773
15774
15775
15776
15777
15778
15779
15780
15781
15782
15783
15784
15785
15786
15787
15788
15789
15790
15791
15792
15793
15794
15795
15796
15797
15798
15799
15800
15801
15802
15803
15804
15805
15806
15807
15808
15809
15810
15811
15812
15813
15814
15815
15816
15817
15818
15819
15820
15821
15822
15823
15824
15825
15826
15827
15828
15829
15830
15831
15832
15833
15834
15835
15836
15837
15838
15839
15840
15841
15842
15843
15844
15845
15846
15847
15848
15849
15850
15851
15852
15853
15854
15855
15856
15857
15858
15859
15860
15861
15862
15863
15864
15865
15866
15867
15868
15869
15870
15871
15872
15873
15874
15875
15876
15877
15878
15879
15880
15881
15882
15883
15884
15885
15886
15887
15888
15889
15890
15891
15892
15893
15894
15895
15896
15897
15898
15899
15900
15901
15902
15903
15904
15905
15906
15907
15908
15909
15910
15911
15912
15913
15914
15915
15916
15917
15918
15919
15920
15921
15922
15923
15924
15925
15926
15927
15928
15929
15930
15931
15932
15933
15934
15935
15936
15937
15938
15939
15940
15941
15942
15943
15944
15945
15946
15947
15948
15949
15950
15951
15952
15953
15954
15955
15956
15957
15958
15959
15960
15961
15962
15963
15964
15965
15966
15967
15968
15969
15970
15971
15972
15973
15974
15975
15976
15977
15978
15979
15980
15981
15982
15983
15984
15985
15986
15987
15988
15989
15990
15991
15992
15993
15994
15995
15996
15997
15998
15999
16000
16001
16002
16003
16004
16005
16006
16007
16008
16009
16010
16011
16012
16013
16014
16015
16016
16017
16018
16019
16020
16021
16022
16023
16024
16025
16026
16027
16028
16029
16030
16031
16032
16033
16034
16035
16036
16037
16038
16039
16040
16041
16042
16043
16044
16045
16046
16047
16048
16049
16050
16051
16052
16053
16054
16055
16056
16057
16058
16059
16060
16061
16062
16063
16064
16065
16066
16067
16068
16069
16070
16071
16072
16073
16074
16075
16076
16077
16078
16079
16080
16081
16082
16083
16084
16085
16086
16087
16088
16089
16090
16091
16092
16093
16094
16095
16096
16097
16098
16099
16100
16101
16102
16103
16104
16105
16106
16107
16108
16109
16110
16111
16112
16113
16114
16115
16116
16117
16118
16119
16120
16121
16122
16123
16124
16125
16126
16127
16128
16129
16130
16131
16132
16133
16134
16135
16136
16137
16138
16139
16140
16141
16142
16143
16144
16145
16146
16147
16148
16149
16150
16151
16152
16153
16154
16155
16156
16157
16158
16159
16160
16161
16162
16163
16164
16165
16166
16167
16168
16169
16170
16171
16172
16173
16174
16175
16176
16177
16178
16179
16180
16181
16182
16183
16184
16185
16186
16187
16188
16189
16190
16191
16192
16193
16194
16195
16196
16197
16198
16199
16200
16201
16202
16203
16204
16205
16206
16207
16208
16209
16210
16211
16212
16213
16214
16215
16216
16217
16218
16219
16220
16221
16222
16223
16224
16225
16226
16227
16228
16229
16230
16231
16232
16233
16234
16235
16236
16237
16238
16239
16240
16241
16242
16243
16244
16245
16246
16247
16248
16249
16250
16251
16252
16253
16254
16255
16256
16257
16258
16259
16260
16261
16262
16263
16264
16265
16266
16267
16268
16269
16270
16271
16272
16273
16274
16275
16276
16277
16278
16279
16280
16281
16282
16283
16284
16285
16286
16287
16288
16289
16290
16291
16292
16293
16294
16295
16296
16297
16298
16299
16300
16301
16302
16303
16304
16305
16306
16307
16308
16309
16310
16311
16312
16313
16314
16315
16316
16317
16318
16319
16320
16321
16322
16323
16324
16325
16326
16327
16328
16329
16330
16331
16332
16333
16334
16335
16336
16337
16338
16339
16340
16341
16342
16343
16344
16345
16346
16347
16348
16349
16350
16351
16352
16353
16354
16355
16356
16357
16358
16359
16360
16361
16362
16363
16364
16365
16366
16367
16368
16369
16370
16371
16372
16373
16374
16375
16376
16377
16378
16379
16380
16381
16382
16383
16384
16385
16386
16387
16388
16389
16390
16391
16392
16393
16394
16395
16396
16397
16398
16399
16400
16401
16402
16403
16404
16405
16406
16407
16408
16409
16410
16411
16412
16413
16414
16415
16416
16417
16418
16419
16420
16421
16422
16423
16424
16425
16426
16427
16428
16429
16430
16431
16432
16433
16434
16435
16436
16437
16438
16439
16440
16441
16442
16443
16444
16445
16446
16447
16448
16449
16450
16451
16452
16453
16454
16455
16456
16457
16458
16459
16460
16461
16462
16463
16464
16465
16466
16467
16468
16469
16470
16471
16472
16473
16474
16475
16476
16477
16478
16479
16480
16481
16482
16483
16484
16485
16486
16487
16488
16489
16490
16491
16492
16493
16494
16495
16496
16497
16498
16499
16500
16501
16502
16503
16504
16505
16506
16507
16508
16509
16510
16511
16512
16513
16514
16515
16516
16517
16518
16519
16520
16521
16522
16523
16524
16525
16526
16527
16528
16529
16530
16531
16532
16533
16534
16535
16536
16537
16538
16539
16540
16541
16542
16543
16544
16545
16546
16547
16548
16549
16550
16551
16552
16553
16554
16555
16556
16557
16558
16559
16560
16561
16562
16563
16564
16565
16566
16567
16568
16569
16570
16571
16572
16573
16574
16575
16576
16577
16578
16579
16580
16581
16582
16583
16584
16585
16586
16587
16588
16589
16590
16591
16592
16593
16594
16595
16596
16597
16598
16599
16600
16601
16602
16603
16604
16605
16606
16607
16608
16609
16610
16611
16612
16613
16614
16615
16616
16617
16618
16619
16620
16621
16622
16623
16624
16625
16626
16627
16628
16629
16630
16631
16632
16633
16634
16635
16636
16637
16638
16639
16640
16641
16642
16643
16644
16645
16646
16647
16648
16649
16650
16651
16652
16653
16654
16655
16656
16657
16658
16659
16660
16661
16662
16663
16664
16665
16666
16667
16668
16669
16670
16671
16672
16673
16674
16675
16676
16677
16678
16679
16680
16681
16682
16683
16684
16685
16686
16687
16688
16689
16690
16691
16692
16693
16694
16695
16696
16697
16698
16699
16700
16701
16702
16703
16704
16705
16706
16707
16708
16709
16710
16711
16712
16713
16714
16715
16716
16717
16718
16719
16720
16721
16722
16723
16724
16725
16726
16727
16728
16729
16730
16731
16732
16733
16734
16735
16736
16737
16738
16739
16740
16741
16742
16743
16744
16745
16746
16747
16748
16749
16750
16751
16752
16753
16754
16755
16756
16757
16758
16759
16760
16761
16762
16763
16764
16765
16766
16767
16768
16769
16770
16771
16772
16773
16774
16775
16776
16777
16778
16779
16780
16781
16782
16783
16784
16785
16786
16787
16788
16789
16790
16791
16792
16793
16794
16795
16796
16797
16798
16799
16800
16801
16802
16803
16804
16805
16806
16807
16808
16809
16810
16811
16812
16813
16814
16815
16816
16817
16818
16819
16820
16821
16822
16823
16824
16825
16826
16827
16828
16829
16830
16831
16832
16833
16834
16835
16836
16837
16838
16839
16840
16841
16842
16843
16844
16845
16846
16847
16848
16849
16850
16851
16852
16853
16854
16855
16856
16857
16858
16859
16860
16861
16862
16863
16864
16865
16866
16867
16868
16869
16870
16871
16872
16873
16874
16875
16876
16877
16878
16879
16880
16881
16882
16883
16884
16885
16886
16887
16888
16889
16890
16891
16892
16893
16894
16895
16896
16897
16898
16899
16900
16901
16902
16903
16904
16905
16906
16907
16908
16909
16910
16911
16912
16913
16914
16915
16916
16917
16918
16919
16920
16921
16922
16923
16924
16925
16926
16927
16928
16929
16930
16931
16932
16933
16934
16935
16936
16937
16938
16939
16940
16941
16942
16943
16944
16945
16946
16947
16948
16949
16950
16951
16952
16953
16954
16955
16956
16957
16958
16959
16960
16961
16962
16963
16964
16965
16966
16967
16968
16969
16970
16971
16972
16973
16974
16975
16976
16977
16978
16979
16980
16981
16982
16983
16984
16985
16986
16987
16988
16989
16990
16991
16992
16993
16994
16995
16996
16997
16998
16999
17000
17001
17002
17003
17004
17005
17006
17007
17008
17009
17010
17011
17012
17013
17014
17015
17016
17017
17018
17019
17020
17021
17022
17023
17024
17025
17026
17027
17028
17029
17030
17031
17032
17033
17034
17035
17036
17037
17038
17039
17040
17041
17042
17043
17044
17045
17046
17047
17048
17049
17050
17051
17052
17053
17054
17055
17056
17057
17058
17059
17060
17061
17062
17063
17064
17065
17066
17067
17068
17069
17070
17071
17072
17073
17074
17075
17076
17077
17078
17079
17080
17081
17082
17083
17084
17085
17086
17087
17088
17089
17090
17091
17092
17093
17094
17095
17096
17097
17098
17099
17100
17101
17102
17103
17104
17105
17106
17107
17108
17109
17110
17111
17112
17113
17114
17115
17116
17117
17118
17119
17120
17121
17122
17123
17124
17125
17126
17127
17128
17129
17130
17131
17132
17133
17134
17135
17136
17137
17138
17139
17140
17141
17142
17143
17144
17145
17146
17147
17148
17149
17150
17151
17152
17153
17154
17155
17156
17157
17158
17159
17160
17161
17162
17163
17164
17165
17166
17167
17168
17169
17170
17171
17172
17173
17174
17175
17176
17177
17178
17179
17180
17181
17182
17183
17184
17185
17186
17187
17188
17189
17190
17191
17192
17193
17194
17195
17196
17197
17198
17199
17200
17201
17202
17203
17204
17205
17206
17207
17208
17209
17210
17211
17212
17213
17214
17215
17216
17217
17218
17219
17220
17221
17222
17223
17224
17225
17226
17227
17228
17229
17230
17231
17232
17233
17234
17235
17236
17237
17238
17239
17240
17241
17242
17243
17244
17245
17246
17247
17248
17249
17250
17251
17252
17253
17254
17255
17256
17257
17258
17259
17260
17261
17262
17263
17264
17265
17266
17267
17268
17269
17270
17271
17272
17273
17274
17275
17276
17277
17278
17279
17280
17281
17282
17283
17284
17285
17286
17287
17288
17289
17290
17291
17292
17293
17294
17295
17296
17297
17298
17299
17300
17301
17302
17303
17304
17305
17306
17307
17308
17309
17310
17311
17312
17313
17314
17315
17316
17317
17318
17319
17320
17321
17322
17323
17324
17325
17326
17327
17328
17329
17330
17331
17332
17333
17334
17335
17336
17337
17338
17339
17340
17341
17342
17343
17344
17345
17346
17347
17348
17349
17350
17351
17352
17353
17354
17355
17356
17357
17358
17359
17360
17361
17362
17363
17364
17365
17366
17367
17368
17369
17370
17371
17372
17373
17374
17375
17376
17377
17378
17379
17380
17381
17382
17383
17384
17385
17386
17387
17388
17389
17390
17391
17392
17393
17394
17395
17396
17397
17398
17399
17400
17401
17402
17403
17404
17405
17406
17407
17408
17409
17410
17411
17412
17413
17414
17415
17416
17417
17418
17419
17420
17421
17422
17423
17424
17425
17426
17427
17428
17429
17430
17431
17432
17433
17434
17435
17436
17437
17438
17439
17440
17441
17442
17443
17444
17445
17446
17447
17448
17449
17450
17451
17452
17453
17454
17455
17456
17457
17458
17459
17460
17461
17462
17463
17464
17465
17466
17467
17468
17469
17470
17471
17472
17473
17474
17475
17476
17477
17478
17479
17480
17481
17482
17483
17484
17485
17486
17487
17488
17489
17490
17491
17492
17493
17494
17495
17496
17497
17498
17499
17500
17501
17502
17503
17504
17505
17506
17507
17508
17509
17510
17511
17512
17513
17514
17515
17516
17517
17518
17519
17520
17521
17522
17523
17524
17525
17526
17527
17528
17529
17530
17531
17532
17533
17534
17535
17536
17537
17538
17539
17540
17541
17542
17543
17544
17545
17546
17547
17548
17549
17550
17551
17552
17553
17554
17555
17556
17557
17558
17559
17560
17561
17562
17563
17564
17565
17566
17567
17568
17569
17570
17571
17572
17573
17574
17575
17576
17577
17578
17579
17580
17581
17582
17583
17584
17585
17586
17587
17588
17589
17590
17591
17592
17593
17594
17595
17596
17597
17598
17599
17600
17601
17602
17603
17604
17605
17606
17607
17608
17609
17610
17611
17612
17613
17614
17615
17616
17617
17618
17619
17620
17621
17622
17623
17624
17625
17626
17627
17628
17629
17630
17631
17632
17633
17634
17635
17636
17637
17638
17639
17640
17641
17642
17643
17644
17645
17646
17647
17648
17649
17650
17651
17652
17653
17654
17655
17656
17657
17658
17659
17660
17661
17662
17663
17664
17665
17666
17667
17668
17669
17670
17671
17672
17673
17674
17675
17676
17677
17678
17679
17680
17681
17682
17683
17684
17685
17686
17687
17688
17689
17690
17691
17692
17693
17694
17695
17696
17697
17698
17699
17700
17701
17702
17703
17704
17705
17706
17707
17708
17709
17710
17711
17712
17713
17714
17715
17716
17717
17718
17719
17720
17721
17722
17723
17724
17725
17726
17727
17728
17729
17730
17731
17732
17733
17734
17735
17736
17737
17738
17739
17740
17741
17742
17743
17744
17745
17746
17747
17748
17749
17750
17751
17752
17753
17754
17755
17756
17757
17758
17759
17760
17761
17762
17763
17764
17765
17766
17767
17768
17769
17770
17771
17772
17773
17774
17775
17776
17777
17778
17779
17780
17781
17782
17783
17784
17785
17786
17787
17788
17789
17790
17791
17792
17793
17794
17795
17796
17797
17798
17799
17800
17801
17802
17803
17804
17805
17806
17807
17808
17809
17810
17811
17812
17813
17814
17815
17816
17817
17818
17819
17820
17821
17822
17823
17824
17825
17826
17827
17828
17829
17830
17831
17832
17833
17834
17835
17836
17837
17838
17839
17840
17841
17842
17843
17844
17845
17846
17847
17848
17849
17850
17851
17852
17853
17854
17855
17856
17857
17858
17859
17860
17861
17862
17863
17864
17865
17866
17867
17868
17869
17870
17871
17872
17873
17874
17875
17876
17877
17878
17879
17880
17881
17882
17883
17884
17885
17886
17887
17888
17889
17890
17891
17892
17893
17894
17895
17896
17897
17898
17899
17900
17901
17902
17903
17904
17905
17906
17907
17908
17909
17910
17911
17912
17913
17914
17915
17916
17917
17918
17919
17920
17921
17922
17923
17924
17925
17926
17927
17928
17929
17930
17931
17932
17933
17934
17935
17936
17937
17938
17939
17940
17941
17942
17943
17944
17945
17946
17947
17948
17949
17950
17951
17952
17953
17954
17955
17956
17957
17958
17959
17960
17961
17962
17963
17964
17965
17966
17967
17968
17969
17970
17971
17972
17973
17974
17975
17976
17977
17978
17979
17980
17981
17982
17983
17984
17985
17986
17987
17988
17989
17990
17991
17992
17993
17994
17995
17996
17997
17998
17999
18000
18001
18002
18003
18004
18005
18006
18007
18008
18009
18010
18011
18012
18013
18014
18015
18016
18017
18018
18019
18020
18021
18022
18023
18024
18025
18026
18027
18028
18029
18030
18031
18032
18033
18034
18035
18036
18037
18038
18039
18040
18041
18042
18043
18044
18045
18046
18047
18048
18049
18050
18051
18052
18053
18054
18055
18056
18057
18058
18059
18060
18061
18062
18063
18064
18065
18066
18067
18068
18069
18070
18071
18072
18073
18074
18075
18076
18077
18078
18079
18080
18081
18082
18083
18084
18085
18086
18087
18088
18089
18090
18091
18092
18093
18094
18095
18096
18097
18098
18099
18100
18101
18102
18103
18104
18105
18106
18107
18108
18109
18110
18111
18112
18113
18114
18115
18116
18117
18118
18119
18120
18121
18122
18123
18124
18125
18126
18127
18128
18129
18130
18131
18132
18133
18134
18135
18136
18137
18138
18139
18140
18141
18142
18143
18144
18145
18146
18147
18148
18149
18150
18151
18152
18153
18154
18155
18156
18157
18158
18159
18160
18161
18162
18163
18164
18165
18166
18167
18168
18169
18170
18171
18172
18173
18174
18175
18176
18177
18178
18179
18180
18181
18182
18183
18184
18185
18186
18187
18188
18189
18190
18191
18192
18193
18194
18195
18196
18197
18198
18199
18200
18201
18202
18203
18204
18205
18206
18207
18208
18209
18210
18211
18212
18213
18214
18215
18216
18217
18218
18219
18220
18221
18222
18223
18224
18225
18226
18227
18228
18229
18230
18231
18232
18233
18234
18235
18236
18237
18238
18239
18240
18241
18242
18243
18244
18245
18246
18247
18248
18249
18250
18251
18252
18253
18254
18255
18256
18257
18258
18259
18260
18261
18262
18263
18264
18265
18266
18267
18268
18269
18270
18271
18272
18273
18274
18275
18276
18277
18278
18279
18280
18281
18282
18283
18284
18285
18286
18287
18288
18289
18290
18291
18292
18293
18294
18295
18296
18297
18298
18299
18300
18301
18302
18303
18304
18305
18306
18307
18308
18309
18310
18311
18312
18313
18314
18315
18316
18317
18318
18319
18320
18321
18322
18323
18324
18325
18326
18327
18328
18329
18330
18331
18332
18333
18334
18335
18336
18337
18338
18339
18340
18341
18342
18343
18344
18345
18346
18347
18348
18349
18350
18351
18352
18353
18354
18355
18356
18357
18358
18359
18360
18361
18362
18363
18364
18365
18366
18367
18368
18369
18370
18371
18372
18373
18374
18375
18376
18377
18378
18379
18380
18381
18382
18383
18384
18385
18386
18387
18388
18389
18390
18391
18392
18393
18394
18395
18396
18397
18398
18399
18400
18401
18402
18403
18404
18405
18406
18407
18408
18409
18410
18411
18412
18413
18414
18415
18416
18417
18418
18419
18420
18421
18422
18423
18424
18425
18426
18427
18428
18429
18430
18431
18432
18433
18434
18435
18436
18437
18438
18439
18440
18441
18442
18443
18444
18445
18446
18447
18448
18449
18450
18451
18452
18453
18454
18455
18456
18457
18458
18459
18460
18461
18462
18463
18464
18465
18466
18467
18468
18469
18470
18471
18472
18473
18474
18475
18476
18477
18478
18479
18480
18481
18482
18483
18484
18485
18486
18487
18488
18489
18490
18491
18492
18493
18494
18495
18496
18497
18498
18499
18500
18501
18502
18503
18504
18505
18506
18507
18508
18509
18510
18511
18512
18513
18514
18515
18516
18517
18518
18519
18520
18521
18522
18523
18524
18525
18526
18527
18528
18529
18530
18531
18532
18533
18534
18535
18536
18537
18538
18539
18540
18541
18542
18543
18544
18545
18546
18547
18548
18549
18550
18551
18552
18553
18554
18555
18556
18557
18558
18559
18560
18561
18562
18563
18564
18565
18566
18567
18568
18569
18570
18571
18572
18573
18574
18575
18576
18577
18578
18579
18580
18581
18582
18583
18584
18585
18586
18587
18588
18589
18590
18591
18592
18593
18594
18595
18596
18597
18598
18599
18600
18601
18602
18603
18604
18605
18606
18607
18608
18609
18610
18611
18612
18613
18614
18615
18616
18617
18618
18619
18620
18621
18622
18623
18624
18625
18626
18627
18628
18629
18630
18631
18632
18633
18634
18635
18636
18637
18638
18639
18640
18641
18642
18643
18644
18645
18646
18647
18648
18649
18650
18651
18652
18653
18654
18655
18656
18657
18658
18659
18660
18661
18662
18663
18664
18665
18666
18667
18668
18669
18670
18671
18672
18673
18674
18675
18676
18677
18678
18679
18680
18681
18682
18683
18684
18685
18686
18687
18688
18689
18690
18691
18692
18693
18694
18695
18696
18697
18698
18699
18700
18701
18702
18703
18704
18705
18706
18707
18708
18709
18710
18711
18712
18713
18714
18715
18716
18717
18718
18719
18720
18721
18722
18723
18724
18725
18726
18727
18728
18729
18730
18731
18732
18733
18734
18735
18736
18737
18738
18739
18740
18741
18742
18743
18744
18745
18746
18747
18748
18749
18750
18751
18752
18753
18754
18755
18756
18757
18758
18759
18760
18761
18762
18763
18764
18765
18766
18767
18768
18769
18770
18771
18772
18773
18774
18775
18776
18777
18778
18779
18780
18781
18782
18783
18784
18785
18786
18787
18788
18789
18790
18791
18792
18793
18794
18795
18796
18797
18798
18799
18800
18801
18802
18803
18804
18805
18806
18807
18808
18809
18810
18811
18812
18813
18814
18815
18816
18817
18818
18819
18820
18821
18822
18823
18824
18825
18826
18827
18828
18829
18830
18831
18832
18833
18834
18835
18836
18837
18838
18839
18840
18841
18842
18843
18844
18845
18846
18847
18848
18849
18850
18851
18852
18853
18854
18855
18856
18857
18858
18859
18860
18861
18862
18863
18864
18865
18866
18867
18868
18869
18870
18871
18872
18873
18874
18875
18876
18877
18878
18879
18880
18881
18882
18883
18884
18885
18886
18887
18888
18889
18890
18891
18892
18893
18894
18895
18896
18897
18898
18899
18900
18901
18902
18903
18904
18905
18906
18907
18908
18909
18910
18911
18912
18913
18914
18915
18916
18917
18918
18919
18920
18921
18922
18923
18924
18925
18926
18927
18928
18929
18930
18931
18932
18933
18934
18935
18936
18937
18938
18939
18940
18941
18942
18943
18944
18945
18946
18947
18948
18949
18950
18951
18952
18953
18954
18955
18956
18957
18958
18959
18960
18961
18962
18963
18964
18965
18966
18967
18968
18969
18970
18971
18972
18973
18974
18975
18976
18977
18978
18979
18980
18981
18982
18983
18984
18985
18986
18987
18988
18989
18990
18991
18992
18993
18994
18995
18996
18997
18998
18999
19000
19001
19002
19003
19004
19005
19006
19007
19008
19009
19010
19011
19012
19013
19014
19015
19016
19017
19018
19019
19020
19021
19022
19023
19024
19025
19026
19027
19028
19029
19030
19031
19032
19033
19034
19035
19036
19037
19038
19039
19040
19041
19042
19043
19044
19045
19046
19047
19048
19049
19050
19051
19052
19053
19054
19055
19056
19057
19058
19059
19060
19061
19062
19063
19064
19065
19066
19067
19068
19069
19070
19071
19072
19073
19074
19075
19076
19077
19078
19079
19080
19081
19082
19083
19084
19085
19086
19087
19088
19089
19090
19091
19092
19093
19094
19095
19096
19097
19098
19099
19100
19101
19102
19103
19104
19105
19106
19107
19108
19109
19110
19111
19112
19113
19114
19115
19116
19117
19118
19119
19120
19121
19122
19123
19124
19125
19126
19127
19128
19129
19130
19131
19132
19133
19134
19135
19136
19137
19138
19139
19140
19141
19142
19143
19144
19145
19146
19147
19148
19149
19150
19151
19152
19153
19154
19155
19156
19157
19158
19159
19160
19161
19162
19163
19164
19165
19166
19167
19168
19169
19170
19171
19172
19173
19174
19175
19176
19177
19178
19179
19180
19181
19182
19183
19184
19185
19186
19187
19188
19189
19190
19191
19192
19193
19194
19195
19196
19197
19198
19199
19200
19201
19202
19203
19204
19205
19206
19207
19208
19209
19210
19211
19212
19213
19214
19215
19216
19217
19218
19219
19220
19221
19222
19223
19224
19225
19226
19227
19228
19229
19230
19231
19232
19233
19234
19235
19236
19237
19238
19239
19240
19241
19242
19243
19244
19245
19246
19247
19248
19249
19250
19251
19252
19253
19254
19255
19256
19257
19258
19259
19260
19261
19262
19263
19264
19265
19266
19267
19268
19269
19270
19271
19272
19273
19274
19275
19276
19277
19278
19279
19280
19281
19282
19283
19284
19285
19286
19287
19288
19289
19290
19291
19292
19293
19294
19295
19296
19297
19298
19299
19300
19301
19302
19303
19304
19305
19306
19307
19308
19309
19310
19311
19312
19313
19314
19315
19316
19317
19318
19319
19320
19321
19322
19323
19324
19325
19326
19327
19328
19329
19330
19331
19332
19333
19334
19335
19336
19337
19338
19339
19340
19341
19342
19343
19344
19345
19346
19347
19348
19349
19350
19351
19352
19353
19354
19355
19356
19357
19358
19359
19360
19361
19362
19363
19364
19365
19366
19367
19368
19369
19370
19371
19372
19373
19374
19375
19376
19377
19378
19379
19380
19381
19382
19383
19384
19385
19386
19387
19388
19389
19390
19391
19392
19393
19394
19395
19396
19397
19398
19399
19400
19401
19402
19403
19404
19405
19406
19407
19408
19409
19410
19411
19412
19413
19414
19415
19416
19417
19418
19419
19420
19421
19422
19423
19424
19425
19426
19427
19428
19429
19430
19431
19432
19433
19434
19435
19436
19437
19438
19439
19440
19441
19442
19443
19444
19445
19446
19447
19448
19449
19450
19451
19452
19453
19454
19455
19456
19457
19458
19459
19460
19461
19462
19463
19464
19465
19466
19467
19468
19469
19470
19471
19472
19473
19474
19475
19476
19477
19478
19479
19480
19481
19482
19483
19484
19485
19486
19487
19488
19489
19490
19491
19492
19493
19494
19495
19496
19497
19498
19499
19500
19501
19502
19503
19504
19505
19506
19507
19508
19509
19510
19511
19512
19513
19514
19515
19516
19517
19518
19519
19520
19521
19522
19523
19524
19525
19526
19527
19528
19529
19530
19531
19532
19533
19534
19535
19536
19537
19538
19539
19540
19541
19542
19543
19544
19545
19546
19547
19548
19549
19550
19551
19552
19553
19554
19555
19556
19557
19558
19559
19560
19561
19562
19563
19564
19565
19566
19567
19568
19569
19570
19571
19572
19573
19574
19575
19576
19577
19578
19579
19580
19581
19582
19583
19584
19585
19586
19587
19588
19589
19590
19591
19592
19593
19594
19595
19596
19597
19598
19599
19600
19601
19602
19603
19604
19605
19606
19607
19608
19609
19610
19611
19612
19613
19614
19615
19616
19617
19618
19619
19620
19621
19622
19623
19624
19625
19626
19627
19628
19629
19630
19631
19632
19633
19634
19635
19636
19637
19638
19639
19640
19641
19642
19643
19644
19645
19646
19647
19648
19649
19650
19651
19652
19653
19654
19655
19656
19657
19658
19659
19660
19661
19662
19663
19664
19665
19666
19667
19668
19669
19670
19671
19672
19673
19674
19675
19676
19677
19678
19679
19680
19681
19682
19683
19684
19685
19686
19687
19688
19689
19690
19691
19692
19693
19694
19695
19696
19697
19698
19699
19700
19701
19702
19703
19704
19705
19706
19707
19708
19709
19710
19711
19712
19713
19714
19715
19716
19717
19718
19719
19720
19721
19722
19723
19724
19725
19726
19727
19728
19729
19730
19731
19732
19733
19734
19735
19736
19737
19738
19739
19740
19741
19742
19743
19744
19745
19746
19747
19748
19749
19750
19751
19752
19753
19754
19755
19756
19757
19758
19759
19760
19761
19762
19763
19764
19765
19766
19767
19768
19769
19770
19771
19772
19773
19774
19775
19776
19777
19778
19779
19780
19781
19782
19783
19784
19785
19786
19787
19788
19789
19790
19791
19792
19793
19794
19795
19796
19797
19798
19799
19800
19801
19802
19803
19804
19805
19806
19807
19808
19809
19810
19811
19812
19813
19814
19815
19816
19817
19818
19819
19820
19821
19822
19823
19824
19825
19826
19827
19828
19829
19830
19831
19832
19833
19834
19835
19836
19837
19838
19839
19840
19841
19842
19843
19844
19845
19846
19847
19848
19849
19850
19851
19852
19853
19854
19855
19856
19857
19858
19859
19860
19861
19862
19863
19864
19865
19866
19867
19868
19869
19870
19871
19872
19873
19874
19875
19876
19877
19878
19879
19880
19881
19882
19883
19884
19885
19886
19887
19888
19889
19890
19891
19892
19893
19894
19895
19896
19897
19898
19899
19900
19901
19902
19903
19904
19905
19906
19907
19908
19909
19910
19911
19912
19913
19914
19915
19916
19917
19918
19919
19920
19921
19922
19923
19924
19925
19926
19927
19928
19929
19930
19931
19932
19933
19934
19935
19936
19937
19938
19939
19940
19941
19942
19943
19944
19945
19946
19947
19948
19949
19950
19951
19952
19953
19954
19955
19956
19957
19958
19959
19960
19961
19962
19963
19964
19965
19966
19967
19968
19969
19970
19971
19972
19973
19974
19975
19976
19977
19978
19979
19980
19981
19982
19983
19984
19985
19986
19987
19988
19989
19990
19991
19992
19993
19994
19995
19996
19997
19998
19999
20000
20001
20002
20003
20004
20005
20006
20007
20008
20009
20010
20011
20012
20013
20014
20015
20016
20017
20018
20019
20020
20021
20022
20023
20024
20025
20026
20027
20028
20029
20030
20031
20032
20033
20034
20035
20036
20037
20038
20039
20040
20041
20042
20043
20044
20045
20046
20047
20048
20049
20050
20051
20052
20053
20054
20055
20056
20057
20058
20059
20060
20061
20062
20063
20064
20065
20066
20067
20068
20069
20070
20071
20072
20073
20074
20075
20076
20077
20078
20079
20080
20081
20082
20083
20084
20085
20086
20087
20088
20089
20090
20091
20092
20093
20094
20095
20096
20097
20098
20099
20100
20101
20102
20103
20104
20105
20106
20107
20108
20109
20110
20111
20112
20113
20114
20115
20116
20117
20118
20119
20120
20121
20122
20123
20124
20125
20126
20127
20128
20129
20130
20131
20132
20133
20134
20135
20136
20137
20138
20139
20140
20141
20142
20143
20144
20145
20146
20147
20148
20149
20150
20151
20152
20153
20154
20155
20156
20157
20158
20159
20160
20161
20162
20163
20164
20165
20166
20167
20168
20169
20170
20171
20172
20173
20174
20175
20176
20177
20178
20179
20180
20181
20182
20183
20184
20185
20186
20187
20188
20189
20190
20191
20192
20193
20194
20195
20196
20197
20198
20199
20200
20201
20202
20203
20204
20205
20206
20207
20208
20209
20210
20211
20212
20213
20214
20215
20216
20217
20218
20219
20220
20221
20222
20223
20224
20225
20226
20227
20228
20229
20230
20231
20232
20233
20234
20235
20236
20237
20238
20239
20240
20241
20242
20243
20244
20245
20246
20247
20248
20249
20250
20251
20252
20253
20254
20255
20256
20257
20258
20259
20260
20261
20262
20263
20264
20265
20266
20267
20268
20269
20270
20271
20272
20273
20274
20275
20276
20277
20278
20279
20280
20281
20282
20283
20284
20285
20286
20287
20288
20289
20290
20291
20292
20293
20294
20295
20296
20297
20298
20299
20300
20301
20302
20303
20304
20305
20306
20307
20308
20309
20310
20311
20312
20313
20314
20315
20316
20317
20318
20319
20320
20321
20322
20323
20324
20325
20326
20327
20328
20329
20330
20331
20332
20333
20334
20335
20336
20337
20338
20339
20340
20341
20342
20343
20344
20345
20346
20347
20348
20349
20350
20351
20352
20353
20354
20355
20356
20357
20358
20359
20360
20361
20362
20363
20364
20365
20366
20367
20368
20369
20370
20371
20372
20373
20374
20375
20376
20377
20378
20379
20380
20381
20382
20383
20384
20385
20386
20387
20388
20389
20390
20391
20392
20393
20394
20395
20396
20397
20398
20399
20400
20401
20402
20403
20404
20405
20406
20407
20408
20409
20410
20411
20412
20413
20414
20415
20416
20417
20418
20419
20420
20421
20422
20423
20424
20425
20426
20427
20428
20429
20430
20431
20432
20433
20434
20435
20436
20437
20438
20439
20440
20441
20442
20443
20444
20445
20446
20447
20448
20449
20450
20451
20452
20453
20454
20455
20456
20457
20458
20459
20460
20461
20462
20463
20464
20465
20466
20467
20468
20469
20470
20471
20472
20473
20474
20475
20476
20477
20478
20479
20480
20481
20482
20483
20484
20485
20486
20487
20488
20489
20490
20491
20492
20493
20494
20495
20496
20497
20498
20499
20500
20501
20502
20503
20504
20505
20506
20507
20508
20509
20510
20511
20512
20513
20514
20515
20516
20517
20518
20519
20520
20521
20522
20523
20524
20525
20526
20527
20528
20529
20530
20531
20532
20533
20534
20535
20536
20537
20538
20539
20540
20541
20542
20543
20544
20545
20546
20547
20548
20549
20550
20551
20552
20553
20554
20555
20556
20557
20558
20559
20560
20561
20562
20563
20564
20565
20566
20567
20568
20569
20570
20571
20572
20573
20574
20575
20576
20577
20578
20579
20580
20581
20582
20583
20584
20585
20586
20587
20588
20589
20590
20591
20592
20593
20594
20595
20596
20597
20598
20599
20600
20601
20602
20603
20604
20605
20606
20607
20608
20609
20610
20611
20612
20613
20614
20615
20616
20617
20618
20619
20620
20621
20622
20623
20624
20625
20626
20627
20628
20629
20630
20631
20632
20633
20634
20635
20636
20637
20638
20639
20640
20641
20642
20643
20644
20645
20646
20647
20648
20649
20650
20651
20652
20653
20654
20655
20656
20657
20658
20659
20660
20661
20662
20663
20664
20665
20666
20667
20668
20669
20670
20671
20672
20673
20674
20675
20676
20677
20678
20679
20680
20681
20682
20683
20684
20685
20686
20687
20688
20689
20690
20691
20692
20693
20694
20695
20696
20697
20698
20699
20700
20701
20702
20703
20704
20705
20706
20707
20708
20709
20710
20711
20712
20713
20714
20715
20716
20717
20718
20719
20720
20721
20722
20723
20724
20725
20726
20727
20728
20729
20730
20731
20732
20733
20734
20735
20736
20737
20738
20739
20740
20741
20742
20743
20744
20745
20746
20747
20748
20749
20750
20751
20752
20753
20754
20755
20756
20757
20758
20759
20760
20761
20762
20763
20764
20765
20766
20767
20768
20769
20770
20771
20772
20773
20774
20775
20776
20777
20778
20779
20780
20781
20782
20783
20784
20785
20786
20787
20788
20789
20790
20791
20792
20793
20794
20795
20796
20797
20798
20799
20800
20801
20802
20803
20804
20805
20806
20807
20808
20809
20810
20811
20812
20813
20814
20815
20816
20817
20818
20819
20820
20821
20822
20823
20824
20825
20826
20827
20828
20829
20830
20831
20832
20833
20834
20835
20836
20837
20838
20839
20840
20841
20842
20843
20844
20845
20846
20847
20848
20849
20850
20851
20852
20853
20854
20855
20856
20857
20858
20859
20860
20861
20862
20863
20864
20865
20866
20867
20868
20869
20870
20871
20872
20873
20874
20875
20876
20877
20878
20879
20880
20881
20882
20883
20884
20885
20886
20887
20888
20889
20890
20891
20892
20893
20894
20895
20896
20897
20898
20899
20900
20901
20902
20903
20904
20905
20906
20907
20908
20909
20910
20911
20912
20913
20914
20915
20916
20917
20918
20919
20920
20921
20922
20923
20924
20925
20926
20927
20928
20929
20930
20931
20932
20933
20934
20935
20936
20937
20938
20939
20940
20941
20942
20943
20944
20945
20946
20947
20948
20949
20950
20951
20952
20953
20954
20955
20956
20957
20958
20959
20960
20961
20962
20963
20964
20965
20966
20967
20968
20969
20970
20971
20972
20973
20974
20975
20976
20977
20978
20979
20980
20981
20982
20983
20984
20985
20986
20987
20988
20989
20990
20991
20992
20993
20994
20995
20996
20997
20998
20999
21000
21001
21002
21003
21004
21005
21006
21007
21008
21009
21010
21011
21012
21013
21014
21015
21016
21017
21018
21019
21020
21021
21022
21023
21024
21025
21026
21027
21028
21029
21030
21031
21032
21033
21034
21035
21036
21037
21038
21039
21040
21041
21042
21043
21044
21045
21046
21047
21048
21049
21050
21051
21052
21053
21054
21055
21056
21057
21058
21059
21060
21061
21062
21063
21064
21065
21066
21067
21068
21069
21070
21071
21072
21073
21074
21075
21076
21077
21078
21079
21080
21081
21082
21083
21084
21085
21086
21087
21088
21089
21090
21091
21092
21093
21094
21095
21096
21097
21098
21099
21100
21101
21102
21103
21104
21105
21106
21107
21108
21109
21110
21111
21112
21113
21114
21115
21116
21117
21118
21119
21120
21121
21122
21123
21124
21125
21126
21127
21128
21129
21130
21131
21132
21133
21134
21135
21136
21137
21138
21139
21140
21141
21142
21143
21144
21145
21146
21147
21148
21149
21150
21151
21152
21153
21154
21155
21156
21157
21158
21159
21160
21161
21162
21163
21164
21165
21166
21167
21168
21169
21170
21171
21172
21173
21174
21175
21176
21177
21178
21179
21180
21181
21182
21183
21184
21185
21186
21187
21188
21189
21190
21191
21192
21193
21194
21195
21196
21197
21198
21199
21200
21201
21202
21203
21204
21205
21206
21207
21208
21209
21210
21211
21212
21213
21214
21215
21216
21217
21218
21219
21220
21221
21222
21223
21224
21225
21226
21227
21228
21229
21230
21231
21232
21233
21234
21235
21236
21237
21238
21239
21240
21241
21242
21243
21244
21245
21246
21247
21248
21249
21250
21251
21252
21253
21254
21255
21256
21257
21258
21259
21260
21261
21262
21263
21264
21265
21266
21267
21268
21269
21270
21271
21272
21273
21274
21275
21276
21277
21278
21279
21280
21281
21282
21283
21284
21285
21286
21287
21288
21289
21290
21291
21292
21293
21294
21295
21296
21297
21298
21299
21300
21301
21302
21303
21304
21305
21306
21307
21308
21309
21310
21311
21312
21313
21314
21315
21316
21317
21318
21319
21320
21321
21322
21323
21324
21325
21326
21327
21328
21329
21330
21331
21332
21333
21334
21335
21336
21337
21338
21339
21340
21341
21342
21343
21344
21345
21346
21347
21348
21349
21350
21351
21352
21353
21354
21355
21356
21357
21358
21359
21360
21361
21362
21363
21364
21365
21366
21367
21368
21369
21370
21371
21372
21373
21374
21375
21376
21377
21378
21379
21380
21381
21382
21383
21384
21385
21386
21387
21388
21389
21390
21391
21392
21393
21394
21395
21396
21397
21398
21399
21400
21401
21402
21403
21404
21405
21406
21407
21408
21409
21410
21411
21412
21413
21414
21415
21416
21417
21418
21419
21420
21421
21422
21423
21424
21425
21426
21427
21428
21429
21430
21431
21432
21433
21434
21435
21436
21437
21438
21439
21440
21441
21442
21443
21444
21445
21446
21447
21448
21449
21450
21451
21452
21453
21454
21455
21456
21457
21458
21459
21460
21461
21462
21463
21464
21465
21466
21467
21468
21469
21470
21471
21472
21473
21474
21475
21476
21477
21478
21479
21480
21481
21482
21483
21484
21485
21486
21487
21488
21489
21490
21491
21492
21493
21494
21495
21496
21497
21498
21499
21500
21501
21502
21503
21504
21505
21506
21507
21508
21509
21510
21511
21512
21513
21514
21515
21516
21517
21518
21519
21520
21521
21522
21523
21524
21525
21526
21527
21528
21529
21530
21531
21532
21533
21534
21535
21536
21537
21538
21539
21540
21541
21542
21543
21544
21545
21546
21547
21548
21549
21550
21551
21552
21553
21554
21555
21556
21557
21558
21559
21560
21561
21562
21563
21564
21565
21566
21567
21568
21569
21570
21571
21572
21573
21574
21575
21576
21577
21578
21579
21580
21581
21582
21583
21584
21585
21586
21587
21588
21589
21590
21591
21592
21593
21594
21595
21596
21597
21598
21599
21600
21601
21602
21603
21604
21605
21606
21607
21608
21609
21610
21611
21612
21613
21614
21615
21616
21617
21618
21619
21620
21621
21622
21623
21624
21625
21626
21627
21628
21629
21630
21631
21632
21633
21634
21635
21636
21637
21638
21639
21640
21641
21642
21643
21644
21645
21646
21647
21648
21649
21650
21651
21652
21653
21654
21655
21656
21657
21658
21659
21660
21661
21662
21663
21664
21665
21666
21667
21668
21669
21670
21671
21672
21673
21674
21675
21676
21677
21678
21679
21680
21681
21682
21683
21684
21685
21686
21687
21688
21689
21690
21691
21692
21693
21694
21695
21696
21697
21698
21699
21700
21701
21702
21703
21704
21705
21706
21707
21708
21709
21710
21711
21712
21713
21714
21715
21716
21717
21718
21719
21720
21721
21722
21723
21724
21725
21726
21727
21728
21729
21730
21731
21732
21733
21734
21735
21736
21737
21738
21739
21740
21741
21742
21743
21744
21745
21746
21747
21748
21749
21750
21751
21752
21753
21754
21755
21756
21757
21758
21759
21760
21761
21762
21763
21764
21765
21766
21767
21768
21769
21770
21771
21772
21773
21774
21775
21776
21777
21778
21779
21780
21781
21782
21783
21784
21785
21786
21787
21788
21789
21790
21791
21792
21793
21794
21795
21796
21797
21798
21799
21800
21801
21802
21803
21804
21805
21806
21807
21808
21809
21810
21811
21812
21813
21814
21815
21816
21817
21818
21819
21820
21821
21822
21823
21824
21825
21826
21827
21828
21829
21830
21831
21832
21833
21834
21835
21836
21837
21838
21839
21840
21841
21842
21843
21844
21845
21846
21847
21848
21849
21850
21851
21852
21853
21854
21855
21856
21857
21858
21859
21860
21861
21862
21863
21864
21865
21866
21867
21868
21869
21870
21871
21872
21873
21874
21875
21876
21877
21878
21879
21880
21881
21882
21883
21884
21885
21886
21887
21888
21889
21890
21891
21892
21893
21894
21895
21896
21897
21898
21899
21900
21901
21902
21903
21904
21905
21906
21907
21908
21909
21910
21911
21912
21913
21914
21915
21916
21917
21918
21919
21920
21921
21922
21923
21924
21925
21926
21927
21928
21929
21930
21931
21932
21933
21934
21935
21936
21937
21938
21939
21940
21941
21942
21943
21944
21945
21946
21947
21948
21949
21950
21951
21952
21953
21954
21955
21956
21957
21958
21959
21960
21961
21962
21963
21964
21965
21966
21967
21968
21969
21970
21971
21972
21973
21974
21975
21976
21977
21978
21979
21980
21981
21982
21983
21984
21985
21986
21987
21988
21989
21990
21991
21992
21993
21994
21995
21996
21997
21998
21999
22000
22001
22002
22003
22004
22005
22006
22007
22008
22009
22010
22011
22012
22013
22014
22015
22016
22017
22018
22019
22020
22021
22022
22023
22024
22025
22026
22027
22028
22029
22030
22031
22032
22033
22034
22035
22036
22037
22038
22039
22040
22041
22042
22043
22044
22045
22046
22047
22048
22049
22050
22051
22052
22053
22054
22055
22056
22057
22058
22059
22060
22061
22062
22063
22064
22065
22066
22067
22068
22069
22070
22071
22072
22073
22074
22075
22076
22077
22078
22079
22080
22081
22082
22083
22084
22085
22086
22087
22088
22089
22090
22091
22092
22093
22094
22095
22096
22097
22098
22099
22100
22101
22102
22103
22104
22105
22106
22107
22108
22109
22110
22111
22112
22113
22114
22115
22116
22117
22118
22119
22120
22121
22122
22123
22124
22125
22126
22127
22128
22129
22130
22131
22132
22133
22134
22135
22136
22137
22138
22139
22140
22141
22142
22143
22144
22145
22146
22147
22148
22149
22150
22151
22152
22153
22154
22155
22156
22157
22158
22159
22160
22161
22162
22163
22164
22165
22166
22167
22168
22169
22170
22171
22172
22173
22174
22175
22176
22177
22178
22179
22180
22181
22182
22183
22184
22185
22186
22187
22188
22189
22190
22191
22192
22193
22194
22195
22196
22197
22198
22199
22200
22201
22202
22203
22204
22205
22206
22207
22208
22209
22210
22211
22212
22213
22214
22215
22216
22217
22218
22219
22220
22221
22222
22223
22224
22225
22226
22227
22228
22229
22230
22231
22232
22233
22234
22235
22236
22237
22238
22239
22240
22241
22242
22243
22244
22245
22246
22247
22248
22249
22250
22251
22252
22253
22254
22255
22256
22257
22258
22259
22260
22261
22262
22263
22264
22265
22266
22267
22268
22269
22270
22271
22272
22273
22274
22275
22276
22277
22278
22279
22280
22281
22282
22283
22284
22285
22286
22287
22288
22289
22290
22291
22292
22293
22294
22295
22296
22297
22298
22299
22300
22301
22302
22303
22304
22305
22306
22307
22308
22309
22310
22311
22312
22313
22314
22315
22316
22317
22318
22319
22320
22321
22322
22323
22324
22325
22326
22327
22328
22329
22330
22331
22332
22333
22334
22335
22336
22337
22338
22339
22340
22341
22342
22343
22344
22345
22346
22347
22348
22349
22350
22351
22352
22353
22354
22355
22356
22357
22358
22359
22360
22361
22362
22363
22364
22365
22366
22367
22368
22369
22370
22371
22372
22373
22374
22375
22376
22377
22378
22379
22380
22381
22382
22383
22384
22385
22386
22387
22388
22389
22390
22391
22392
22393
22394
22395
22396
22397
22398
22399
22400
22401
22402
22403
22404
22405
22406
22407
22408
22409
22410
22411
22412
22413
22414
22415
22416
22417
22418
22419
22420
22421
22422
22423
22424
22425
22426
22427
22428
22429
22430
22431
22432
22433
22434
22435
22436
22437
22438
22439
22440
22441
22442
22443
22444
22445
22446
22447
22448
22449
22450
22451
22452
22453
22454
22455
22456
22457
22458
22459
22460
22461
22462
22463
22464
22465
22466
22467
22468
22469
22470
22471
22472
22473
22474
22475
22476
22477
22478
22479
22480
22481
22482
22483
22484
22485
22486
22487
22488
22489
22490
22491
22492
22493
22494
22495
22496
22497
22498
22499
22500
22501
22502
22503
22504
22505
22506
22507
22508
22509
22510
22511
22512
22513
22514
22515
22516
22517
22518
22519
22520
22521
22522
22523
22524
22525
22526
22527
22528
22529
22530
22531
22532
22533
22534
22535
22536
22537
22538
22539
22540
22541
22542
22543
22544
22545
22546
22547
22548
22549
22550
22551
22552
22553
22554
22555
22556
22557
22558
22559
22560
22561
22562
22563
22564
22565
22566
22567
22568
22569
22570
22571
22572
22573
22574
22575
22576
22577
22578
22579
22580
22581
22582
22583
22584
22585
22586
22587
22588
22589
22590
22591
22592
22593
22594
22595
22596
22597
22598
22599
22600
22601
22602
22603
22604
22605
22606
22607
22608
22609
22610
22611
22612
22613
22614
22615
22616
22617
22618
22619
22620
22621
22622
22623
22624
22625
22626
22627
22628
22629
22630
22631
22632
22633
22634
22635
22636
22637
22638
22639
22640
22641
22642
22643
22644
22645
22646
22647
22648
22649
22650
22651
22652
22653
22654
22655
22656
22657
22658
22659
22660
22661
22662
22663
22664
22665
22666
22667
22668
22669
22670
22671
22672
22673
22674
22675
22676
22677
22678
22679
22680
22681
22682
22683
22684
22685
22686
22687
22688
22689
22690
22691
22692
22693
22694
22695
22696
22697
22698
22699
22700
22701
22702
22703
22704
22705
22706
22707
22708
22709
22710
22711
22712
22713
22714
22715
22716
22717
22718
22719
22720
22721
22722
22723
22724
22725
22726
22727
22728
22729
22730
22731
22732
22733
22734
22735
22736
22737
22738
22739
22740
22741
22742
22743
22744
22745
22746
22747
22748
22749
22750
22751
22752
22753
22754
22755
22756
22757
22758
22759
22760
22761
22762
22763
22764
22765
22766
22767
22768
22769
22770
22771
22772
22773
22774
22775
22776
22777
22778
22779
22780
22781
22782
22783
22784
22785
22786
22787
22788
22789
22790
22791
22792
22793
22794
22795
22796
22797
22798
22799
22800
22801
22802
22803
22804
22805
22806
22807
22808
22809
22810
22811
22812
22813
22814
22815
22816
22817
22818
22819
22820
22821
22822
22823
22824
22825
22826
22827
22828
22829
22830
22831
22832
22833
22834
22835
22836
22837
22838
22839
22840
22841
22842
22843
22844
22845
22846
22847
22848
22849
22850
22851
22852
22853
22854
22855
22856
22857
22858
22859
22860
22861
22862
22863
22864
22865
22866
22867
22868
22869
22870
22871
22872
22873
22874
22875
22876
22877
22878
22879
22880
22881
22882
22883
22884
22885
22886
22887
22888
22889
22890
22891
22892
22893
22894
22895
22896
22897
22898
22899
22900
22901
22902
22903
22904
22905
22906
22907
22908
22909
22910
22911
22912
22913
22914
22915
22916
22917
22918
22919
22920
22921
22922
22923
22924
22925
22926
22927
22928
22929
22930
22931
22932
22933
22934
22935
22936
22937
22938
22939
22940
22941
22942
22943
22944
22945
22946
22947
22948
22949
22950
22951
22952
22953
22954
22955
22956
22957
22958
22959
22960
22961
22962
22963
22964
22965
22966
22967
22968
22969
22970
22971
22972
22973
22974
22975
22976
22977
22978
22979
22980
22981
22982
22983
22984
22985
22986
22987
22988
22989
22990
22991
22992
22993
22994
22995
22996
22997
22998
22999
23000
23001
23002
23003
23004
23005
23006
23007
23008
23009
23010
23011
23012
23013
23014
23015
23016
23017
23018
23019
23020
23021
23022
23023
23024
23025
23026
23027
23028
23029
23030
23031
23032
23033
23034
23035
23036
23037
23038
23039
23040
23041
23042
23043
23044
23045
23046
23047
23048
23049
23050
23051
23052
23053
23054
23055
23056
23057
23058
23059
23060
23061
23062
23063
23064
23065
23066
23067
23068
23069
23070
23071
23072
23073
23074
23075
23076
23077
23078
23079
23080
23081
23082
23083
23084
23085
23086
23087
23088
23089
23090
23091
23092
23093
23094
23095
23096
23097
23098
23099
23100
23101
23102
23103
23104
23105
23106
23107
23108
23109
23110
23111
23112
23113
23114
23115
23116
23117
23118
23119
23120
23121
23122
23123
23124
23125
23126
23127
23128
23129
23130
23131
23132
23133
23134
23135
23136
23137
23138
23139
23140
23141
23142
23143
23144
23145
23146
23147
23148
23149
23150
23151
23152
23153
23154
23155
23156
23157
23158
23159
23160
23161
23162
23163
23164
23165
23166
23167
23168
23169
23170
23171
23172
23173
23174
23175
23176
23177
23178
23179
23180
23181
23182
23183
23184
23185
23186
23187
23188
23189
23190
23191
23192
23193
23194
23195
23196
23197
23198
23199
23200
23201
23202
23203
23204
23205
23206
23207
23208
23209
23210
23211
23212
23213
23214
23215
23216
23217
23218
23219
23220
23221
23222
23223
23224
23225
23226
23227
23228
23229
23230
23231
23232
23233
23234
23235
23236
23237
23238
23239
23240
23241
23242
23243
23244
23245
23246
23247
23248
23249
23250
23251
23252
23253
23254
23255
23256
23257
23258
23259
23260
23261
23262
23263
23264
23265
23266
23267
23268
23269
23270
23271
23272
23273
23274
23275
23276
23277
23278
23279
23280
23281
23282
23283
23284
23285
23286
23287
23288
23289
23290
23291
23292
23293
23294
23295
23296
23297
23298
23299
23300
23301
23302
23303
23304
23305
23306
23307
23308
23309
23310
23311
23312
23313
23314
23315
23316
23317
23318
23319
23320
23321
23322
23323
23324
23325
23326
23327
23328
23329
23330
23331
23332
23333
23334
23335
23336
23337
23338
23339
23340
23341
23342
23343
23344
23345
23346
23347
23348
23349
23350
23351
23352
23353
23354
23355
23356
23357
23358
23359
23360
23361
23362
23363
23364
23365
23366
23367
23368
23369
23370
23371
23372
23373
23374
23375
23376
23377
23378
23379
23380
23381
23382
23383
23384
23385
23386
23387
23388
23389
23390
23391
23392
23393
23394
23395
23396
23397
23398
23399
23400
23401
23402
23403
23404
23405
23406
23407
23408
23409
23410
23411
23412
23413
23414
23415
23416
23417
23418
23419
23420
23421
23422
23423
23424
23425
23426
23427
23428
23429
23430
23431
23432
23433
23434
23435
23436
23437
23438
23439
23440
23441
23442
23443
23444
23445
23446
23447
23448
23449
23450
23451
23452
23453
23454
23455
23456
23457
23458
23459
23460
23461
23462
23463
23464
23465
23466
23467
23468
23469
23470
23471
23472
23473
23474
23475
23476
23477
23478
23479
23480
23481
23482
23483
23484
23485
23486
23487
23488
23489
23490
23491
23492
23493
23494
23495
23496
23497
23498
23499
23500
23501
23502
23503
23504
23505
23506
23507
23508
23509
23510
23511
23512
23513
23514
23515
23516
23517
23518
23519
23520
23521
23522
23523
23524
23525
23526
23527
23528
23529
23530
23531
23532
23533
23534
23535
23536
23537
23538
23539
23540
23541
23542
23543
23544
23545
23546
23547
23548
23549
23550
23551
23552
23553
23554
23555
23556
23557
23558
23559
23560
23561
23562
23563
23564
23565
23566
23567
23568
23569
23570
23571
23572
23573
23574
23575
23576
23577
23578
23579
23580
23581
23582
23583
23584
23585
23586
23587
23588
23589
23590
23591
23592
23593
23594
23595
23596
23597
23598
23599
23600
23601
23602
23603
23604
23605
23606
23607
23608
23609
23610
23611
23612
23613
23614
23615
23616
23617
23618
23619
23620
23621
23622
23623
23624
23625
23626
23627
23628
23629
23630
23631
23632
23633
23634
23635
23636
23637
23638
23639
23640
23641
23642
23643
23644
23645
23646
23647
23648
23649
23650
23651
23652
23653
23654
23655
23656
23657
23658
23659
23660
23661
23662
23663
23664
23665
23666
23667
23668
23669
23670
23671
23672
23673
23674
23675
23676
23677
23678
23679
23680
23681
23682
23683
23684
23685
23686
23687
23688
23689
23690
23691
23692
23693
23694
23695
23696
23697
23698
23699
23700
23701
23702
23703
23704
23705
23706
23707
23708
23709
23710
23711
23712
23713
23714
23715
23716
23717
23718
23719
23720
23721
23722
23723
23724
23725
23726
23727
23728
23729
23730
23731
23732
23733
23734
23735
23736
23737
23738
23739
23740
23741
23742
23743
23744
23745
23746
23747
23748
23749
23750
23751
23752
23753
23754
23755
23756
23757
23758
23759
23760
23761
23762
23763
23764
23765
23766
23767
23768
23769
23770
23771
23772
23773
23774
23775
23776
23777
23778
23779
23780
23781
23782
23783
23784
23785
23786
23787
23788
23789
23790
23791
23792
23793
23794
23795
23796
23797
23798
23799
23800
23801
23802
23803
23804
23805
23806
23807
23808
23809
23810
23811
23812
23813
23814
23815
23816
23817
23818
23819
23820
23821
23822
23823
23824
23825
23826
23827
23828
23829
23830
23831
23832
23833
23834
23835
23836
23837
23838
23839
23840
23841
23842
23843
23844
23845
23846
23847
23848
23849
23850
23851
23852
23853
23854
23855
23856
23857
23858
23859
23860
23861
23862
23863
23864
23865
23866
23867
23868
23869
23870
23871
23872
23873
23874
23875
23876
23877
23878
23879
23880
23881
23882
23883
23884
23885
23886
23887
23888
23889
23890
23891
23892
23893
23894
23895
23896
23897
23898
23899
23900
23901
23902
23903
23904
23905
23906
23907
23908
23909
23910
23911
23912
23913
23914
23915
23916
23917
23918
23919
23920
23921
23922
23923
23924
23925
23926
23927
23928
23929
23930
23931
23932
23933
23934
23935
23936
23937
23938
23939
23940
23941
23942
23943
23944
23945
23946
23947
23948
23949
23950
23951
23952
23953
23954
23955
23956
23957
23958
23959
23960
23961
23962
23963
23964
23965
23966
23967
23968
23969
23970
23971
23972
23973
23974
23975
23976
23977
23978
23979
23980
23981
23982
23983
23984
23985
23986
23987
23988
23989
23990
23991
23992
23993
23994
23995
23996
23997
23998
23999
24000
24001
24002
24003
24004
24005
24006
24007
24008
24009
24010
24011
24012
24013
24014
24015
24016
24017
24018
24019
24020
24021
24022
24023
24024
24025
24026
24027
24028
24029
24030
24031
24032
24033
24034
24035
24036
24037
24038
24039
24040
24041
24042
24043
24044
24045
24046
24047
24048
24049
24050
24051
24052
24053
24054
24055
24056
24057
24058
24059
24060
24061
24062
24063
24064
24065
24066
24067
24068
24069
24070
24071
24072
24073
24074
24075
24076
24077
24078
24079
24080
24081
24082
24083
24084
24085
24086
24087
24088
24089
24090
24091
24092
24093
24094
24095
24096
24097
24098
24099
24100
24101
24102
24103
24104
24105
24106
24107
24108
24109
24110
24111
24112
24113
24114
24115
24116
24117
24118
24119
24120
24121
24122
24123
24124
24125
24126
24127
24128
24129
24130
24131
24132
24133
24134
24135
24136
24137
24138
24139
24140
24141
24142
24143
24144
24145
24146
24147
24148
24149
24150
24151
24152
24153
24154
24155
24156
24157
24158
24159
24160
24161
24162
24163
24164
24165
24166
24167
24168
24169
24170
24171
24172
24173
24174
24175
24176
24177
24178
24179
24180
24181
24182
24183
24184
24185
24186
24187
24188
24189
24190
24191
24192
24193
24194
24195
24196
24197
24198
24199
24200
24201
24202
24203
24204
24205
24206
24207
24208
24209
24210
24211
24212
24213
24214
24215
24216
24217
24218
24219
24220
24221
24222
24223
24224
24225
24226
24227
24228
24229
24230
24231
24232
24233
24234
24235
24236
24237
24238
24239
24240
24241
24242
24243
24244
24245
24246
24247
24248
24249
24250
24251
24252
24253
24254
24255
24256
24257
24258
24259
24260
24261
24262
24263
24264
24265
24266
24267
24268
24269
24270
24271
24272
24273
24274
24275
24276
24277
24278
24279
24280
24281
24282
24283
24284
24285
24286
24287
24288
24289
24290
24291
24292
24293
24294
24295
24296
24297
24298
24299
24300
24301
24302
24303
24304
24305
24306
24307
24308
24309
24310
24311
24312
24313
24314
24315
24316
24317
24318
24319
24320
24321
24322
24323
24324
24325
24326
24327
24328
24329
24330
24331
24332
24333
24334
24335
24336
24337
24338
24339
24340
24341
24342
24343
24344
24345
24346
24347
24348
24349
24350
24351
24352
24353
24354
24355
24356
24357
24358
24359
24360
24361
24362
24363
24364
24365
24366
24367
24368
24369
24370
24371
24372
24373
24374
24375
24376
24377
24378
24379
24380
24381
24382
24383
24384
24385
24386
24387
24388
24389
24390
24391
24392
24393
24394
24395
24396
24397
24398
24399
24400
24401
24402
24403
24404
24405
24406
24407
24408
24409
24410
24411
24412
24413
24414
24415
24416
24417
24418
24419
24420
24421
24422
24423
24424
24425
24426
24427
24428
24429
24430
24431
24432
24433
24434
24435
24436
24437
24438
24439
24440
24441
24442
24443
24444
24445
24446
24447
24448
24449
24450
24451
24452
24453
24454
24455
24456
24457
24458
24459
24460
24461
24462
24463
24464
24465
24466
24467
24468
24469
24470
24471
24472
24473
24474
24475
24476
24477
24478
24479
24480
24481
24482
24483
24484
24485
24486
24487
24488
24489
24490
24491
24492
24493
24494
24495
24496
24497
24498
24499
24500
24501
24502
24503
24504
24505
24506
24507
24508
24509
24510
24511
24512
24513
24514
24515
24516
24517
24518
24519
24520
24521
24522
24523
24524
24525
24526
24527
24528
24529
24530
24531
24532
24533
24534
24535
24536
24537
24538
24539
24540
24541
24542
24543
24544
24545
24546
24547
24548
24549
24550
24551
24552
24553
24554
24555
24556
24557
24558
24559
24560
24561
24562
24563
24564
24565
24566
24567
24568
24569
24570
24571
24572
24573
24574
24575
24576
24577
24578
24579
24580
24581
24582
24583
24584
24585
24586
24587
24588
24589
24590
24591
24592
24593
24594
24595
24596
24597
24598
24599
24600
24601
24602
24603
24604
24605
24606
24607
24608
24609
24610
24611
24612
24613
24614
24615
24616
24617
24618
24619
24620
24621
24622
24623
24624
24625
24626
24627
24628
24629
24630
24631
24632
24633
24634
24635
24636
24637
24638
24639
24640
24641
24642
24643
24644
24645
24646
24647
24648
24649
24650
24651
24652
24653
24654
24655
24656
24657
24658
24659
24660
24661
24662
24663
24664
24665
24666
24667
24668
24669
24670
24671
24672
24673
24674
24675
24676
24677
24678
24679
24680
24681
24682
24683
24684
24685
24686
24687
24688
24689
24690
24691
24692
24693
24694
24695
24696
24697
24698
24699
24700
24701
24702
24703
24704
24705
24706
24707
24708
24709
24710
24711
24712
24713
24714
24715
24716
24717
24718
24719
24720
24721
24722
24723
24724
24725
24726
24727
24728
24729
24730
24731
24732
24733
24734
24735
24736
24737
24738
24739
24740
24741
24742
24743
24744
24745
24746
24747
24748
24749
24750
24751
24752
24753
24754
24755
24756
24757
24758
24759
24760
24761
24762
24763
24764
24765
24766
24767
24768
24769
24770
24771
24772
24773
24774
24775
24776
24777
24778
24779
24780
24781
24782
24783
24784
24785
24786
24787
24788
24789
24790
24791
24792
24793
24794
24795
24796
24797
24798
24799
24800
24801
24802
24803
24804
24805
24806
24807
24808
24809
24810
24811
24812
24813
24814
24815
24816
24817
24818
24819
24820
24821
24822
24823
24824
24825
24826
24827
24828
24829
24830
24831
24832
24833
24834
24835
24836
24837
24838
24839
24840
24841
24842
24843
24844
24845
24846
24847
24848
24849
24850
24851
24852
24853
24854
24855
24856
24857
24858
24859
24860
24861
24862
24863
24864
24865
24866
24867
24868
24869
24870
24871
24872
24873
24874
24875
24876
24877
24878
24879
24880
24881
24882
24883
24884
24885
24886
24887
24888
24889
24890
24891
24892
24893
24894
24895
24896
24897
24898
24899
24900
24901
24902
24903
24904
24905
24906
24907
24908
24909
24910
24911
24912
24913
24914
24915
24916
24917
24918
24919
24920
24921
24922
24923
24924
24925
24926
24927
24928
24929
24930
24931
24932
24933
24934
24935
24936
24937
24938
24939
24940
24941
24942
24943
24944
24945
24946
24947
24948
24949
24950
24951
24952
24953
24954
24955
24956
24957
24958
24959
24960
24961
24962
24963
24964
24965
24966
24967
24968
24969
24970
24971
24972
24973
24974
24975
24976
24977
24978
24979
24980
24981
24982
24983
24984
24985
24986
24987
24988
24989
24990
24991
24992
24993
24994
24995
24996
24997
24998
24999
25000
25001
25002
25003
25004
25005
25006
25007
25008
25009
25010
25011
25012
25013
25014
25015
25016
25017
25018
25019
25020
25021
25022
25023
25024
25025
25026
25027
25028
25029
25030
25031
25032
25033
25034
25035
25036
25037
25038
25039
25040
25041
25042
25043
25044
25045
25046
25047
25048
25049
25050
25051
25052
25053
25054
25055
25056
25057
25058
25059
25060
25061
25062
25063
25064
25065
25066
25067
25068
25069
25070
25071
25072
25073
25074
25075
25076
25077
25078
25079
25080
25081
25082
25083
25084
25085
25086
25087
25088
25089
25090
25091
25092
25093
25094
25095
25096
25097
25098
25099
25100
25101
25102
25103
25104
25105
25106
25107
25108
25109
25110
25111
25112
25113
25114
25115
25116
25117
25118
25119
25120
25121
25122
25123
25124
25125
25126
25127
25128
25129
25130
25131
25132
25133
25134
25135
25136
25137
25138
25139
25140
25141
25142
25143
25144
25145
25146
25147
25148
25149
25150
25151
25152
25153
25154
25155
25156
25157
25158
25159
25160
25161
25162
25163
25164
25165
25166
25167
25168
25169
25170
25171
25172
25173
25174
25175
25176
25177
25178
25179
25180
25181
25182
25183
25184
25185
25186
25187
25188
25189
25190
25191
25192
25193
25194
25195
25196
25197
25198
25199
25200
25201
25202
25203
25204
25205
25206
25207
25208
25209
25210
25211
25212
25213
25214
25215
25216
25217
25218
25219
25220
25221
25222
25223
25224
25225
25226
25227
25228
25229
25230
25231
25232
25233
25234
25235
25236
25237
25238
25239
25240
25241
25242
25243
25244
25245
25246
25247
25248
25249
25250
25251
25252
25253
25254
25255
25256
25257
25258
25259
25260
25261
25262
25263
25264
25265
25266
25267
25268
25269
25270
25271
25272
25273
25274
25275
25276
25277
25278
25279
25280
25281
25282
25283
25284
25285
25286
25287
25288
25289
25290
25291
25292
25293
25294
25295
25296
25297
25298
25299
25300
25301
25302
25303
25304
25305
25306
25307
25308
25309
25310
25311
25312
25313
25314
25315
25316
25317
25318
25319
25320
25321
25322
25323
25324
25325
25326
25327
25328
25329
25330
25331
25332
25333
25334
25335
25336
25337
25338
25339
25340
25341
25342
25343
25344
25345
25346
25347
25348
25349
25350
25351
25352
25353
25354
25355
25356
25357
25358
25359
25360
25361
25362
25363
25364
25365
25366
25367
25368
25369
25370
25371
25372
25373
25374
25375
25376
25377
25378
25379
25380
25381
25382
25383
25384
25385
25386
25387
25388
25389
25390
25391
25392
25393
25394
25395
25396
25397
25398
25399
25400
25401
25402
25403
25404
25405
25406
25407
25408
25409
25410
25411
25412
25413
25414
25415
25416
25417
25418
25419
25420
25421
25422
25423
25424
25425
25426
25427
25428
25429
25430
25431
25432
25433
25434
25435
25436
25437
25438
25439
25440
25441
25442
25443
25444
25445
25446
25447
25448
25449
25450
25451
25452
25453
25454
25455
25456
25457
25458
25459
25460
25461
25462
25463
25464
25465
25466
25467
25468
25469
25470
25471
25472
25473
25474
25475
25476
25477
25478
25479
25480
25481
25482
25483
25484
25485
25486
25487
25488
25489
25490
25491
25492
25493
25494
25495
25496
25497
25498
25499
25500
25501
25502
25503
25504
25505
25506
25507
25508
25509
25510
25511
25512
25513
25514
25515
25516
25517
25518
25519
25520
25521
25522
25523
25524
25525
25526
25527
25528
25529
25530
25531
25532
25533
25534
25535
25536
25537
25538
25539
25540
25541
25542
25543
25544
25545
25546
25547
25548
25549
25550
25551
25552
25553
25554
25555
25556
25557
25558
25559
25560
25561
25562
25563
25564
25565
25566
25567
25568
25569
25570
25571
25572
25573
25574
25575
25576
25577
25578
25579
25580
25581
25582
25583
25584
25585
25586
25587
25588
25589
25590
25591
25592
25593
25594
25595
25596
25597
25598
25599
25600
25601
25602
25603
25604
25605
25606
25607
25608
25609
25610
25611
25612
25613
25614
25615
25616
25617
25618
25619
25620
25621
25622
25623
25624
25625
25626
25627
25628
25629
25630
25631
25632
25633
25634
25635
25636
25637
25638
25639
25640
25641
25642
25643
25644
25645
25646
25647
25648
25649
25650
25651
25652
25653
25654
25655
25656
25657
25658
25659
25660
25661
25662
25663
25664
25665
25666
25667
25668
25669
25670
25671
25672
25673
25674
25675
25676
25677
25678
25679
25680
25681
25682
25683
25684
25685
25686
25687
25688
25689
25690
25691
25692
25693
25694
25695
25696
25697
25698
25699
25700
25701
25702
25703
25704
25705
25706
25707
25708
25709
25710
25711
25712
25713
25714
25715
25716
25717
25718
25719
25720
25721
25722
25723
25724
25725
25726
25727
25728
25729
25730
25731
25732
25733
25734
25735
25736
25737
25738
25739
25740
25741
25742
25743
25744
25745
25746
25747
25748
25749
25750
25751
25752
25753
25754
25755
25756
25757
25758
25759
25760
25761
25762
25763
25764
25765
25766
25767
25768
25769
25770
25771
25772
25773
25774
25775
25776
25777
25778
25779
25780
25781
25782
25783
25784
25785
25786
25787
25788
25789
25790
25791
25792
25793
25794
25795
25796
25797
25798
25799
25800
25801
25802
25803
25804
25805
25806
25807
25808
25809
25810
25811
25812
25813
25814
25815
25816
25817
25818
25819
25820
25821
25822
25823
25824
25825
25826
25827
25828
25829
25830
25831
25832
25833
25834
25835
25836
25837
25838
25839
25840
25841
25842
25843
25844
25845
25846
25847
25848
25849
25850
25851
25852
25853
25854
25855
25856
25857
25858
25859
25860
25861
25862
25863
25864
25865
25866
25867
25868
25869
25870
25871
25872
25873
25874
25875
25876
25877
25878
25879
25880
25881
25882
25883
25884
25885
25886
25887
25888
25889
25890
25891
25892
25893
25894
25895
25896
25897
25898
25899
25900
25901
25902
25903
25904
25905
25906
25907
25908
25909
25910
25911
25912
25913
25914
25915
25916
25917
25918
25919
25920
25921
25922
25923
25924
25925
25926
25927
25928
25929
25930
25931
25932
25933
25934
25935
25936
25937
25938
25939
25940
25941
25942
25943
25944
25945
25946
25947
25948
25949
25950
25951
25952
25953
25954
25955
25956
25957
25958
25959
25960
25961
25962
25963
25964
25965
25966
25967
25968
25969
25970
25971
25972
25973
25974
25975
25976
25977
25978
25979
25980
25981
25982
25983
25984
25985
25986
25987
25988
25989
25990
25991
25992
25993
25994
25995
25996
25997
25998
25999
26000
26001
26002
26003
26004
26005
26006
26007
26008
26009
26010
26011
26012
26013
26014
26015
26016
26017
26018
26019
26020
26021
26022
26023
26024
26025
26026
26027
26028
26029
26030
26031
26032
26033
26034
26035
26036
26037
26038
26039
26040
26041
26042
26043
26044
26045
26046
26047
26048
26049
26050
26051
26052
26053
26054
26055
26056
26057
26058
26059
26060
26061
26062
26063
26064
26065
26066
26067
26068
26069
26070
26071
26072
26073
26074
26075
26076
26077
26078
26079
26080
26081
26082
26083
26084
26085
26086
26087
26088
26089
26090
26091
26092
26093
26094
26095
26096
26097
26098
26099
26100
26101
26102
26103
26104
26105
26106
26107
26108
26109
26110
26111
26112
26113
26114
26115
26116
26117
26118
26119
26120
26121
26122
26123
26124
26125
26126
26127
26128
26129
26130
26131
26132
26133
26134
26135
26136
26137
26138
26139
26140
26141
26142
26143
26144
26145
26146
26147
26148
26149
26150
26151
26152
26153
26154
26155
26156
26157
26158
26159
26160
26161
26162
26163
26164
26165
26166
26167
26168
26169
26170
26171
26172
26173
26174
26175
26176
26177
26178
26179
26180
26181
26182
26183
26184
26185
26186
26187
26188
26189
26190
26191
26192
26193
26194
26195
26196
26197
26198
26199
26200
26201
26202
26203
26204
26205
26206
26207
26208
26209
26210
26211
26212
26213
26214
26215
26216
26217
26218
26219
26220
26221
26222
26223
26224
26225
26226
26227
26228
26229
26230
26231
26232
26233
26234
26235
26236
26237
26238
26239
26240
26241
26242
26243
26244
26245
26246
26247
26248
26249
26250
26251
26252
26253
26254
26255
26256
26257
26258
26259
26260
26261
26262
26263
26264
26265
26266
26267
26268
26269
26270
26271
26272
26273
26274
26275
26276
26277
26278
26279
26280
26281
26282
26283
26284
26285
26286
26287
26288
26289
26290
26291
26292
26293
26294
26295
26296
26297
26298
26299
26300
26301
26302
26303
26304
26305
26306
26307
26308
26309
26310
26311
26312
26313
26314
26315
26316
26317
26318
26319
26320
26321
26322
26323
26324
26325
26326
26327
26328
26329
26330
26331
26332
26333
26334
26335
26336
26337
26338
26339
26340
26341
26342
26343
26344
26345
26346
26347
26348
26349
26350
26351
26352
26353
26354
26355
26356
26357
26358
26359
26360
26361
26362
26363
26364
26365
26366
26367
26368
26369
26370
26371
26372
26373
26374
26375
26376
26377
26378
26379
26380
26381
26382
26383
26384
26385
26386
26387
26388
26389
26390
26391
26392
26393
26394
26395
26396
26397
26398
26399
26400
26401
26402
26403
26404
26405
26406
26407
26408
26409
26410
26411
26412
26413
26414
26415
26416
26417
26418
26419
26420
26421
26422
26423
26424
26425
26426
26427
26428
26429
26430
26431
26432
26433
26434
26435
26436
26437
26438
26439
26440
26441
26442
26443
26444
26445
26446
26447
26448
26449
26450
26451
26452
26453
26454
26455
26456
26457
26458
26459
26460
26461
26462
26463
26464
26465
26466
26467
26468
26469
26470
26471
26472
26473
26474
26475
26476
26477
26478
26479
26480
26481
26482
26483
26484
26485
26486
26487
26488
26489
26490
26491
26492
26493
26494
26495
26496
26497
26498
26499
26500
26501
26502
26503
26504
26505
26506
26507
26508
26509
26510
26511
26512
26513
26514
26515
26516
26517
26518
26519
26520
26521
26522
26523
26524
26525
26526
26527
26528
26529
26530
26531
26532
26533
26534
26535
26536
26537
26538
26539
26540
26541
26542
26543
26544
26545
26546
26547
26548
26549
26550
26551
26552
26553
26554
26555
26556
26557
26558
26559
26560
26561
26562
26563
26564
26565
26566
26567
26568
26569
26570
26571
26572
26573
26574
26575
26576
26577
26578
26579
26580
26581
26582
26583
26584
26585
26586
26587
26588
26589
26590
26591
26592
26593
26594
26595
26596
26597
26598
26599
26600
26601
26602
26603
26604
26605
26606
26607
26608
26609
26610
26611
26612
26613
26614
26615
26616
26617
26618
26619
26620
26621
26622
26623
26624
26625
26626
26627
26628
26629
26630
26631
26632
26633
26634
26635
26636
26637
26638
26639
26640
26641
26642
26643
26644
26645
26646
26647
26648
26649
26650
26651
26652
26653
26654
26655
26656
26657
26658
26659
26660
26661
26662
26663
26664
26665
26666
26667
26668
26669
26670
26671
26672
26673
26674
26675
26676
26677
26678
26679
26680
26681
26682
26683
26684
26685
26686
26687
26688
26689
26690
26691
26692
26693
26694
26695
26696
26697
26698
26699
26700
26701
26702
26703
26704
26705
26706
26707
26708
26709
26710
26711
26712
26713
26714
26715
26716
26717
26718
26719
26720
26721
26722
26723
26724
26725
26726
26727
26728
26729
26730
26731
26732
26733
26734
26735
26736
26737
26738
26739
26740
26741
26742
26743
26744
26745
26746
26747
26748
26749
26750
26751
26752
26753
26754
26755
26756
26757
26758
26759
26760
26761
26762
26763
26764
26765
26766
26767
26768
26769
26770
26771
26772
26773
26774
26775
26776
26777
26778
26779
26780
26781
26782
26783
26784
26785
26786
26787
26788
26789
26790
26791
26792
26793
26794
26795
26796
26797
26798
26799
26800
26801
26802
26803
26804
26805
26806
26807
26808
26809
26810
26811
26812
26813
26814
26815
26816
26817
26818
26819
26820
26821
26822
26823
26824
26825
26826
26827
26828
26829
26830
26831
26832
26833
26834
26835
26836
26837
26838
26839
26840
26841
26842
26843
26844
26845
26846
26847
26848
26849
26850
26851
26852
26853
26854
26855
26856
26857
26858
26859
26860
26861
26862
26863
26864
26865
26866
26867
26868
26869
26870
26871
26872
26873
26874
26875
26876
26877
26878
26879
26880
26881
26882
26883
26884
26885
26886
26887
26888
26889
26890
26891
26892
26893
26894
26895
26896
26897
26898
26899
26900
26901
26902
26903
26904
26905
26906
26907
26908
26909
26910
26911
26912
26913
26914
26915
26916
26917
26918
26919
26920
26921
26922
26923
26924
26925
26926
26927
26928
26929
26930
26931
26932
26933
26934
26935
26936
26937
26938
26939
26940
26941
26942
26943
26944
26945
26946
26947
26948
26949
26950
26951
26952
26953
26954
26955
26956
26957
26958
26959
26960
26961
26962
26963
26964
26965
26966
26967
26968
26969
26970
26971
26972
26973
26974
26975
26976
26977
26978
26979
26980
26981
26982
26983
26984
26985
26986
26987
26988
26989
26990
26991
26992
26993
26994
26995
26996
26997
26998
26999
27000
27001
27002
27003
27004
27005
27006
27007
27008
27009
27010
27011
27012
27013
27014
27015
27016
27017
27018
27019
27020
27021
27022
27023
27024
27025
27026
27027
27028
27029
27030
27031
27032
27033
27034
27035
27036
27037
27038
27039
27040
27041
27042
27043
27044
27045
27046
27047
27048
27049
27050
27051
27052
27053
27054
27055
27056
27057
27058
27059
27060
27061
27062
27063
27064
27065
27066
27067
27068
27069
27070
27071
27072
27073
27074
27075
27076
27077
27078
27079
27080
27081
27082
27083
27084
27085
27086
27087
27088
27089
27090
27091
27092
27093
27094
27095
27096
27097
27098
27099
27100
27101
27102
27103
27104
27105
27106
27107
27108
27109
27110
27111
27112
27113
27114
27115
27116
27117
27118
27119
27120
27121
27122
27123
27124
27125
27126
27127
27128
27129
27130
27131
27132
27133
27134
27135
27136
27137
27138
27139
27140
27141
27142
27143
27144
27145
27146
27147
27148
27149
27150
27151
27152
27153
27154
27155
27156
27157
27158
27159
27160
27161
27162
27163
27164
27165
27166
27167
27168
27169
27170
27171
27172
27173
27174
27175
27176
27177
27178
27179
27180
27181
27182
27183
27184
27185
27186
27187
27188
27189
27190
27191
27192
27193
27194
27195
27196
27197
27198
27199
27200
27201
27202
27203
27204
27205
27206
27207
27208
27209
27210
27211
27212
27213
27214
27215
27216
27217
27218
27219
27220
27221
27222
27223
27224
27225
27226
27227
27228
27229
27230
27231
27232
27233
27234
27235
27236
27237
27238
27239
27240
27241
27242
27243
27244
27245
27246
27247
27248
27249
27250
27251
27252
27253
27254
27255
27256
27257
27258
27259
27260
27261
27262
27263
27264
27265
27266
27267
27268
27269
27270
27271
27272
27273
27274
27275
27276
27277
27278
27279
27280
27281
27282
27283
27284
27285
27286
27287
27288
27289
27290
27291
27292
27293
27294
27295
27296
27297
27298
27299
27300
27301
27302
27303
27304
27305
27306
27307
27308
27309
27310
27311
27312
27313
27314
27315
27316
27317
27318
27319
27320
27321
27322
27323
27324
27325
27326
27327
27328
27329
27330
27331
27332
27333
27334
27335
27336
27337
27338
27339
27340
27341
27342
27343
27344
27345
27346
27347
27348
27349
27350
27351
27352
27353
27354
27355
27356
27357
27358
27359
27360
27361
27362
27363
27364
27365
27366
27367
27368
27369
27370
27371
27372
27373
27374
27375
27376
27377
27378
27379
27380
27381
27382
27383
27384
27385
27386
27387
27388
27389
27390
27391
27392
27393
27394
27395
27396
27397
27398
27399
27400
27401
27402
27403
27404
27405
27406
27407
27408
27409
27410
27411
27412
27413
27414
27415
27416
27417
27418
27419
27420
27421
27422
27423
27424
27425
27426
27427
27428
27429
27430
27431
27432
27433
27434
27435
27436
27437
27438
27439
27440
27441
27442
27443
27444
27445
27446
27447
27448
27449
27450
27451
27452
27453
27454
27455
27456
27457
27458
27459
27460
27461
27462
27463
27464
27465
27466
27467
27468
27469
27470
27471
27472
27473
27474
27475
27476
27477
27478
27479
27480
27481
27482
27483
27484
27485
27486
27487
27488
27489
27490
27491
27492
27493
27494
27495
27496
27497
27498
27499
27500
27501
27502
27503
27504
27505
27506
27507
27508
27509
27510
27511
27512
27513
27514
27515
27516
27517
27518
27519
27520
27521
27522
27523
27524
27525
27526
27527
27528
27529
27530
27531
27532
27533
27534
27535
27536
27537
27538
27539
27540
27541
27542
27543
27544
27545
27546
27547
27548
27549
27550
27551
27552
27553
27554
27555
27556
27557
27558
27559
27560
27561
27562
27563
27564
27565
27566
27567
27568
27569
27570
27571
27572
27573
27574
27575
27576
27577
27578
27579
27580
27581
27582
27583
27584
27585
27586
27587
27588
27589
27590
27591
27592
27593
27594
27595
27596
27597
27598
27599
27600
27601
27602
27603
27604
27605
27606
27607
27608
27609
27610
27611
27612
27613
27614
27615
27616
27617
27618
27619
27620
27621
27622
27623
27624
27625
27626
27627
27628
27629
27630
27631
27632
27633
27634
27635
27636
27637
27638
27639
27640
27641
27642
27643
27644
27645
27646
27647
27648
27649
27650
27651
27652
27653
27654
27655
27656
27657
27658
27659
27660
27661
27662
27663
27664
27665
27666
27667
27668
27669
27670
27671
27672
27673
27674
27675
27676
27677
27678
27679
27680
27681
27682
27683
27684
27685
27686
27687
27688
27689
27690
27691
27692
27693
27694
27695
27696
27697
27698
27699
27700
27701
27702
27703
27704
27705
27706
27707
27708
27709
27710
27711
27712
27713
27714
27715
27716
27717
27718
27719
27720
27721
27722
27723
27724
27725
27726
27727
27728
27729
27730
27731
27732
27733
27734
27735
27736
27737
27738
27739
27740
27741
27742
27743
27744
27745
27746
27747
27748
27749
27750
27751
27752
27753
27754
27755
27756
27757
27758
27759
27760
27761
27762
27763
27764
27765
27766
27767
27768
27769
27770
27771
27772
27773
27774
27775
27776
27777
27778
27779
27780
27781
27782
27783
27784
27785
27786
27787
27788
27789
27790
27791
27792
27793
27794
27795
27796
27797
27798
27799
27800
27801
27802
27803
27804
27805
27806
27807
27808
27809
27810
27811
27812
27813
27814
27815
27816
27817
27818
27819
27820
27821
27822
27823
27824
27825
27826
27827
27828
27829
27830
27831
27832
27833
27834
27835
27836
27837
27838
27839
27840
27841
27842
27843
27844
27845
27846
27847
27848
27849
27850
27851
27852
27853
27854
27855
27856
27857
27858
27859
27860
27861
27862
27863
27864
27865
27866
27867
27868
27869
27870
27871
27872
27873
27874
27875
27876
27877
27878
27879
27880
27881
27882
27883
27884
27885
27886
27887
27888
27889
27890
27891
27892
27893
27894
27895
27896
27897
27898
27899
27900
27901
27902
27903
27904
27905
27906
27907
27908
27909
27910
27911
27912
27913
27914
27915
27916
27917
27918
27919
27920
27921
27922
27923
27924
27925
27926
27927
27928
27929
27930
27931
27932
27933
27934
27935
27936
27937
27938
27939
27940
27941
27942
27943
27944
27945
27946
27947
27948
27949
27950
27951
27952
27953
27954
27955
27956
27957
27958
27959
27960
27961
27962
27963
27964
27965
27966
27967
27968
27969
27970
27971
27972
27973
27974
27975
27976
27977
27978
27979
27980
27981
27982
27983
27984
27985
27986
27987
27988
27989
27990
27991
27992
27993
27994
27995
27996
27997
27998
27999
28000
28001
28002
28003
28004
28005
28006
28007
28008
28009
28010
28011
28012
28013
28014
28015
28016
28017
28018
28019
28020
28021
28022
28023
28024
28025
28026
28027
28028
28029
28030
28031
28032
28033
28034
28035
28036
28037
28038
28039
28040
28041
28042
28043
28044
28045
28046
28047
28048
28049
28050
28051
28052
28053
28054
28055
28056
28057
28058
28059
28060
28061
28062
28063
28064
28065
28066
28067
28068
28069
28070
28071
28072
28073
28074
28075
28076
28077
28078
28079
28080
28081
28082
28083
28084
28085
28086
28087
28088
28089
28090
28091
28092
28093
28094
28095
28096
28097
28098
28099
28100
28101
28102
28103
28104
28105
28106
28107
28108
28109
28110
28111
28112
28113
28114
28115
28116
28117
28118
28119
28120
28121
28122
28123
28124
28125
28126
28127
28128
28129
28130
28131
28132
28133
28134
28135
28136
28137
28138
28139
28140
28141
28142
28143
28144
28145
28146
28147
28148
28149
28150
28151
28152
28153
28154
28155
28156
28157
28158
28159
28160
28161
28162
28163
28164
28165
28166
28167
28168
28169
28170
28171
28172
28173
28174
28175
28176
28177
28178
28179
28180
28181
28182
28183
28184
28185
28186
28187
28188
28189
28190
28191
28192
28193
28194
28195
28196
28197
28198
28199
28200
28201
28202
28203
28204
28205
28206
28207
28208
28209
28210
28211
28212
28213
28214
28215
28216
28217
28218
28219
28220
28221
28222
28223
28224
28225
28226
28227
28228
28229
28230
28231
28232
28233
28234
28235
28236
28237
28238
28239
28240
28241
28242
28243
28244
28245
28246
28247
28248
28249
28250
28251
28252
28253
28254
28255
28256
28257
28258
28259
28260
28261
28262
28263
28264
28265
28266
28267
28268
28269
28270
28271
28272
28273
28274
28275
28276
28277
28278
28279
28280
28281
28282
28283
28284
28285
28286
28287
28288
28289
28290
28291
28292
28293
28294
28295
28296
28297
28298
28299
28300
28301
28302
28303
28304
28305
28306
28307
28308
28309
28310
28311
28312
28313
28314
28315
28316
28317
28318
28319
28320
28321
28322
28323
28324
28325
28326
28327
28328
28329
28330
28331
28332
28333
28334
28335
28336
28337
28338
28339
28340
28341
28342
28343
28344
28345
28346
28347
28348
28349
28350
28351
28352
28353
28354
28355
28356
28357
28358
28359
28360
28361
28362
28363
28364
28365
28366
28367
28368
28369
28370
28371
28372
28373
28374
28375
28376
28377
28378
28379
28380
28381
28382
28383
28384
28385
28386
28387
28388
28389
28390
28391
28392
28393
28394
28395
28396
28397
28398
28399
28400
28401
28402
28403
28404
28405
28406
28407
28408
28409
28410
28411
28412
28413
28414
28415
28416
28417
28418
28419
28420
28421
28422
28423
28424
28425
28426
28427
28428
28429
28430
28431
28432
28433
28434
28435
28436
28437
28438
28439
28440
28441
28442
28443
28444
28445
28446
28447
28448
28449
28450
28451
28452
28453
28454
28455
28456
28457
28458
28459
28460
28461
28462
28463
28464
28465
28466
28467
28468
28469
28470
28471
28472
28473
28474
28475
28476
28477
28478
28479
28480
28481
28482
28483
28484
28485
28486
28487
28488
28489
28490
28491
28492
28493
28494
28495
28496
28497
28498
28499
28500
28501
28502
28503
28504
28505
28506
28507
28508
28509
28510
28511
28512
28513
28514
28515
28516
28517
28518
28519
28520
28521
28522
28523
28524
28525
28526
28527
28528
28529
28530
28531
28532
28533
28534
28535
28536
28537
28538
28539
28540
28541
28542
28543
28544
28545
28546
28547
28548
28549
28550
28551
28552
28553
28554
28555
28556
28557
28558
28559
28560
28561
28562
28563
28564
28565
28566
28567
28568
28569
28570
28571
28572
28573
28574
28575
28576
28577
28578
28579
28580
28581
28582
28583
28584
28585
28586
28587
28588
28589
28590
28591
28592
28593
28594
28595
28596
28597
28598
28599
28600
28601
28602
28603
28604
28605
28606
28607
28608
28609
28610
28611
28612
28613
28614
28615
28616
28617
28618
28619
28620
28621
28622
28623
28624
28625
28626
28627
28628
28629
28630
28631
28632
28633
28634
28635
28636
28637
28638
28639
28640
28641
28642
28643
28644
28645
28646
28647
28648
28649
28650
28651
28652
28653
28654
28655
28656
28657
28658
28659
28660
28661
28662
28663
28664
28665
28666
28667
28668
28669
28670
28671
28672
28673
28674
28675
28676
28677
28678
28679
28680
28681
28682
28683
28684
28685
28686
28687
28688
28689
28690
28691
28692
28693
28694
28695
28696
28697
28698
28699
28700
28701
28702
28703
28704
28705
28706
28707
28708
28709
28710
28711
28712
28713
28714
28715
28716
28717
28718
28719
28720
28721
28722
28723
28724
28725
28726
28727
28728
28729
28730
28731
28732
28733
28734
28735
28736
28737
28738
28739
28740
28741
28742
28743
28744
28745
28746
28747
28748
28749
28750
28751
28752
28753
28754
28755
28756
28757
28758
28759
28760
28761
28762
28763
28764
28765
28766
28767
28768
28769
28770
28771
28772
28773
28774
28775
28776
28777
28778
28779
28780
28781
28782
28783
28784
28785
28786
28787
28788
28789
28790
28791
28792
28793
28794
28795
28796
28797
28798
28799
28800
28801
28802
28803
28804
28805
28806
28807
28808
28809
28810
28811
28812
28813
28814
28815
28816
28817
28818
28819
28820
28821
28822
28823
28824
28825
28826
28827
28828
28829
28830
28831
28832
28833
28834
28835
28836
28837
28838
28839
28840
28841
28842
28843
28844
28845
28846
28847
28848
28849
28850
28851
28852
28853
28854
28855
28856
28857
28858
28859
28860
28861
28862
28863
28864
28865
28866
28867
28868
28869
28870
28871
28872
28873
28874
28875
28876
28877
28878
28879
28880
28881
28882
28883
28884
28885
28886
28887
28888
28889
28890
28891
28892
28893
28894
28895
28896
28897
28898
28899
28900
28901
28902
28903
28904
28905
28906
28907
28908
28909
28910
28911
28912
28913
28914
28915
28916
28917
28918
28919
28920
28921
28922
28923
28924
28925
28926
28927
28928
28929
28930
28931
28932
28933
28934
28935
28936
28937
28938
28939
28940
28941
28942
28943
28944
28945
28946
28947
28948
28949
28950
28951
28952
28953
28954
28955
28956
28957
28958
28959
28960
28961
28962
28963
28964
28965
28966
28967
28968
28969
28970
28971
28972
28973
28974
28975
28976
28977
28978
28979
28980
28981
28982
28983
28984
28985
28986
28987
28988
28989
28990
28991
28992
28993
28994
28995
28996
28997
28998
28999
29000
29001
29002
29003
29004
29005
29006
29007
29008
29009
29010
29011
29012
29013
29014
29015
29016
29017
29018
29019
29020
29021
29022
29023
29024
29025
29026
29027
29028
29029
29030
29031
29032
29033
29034
29035
29036
29037
29038
29039
29040
29041
29042
29043
29044
29045
29046
29047
29048
29049
29050
29051
29052
29053
29054
29055
29056
29057
29058
29059
29060
29061
29062
29063
29064
29065
29066
29067
29068
29069
29070
29071
29072
29073
29074
29075
29076
29077
29078
29079
29080
29081
29082
29083
29084
29085
29086
29087
29088
29089
29090
29091
29092
29093
29094
29095
29096
29097
29098
29099
29100
29101
29102
29103
29104
29105
29106
29107
29108
29109
29110
29111
29112
29113
29114
29115
29116
29117
29118
29119
29120
29121
29122
29123
29124
29125
29126
29127
29128
29129
29130
29131
29132
29133
29134
29135
29136
29137
29138
29139
29140
29141
29142
29143
29144
29145
29146
29147
29148
29149
29150
29151
29152
29153
29154
29155
29156
29157
29158
29159
29160
29161
29162
29163
29164
29165
29166
29167
29168
29169
29170
29171
29172
29173
29174
29175
29176
29177
29178
29179
29180
29181
29182
29183
29184
29185
29186
29187
29188
29189
29190
29191
29192
29193
29194
29195
29196
29197
29198
29199
29200
29201
29202
29203
29204
29205
29206
29207
29208
29209
29210
29211
29212
29213
29214
29215
29216
29217
29218
29219
29220
29221
29222
29223
29224
29225
29226
29227
29228
29229
29230
29231
29232
29233
29234
29235
29236
29237
29238
29239
29240
29241
29242
29243
29244
29245
29246
29247
29248
29249
29250
29251
29252
29253
29254
29255
29256
29257
29258
29259
29260
29261
29262
29263
29264
29265
29266
29267
29268
29269
29270
29271
29272
29273
29274
29275
29276
29277
29278
29279
29280
29281
29282
29283
29284
29285
29286
29287
29288
29289
29290
29291
29292
29293
29294
29295
29296
29297
29298
29299
29300
29301
29302
29303
29304
29305
29306
29307
29308
29309
29310
29311
29312
29313
29314
29315
29316
29317
29318
29319
29320
29321
29322
29323
29324
29325
29326
29327
29328
29329
29330
29331
29332
29333
29334
29335
29336
29337
29338
29339
29340
29341
29342
29343
29344
29345
29346
29347
29348
29349
29350
29351
29352
29353
29354
29355
29356
29357
29358
29359
29360
29361
29362
29363
29364
29365
29366
29367
29368
29369
29370
29371
29372
29373
29374
29375
29376
29377
29378
29379
29380
29381
29382
29383
29384
29385
29386
29387
29388
29389
29390
29391
29392
29393
29394
29395
29396
29397
29398
29399
29400
29401
29402
29403
29404
29405
29406
29407
29408
29409
29410
29411
29412
29413
29414
29415
29416
29417
29418
29419
29420
29421
29422
29423
29424
29425
29426
29427
29428
29429
29430
29431
29432
29433
29434
29435
29436
29437
29438
29439
29440
29441
29442
29443
29444
29445
29446
29447
29448
29449
29450
29451
29452
29453
29454
29455
29456
29457
29458
29459
29460
29461
29462
29463
29464
29465
29466
29467
29468
29469
29470
29471
29472
29473
29474
29475
29476
29477
29478
29479
29480
29481
29482
29483
29484
29485
29486
29487
29488
29489
29490
29491
29492
29493
29494
29495
29496
29497
29498
29499
29500
29501
29502
29503
29504
29505
29506
29507
29508
29509
29510
29511
29512
29513
29514
29515
29516
29517
29518
29519
29520
29521
29522
29523
29524
29525
29526
29527
29528
29529
29530
29531
29532
29533
29534
29535
29536
29537
29538
29539
29540
29541
29542
29543
29544
29545
29546
29547
29548
29549
29550
29551
29552
29553
29554
29555
29556
29557
29558
29559
29560
29561
29562
29563
29564
29565
29566
29567
29568
29569
29570
29571
29572
29573
29574
29575
29576
29577
29578
29579
29580
29581
29582
29583
29584
29585
29586
29587
29588
29589
29590
29591
29592
29593
29594
29595
29596
29597
29598
29599
29600
29601
29602
29603
29604
29605
29606
29607
29608
29609
29610
29611
29612
29613
29614
29615
29616
29617
29618
29619
29620
29621
29622
29623
29624
29625
29626
29627
29628
29629
29630
29631
29632
29633
29634
29635
29636
29637
29638
29639
29640
29641
29642
29643
29644
29645
29646
29647
29648
29649
29650
29651
29652
29653
29654
29655
29656
29657
29658
29659
29660
29661
29662
29663
29664
29665
29666
29667
29668
29669
29670
29671
29672
29673
29674
29675
29676
29677
29678
29679
29680
29681
29682
29683
29684
29685
29686
29687
29688
29689
29690
29691
29692
29693
29694
29695
29696
29697
29698
29699
29700
29701
29702
29703
29704
29705
29706
29707
29708
29709
29710
29711
29712
29713
29714
29715
29716
29717
29718
29719
29720
29721
29722
29723
29724
29725
29726
29727
29728
29729
29730
29731
29732
29733
29734
29735
29736
29737
29738
29739
29740
29741
29742
29743
29744
29745
29746
29747
29748
29749
29750
29751
29752
29753
29754
29755
29756
29757
29758
29759
29760
29761
29762
29763
29764
29765
29766
29767
29768
29769
29770
29771
29772
29773
29774
29775
29776
29777
29778
29779
29780
29781
29782
29783
29784
29785
29786
29787
29788
29789
29790
29791
29792
29793
29794
29795
29796
29797
29798
29799
29800
29801
29802
29803
29804
29805
29806
29807
29808
29809
29810
29811
29812
29813
29814
29815
29816
29817
29818
29819
29820
29821
29822
29823
29824
29825
29826
29827
29828
29829
29830
29831
29832
29833
29834
29835
29836
29837
29838
29839
29840
29841
29842
29843
29844
29845
29846
29847
29848
29849
29850
29851
29852
29853
29854
29855
29856
29857
29858
29859
29860
29861
29862
29863
29864
29865
29866
29867
29868
29869
29870
29871
29872
29873
29874
29875
29876
29877
29878
29879
29880
29881
29882
29883
29884
29885
29886
29887
29888
29889
29890
29891
29892
29893
29894
29895
29896
29897
29898
29899
29900
29901
29902
29903
29904
29905
29906
29907
29908
29909
29910
29911
29912
29913
29914
29915
29916
29917
29918
29919
29920
Primary publication: AbB 01, 059
Author(s): Kraus, Fritz R., 
Publication date: 1964
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 012839
Accession no.: 1896-03-26, 0031
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: 
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 10180525 cdliadmin_johnsonjc
ATF source: 
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P509373
Transliteration:
&P509373 = AbB 01, 059
#atf: lang akk
@tablet
@obverse
1. [a-na] _{d}suen_-i-[din-nam]
2. qi2-bi2-[ma]
3. um-ma _{d}en-lil2_-sza-du-u2-ni-ma
4. _{d}utu_ u3 _{d}[marduk]_ a-na da-ri-a-[tim]
5. li-ba-al-li-t,u2-u2-ka
6. {disz}sze-ep-_{d}suen a2-gal2 [dumu] um-mi-a-mesz_
7. ki-a-am u2-lam-mi-da-an-ni um-[ma] szu-u2-[ma]
8. {disz}sa-am-su-ba-ah-li sza-pi2-ir ma-[tim]
9. 2(esze3) _a-sza3_ s,i-[bi]-it {disz}[ku]-un-zu-lum _sza3-gud_ 
10. _a-sza3 a-gar3_ na-ag-[ma-lum] _uru_ x x x{ki}
11. sza _{d}utu_-ha-zi-[ir] isz-tu _mu 7(disz) kam_ id-di-nu-szum
12. u3 i-na _uru_ x-szum{ki} sza-ak-nu id-di-a-am-ma
13. 2(esze3) _a-sza3 szuku_ i-li-ib-bu s,i-bi-it _nagar-mesz_
14. _a-sza3 a-gar3 uru_ ra-bu-um x [...]
15. x x x x x x [...]
$ rest broken
@reverse
$ beginning broken
1'. [x x] x x [...]
2'. [x x] x [...]
3'. [x x] x s,i-bi-it _gir3-se3#-ga#_
4'. [x x] x x x-ir ub-lam
5'. in-na-me-er-ma
6'. x _[a-sza3_ s,i]-bi-it ku-un-zu-lum
7'. _a-[sza3 a-gar3_ na-ag]-ma-lum _uru gan2_ x x{ki}
8'. a-[na] sa-[am-su]-ba-ah-[la] x x li ig bu
9'. mi-im-ma _a-sza3_ s,i-bi-[it] _nagar-mesz_
10'. u2-ul na-di-isz-szum
11'. a-na ki-ma i-[na] _dub e2-gal_-lim
12'. sza _{d}utu_-ha-zi-ir ub-lam in-na-am-ru
13'. asz-t,u3-ra-am _dub_ [usz]-ta-bi-la-kum
14'. a-wa-tim sza ma-ah-hi-rum u2-lam-ma-du-u2-ma
15'. asz-szum _e2-gal_-lim la lum-mu-[di ...]
16'. _dub_-pi2 u2-sza-ab-ba-x [...]
17'. x ti u2-ul a-ga-am-ma-[x ...]
18'. u2-ul a-sza-ap-pa-[x ...]
19'. [at-ta] ki-ma ti-du-u2 wa-ar-ka-az-zu pu-ru-us [x x ...]


Primary publication: AbB 01, 060
Author(s): Kraus, Fritz R., 
Publication date: 1964
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 013174
Accession no.: 1896-03-28, 0265
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: 
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 10180525 cdliadmin_johnsonjc
ATF source: 
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P509374
Transliteration:
&P509374 = AbB 01, 060
#atf: lang akk
@tablet
@obverse
1. a-[na] i3-li2-i-qi2-sza-am
2. qi2-bi2-ma
3. um-[ma] _dingir_ x zi x [...] ma
4. _{d}utu_ u3 _{d}marduk_ da-ri-[isz] _u4_-[mi x]
5. [li]-ba-[al]-li-[t,u2-ka]
6. lu sza-[al]-ma-ta lu ba-[al-...]
7. _dub_-pi2 a-na nu-un-na-tum
8. asz-szum _sig2_ uq-ni-a-ti ta-ak-la-tim
9. sza 1(disz) _gin2 ku3-babbar_ sza-mi-im-ma szu-bu-[lim]
10. usz-ta-bi-la-asz-szu
11. _sig2_ uq-ni-a-ti ta-ak-la-tim
12. sza 1(disz) _gin2 ku3-babbar_ li-sza-ma-ak-kum-ma
13. li-qi2-a-am
14. u3 asz-szum 2(disz) a-za-mi-il-la-tim
15. i-na _ka2 ki-lam_ sza-mi-im-ma
16. le-qe2-e-em u2-na-hi-i-id-ka
@reverse
1. 2(disz) a-za-mi-il-la-tim
2. dam-qa2-tim sza-ma-am-ma li-qi2-a-am


Primary publication: AbB 01, 094
Author(s): Kraus, Fritz R., 
Publication date: 1964
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 108450
Accession no.: 1913-04-16, 3282
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: 
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 10180525 cdliadmin_johnsonjc
ATF source: 
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P509375
Transliteration:
&P509375 = CT 43, 094
#atf: lang akk
@tablet
@obverse
1. a-na# da-da-a
2. [qi2]-bi2#-ma
3. [um-ma x]-na-su-[x]-ma
$ rest missing
@reverse
1. [x] te-li-i
2. it-ti _dam-gar3_
3. am-ra-am-ma
4. szu-bi-lam
5. a-na ka-szum-ma
6. sza aq-[bu]-ku
7. la ta-ma-szi
8. ki-me-er-tam
9. i-na la-hi-a-nim
10. szu-bi-lam
11. bi-il#-la-tam
12. szu-bi-lam


Primary publication: AbB 01, 102
Author(s): Kraus, Fritz R., 
Publication date: 1964
Secondary publication(s): Waterman, Leroy, BDHP (1916) 32
Collection: British Museum, London, UK
Museum no.: BM 080798
Accession no.: 1891-05-09 Bu, 0936
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: 
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 10180525 cdliadmin_johnsonjc
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P509376
Transliteration:
&P509376 = AbB 01, 102 
#atf: lang akk 
@tablet 
@obverse 
1. isz-tu _iti sig4-a_ 
2. asz-szum s,e-eh-he-ru-ti-ia i-ta-ap-lu-si-im 
3. u2-na-ah-hi-id-ka 
4. _u4 4(disz)-kam_ a-di i-na-an-na 
5. t,e4-em szi-ip-ra-tim ma-la i-pu-szu 
6. u3 _a-sza3 sze-gesz-i3_ sza i-pu-szu u2-ul ta-asz-pu-ra-am 
7. {disz}na-bi-{d}suen a-na babila2{ki} i-li-a-am#-ma 
8. t,e4-em-ka ri-qa2-am u2-ul ta-asz-pu-ra-am 
9. i-na-an-na na-bi-{d}suen 
10. a-na ma-ah-ri-ka at,-t,ar-dam 
11. it-ti-szu a-na _a-sza3_ ri-id-ma 
@reverse 
1. _a-sza3_ szi-ip-ra-tim ma-la i-pu-szu 
2. u3 _a-sza3 sze-gesz-i3_ sza i-pu-szu 
3. i-ta-ap-la-as2-ma 
4. i-na tup-pi2-ka pa-nam szu-ur2-szi-a-am-ma 
5. szu-up-ra-am 
6. lu-usz-pu-ra-ak-kum-ma 
7. _sze_-um a-na _szuku_ s,e-eh-he-ru-tim 
8. u3 _duh duru5_ a-na _sza3-gal gu4 hi-a_ li-in-na-di-in 
9. {disz}tak-la-ku-a-na-_{d}marduk_ 
10. it-ti na-bi-{d}suen a-na _babila2{ki}_ 
11. t,u2-ur-dam 

Primary publication: AbB 01, 118
Author(s): Kraus, Fritz R., 
Publication date: 1964
Secondary publication(s): JCS 14 (1960) 057
Collection: British Museum, London, UK
Museum no.: Todd 01
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: 
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 10180525 cdliadmin_johnsonjc
ATF source: 
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P509377
Transliteration:
&P509377 = AbB 01, 118
#atf: lang akk
@tablet
@obverse
1. i-nu-ma i-na _e2_ da-[...]
2. ma-ah-ri-ia ta-az-[...]
3. ki-ma _sze_ u3 _ku3-babbar_ la qe2-er-[ba-am-ma]
4. _duh-duru5 ud-du_ a-na _sza3-gal gu4-hi-a_-ia#
5. s,a-ma-da-am la e-lu-u2 aq-bi-kum-ma#
6. a-na 3(u) _gur duh-ud-du_ szu-bu-lim u2-na-ah-i-id-ka
7. u3 sza-la-szi-szu t,up-pa-ti-ia u2-sza-bi-la-ak#-kum#
8. _gu4-hi-a_ sza _iti szu-numun-a iti ne-ne-gar_ u3 _iti kin-{d}inanna_
9. _sza3-gal_ la i-ku-lu ba-al-t,u2-u2
10. a-na mi-nim ma-ru-usz-tam an-ni-tam te-pu-sza-an-ni
11. lu-u2 ta-al-li-kam u3-lu ta-asz-pu-ra-am
12. a-na a-wa-ti-ka u2-ul usz-ta-i
13. _sze_ u3 _ku3-babbar_ u2-ul qe2-er-ba-am-ma
@reverse
1. sa-bu-tam a-na-ad-di ta-[...]
2. _sze_ u3 _ku3-babbar_ ad-di-na-ak#-[kum-ma]
3. u2-ne-eh-[...]
4. 1(disz) _amar mu_ 3(disz) i-na i-ni-ia ta#-[...]
5. i-na _gu4-hi-a_-ia ta-as-su2-uq-ma a-na# [...]
6. te-el-qi2 a-na mi-na-a usz-ta-a-ak-kum
7. ka-bi-it-tam an-ni-tam te-pu-sza-an-ni
8. _{disz}{d}nanna-ibila-ma-an-sum_ a-na ma-ah-ri-ka
9. at,-t,a-ar-dam szum-ma 3(u) _gur duh-ud-du_
10. szum-ma 6(disz) _gin2 ku3-babbar_ i-di-in-szum
11. _gu4-hi-a_ li-sza-ak-szi-dam [...]
12. i-na la _sza3-gal_ la i-mu#-[tu]
13. qa2-ti-ia la tu-[...]


Primary publication: AbB 02, 045
Author(s): Frankena, Rintje
Publication date: nd
Secondary publication(s): BM guide 1908, p. 141; LIH 1, no. 47, pl. 81
Collection: British Museum, London, UK
Museum no.: BM 012868
Accession no.: 1896-03-26, 0060
Provenience: Kutalla (mod. Tell Sifr)
Excavation no.: 
Period: Early Old Babylonian (ca. 2000-1900 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: legal
CDLI comments: 
Catalogue source: 20171222 firth
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P507628
Transliteration:
&P507628 = AbB 02, 045 
#atf: lang akk 
@tablet 
@obverse 
1. a-na ra-bi-a-an _iri_ ku-ta-al-la{ki} 
3. qi2-bi2-ma 
4. um-ma {d}suen-i-din-nam-ma 
5. be-el a-wa-ti-szu sza {disz}na-wi-ir-tum 
7. a-na s,e-ri-ia 
8. t,u2-ur-dam 
$ blank space 
@reverse 
$ blank space 

Primary publication: AbB 03, 112
Author(s): Frankena, Rintje
Publication date: 1968
Secondary publication(s): 
Collection: de Liagre Böhl Collection, Netherlands Institute for the Near East, Leiden, Holland
Museum no.: LB 2154
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20150808 firth
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P481190
Transliteration:
&P481190 = AbB 03, 112 
#atf: lang akk 
@tablet 
@obverse 
1. a-na im-me-ri-ia 
2. qi2-bi2-ma 
3. um-ma nu#-ur2#-i3-li2-szu-ma 
4. ki-i-ba-ti-im 
5. sza e2-a-i-din#-nam# 
6. a-wa-si2-na gu-um-ra-ma 
7. szu-up-ra-nim 
@reverse 
1. an-ni-ki-a-am 
2. lu-um-hu-ur-szi-na-ti 
3. la te-e-gi4 
4. a-pu-tum 

Primary publication: AbB 03, 113
Author(s): Frankena, Rintje
Publication date: 1968
Secondary publication(s): 
Collection: de Liagre Böhl Collection, Netherlands Institute for the Near East, Leiden, Holland
Museum no.: LB 2149
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20150808 firth
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P481191
Transliteration:
&P481191 = AbB 03, 113 
#atf: lang akk 
@tablet 
@obverse 
1. a-wi-lam sza a-di _u4 2(u)-kam_ 
2. a-na e-le-e-em 
3. pa-ni-szu isz-ta-ak-[nu] 
4. a-wi-le-e szu-di-a-nim-ma 
5. it-ti-szu an-ni-ki-a-am 
6. lu-ud-bu-ub 
7. la ta-pa-at,-t,a-ra-nim-ma 
8. ma-na-ha-ti-ku-nu 
9. la tu-ha-la-qa2 
@reverse 
1. a-di _u4 2(u)-kam_ 
2. szu-ta-al-bi-ba-nim-ma 
3. _a-sza3_-lam szi-qi4-a 
4. a-ra-tam bi-ra 
5. u3 _sahar_ sza i-ka-sza-du-szu# 
6. e-ep-sza 
@seal 1 
1. x x [...] 
2. _dumu_ lu2-[...] 
3. ARAD {d}[...] 

Primary publication: AbB 03, 114
Author(s): Frankena, Rintje
Publication date: 1968
Secondary publication(s): 
Collection: de Liagre Böhl Collection, Netherlands Institute for the Near East, Leiden, Holland
Museum no.: LB 2005
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20150808 firth
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P481192
Transliteration:
&P481192 = AbB 03, 114 
#atf: lang akk 
@tablet 
@obverse 
$ beginning broken 
1'. [...] x x [...] 
2'. [...] x lu ba-al-t,a2-[ta] 
3'. [_dingir_ na-s,i]-ir-ka# [re]-esz#-ka a-na# da-mi-iq-tim# 
4'. [li]-ki-il# 
5'. a-na szu-ul-mi-ka asz-pu#-ra#-[am] 
6'. szu-lum-ka ma-har {d}[x u3] {d}[x lu da-ri] 
7'. szum#-ma# a-hi at-[ta ...] 
8'. ta-AD-DA-[...] 
9'. a-na pa-ni-ka# [...] 
10'. _a-sza3_ u2-ul e-ri#-[isz ...] 
11'. _in-nu_ u2-ul i-szu#-u2 
12'. [szum]-ma# la _in-nu_ la# ku#-ru#-ma-tu-ia 
13'. [x (x)] x-a-tum it-ta#-za-az-za i-mu-ut-ta 
14'. [...] x tup-pu# [x x] a-na# ma#-har a-[wi-le-e] 
$ rest broken 
@reverse 
$ beginning broken 
1'. i-na pu#-uh2#-ri i-na ma-har# a-wi#-[le-e] 
2'. [{disz}i]-bi-{d}en-lil2 {disz}pi4-{d}utu-ra-bi [(x)] 
3'. _di#-ku5-mesz u3 sipa#-mesz_ it#-ta-za-az-zu 
4'. ki-a-am iq-bi um#-ma szu#-u2-ma 
5'. [x (x)] x x _sanga_ {d}utu _a-sza3_ u3 _gu4_ 
6'. sza _1(asz) gu2-un ku3-babbar_ ma-ra-a-am# 
7'. a-na-ku a-na {d}suen-na-di#-in#-szu#-[mi] _masz2-szu-[gid2-gid2_] 
8'. a-na-ad-di-im-ma _1(asz) gu2-un# ku3-[babbar_] 
9'. {disz}{d}suen-na-di-in-szu-mi _masz2-szu-gid2-gid2_ 
10'. an-ni-tam i-na pu-uh2-ri iq-bi#-i 
11'. _ku3-babbar#_ i-szu-u2 ma-la szi-ma-ti-[szu] 
12'. [a-na] _ku3#-babbar_ na-da-nim ih-ta-du# 
13'. [x (x)] x-ma a-na ma-ah-ri#-ka# il-li-kam x x [(x) (x)] 
14'. [a-na] la#-ma-di-ka asz-pu#-ra-am 
15'. [...] x x x x x x-am t,a-ba-am 
$ rest broken 

Primary publication: AbB 03, 115
Author(s): Frankena, Rintje
Publication date: 1968
Secondary publication(s): 
Collection: de Liagre Böhl Collection, Netherlands Institute for the Near East, Leiden, Holland
Museum no.: LB 2374/1 + LB 2374/2
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: deed
CDLI comments: 
Catalogue source: 20090702 cdliadmin_tsouparopoulou
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 21198/zz0020h36c
Composite no.: 
Seal no.: 
CDLI no.: P389958
Transliteration:
&P389958 = AbB 03, 115 
#atf: lang akk 
@tablet 
@obverse 
$ beginning broken 
1'. [...] x 
2'. [...] x 
3'. [...] x 
4'. [...] x 
5'. [...] x 
6'. a-na# x x DA a-al-la-ak 
7'. _5(disz) ma-na {gesz}zu2 geszimmar_ 
@reverse 
1. szu-bi-lam 
2. u3 i-na ur-ra-am 
3. _gu4 hi-a_-szu-nu s,u2-ha-<ru>-u2 
4. li#-it-ru-nim 

Primary publication: AbB 03, 116
Author(s): Frankena, Rintje
Publication date: 1968
Secondary publication(s): 
Collection: de Liagre Böhl Collection, Netherlands Institute for the Near East, Leiden, Holland
Museum no.: LB 0789
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20090702 cdliadmin_tsouparopoulou
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 21198/zz0022c6r4
Composite no.: 
Seal no.: 
CDLI no.: P389256
Transliteration:
&P389256 = AbB 03, 116 
#atf: lang akk 
@tablet 
@obverse 
$ beginning broken 
1'. [...] x x [...] 
2'. e-pe-szum sza te-pu-sza-[am] 
3'. da-mi-iq# 
4'. uz-ni-ia li#-[x ...] 
5'. a-na-ku i-[x ...] 
$ rest broken 
@reverse 
$ beginning broken 
1'. x [...] 
2'. x [...] 
3'. x [...] 
$ rest broken 
@left 
1. [...] x sa3-bi-ti-[...] 
2. [...] i-di-in# [...] 

Primary publication: AbB 05, 001
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ad 607
Accession no.: 
Provenience: Adab (mod. Bismaya)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511027
Transliteration:
Primary publication: AbB 05, 002
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ad 608
Accession no.: 
Provenience: Adab (mod. Bismaya)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511028
Transliteration:
Primary publication: AbB 05, 003
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ad 609
Accession no.: 
Provenience: Adab (mod. Bismaya)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511029
Transliteration:
Primary publication: AbB 05, 004
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ad 610
Accession no.: 
Provenience: Adab (mod. Bismaya)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511030
Transliteration:
Primary publication: AbB 05, 005
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ad 611
Accession no.: 
Provenience: Adab (mod. Bismaya)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511031
Transliteration:
Primary publication: AbB 05, 006
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ad 612
Accession no.: 
Provenience: Adab (mod. Bismaya)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511032
Transliteration:
Primary publication: AbB 05, 007
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ad 613
Accession no.: 
Provenience: Adab (mod. Bismaya)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511033
Transliteration:
Primary publication: AbB 05, 008
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ad 614
Accession no.: 
Provenience: Adab (mod. Bismaya)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511034
Transliteration:
Primary publication: AbB 05, 009
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ad 615
Accession no.: 
Provenience: Adab (mod. Bismaya)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511035
Transliteration:
Primary publication: AbB 05, 010
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ad 616
Accession no.: 
Provenience: Adab (mod. Bismaya)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511036
Transliteration:
Primary publication: AbB 05, 011
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ad 617
Accession no.: 
Provenience: Adab (mod. Bismaya)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511037
Transliteration:
Primary publication: AbB 05, 012
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ad 618
Accession no.: 
Provenience: Adab (mod. Bismaya)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511038
Transliteration:
Primary publication: AbB 05, 013
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ad 619
Accession no.: 
Provenience: Adab (mod. Bismaya)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511039
Transliteration:
Primary publication: AbB 05, 014
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ad 620
Accession no.: 
Provenience: Adab (mod. Bismaya)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511040
Transliteration:
Primary publication: AbB 05, 015
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ad 621
Accession no.: 
Provenience: Adab (mod. Bismaya)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511041
Transliteration:
Primary publication: AbB 05, 016
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ad 622
Accession no.: 
Provenience: Adab (mod. Bismaya)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511042
Transliteration:
Primary publication: AbB 05, 017
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ad 623
Accession no.: 
Provenience: Adab (mod. Bismaya)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511043
Transliteration:
Primary publication: AbB 05, 018
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ad 624
Accession no.: 
Provenience: Adab (mod. Bismaya)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511044
Transliteration:
Primary publication: AbB 05, 019
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ad 625
Accession no.: 
Provenience: Adab (mod. Bismaya)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511045
Transliteration:
Primary publication: AbB 05, 020
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ad 626
Accession no.: 
Provenience: Adab (mod. Bismaya)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511046
Transliteration:
Primary publication: AbB 05, 021
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ad 627
Accession no.: 
Provenience: Adab (mod. Bismaya)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511047
Transliteration:
Primary publication: AbB 05, 022
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ad 628
Accession no.: 
Provenience: Adab (mod. Bismaya)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511048
Transliteration:
Primary publication: AbB 05, 023
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ad 629
Accession no.: 
Provenience: Adab (mod. Bismaya)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511049
Transliteration:
Primary publication: AbB 05, 024
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ad 630
Accession no.: 
Provenience: Adab (mod. Bismaya)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511050
Transliteration:
Primary publication: AbB 05, 025
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ad 631
Accession no.: 
Provenience: Adab (mod. Bismaya)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511051
Transliteration:
Primary publication: AbB 05, 026
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ad 632
Accession no.: 
Provenience: Adab (mod. Bismaya)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511052
Transliteration:
Primary publication: AbB 05, 027
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ad 633
Accession no.: 
Provenience: Adab (mod. Bismaya)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511053
Transliteration:
Primary publication: AbB 05, 028
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ad 634
Accession no.: 
Provenience: Adab (mod. Bismaya)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511054
Transliteration:
Primary publication: AbB 05, 029
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ad 635
Accession no.: 
Provenience: Adab (mod. Bismaya)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511055
Transliteration:
Primary publication: AbB 05, 030
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ad 636
Accession no.: 
Provenience: Adab (mod. Bismaya)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511056
Transliteration:
Primary publication: AbB 05, 031
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ad 637
Accession no.: 
Provenience: Adab (mod. Bismaya)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511057
Transliteration:
Primary publication: AbB 05, 032
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ad 638
Accession no.: 
Provenience: Adab (mod. Bismaya)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511058
Transliteration:
Primary publication: AbB 05, 033
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ad 639
Accession no.: 
Provenience: Adab (mod. Bismaya)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511059
Transliteration:
Primary publication: AbB 05, 034
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ad 640
Accession no.: 
Provenience: Adab (mod. Bismaya)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511060
Transliteration:
Primary publication: AbB 05, 035
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ad 641
Accession no.: 
Provenience: Adab (mod. Bismaya)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511061
Transliteration:
Primary publication: AbB 05, 036
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ad 642
Accession no.: 
Provenience: Adab (mod. Bismaya)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511062
Transliteration:
Primary publication: AbB 05, 037
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ad 643
Accession no.: 
Provenience: Adab (mod. Bismaya)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511063
Transliteration:
Primary publication: AbB 05, 038
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ad 644
Accession no.: 
Provenience: Adab (mod. Bismaya)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511064
Transliteration:
Primary publication: AbB 05, 039
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ad 645
Accession no.: 
Provenience: Adab (mod. Bismaya)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511065
Transliteration:
Primary publication: AbB 05, 040
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ad 646
Accession no.: 
Provenience: Adab (mod. Bismaya)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511066
Transliteration:
Primary publication: AbB 05, 041
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ad 647
Accession no.: 
Provenience: Adab (mod. Bismaya)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511067
Transliteration:
Primary publication: AbB 05, 042
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ad 648
Accession no.: 
Provenience: Adab (mod. Bismaya)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511068
Transliteration:
Primary publication: AbB 05, 043
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ad 649
Accession no.: 
Provenience: Adab (mod. Bismaya)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511069
Transliteration:
Primary publication: AbB 05, 044
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ad 650
Accession no.: 
Provenience: Adab (mod. Bismaya)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511070
Transliteration:
Primary publication: AbB 05, 045
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ad 651
Accession no.: 
Provenience: Adab (mod. Bismaya)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511071
Transliteration:
Primary publication: AbB 05, 046
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ad 652a
Accession no.: 
Provenience: Adab (mod. Bismaya)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511072
Transliteration:
Primary publication: AbB 05, 047
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ad 652b
Accession no.: 
Provenience: Adab (mod. Bismaya)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511073
Transliteration:
Primary publication: AbB 05, 048
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ad 652c
Accession no.: 
Provenience: Adab (mod. Bismaya)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511074
Transliteration:
Primary publication: AbB 05, 049
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ad 652d
Accession no.: 
Provenience: Adab (mod. Bismaya)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511075
Transliteration:
Primary publication: AbB 05, 050
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ad 652e
Accession no.: 
Provenience: Adab (mod. Bismaya)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511076
Transliteration:
Primary publication: AbB 05, 051
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ad 652f
Accession no.: 
Provenience: Adab (mod. Bismaya)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511077
Transliteration:
Primary publication: AbB 05, 052
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ad 652g
Accession no.: 
Provenience: Adab (mod. Bismaya)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511078
Transliteration:
Primary publication: AbB 05, 053
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ad 652h
Accession no.: 
Provenience: Adab (mod. Bismaya)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511079
Transliteration:
Primary publication: AbB 05, 054
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ad 652i
Accession no.: 
Provenience: Adab (mod. Bismaya)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511080
Transliteration:
Primary publication: AbB 05, 055
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ad 652j
Accession no.: 
Provenience: Adab (mod. Bismaya)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511081
Transliteration:
Primary publication: AbB 05, 056
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ad 652k
Accession no.: 
Provenience: Adab (mod. Bismaya)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511082
Transliteration:
Primary publication: AbB 05, 057
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ad 652l
Accession no.: 
Provenience: Adab (mod. Bismaya)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511083
Transliteration:
Primary publication: AbB 05, 134
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ki 1097
Accession no.: 
Provenience: Kish (mod. Tell Uhaimir)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511084
Transliteration:
Primary publication: AbB 05, 138
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist L 01487
Accession no.: 
Provenience: Girsu (mod. Tello)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511085
Transliteration:
Primary publication: AbB 05, 141
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist L 10935
Accession no.: 
Provenience: Girsu (mod. Tello)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511087
Transliteration:
Primary publication: AbB 05, 142
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist L 10936
Accession no.: 
Provenience: Girsu (mod. Tello)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511088
Transliteration:
Primary publication: AbB 05, 143
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist L 10937
Accession no.: 
Provenience: Girsu (mod. Tello)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511089
Transliteration:
Primary publication: AbB 05, 144
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist L 10938
Accession no.: 
Provenience: Girsu (mod. Tello)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511090
Transliteration:
Primary publication: AbB 05, 145
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist L 39393
Accession no.: 
Provenience: Girsu (mod. Tello)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511091
Transliteration:
Primary publication: AbB 05, 146
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist L 39395
Accession no.: 
Provenience: Girsu (mod. Tello)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511092
Transliteration:
Primary publication: AbB 05, 147
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist L 39402
Accession no.: 
Provenience: Girsu (mod. Tello)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511093
Transliteration:
Primary publication: AbB 05, 148
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist L 39403
Accession no.: 
Provenience: Girsu (mod. Tello)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511094
Transliteration:
Primary publication: AbB 05, 149
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist L 39405
Accession no.: 
Provenience: Girsu (mod. Tello)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511095
Transliteration:
Primary publication: AbB 05, 150
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist L 39414
Accession no.: 
Provenience: Girsu (mod. Tello)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511096
Transliteration:
Primary publication: AbB 05, 151
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist L 39415
Accession no.: 
Provenience: Girsu (mod. Tello)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511097
Transliteration:
Primary publication: AbB 05, 152
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist L 39417
Accession no.: 
Provenience: Girsu (mod. Tello)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511098
Transliteration:
Primary publication: AbB 05, 153
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist L 39418
Accession no.: 
Provenience: Girsu (mod. Tello)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511099
Transliteration:
Primary publication: AbB 05, 154
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist L 39419
Accession no.: 
Provenience: Girsu (mod. Tello)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511100
Transliteration:
Primary publication: AbB 05, 155
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist L 39427
Accession no.: 
Provenience: Girsu (mod. Tello)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511101
Transliteration:
Primary publication: AbB 05, 156
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ni 00395
Accession no.: 
Provenience: Nippur (mod. Nuffar)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511102
Transliteration:
Primary publication: AbB 05, 157
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ni 00634
Accession no.: 
Provenience: Nippur (mod. Nuffar)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511103
Transliteration:
Primary publication: AbB 05, 158
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ni 00683
Accession no.: 
Provenience: Nippur (mod. Nuffar)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511104
Transliteration:
Primary publication: AbB 05, 159
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ni 00906 + Ist Ni 01161
Accession no.: 
Provenience: Nippur (mod. Nuffar)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511105
Transliteration:
Primary publication: AbB 05, 160
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ni 00910
Accession no.: 
Provenience: Nippur (mod. Nuffar)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511106
Transliteration:
Primary publication: AbB 05, 161
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ni 00925
Accession no.: 
Provenience: Nippur (mod. Nuffar)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511107
Transliteration:
Primary publication: AbB 05, 162
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ni 01133
Accession no.: 
Provenience: Nippur (mod. Nuffar)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511108
Transliteration:
Primary publication: AbB 05, 163
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ni 01202
Accession no.: 
Provenience: Nippur (mod. Nuffar)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511109
Transliteration:
Primary publication: AbB 05, 164
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ni 01295
Accession no.: 
Provenience: Nippur (mod. Nuffar)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511110
Transliteration:
Primary publication: AbB 05, 165
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ni 01330 + Ist Ni 01338
Accession no.: 
Provenience: Nippur (mod. Nuffar)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511111
Transliteration:
Primary publication: AbB 05, 166
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ni 01380
Accession no.: 
Provenience: Nippur (mod. Nuffar)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511112
Transliteration:
Primary publication: AbB 05, 167
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ni 01567
Accession no.: 
Provenience: Nippur (mod. Nuffar)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511113
Transliteration:
Primary publication: AbB 05, 168
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ni 02218
Accession no.: 
Provenience: Nippur (mod. Nuffar)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511114
Transliteration:
Primary publication: AbB 05, 169
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ni 02325
Accession no.: 
Provenience: Nippur (mod. Nuffar)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511115
Transliteration:
Primary publication: AbB 05, 170
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ni 02391
Accession no.: 
Provenience: Nippur (mod. Nuffar)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511116
Transliteration:
Primary publication: AbB 05, 171
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ni 02420
Accession no.: 
Provenience: Nippur (mod. Nuffar)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511117
Transliteration:
Primary publication: AbB 05, 172
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ni 02491
Accession no.: 
Provenience: Nippur (mod. Nuffar)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511118
Transliteration:
Primary publication: AbB 05, 173
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ni 02609
Accession no.: 
Provenience: Nippur (mod. Nuffar)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511119
Transliteration:
Primary publication: AbB 05, 174
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ni 02699
Accession no.: 
Provenience: Nippur (mod. Nuffar)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511120
Transliteration:
Primary publication: AbB 05, 175
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ni 02772
Accession no.: 
Provenience: Nippur (mod. Nuffar)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511121
Transliteration:
Primary publication: AbB 05, 176
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ni 02884
Accession no.: 
Provenience: Nippur (mod. Nuffar)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511122
Transliteration:
Primary publication: AbB 05, 177
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ni 02995
Accession no.: 
Provenience: Nippur (mod. Nuffar)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511123
Transliteration:
Primary publication: AbB 05, 178
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ni 03053
Accession no.: 
Provenience: Nippur (mod. Nuffar)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511124
Transliteration:
Primary publication: AbB 05, 179
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ni 03086
Accession no.: 
Provenience: Nippur (mod. Nuffar)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511125
Transliteration:
Primary publication: AbB 05, 180
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ni 03165
Accession no.: 
Provenience: Nippur (mod. Nuffar)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511126
Transliteration:
Primary publication: AbB 05, 181
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ni 13001
Accession no.: 
Provenience: Nippur (mod. Nuffar)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511127
Transliteration:
Primary publication: AbB 05, 182
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ni 13002
Accession no.: 
Provenience: Nippur (mod. Nuffar)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511128
Transliteration:
Primary publication: AbB 05, 183
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ni 13003
Accession no.: 
Provenience: Nippur (mod. Nuffar)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511129
Transliteration:
Primary publication: AbB 05, 184
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ni 13004
Accession no.: 
Provenience: Nippur (mod. Nuffar)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511130
Transliteration:
Primary publication: AbB 05, 185
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ni 13005
Accession no.: 
Provenience: Nippur (mod. Nuffar)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511131
Transliteration:
Primary publication: AbB 05, 186
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ni 13006
Accession no.: 
Provenience: Nippur (mod. Nuffar)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511132
Transliteration:
Primary publication: AbB 05, 187
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ni 13007
Accession no.: 
Provenience: Nippur (mod. Nuffar)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511133
Transliteration:
Primary publication: AbB 05, 188
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ni 13008
Accession no.: 
Provenience: Nippur (mod. Nuffar)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511134
Transliteration:
Primary publication: AbB 05, 189
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ni 13009
Accession no.: 
Provenience: Nippur (mod. Nuffar)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511135
Transliteration:
Primary publication: AbB 05, 190
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ni 13010
Accession no.: 
Provenience: Nippur (mod. Nuffar)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511136
Transliteration:
Primary publication: AbB 05, 191
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ni 13011
Accession no.: 
Provenience: Nippur (mod. Nuffar)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511137
Transliteration:
Primary publication: AbB 05, 192
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ni 13012
Accession no.: 
Provenience: Nippur (mod. Nuffar)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511138
Transliteration:
Primary publication: AbB 05, 193
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ni 13013
Accession no.: 
Provenience: Nippur (mod. Nuffar)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511139
Transliteration:
Primary publication: AbB 05, 194
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ni 13014
Accession no.: 
Provenience: Nippur (mod. Nuffar)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511140
Transliteration:
Primary publication: AbB 05, 195
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ni 13015
Accession no.: 
Provenience: Nippur (mod. Nuffar)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511141
Transliteration:
Primary publication: AbB 05, 196
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ni 13016
Accession no.: 
Provenience: Nippur (mod. Nuffar)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511142
Transliteration:
Primary publication: AbB 05, 197
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ni 13017
Accession no.: 
Provenience: Nippur (mod. Nuffar)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511143
Transliteration:
Primary publication: AbB 05, 198
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ni 13018
Accession no.: 
Provenience: Nippur (mod. Nuffar)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511144
Transliteration:
Primary publication: AbB 05, 199
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ni 13019
Accession no.: 
Provenience: Nippur (mod. Nuffar)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511145
Transliteration:
Primary publication: AbB 05, 200
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ni 13020
Accession no.: 
Provenience: Nippur (mod. Nuffar)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511146
Transliteration:
Primary publication: AbB 05, 201
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ni 13021
Accession no.: 
Provenience: Nippur (mod. Nuffar)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511147
Transliteration:
Primary publication: AbB 05, 202
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ni 13022
Accession no.: 
Provenience: Nippur (mod. Nuffar)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511148
Transliteration:
Primary publication: AbB 05, 203
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ni 13023
Accession no.: 
Provenience: Nippur (mod. Nuffar)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511149
Transliteration:
Primary publication: AbB 05, 204
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ni 13024
Accession no.: 
Provenience: Nippur (mod. Nuffar)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511150
Transliteration:
Primary publication: AbB 05, 205
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ni 13640 + Ist Ni 13651
Accession no.: 
Provenience: Nippur (mod. Nuffar)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511151
Transliteration:
Primary publication: AbB 05, 206
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Ni 13642
Accession no.: 
Provenience: Nippur (mod. Nuffar)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511152
Transliteration:
Primary publication: AbB 05, 208
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0038
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511153
Transliteration:
Primary publication: AbB 05, 209
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0039
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511154
Transliteration:
Primary publication: AbB 05, 211
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0050
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511155
Transliteration:
Primary publication: AbB 05, 213
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0086
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511156
Transliteration:
Primary publication: AbB 05, 214
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0143
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511157
Transliteration:
Primary publication: AbB 05, 215
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0147
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511158
Transliteration:
Primary publication: AbB 05, 216
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0149
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511159
Transliteration:
Primary publication: AbB 05, 217
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0150
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511160
Transliteration:
Primary publication: AbB 05, 218
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0156
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511161
Transliteration:
Primary publication: AbB 05, 219
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0164
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511162
Transliteration:
Primary publication: AbB 05, 220
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0192
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511163
Transliteration:
Primary publication: AbB 05, 221
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0200
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511164
Transliteration:
Primary publication: AbB 05, 222
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0243
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511165
Transliteration:
Primary publication: AbB 05, 223
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0256
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511166
Transliteration:
Primary publication: AbB 05, 224
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0273
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511167
Transliteration:
Primary publication: AbB 05, 225
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0274
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511168
Transliteration:
Primary publication: AbB 05, 226
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0292
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511169
Transliteration:
Primary publication: AbB 05, 227
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0295
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511170
Transliteration:
Primary publication: AbB 05, 228
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0296
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511171
Transliteration:
Primary publication: AbB 05, 229
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0302
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511172
Transliteration:
Primary publication: AbB 05, 230
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0316
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511173
Transliteration:
Primary publication: AbB 05, 231
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0332
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511174
Transliteration:
Primary publication: AbB 05, 232
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0340
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511175
Transliteration:
Primary publication: AbB 05, 233
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0343
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511176
Transliteration:
Primary publication: AbB 05, 234
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0353
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511177
Transliteration:
Primary publication: AbB 05, 235
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0354
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511178
Transliteration:
Primary publication: AbB 05, 236
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0358
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511179
Transliteration:
Primary publication: AbB 05, 237
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0370
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511180
Transliteration:
Primary publication: AbB 05, 238
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0373
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511181
Transliteration:
Primary publication: AbB 05, 239
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0374
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511182
Transliteration:
Primary publication: AbB 05, 240
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0375
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511183
Transliteration:
Primary publication: AbB 05, 241
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0376
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511184
Transliteration:
Primary publication: AbB 05, 242
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0377
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511185
Transliteration:
Primary publication: AbB 05, 243
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0379
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511186
Transliteration:
Primary publication: AbB 05, 244
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0396
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511187
Transliteration:
Primary publication: AbB 05, 245
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0406
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511188
Transliteration:
Primary publication: AbB 05, 246
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0410
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511189
Transliteration:
Primary publication: AbB 05, 247
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0412
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511190
Transliteration:
Primary publication: AbB 05, 248
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0457
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511191
Transliteration:
Primary publication: AbB 05, 249
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0487
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511192
Transliteration:
Primary publication: AbB 05, 250
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0539
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511193
Transliteration:
Primary publication: AbB 05, 251
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0547
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511194
Transliteration:
Primary publication: AbB 05, 252
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0555
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511195
Transliteration:
Primary publication: AbB 05, 253
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0561
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511196
Transliteration:
Primary publication: AbB 05, 254
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0566
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511197
Transliteration:
Primary publication: AbB 05, 255
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0567
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511198
Transliteration:
Primary publication: AbB 05, 256
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0576
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511199
Transliteration:
Primary publication: AbB 05, 257
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0577
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511200
Transliteration:
Primary publication: AbB 05, 258
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0586
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511201
Transliteration:
Primary publication: AbB 05, 259
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0594
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511202
Transliteration:
Primary publication: AbB 05, 260
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0619
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511203
Transliteration:
Primary publication: AbB 05, 261
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0628
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511204
Transliteration:
Primary publication: AbB 05, 262
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0629
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511205
Transliteration:
Primary publication: AbB 05, 263
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0630
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511206
Transliteration:
Primary publication: AbB 05, 264
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0635
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511207
Transliteration:
Primary publication: AbB 05, 265
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0637
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511208
Transliteration:
Primary publication: AbB 05, 266
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0707
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511209
Transliteration:
Primary publication: AbB 05, 267
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0750
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511210
Transliteration:
Primary publication: AbB 05, 268
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0790
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511211
Transliteration:
Primary publication: AbB 05, 269
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0793
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511212
Transliteration:
Primary publication: AbB 05, 270
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0826
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511213
Transliteration:
Primary publication: AbB 05, 271
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0844
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511214
Transliteration:
Primary publication: AbB 05, 272
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0845
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511215
Transliteration:
Primary publication: AbB 05, 273
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0872
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511216
Transliteration:
Primary publication: AbB 05, 274
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0875
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511217
Transliteration:
Primary publication: AbB 05, 275
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0878
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511218
Transliteration:
Primary publication: AbB 05, 276
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0889
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511219
Transliteration:
Primary publication: AbB 05, 277
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0890
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511220
Transliteration:
Primary publication: AbB 05, 278
Author(s): Kraus, Fritz R.
Publication date: 1972
Secondary publication(s): 
Collection: Arkeoloji Müzeleri, Istanbul, Turkey
Museum no.: Ist Si 0897
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180615 cdliadmin_johnsonjc
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P511221
Transliteration:
Primary publication: AbB 09, 130
Author(s): Stol, Marten
Publication date: 1991
Secondary publication(s): 
Collection: private: Adolph Schrijver, New York
Museum no.: Schrijver 119
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20190219 page-perron_johnson
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P513514
Transliteration:
Primary publication: AbB 10, 030
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: John Rylands Library, University of Manchester, Manchester, UK
Museum no.: JRL 0914
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20120702 cdliadmin_wagensonner
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002csxd6
Composite no.: 
Seal no.: 
CDLI no.: P430824
Transliteration:
Primary publication: AbB 10, 031
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: John Rylands Library, University of Manchester, Manchester, UK
Museum no.: JRL 0915
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20120702 cdliadmin_wagensonner
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002csxfq
Composite no.: 
Seal no.: 
CDLI no.: P430825
Transliteration:
Primary publication: AbB 10, 032
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: John Rylands Library, University of Manchester, Manchester, UK
Museum no.: JRL 0916
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20120702 cdliadmin_wagensonner
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002csxhr
Composite no.: 
Seal no.: 
CDLI no.: P430827
Transliteration:
Primary publication: AbB 10, 033
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: John Rylands Library, University of Manchester, Manchester, UK
Museum no.: JRL 0917
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20120702 cdliadmin_wagensonner
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002csxj8
Composite no.: 
Seal no.: 
CDLI no.: P430828
Transliteration:
Primary publication: AbB 10, 034
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: John Rylands Library, University of Manchester, Manchester, UK
Museum no.: JRL 0918
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20120702 cdliadmin_wagensonner
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002csxks
Composite no.: 
Seal no.: 
CDLI no.: P430829
Transliteration:
Primary publication: AbB 10, 035
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: John Rylands Library, University of Manchester, Manchester, UK
Museum no.: JRL 0919
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20120702 cdliadmin_wagensonner
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002csxm9
Composite no.: 
Seal no.: 
CDLI no.: P430830
Transliteration:
Primary publication: AbB 10, 036
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: John Rylands Library, University of Manchester, Manchester, UK
Museum no.: JRL 0920
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20120702 cdliadmin_wagensonner
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002csxnt
Composite no.: 
Seal no.: 
CDLI no.: P430831
Transliteration:
Primary publication: AbB 10, 037
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: John Rylands Library, University of Manchester, Manchester, UK
Museum no.: JRL 0921
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20120702 cdliadmin_wagensonner
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002csxpb
Composite no.: 
Seal no.: 
CDLI no.: P430832
Transliteration:
Primary publication: AbB 10, 038
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: John Rylands Library, University of Manchester, Manchester, UK
Museum no.: JRL 0922
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20120702 cdliadmin_wagensonner
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002csxqv
Composite no.: 
Seal no.: 
CDLI no.: P430833
Transliteration:
Primary publication: AbB 10, 039
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: John Rylands Library, University of Manchester, Manchester, UK
Museum no.: JRL 0923
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20120702 cdliadmin_wagensonner
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002csxrc
Composite no.: 
Seal no.: 
CDLI no.: P430834
Transliteration:
Primary publication: AbB 10, 040
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: John Rylands Library, University of Manchester, Manchester, UK
Museum no.: JRL 0924
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20120702 cdliadmin_wagensonner
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002csxsw
Composite no.: 
Seal no.: 
CDLI no.: P430835
Transliteration:
Primary publication: AbB 10, 041
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: John Rylands Library, University of Manchester, Manchester, UK
Museum no.: JRL 0926
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20120702 cdliadmin_wagensonner
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002csxtd
Composite no.: 
Seal no.: 
CDLI no.: P430836
Transliteration:
Primary publication: AbB 10, 042
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: John Rylands Library, University of Manchester, Manchester, UK
Museum no.: JRL 0927
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20120702 cdliadmin_wagensonner
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002csxvx
Composite no.: 
Seal no.: 
CDLI no.: P430837
Transliteration:
Primary publication: AbB 10, 043
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: John Rylands Library, University of Manchester, Manchester, UK
Museum no.: JRL 0928
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20120702 cdliadmin_wagensonner
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002csxwf
Composite no.: 
Seal no.: 
CDLI no.: P430838
Transliteration:
Primary publication: AbB 10, 044
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: John Rylands Library, University of Manchester, Manchester, UK
Museum no.: JRL 0929
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20120702 cdliadmin_wagensonner
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002csxxz
Composite no.: 
Seal no.: 
CDLI no.: P430839
Transliteration:
Primary publication: AbB 10, 045
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: John Rylands Library, University of Manchester, Manchester, UK
Museum no.: JRL 1069
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20120702 cdliadmin_wagensonner
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002ct1d3
Composite no.: 
Seal no.: 
CDLI no.: P430878
Transliteration:
Primary publication: AbB 10, 046
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: John Rylands Library, University of Manchester, Manchester, UK
Museum no.: JRL 1070
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20120702 cdliadmin_wagensonner
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002ct1fm
Composite no.: 
Seal no.: 
CDLI no.: P430879
Transliteration:
Primary publication: AbB 10, 047
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: John Rylands Library, University of Manchester, Manchester, UK
Museum no.: JRL 1020
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20120702 cdliadmin_wagensonner
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002csz10
Composite no.: 
Seal no.: 
CDLI no.: P430842
Transliteration:
Primary publication: AbB 10, 048
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: John Rylands Library, University of Manchester, Manchester, UK
Museum no.: JRL 1043
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20120702 cdliadmin_wagensonner
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002ct02f
Composite no.: 
Seal no.: 
CDLI no.: P430855
Transliteration:
Primary publication: AbB 10, 049
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: John Rylands Library, University of Manchester, Manchester, UK
Museum no.: JRL 0915bis
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20120702 cdliadmin_wagensonner
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002csxg7
Composite no.: 
Seal no.: 
CDLI no.: P430826
Transliteration:
Primary publication: AbB 10, 140
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: Fitzwilliam Museum, University of Cambridge, Cambridge, UK
Museum no.: E.066-1904
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20130124 cdliadmin_wagensonner
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002g0q9p
Composite no.: 
Seal no.: 
CDLI no.: P448691
Transliteration:
Primary publication: AbB 10, 143
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: Fitzwilliam Museum, University of Cambridge, Cambridge, UK
Museum no.: E.081-1904
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20130124 cdliadmin_wagensonner
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002g0q85
Composite no.: 
Seal no.: 
CDLI no.: P448690
Transliteration:
Primary publication: AbB 10, 144
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: Fitzwilliam Museum, University of Cambridge, Cambridge, UK
Museum no.: E.042-1946
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20130124 cdliadmin_wagensonner
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002g0qcq
Composite no.: 
Seal no.: 
CDLI no.: P448693
Transliteration:
Primary publication: AbB 10, 150
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: Chester Beatty Library, Dublin, Ireland
Museum no.: CBL CT 123
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: Ammi-saduqa.21.12.15
Object type: 
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20140902 wagensonner
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P469474
Transliteration:
Primary publication: AbB 10, 151
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): C. B. F. Walker, JCS 30 (1978), 249 H
Collection: Chester Beatty Library, Dublin, Ireland
Museum no.: CBL CT 124
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: 
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20140902 wagensonner
ATF source: no atf
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P469475
Transliteration:
Primary publication: AbB 10, 169
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): Deonna, Waldemar, Genava 17 (1939) 033
Collection: Musée d’Art et d’Histoire, Geneva, Switzerland
Museum no.: MAH 15868
Accession no.: 
Provenience: uncertain (mod. uncertain)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20111102 cdliadmin_pagé-perron
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002b7n12
Composite no.: 
Seal no.: 
CDLI no.: P423856
Transliteration:
Primary publication: AbB 10, 170
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: Musée d’Art et d’Histoire, Geneva, Switzerland
Museum no.: MAH 15883
Accession no.: 
Provenience: uncertain (mod. uncertain)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20111102 cdliadmin_pagé-perron
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002b7p43
Composite no.: 
Seal no.: 
CDLI no.: P423866
Transliteration:
Primary publication: AbB 10, 171
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: Musée d’Art et d’Histoire, Geneva, Switzerland
Museum no.: MAH 15891
Accession no.: 
Provenience: uncertain (mod. uncertain)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20111102 cdliadmin_pagé-perron
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002b7pd7
Composite no.: 
Seal no.: 
CDLI no.: P423874
Transliteration:
Primary publication: AbB 10, 172
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: Musée d’Art et d’Histoire, Geneva, Switzerland
Museum no.: MAH 15893
Accession no.: 
Provenience: uncertain (mod. uncertain)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20111102 cdliadmin_pagé-perron
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002b7pg8
Composite no.: 
Seal no.: 
CDLI no.: P423876
Transliteration:
Primary publication: AbB 10, 173
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: Musée d’Art et d’Histoire, Geneva, Switzerland
Museum no.: MAH 15906
Accession no.: 
Provenience: uncertain (mod. uncertain)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20111102 cdliadmin_pagé-perron
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002b7qmt
Composite no.: 
Seal no.: 
CDLI no.: P423886
Transliteration:
Primary publication: AbB 10, 174
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: Musée d’Art et d’Histoire, Geneva, Switzerland
Museum no.: MAH 15908
Accession no.: 
Provenience: uncertain (mod. uncertain)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20111102 cdliadmin_pagé-perron
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002b7qpv
Composite no.: 
Seal no.: 
CDLI no.: P423888
Transliteration:
Primary publication: AbB 10, 175
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: Musée d’Art et d’Histoire, Geneva, Switzerland
Museum no.: MAH 15910
Accession no.: 
Provenience: uncertain (mod. uncertain)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20111102 cdliadmin_pagé-perron
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002b7qrw
Composite no.: 
Seal no.: 
CDLI no.: P423890
Transliteration:
Primary publication: AbB 10, 176
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: Musée d’Art et d’Histoire, Geneva, Switzerland
Museum no.: MAH 15911
Accession no.: 
Provenience: uncertain (mod. uncertain)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20111102 cdliadmin_pagé-perron
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002b7qsd
Composite no.: 
Seal no.: 
CDLI no.: P423891
Transliteration:
Primary publication: AbB 10, 177
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: Musée d’Art et d’Histoire, Geneva, Switzerland
Museum no.: MAH 15928
Accession no.: 
Provenience: uncertain (mod. uncertain)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20111102 cdliadmin_pagé-perron
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002b7r84
Composite no.: 
Seal no.: 
CDLI no.: P423905
Transliteration:
Primary publication: AbB 10, 178
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: Musée d’Art et d’Histoire, Geneva, Switzerland
Museum no.: MAH 15932
Accession no.: 
Provenience: uncertain (mod. uncertain)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20111102 cdliadmin_pagé-perron
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002b7s52
Composite no.: 
Seal no.: 
CDLI no.: P423909
Transliteration:
Primary publication: AbB 10, 179
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: Musée d’Art et d’Histoire, Geneva, Switzerland
Museum no.: MAH 15933
Accession no.: 
Provenience: Sippar-Yahrurum (mod. Tell Abu Habbah)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: Abi-Eshuh.00.00.00
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20111102 cdliadmin_pagé-perron
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002b7s6k
Composite no.: 
Seal no.: 
CDLI no.: P423910
Transliteration:
Primary publication: AbB 10, 180
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: Musée d’Art et d’Histoire, Geneva, Switzerland
Museum no.: MAH 15939
Accession no.: 
Provenience: uncertain (mod. uncertain)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20111102 cdliadmin_pagé-perron
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002b7sdp
Composite no.: 
Seal no.: 
CDLI no.: P423916
Transliteration:
Primary publication: AbB 10, 181
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: Musée d’Art et d’Histoire, Geneva, Switzerland
Museum no.: MAH 15943
Accession no.: 
Provenience: uncertain (mod. uncertain)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20111102 cdliadmin_pagé-perron
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002b7sjr
Composite no.: 
Seal no.: 
CDLI no.: P423920
Transliteration:
Primary publication: AbB 10, 182
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: Musée d’Art et d’Histoire, Geneva, Switzerland
Museum no.: MAH 15952
Accession no.: 
Provenience: uncertain (mod. uncertain)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20111102 cdliadmin_pagé-perron
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002b7srv
Composite no.: 
Seal no.: 
CDLI no.: P423926
Transliteration:
Primary publication: AbB 10, 183
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: Musée d’Art et d’Histoire, Geneva, Switzerland
Museum no.: MAH 15966
Accession no.: 
Provenience: uncertain (mod. uncertain)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20111102 cdliadmin_pagé-perron
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002b7tvw
Composite no.: 
Seal no.: 
CDLI no.: P423935
Transliteration:
Primary publication: AbB 10, 184
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: Musée d’Art et d’Histoire, Geneva, Switzerland
Museum no.: MAH 15967
Accession no.: 
Provenience: uncertain (mod. uncertain)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20111102 cdliadmin_pagé-perron
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002b7twd
Composite no.: 
Seal no.: 
CDLI no.: P423936
Transliteration:
Primary publication: AbB 10, 185
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: Musée d’Art et d’Histoire, Geneva, Switzerland
Museum no.: MAH 15981
Accession no.: 
Provenience: uncertain (mod. uncertain)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20111102 cdliadmin_pagé-perron
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002b7v93
Composite no.: 
Seal no.: 
CDLI no.: P423948
Transliteration:
Primary publication: AbB 10, 186
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: Musée d’Art et d’Histoire, Geneva, Switzerland
Museum no.: MAH 15984
Accession no.: 
Provenience: uncertain (mod. uncertain)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20111102 cdliadmin_pagé-perron
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002b74q5
Composite no.: 
Seal no.: 
CDLI no.: P423951
Transliteration:
Primary publication: AbB 10, 187
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: Musée d’Art et d’Histoire, Geneva, Switzerland
Museum no.: MAH 15988
Accession no.: 
Provenience: uncertain (mod. uncertain)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20111102 cdliadmin_pagé-perron
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002b74v7
Composite no.: 
Seal no.: 
CDLI no.: P423955
Transliteration:
Primary publication: AbB 10, 188
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: Musée d’Art et d’Histoire, Geneva, Switzerland
Museum no.: MAH 16008
Accession no.: 
Provenience: uncertain (mod. uncertain)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20111102 cdliadmin_pagé-perron
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002b75bz
Composite no.: 
Seal no.: 
CDLI no.: P423969
Transliteration:
Primary publication: AbB 10, 189
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: Musée d’Art et d’Histoire, Geneva, Switzerland
Museum no.: MAH 16012
Accession no.: 
Provenience: uncertain (mod. uncertain)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20111102 cdliadmin_pagé-perron
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002b765v
Composite no.: 
Seal no.: 
CDLI no.: P423973
Transliteration:
Primary publication: AbB 10, 190
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: Musée d’Art et d’Histoire, Geneva, Switzerland
Museum no.: MAH 16013
Accession no.: 
Provenience: uncertain (mod. uncertain)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20111102 cdliadmin_pagé-perron
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002b766c
Composite no.: 
Seal no.: 
CDLI no.: P423974
Transliteration:
Primary publication: AbB 10, 191
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: Musée d’Art et d’Histoire, Geneva, Switzerland
Museum no.: MAH 16039
Accession no.: 
Provenience: uncertain (mod. uncertain)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20111102 cdliadmin_pagé-perron
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002b76q4
Composite no.: 
Seal no.: 
CDLI no.: P423989
Transliteration:
Primary publication: AbB 10, 192
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: Musée d’Art et d’Histoire, Geneva, Switzerland
Museum no.: MAH 16044
Accession no.: 
Provenience: uncertain (mod. uncertain)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20111102 cdliadmin_pagé-perron
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002b77hh
Composite no.: 
Seal no.: 
CDLI no.: P423994
Transliteration:
Primary publication: AbB 10, 193
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: Musée d’Art et d’Histoire, Geneva, Switzerland
Museum no.: MAH 16045
Accession no.: 
Provenience: uncertain (mod. uncertain)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20111102 cdliadmin_pagé-perron
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002b77j1
Composite no.: 
Seal no.: 
CDLI no.: P423995
Transliteration:
Primary publication: AbB 10, 194
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: Musée d’Art et d’Histoire, Geneva, Switzerland
Museum no.: MAH 16049
Accession no.: 
Provenience: uncertain (mod. uncertain)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20111102 cdliadmin_pagé-perron
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002b77p3
Composite no.: 
Seal no.: 
CDLI no.: P423999
Transliteration:
Primary publication: AbB 10, 195
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: Musée d’Art et d’Histoire, Geneva, Switzerland
Museum no.: MAH 16051
Accession no.: 
Provenience: uncertain (mod. uncertain)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20111102 cdliadmin_pagé-perron
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002b77qm
Composite no.: 
Seal no.: 
CDLI no.: P424000
Transliteration:
Primary publication: AbB 10, 196
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: Musée d’Art et d’Histoire, Geneva, Switzerland
Museum no.: MAH 16075
Accession no.: 
Provenience: uncertain (mod. uncertain)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20111102 cdliadmin_pagé-perron
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002b788c
Composite no.: 
Seal no.: 
CDLI no.: P424016
Transliteration:
Primary publication: AbB 10, 197
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: Musée d’Art et d’Histoire, Geneva, Switzerland
Museum no.: MAH 16077
Accession no.: 
Provenience: uncertain (mod. uncertain)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20111102 cdliadmin_pagé-perron
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002b78wp
Composite no.: 
Seal no.: 
CDLI no.: P424018
Transliteration:
Primary publication: AbB 10, 198
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: Musée d’Art et d’Histoire, Geneva, Switzerland
Museum no.: MAH 16168
Accession no.: 
Provenience: uncertain (mod. uncertain)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20111102 cdliadmin_pagé-perron
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002b7bwn
Composite no.: 
Seal no.: 
CDLI no.: P424076
Transliteration:
Primary publication: AbB 10, 200
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: Musée d’Art et d’Histoire, Geneva, Switzerland
Museum no.: MAH 16171
Accession no.: 
Provenience: uncertain (mod. uncertain)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20111102 cdliadmin_pagé-perron
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002b7bx5
Composite no.: 
Seal no.: 
CDLI no.: P424077
Transliteration:
Primary publication: AbB 10, 201
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: Musée d’Art et d’Histoire, Geneva, Switzerland
Museum no.: MAH 16178 + MAH 16196 + MAH 16286
Accession no.: 
Provenience: uncertain (mod. uncertain)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20111102 cdliadmin_pagé-perron
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002b7c0p
Composite no.: 
Seal no.: 
CDLI no.: P424079
Transliteration:
Primary publication: AbB 10, 202
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: Musée d’Art et d’Histoire, Geneva, Switzerland
Museum no.: MAH 16189
Accession no.: 
Provenience: uncertain (mod. uncertain)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20111102 cdliadmin_pagé-perron
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002b7chf
Composite no.: 
Seal no.: 
CDLI no.: P424087
Transliteration:
Primary publication: AbB 10, 203
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: Musée d’Art et d’Histoire, Geneva, Switzerland
Museum no.: MAH 16192
Accession no.: 
Provenience: uncertain (mod. uncertain)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20111102 cdliadmin_pagé-perron
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002b7cm0
Composite no.: 
Seal no.: 
CDLI no.: P424090
Transliteration:
Primary publication: AbB 10, 204
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: Musée d’Art et d’Histoire, Geneva, Switzerland
Museum no.: MAH 16234
Accession no.: 
Provenience: uncertain (mod. uncertain)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20111102 cdliadmin_pagé-perron
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002b7f8s
Composite no.: 
Seal no.: 
CDLI no.: P424115
Transliteration:
Primary publication: AbB 10, 205
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: Musée d’Art et d’Histoire, Geneva, Switzerland
Museum no.: MAH 16329
Accession no.: 
Provenience: uncertain (mod. uncertain)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20111102 cdliadmin_pagé-perron
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002b7hbs
Composite no.: 
Seal no.: 
CDLI no.: P424150
Transliteration:
Primary publication: AbB 10, 206
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: Musée d’Art et d’Histoire, Geneva, Switzerland
Museum no.: MAH 16330 + MAH 16549
Accession no.: 
Provenience: uncertain (mod. uncertain)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20111102 cdliadmin_pagé-perron
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002b7hc9
Composite no.: 
Seal no.: 
CDLI no.: P424151
Transliteration:
Primary publication: AbB 10, 207
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: Musée d’Art et d’Histoire, Geneva, Switzerland
Museum no.: MAH 16333
Accession no.: 
Provenience: uncertain (mod. uncertain)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20111102 cdliadmin_pagé-perron
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002b7jcs
Composite no.: 
Seal no.: 
CDLI no.: P424154
Transliteration:
Primary publication: AbB 10, 208
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: Musée d’Art et d’Histoire, Geneva, Switzerland
Museum no.: MAH 16407
Accession no.: 
Provenience: uncertain (mod. uncertain)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20111102 cdliadmin_pagé-perron
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002b7m65
Composite no.: 
Seal no.: 
CDLI no.: P424188
Transliteration:
Primary publication: AbB 10, 209
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: Musée d’Art et d’Histoire, Geneva, Switzerland
Museum no.: MAH 16411
Accession no.: 
Provenience: uncertain (mod. uncertain)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20111102 cdliadmin_pagé-perron
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002b7m9q
Composite no.: 
Seal no.: 
CDLI no.: P424191
Transliteration:
Primary publication: AbB 10, 210
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: Musée d’Art et d’Histoire, Geneva, Switzerland
Museum no.: MAH 16484
Accession no.: 
Provenience: uncertain (mod. uncertain)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20111102 cdliadmin_pagé-perron
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002b7pvz
Composite no.: 
Seal no.: 
CDLI no.: P424225
Transliteration:
Primary publication: AbB 10, 211
Author(s): Kraus, Fritz R.
Publication date: 1985
Secondary publication(s): 
Collection: Musée d’Art et d’Histoire, Geneva, Switzerland
Museum no.: MAH 16502
Accession no.: 
Provenience: uncertain (mod. uncertain)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20111102 cdliadmin_pagé-perron
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz002b7q11
Composite no.: 
Seal no.: 
CDLI no.: P424230
Transliteration:
Primary publication: AbB 11, 029
Author(s): Stol, Marten
Publication date: 1986
Secondary publication(s): 
Collection: University of Pennsylvania Museum of Archaeology and Anthropology, Philadelphia, Pennsylvania, USA
Museum no.: UM 29-16-076
Accession no.: 
Provenience: Nippur (mod. Nuffar)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20050224 fitzgerald_upenn
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz001s1m1w
Composite no.: 
Seal no.: 
CDLI no.: P256681
Transliteration:
Primary publication: AbB 11, 087
Author(s): Stol, Marten
Publication date: 1986
Secondary publication(s): 
Collection: University of Pennsylvania Museum of Archaeology and Anthropology, Philadelphia, Pennsylvania, USA
Museum no.: CBS 00721
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20050425 fitzgerald_upenn
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz001rxm4p
Composite no.: 
Seal no.: 
CDLI no.: P258175
Transliteration:
Primary publication: AbB 11, 115
Author(s): Stol, Marten
Publication date: 1986
Secondary publication(s): 
Collection: University of Pennsylvania Museum of Archaeology and Anthropology, Philadelphia, Pennsylvania, USA
Museum no.: CBS 01124
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20050425 fitzgerald_upenn
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz001tm8c8
Composite no.: 
Seal no.: 
CDLI no.: P258459
Transliteration:
Primary publication: AbB 11, 128
Author(s): Stol, Marten
Publication date: 1986
Secondary publication(s): 
Collection: University of Pennsylvania Museum of Archaeology and Anthropology, Philadelphia, Pennsylvania, USA
Museum no.: CBS 01443
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20050425 fitzgerald_upenn
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz001v6615
Composite no.: 
Seal no.: 
CDLI no.: P258776
Transliteration:
Primary publication: AbB 11, 132
Author(s): Stol, Marten
Publication date: 1986
Secondary publication(s): 
Collection: University of Pennsylvania Museum of Archaeology and Anthropology, Philadelphia, Pennsylvania, USA
Museum no.: CBS 00553
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20050425 fitzgerald_upenn
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz001tnrw7
Composite no.: 
Seal no.: 
CDLI no.: P258003
Transliteration:
Primary publication: AbB 11, 133
Author(s): Stol, Marten
Publication date: 1986
Secondary publication(s): 
Collection: University of Pennsylvania Museum of Archaeology and Anthropology, Philadelphia, Pennsylvania, USA
Museum no.: CBS 07741
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20050425 fitzgerald_upenn
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz001txj4j
Composite no.: 
Seal no.: 
CDLI no.: P262754
Transliteration:
Primary publication: AbB 11, 134
Author(s): Stol, Marten
Publication date: 1986
Secondary publication(s): 
Collection: Oriental Institute, University of Chicago, Chicago, Illinois, USA
Museum no.: OIM A00791
Accession no.: 
Provenience: Adab (mod. Bismaya)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20060612 noname
ATF source: no atf
Translation: no translation
UCLA Library ARK: 21198/zz0020xdxz
Composite no.: 
Seal no.: 
CDLI no.: P333111
Transliteration:
Primary publication: AbB 12, 001
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097286
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510526
Transliteration:
&P510526 = AbB 12, 001 
#atf: lang akk 
@tablet 
@obverse 
1. a-na dingir-szu-ib-ni 
2. qi2-bi2-ma 
3. um-ma geme2-{d}utu-ma 
4. be-li u3 be-el-ti da-ri-isz _u4_-mi 
5. li-ba-al-li-t,u2-ka 
6. lu sza-al-ma-ta lu ba-al-t,a3-ta 
7. _dingir#_ na-s,i-ir-ka ri-isz-ka 
8. a-na da-mi-iq-tim <li-ki-il> 
9. a-na _dumu_ gi-mil-lum _di-ku5_ 
10. ki-a-am asz-pu-ra-asz-szu 
11. um-ma a-na-ku-ma 
12. la ki a ta? li# ki x 
13. u2-ul x [...] 
@reverse 
1. _e2_ a-na dingir-szu-ib-ni 
2. usz-sze-er-ma 
3. _ku3-babbar_ li-pu-ul-ka 
4. an-ni-tam asz-pu-ur2-szu 
5. am-ti la i-ma-at 

Primary publication: AbB 12, 002
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097074
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510527
Transliteration:
&P510527 = AbB 12, 002 
#atf: lang akk 
@tablet 
@obverse 
1. a-na dingir-szu-ib-ni 
2. qi2-bi2-ma 
3. um-ma i-lu-ni-ma 
4. {d}utu u3 {d}marduk li-ba-al-li-t,u2-ka 
5. asz-szum sza ta-asz-pu-ra-am um-ma at-ta-ma 
6. {disz}ip-qu2-i3-li2-szu _di-ku5_ i-na pu-uh2-ri-im 
7. ma-ga-al id-bu-ba-am li-isz-sza-ap-ra-am-ma 
8. ar-ka-at da-ba-bi-ia li-ip-pa-ri-is 
9. sza ta-asz-pu-ra-am 
10. a-na a-wi-lim aq-bi-ma tup-pi2 a-wi-lim 
11. a-na _gal-ukken-na_ a-na ip-qu2-{d}na-bi-um _szu-i_ 
12. tup-pa a-na t,e4-mi-szu a-na {d}suen-re-me-ni _di-ku5_ 
13. u3 tup-pi2 pu-uh2-ri a-na a-wi-le-e _di-ku5-mesz_ 
14. u2-da-an-ni-na-am-ma usz-ta-bi-lam 
15. i-na pu-uh2-ri-im i-na da-ba-bi-im 
16. pa-ni ip-qu2-i3-li2-szu szu-a-ti la tu-ub-ba-al 
17. ma-la a-wa-ti-ku-nu sza at-ta u3 szu-u2 
18. i-na pu-uh2-ri a-wi-lum a-na pa-ni a-wi-lim 
19. ta-da-ab-bu-ba 
@reverse 
1. [a-wi]-lu#-u2 i-na mu-uh2-hi ip-qu2-i3-li2-szu _di-ku5_ 
2. i-sza-as2-su-u2 
3. u3 tup-pa-ti-szu-nu me-eh-ra-am 
4. u2-sza-ab-ba-lu-nim a-na zi-mi da-ba-bi 
5. sza i-sze-em-mu-u2 
6. a-wi-lum szar-ra-am u2-la-am-ma-ad 
7. asz-szum _sze-SZESZ_ sza ta-asz-pu-ra-am 
8. tup-pi2 e-tel-pi4-{d}na-bi-um _enku_ 
9. a-na _enku_ zimbir{ki} a-pa-li-ka 
10. ar-ki {d}nin-urta-ni-szu u2-sza-ab-ba-lam 
11. _1(disz) 5/6(disz) gin2 ku3-babbar_ sza _igi-6(disz)-gal2 ku3-babbar zu2-lum dilmun-na_ 
12. u3 _{gesz}nu-ur2-ma_ 
13. {disz}{d}nin-urta-ni-szu a-na ma-ah-ri-ka 
14. usz-ta-bi-lam 

Primary publication: AbB 12, 003
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097249
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510528
Transliteration:
&P510528 = AbB 12, 003 
#atf: lang akk 
@tablet 
@obverse 
1. [a]-na# dingir-szu-ib-ni 
2. [qi2]-bi2-ma 
3. [um]-ma# i-lu-ni-ma 
4. [asz]-szum# tup-pi2-ka sza tu-sza-bi-lam 
5. a-wi-lam u2-de-ek-ki-ma 
6. tup#-pi2 szar#-ri#-im u3 tup-pi2 a-wi-lim# 
7. a-na# a-li-im [{disz}]ip#-qu2-i3-li2-szu _di-ku5_ 
8. [szu]-li-im it-ta-al-kam 
10. [{disz}]ip#-qu2-i3-li2-szu szu-a-tu# 
11. [...] 
@reverse 
1. [x x] x x ra# [...] [tup]-pi2#-im# lu x [x x] 
2. x x [x] x al li x [...] 
3. _a-sza3_-am szu-ta-ak#-szi-id# 

Primary publication: AbB 12, 004
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097256
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510529
Transliteration:
&P510529 = AbB 12, 004 
#atf: lang akk 
@tablet 
@obverse 
1. a-na a-wi-lim sza {d}marduk u2-ba-al-la-t,u2-szu 
2. qi2-bi2-ma 
3. um-ma i-lu-ni-ma 
4. {d}utu u3 {d}marduk da-ri-isz _u4_-mi 
5. li-ba-al-li#-t,u2-ka 
6. lu sza-al#-ma#-ta 
7. {disz}{d}tu-tu-na-s,i-ir 
8. u3 {d}suen-i-din-nam 
9. a-na ma-ah-ri-ka at,-t,ar-dam# 
10. _gu4 hi-a_ sza ma-ah-ri-ka 
11. u3 _gu4_ sza ta-aq-bi-a-am 
12. i-di-in-szu-nu-szi 
13. a-na babila2{ki} 
@reverse 
1. li-ib-lu-nim# 
2. ar-ha isz-te-en# [(x)] 
3. lu-up-qi2-is-su2-nu-ti-ma 
4. a-na ma-ah-ri-ka 
5. li-tu-ru-u2-nim 
6. asz-szum _gu4_ sza ma-ah-ri-ka 
7. i-da-am la tu-sza-ar-sza 

Primary publication: AbB 12, 005
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097128
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510530
Transliteration:
&P510530 = AbB 12, 005 
#atf: lang akk 
@tablet 
@obverse 
1. [a-na] dingir-szu-ib-ni 
2. [qi2]-bi2#-ma 
3. [um-ma {d}na-bi]-um#-na-s,i-ir-ma 
4. [sze-a-am] a-na _al-du3_-e-ka 
5. {disz}[{d}x]-ra#?-bi il-qe2-a-am-ma 
6. a-na ma#-ah-ri-ka it-ta-al-kam 
7. _a-sza3_ pi2-ha-ti-ka szu-ta-ak-szi-id-ma 
8. ne-me-et-tam la ta-ra-asz-szi 
9. asz-szum dingir-szu-ib-ni sza-pir zimbir{ki} 
10. sza ki-a-am ta-asz-pu-ra-am um-ma at-ta-ma# 
11. _1(disz) gu4_ ar-ki-a a-na _gu4_ ki-ma _gu4_ pu-uh2-hi 
12. ad-di-in-szum-ma _1(disz) gu4 mu 2(disz)_ id-di-nam# 
13. ka-ni-ik szi-ma-tim nu-usz-te-zi-ib# [(x)] 
14. i-na-an-na dingir-szu-ib-ni sza-pir zimbir#[{ki}] 
15. um-ma szu-ma _gu4_-ka u2-ta-ar-ra-ak-ku# 
16. sza ta-asz-pu-ra-am 
17. {disz}dingir-szu-ib#-ni# szu-a-ti u2-qe2-er-ri#-bu#-nim-ma 
18. ki-a-am aq-bi-szum i-qa2-ab-bu-ma# 
19. _gu4_ ar-ki-a a-na _1(u) gin2 ku3-babbar_ 
20. id-di-nu-ni-ik-ku 
@reverse 
1. u3 ka-ni-ik szi-ma-tim ta-ad-di-in 
2. mi-nu-u2 a-wa-tum-ma da-ba-ba-am tu-sze-er-szi 
3. {disz}dingir-szu-ib-ni sza-pir zimbir{ki} 
4. um-ma szu-ma a-na-ku u3 dingir-szu-ib-ni ARAD-ka 
5. _gu4_ ki-ma _gu4_ nu-up-te-eh-ma 
6. ka-ni-ik szi-ma-tim nu-usz-te-<<TE>>-zi-ib 
7. _gu4_ sza el-qu2-u2 _iti 1(disz)-kam_ ma-ah-ri-ia isz-sza#-[ak]-na# 
8. ri-ik-sa-ti-ia u2-ul e-en-ni an-ni-tam iq-bi# 
9. asz-szum# _2(disz)# gin2 ku3-babbar_ sza a-na be-el-szu-nu _dumu_ dingir-da-mi-iq 
10. _n [n] GAN2 a-sza3_ la te-pu-szu _ku3-babbar_ e-se-ri-im-ma 
11. [szu-bu-lim?] sza# ta-asz-pu-ra-am 
12. [x x x x] _dumu e2-dub-ba-a_ a-na _ku3-babbar_ szu-a-ti 
13. [x x x x] szu#-ud#-du-nim a-wa-tam ap-ta-qi2-id 
14. [...] x-ti#-ka# 
15. [...] ARAD#-{d}ul-masz-szi-tum _ugula gidri_ 
16. [x] x _a-sza3_ x [x x x (x)] u2-da-an-ni-na-am-ma 
17. usz#-ta-bi-lam asz-szum sze-e _szuku#_-ka sza _mu 4(disz)-kam_ 
18. sza i-na qa2-ti ARAD-{d}ul-masz-szi-tum _ugula gidri_ szu-ud-du-nim 
19. sza ta-asz-pu-ra-am i-nu-ma ARAD-{d}ul-masz-szi-tum szu-u2 
20. a-na babila2{ki} i-il-la-kam 
21. tup-pa-ka szu-bi-lam _ugula gidri_ szu-a-ti li-x x x 
22. [sze-e] _szuku_-ka li-sza-li-mu-ka 

Primary publication: AbB 12, 006
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097212
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510531
Transliteration:
&P510531 = AbB 12, 006 
#atf: lang akk 
@tablet 
@obverse 
1. a-na dingir-szu-ib-ni 
2. qi2-bi2-ma 
3. um-ma {d}na-bi-um-na-s,i-ir-ma 
4. asz-szum _a-sza3_ sza {d}nanna-ibila-ma-an-szum2 _dub-sar za3-ga_ 
5. tup-pi2 a-na ip-qu2-{d}na#-bi-um _szu-i_ 
6. u3 {d}suen-re-me-ni _di-ku5_ 
7. [asz]-szum# tap-pu-ut da-ba-bi-ka a-la-ki-im 
8. usz#-ta-bi-lam 
9. [{disz}{d}]suen#-i-din-nam {disz}{d}suen-mu-sza-lim u3 u2-s,ur-pi4-esz18-dar 
10. [a-na ma]-ah#-ri-ka at,-t,ar-dam 
11. [it-ti]-szu#-nu a-na _a-sza3_ ri-id-ma 
12. [a-na _a-sza3_] szu#-a-tu li-ka-bi-is 
13. [sze-a-am sza] _a-sza3_ ma-la e-er-szu 
14. [x x x x x (x)] szu-ud-di-in 
@reverse 
1. [x x x x x (x)]-x#-e-ma 
2. [x x x x x] szu-bi-lam 
3. [x x x-sza]-pa-ra-am-ma 
4. [x x x (x)] szu#-a-tu 
5. [x x x (x)] sze-e-ia 
6. [x x]-x-szu i-le-eq-qu2-nim 

Primary publication: AbB 12, 007
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097227
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510532
Transliteration:
&P510532 = AbB 12, 007 
#atf: lang akk 
@tablet 
@obverse 
1. a-na dingir-szu-ib-ni 
2. qi2-bi2-ma 
3. um-ma {d}na-bi-um-na-s,i-ir-ma 
4. asz-szum sza ta-asz-pu-ra-am 
5. um-ma at-ta-ma {disz}ip#-qu2#-i3-li2-szu _di-ku5_ 
6. [sza e-li]-ia# mar-s,a-at i-te-pu-usz 
7. u3 _abul hi-a_ usz-ta-di-a-an#-[ni] 
8. sza ta-asz-pu-ra-am 
9. ma-har be-li2-ia 
10. ad-bu-um-ma 
11. tup-pi2 be-li2-ia 
12. a-na ip-qu2-i3-li2-szu szu-a-ti 
@reverse 
1. a-na babila2{ki} 
2. szu-li-i-szu 
3. i-il-la-kam 
4. s,i-bi-it t,e4-mi ri-szi 
5. sza pa-ni-ka na-ap#-li-is-ma 
6. ki#-ma tup-pi2 szar#-ri 
7. ta#-ta-am-ru# 
8. it#-ti# ip#-qu2-i3-li2-szu szu-a-ti 
9. a-na babila2#{ki} si-in-qa2-am 

Primary publication: AbB 12, 008
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097328
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510533
Transliteration:
&P510533 = AbB 12, 008 
#atf: lang akk 
@tablet 
@obverse 
1. a-na dingir-szu-ib-ni 
2. qi2-bi2-ma 
3. um-ma {d}na-bi-um-na-s,i-ir-ma 
4. asz-szum _a-sza3 a-gar3_ na-szi-a-ri-isz 
5. sza ta-asz-pu-ra-am 
6. _a-sza3_ szu-a-ti u2-ta-asz-sze-ru-ni-ik-ku 
7. u3 tup-pi2 a-na {d}suen-re-me-ni _di-ku5_ 
8. u3 ib-ni-{d}mar-tu _ugula mar-tu_ 
9. asz-szum _gu4-apin hi-a_ na-da-nim-ma 
10. tap-pu-ti-ka a-la-ki-im 
11. it-ta-al-kam 
12. la-ma sza#-[at-tum] it#-ta#-al#-ku!(LU) 
@reverse 
1. _a-sza3_ szu-a-ti 
2. szu-ta-ak-szi-id-ma 
3. ne-me-et-tam 
4. la ta-ra-asz-szi 

Primary publication: AbB 12, 009
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097238
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510534
Transliteration:
&P510534 = AbB 12, 009 
#atf: lang akk 
@tablet 
@obverse 
1. a-na be-[li2-ia] 
2. qi2#-bi2#-ma# 
3. um-ma dingir-szu-ib-ni-ma# 
4. _gu4-apin hi-a_ sza be-li2-ia [sza]-al#-mu 
5. ki-ma be-li2 i-du-u2 
6. {disz}u-bar-{d}na-bi-um# _lu2-nimgir_ 
7. _sza3 nimgir erin2 ka2 e2-gal#-mesz_ 
8. sza ina qi2-bi-it _e2-gal_ 
9. i-na _abul-mesz_ zimbir{ki} asz-bu-ma 
10. _ka2_ u2-sa-an-na-qu2 
11. i-nu-ma _{gesz}apin hi-a_ sza _iri{ki}_ [(x) (x)] 
12. u2-sza-as,-s,a-ra-ma la u2-x-[x]-x-u2 
13. [{disz}]u-bar#-rum-{d}na-bi-um-ma 
$ rest broken 
@reverse 
$ beginning broken 
1'. u2-mi-[...] 
2'. {disz}u-bar-{d}na-bi-um szu#-u2 
3'. 1(disz) sag-ARAD a-ta-ar-tam 
4'. sza _e2_ a-bi-szu-nu-ma [(x)] 
5'. 4(disz) at-hu-u2 qa2-du-usz-szu 
6'. a-na _ku3-babbar_-im id-di-nu-ma 
7'. 1(disz) a-hu-szu sza i-na babila2#[{ki}] 
8'. ma-har a-wi-lim a-bi _erin2_ i-da-ab-bu#-bu# 
9'. _1(u) 2(disz) gin2 ku3-babbar_-am il-qe2 
10'. u3 szu-nu _5(disz)-ta-am3_ il-qu2-u2 
11'. i-na-an-na u-bar-rum-{d}na-bi-um szu-a-ti 
12'. a-na babila2#{ki} a-na ma-har a-wi-lim a-[bi] _erin2_ 
13'. usz-te-lu-ni-isz-szu 
14'. be-li2 ki-ma ra-bu-ti a-na a-wi-lim a-bi _erin2_ 
15'. li#-iq#-bi-ma da-ba-ab#-szu li#?-in-na-me-[er] 
16'. u3 ki-ma a-hu-szu ra-bu#-[um x (x)]-bu 
17'. _1(u) 2(disz) gin2 ku3-babbar_ li#-[...] 
18'. be-li2 a-wi-lam a-bi# [_erin2_ ...] 
19'. li-isz-i x [...] 
20'. li#-il#-qe2#?-[szu-ma?] 
@left 
1. li#-isz-te-bi-ir-szu-ma a-na pi2-ha-[ti-szu] 
2. li#-it-ta-al-kam be-li2 at-ta al-kam# 

Primary publication: AbB 12, 010
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097170
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510535
Transliteration:
&P510535 = AbB 12, 010 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}na-bi-um-at-pa-lam 
2. qi2-bi2-ma 
3. um-ma be-la-nu-um-ma 
4. {d}utu u3 {d}marduk li-ba-al-li-t,u2-ka 
5. lu-u2 ba-al-t,a-ta 
6. lu-u2 sza#-al-ma-ta 
7. a-na szu-ul#-mi#-ia ta-asz-pur-ra-am# 
8. sza-al#-ma-ku 
9. sza-la-am-ka a-na da-ri-a-tim 
10. {d}marduk li-iq-bi 
11. isz-tu i-na-an-na _u4 2(disz)-kam_ 
12. a-na-ku a-na zimbir{ki} 
13. a-al-la-kam 
14. asz-szum s,u2-ha-re-e 
@reverse 
1. sza ta-asz-pur-am 
2. a-na dumu-{d}utu 
3. asz-tap-ra-am 
4. i-na-ad-di-na-ak-kum 

Primary publication: AbB 12, 011
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097104
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510536
Transliteration:
&P510536 = AbB 12, 011 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}na-bi-um-at-pa-lam sza {d}marduk u2-ba-la-t,u2-szu 
2. qi2-bi2-ma 
3. um-ma ig-mil-{d}suen-ma 
4. {d}utu u3 {d}marduk da-ri-isz _u4_-mi li-ba-al-li-t,u2-ka 
5. asz-szum 6(disz) _ma2 hi-a i7_ ir-ni-na-ma 
6. szu-qa2-al-pi2-a-am 
7. sza# ta-asz-pur-am 
8. tup#-pi2# ARAD#-i3-li2-szu# [is3-ni]-qa2#-am# 
9. um-ma-mi i-na# _u4 1(u) 3(disz)-kam#_ 
10. [(x)] x ka-mi-is3 
11. pa-ni _ma2 hi-a_-ka s,a-ab-tam-ma 
12. a-la-kam ep-sza 
13. ki-ma tup-pi2 ARAD-i3-li2-szu 
14. is3-ni-qa2-am 
15. _ma2 hi-a_ as-sa3-ki!-ip 
@reverse 
1. a-na-ku asz-szum# s,e-tim a-di i-na-an-na 
2. u2-uh-hi-ir mu-szi-tam 
3. a-ra-ka-am-ma sze-er-tam-ma 
4. i-na pi4 _i7_ {d}utu a-na-ku 
5. _3(disz) ma2 hi-a_ sza ta-asz-pur-am 
6. _i7_ zimbir{ki} iq-qa2-la-pi2#-a-ni#-im# 
7. _i7_ ir-ni-na na-qa2-al-pi2-a-am 
8. u2-ul i-le-a 
$ single ruling 

Primary publication: AbB 12, 012
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097027
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510537
Transliteration:
&P510537 = AbB 12, 012 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}na-bi-um-at-pa-lam 
2. qi2-bi2-ma 
3. um-ma i3-li2-ip-pa-al-sa3-am-ma 
4. {d}utu u3 {d}marduk li-ba-al#-li#-t,u2#-[ka] 
5. [x x (x)] SU{sar} sza qa2-ti {disz}mi#-[x x x (x) (x)] 
6. sza# asz-pur#-ra#-am _dumu_ x x [(x)] 
7. [at,]-t,ar-dam# 
8. [a-na {d}]suen#-a-sza#-re-ed qi2-bi-i-ma 
9. [SU]{sar#}-szu la i-ka-al-la 
@reverse 
$ blank space 

Primary publication: AbB 12, 013
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097073
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510538
Transliteration:
&P510538 = AbB 12, 013 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}na-bi-um-at-pa-lam 
2. qi2-bi2-ma 
3. um-ma i3-li2-ip-pa-al-sa3-am-ma 
4. {d}utu u3 {d}marduk da-ri-isz _u4_-mi# 
5. li-ba-al-li-t,u2-ka 
6. asz-szum {disz}be-el-szu-nu 
7. ma-am-ma-an# la du-ub-bu-bi-im 
8. a-na {d}na#-bi-um-ma-lik 
9. {disz}nu-ur2-ra-tum u3 dingir-szu-ba-ni! 
10. i-na tam-li-tim 
11. a-wi-lum iq-bi-ma 
12. ma-am-ma-an la du-ub-bu-ub-szu 
13. iq#-ta-bi-szu-nu-szi-im 
@reverse 
1. pi2-qa2#-at ma-am-ma#-an 
2. i-la-kam-ma x [x]-szu 
3. [u2-da]-ab#-ba-ab 
4. qi2-bi#-ma 
5. ma-am#-[ma-an] la# u2-da-ab-ba-ab-szu 
6. a-nu-um-ma# [(x) (x) {disz}be]-el#-szu-nu 
7. a-na mu-uh-hi [x x]-x-ti-szu 
8. at,-t,ar-da#-[asz]-szu 
9. asz-szu-mi-ia i-sza-ri#-isz 
10. a-pu-ul-szu 
11. la tu-usz-ta-ha-szum# 

Primary publication: AbB 12, 014
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097198
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510539
Transliteration:
&P510539 = AbB 12, 014 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}na-bi-um-at-pa#-lam# 
2. sza {d}marduk u2-ba#-al#-[la-t,u2-szu] 
3. qi2-bi2#-[ma] 
4. [um]-ma# ku-ub#-[bu-tum-ma] 
5. [{d}utu u3 {d}]marduk# li#-[ba]-al#-[li]-t,u2#-ka# 
6. [x x (x)]-i3-li2-szu# 
7. [x x x] 1(u) 4(disz) _lu2-nagar_ 
8. [x x] x-an-ni-ma x x x 
9. [x x (x)] s,i#-bu-us-su2-ma 
10. [t,u2]-ur#-da-asz-szu-u2-ma 
11. [(x)] s,i#-bu-ti li-pu-usz 
@reverse 
1. [u3] szum-ma ha-asz-ha-as-su2 
2. li#-tu-ra-kum-ma 
3. s,i-bu-ut-ka 
4. li-pu-usz# 
5. u3 x x x 
6. tup#-pa#-ka# [ar]-hi#-isz# 
7. szu-bi-la#-[am] 

Primary publication: AbB 12, 015
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097208
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510540
Transliteration:
&P510540 = AbB 12, 015 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}na-bi-um-at#-pa#-lam 
2. sza {d}marduk u2-ba-la-t,u2-szu 
3. qi2-bi2-ma 
4. um-ma ku-ub-bu-tum#-ma# 
5. {d}utu u3 {d}marduk da-ri#-isz _u4_-mi 
6. li-ba-al-li-t,u2-ka 
7. asz-szum sza a-na babila2#{ki#} 
8. ta-al-li-ku 
9. ma-di-isz na-ak-da#-ku 
10. szu#-lum-ka 
@reverse 
1. [u3] t,e4#-em-ka 
2. szu#-up-ra-am 

Primary publication: AbB 12, 016
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 096979
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510541
Transliteration:
&P510541 = AbB 12, 016 
#atf: lang akk 
@tablet 
@obverse 
1. [a-na] {d}na#-bi#-um-at-pa-lam# 
2. qi2#-bi2-ma 
3. um#-ma {d}marduk-mu-sza-lim-ma 
4. [asz]-szum# _1(bur3) 1(esze3) GAN2 a-sza3 gibil_ sza isz-ku-un-{d}suen{ki} 
5. ki#-a-am ta-aq-bi-a-am um-ma at-ta-ma 
6. _dumu#_-ka# {d}da-gan-ra-bi-ma 
7. _a-sza3_-um a-na _esz2-gar3 2(disz) gu4-apin hi-a_ sza# {d}esz18-dar 
8. u2-ul ka-szi-id 
9. _1(bur3)# 1(esze3) GAN2 a-sza3_ sza _dumu-mesz#_ ni-id-na-at-{d}suen 
10. [li]-id-di-nu-nim#-ma 
11. u3 _ab2# gu4# hi#-a_ x x-ia lu-usz-ta-am#-li 
12. ki#-a-am# ta#-aq#-bi-a-am-ma 
13. i-na qa2-be2-e-ka _1(bur3) 1(esze3) GAN2 a-sza3_ szu-a-ti 
14. a-na {d}da-gan-ra-bi ad-di-in# 
15. [x x x x x x (x)] x x x [...] 
16. [...] 
17. [...] 
18. _a-sza3_ sza qa2-ti-ia x [...] 
@reverse 
1. sze-um li-in-na-di-in#-[ma] 
2. i-ni-a-tum li-isz-sza-ap-ka-ma 
3. _1(bur3) 1(esze3) GAN2 a-sza3_ szu-u2 szi-ip-ra-am li-in-ne2-pu-usz 
4. ki-a-am# isz-pur-am 
5. i-na# qa2#-be-e-ka _a-sza3_ szu-a-ti 
6. a-na {d}da#-gan#-ra-bi ad-di-in 
7. i-na#-an#-na# {disz}{d}da#-gan-ra-bi ki-a-am# isz-pur-am 
8. [um-ma szu]-u2-ma [(x)] x e-li e-mu-qi2-ia ka-as,-ra 
9. [ki]-a-am isz#-pur#-am# LU _gu4 u4_-ma-am# an#-ni-a-am# szu-up-ra-am 
10. u3 asz-szum# _gu4# hi#-a_ {disz}{d}da-gan-ra#-bi 
11. ki#-a-am# isz#-pur#-am um-ma szu-u2-ma 
12. i-na# _gu4 hi-a_-ia 4(disz) _gu4_ is-su2-qu2-u2-ma 
13. a-na# _gu4# apin#_-ka# it-ta-ad-di-nu 
14. u3 {d}marduk-mu-dam-mi-iq ki-a-am isz-pur-am 
15. um-ma szu-ma i-na 4(disz) _gu4 nig2-szu_ {d}da-gan-ra-bi 
16. u3 2(disz) _gu4 nig2-szu_ i3-li2-u3-{d}utu i-na 6(disz) _gu4 hi-a_ 
17. sza id-di-nu-nim 4(disz) _gu4_ x sza LU x wa-ar-ka 
18. [x (x)] x x ki#-a-am isz#-pur-am 
$ rest broken 

Primary publication: AbB 12, 017
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097053
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510542
Transliteration:
&P510542 = AbB 12, 017 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}na-bi-um-at-pa-lam 
2. u3 i3-li2-iu-u2-ta 
3. qi2-bi2-ma 
4. um-ma {d}marduk-mu#-sza-lim-ma 
5. a-nu-um-ma _1(u) erin2#_ e-pi2-isz-tam 
6. u3 1(disz) _lu2-ar3-ar3_-szu-nu 
7. a-na u2-ra-ti#-ku-nu se-e-ri-im 
8. at,-t,ar-dam 
9. u2-ra-ti-ku-nu li-se-e-ru 
10. i-na se-ri-ku-nu 
11. a-di u2-ur _e2 i3-dub_ 
12. sza ga-gi4-a{ki} 
@reverse 
1. u3 ki-di-im 
2. la se-e-ru 
3. u2-ra-am sza-ni-a-am 
4. la# te#-se#-e-er-ra 
5. isz#-tu u2-ur# _e2 i3-dub_ 
6. sza ga-gi4#-a{ki} 
7. u3 sza ki-di#-im# 
8. te-es-se2-ra 
9. u2-ra-ti-ku-nu a-hi#-a-tim 
10. se-e-ra 

Primary publication: AbB 12, 018
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097055
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510543
Transliteration:
&P510543 = AbB 12, 018 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}na-bi-um#-at-pa-lam 
2. qi2-bi2-ma 
3. um-ma {d}marduk-mu-sza#-lim-ma 
4. asz-szum [_a-sza3_-im] sza# a-wa-tu-szu 
5. [la ga-am]-ra# 
6. ki-a-am# [u2-na-ah-hi]-id# um#-ma# a-na#-ku#-ma 
7. a-wa-[at _a-sza3_]-im# [gu]-mu#-ur 
8. ka-ni-[ka-am] szu-ze2-em-ma 
9. t,e4#-[em _a-sza3_-im] szu#-up-ra-am 
10. [ki-a-am] u2-na-ah-hi-id-ma 
11. [am-mi]-nim# isz-tu ta-al-li-<<li>>-ku 
12. t,e4-em _a-sza3_-im sza a-wa-tu-szu 
13. la ga-am-ra sza u2-na-ah-hi-du#-ka# 
14. sza-pa-rum-ma 
@reverse 
1. u2-ul ta-asz-pur-am 
2. a-wa-a-at _a-sza3_-im sza la ga-am-ra 
3. ta-ag-da-ma-a-ar [(x)] 
4. ka-ni-kam tu-usz-te-zi-i-ib# 
5. szum-ma a-wa-at _a-sza3_-im sza la ga-am-ra ta-ag-da-mar 
6. ka#-ni-kam tu-usz-te-zi-ib 
7. ka#-ni-kam szu-a-ti a-na s,u2-ha-ar-tim 
8. i-di-im-ma 
9. tup-pi2 s,u2-ha-ar-tim sza ka-ni-kam 
10. sza _a-sza3_-im ki-a-am u3 ki-a-am 
11. {disz}{d}na-bi-um-at-pa-lam ub-lam 
12. a-na s,e-ri-ia szu-bi-lam 
$ single ruling 

Primary publication: AbB 12, 019
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097063
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510544
Transliteration:
&P510544 = AbB 12, 019 
#atf: lang akk 
@tablet 
@obverse 
1. [a]-na# {d}na#-bi-um#-[at-pa-lam] 
2. qi2#-bi2#-ma 
3. um#-[ma {d}]marduk#-mu-sza-lim-ma 
4. asz-szum# {d}na#-[bi-um]-szar-rum sza ta-asz-[pu-ra-am] 
5. x x ni-su2-uq KU? x [...] 
6. [x an]-da#-ah-szum{sar} [...] 
7. [x x] x{sar#} [(x)] 
8. [tu]-usz#-ta-na#-ab#-[ba-lam] 
9. x ma ZUM sza be-li2-ia x x x 
10. sza ki-ma an-da-ah-szum{sar} 
11. sza tu-usz-ta-na-ab-ba-lam# 
12. x x x an-da#-ah#-szum#{sar} x [x] 
$ rest broken  
@reverse 
1. i-na#-an#-na# {disz}x [...] 
2. 1(gesz2) 3(u) an-da-ah-szum{sar#} [x x] 
3. sza e-li-szu-nu dam-qu2 [x (x)] 
4. la i-ba-[asz-szu]-u2# 
5. u2-sza-bi#-[la-kum] 
6. [...] 
7. [...] 
8. [...] 
9. [...] 
10. szu-bi-[lam] 

Primary publication: AbB 12, 020
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097069
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510545
Transliteration:
&P510545 = AbB 12, 020 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}na-bi-um-at-pa-lam 
2. qi2-bi2-ma 
3. um-ma {d}marduk-mu-sza-lim-ma 
4. _lu2_ eb-bu-tum sza szu-ut-_sipa{ki}-mesz_ 
5. t,e4-em-szu-nu u2-te-er-ru-nim-ma 
6. u3 ki-a-am iq-bu-nim um-ma szu-nu-ma 
7. _2(gesz2) 2(u) sze gur {gesz}ba-ri2-ga_ 
8. a-na _al-du3_-szu li-id-di-isz-szum 
9. _4(u) sze gur zi-ga kislah_ 
10. _szuku# e2_ sza a-di _iti# szu-numun#-a_ LI#-x [(x)] 
11. ki-a-am iq-bu-nim 
12. _nig2-ka9_ e-pu-usz-ma 
@reverse 
1. a-na _3(gesz2) sze gur al-du3_-ka 
2. mi-im#-[ma] u2-ul i-szu 
3. ki-ma tup-pi2 an-ni-a-am# 
4. ta-am-ma-ru 
5. a-na babila2{ki} 
6. al-kam-ma 
7. a-wa-tam# an-ni-tam 
8. ap-la-an-ni 

Primary publication: AbB 12, 021
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097072
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510546
Transliteration:
&P510546 = AbB 12, 021 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}na#-[bi-um-at-pa-lam?] 
2. qi2-bi2-[ma] 
3. um-ma {d}marduk-mu-sza-lim#-[ma] 
4. _{gesz}sze-du10 hi-a_ sza {disz}i3-li2-ki#-nu-um _ugula mar-tu_ 
5. i-zi-ba-ak-kum 
6. a-na mi-nim a-na babila2{ki#} 
7. la tu-sza-bi-la-szu-nu-ti 
8. a-nu-um-ma a-na {disz}be#-la-nu-um _ugula# mar#-tu_ 
9. asz-tap-ra-am 
10. _1(disz) {gesz}ma2_ u3 _1(u) erin2_-am 
11. i-na-ad-di-na-ak#-[kum] 
@reverse 
1. _{gesz}sze-du10 hi-a_ szu-nu-ti# 
2. s,e-na-am-ma 
3. a-na babila2{ki} 
4. li-ib-lu-nim 
5. u3 _{gesz}sze-du10 hi-a_ szu-nu 
6. i-na _gi sa hi-a_ 
7. lu ku-ut-tu-mu 

Primary publication: AbB 12, 022
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097078
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510547
Transliteration:
&P510547 = AbB 12, 022 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}na-bi-um-at-pa-lam 
2. qi2-bi2-ma 
3. um-ma {d}marduk-mu-sza-lim-ma# 
4. asz-szum {disz}{d}inanna-e-pi2-ri 
5. sza# ta-asz-pur-am 
6. {disz}{d}inanna-e-pi2-ri szu-u2 
7. it-ti-ia in-na-we-er 
8. a-na sa3-ki-pi2-szu 
9. i-zi-is-sum2-ma# 
10. ma-am-ma-an [(x) (x)] 
@reverse 
1. la# u2-da-ab-ba#-[ab-szu] 
$ single ruling 

Primary publication: AbB 12, 023
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097091
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510548
Transliteration:
&P510548 = AbB 12, 023 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}na-bi-um-at-pa-lam 
2. qi2-bi2-ma 
3. um-ma {d}marduk-mu-sza-lim-ma 
4. _5(disz) sar sig4 al-ur3#-ra_ 
5. ha-asz-ha-ku 
6. szum-ma _sig4 al-ur3#-ra_ s,a-ri#-ip-tum 
7. i-ba-asz-szi t,e4-em-ka szu-up-ra-am-ma 
8. _ma2 hi-a_ lu-ut,-ru-da-ak-kum#-ma# 
9. _sig4 al-ur3-ra_ li-s,e-nu-nim 
10. szum-ma _sig4 al-ur3-ra_ s,a-ri-ip-tum 
11. la i-ba-asz-szi 
@reverse 
1. _5(disz) sar sig4 al-ur3-ra_-ma# 
2. ar-hi-isz s,u2-ru-up-ma# 
3. t,e4-em-ka [szu]-up#-ra#-am#-ma 
4. _ma2 hi-a_ lu-ut,-ru-da-kum 

Primary publication: AbB 12, 024
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097092
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510549
Transliteration:
&P510549 = AbB 12, 024 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}[na-bi-um-at-pa-lam?] 
2. [qi2]-bi2#-ma# 
3. um#-[ma] {d}marduk-mu-sza-lim-ma 
4. asz-szum# [wa]-ar#-ka-at hu-za-la-tum 
5. [pa]-ra#-si-im 
6. [{disz}{d}]marduk#-re-me-ni u3 {d}iszkur-ba-ni 
7. asz-pu#-ra-am 
8. x x _tu{muszen} hi-a_ u3 _zi3-da_ 
9. ki-ma# {d}iszkur-ba-ni 
10. i-ir#-re-szu#-ka 
11. i-di#-in-ma 
12. wa#-ar#-ka#-at# hu-za-la-tum 
13. li-ip-pa-ri-is#-ma 
@reverse 
1. {disz}{d}iszkur-ba-ni 
2. ne-me-tam la i-ra-asz-szi 

Primary publication: AbB 12, 025
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097163
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510550
Transliteration:
&P510550 = AbB 12, 025 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}na-bi-um-at-pa-lam 
2. qi2-bi2-ma 
3. um-ma {d}marduk-mu-sza-[lim]-ma 
4. asz-szum _ha-za-nu-um{sar}_ 
5. a-di la ba-asz-lu la na-pa-lim# 
6. {disz}ku-ub-bu-tum isz-pur-am 
7. szum-ma _ha-za!-nu-um{sar}_ la ba-asz-lu-ma 
8. u3 mi-ik-ru ha-mu-ut, 
9. _ha-za-nu-um{sar}_ i-ka-am#? [x] x-al#-la-x-ma 
10. a-di la ba-asz-lu 
11. la in-na-ap-pa-lu# 
@reverse 
1. a-na mi-nim _ha-za-nu-um{sar#}_ 
2. la ba-asz-lu-us-su2-nu 
3. in-na-ap-pa-lu 
4. u3 mi-nu-um sza asz-szum _a-sza3_-im 
5. a-wa-a-tim tu-za-ab-ba-lu 
6. a-na a-wa-a-tim an-ne2-tim 
7. zu-ub-bu-lim u2-ul tu-ta-asz-szar 
8. ka-ni-kam ar-hi-isz u2-ul tu-sze-ze-eb-szu-ma 
9. lu ti-de ki-ma tup-pi2 ta-am-ma-ru 
10. a-la-lum u2-lu-ul-szu-ma 
11. ka-ni-kam szu-ze2-eb-szu 
$ single ruling 

Primary publication: AbB 12, 026
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097113
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510551
Transliteration:
&P510551 = AbB 12, 026 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}na-bi-um-at-pa-lam# 
2. qi2-bi2-ma 
3. um-ma {d}marduk-na-s,i-ir-ma 
4. {d}utu u3 {d}marduk li-ba-al-li-t,u2-ka 
5. asz-szum s,u2-ha#-ri-ka sza esz18-dar-illat-su2 
6. i-na qa2-ti-szu-nu sze-a-am is,-ba-tu-ma 
7. ik-lu-szu-nu#-<ti>-ma 
8. ta-asz-pur-am 
9. ki-ma isz-ti7-isz-szu 
10. aq-bi-szum-ma 
11. [u2]-ul isz-me-a-ni 
12. a-wi-lum sza-gi-il 
@reverse 
1. at-wa-am u2-ul i-ma-ha#-ar# 
2. e-zu-ub la s,u2-ha-ri-ka 
3. s,u2-ha-ri u2 sza ni-szu-dan-nam _ugula e2 sukkal_ 
4. sze-a-am na#-szu#-ma is,-ba-su2-nu-ti-ma 
5. nu-pa-at,#-t,e4#-er-szu#-ma# u2-ul# im-gur-an-ni-a-ti 
6. um-ma# szu#-ma# a-wa#-tim# an#-ni#-a-ti-in 
7. {disz}{d}na-bi-um-at#-pa#-[lam]-ma# i-pu-ul#-szi-na-ti 
8. tup-pa-ka# szu-bi-la-asz-szum 

Primary publication: AbB 12, 027
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097563
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510552
Transliteration:
&P510552 = AbB 12, 027 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}na-bi-um-at-wa-la 
2. qi2-bi2-ma 
3. um-ma {d}suen-e-ri-ba-am-ma 
4. {d}utu u3 {d}marduk asz-szu-mi-ia 
5. li-ba-al-<li>-t,u2-ka 
6. a-nu-um-<ma> {disz}ar-wa-am 
7. at,-t,ar-da-ku 
8. _1/3(disz) ma-na ku3-babbar_ 
@reverse 
1. sza qa3-ti-a 
2. a-na [dumu]-er-s,e-tim 
3. i-di-in 

Primary publication: AbB 12, 028
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097146
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510553
Transliteration:
&P510553 = AbB 12, 028 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}na-bi#-[um-at-pa-lam] 
2. sza {d}marduk# u2-ba#-[la]-t,u2#-szu 
3. qi2-bi2-ma 
4. um-ma {d}suen-i-na-ma-tim-ma 
5. {d}utu u3 {d}marduk da-ri-isz _u4_-mi 
6. li-ba-al-li-t,u2-ka# 
7. asz-szum {disz}dingir-ha-bil2 _iri_ KUR-bi-{d}UH3 
8. sza qe2-er-bu-kum 
9. asz-szu-mi-szu u2-ul ta#-asz-pur-ra-am 
10. [asz]-szu#-mi-ka 
11. ma#-ah-ri-ia isz-ku-un# 
@reverse 
1. at,-t,ar-da-ak-ku-usz-szu 
2. a-di wa-asz-ba-a-ku 
3. s,i-bu-ut-ka 
4. li-pu-usz 

Primary publication: AbB 12, 029
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097200
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510554
Transliteration:
&P510554 = AbB 12, 029 
#atf: lang akk 
@tablet 
@obverse 
1. a-na [...] 
2. qi2-bi2-[ma] 
3. um-ma {d}na-bi-um-at#-[pa-lam] 
4. {disz}isz-me-{d}suen ki-a-am isz-pur#-am 
5. um-ma szu-ma 
6. _1(u) 5(asz) sze gur_ sza _lu2-kurun2-na_ 
7. i-na pu-us2{ki} le-qe2-a-ku 
8. a-na sza-at-ti-ia 
9. _ib2-tak4 al-du3_-ia 
10. i-na pu-us2{ki}-ma 
@reverse 
1. li-id-di-nu-nim 
2. ki-a-am {disz}isz-me-{d}suen 
3. isz-pur-am 
4. a-na sza-at-ti-szu 
5. sze-a-am a-na _al-du3_-szu 
6. i-na pu-us2{ki}-ma 
7. id-na-szu 
8. u3 qi2-bi-a-szum#-[ma] 
9. i-na _gu2-un#_ [...] 
10. _1(disz) sila3 sze_ la# [i-ka-al-la?] 

Primary publication: AbB 12, 030
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097105
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510555
Transliteration:
&P510555 = AbB 12, 030 
#atf: lang akk 
@tablet 
@obverse 
1. [a]-na# be-el-szu-nu [qi2]-bi2#-[ma] 
2. um-ma {d}na-bi#-um#-at#-[pa-lam]-ma# 
3. {d}utu u3 {d}marduk li-ba#-[al-li]-t,u2#-ka 
4. asz-szum a-hi-ka# sza ta-asz-pu#-ra#-am# 
5. a-za-az# re-sza-am u2-ka-al 
6. u3 mi-nu-um sza# ki-a-am ta-asz-pu-ra-am 
7. um-ma at-ta-a-ma _a-sza3_-am 
8. a-na pa-ni-ka usz-ta-na-sa-aq 
9. a-di ki-ma i-na-an-na szu-ta-su#-qu2-um-ma 
10. tu-usz-ta-na-sa-aq 
11. lu-u2 ti-de-e asz-tap-ra-ku-um# 
@reverse 
1. i-na zu-mur _u4 1(u)-kam ba-zal_ 
2. _gu4 hi-a_ isz-ka-ra-am 
3. li-is,-ba-tu 
4. lu ti-de-e asz-tap-ra-ku-um 
5. ni-ti a-hi-im la ta-ra-szi 

Primary publication: AbB 12, 031
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 096972
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510556
Transliteration:
&P510556 = AbB 12, 031 
#atf: lang akk 
@tablet 
@obverse 
1. a-na be-li2-ia qi2-bi2-ma 
2. um-ma {d}na-bi-um-at-pa-lam ARAD-ka-ma 
3. asz-szum sze-e ar-hi-isz la ka-ma-si-im sza be-li2 isz-pur-am 
4. sze-e szu-ut-_sipa-mesz_{ki} i-na# za#-re-e-em ka-mi-is 
5. sze-e iri-{d}gu-la{ki} a-na zimbir{ki} at-ba-lam 
6. i-na _u4 1(u) 4(disz)-kam_ sza _iti NE-NE-gar_ a-na sze-e szu-ut-_sipa-mesz_{ki} 
7. pa-sza-ri-im qa2-ti a-sza-ak-ka-an 
8. asz#-szum sza um-ma be-li2-ma sza isz-ku-un-{d}en-lil2{ki} 
9. i-na pa-ni-ka sze-am am-mi-ni ik-mi-su-nim 
10. isz-tu du#-ri-im ma-ti-ma sze-am# i-na pa-ni-ia# 
11. u2-ul ik-mi-su-nim {disz}a-pil2-{d}ki-it-tum# 
12. _dumu_ hi-IZ-BI-SZI 5(disz) szu-szi _sze gur_ sza# a-na# x [x (x)] 
13. u3 i-na zu-mur _iri{ki}_ 2(disz) szu-szi x [...] 
14. _iri{ki}_ ka-lu-szu a-na szu-nu-szi-im-ma x [...] 
15. isz-tu sze-um a-na ma-asz-ka-nim i-lu-u2 
16. _3(u) aga-us2-ta-am3_ i-na ma-ah-ri-szu-nu# 
17. u2-ul ip-pa-at,-t,a-ru a-na-ku i-na# _lu2# hun-ga2-mesz#_-ma 
18. am-ta-ah-ha-as, i-na pa-ni-ia ki-i#-[x]-x-ka-am 
19. asz-szum sze-e hal-hal-la{ki} sza [x x (x)] x x [...] 
20. x [x x x x x (x)] x-ni#-isz [...] 
$ rest broken 
@reverse 
1. a-di# i-na#-an#-na# x [...] 
2. sze-e be-li2-ia ki-ma x [...] 
3. sze-um sza i-na iri-{d}gu-la#[{ki} ...] 
4. ib-ba-szu-u2 _5(gesz2) 3(u) sze gur {gesz#}ban2#_ {gesz#}me-sze-qum# 
5. sza a-na zimbir{ki} il-li-kam 
6. _1(gesz2) sze gur {gesz}ban2_ {gesz}me-sze-qum a-na _al-du3_ 
7. in-ne-ez-ba-am 
8. _szunigin 6(gesz2) 2(u) 1(asz) 5(ban2) sze gur {gesz}ban2#_ [{gesz}me]-sze#-qum 
9. sza i-na iri-{d}gu-la{ki} ib-ba-szu-[u2 ...] 
10. asz-szum tup-pi2 sza a-na ig-mil-{d}suen# [...] 
11. szu-bu-lim sza a-na be#-li2#-ia# [x x (x) (x)] 
12. asz-pur-am-ma um#-[ma be-li2-ma] 
13. tup-pa-am a-na ig-mil-{d}suen# [...] 
14. usz-ta-bi-lam tup-pi2 be-li2-ia mi-im#-ma# 
15. a-na ig-mil-{d}suen u2-ul il-li-kam 
16. tup-pi2 be-li2-ia a-na ig-mil-{d}suen 
17. ar-hi-isz li-il-li-kam-ma 
18. sze-am lu-ut-ba-lam 

Primary publication: AbB 12, 032
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097240
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510557
Transliteration:
&P510557 = AbB 12, 032 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}nanna-in-du8 
2. qi2-bi2-ma 
3. um-ma {d}iszkur#-ma-gir 
4. [a-hu?-ka]-a-ma 
5. [{d}]utu# u3 {d}marduk da-ri-isz 
6. _u4_-mi li-ba-al-li-t,u2-ka# 
7. _sze-gesz-i3_ a-sza-am-ma 
8. a-na _sag-geme2_ ru-ku-sa-ku 
9. _1/3(disz) ma-na 1(disz) gin2 ku3-babbar na4_ {d}utu 
10. 2(disz) gin2 _ku3-babbar_ u2-lu 3(disz) gin2 _ku3-babbar_ 
11. a-na mu-uh-hi 
12. ri-ik#-si2-im 
13. {disz}{d}suen-i-ta-szu 
14. li-re-di 
@reverse 
1. {disz}{d}suen-i-din#-nam# 
2. u3 {d}suen-i-ta-szu 
3. it-ti-ka 
4. li-il5-li-ku-ma 
5. _sag-geme2_ szu-ba-ri-ta 
6. sza du-un-nu-na-at 
7. u2 s,e2-eh-re-et 
8. sza u2-ba-lu 
9. sza-ma-am 
10. u2-la-szu-ma 
11. _sze-gesz-i3_ sza a-sza-mu 
12. [u2]-ul# i-na-ad-di-nu-ni 
13. gi#-im-la-an-ni 
@left 
1. pi2#-ia la i-sa3#-ra#-ar 
2. sza# u2-zu-be2-e# i-szu-u2 

Primary publication: AbB 12, 033
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097459
Accession no.: 
Provenience: uncertain (mod. uncertain)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20160211 cdliadmin
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P497777
Transliteration:
&P497777 = AbB 12, 033 
#atf: lang akk 
@tablet 
@obverse 
1. [a-na] {d}nanna-in-du8 
2. [qi2]-bi2-ma 
3. [um-ma] {d}iszkur-na-s,ir-ma 
4. [{d}utu] li#-ba-li-it,-ka 
5. [a-nu-um]-ma# e-ri-isz-sag-il2# 
6. [at,]-t,ar#-da#-ak-kum 
7. ma#-la-ma i-ir-ri-szu-ka 
8. la# ta#-ka-al-la-szi-im 
@reverse 
1. u3 a-wi-la-tim 
2. sza i-la-ka-ni-ik-kum 
3. ka-ni-kam szu-zi-ib-szi-na-ti 

Primary publication: AbB 12, 034
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097221
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510558
Transliteration:
&P510558 = AbB 12, 034 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}nanna-in-du8 
2. [qi2]-bi2-ma 
3. um-ma a-wi-il-{d}mar-tu-ma 
4. {d}utu u3 {d}marduk li-ba-al-li-t,u2-ka 
5. asz-szum _uruda hi-a_ sza aq-bu-kum 
6. a-nu-um-ma {disz}{d}iszkur-ha-ze2-er 
7. at,-t,ar-da-ak-kum 
8. _uruda hi-a_ sza aq-bu-kum 
9. szu-bi-la-asz-szu 
10. la ta-ka-al-la-a-szu 
@reverse 
1. asz-szu-mi-ka a-na ma-am-ma-an 
2. sza-ap-ti-ia u2-ul x-[x]-x-isz 
3. e-bu-ru-um qe2-ru#-ub# 

Primary publication: AbB 12, 035
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097545
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510559
Transliteration:
&P510559 = AbB 12, 035 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}nanna-in-tu-uh 
2. qi2-bi2-ma 
3. um-ma a-wi-li-ia-ma 
4. {d}utu u3 {d}marduk li-ba-al-<li>-t,u2-ka 
5. a-na gu-sa-nim 
6. sza ma-ah-ri-ka# 
7. {mi2}be-le-su#-nu# a-ha#-ti# 
8. u3 ma-si-ik-tam 
@reverse 
1. at,-t,ar-da-ak-kum 
2. gu-sa-nam 
3. i-di-in 
4. la ta-ka-la-szi-na#-ti 

Primary publication: AbB 12, 036
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097334
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510560
Transliteration:
&P510560 = AbB 12, 036 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}nanna#-[in-du8] 
2. qi2-bi2-[ma] 
3. um-ma be-el-ta-ni#-ma# 
4. {d}i-szar-ki-di-SU u3 {d}ma-mi ka-la-tum 
5. asz-szu-mi-ia da-ri-isz _u4_-mi 
6. li-ba-al-li-t,u2-ka 
7. u3 {d}utu sza mah-ri-szu wa-asz-ba-a-ta 
8. a-na na#-s,a#-ri#-ka# a-ia i-gu 
9. isz-ti-isz#-[szu szi-ni-szu?] x _hi-a_ 
10. u2-ul tu-sza-bi#-la#-[am] 
11. u3 am-sza-li _1(disz) gin2 ku3-babbar_ 
12. i-nu-ma ta-al-li-kam 
@reverse 
1. u2-ul ta-ad-di-na-am 
2. a-na a-wi-il-tim {disz}be-el-ta-ni 
3. dumu-[munus x] x ra _3(disz) gin2 ku3-babbar_ ka-an-kam 
4. a-na ra-ma-[ni]-ka# _1(disz) gin2# ku3-babbar_ 
5. ka-an-kam a-na x x-nim-ma# szu-bi-lam 
6. u3 asz-szum t,e4-mi-im sza tu-up-szi-ki#-im!(NIM) 
7. s,u2-ha-ar-tam!(TUM) tup-pa-am an-ni-a-am 
8. u2-ul u2-sza-bi-la-kum 
9. na-ka-ar-tam u2-sza-bi-la-kum# [(x)] 
10. s,i-bu-tum mi-im-ma im-qu2#-[ta-ni] 
11. a-na ki-a-x [...] 

Primary publication: AbB 12, 037
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097538
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510561
Transliteration:
&P510561 = AbB 12, 037 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}nanna-in-du8 
2. qi2-bi2-ma 
3. um-ma be#-el#-ta-ni-ma 
4. {d}utu u3 {d}i-szar-ki-di-SU 
5. li-ba-al-li-t,u2#-ka 
6. a-na nam#-<ra>-{d}sze-rum s,u2-ha-ri-im a-hi-ia 
7. 1(barig) sze-a-am i-di-isz-szum-ma 
8. _u4 5(disz)-kam_ li-ib-ta-li-it, 
@reverse 
1. an-ni-a-am a-na gi-mi-il-li-im# 
2. szu-uk-nam 
3. a-di a-ap-pa-lu-ka 
4. ka-ni-ki ki-il# 

Primary publication: AbB 12, 038
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097234
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510562
Transliteration:
&P510562 = AbB 12, 038 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}nanna-in-du8 qi2-bi2-ma 
2. um-ma ib-ba-tum!(TIM) a-hu-ka-a-ma 
3. {d}utu u3 _dingir_-ka asz-szu-mi-ia li-ba-al-li#-t,u2#-ka 
4. ki-ma ia-ah-su-uk-dingir i-la-kam-ma 
5. tup#-pa-ka la ub#?-ba-la-asz-szu-u2-ma 
6. an#-ni-it-ka la an-ni-it-ka 
7. i-na# pa-ni-tim a-na a-<ma?>-az{ki} ta-al-li-ik-ma# 
8. _sza3_ ma-tim _iti 1(disz)-kam_ tu-szi-im-ma 
9. ma-ti-ma tup-pa-ka u2-ul il-li-kam 
10. u3 a-na di-na-tim ta-ta-ap-la-an-ni 
11. sza bi-ri-it _u4_-mu-ka-al 
12. a-la-ki-im u2-ul ta-asz-pu-ra-am 
@reverse 
1. i-na#-an-na isz-tu _sza3_ ma-tim _iti 1(disz)-kam_ 
2. wa#-asz#-ba#-ta-ma u2-ul# ta-asz-pu-ra#-am 
3. a-nu-um-ma {disz}ia-ah-su-uk-dingir 
4. _3(u) 2/3(disz) ma-na 8(disz) gin2 an-na-kam_ 
5. usz#-ta#-bi-la-ku-nu-szi!(SZU) 
6. [a-sza]-ri-isz id-na-szu-u2-ma# 
7. _ku3-babbar_-szu-u2 i-na ku-nu#-ka-ti-ku-nu 
8. li-ka#-ni-ik a-na _tug2 hi-a ku3-babbar_ it-ta-ab-szi 
9. szum-ma sza#-li?-im <<KI>> 
10. _dingir_-lam sza-al-ma a-li-ik 
11. szum-ma a-sza-ri-isz _ku3-babbar_ i-ba-szi 
12. a-na _5(disz) gin2_ a-i-di-in 
13. _tug2 hi-a_-tu-ka u2-ul an-ni-ki-am# [(x)] 
14. mi-de {disz}dumu-{d}utu i-la#-[ka-ku]-um#-ma _tug2 hi-a_-ti-szu 
15. i-ri-isz-ka um-ma# [at-ta]-a-ma i-na _{gesz}ma2?_-[ma?] 

Primary publication: AbB 12, 039
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097311
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510563
Transliteration:
&P510563 = AbB 12, 039 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}nanna-in-du8 qi2-bi2-ma 
2. um-ma ib-ba-tum a-hu-ka-ma 
3. {d}utu u3 {d}marduk li-ba-al-li-t,u2-ka 
4. s,u2!-ha-rum {disz}be-el-szu-nu _dumu_ a-hi-ia 
5. a-na di-nim i-ga-ra-ni-a-ti 
6. asz-szum a-wa-tim sza i-din-{d}nu-musz-da 
7. _dumu_ a-ta-a sza i-na a-ba-tim{ki} 
8. is,-ba-ta-ni-ma um-ma szu-u2-ma 
9. _1(u) 2(disz) gin2 ku3-babbar_ e-li {disz}u2-te-e 
10. a-hi-ka i-szu 
11. a-na ni-isz _dingir_ 
12. i-di-nu-ni-szu-ma it-mu-ma 
@reverse 
1. _1/3(disz) ma-na 5(disz) gin2 ku3-babbar_ 
2. asz-szu-mi-ia {disz}{d}da-gan-zi-im-ra-ti 
3. _ku3-babbar_ isz-qu2-lu a-nu-um-ma 
4. a-na e-ri-ib-sin u3 s,il2-li2-{d}be-el-szinig# 
5. asz-tap-ra-am i-zi-iz-ma 
6. a-wi-lam {d}da-gan-zi-im-ra-ti 
7. a-na _e2_ {d}utu es-ra-ma 
8. i-na _e2_ {d}utu szi-bu-su 
9. li-iq-bi-ma hi-si ku-nu-ka-ti-szu-nu 
10. li-qe2-ma ri-isz-ni 
11. li-ki-il5 a-na a-wa-tim 
12. an-ni-tim a-ah-ka 
@left 
1. la-a ta-na-di ma-di-isz 
2. s,i2-ri-im 

Primary publication: AbB 12, 040
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097425
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510564
Transliteration:
&P510564 = AbB 12, 040 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}nanna-in-du8 
2. qi2-bi2-ma 
3. um-ma ib-ba-tum-ma 
4. _{d}utu_ u3 _{d}marduk_ li-ba-al-li-t,u2-ka 
5. sza-al-ma-a-ku 
6. i-na ia-ab-li-ia{ki} a-na-ku 
7. da-mi-iq e-pe2-szu-ma 
8. an-nu-um sza te-pu-sza-an-ni 
9. sza i-na pa-ni wa-s,i2-ti-ia 
10. la ni-in-na-am-ru 
@reverse 
1. a-na _e2_-ti u3 s,u2-ha-ri 
2. la te-gi pi2-qa-at 
3. a-na tu-up-szi-ki-im# 
4. _e2_-ta-am u2-da-ba-bu-u2 
5. _1(disz) gin2 ku3-babbar_ a-sza-ar 
6. {disz}{mi2}ta-ri-ib-tum 
7. i-qa-bu!(BI)-ku-um 
8. i-di-in 
$ single ruling 

Primary publication: AbB 12, 041
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097449
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510565
Transliteration:
&P510565 = AbB 12, 041 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}nanna-in-du8 
2. qi2-bi2#-ma 
3. um#-[ma] ib#-ba-tum a-hu-ka-ma# 
4. {d}utu u3 {d}marduk li-ba-al-[li]-t,u2#-ka 
5. asz-szum {disz}{d}da-gan-zi-im#-[ra-ti] 
6. sza# asz-pu-ra#-[ak-kum] 
7. [a]-nu-um-ma zi-[...] 
8. [(x)] x el da [...] 
@reverse 
1. a-na e-ri-ib#-sin# 
2. usz#-ta-bi-lam# 
3. [a-wi]-lam# {disz}{d}da-gan-zi-im#-[ra-ti] 
4. [a-na?] _e2_ {d}utu szu-ri-ba-am# 
5. szi#-bu-su li-iq-bi-ma 
6. hi-si ku-nu-ka-tim 
7. sza a-wi-li-i 
8. li-qe2 

Primary publication: AbB 12, 042
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097492
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510566
Transliteration:
&P510566 = AbB 12, 042 
#atf: lang akk 
@tablet 
@obverse 
1. a-[na] {d}nanna-in-du8 qi2-bi2-ma 
2. [um]-ma ib-ba-tum-ma 
3. [{d}]utu# u3 {d}marduk# li#-ba#-al-li-t,u2-ka 
4. [asz]-szum# a-wa-tim an-ni-tim!(IM) 
5. [tup]-pa-am isz-ti-isz-szu-u2 tu-sza-bi-lam-ma 
6. [x] BI ta-tu-ur-ma u2-ul tu-sza-bi-lam 
7. szum#-ma _ku3-babbar_ i-ri-szu-ka 
8. a-[nu]-um#-ma _2(disz) ma-na ku3-babbar_ sza-ki-in 
9. x-szu-u2 u3 x bu x [x (x)] 
10. la# te-gi e-hi-id 
11. [a]-na# a-wa-tim 
@reverse 
1. [an]-ni#-a-tim ni-di a-hi-im# 
2. la# ta-ra-asz-szi 
3. a-na _u4 2(disz)-kam_ ka-asz-da-ka 
4. me-hi-ir tup-pi2-ia 
5. szu#-bi-lam 
6. {disz}a-pil2-i3-li2-szu u3 ri-isz-{d}utu 
7. szu-bi-lam!(IB) 

Primary publication: AbB 12, 043
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097340
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510567
Transliteration:
&P510567 = AbB 12, 043 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}nanna-in-du8 
2. qi2-bi2-ma 
3. um-ma i3-li2-isz-me-a-an-ni-ma 
4. {d}utu u3 {d}marduk da-ri-isz _u4_-mi 
5. li-ba-al-li-t,u2-ka 
6. x-du i-na _3(u) erin2-mesz_ 
7. li#-id-di-nu-ni-im 
8. [tup]-pa-am it-ta-ad-nu-nim 
9. [x x] mu#-ri a-na-ku u3 szu-u2 
10. [x x x] x x [x x] x ni 
11. [...] 
12. [...] 
@reverse 
1. [...] x-al-li-a-am 
2. [...] ia#? _sag-us2_ 
3. [...] i-in-ka 
4. [x x x x (x)] _e2-gal_ x u3 sza-ar-ra-am 
5. [...] x e-bu-ri-im 
6. [ta-at]-ta#-na-asz-szi-a-an-ni# 
7. [i-na] e-bu-ri-im 
8. [a]-pa#-al-ka 
9. szu#-[lu]-um-ka szu-up-ra 

Primary publication: AbB 12, 044
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097169
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510568
Transliteration:
&P510568 = AbB 12, 044 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}nanna-i-in-tu-uh 
2. qi2-bi2-ma 
3. um-ma ip-qu2-{d}sza-la-ma 
4. {d}utu u3 {d}marduk li-ba-al-li-t,u2-ka 
5. _5(disz) sila3 i3-gesz_ sza it-ti-ia 
6. il-qu2-nim _sag-geme2_ 
7. it-ta-ba-ak 
8. a-nu-um-ma a-pil-ku#-bi 
9. at,-t,ar-da-kum 
10. _1(disz) sila3 i3-gesz_ sza pi2-sza-ti-im# 
11. szu-bi-lam 
12. {disz}ta-ri-bu-um 
13. um-ma szu-u2-ma 
14. a-la-ak a-hi a-ta-ra#-am 
@reverse 
1. u2-ul il-li-ik 
2. qi2-bi-szum-ma 
3. li-il-li-ik-ma 
4. a-ha-szu li-it-ra-am-ma 
5. la#-ma# at-ta-al-ku 
6. ni-ka-si-szu-nu 
7. li-pu-szu 
8. [me]-hi#-ir tup-pi2-ia 
9. szu-bi-lam 

Primary publication: AbB 12, 045
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097165
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510569
Transliteration:
&P510569 = AbB 12, 045 
#atf: lang akk 
@tablet 
@obverse 
1. a-na a-hi-ia sza# {d}[marduk u2]-ba#-al-la-t,u2-szu 
2. qi2-bi2-ma 
3. um-ma ip-qu2-{d}sza-la-ma 
4. {d}utu u3 {d}marduk li-ba-al-li-t,u2-ka!(KI) 
5. lu sza-al-ma-ta lu ba-al-t,a3-ta 
6. _dingir_ na-s,i-ir-ka re-esz-ka 
7. a-na da-mi-iq-tim li-ki-il 
8. a-na szu-ul-mi-ka asz-pu-ra-am 
9. szu-lum-ka ma-ah-ri {d}utu u3 {d}marduk 
10. lu da-ri 
11. ki-a-am ta-aq-bi-a-am um-ma a-ta-ma# 
12. ki-ma a-na _iri_ zimbir{ki}-ma u2-x-x (x) 
13. t,e4-mi a-sza-pa-ra-ak-ku-[um] 
14. szu-lum-ka u2-ul ta-asz-pu-ra-am# 
15. asz-szum# {gi}ku-ru-pe2-e asz-szum ha nu x 
16. [(x)] x x-mi asz-szum sza-ma-asz-ki#-li# 
17. sza# u2-na-i-du-ka szu-usz-qu2-ul# 
18. a-nu-um-ma {d}marduk-mu-sza-lim# 
19. tup#-pi2 usz-ta-bi-la#-ak#-ku-um# 
20. u3 {gi}ku#-ru#-pe2#-e ha nu x 
21. x x tim x ma BI ma [(x) (x)] 
22. szu-bi-lam u3 ki-ma sza a-na-ku 
23. al-li-ka#-am a-na pa-ni-szu 
24. i-zi-iz 
25. u3 _a-sza3_ DISZ sza ta mi ir? ia a-di [u2-ul] 
26. a-s,a-mi-id szu-lum-ka ar-hi#-[isz] 
27. szu-up-ra-am u3 me-hi-ir tup-pi2-ia 
28. szu-bi-lam 
$ single ruling 

Primary publication: AbB 12, 046
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097317
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510570
Transliteration:
&P510570 = AbB 12, 046 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}nanna-in-du8 
2. qi2-bi2-ma 
3. um-ma si2-ki-il-tum-ma 
4. {d}utu u3 {d}marduk li-ba-al-li-t,u2-ka 
5. i-nu-ma al-li-ka#-am# 
6. _4(barig) 5(ban2) gur kasz_ i-na# [x x (x)] x-ri-im [x (x)] 
7. _3(ban2) kasz_ a-na zimbir#[{ki}] 
8. ub-lu-[nim] 
9. _1(barig) 4(ban2) sze_ a-na x [x x (x)] 
10. u2-ul ta-ad#-[di-in (x) (x)] 
11. _1(barig) 4(ban2) kasz_ a-na si-ia-[tum] 
12. i-di-in 
@reverse 
1. [x] _sze_ a-na x-mu-sza-li#-[im] 
2. [i]-di-in 
3. [la] ta#-ka-al-la szi-ma-am# 
4. [it]-ti#-szu-nu la-qi2-a-ku# x [x (x)] 
5. [x x (x)] x bi-la-asz#-[szu (x)] 
6. [x x (x)] x an-ni-im# [(x)] 
7. [x x (x)] _u4 2(disz)-[kam_ ...] 
8. _x hi#-[a_ i-na] _e2_-ti-szu-nu 
9. el-qi2 la# ta#-ka-la-szu-nu-szi#-[im] 

Primary publication: AbB 12, 047
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097116
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510571
Transliteration:
&P510571 = AbB 12, 047 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}nanna-in-du8 
2. qi2-bi2-ma 
3. um-ma {d}suen-i-din-nam-ma 
4. {d}utu u3 {d}marduk li-ba-al-li-t,u2-ka 
5. a-wi-lu-u2 _lu2_ ma-an-ki-sum2{ki} 
6. sze-a-am sza il-qu2-nim 
7. a-na s,i-bu-tim isz-ta-ak-nu-u2-ma 
8. sze-a-am ha-asz-hu-u2 
9. _1(u) sze gur_ i-di-isz-szu-nu-szi-im-ma 
10. {disz}be-el-szu-nu ra-bi-a-nu-um 
11. u3 szi-bu-ut# _iri#{ki#}_ 
@reverse 
1. ka-ni-kam li-zi-bu#-nim# 
2. szum-ma szu-nu-ti 
3. tu-sa3-al-li-im-szu-nu-ti 
4. a-na-ku it-ti-szu-nu 
5. ka-ni-kam lu-zi-ba-kum 
6. ma-ti-ma a-na s,i-bu-tim 
7. u2-ul asz-pu-ra-kum 
8. u3 szum-ma 
9. it-ti ib-ri-ka 
10. ta-ma-ra-am 
11. a-na sza asz-pu-ra-kum 
12. la tu-usz-ta-ha 
13. i-na an-ni-tim at-hu-<ut>-ka# 
14. lu-mu-ur 

Primary publication: AbB 12, 048
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097121
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510572
Transliteration:
&P510572 = AbB 12, 048 
#atf: lang akk 
@tablet 
@obverse 
1. [a-na] a-wi#-lim sza {d}marduk u2-ba-al-la-t,u2-szu 
2. qi2#-bi2-ma 
3. um-ma {d}suen-i-din-nam-ma 
4. {d}utu u3 {d}marduk li-ba-al-li-t,u2-ka# 
5. lu-u2 sza-al-ma-a-ta 
6. lu-u2 ba!(SZA)-al-t,a-a-ta# 
7. asz-szum _numun szum2-sikil{sar#}_ 
8. sza aq-bu-ku-um 
9. u2-ul ru-qa2-a-ku-u2-ma 
10. a-na ka-ap-ri-im 
$ at least 2 lines broken 
@reverse 
1. al-li-ik#-[ma] 
2. a-di i-na#-[an]-na# u2-[ul x x (x)] 
3. a-nu-um-ma isz-me-{d}suen# _na-asz-bar_ 
4. asz-tap-ra-ku-um 
5. _5(disz) sila3 numun szum2-sikil{sar}_ 
6. szu-bi-lam 
7. re-qu2-us2-su la ta#-t,ar#-ra#-da#-asz-szu 
8. [asz]-szum# _numun_ an-ni-im 
9. [isz]-tu# _mu 2(disz)-kam_ aq-bi-kum 

Primary publication: AbB 12, 049
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097469
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510573
Transliteration:
&P510573 = AbB 12, 049 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}nanna-in-du-uh 
2. qi2-bi2-ma 
3. um-ma {d}za-ba4-ba4-ba-ri-ma 
4. {d}utu u3 {d}marduk li-ba-li-t,u2-ka 
5. a-nu-um-ma {d}za-ba4-ba4-a-sza-re-ed 
6. _1/2(disz) gin2 1(u) sze ku3-babbar na4_ {d}utu usz-ta-bi-la#-[kum] 
7. ka-ra-at i-la-ku 
8. sza-ma-szu#-ma 
9. ku-un-ka-ma szu-bi-lam 
@reverse 
1. i-na <<an-na>> an-ni-tim a-hu!-ut-ka 
2. lu-mur x x x x qa2-tim 
3. szu#-[bi]-lam# 
$ rest broken 

Primary publication: AbB 12, 050
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097082
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510574
Transliteration:
&P510574 = AbB 12, 050 
#atf: lang akk 
@tablet 
@obverse 
1. a-na in-ba-tum 
2. u3 {d}iszkur-na-s,ir 
3. qi2-bi2-ma 
4. um-ma {d}nanna-in-du8-ma 
5. {d}utu u3 {d}marduk li-ba-li-t,u2-ku-nu-ti 
6. a-na s,i2-bu-tim sza al-li-kam 
7. a-di-ni s,i2-bu-ti u2-ul e-pu-usz 
8. tup-pi2 i-na a-ma-ri-im 
9. {disz}{d}iszkur-na-s,i-ir! u3 {d}iszkur-nu-ri 
10. a-la-kam li-pu-szu-nim 
11. a-na sze-e-im sza-mi-im 
12. an-ni-ki!-a-am u2-ul i-ba-asz-szi-ma 
13. a-na _iri_ i-szi-in{ki} 
@reverse 
1. at-ta-la-ak 
2. a-na _e2_ la te-gi-i 
3. szum-ma sze-a-am la ti-sza-a 
4. _ku3-babbar_ sza ta#-am-ta-ha-ra 
5. s,u2-ha-rum li-di-im-ma sze-a-am 
6. li-sza-ma-ku-nu-szi-im 
7. szum-ma _sze-gesz-i3_ a-na s,a-ha-tim 
8. ta-ad-di-na _i3-gesz_ ma-ah-ru-um-ma 
9. la-ma e-bu-ri-im szu-di-na 
10. szum-ma nu-ur2-{d}mar-tu 
11. it-ta-al-ka-am-ma _siki hi-a_ na-szi 
12. um-ma at-ta-a-ma _5(disz) gu2-un siki hi-a_ 
13. a-na {d}nanna-in-du8 u2-s,u2-ur 
14. szum-ma szi-ma-am na-szi 
@left 
1. 1(disz) szi-ma-am li-s,u2-ra-am 
2. t,e4-ma-am an-ni-a-am {disz}{d}iszkur-na-s,ir li-ib-la-am [(x)] 

Primary publication: AbB 12, 051
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097137
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510575
Transliteration:
&P510575 = AbB 12, 051 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}suen-e-ri-ba-am 
2. qi2-bi2-ma 
3. um-ma a-wi-il-dingir-ma 
4. {d}utu u3 {d}marduk da-ri-isz _u4_-mi 
5. li-ba-al-li-t,u2-ka 
6. _ku3-babbar_ a-na _tug2 hi-a_ ka-ZI-i-ma 
7. _tug2 hi-a_ sza na-da-nim 
8. a-di-in-ma sza-pi2-il-ti 
9. _tug2 hi-a_-ia i-na i-ma-ar{ki} 
10. _dam#-gar3_-ru-ta-am 
11. [i]-na# qa-tim ta-ki-il-tim 
12. ag#-mu-ur-ma 
13. a-na ha-szi-im{ki} 
@reverse 
1. a-na _ku3-babbar_ ma-ha-ri-im 
2. a-ta-s,i2 
3. a-nu-um-ma _6(disz) ma-na ku3-babbar_ 
4. sza am-hu-ru ri-isz-{d}utu 
5. usz-ta-bi-la-kum 
6. _3(disz) ma-na ku3-babbar_ ku-nu-ku-ia 
7. la i-pe2-tu-u2 
8. u3 _3(disz) dug_ he-el-di-tum 
9. a-na i-bi-{d}nin-szubur 
10. {disz}a-pil2-i3-li2-szu 
11. u3 {disz}ib-ba-tum 
12. ta-sza-si-i-ma 
13. ta-na-di-in 
@left 
@column 1 
1. _3(disz) ma-na ku3-babbar_ 
2. a-sza#-ar 
@column 2 
1. ni-it,-li-ka ta-na-di-in# 
2. _ku3-babbar masz2_ la i-ka-s,a-ra-na#-szi-im 

Primary publication: AbB 12, 052
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097215
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510576
Transliteration:
&P510576 = AbB 12, 052 
#atf: lang akk 
@tablet 
@obverse 
1. a-na _{d}suen_-e-ri-ba-[am qi2-bi2]-ma 
2. um-ma a-wi-il-_dingir_-ma _{d}[utu_ li]-ba#-al-li-it,-ka 
3. sza-al-ma-a-ku 3(disz) szi-ma-am# 
4. a-sza-am-ma u2-ul at,-ru-da-kum 
5. um-ma a-na-ku-u2-ma# it-ti-szu-ma 
6. szi-ma-am sza ru-di-im lu#-re-di-i-ma 
7. lu-ut-ta-la-ak# i-na e-ri-ib-ti 
8. gi-ri-im ma-ah-ri-tim 
9. sza i-ru-ba-am szi-ma-am# 
10. sza i-ma-qu2-ta-am 
11. szum-ma {d}utu it-ba-lam a-sza-ma-am-ma 
12. ar-hi-isz at-ta-la-kam 
13. di-in _{d}utu_ a-nu-um 
14. i-pe2-szum sza te-pu-szu 
15. szum-ma a-wi-lum 
@reverse 
1. a-wi-lam-ma la i-de 
2. ki-a-am i-pi2-isz a-wi-lum 
3. {disz}{mi2}ba-ka-tum <<x>> _siki_ 
4. u2-ul i-szu-ma _ku3-babbar_ i-ri-isz-ka-ma 
5. _ku3-babbar_ u2-ul ta-na-di-szi-im 
6. u2-lu-u2-ma _siki_ u2-ul ta-sza-am-szi 
7. a-na mi-nim e-te-pu-sza-am 
8. an-ni#-a-am# te-te-ne-pi2-isz 
9. u3 sze#-[a]-am# sza u2-na-i-du-ka 
10. u2-ul# [ta-asz]-pu#-ra-am 
11. a-na# [x]-szi#-im-ma ta-asz-ta-ka-an 
12. 4(disz) szi-ma-am sza bi-ri-ni 
13. a-na {disz}i3-li2-u3-{d}utu a-di-nam 
14. _ku3-babbar_ szi-i-im-szi-na 
15. sza TE KU u2 _ku3-babbar_-am 
16. ma-li _ku3-babbar_-im 
@left 
@column 1 
1. li-ih-ru-AZ-ma 
2. sza#-pi2-il-ti 
@column 2 
1. _ku3-babbar_ ba-am-ta-am 
2. li-di-na-kum 
3. u3 ga-mi-ir 
@column 3 
1. szi-mi-ka 
2. hu-ru-AZ 

Primary publication: AbB 12, 053
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097310
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510577
Transliteration:
&P510577 = AbB 12, 053 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}suen-e-ri-ba-am 
2. qi2-bi2-ma 
3. um-ma a-wi-il-dingir-ma {d}utu li-ba-al-li-it,-ka 
4. a-nu-um sza u2-na-i-du-ka 
5. um-ma a-na-ku-u2-ma ki-ma e-re-bi-ka 
6. _ku3-babbar_ qa-ti a-wi-li-im u2-su-uh 
7. _ku3-babbar_ qa-ti a-wi-li-im 
8. u2-ul ta-su-uh u3 _ku3-babbar masz2_ u2-s,a-ab 
9. di-in {d}utu e-pe2-szum a-nu-um 
10. sza te-pu-szu szum-ma _ku3-babbar_ qa-ti 
11. a-wi-li-im a-di-ni la ta-na-sa-ah 
12. _ku3-babbar_ qa-ti a-<wi>-lim u2-su#-uh 
13. u3 t,e4-em-ka ar-hi-isz 
14. szu-up-ra-am 
@reverse 
1. u3 sza-pi2-il-ti _ku3-babbar_ 
2. sza i-na qa-ti-ka i-ri-hu 
3. _1(disz) sze ku3-babbar_ a-na ma-ma-an 
4. ba-lu-ia la tu-szi-s,i2 
5. _1(disz) sze ku3-babbar_ tu-szi-s,i2-ma 
6. a-pa-li-ia u2-ul te-le-i 
7. u3 szi-mu-um u2-ul i-ba-asz-szi-ma 
8. u2-ul at-ta-al-kam 
9. {disz}i-lu-{d}utu szi-ma-am 
10. sza i-ba-asz-szu-u2 
11. i-la-qe3-a-ma a-na 5(disz) _u4_-mi 
12. i-la-kam u3 a-na-ku ri-isz e-ri-ib-ti 
13. sza i-ru-ba-am u2-qa2 
14. szum-ma szi-mu-um 
@left 
1. im-ta-aq-tam 
2. ar-hi-isz 
3. at-ta-la-kam 
4. sza ar-hi-isz 
5. at-lu-ki-im 
6. i-na qa-ti-ia# 
7. s,a-ab-ta-ku# 

Primary publication: AbB 12, 054
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097418
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510578
Transliteration:
&P510578 = AbB 12, 054 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}suen-e-ri-ba-am 
2. qi2-bi2-ma 
3. um-ma a-wi-il-dingir-ma 
4. {d}utu u3 {d}marduk li-ba-al-li-t,u2-ka 
5. sza-al-ma-a-ku 
6. _tug2 hi-a_-ti-ia at-ta-di-in 
7. u3 a-na-ku a-na a-szu-ur{ki} 
8. at-ta-s,i2 _{gesz}ma2_ sza _{na4}ur5_ 
9. {disz}a-da-ia-tum a-hu-ka 
10. ra-ki-ib i-na _{gesz}ma2_ 
11. szi-a-ti ba-am-tum!(TAM) 
@reverse 
1. i-ia-tu#-un 
2. lu-u2 lu2 at#-ta 
3. it-ti-szu ri-ka-am-ma 
4. _{na4}ur5 hi-a_ bu-ri-a-ma 
5. ba-ma-at ri-ik-si-im 
6. u3 sza i-ba-asz-szu-u2 
7. ma-ha-as, 
8. asz-tap-ra-kum lu-u2 _lu2_ at-ta 
9. _{na4}ur5_ isz-te-en6 
10. dam-qa2-am u2-su-uq-ma 
11. a-na _e2_ i-di-in 

Primary publication: AbB 12, 055
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097531
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510579
Transliteration:
&P510579 = AbB 12, 055 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}suen-e-ri-ba-am 
2. qi2-bi2-ma 
3. um-ma a-wi-il-dingir-ma 
4. {d}utu u3 {d}marduk li-ba-al-li-t,u2-ka 
5. sza-al-ma-a-ku 
6. a-na ia-ab-li-ia{ki} 
7. e-te-ru-ub 
8. i-la-ta#-am ak-ta-asz-da-am 
9. it-ti i-la-tim 
10. nu-ta-ka-al-ma# 
11. nu-s,i2 
@reverse 
1. _dug_ na-asz-pa-ka-am 
2. sza {disz}i-lu-{d}utu 
3. u2-sza-bi-lam 
4. i-na _e2_ {disz}s,il2-li2-{d}be-el-szinig 
5. li-sza-ki-in 
6. u3 a-na hi-szi-ih-tim 
7. sza {disz}ba-ka-tim 
8. i-zi-iz 
9. szum-ma {d}utu iq-ta-bi 
10. a-na-ku ar-hi-isz 
11. at-ta-la-kam 
@left 
1. _lu2_ a-wi-lum 
2. at-ta 

Primary publication: AbB 12, 056
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097552
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510580
Transliteration:
&P510580 = AbB 12, 056 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}suen-e-ri-ba-am 
2. qi2-bi2-ma 
3. um-ma lu2-dingir-ma 
4. {d}utu u3 {d}marduk li-ba-al-li#-t,u2#-ka 
5. sza-al-ma-a-ku mi-im-ma 
6. la ta-na-ak-ku#-ud 
7. _ku3-babbar_ u2-ul im-hu-ra-an-ni-ma 
8. a-na sa-ma-nim{ki} e-te-tu-uq 
9. asz-szum _sag-ARAD_ sza a-na {disz}su-um-ma-dingir 
10. ad-di-nu _sag-ARAD_ sza-a-tu 
11. it-ti su-mu-ha-am-mu 
12. su-ha-yi-im a-na szu-ba-ri 
13. a-sza-am 
@reverse 
1. szi-bu-ia {disz}a-ba-a 
2. _dumu_ {d}we-er-i-din-nam 
3. {disz}ip-qa2-tum tap-pu-szu 
4. u3 i-tu-ur-asz-du-u2 
5. a-pi-isz {disz}su-mu-ha-am-mu 
6. i-na babila2# wa-asz-bu 
7. a-li#-ik# tu-ra-asz-szu-ma 
8. szi-bu-szu li-iq-bu-ma 
9. a-wa-tum szi-na li-iq-qa2-bi-ia 
10. a-pi-isz _lu2_ i-na babila2# 
11. wa-asz-bu ni-di a-hi 
12. la ta-ra-asz-szi [(x)] 
13. a-wa-tim szi-na-ti 
@left 
1. gu-mu-ur _sag-ARAD_ a-na _1(u) 9(disz) gin2 ku3-babbar_ 
2. i-na asz-szu-ur{ki} id#-di-nam 

Primary publication: AbB 12, 057
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097562
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510581
Transliteration:
&P510581 = AbB 12, 057 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}suen-e-ri-ba-am 
2. qi2-bi2-ma 
3. um-ma a-wi-il-dingir-ma 
4. {d}utu u3 {d}marduk li-ba-al-li#-t,u2-ka 
5. sza-al-ma-a-ku 
6. mi-im-ma la ta-na-ku-ud 
7. _tug2 hi-a_ at-ta-di-in 
8. a-na tu-ku-ul-ti {d}utu 
9. a-na a-szu-ur{ki} 
10. at-ta-s,i2 
@reverse 
1. _5(u) tug2 hi-a_ sza be-el-szu-nu 
2. i-di-nam 
3. _2(disz) 1/2(disz) ma-na 1(disz) 1/2(disz) gin2 ku3-babbar_ 
4. _na4_ su-hi-im{ki} 
5. u3 _7(disz) gin2 ku3-babbar na4_ {d}utu 
6. sza e-li-ia i-szu 
7. _3(disz) gin2 ku3-babbar_ a-na ga-am-ri-szu 
8. AH-ru-AZ-ma _4(disz) gin2 ku3-babbar_ 
9. an-ni-a-am u3 an-ni-a-am 
10. {disz}{d}suen-na-ap-sze-ra-am 
@left 
@column 1 
1. usz-ta-bi-la-szu 
2. i-zi-iz-ma 
@column 2 
1. ka-ni-ki 
2. li-qe3-ma 
3. re-szi li-ki-il 

Primary publication: AbB 12, 058
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097596
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510582
Transliteration:
&P510582 = AbB 12, 058 
#atf: lang akk 
@tablet 
@obverse 
1. [a]-na {d}suen-e-ri-ba-am 
2. qi2-bi2-ma 
3. um-ma a-wi-il-dingir-ma 
4. {d}utu li-ba-al-li-it,-ka 
5. sza-al-ma-a-ku 
6. i-na a-szu-ur{ki} a-na-ku 
7. s,i-bu-ti e-te-pu-usz2 
8. szi#-ma-am szi-na sza-la-sza-at 
9. e-i-lam-ma ar#-[hi-isz] 
10. at#-ta-la-kam# 
@reverse 
1. _{gesz}ma2_ sza _{na4}ur5 hi-a_ 
2. {disz}a-hu-ka ir-ka-ba-am 
3. i-na li-ib-bi-im 
4. ba-am-tum i-ia-tu 
5. asz-pu-ra-kum lu-u2 a-wi-lum at-ta 
6. _{na4}ur5 hi-a_ szu-nu-ti 
7. a-na ri-ik-si-im 
8. te-ra-szu-nu-ti-ma 
9. ba#-ma-at ri-ik-si-im 
10. ma#-ha-as, 
11. s,i2-bi-it t,e4-mi-im 
@left 
@column 1 
1. [a]-na pa-ni-ia 
2. lu-u2 ti-szu 
@column 2 
1. ar-hi-isz 
2. at-ta-la-kam# 

Primary publication: AbB 12, 059
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097101
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510583
Transliteration:
&P510583 = AbB 12, 059 
#atf: lang akk 
@tablet 
@obverse 
1. a-na ARAD-{d}suen qi2-bi2-[ma] 
2. um-ma ta-ri-sza _dumu-munus_-ka-a-ma 
3. {d}utu u3 {d}a-szur 
4. asz-szu-mi-ia da-ri-<isz> _u4_-mi 
5. li-ba-al-li-t,u2-ka 
6. asz-szum a-mu-ur-ri-tim!(TUM) 
7. sza ta-asz-pu-ra-am 
8. um-ma at-ta-a-ma 
9. t,u2-ur-da-asz-szi 
10. s,u2-ha-rum u2-ul wa-szi-ib-ma 
11. a-mu-ur-ri-ta-am 
12. u2-ul at,-ru-da-kum 
13. ki-ma s,u2#-ha-rum 
14. isz-tu ma-at 
15. szu-bar-tim it-ta-al-kam 
16. a-mu-ur-ri-ta-am 
@reverse 
1. u3 s,u2#-ha-ra-am 
2. at-ta-ra-da-kum 
3. asz-szum t,e4-em ta-ma-ar-ti 
4. sza i-bi-{d}utu u2-sza-bi-la-kum 
5. {disz}{d}suen-i-din-nam na-ap-t,a-ri 
6. tup-pa-am u2-sza-bi-lam 
7. u3 {d}suen-i-din-nam 
8. ih-ri-isz-er3-ra 
9. _3(disz) esz2_ sza ti-na-tim 
10. a-na s,u2-ha-ar-tim 
11. u2-sza-bi-lam 
12. id-di-nu-ni-ku-um 
13. _dingir_ u3 {d}utu gi-mi-il-ma 
14. ki-ma a-lum isz-mu-ma 
15. ik-ru-ba-kum# [(x)] 
16. i-na-an-na li#-[isz-me-ma] 
17. li-ik-ru-ba#-[am] 
18. {disz}be-el-ti-la-ma-si2 qa-du-um _dumu-munus-mesz_-sza# 
19. t,u2-ur-da-asz-szi it-ti {d}suen-i-din-nam 
20. u3 ri-ik-sa u3 _tug2_ lu-ba-re-e szu-bi-lam 

Primary publication: AbB 12, 060
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097152
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510584
Transliteration:
&P510584 = AbB 12, 060 
#atf: lang akk 
@tablet 
@obverse 
1. a-na ta-tu-ur2-ma-tum 
2. qi2-bi2-ma 
3. um-ma ta-ri-sza-a-ma 
4. {d}esz18-dar u3 {d}tasz-me-tum 
5. li-ba-al-li-t,a-ki 
6. asz-szum a-mu-ur-ri-tim 
7. u3 {d}a-szur-ta-a-ia-ar 
8. sza ta-asz-pu-ra-nim 
9. um-ma at-tu-nu-ma 
10. t,u2-ur-di-isz-szu-nu-ti 
11. s,u2-ha-rum i-na ma-a-at 
12. szu-bar-tim wa-szi-ib-ma 
13. u2-ul at,-ru-da-asz-szu-nu-ti 
14. ki-ma ik-ta-asz-dam 
15. a-t,a2-ra-da-szu-nu-ti 
16. asz-szum t,e4-em ta-ma-ar-ti 
@reverse 
1. sza i-bi-{d}utu u2-sza-bi-lam 
2. {disz}{d}suen-i-din-nam na-ap-t,a-ri 
3. tup-pa-am u2-sza-bi-lam 
4. u3 {d}suen-i-din-nam 
5. ih-ri-isz-er3-ra 
6. _3(disz) esz2_ sza ti-na-tim 
7. u2-sza-bi-la-ki-im 
8. id-di-nu-ni-ik-ki-im 
9. ki-ma a-ha-ti at-ti 
10. a-lum a-szur isz-me-ma 
11. i-ka-ra-ba-ku-nu-szi-im 
12. u3 a-na-ku ma-ha-ar 
13. esz18-dar u3 {d}tasz-me-tum 
14. a-na ba-la-t,i3-ku-nu 
15. ak-ta#-na-ra-ab 
16. {disz}be-el-ti-la-ma-si2 
17. qa2-du-um _dumu-munus-mesz_-sza 
18. it-ti {d}suen-i-din-nam# 
@left 
1. t,u2-ur-da-asz-szi u3 ri-ik-sa-am 
2. sza lu2-{d}iszkur u3 wa-ak-lu ik-nu-ku 
3. u3 _tug2_ lu-ba-re-e szu-bi-la-nim 

Primary publication: AbB 12, 061
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 096983
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510585
Transliteration:
&P510585 = AbB 12, 061 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}suen-a-ha-am-i-din-nam 
2. ra-bi-a-an zimbir{ki} 
3. {disz}ip-qu2-{d}na-bi-um 
4. [u3] ib-ni-{d}utu 
5. qi2#-bi2-ma# 
6. [um]-ma am-mi-s,a-du-qa2-ma# 
7. a-na {d}marduk-mu-sza-lim _gal-ukken-na#_ 
8. it#-ta#-asz-pa-ar# 
9. {disz}ip#-qu2#-{d}na-bi-um _szu-i_ 
10. a-na zimbir{ki}-ia-ah-ru-rum# li-il-li#-[kam] 
11. it#-ti {d}marduk-mu-sza-lim _dub#-sar_ [(x)] 
12. u3 ARAD-{d}marduk _szu-i_ li#-iz#-zi-iz-ma# 
13. _er2 hi-a_ ma-ah-ri-ku-nu 
14. li#-isz-ku-nu 
15. ki#-ma _er2 hi-a_ isz-ta-al-mu 
16. a-na pi2-ha-ti-szu li-tu-ra-am 
@reverse 
$ blank space 

Primary publication: AbB 12, 062
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097037
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510586
Transliteration:
&P510586 = AbB 12, 062 
#atf: lang akk 
@tablet 
@obverse 
1. [a]-na a-bi#-ia# 
2. qi2-bi2-ma 
3. um-ma be-el-numun#-ma 
4. {d}utu# u3 {d}marduk da-ri#-isz _u4_-mi# li#-ba-al-li-t,u2-ka 
5. [lu] sza#-al-ma#-ta# lu ba-al#-[t,a]-ta# 
6. _dingir_ na-s,i-ir-ka re-esz-ka a-na# [da-mi]-iq#-tim 
7. li-ki-il 
8. a-na szu-ul-mi-ka asz-pu-ra-am 
9. szu-lum-ka ma-har {d}utu u3 {d}marduk 
10. lu da-ri# 
11. [{disz}]i-na-e2-ul-masz-numun# a-na#? [ma-ah-ri-ka?] 
12. at,#-ru-da-asz#?-[szu] 
13. ki-ma sza _e2_ a-na _e2_ il#-li#-ka#-am# 
14. re-qu2-us-su2 ta-at,-ru-da-asz-szu# 
15. i-na-an-na ha-bil2-we-du-um 
16. ki-ma i-na-e2-ul-masz-numun _dumu_ x-[(x)]-x-im 
17. a-na ma-ah-ri-ka at,-t,ar-da-[asz]-szu# 
18. ki#-ma is-sa3-an-qa2-ak-kum 
19. [i]-zi-is-su2 
20. [x x (x)]-x-ma am-hu-ur i-na-e2-ul-masz-numun# 
21. [sza] aq#-bu-u2-ma 
22. la#? tu#?-TA-bi-lam 
23. szum#-ma# _1(disz) tug2_ na-ah#-ra-ma#-am szum-ma _1(disz) gin2 ku3-babbar_ szu-bi-[lam] 
24. [x x x (x)] lu#-uk#-ru-ba-ak-ku 
25. [a-wa-tam?] i-da#-am la tu-sza-ar-sza-ma 
26. [la] ta#-sza-ap-pa-ra-am 
27. [asz-szum ha]-bil2#?-we?-du-um sza asz-pu-ra#-[ak-kum] 
28. [i-zi]-is-su2-ma 
29. tup#-pa#-am me-he-er tup-pi2-ia# szu-bi-lam# 

Primary publication: AbB 12, 063
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097038
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510587
Transliteration:
&P510587 = AbB 12, 063 
#atf: lang akk 
@tablet 
@obverse 
1. a-na e-li-e-re-sa 
2. qi2-bi2-ma 
3. um-ma {d}marduk-na-s,i-ir-ma 
4. {d}utu u3 {d}marduk asz-szu-mi-ia li-ba-li-t,u2-ki 
5. asz-szum a-wa-at {disz}a-ma-at-{d}suen 
6. isz-tu s,e-eh-re-et-ma 
7. {disz}na-na-a a-na _dumu_ a-wi-lim 
8. a-na a-ha-zi-sza qa2-ba-am isz-ku-un 
9. am-sza-li i-nu-ma _ugula mar-tu_ 
10. il-li-kam 
11. ta-az-zi-im-ti a-lim i-du-ur-ma 
12. tup-pi2 ma-ru-ti-sza 
13. a-na a-ma-at-{d}suen id-di-isz-szi-im 
14. {disz}ki-isz-szi-ia-tum 
15. ki-ma sza-ti u3 _dumu_ a-wi-lim 
16. sza i-hu-zu-szi ni-si-ir-ma 
17. _2(u) sze gur_ nu-sza-ad-di-isz#-[szu-nu-ti?] 
18. mi-id-de ki-a-am ta#-[qa2-bi-(ma)] 
@reverse 
1. a-na nu-ma-at am-ti# [x (x) (x)] 
2. i-in-szu-nu isz-szu-ma# x [x (x)] 
3. u2-li-lu-szi 
4. u3 mi-id-de mi-im-ma 
5. ta-qa2-bi-ma _ugula mar-tu_ a-wa-tum 
6. i-ka-sza-ad# mi-im-ma 
7. la ta-qa2-ab-bi 
8. mu-ut-ni ta-ra-mi-ma 
9. ba#-la-at,-ni te-ze-ri 
10. ki-ma ti-de-e 
11. i-na qi2-ib {d}be-el-s,ar-bi2 
12. i-li a-li-ni qa2-bu-um 
13. u3 na-ba-al-ku-tum 
14. _2(u) sze gur_ {disz}a-si-rum x x na-di-nu 
15. ub-ba-la-ki-im 
16. _sze_-szu# mu#-uh2-ri-szu 
17. la tu-sza-za-qi2-szu 
18. u3 ku-ur-bi#-szum-ma 
19. [li]-il-li-kam 

Primary publication: AbB 12, 064
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097056
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510588
Transliteration:
&P510588 = AbB 12, 064 
#atf: lang akk 
@tablet 
@obverse 
1. [a]-na dingir-szu-ba-ni _ugula x_ 
2. qi2#-bi2-ma 
3. um#-ma dingir-utu-ma i-nu-ma {disz}{d}iszkur-ra-bi 
4. [i-na] pa-lu-uh-ti {d}UH2 u3 _nin-gar3-sa6_ 
5. [x]-hu#-ru-szu-ma u2-te-ni-a-am na-hi-isz-tim 
6. szu#-ri#-in _ku3-sig17_ u2-s,i2-ma a-wi-lum _a-sza3_ 
7. li-bi-ir a-<wi>-lum nu-ru-um-li-s,i2 
8. _dumu_ ta-ri-x a-na la _a-sza3_-szu szu-ri-in _ku3-sig17#_ 
9. i-su-uh la PI-li-ku la mi-im-ma 
10. i-na _sila_ i-mu-ur-ma asz-szum _a-sza3_ sza tu x x x na-asz2-szi 
11. _1(iku) GAN2 a-sza3_ u2-ul i-zi-ib _2(iku) GAN2_ u2-s,i2-ib 
12. _3(iku) GAN2_ u2-ul zi-ib isz-szi ka-la _a-sza3_ 
13. isz-ta-ar-szi u3 a-na e2-ul-masz x-[(x) (x)] 
14. u2-szi-ri-ib-szi a-wi-lum {d}x-szum2-ibila 
15. a-na!(HU) _a-sza3_ ir-gu-um-szum-ma 
16. um-ma nu-ru-um-li-s,i2-ma 
@reverse 
1. _a-sza3_ sza _e2_ a-bi-ka 
2. ma-an-nu-um i-si-ka-ma 
3. a-wi-il-tum _dumu-munus_ {d}x x x [x (x)] 
4. a-na _dumu-munus_ x x x x x x 
5. a-bu {disz}nu#-[ru]-um#-li-s,i2 
6. s,a-ab-ta-[am]-ma dingir-szu-mu-ba-li2-it, 
7. _dumu#_ x x x [(x)] x sza it-ti 
8. [x] x x [(x)] x ZA SU x x x 
9. [x x x] ki#-a-am# x x 
10. [x x] x x x-asz-szi 
11. [...] x x x x a-wa-ti-szu 
12. [a]-na# {d}utu# x x x x x x-ma 
13. [x x] x x asz-szum ni-isz {d}utu 
14. [x] x bi lu x bi am u2-ma-li-szi-ma 
15. [x] x ZI a SZI um-ma {d}utu a-na sza asz-pu-ra-kum 
16. a-ah-ka la ta-na-ad-di a-ah-ka 
17. ta-na-di-ma DI-ti ka a sza x 
18. i-li-ik-szu i-de-ma 
@left 
$ beginning broken 
@column 1' 
1. [...] x-nim x x 
2. [i?]-na# zimbir{ki#} 
@column 2' 
1. bi-ru-u2 i-de-ma 
2. li-ib-li-tu#? [x] 

Primary publication: AbB 12, 065
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097071
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510589
Transliteration:
&P510589 = AbB 12, 065 
#atf: lang akk 
@tablet 
@obverse 
1. asz#-szum sza _geme2_-ka tup-pi2 
2. a-na be-li2-ia ka-ta u2-sza#-bi#-lam# 
3. um-ma a-na-ku-ma _{lu2}na-asz#-[bar_] 
4. sza# ta-at,-ru#-[dam] 
5. mi-im#-ma u2-ul i-[pu-usz?] 
6. ar-hi-isz be-li2 x [x x (x)] x 
7. tup-pi2 sza sza-{d}x-[x x x (x)] _szu-i_ 
8. ar-hi-isz# _1(disz) lu2_ [x x x (x)] x 
9. li-it,-ru#-dam#-ma 
10. a-wa-tu#-ia li-in-nam#-ra# 
11. u3 a-szar ka-li-a-ku# 
12. li-sze-s,u2-ni-in-ni 
13. sza a-na be-li2-ia asz-pu-ra-am 
14. ar#-ki# tup-pi2 sza a-na be-li2-ia ka#-ta# 
15. [u2]-sza#-bi-lam 
16. sza# _iti gu4-si-sa2 u4 2(disz)-kam#_ 
17. {disz}{d}suen-na-s,i#-ir# _ugula e2_ [...] 
18. sze#-er-tam-ma isz-tu zimbir{ki}-am#-[na-num] 
19. [a]-na# zimbir{ki}-ia-ah#-[ru-rum] 
20. [a]-na# _abul nun-na_ u2-[...] 
21. iq#-bu-nim-ma# 
22. [a]-na# {d}suen#-na#-s,i#-ir _ugula e2_ [...] 
23. [x x x (x)]-{d}na-bi-um x x x [...] 
@reverse 
1. [x (x)] {d}utu-szu-mu-un-dib _di-ku5#_ 
2. [x] x a am-tim asz-pu-ur-ma# [...] 
3. ki-a-am iq-bu-szum um-ma szu-nu-ma# 
4. {disz}{d}suen-na-din-szu-mi [(x)] 
5. a-na# mi-nim ka#-li-ma i-ma-a-at# [(x)] 
6. i-na da#-ba#-bi#-im u2-ma-ah-hi-s,u2-szu-ma 
7. u2-sze-s,u2-ni#-in-ni ni-id-bu-ub-ma 
8. um-ma be-el a-[wa]-ti#-ia-ma a-na-ku _iti bara2-za3-gar_ 
9. at-ta-s,i2# [x (x)] x-u2 _iti gu4-si-sa2_ x x [...] 
10. an-ni-tam ni-id-bu-ma 
11. isz-tu# _iti gu4-si-sa2 u4 2(disz)-kam_ 
12. a-na x [(x)]-x-ZI-ia e-ru#-ub#-ma 
13. it#-[ti] _ugula# e2_ i-na zimbir{ki}-am-na-num a-na-ku 
14. be-[li2 a]-na# a-wi-le-e qa2-bu-um-ma 
15. li-[iq]-bi# a-na-ku it-ti _ugula e2_ 
16. [a-al]-li-a-am a-na be-li2-ia ka-ta 
17. a-qa2-ab#-bi-ma 
18. ki#-ma# be#-li2 i-qa2-ab-bi-a-am 
19. e-ep#-pu-usz 
20. _{lu2#}na-asz-bar_ la ta-t,a-ra-dam-ma 
21. e-li i-na-an-na _ugula e2_ szu-u2 
22. la is,-s,a-ar-ra-ha-am 

Primary publication: AbB 12, 066
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097090
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510590
Transliteration:
&P510590 = AbB 12, 066 
#atf: lang akk 
@tablet 
@obverse 
$ beginning broken 
1'. [...] x x [...] 
2'. [asz-szum] da#-ba#-bi-im sza# be#-li2# at#-ta 
3'. tu#-na-ah-i-da-an-[ni] 
4'. ki-ma be-li2 at-ta tu-na-ah-i-da-[an]-ni 
5'. a-na a-wi-lim ri-isz-{d}marduk ad-da-bu-ub 
6'. ki-ma a-wi-lum ri-isz-{d}marduk 
7'. sza-ap-ti-ia isz-mu-u2 
8'. a-na ma-har a-wi-lim ib-ni-{d}utu a-bi _erin2_ 
9'. isz-pu-ra-an-ni-ma 
10'. a-wi-lum ib-ni-{d}utu a-bi _erin2_ ma-la be#-[li2 at-ta] 
11'. tu-na-ah-i-da-an-ni sza-ap-ti-ia 
12'. isz-te-mi mi-im-ma u2-ul i-pu-la#-[an-ni] 
13'. a-na a-wi-lim {d}marduk-mu-ba-li2-it, qa2-ab-ba#-[i-im] 
14'. ad-bu-um-ma um-ma szu-u2-ma 
15'. szu-u2 ki-i la i-la-a-am-ma 
16'. i-na la a-sza-bi-i-szu bi-ru-ta-am 
17'. sza sze-e u3 _ku3-babbar_ e-li-szu u2-x-[...] 
18'. u3 a-wi-lum la-pi2-isz#-tum# _szu#-i_ 
19'. u2-s,a-am-ma i-na _e2_ ur x [...] 
20'. [x] x x x x x x [...] 
@reverse 
$ broken 
@left 
1. [...] x x x x x x x x [x (x)] x x 

Primary publication: AbB 12, 067
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097099
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510591
Transliteration:
&P510591 = AbB 12, 067 
#atf: lang akk 
@tablet 
@obverse 
1. a-na a-bi-ia sza# _{d}[marduk_ u2-ba-al-li-t,u2-(szu)] 
2. qi2-bi2#-[ma] 
3. um-ma {d}suen-na-di-in-szu-mi-ma 
4. _[{d}]utu_ u3 _{d}marduk_ da-ri#-isz _u4_-mi 
5. [a]-bi# ka-ta li-ba-al-li-t,u2#-[ka] 
6. a-bi# lu# sza-lim lu ba-li2-it, 
7. _dingir_ na-s,i-[ir] a-bi#-ia# ri#-isz# a-bi#-ia# 
8. li-ki-il 
9. a-na szu-lum a-bi-ia asz-pu-ra-am 
10. szu-lum a-bi-ia ka-ta ma-har _{d}utu_ u3 _{d}marduk_ 
11. lu da-ri 
12. ki-ma a-bi at-ta ti-du-u2 
13. i-ta-a-am sza _ka2_ ka-re-e 
14. u2-ul ti-de-e 
15. isz#-tu a-na _zimbir{ki}_ 
16. ta-al-li-ku-u2 
17. x ni ma 
18. sze-a-am a-na _dumu#?_ a-ab-ba-a 
19. u3 ri-isz-_{d}utu_ 
@reverse 
1. u3 be-el-ti _e2_ 
2. ta-ad-di-nu 
3. ma-am-ma-an _1(disz) sila3 sze_ u2-ul i-di-na-am 
4. isz-tu _u4 5(disz)-kam_ ba-ri-a-ku-u2 
5. _szuku_ ku-ru-um-ma-<ta>-am u2-ul# i-szu-u2 
6. i-na pa-ni a-na _zimbir{ki}_ a-la-ki-ma 
7. ki-a-am u2-na-i-dam? um-ma a-na-ku-ma 
8. {disz}{mi2}du-uh-szi-ta-am t,u2#-ur2#-da-am 
9. [x x] x x x li-iq#-[bi]-ma# 
10. [...] x x [...] x u3 x [x (x)] 
11. [i]-na#-an#-na# ma-har x [...] ta#-at,-ru#-dam# 
12. u3 _1(ban2) zi3-da_ u2-ul tu-sza#-bi#-la-am 
13. i-na-an-na _ku3-babbar_ im-ta-ah-ru-ne-en6-ni 
14. i-na _u4 5(disz)-kam_ sze-am a-ma-ha#-ar# 
15. ar#-hi-isz ku-usz-da-am# 
16. ma#-am-ma-an# [x x (x)] 
17. sza _5(disz) gin2_ [...] 
18. na-x-[...] 
@left 
@column 1 
1. u2-ul e-[x x] ar#-hi-isz u2-ul ta-ka-la# 
2. sze#-um ih-[ha-asz-sze]-eh x x-lam? it-ti-ka u2-ul 
@column 2 
1. [a]-da#-ab-bu-ub 

Primary publication: AbB 12, 068
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097110
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510592
Transliteration:
&P510592 = AbB 12, 068 
#atf: lang akk 
@tablet 
@obverse 
1. a-na a-wi-lim sza {d}marduk u2-ba-al#-la#-t,u2-szu 
2. qi2-bi2-ma 
3. um-ma {d}i-szum-ib-ni-szu-ma 
4. {d}utu u3 {d}marduk# da#-ri-isz _u4_-mi 
5. li#-[ba-al]-li#-t,u2-ka 
6. lu sza-al-ma#-a-ta lu ba#-al-t,a-a-ta 
7. a-na szu-ul-mi-ka asz-pur-ra-am 
8. szu-lum-ka szu-up-ra-am 
9. asz-szum _gu4 hi-a_ sza i-na babila2{ki} 
10. ni-id-bu-bu-ma 
11. a-na {d}utu-da-a-a-an _dumu_ qu2-ra-ad-dingir 
12. ki-a-am ta-aq-bu-u2 um-ma at-ta-ma 
13. i-na larsa{ki} 
14. ki-ma a-al-la-ku 
15. _3(disz) gu4_ u3 _1(disz) ab2_ a-na-an-di-ik-kum-ma 
16. a-na {d}i-szum-ib-ni-szu 
17. tu#-sza-ab-ba-al [(x)] 
@reverse 
1. [...] 
2. [...] x 
3. [...]-ma# 
4. [x] x x [...] x-ni-tim 
5. _5(asz) sze gur_ sze-a-am# hu#-bu#-ta#-ta-am 
6. ar#-hi-isz u2-ul# tu#-sza#-ab#-ba#-lam#-ma# 
7. _n sze gur#_ sze-a-am [(x)] a-ha-[ba-at] 
8. a-na _gu4 hi-a_ sza# x x x [x x (x)] x 
9. la tu-ma-a-aq 
10. szum-ma ni-t,i-il-ka 
11. _gu4 hi-a_ szu-nu-ti a-na# ma#-as,-s,a-ar-tim-ma 
12. tu-sza-bi-lam 
13. _gu4 hi-a_ szu-nu-<ti> a-na-as,-s,a-ar-ma 
14. re-esz-ka u2-ka-al#-lu 

Primary publication: AbB 12, 069
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097122
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510593
Transliteration:
&P510593 = AbB 12, 069 
#atf: lang akk 
@tablet 
@obverse 
1. a-na a-wi-lim sza {d}marduk u2-ba-al-li-t,u2-szu 
2. qi2-bi2-ma 
3. um-ma su-mu-akszak{ki}-ma 
4. {d}utu u3 {d}marduk da-ri-isz _u4_-mi 
5. li-ba-al-li-t,u2-ka 
6. asz-szum i-bi-{d}iszkur _dam-gar3#_ i-da-ma-ra-az{ki#} 
7. _nig2-szu_ {d}utu-ma-dingir#-ni# 
8. i-na pa-ni-tim i-nu-ma a-na tam-li-tim a-na e2-duru5-bi2-sa3{ki#} 
9. a-wi-lum il-li-kam asz-szum i-bi-{d}iszkur# szu-a-ti 
10. ki-a-am aq-bi-kum um-ma a-na-ku-ma 
11. a-wi-lu-u2 sza isz-di-in la i-szu#-u2-ma 
12. a-na pi2-ha-ti-szu-nu la iz-za-az-zu 
13. i-na _aga-us2-mesz_ ta-as-su2-ha-szu-nu-ti-ma 
14. s,i-bu-ut-ku-nu i-ip-pu-szu 
15. i-na-an-na i-bi-{d}iszkur an#-nu-um 
16. szi#-pi2-ir i-ki szu UD x x 
17. [x] x [x (x)] 
18. [x (x)] x a-na a-wi-lim# [...] 
@reverse 
1. _a-sza3_-lam szu-a-ti a-na i-di-ka 
2. te-er-szu-ma KU-pa-ar-tam sza _e2_-tim 
3. sza _dumu-munus e2_-tim li-il-qe2-ma 
4. isz-ti-a-at li-pu-usz 
5. ki-a-am a-wa-tam an-ni-tam aq-bi-kum#-ma 
6. a-an-nam ta-pu-la-an-ni 
7. i-na-an-na i-bi-{d}iszkur szu-u2 
8. [a]-na# babila2{ki} wa-ar#-ki#-ka il-li-kam 
9. tup#-pi2 ik-szu-da-ak-ka-ma 
10. a-na s,e#-ri-ka at,#-t,ar#-da-asz-szu 
11. szum-ma a-wa#-tum# i-in-ka ma-ah-ra-at 
12. tup-pa#-ka# a-na a-wi-lim szu-bi-lam-ma# 
13. u3 a-na#-ku an-ni-ki-a-am# lu-usz-ter-di-szu-ma 
14. a-na i-di-ka te-er-szu 
15. sza-ni-tam um-ma szu-u2-ma 
16. {disz}ARAD-{d}da-gan ma-di-isz 
17. ia#-ti u3 sza _e2_ na-ap-t,a#-[ri-ia] 
18. u2-na-az-zi-IB [(x)] 
@left 
@column 1 
1. ki-a-am iq#-bi#-a-am# 
2. a-wi-lum szu-u2 qe2-er#-ba#-am# 
@column 2 
1. wa-ar-ka-as-su2 
2. pu-ru-us2 [(x)] 

Primary publication: AbB 12, 070
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097132
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510594
Transliteration:
&P510594 = AbB 12, 070 
#atf: lang akk 
@tablet 
@obverse 
$ beginning broken 
1'. um-ma x x [...] 
2'. asz-szum sze-im a-na 
3'. na-da-nim 
4'. sza ta-asz-pur-am 
5'. szum-ma i-na _{gesz}ban2_ {d}ki-it-tim 
6'. in-na-ad-di-in 
7'. i-na _{gesz}ban2_ {d}ki-it#-tim# 
8'. li-in-na-di-in 
9'. szum-ma i-na _{gesz}ban2_ {d}utu 
10'. in-na-ad-di-in 
@reverse 
1. a-na _1(ban2) sze gur-ta_ 
2. mi-nam ma-t,i 
3. szum-ma i-na _{gesz}ban2_ {d}ki-it-tim 
4. in-na-ad-di-in 
5. t,e4-em-ka ga-am-ra-am szu-up-ra-am 
6. u3 a-di a-sza-ap-pa-ra-ak-kum# 
7. ma-am-ma-an _ku3-babbar_-am 
8. la ta-ma-ha-ar 
9. u3 x [x x] x 
$ rest broken 

Primary publication: AbB 12, 071
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097142a
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510595
Transliteration:
&P510595 = AbB 12, 071 
#atf: lang akk 
@tablet 
@obverse 
$ beginning broken 
1'. i-ba#?-asz#?-szi 
2'. asz-szum _sag-geme2_ szu#-a-ti 
3'. a-na ma-ah-ri#-ia szu-ri-i-im 
4'. a-na ra-bi-a-an zimbir{ki} 
5'. asz#-pur#-ra-am 
6'. [u3 _1/3(disz)] ma#-na ku3-babbar_ a-na _sa10 sag-geme2_ szu-a-ti 
7'. [a-na {d}]marduk#-ha-si-is 
8'. [na]-da-nim 
@reverse 
1. usz#-ta-bi-lam 
2. {disz}{d}marduk-ha-si-is 
3. szu-tam-gi-ir 
4. _1/3(disz) ma-na ku3-babbar_ szu-um-hi-ir-szu-ma 
5. _sag-geme2_ szu-a-ti 
6. a-na ma#-[ah-ri]-ia 
$ rest broken 

Primary publication: AbB 12, 072
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097143
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510596
Transliteration:
&P510596 = AbB 12, 072 
#atf: lang akk 
@tablet 
@obverse 
1. [a-na] a-wi-lim 
2. [qi2]-bi2-ma 
3. [um]-ma# {d}na-bi-um-na-s,i-ir-ma 
4. [{d}]utu# u3 {d}marduk da-ri-isz _u4_-mi li-ba-al-li-t,u2-ka 
5. [lu] sza#-al-ma-ta lu ba-al-t,a-ta 
6. [_dingir_] na#-s,i-ir-ka re-esz-ka a-na da-mi-iq-tim 
7. li-ki-il 
8. a-na szu-ul-mi-ka asz-pu-ra-am 
9. szu-lum-ka ma-har {d}utu {d}marduk u3 be-li2-ia am-mi-s,a#-du#-qa2# 
10. lu da-ri 
11. ki#-ma ti-du-u2 i-na a-lim ma-ah-ri-ka 
12. _ansze# hi-a_-ia iz-za-az-zu 
13. mi#-nu-u2 a-wa-tum-ma 
14. [{disz}]ip-qu2-i3-li2-szu _di-ku5_ [(x) (x)] 
15. ar#-di _e2_-ia u3 s,e-eh-he-ru#-[ti-ia] 
16. ra-ki-is 
17. {disz}ip-qu2-i3-li2-szu szu-u2 
18. sza a-na e-mu-qi2-im u2-te-er-ru-ni# 
@reverse 
1. _a-sza3_ szu-s,u2-ti i-ri-szu [(x)] 
2. isz#-tu a-na pi2-i ri-ik-sa-ti-ia# [(x) (x)] 
3. ma-har be-li2#-ia a-da-ab-bu-bu-ma 
4. _a-sza3_ bi-ir-tam e-le-eq-qu2-u2 
5. u3 ip-qu2-i3-li2-szu szu-a-ti 
6. di-nam ma-ar-s,a ma-har be-li2-ia 
7. u2-ka-al-la-am-szu 
8. asz-szum _a-sza3 a-gar3_ na-szi-a-re-esz ma-har be-li2-ia 
9. id#-da-ab-ba-ba a-na _a-sza3_ szu-a-ti s,u2-up-pi2#-tim# 
10. [a]-na# sa-na-qi2-im u3 _gu2-un hi-a a-sza3_ sza isz#-[tu _mu] 3(disz)-kam_ 
11. us#-su2-ri-im-ma szu-ud-du-nim 
12. a-wi-lum {d}nanna-ma-an-szum2 _gal-ukken-na erin2 ka2 e2-gal_ 
13. u3 s,u2-ha-ar-szu a-na zimbir{ki} it,-ru-dam 
14. [u3] _a-sza3_ a-na dingir-szu-ib-ni be-el pi2-ha-ti-ia 
15. [x x] x u3 _gu2-un hi-a a-sza3_ szu-ud-du-na-ma sza-ak-na 
16. [x] x u2-te-er-ra-am _gu4-apin hi-a_-ia 
17. [x x] x x a-na-NA a-na dingir-szu-ib-ni be-el pi2-ha-ti-ia 
18. [i-hi]-id#-ma la-ma sza-at-tum it-ta-al-ku 
19. [_a-sza3_] szu#-a-ti li-isz-ta-ak-szi-id 
20. u3 _gu4 hi-a_-ia i-na _a-sza3_ szu-a-ti 
@left 
1. [... a]-wi-li [...] 

Primary publication: AbB 12, 073
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097144
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510597
Transliteration:
&P510597 = AbB 12, 073 
#atf: lang akk 
@tablet 
@obverse 
1. [a-na ... sza {d}...] u2-ba-al-la-t,u2-szu 
2. [qi2]-bi2#-ma 
3. [um-ma {d}...]-mu#-sza-lim-ma 
4. [{d}... li]-ba#-al-li-it,-ka 
5. [lu sza]-al#-ma-ta 
6. [{disz}]si#-in-na-tum 
7. [a-na ma]-ah-ri-ka 
8. [at,]-t,ar-dam 
9. [x (x)] KI? KA 
10. [...]-kam 
11. [x (x)] x x [x] x x-ma 
12. [a?-na] babila2#[{ki}] 
13. [...] 
14. [x] x-ba-am t,u2-[ur-dam] 
@reverse 
$ blank 

Primary publication: AbB 12, 074
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097160
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510598
Transliteration:
&P510598 = AbB 12, 074 
#atf: lang akk 
@tablet 
@obverse 
$ beginning broken 
1'. GA-ni-a-tum ha-sza-a-am# szu#-UG#-[x (x)] 
2'. a-na mi-nim 
3'. ta-ap-ru-sa-am# 
4'. GA#-ni-a-tum ha-sza-a-am# szu-UG-x [(x)] 
5'. szu-ut,-ra-am#-ma 
6'. szu-bi-lam 
7'. i-na sza ra-ma-ni-ka 
8'. la ta-na-di-in 
9'. ma#-la ta-at-ta-na-di-nu 
10'. szu-up-ra#-am#-ma 
@reverse 
1. ka#-ni-kam lu-di-na-kum# 

Primary publication: AbB 12, 075
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097166
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510599
Transliteration:
&P510599 = AbB 12, 075 
#atf: lang akk 
@tablet 
@obverse 
1. a-na szum-ma-{d}utu# 
2. qi2-bi2-ma 
3. um-ma be-el-ta-ni-ma 
4. be-li2 {d}i-szar-ki-di#-[SU] 
5. u3 {d}ma-mi ka-la#-tum# 
6. da-ri-isz _u4_-mi li#-ba#-<li>-t,u2-ka# 
7. _2(disz) tug2 hi-a_ a-sza-pa#-ra#-kum# 
8. an-nu-u2 ma-ah-ri-ia# 
9. sza-ak-nu 
10. asz-szum _1/2(disz) gin2 ku3-babbar_ 
11. sza qa2-ti-ka 
12. _siki hi-a_ ah-sze-eh-ma 
14. asz-pu-ra-kum 
@reverse 
1. _5(disz) ma-na siki hi-a_ dam-qa2-tim 
2. sza ka-pu-la-szi-na la-aq-tu 
3. szu-bi-lam 
4. ma-har be-li2-ia 
5. a-ka-ra-ba-kum# 
$ single ruling 

Primary publication: AbB 12, 076
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097167
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510600
Transliteration:
&P510600 = AbB 12, 076 
#atf: lang akk 
@tablet 
@obverse 
1. a-na a-wi-lim sza {d}marduk u2-ba-al-la-t,u2-szu 
2. qi2-bi2-ma 
3. um-ma {d}marduk-ni-szu-ma 
4. {d}utu u3 {d}marduk da-ri-isz _u4_-mi li-ba-al-li-t,u2-ka 
5. lu sza-al-ma-ta lu ba-al-t,a-ta 
6. _dingir_ na-s,i-ir-ka re-esz-ka a-na da-mi-iq-tim 
7. li-ki-il 
8. a-na szu-ul-mi-ka asz-pu-ra-am 
9. szu-lum a-bi-ia ma-har {d}utu u3 {d}marduk 
10. lu da-ri 
11. ki-ma sza esz-mu-u2 
12. _ab2 gu4 hi-a_-ia _lu2_-ni it-ba-al 
13. {disz}ib-ni-{d}suen ma-ra-ka 
14. a-na ma-ah-ri-ka at,-t,ar-dam# 
15. a-hu-tu sza la i-du-ni-in-ni 
16. _1(u) ab2 hi-a_ u2-sza-bi-lu-nim 
17. _1(disz) ab2 mu 2(disz)_ du-um-mi-qa2-am-ma# 
18. szu-bi-lam 
@reverse 
1. re-esz-ka li-ki#-lam-ma 
2. a-an-ni-ta ma-har {d}marduk li-ik-ru-ba-ak-kum 

Primary publication: AbB 12, 077
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097168
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510601
Transliteration:
&P510601 = AbB 12, 077 
#atf: lang akk 
@tablet 
@obverse 
1. a-na a-wi-lim sza {d}marduk u2-ba-al-la#-t,u2#-szu 
2. qi2-bi2-ma 
3. um-ma i3-li2-a-si-i-ma 
4. {d}utu u3 {d}marduk da-ri-isz _u4_-mi 
5. li-ba-al-li-t,u2-ka# 
6. lu sza-al-ma-ta lu ba-al-t,a-ta 
7. _dingir_ na-s,i-ir-ka re-esz da-mi-iq-ti-ka 
8. li-ki-il 
9. a-na szu-ul-mi-ka asz-pu-ra-am 
10. szu#-lum-ka ma-har# {d}utu u3 {d}marduk lu da-ri 
11. asz-szum sza {d}suen#-i-tu-ra-am u3 {d}suen-sze-mi 
12. sza tup-pa#-ka tu-sza-bi-lam um#-ma# at-ta-ma 
13. _a2 {gesz}ma2#_ u3 el-me-szum# ra-ma-an-ka 
14. szu#-ta#-as#-si2-iq-ma 
15. [...] _erin2_ tu-ub-ba-al#-[szu]-nu-szi 
16. x TUG2? _sze_-am u3 _ku3-babbar_ 
17. i-di-in-ma# 
18. _erin2_ li#-li-ka#-am 
19. sza ta-asz-pu-ra-am 
20. a-na sza asz-pu-ra-am ni-di a-hi#-im# u2-szi-ra-am 
21. a-na u2-um a-da-nim sza asz-ku-nu-szu-nu-szi# 
22. li-il-li-ku-nim-ma 
23. _sa10 siki_ sza ha-asz-ha-at 
24. li-il-qu2-u2 
25. _a2 {gesz}ma2_ a-na _u4 2(u)-kam_ li-li-[kam] 

Primary publication: AbB 12, 078
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097171
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510602
Transliteration:
&P510602 = AbB 12, 078 
#atf: lang akk 
@tablet 
@obverse 
1. a-na da-da-a 
2. u3 {d}suen-u2-se2-li 
3. qi2-bi2-ma# 
4. um-ma sze20-ep-{d}suen-ma 
5. {d}utu u3 {d}asznan# 
6. asz-szum-ia a-na da-ri-a-tim 
7. li-ba-al-li-t,u3-u2-ka 
8. _u4_-um un-ne-du#-uk#-ki# 
9. ta-am-ma-ru la# ta-bi-ta#-ni 
10. _u4_-ma-ka-al la te-[ne2]-zi#-ba#-ni 
11. ar-hi-isz pa-ni-ku#-[nu lu]-mu#-ur 
12. lu-u2 a-wi-il IR [x x] 
13. lu-u2 ma-ri szu-szi-im#[{ki}] 
14. ta-ak-la sza su x [...] 
15. ti-di-a i-ti-ku-[nu] 
16. a-na ta-ap-pa szu-uk#-na#-nim-ma 
17. i-ti-ku-nu li-il-li-ka 
@reverse 
1. _u4_-ma-ka-al la te-ne2-zi-ba 
2. ar-hi-isz pa-ni-ku-nu 
3. lu-mu-ur mi-de-e _u4 5(disz)-kam_ 
4. ta-ga-ru-ra u2-ul a-wa-ta-a-a 
5. i-qa2-bu-ma ar-du-um 
6. i-na a-li-i e-le-em 
7. u3 ma-t,i-i ZI? x RI? IM#? 
8. u3 i-na ma-t,i-i ra-he-e 
9. i-s,a-ba-at _1(u) gin2# ku3-babbar_ 
10. gu-um-ra-ma i-na _dam#-gar3_-re#-e 
11. wa-s,i2-i s,a-ab-ta-szu-nu-ti-ma 
12. {disz}a-na-{d}utu-tak#-la-ku u3 ARAD-{d}utu 
13. pa-ni-ia ku-li#-ma-ma 
14. lu-u2 x-li at-tu-nu 
15. u2-ul ta-s,a-ri-ma-ma 
16. u2-ul a-wa-ta-a-a i-ti-ku#-nu 
17. li-il-qu2-ni u3 a-na x [x x (x)] x-szu# 
18. sza ma-ah-ri-ku-nu _2(disz) 2/3(disz) ma-na_ 
19. [x]-x-re-e i-ti-[szu-nu] 
20. li#-qe2-a-nim#-[ma] 
21. _u4_-um un-ne-du-uk-ki# 
22. ta-am-ma-ra-a 
@left 
@column 1 
1. _nagga#_ hi-im-mi li-qe2#-a-nim#-ma 
2. ki#-la-lu-ku-nu la te-ne2-zi-ba-ni 
@column 2 
1. ar-hi-isz pa-ni-ku-nu lu-mu#-[ur] 

Primary publication: AbB 12, 079
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097174
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510603
Transliteration:
&P510603 = AbB 12, 079 
#atf: lang akk 
@tablet 
@obverse 
1. a-na ka-lu#-mi-ia 
2. qi2-bi2-ma 
3. um-ma e-ri#-[ib]-esz18#-dar#-[ma] 
4. {d}utu# u3 [{d}marduk da-ri-isz _u4_-mi] 
5. [li-ba-al-li-t,u2-ka] 
6. [a-na szu-ul-mi-ka asz-pu-ra-am] 
7. szu#-lum-ka [ma-har {d}utu lu da-ri] 
8. asz-szum t,e4-mi-ia li-ib-bi mar-s,a#-am# 
9. sza ah-hi-ia a-na# a-bi-ia 
10. asz-pu-ra#-am 
11. i-zi-is#-su2#?-nu#?-u2?-szi#?-[im] 
12. tup#-pi2 x [...] 
@reverse 
1. asz-szu-mi-ia a-na a-bi-ia qi2-bi2#-[ma] 
2. la tu-usz-ta-ha-a-am 

Primary publication: AbB 12, 080
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097181
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet & envelope
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510604
Transliteration:
&P510604 = AbB 12, 080 
#atf: lang akk 
@tablet 
@obverse 
1. a-na a-bi-ia sza {d}marduk 
2. u2-ba-al-la-t,u2-szu 
3. qi2-bi2-ma 
4. um-ma tu-nu-hu-ma 
5. {d}utu u3 {d}marduk da-ri-isz _u4_-mi 
6. a-bi li-ba-al-li-t,u2 
7. {disz}sze-li-bu _ugula mar-tu_ ki-a-am iq-be2-e 
8. um-ma szu-ma _2(asz) gur i3-gesz_ li-qe2-e-ma 
9. a-na tu-un-nu-hi i-di-in 
10. um-ma a-na-ku-ma tu-un-nu-ha 
11. u2-ul i-de-e an-ni-tam iq-be2-e 
12. i-na-an-na tup-pi2 usz-ta-bi-la-ku 
13. sza _1(disz) gin2 ku3-babbar i3-gesz 1(u) sze gur_ 
14. [x] x x x x [...] 
$ rest broken 
@reverse 
1. a-na x x x-e li-iz-zi-za 
@envelope 
@obverse 
1. [tup]-pi2# tu-un-nu-hu 
2. [x] x _zu2-lum_ szu-bi-lam 
@seal 1 
1. i3?-li2-ba-ni-i? 
2. dumu# ZA-AB-ra#?-tum#? 
3. ARAD {d}suen 
4. u3 {d}x-x 


Primary publication: AbB 12, 081
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097184a
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510605
Transliteration:
&P510605 = AbB 12, 081 
#atf: lang akk 
@tablet 
@obverse 
1. a-na sza-mu-uh-{d}iszkur# [qi2]-bi2#-[ma] 
2. um-ma e-ri#-isz#-ti-[{d}x-x] 
3. be-li2 u3 be-el-ti asz-szu-mi-ia asz-szum [...] 
4. ra-im-ki u3 ka-ti# [li-ba-li-t,u2] 
5. x x x x {d}marduk#-ip-pa#-al#-sa3-am# [x x (x)] 
$ rest broken 
@reverse 
$ beginning broken 
1'. {disz}i3-li2-szu-ul#-li-ma-an-ni ARAD-ki te4-mi x [x (x)] 
2'. at,-t,ar-da-asz-szu ma-ha-ar ra-i-mi-ki ma#-[x (x)] 
3'. ki-ma ia-ti it-ti-szu-nu li-id-bu-ub# [x] 
4'. ul-la-nu ra-i-mi-ki a-ba-am pa-ri-is [...] 
5'. u2-ul i-szu#-u2 ki-ma a-ab-ba-a iq#-[...] 
6'. a-na ra-i-mi-ki qi2-bi-i-ma# [...] 
7'. a-na a-wa-ti-ia la usz-ta#-a [(x) (x)] 
$ single ruling 


Primary publication: AbB 12, 082
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097201
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510606
Transliteration:
&P510606 = AbB 12, 082 
#atf: lang akk 
@tablet 
@obverse 
1. [a-na a-bi]-ia# sza# {d}marduk# u2-ba#-al#-[la-t,u2-szu] 
2. [qi2]-bi2#-ma 
3. [um-ma] du-ul-lu-uq-tum-ma# 
4. {d}utu# u3 {d}marduk asz-szu-mi-ia da#-[ri-isz] 
5. [_u4_-mi] li-ba-al-li-<t,u2>-ka# 
6. [a-bi] at-ta lu# sza-al-ma-ta lu# [ba-al-t,a-ta] 
7. _dingir#_ na#-s,i-ir a-bi-ia ka#-ta# [re-esz-ka a-na da-mi-iq-tim] 
8. li#-ki-il# 
9. a-na szu-lum a-bi-ia asz-pu-ra#-[am] 
10. szu-lum a-bi-ia ka-ta ma#-har# [{d}utu] 
11. lu# da-[ri] 
12. [a-nu-um-ma a]-bi# at-ta [...] 
13. [...] x [...] 
$ rest broken 
@reverse 
1. [x x x (x) a]-bi-ia [...] 
2. u2-sza#-bi-lam# [...] 
3. _2(disz) gu2-un_ la-ap-ta#-[am{sar}] 
4. _szum2{sar} szum2-sikil{sar#} [sze?_] 
5. bu-uq-li-[im] 
6. hi-sze#-eh-tam ma-la i-na ka#-[ap-ri-im] 
7. i-szu-u2 
8. s,i-im-dam-ma szu-bi-lam 
9. a-na-ku a-na _sze_-im sze-i3-gesz [u3] _ku3-babbar_ [(x)] 
10. a-na babila2{ki} lu-sza-bi-il# 
11. _1(u) {gesz}nu-ur2-ma hi-a_ [(x) (x)] 
12. a-na ia-a-szi-im szu-bi-lam 
13. sza# i-na ka-ap-ri-im# [i-szu-u2] 
14. [szu]-bi#-[lam] 
$ rest broken 


Primary publication: AbB 12, 083
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097213
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510607
Transliteration:
&P510607 = AbB 12, 083 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}suen-na-di-in#-szu#-[mi] 
2. qi2-bi2-ma 
3. um-ma u2-tul2-esz18-dar-ma 
4. {disz}{d}na-bi-um-na-s,i-ir _nimgir_ 
5. a-na bad3-am-mi-di-ta-na{ki} 
6. sza pi2-i _i7#_ si2#-la2-kum 
7. at,-t,ar-dam 
8. ki-ma is-sa3-an-qa2-ak-kum 
9. ki-ma {d}suen-mu-sza-lim _nimgir_ 
10. i-na pi2-ha-at a-lim 
11. li-szi-ib 


Primary publication: AbB 12, 084
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097220
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510608
Transliteration:
&P510608 = AbB 12, 084 
#atf: lang akk 
@tablet 
@obverse 
1. a-na _ugula gidri_ sza {d}marduk u2-ba-al-la-t,u2-szu# 
2. qi2-bi2-ma 
3. um-ma {d}suen-mu-sza-lim-ma 
4. {d}utu li-ba-al-li-it,-ka 
5. lu sza-al-ma-ta 
6. _1(u) gin2 ku3-babbar_ da-qa2-ti ib-ni-{d}mar-tu _ugula mar-tu_ 
7. mu-hu-ur-ma 
8. sza _1(u) gin2 ku3-babbar_ szu-a-ti 
9. u2-lu ma-ah-ri-ka 
10. u2-lu i-na a-lim e-ma i-ba-asz-szu#-u2 
11. sza-a-am 
12. t,e4-ma-am szu-up-ra-am-ma 
13. i-na zimbir{ki} a-na pu-uh2-hi lu-ud-di-in-ma 
14. pu-uh2-szu 
@reverse 
1. i-na babila2{ki} 
2. lu-ul-qe2 


Primary publication: AbB 12, 085
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097230
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510609
Transliteration:
&P510609 = AbB 12, 085 
#atf: lang akk 
@tablet 
@obverse 
1. a-na a-bi-ia 
2. qi2-bi2-ma 
3. um#-ma be-el-szu-nu-ma 
4. [{d}]utu# u3 {d}marduk li-ba-al-li-t,u2-ka 
5. [lu] sza#-al#-ma-ta lu ba-al-t,a-ta 
6. [_dingir_ na]-s,i#-ir-ka re-esz-ka a-na da-mi-iq-tim 
7. li#-ki-il 
8. a-na# szu-ul-mi-ka asz-pu-ra-am 
9. szu-lum-ka ma-har {d}utu u3 {d}marduk 
10. lu# da-ri 
11. [_uruda hi]-a_ sza _6(disz) gin2 ku3-babbar_ 
12. [a-na {disz}]be#-el-szu-nu ad-di-in 
13. [i-na] _{na4#}kiszib3_-ia ak-nu-kam-ma 
14. [a]-na# ma-ah-ri-ka 
15. [(x)] at,-t,ar-dam 
@reverse 
1. ki#-ma is-sa3-an-qa2-ak-kum 
2. qa2#-ti ra-ma-ni-szu 
3. _uruda hi-a_ sza _6(disz) gin2 ku3-babbar_ szu-a-ti 
4. qa2-tam a-na _{lu2}simug_ 
5. sza e-mu-uq-dingir-szi-it-mar u2-ub-ba-la-ak-kum 
6. u2-su-uh 
7. me-he-er tup-pi2-ia 
8. szu-bi-lam 


Primary publication: AbB 12, 086
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097232
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510610
Transliteration:
&P510610 = AbB 12, 086 
#atf: lang akk 
@tablet 
@obverse 
1. [a-na ...] 
2. qi2#-[bi2-ma] 
3. um#-[ma ...] 
4. x [...] 
5. a-na# [...] 
6. ma-x x x x [...] 
7. _gu4 hi-a_ x x [...] 
8. _in-nu_ a-na x [...] 
9. usz#?-te-ri-bu#? [...] 
10. a-na _tab-ba_ x [...] 
11. {disz}u-bar-rum x [...] 
12. u2-nu-tam sza x x [...] 
13. li-sza-bi-[...] 
14. _1(asz) sze_ a-na _szuku_ [...] 
15. u3 x x [...] 
16. i-na _sze_ x [...] 
17. i-na ru-ug#?-[bi-im] 
18. at-ba-[lam?] 
@reverse 
1. be-li2 at-ta szu-up-ra-am#?-[ma] 
2. _szuku_ DI-in-na-am-ma 
3. _lu2-mesz_ a-wi-li sza x x x [...] 
4. lu#-us,-ba-[at?] 
5. i-na mu-uh-hi 4(asz) 3(barig) li-x [...] 
6. x-ab-ku-um-ma? x x x [...] 
7. sza a-na-ku a-na# {d}utu-x x [...] 
8. _tab-ba_ a x {disz}hu-um-mu# [...] 
9. ki-a-am iq#-bi um#-ma szu-[u2-ma] 
10. x x x x x u3 x an [...] 
11. x x x x szu-li#-szu# [...] 
12. um#-ma szi-ma i-na li#-ib#-bi x [...] 
13. _sze_-um a-na _ka2_ ur-ra-dam x [...] 
14. tap{ap}-pu-ut-ka a-na mi-nim# [...] 
15. an-ni-tam a-na e-ta-wi-ra#-[szum] 
16. be-li2 li-isz-pu-ra-am#-[ma] 
17. x ka [...] 
18. u3 _nin-dingir_ x x [...] 
19. u3 s,e-he-er be-li2# [...] 
20. be#-li2 li-isz-pu#-[ra-am ...] 
@left 
1. _szuku_ lu-ud-di-in u3 _masz2-szu-gid2-gid2_ x x x x i ba x 
2. {disz}ku-ub-bu-rum _masz2-szu-gid2-gid2_ be-li2 li-it,#-ru-dam 


Primary publication: AbB 12, 087
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097235
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510611
Transliteration:
&P510611 = AbB 12, 087 
#atf: lang akk 
@tablet 
@obverse 
1. a-na a-ha-su2-nu 
2. qi2-bi2-ma 
3. um-ma i-szu-ru-um-ma 
4. {d}utu u3 {d}inanna asz-szu-mi-ia 
5. da-ri-isz _u4_-mi-im li-ba-al-li-t,u2-ki 
6. da-mi-iq sza a-na ma-ri ia-si-dingir 
7. ta-asz-pu-ri u2-ul a-na-ku 
8. asz-szum _sag-ARAD_ it-ti {d}x-lugal 
9. a-di-in u3 ki-a-am 
10. aq-bi um-ma a-na-ku-ma 
@reverse 
1. s,u2-ha-ru-um sza u2-x-x 
2. sza qa2-ti-ia it-ti 
3. asz-sza-at {d}suen-im-gur-ra-an-ni 
4. wa-ki-il _dam-gar3_ GA AM as,-ba-at 
5. a-di s,u2-ha-ra-am a-na qa2-ti-ia 
6. u2-te#-ru um-ma a-na#-ku-ma 
7. ma-ha-ar be-li2-sza# 
8. li-ik-ta-ra-ba 


Primary publication: AbB 12, 088
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097237
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510612
Transliteration:
&P510612 = AbB 12, 088 
#atf: lang akk 
@tablet 
@obverse 
1. a-na a-bi-ia qi2-bi2-ma 
2. um-ma be-el-szu-nu ma-ru-ka-ma 
3. {d}utu u3 {d}marduk asz-szu-mi-ia da-ri-isz _u4_-mi 
4. li-ba-al-li-t,u2-ka 
5. asz-szum a-wa-a-tim sza _e2_ a-ha-ti-ia 
6. qu2-ut-ti-szi-na u3 ga#-ma-ri-szi-na 
7. {disz}sza-am-hu-um u3 a-hu-szi-na ah-hu-ia 
8. a-na babila2{ki} il-li-ku-nim-ma 
9. {disz}asz-di-s,u2-ra i-mu-ur-szu-nu-ti-ma 
10. a-na _sze_-im sza ma-ah-ri-ka 
11. pe2-te-e u3 ta-ba-lim 
12. {disz}i-din-{d}suen la wa-asz-ra-am 
13. u3 _2(disz) lu2_ it-ti-szu 
14. it,-t,a3-ar-dam 
@reverse 
1. ki-ma isz-tu pa-na ta-ag-mi-la-ni 
2. u3 gi-mi-il-la-ka ra-bu-um 
3. e-li-ia sza-ak-nu 
4. zimbir{ki} ka-lu-szu i-de-e 
5. i-na-an-na _sze_-a-am szu-a-ti 
6. a-na pe2-te la ta-na-ad-di-in 
7. ki-a-am qi2-bi um-ma at-ta-ma 
8. a-na ri-ib-ba-ti-szu li-ka-li 
9. u3 i-nu-ma a-wa-tim sza _e2_ a-ha-ti-szu 
10. _1(u) gin2 ku3-sig17 1(disz) ma-na ku3-babbar_ 
11. a-na szi-im _sze_-im it-ti _dam-gar3_ 
12. il-qe2-e-ma asz-szu-mi-szu 
13. a-na _dam-gar3_ qa2-ba-am 
14. asz-ku-un szu-zu-ub-ka 
@left 
1. ra-bi-a-am lu-mur ki-ma sza si2-si2-ik-ta-ka 
2. i-s,a-ab-ba-tu ma-la i-ba-szu ku-ul-li-ma-an-ni 


Primary publication: AbB 12, 089
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097239
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510613
Transliteration:
&P510613 = AbB 12, 089 
#atf: lang akk 
@tablet 
@obverse 
1. a-na e-ri-ib-{d}suen 
2. qi2-bi2-ma 
3. um-ma ku-ur-ku-ur-tum a-ha-at-ka-<ma> 
4. {d}utu u3 be-li2 {d}iszkur asz-szu-mi-ia 
5. li-ba-al-li-t,u2-ka 
6. sza-al-ma-ku a-na-ku u3 at-ta-a-ma 
7. ni-ir!-te-eh i-sza-ni-ma 
8. um-mi u2-la-da-ni 
9. a-na mi-ni-im i-na la a-li-ia 
10. u2 szu-mi-ia a-ta-na-qi3 
11. u3 pi2-la-ki me2-he-er!-ti-ia# 
12. u2-ka-al a-nu-um-ma 
13. {disz}sin-e-ri-ba 
14. {disz}i-bi-{d}utu 
15. u3 ib-ni-sze-rum 
16. szi-ta-a-al 
@reverse 
1. sza i-te-pu-sza-ni 
2. i-na bi-ti-im re-qi2-im 
3. wa-asz-ba-ku u2 mu-ut ma-ti-i 
4. a-ma-at i-na pu-hu-ur 
5. sa3-bi-i i-ta-bi-a-ma 
6. um-ma szu-ma ma-ra-at 
7. nu-ku-us2-ti ma-ra-at 
8. hu-tu-up-ti sza be-el-le-et 
9. ta-ah-nu-qa2 
10. u2-ma-am ma-ra-at 
11. {disz}sin-ma-gir be-li-ka# 
12. a-ta-ha-AD 
13. al-ka-am-ma 
14. wa-ar-ka-ti pu-ru-us2 
15. szum-ma la ki-a-am-ma 
16. a-bi a-s,a-ba-at la 
17. a-na me-e a-ma-qu2-ut 
@left 
@column 1 
1. u2 pi2?-e?-isz-ta-am 
2. a-sza-ka-ak-ka 
@column 2 
1. at-ta ba-al-t,a3-ta# 
2. u2 a-na-ku mu-ut i-ta-[x] a-ma-at 

Primary publication: AbB 12, 090
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097247
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510614
Transliteration:
&P510614 = AbB 12, 090 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}suen-ib-ni 
2. qi2-bi2-ma 
3. um-ma# gi-mil-{d}marduk-ma 
4. {d}utu li-ba-al-li-it,-ka 
5. a-di sza _szuku_ i-la-ka-am 
6. szi-te-i-ma _zi3-da szuku#_ szu-bi-lam#-ma# 
7. SZI LA a-ha-asz-szi-ih u3 _zi3#-da#_ 
8. szu-bi-lam szi-ip-ra-tum da-an-na# 
9. _ku3-babbar_ sza a-sza-pa-ra-ma 
10. {disz}ARAD-ku-ME i-na# zimbir{ki} 
@reverse 
1. u2-ba-az-za-u2-szu 
2. li-ba-ti-ia la ta-ma-la 
3. {disz}ta-ak-la-ku-a-na-{d}marduk li-li#-kam# 
4. mi-im-ma sza i-na i-si-in {d}utu 
5. i-ib-ba-asz-szi-a-szu la te-gu 
6. i-na _sza3# zi3-da_ sza tu-sza-ba-la-am 
7. szu-ku-sza#-ma szu-bi-lam 
8. sza tu-sza-bi-lam a-ku-ul-ma 
9. ak-ku-da-ak#-ku 
10. x [...] x 
11. [...] x 


Primary publication: AbB 12, 091
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097253
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510615
Transliteration:
&P510615 = AbB 12, 091 
#atf: lang akk 
@tablet 
@obverse 
1. [a-na ... sza {d}]marduk u2-ba-al-la-t,u2-szu 
2. [qi2-bi2]-ma 
3. [um-ma {d}x-x-(x)]-na#-s,i-ir-ma 
4. [{d}utu u3 {d}]marduk# li-ba-al-li-t,u2-ka 
5. [(x) (x) (x) lu-u2] sza-al-ma-ta 
6. [asz-szum] s,i-bu-ti-ka 
7. [sza] ta#-asz-pu-ra-am 
8. [x x x] x szu-u2 
9. [i-na li]-ib-bi-ia i-ba-asz-szi 
10. [ki-ma] _a-sza3_-ka i-na e-re-szi-im 
11. tu#-uq-te-et-tu-u2 
12. [x] a-na babila2{ki} 
13. [x] x-li-a-am-ma 
14. s,i#-bu-ut-ka 
15. li-in-ne-ep-sza-ak-ku 
@reverse 
1. u3 [asz]-szum# _gu4_ 
2. sza asz-pu-ra-ak-ku 
3. i-na szi-ni-szu tup-pi2 
4. a-na ma-ah-ri-ka# szu-bu-lim 
5. _1(disz) gu4_ tu-sza-bi-lam 
6. i-na-an-na asz-tap-ra-ak-ku 
7. a-wi-lum a-bi _erin2_ iq-bi-a-am 
8. _1(disz) gu4_ sza SZI DI ka-asz-du 
9. szu-bi-lam-ma 
10. ar-hi-isz s,i-bu-ut-ka 
11. li-in-ne-ep-sza-ak-ku 

Primary publication: AbB 12, 092
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097259
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510616
Transliteration:
&P510616 = AbB 12, 092 
#atf: lang akk 
@tablet 
@obverse 
1. a-na sza-pi2-ri-ia 
2. qi2-bi2-ma 
3. um-ma be-el-numun ARAD-ka-ma 
4. sza-pi2-ri at-<ta> it-ti-ia ARAD-ki-nu-ni _dumu_ sze20-ep-{d}suen 
5. a-na _dumu_ KU UL a-wi-li de-ki-i _ku3-babbar_ 
6. ta-at,-ru-dam 
7. _1(disz) gin2 ku3-babbar_ sza aq-bi-a-ku 
8. _1/2(disz) gin2 ku3-babbar_ ar-du-um _dumu_ dingir-x-x-x 
9. id-di-nam!(LAM) 
10. u3 _1/2(disz) gin2 ku3-babbar_ ar-ra-bu _aszgab_ id-di-nam!(LAM) 
11. _u4_-ma-am _ku3-babbar_ szu-a-ti sza-pi2-ri at#-ta# 
12. u2-ul ta-am-hu-ur-ma i-na qa2-ab-li#-a-ti 
13. sza# pu-uh2-ri sza a-wi-le-e 
14. [x x x x x (x)] x _gin2# ku3-babbar_ x ZUM-ma 
$ rest broken 
@reverse 
1. [x x x (x)]-ka-ar [x x] 
2. [i-na qa2]-ti# sza-pi2-ri-ia ka-ta# 
3. [x x x (x)] x bi li a-la-aq-qe2-a-am-ma 
4. [x x x (x)] x RA a-na ma-har sza-pi2-ri-ia 
5. [u2]-ub-ba-lam 
6. [x x (x)] x i-na pa-ni na-pi2-isz-ti-ia 
7. [a-na] sza#-pi2-ri-ia ka-ta 
8. [ak]-ta-na-ar-ra-ab 
9. [ar]-hi#-isz sza-pi2-ri tup-pa-szu 
10. [a]-na# ar-ra-bu li-il-li-kam-ma 
11. la i-ta-ar-ma la i-da-ab-bu-ub 
12. u2!(NA)-ku-le-e sza a-ku-<lu> u3 asz-tu-u2 
13. i-na li-ib-bi-ia u2-ul i-de-e 
14. u3 x ASZ SZE RA sza _ninda_ u3 _kasz_ sza a-ku-lu 
15. u3 asz-tu-u2 a-na t,e4-mi-szu-ma 
16. a-s,a-am-mi-da-am-ma a-na ma-har sza-pi2#-[ri-ia] 
17. ka#-ta a-al-la-kam 
@left 
1. [...] x x mi a gi 
2. [...]-da-an-ni 
3. [...] ze2-eh-pi2 sza-pi2-ri-ia li#-[li-kam] 


Primary publication: AbB 12, 093
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097268
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510617
Transliteration:
&P510617 = AbB 12, 093 
#atf: lang akk 
@tablet 
@obverse 
1. [a]-na# be-li2#-[ia] 
2. qi2#-bi2-ma# 
3. um#-ma {d}suen-a-ha-am#-i-din!-nam#-ma 
4. [asz]-szum# t,e4-em _a-sza3_-im 
5. sza# be-li2# a-na ia#-szi id-di-nam 
6. [x x x x x (x)]-a-ia-ba-asz _sag-ga2_ 
7. [ka-ar]-s,i2#-ia# a-na szar-ri-im 
8. [i]-ku-ul-ma# 
9. [_a]-sza3#_-am i-te-ek-mu-ni-in-ni 
10. u3 a-na dingir-szu#-ba#-ni _ugula gidri_ 
11. [_a-sza3_]-am# [id-di-nu] 
$ rest broken 
@reverse 
1. tup#-pi2 be-li2#-ia# [...] 
2. li-il-<li>-kam-ma 
3. _a-sza3_-am ki-ma _a-sza3_-im# 
4. i-na s,i2-ib-ta-at# 
5. {disz}a-pil-{d}suen-dingir 
6. _a-sza3_-am li-di-nu-<ni>-im 
7. la e BI ir ki-nu-ni 
8. la u2-da-ab-ba-ab 


Primary publication: AbB 12, 094
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097270
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510618
Transliteration:
&P510618 = AbB 12, 094 
#atf: lang akk 
@tablet 
@obverse 
1. a-na a-hi-[ia] 
2. qi2-bi2-[ma] 
3. um-ma a-am-ma-ar-i3-li2#-[ma] 
4. {d}utu# u3 {d}marduk da-ri-isz _u4_-mi 
5. li-ba-al-li-t,u2-ka 
6. lu sza-al-ma-ta lu ba-al-t,a-ta 
7. a-na szu-ul-mi-ka asz-pu-ra-am 
8. szu-lum-ka ma-har {d}utu u3 {d}marduk 
9. lu da-ri 
10. _5(disz) sila3 gar3-szum{sar}_ sza ARAD-esz-sze-szi 
11. a-hi at-ta szu-mi ta-az2-ku-ru 
12. am-ta-ha-ar# 
13. u3 har-ra-num# sza# [i-na] e-mar{ki} 
14. asz-bu-u2 [a-di-ni u2-ul] i-sa-ni-qa2-am-ma 
15. ta-ma-ar-ta#-[ka] 
16. u2-ul u2-sza-bi-la-ak#-[ku] 
@reverse 
1. i-na#-an#-na# _5(disz) sila3_ BU ra x [(x)] 
2. {disz}ARAD-esz-sze-szi usz-ta-bi-la-ak#-[ku] 
3. a-hi at-ta li-ib-ba-ti 
4. la ta-ma-al-la 
5. szum-ma a-la-ak s,e-eh-ri i-ba-asz-szi 
6. hi-sze-eh-ta ma-la ta-sza-ap-pa-ra 
7. lu-sza-bi-la-ak-ku 
8. u3 szum-ma s,e-eh-ru la i-il-la-ka 
9. tup-pa-ka ar-hi-isz szu-up-ra-am-ma 
10. hi-sze-eh-ta ma-la ta-sza-ap-pa-ra 
11. lu-sza-bi-la-ak-ku 
12. {gesz}qa2-asz-ta u3 {na4}ka-pa-s,i-a 
13. _{tug2}bar-si-ig_ ta AH? ti i ma 
14. a-na _ku3-babbar_ sza-ma-am-ma 
15. szu-bi-lam 


Primary publication: AbB 12, 095
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097271
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510619
Transliteration:
&P510619 = AbB 12, 095 
#atf: lang akk 
@tablet 
@obverse 
1. a-na be-li-ni 
2. qi2-bi2-ma 
3. um-ma pi2-qa2-dingir u3 {d}na-bi-um-mu-sza-lim 
4. ki-ma be-li2 at-ta ta-asz-pu-ra-ni-<a>-ti 
5. a-na _iri_ ia-ab-li-ia{ki} ni-is-ni-iq-ma 
6. a-na _i3-gesz_ u2-ul _ku3-babbar_ u2-ul _sze_-um 
7. u3 na-gi-rum is-si-ma _sze_-am u2-ul id-<di>-nu-ni-a-szi 
8. _ku3-babbar_ u2-ul ni-im-hu-ur 
9. i-na-an-na tup#-pa-ni a-na ma-har be-li2 ka-ta 
10. nu-usz-ta-bi-lam be-el at-ta 
11. tup-pa-ka pa-nam szu-ur-szi-ma 
12. ma-la be-li2 at-ta ta-sza-ap-pa-ra i-ni-pu-usz# 
13. u3 _ku3-babbar_ i-na x x x x x 
14. ni-ip-t,u2-ur-ma 
@reverse 
1. _1(u) 2(disz) udu#-nita2 hi-a_ si-im-tam 
2. ma-ah-s,u2 {d}suen-i-qi2-sza-am# 
3. a-na be-li2 nu-usz-ta-bi-lam 
4. u3 _{gesz}ma2_ sza be-lum ki-ma ma#-ah#-s,a-at-ma 
5. _udu hi-a_ u2-ul u2-sza-ar-ki-ib 
6. tup-pi2 be-li2 ka-ta li-il-li-kam-ma 
7. ar-hi-isz i-ni-it-ta-al-kam 
8. u3 a-na _1(disz) sila3 i3-gesz 2(barig) sze_ u2-ul i-ba#-asz-szi 


Primary publication: AbB 12, 096
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097277
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510620
Transliteration:
&P510620 = AbB 12, 096 
#atf: lang akk 
@tablet 
@obverse 
$ illegible 
@reverse 
$ illegible 


Primary publication: AbB 12, 097
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097282
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510621
Transliteration:
&P510621 = AbB 12, 097 
#atf: lang akk 
@tablet 
@obverse 
1. asz-szum _8(asz) sze gur gu2-un 1(bur3) GAN2 a-sza3_ 
2. u3 4(asz) 2(barig) 3(ban2) _sze gur_ la-bi-ir-tim# 
3. ki-ma tu-ki-in-nu a-pa-la-am# a-na zalag2-ba-ni-ti a-hi-ia# 
4. aq-bi-i-ma 
5. um-ma szu-nu-ma u2-ul ni-na#-ad-di-in 
6. a-na ma-har sza-pi2-ri-ni# ni-la-ak-ma 
7. sza-pi2-ir-ni _sze_-am ma-da-da#-am u2-ka-an-na-an-ni-a-szi-im 
8. i-na-an-na tup-pa-ni a-na _ugula mar-tu_ 
9. nu-usz-ta-bi-la-am 
10. re-esz tup-pi2 szu-a-ti ki-i-il-ma 
11. {disz}{d}na-bi-um-na-s,i-ir 
12. ARAD-i3-li2-szu 
13. u3 ARAD-x-nu 
@reverse 
1. it-ti zalag2-ba-ni-ti a-bi-i-szu-nu <<ti>> 
2. li-id-bu-bu-u2-ma 
3. _sze_-am i-na mu-uh2-hi _sze_ sza na-me-e KI 
4. la i-sza-ak-ka-nu-u2-ma la i-mu-ut-tu 
$ single ruling 


Primary publication: AbB 12, 098
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097294
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510622
Transliteration:
&P510622 = AbB 12, 098 
#atf: lang akk 
@tablet 
@obverse 
1. a-na dingir-i3-in-tu-uh 
2. qi2-bi2-ma 
3. um-ma pa-hu-ra-ma 
4. {d}utu u3 {d}marduk li-ba-li-t,u2-ka 
5. i-nu-u2-ma a-ta u3 a-na-ku-u2 
6. ni-in-na-am-ru-u2 
7. um-ma a-na-ku-u2-ma 
8. _ku3-babbar_ a-nu-um-me-a-am 
9. id-nam{am} 
10. ki-a-am ta-pu-la-an-ni 
11. um-ma at-ta-ma# 
12. gi-ir-ra-am al#-[li-ik] 
@reverse 
1. _ku3-babbar_ u2-ul na-szi-a-ak-ku# 
2. um-ma at-ta-ma 
3. _u4 n-kam#_ i-na zimbir#{ki} 
4. lu-szi-im#-ma _ku3-babbar_ lu-sza-bi-la-ku 
5. a-nu-um-ma {disz}sig-{d}suen 
6. at,-t,ar-da-ku-u2 
7. _ku3-babbar_ szu-bi-lam 
8. it-ti _ku3-babbar_ a-hu-ka 
9. li-il-li-ka-am 
10. ma-ar szi-ip-ri-im 
11. sza asz-pur-ra-am 
12. la u2-la-pa-ta-am 
13. ar-hi-isz t,u2-ur-da 


Primary publication: AbB 12, 099
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): Lenzi, Alan, NABU 2015/096
Collection: British Museum, London, UK
Museum no.: BM 097298
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20160121 cdliadmin
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P497370
Transliteration:
&P497370 = AbB 12, 099 
#atf: lang akk 
@tablet 
@obverse 
1. a-na be-el-ia {d}mar-<<mar>>-tu 
2. sza i-na ma-har {d}utu qi2-bi-is-su2 sza-ma-at 
3. qi2-bi2-ma 
4. um-ma ar-du-um _sag-ARAD_-ka-ma 
5. it-<ti> a-mi-li ta-ab-na-an-ni-ma su-qa3-am 
6. tu-sze-te-qa3-an-ni 
7. u2 sza-at-ti-sza _udu siskur2-re_ a-la-qe2-ku-ma 
8. a-na i-lu-ti-ka ka-bi-it-tim 
9. i-ip-pu-usz 
10. i-na-an-na na-ak-ru ik-szu-da-an-ni-ma 
11. mu-usz-ke-ne2-ku-ma a-ah-hu-a 
12. u2-ul i-a-ri-ru-ni 
@reverse 
1. szum-ma AN ka ra-bi-tum sza ra am 
2. i-na _gesz-nu2_ na-da-a-ku di-ki-an-ni 
3. _udu siskur2-re_ t,a3-ah-da-am 
4. lu-ul-qe2-a-am-ma a-na ma-har _dingir_-ti-ka 
5. lu-ul-li-ka-ak-ku 
6. da mu ZA szi KI il ma ZU 
7. la ma x ma qi2-in-ni la ip-pa-ra-ar# 
8. a-mi-ru-ia a-na _dingir_-ti-ka 
9. ba-ni-tim 
10. u2-sza-aq-ri-ib 
$ single ruling 


Primary publication: AbB 12, 100
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097299
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510623
Transliteration:
&P510623 = AbB 12, 100 
#atf: lang akk 
@tablet 
@obverse 
1. a-na i3-li2-a-si-ia 
2. qi2-bi2-ma 
3. um-ma ip-qu2-{d}sza-la#-[ma] 
4. {d}utu u3 {d}marduk li-ba-al#-[li-t,u2-ka] 
5. lu sza-al-ma-[ta] 
6. isz-tu sza-ad-da-aq-dam# a-na _sze#-[numun?_] 
7. sza sza-ma-asz-ki-il-li u2-na-i-[id-ka-ma] 
8. u2-ul tu-sza-x-[...] 
9. tup-pa-ti-ia a-di ha-am-szi-[szu u2-sza-bi-la-ku-ma] 
10. me-he-er tup-pa-ti-ia u2-ul [tu-sza-bi-lam] 
11. u3 t,e4-em-ka u2-ul ta-[asz-pu-ra-am] 
12. ki-sza ta-al-la-kam 
@reverse 
1. a-na u2-di-ia szu-ur-ku-bi#-[im] 
2. uz-na-ia i-ba-asz-szi-a [(x)] 
3. {disz}{d}ia-ab-li-ia-isz-ta-mar x [...] 
4. ki-ma u2-de-e ku-un-nu-[ki-im?] 
5. _1(u) gin2 ku3-babbar_ i-na gi-ir-ri-im-ma [...] 
6. asz-szu ki-a-am-ma lu-up-pu-da-ku 
7. _iti kin#-{d}inanna u4 3(u)#-kam_ 
8. a-na ma-ah-ri-ka [a]-al-la-kam 
9. 1(ban2) ze2!(SZE)-ra-am sza# sza#-ma-asz-ki-il#-[li ...] 
10. {na4}ku-nu-kam a-na {d}ia-ab-li-ia#-[isz-ta-mar] 
11. i-di-im-ma a-na ma-ah-ri-ia# 
12. t,u2#-ur-dam# 
13. sza#-at-tum la i-iz-zi-ba#-[an-ni] 
@left 
1. _1(asz) sze gur_ i-di-in-ma _{gi}x-x-na hi-a_ 
2. u3 _{gi}x hi-a_ szu-pi2-isz 

Primary publication: AbB 12, 101
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097302
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510624
Transliteration:
&P510624 = AbB 12, 101 
#atf: lang akk 
@tablet 
@obverse 
1. a-na a-wi#-lim 
2. qi2-bi2-ma 
3. um-ma ARAD-{d}la-ah-mi-ma 
4. {d}utu u3 {d}marduk da-ri-isz _u4_-mi li-ba-al-li-t,u2-ka 
5. lu sza-al-ma-ta lu ba-al-t,a-ta 
6. _dingir_ na-s,i#-ir-ka re-esz-ka a-na da-mi-iq-tim 
7. li-ki-il 
8. a-na szu-ul-mi-ka asz-pu-ra-am 
9. szu-lum-ka ma-har {d}utu u3 {d}marduk lu [da]-ri# 
10. _a-sza3 sze-gesz-i3_ i-mi-ir-ti i-ni-ka# 
11. sza ta-mu-ru 
12. a-bi at-ta it-ti-ka ru-ub-bi-a-an-ni 
13. [x x (x)] x x x x x 
14. [...] x x 
$ rest broken 
@reverse 
1. a-na# ma#-har# a-bi-ia ka-ta a-al-la-kam 


Primary publication: AbB 12, 102
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097306
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510625
Transliteration:
&P510625 = AbB 12, 102 
#atf: lang akk 
@tablet 
@obverse 
1. [a-na] a-bi-ia 
2. [qi2]-bi2-ma 
3. um#-ma# ARAD-ku-bi-ma 
4. {d}utu u3 {d}marduk da-ri-isz _u4_-mi li-ba-al-li-t,u2-ka 
5. lu sza-al-ma-ta lu ba#-al-t,a-ta 
6. _dingir_ na-s,i-ir-ka re-esz-ka a-na da-mi-iq-tim 
7. li-ki-il 
8. a-na szu-ul-mi-ka asz-pu-ra-am 
9. szu-lum-ka ma-har {d}utu u3 {d}marduk 
10. lu da-ri 
11. asz-szum da-ba-ab ARAD-{d}tasz-me-tum _nagar_ 
12. sza a-na i3-li2-i-qi2-sza-am a-hi-szu 
13. ki-a-am aq-bu-u2 um-ma a-na-ku-ma# 
@reverse 
1. _1/2(disz) gin2 ku3#-babbar#_ sza e-li a-hi-szu 
2. i-szu-u2 bi-lam 
3. szum-ma la ki-a-am _gu4 hi-a_ sza _e2 ka-guru7_ 
4. i-na _a-sza3_-ka a-ra-ah-ha-as, 
5. {disz}i3-li2-i-qi2-sza-am szu-u2 ki-a-am i-pu-la-an-ni 
6. um-ma szu-u2-ma ARAD-{d}tasz-me-tum szu-u2 
7. i-na x ZI GA UD x ZI KI ki-il-szu-ma 
8. mi-im-mu-ka li-qe2 an-ni-tam iq-bi-a-am 
9. ARAD-{d}tasz-me-tum szu-a-tu as,-ba-su2-ma 
10. _1/2(disz) gin2 ku3-babbar_ i-na qa2-ti-szu il-te-qe2 
11. ki-ma _1/2(disz) gin2 ku3-babbar_ sza i-na qa2-ti-szu il-qu2-u2 
12. _2(disz) gin2 ku3-babbar_ i-na _kar_ zimbir{ki} 
13. a-na# pi2-qa2-dingir at-ta-di-in 


Primary publication: AbB 12, 103
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097330
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510626
Transliteration:
&P510626 = AbB 12, 103 
#atf: lang akk 
@tablet 
@obverse 
1. a-na# ARAD-ku-[bi qi2-bi2-ma] 
2. [um-ma] i-din-x-x-x [...] 
3. [{d}utu] u3 {d}marduk li-ba#-[al-li-t,u2-ka] 
4. [lu] sza-al#-[ma-ta lu ba-al-t,a2-ta] 
5. [x x] x ut,-t,e-tum# [x] x ta#-ad-di-nam 
6. [x x] x a-na sza-di-di e-ri-isz-ka-ma 
7. [u2-ul] ta-ad-di-nam 
8. [isz-ti]-it#-tu# u3 szi-ni-szu 
9. [asz]-pu#-ra-ak-kum-ma szu-mi!(UL) u2-ul ta-az3-ku-ur 
10. tu#-sza-bi-lam u2-ul tu-sza-bi-lam 
11. [{disz}{d}]ia#-ab-li-ia-isz-ta-mar 
12. [a-na] ma#-ah-ri-ka asz-tap-ra-am 
@reverse 
1. [x] ze2-ra-am sza sza-ma-asz-ki-il-li 
2. _na4#_ ku-un-kam-ma szu-bi-lam 
3. i-na _iti kin {d}inanna u4 3(u)-kam_ 
4. ma-ah-ri-ka a-na-ku 
5. i-da-am la tu-sza-ar-sza-am-ma 
6. la ta-sza-ap-pa-ra-am 
7. sza-at-tum la i-iz-zi-ba-an-ni 
$ single ruling 


Primary publication: AbB 12, 104
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097336
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510627
Transliteration:
&P510627 = AbB 12, 104 
#atf: lang akk 
@tablet 
@obverse 
1. asz-szum _a-sza3 ha-za#-nu#-um#{sar#}_ 
2. a-ma-ri-im 
3. a-di szi-ni-szu asz-ta-ap-ra-ak-ku#-nu-szi#-im# 
4. t,e4#-em#-ku#-nu u2-ul ta-asz-pu#-ra#-[nim] 
5. _1(iku) GAN2 a-sza3 ha#-za-nu#-um{sar}_ x [(x)] 
6. szi-ip-ra-tim [(x)] e-ep-sza-ma 
7. re#-esz-ku#-nu# li-ki-il [(x)] 
8. u3 szum#?-ma#?-ma-an _numun ha-za-nu-um{sar}_ ma#-t,e-e 
9. la tu-x [x a]-na# babila2#{ki} 
10. a-[al]-ka#-a-nim-ma 
@reverse 
1. _numun ha#-za-nu-um{sar}_ 
2. li-qe2-a 
$ single ruling 


Primary publication: AbB 12, 105
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097338
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510628
Transliteration:
&P510628 = AbB 12, 105 
#atf: lang akk 
@tablet 
@obverse 
1. a-na# be-el-numun# 
2. qi2-bi2-ma 
3. um-ma {d}suen-i-qi2-sza-am-ma 
4. {disz}hu-za-lum _sza3 erin2_ gu-ti-um 
5. a-na ma-ah-ri-ka at,-t,ar-dam 
6. _1(disz) gu2-un_ SZA KU? BA{sar} 
7. 5(disz) pu-u2-ri sza _szum2-el-lum{sar}_ 
8. 5(disz) ri-ik-si sza _sze-lu2{sar}_ 
9. 5(disz) x [x] x sza# _ga-rasz{sar}_ 
10. x [x] x-ma 
11. szu-[bi]-lam# 
@reverse 
$ blank space 


Primary publication: AbB 12, 106
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097345
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510629
Transliteration:
&P510629 = AbB 12, 106 
#atf: lang akk 
@tablet 
@obverse 
1. a-na a-wi#-lim# sza {d}marduk# 
2. u2-ba-al-la-t,u2-szu 
3. ra-i-im a-wi-le-e 
4. qi2-bi2-ma 
5. um-ma a-hi-ta-li-mi-ma 
6. {d}utu u3 {d}marduk asz-szu-mi-ia da-ri-isz _u4_-mi 
7. li-ba-al-li-t,u2-ka 
8. asz-szum 2(disz) s,u2-ha-re-e 
9. [sza] sig#-an-tum 
10. sza# ki-a-am# ta-asz-pu-ra-am 
11. um#-ma at#-ta-ma 
@reverse 
1. s,u2#-ha-re-e szu-nu-ti 
2. {disz}sig-an-tum u2-ul id-di-nam 
3. 2(disz) s,u2-ha-re-e pu-uh2-szu-nu 
4. t,u2-ur-dam 
5. sza ta-asz-pu-ra-am 
6. {disz}sig-an-tum a-sza-al-ma 
7. um-ma szu-u2-ma 2(disz) s,u2-ha-[ru-u2] 
8. it-ti {disz}{d}na-bi-um-at#?-[pa-lam?] 
9. 2(disz) s,u2-ha-re-e [(x)] 
10. pu-uh2-szu-nu 
11. te-el-te-qe2 [(x)] 
@left 
@column 1 
1. 2(disz) s,u2-ha-re 
2. sza sig-an-tum 
@column 2 
1. t,u2-ur-dam 


Primary publication: AbB 12, 107
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097349
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510630
Transliteration:
&P510630 = AbB 12, 107 
#atf: lang akk 
@tablet 
@obverse 
1. a-na# be-ia 
2. u3 szum-ma-{d}utu 
3. qi2-bi2-ma 
4. um-ma i-bi-{d}nin#-szubur-ma 
5. {d}utu u3 {d}marduk 
6. li-ba-al-li#-t,u2-ku-nu-ti 
7. sza-al-ma-a-ku 
8. mi#-im-ma la ta-na-zi#-qa3# 
9. x [x] x-GA-am 
10. e-te-ti-iq 
11. sza#-al-ma#-a-ku 
@reverse 
1. [_dumu?_ ar]-wi-i 
2. u2-hu-ur 
3. _ku3-babbar_-am ki#-ma 
4. il#-li-ka-ku#! 
5. mu-hu-ur-ma 
6. i-di-isz-szum 
$ single ruling 


Primary publication: AbB 12, 108
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097363
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510631
Transliteration:
&P510631 = AbB 12, 108 
#atf: lang akk 
@tablet 
@obverse 
1. a-na i3-li2-a-si-i 
2. qi2-bi2-ma 
3. um-ma e-tel-pi4-{d}marduk-ma 
4. asz-szum 2(disz) pi2-ti sza ta-aq-bi-a-am 
5. {disz}{d}utu-ra-bi 
6. a-na ma-ah-ri-ka 
7. at,-t,ar-dam 
8. 2(disz) pi2-ti sza _szum2{sar#}_ 
9. u2-pu-ul-ma# 
@reverse 
1. {disz}{d}utu-ra-bi 
2. szu-bi-lam 
$ single ruling 


Primary publication: AbB 12, 109
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097369
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510632
Transliteration:
&P510632 = AbB 12, 109 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}suen-e-ri-ba# 
2. qi2-bi2-ma 
3. um-ma i-din#-{d}iszkur-ma 
4. {d}utu u3 {d}marduk# li-ba-al-li-t,u2-ka 
5. asz-szum s,u2-ha#-ri-ka 
6. x x x la#-hu-un#-{d}da#-gan 
$ rest broken 
@reverse 
$ beginning broken 
1'. um#-ma# a-na#-ku#-ma# a-na# [szi]-im# 
2'. s,u2-ha-ri _1(u) 6(disz) gin2 ku3-babbar_ 
3'. asz-qu2-ul um-ma szu-ma 
4'. a-na-ku-ma _ku3-babbar_ asz-qu2-ul-ma 
5'. s,u2-ha-ra-am el-qe2 
6'. an-ni-tam iq-bi-a-am 
7'. i-na-an-na ki-ma te#-le#-u2 
8'. e-pu-usz-ma# 
9'. sza _1/2(disz) ma-na ku3-babbar_-ka 
10'. ki la-hu-un-{d}da-gan 
@left 
1. li-qe2-a-am x [...] 
2. _ku3-babbar_-pi2 u3 x [...] 
3. szu-bi-[lam] 


Primary publication: AbB 12, 110 
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097374
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510633
Transliteration:
&P510633 = AbB 12, 110 
#atf: lang akk 
@tablet 
@obverse 
1. a-na a-ha-tum 
2. qi2-bi2-ma 
3. um-ma {d}suen-sze-mi#-ma# 
4. {d}utu li-ba-al-li#-it,#-ki# 
5. sza-al-ma-ku a-na qa2-ta-[ni] 
6. at-ta-s,i2# 
7. a-na {d}suen#-na-di#-[in]-szu#-mi 
8. u3 s,u2-ha-ra-at# 
9. a-ha-ti-ki la te-gi#-i 
@reverse 
1. qa2#-ti szum#-ma#-{d}utu 
2. _tug2# hi-a_ sza _1/2(disz) gin2 ku3-babbar_ [(x)] 
3. li-di-na-ki-im-ma 
4. la ta-ri-qi2 ih-di 
5. _sze_-am u3 _i3-gesz_ ni-ka-sa3-ki#? 
6. {disz}{d}nanna-in-du8 li-di-na-ki# 
7. u3 ta-ra-bi-ma 
8. lu-usz-li-ma-ki 
9. ku#-ru-ma-ti a-na bi-ri-ki 
10. la# i-pa-ra-as2 
@left 
@column 1 
1. x x-tum 
2. ma-du 
3. tup-pa-ki 
@column 2 
1. [{disz}{d}]nanna#-in#-[du8] 
2. li-sza-bi-lam 


Primary publication: AbB 12, 111
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097384
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510634
Transliteration:
&P510634 = AbB 12, 111 
#atf: lang akk 
@tablet 
@obverse 
1. a-na a-HU-su-nu 
2. qi2-bi2-ma 
3. um-ma iq-bi-{d}suen-<<ma>> 
4. a-bu-ki-ma 
5. _siki 5(disz) ma-na_ 
6. u3 li-pi2-a-am 
7. _2(disz) ma-na_ u2-sza-bi-la-ki 
@reverse 
1. a-mi-ni ki-ma 
2. _u4?_-um sza-na-tim? 
3. mi-hi-ir hi-si-ia 
4. la tu-sza#-bi-lim 


Primary publication: AbB 12, 112
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097388
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510635
Transliteration:
&P510635 = AbB 12, 112 
#atf: lang akk 
@tablet 
@obverse 
1. a-na a-da-ia-ti-im 
2. qi2-bi2-ma 
3. um-ma i3-li2-u3-{d}utu-ma 
4. {d}utu u3 il-ka li-ba-<li>-t,u2-ka 
5. sza-al-ma-ku 
6. isz-tu i-id 
7. ne-te-mi-id 
@reverse 
1. am-ta-am an-ne-ta-am 
2. ma-ah-ri-sza 
3. la-a tu-szi-szi-ib-szi 
4. i-na ma-ah-ri-ka 
5. pa-ni-sza nu-wi-ir!(AR)-ma 
6. i-na zimbir!(|UD.KIB.NU|){ki} 
7. u3 ba-bi#-li-im 
8. la ta-na-bi!(BA)-it 
9. ri-di-szi-ma 
@left 
1. i-di-in-szi 


Primary publication: AbB 12, 113 
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097392
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510636
Transliteration:
&P510636 = AbB 12, 113 
#atf: lang akk 
@tablet 
@obverse 
1. a-na be-li2-ia 
2. qi2-bi2-ma 
3. um-ma {d}suen-isz-me-a-ni _ARAD_-ka-ma 
4. {disz}i-lu-ni i-na _zimbir{ki}_ qa2-as-su2 na-sa-ha-am 
5. i-da-ab-bu-ub 
6. mi-nu-um sza um-ma at-ta-ma lu-usz-pu-ur-szum-ma 
7. _sze_-am la u2-sza-ab-ba-al-szum i-na qa2-ti-ia x x x [...] 
8. [la i-le]-eq#-qu2-u2 t,e4-em-szu a-na i-li-im-x-x-ni [li-li-kam] 
9. [_sze_-am ma]-la# i-ba-asz-szu-u2 a-pu-ul-szu 
10. [ne-me-ta]-am# la tu-sza-ar-sza-szu 
11. [x x x x] x a-na a-wi-lim _ugula masz2-szu-gid2-gid2_ 
12. [ki-a-am iq-bi-a-am] um#-ma szu-u2-ma 
@reverse 
1. [... asz]-pu#-ur-ma 
2. [... u2-sza-ba?]-lu-ni-kum# 
3. [...] x-nam a-na a-wi-lim 
4. [x x x x (x)] x a-na-ku a-sza-ap-pa-ar# 
5. mi-in-de i-na ti-ib u2-ri tup-pa-am 
6. {disz}{d}nin-urta-ni-szu u2-sza-ba-lu-ni-kum 
7. tup-pa-ka a-na a-wi-lim bu-un-ni-a-am-ma szu-bi-lam 
8. u3 a-na pa-ni {disz}{d}nin-urta-ni-szu szu-a-ti# 
9. mi-im-ma la ta-qa2-ab#-[bi] 
10. _{disz}{d}nanna_-tum _ugula e2_ [x x (x)] 
11. _u4_-mi-sza-am u2-na-ah#-[ha-ad?-ma] 
12. _sag-ARAD_ sza be-li2 at-ta x [...] 
13. li-sza-bi-lu#-[ni]-szu# 
14. a-na _e2_ sin-szesz#-i-din-nam a-li-ik-ma 
15. i-na mu-uh-hi-<szu> szi-si-ma 
@left 
1. {mi2}s,u2-ha-ar-ta-szu li#-[...] 


Primary publication: AbB 12, 114
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097400
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510637
Transliteration:
&P510637 = AbB 12, 114 
#atf: lang akk 
@tablet 
@obverse 
1. [x x x (x)]-nu 
2. at,#-t,ar-dam 
3. [i]-na# _sa10 2(disz) gin2 igi-6(disz)-gal2 ku3-babbar_ 
4. sza# ma-ah-ri#-ka 
5. [a]-na# _1(disz)# gin2 ku3#-babbar szum2{sar}_ 
6. u3 _szum2-el-lum{sar}_ 
7. szu-bi-lam 
$ single ruling 

Primary publication: AbB 12, 115
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097406
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510638
Transliteration:
&P510638 = AbB 12, 115 
#atf: lang akk 
@tablet 
@obverse 
1. asz-szum sza ta#-asz-pu-ra-am 
2. um-ma at-ta#-ma 
3. [szu-up]-ra-am-ma _erin2# aga-us2-mesz_ 
4. li#-il-li-[ku]-ni#-ik-ku 
5. {disz}{d}nanna-ma-an#-szum2# _ku3#-dim2_ 
6. sza _a-sza3_ isz-ta?-ad#-da-ad-ku-ma 
7. la a-wi-lu-u2 sza-ap-ti-szu 
8. isz-mu-u2 
9. a-na ma-hi-ir sza isz-ta-x 
@reverse 
1. [u2]-ul wa-szi-ib 
2. [x]-x-{d}marduk# _nimgir_ 
3. [i-na] pu#-uh2-ri 
4. [it-bi]-a-am-ma 
5. [_gal]-unken#-na_ u3 _di-ku5-mesz_ 
6. [id]-ki#-a-am-ma 
7. it-ta#-al-ka#-ak-ku 
8. a-na pa#-ni-szu i-li-is, 
9. a-na li-x il-li-ka 
10. u3 _sze_-am li-qe2 
@left 
1. u3 ba-x x a-na# [x] x x 
2. x x x x x [...] 


Primary publication: AbB 12, 116
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097419
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510639
Transliteration:
&P510639 = AbB 12, 116 
#atf: lang akk 
@tablet 
@obverse 
1. [a]-na# sza-pi2-ri-ia# 
2. qi2#-bi2-ma# 
3. um-ma sin-szesz-i-din-nam-ma# 
4. {d}utu u3 {d}marduk da-ri-isz _u4_-mi 
5. li-ba-al-li-t,u2-ka# 
6. lu sza-al-ma-ta lu ba-al-t,a#-[ta] 
7. _dingir_ na-s,i-ir-ka re-esz-ka a-na da-mi#-[iq-tim] 
8. li-ki-il 
9. a-na szu-lum sza-pi2-ri-ia ka-ta asz-pu-ra-am# 
10. szu-lum sza-pi2-ri-ia ka-ta ma-har {d}utu u3 {d}marduk# 
11. lu da-ri 
12. ki-ma sza-pi2-ri at-ta ti-du-u2 
13. mu-ki-il ku-ta-al-lim 
@reverse 
1. x x nu sza {d}marduk x iz-zi-zu 
2. [...] 
3. x x [...] x-mi 
4. a-na-ad-di#-[in ...] x 
5. i-na-an-na [...] 
6. usz-[...] 
7. a-na zimbir#[{ki} ...] 
8. u2-[...] 
9. x [...] 
$ rest broken 
@left 
1. [x x x x (x)] a-na a-hi-ti-ia i-zi-iz 


Primary publication: AbB 12, 117 
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097426
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510640
Transliteration:
&P510640 = AbB 12, 117 
#atf: lang akk 
@tablet 
@obverse 
1. a-na ni-szi-i-ni-szu# 
2. qi2-bi2-ma 
3. um-ma {d}suen-sze-mi a-hu-ki-ma 
4. be-el-ki u3 be-le-et-ki 
5. li-ba-al-li-t,u2-ki 
6. sza-al-ma-ku a-na qa2-ta-ni 
7. at-ta#-s,i2 a-na a-wa-tim 
8. an-ni-a-ti-in 
9. a-na _2(u) gin2 ku3-babbar_ 
@reverse 
1. le-qe2#-e-em at#-[ta]-al#-kam 
2. szum#?-ma NI PA AL 
3. ab-bu-ta-ni gu-li-bi 
4. ki-ma a-wi-lu-ti-ki ep-szi 
5. e-li am-ti-ki# a-ha-tum 
6. u3 wa-ar-di-ki {disz}sin-na-di-in 
7. [a]-ah#-ki# la# ta-na-di-i 
8. [x x x] am-ta-am 
9. ni#-x-x-szu ri-ig-mi# [...] 
10. szum#-ma i-sza-ka-an 
11. u3 ta-ra-bi-ma 
12. lu-usz-li-ma-am 


Primary publication: AbB 12, 118
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097438
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510641
Transliteration:
&P510641 = AbB 12, 118 
#atf: lang akk 
@tablet 
@obverse 
1. a-na# e-te#-el#-pi2#-{d}iszkur# 
2. qi2-bi2-ma 
3. um-ma sza-at#-{d}a-a-ma 
4. 1(u) {gi}wa-ne-e 
5. 1(u) {gi}tu-up-szi-ka-tim 
@reverse 
1. 1(disz) {gi}ki-tam 
2. 1(disz) _{gi}pisan_ ha-al-li-im 
3. szu-bi-lam 


Primary publication: AbB 12, 119 
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097442
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510642
Transliteration:
&P510642 = AbB 12, 119 
#atf: lang akk 
@tablet 
@obverse 
1. a-na a-da-ia-tum 
2. qi2-bi2-ma 
3. um-ma {d}suen-sze-me-ma 
4. {d}utu li-ba-al-li-it,-ka 
5. sza#-al-ma#-ku ki-ma te-isz-te-ne2-mu-u2 
6. a-na <pa>-an gi#-ir-ri-im an-ni-im 
7. [u2]-s,i2#-ma te-eq-ru-ba-tam 
8. [x x (x)] x x-ma u2-ul i-di-szu#-nu-szi-ma# 
9. [...] x-nim 
$ 2-3 lines broken 
@reverse 
1. [x] x x x 
2. ka#-asz-da-ka# 
3. x x [x x]-tum# x x [(x)] x 
4. x x x x ta ka AD 
5. la i-si2-ik szum-ma a-hi at-ta 
6. t,e4-em-ka u3 t,e4-em 
7. _e2_ na-ap-t,a3-ri#-szu 
8. szu#-up-ra-am a-x-ra-am asz-szu-re-em 
9. u3 tup-pi2 x [x (x)]-ka# 
10. szu-t,i-ir#-szu 


Primary publication: AbB 12, 120
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097444
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510643
Transliteration:
&P510643 = AbB 12, 120 
#atf: lang akk 
@tablet 
@obverse 
$ beginning broken 
1'. x x x x x x IZ 
2'. szu-bi-la-am-ma 
3'. ma-la sza ha-asz-ha-ta 
4'. i-na tup-pi2-ka szu-up-ra-am-ma 
5'. s,i-bu-tam ma-la ta-sza-pa-ra-am 
6'. lu-pu-sza-ak-ku 
7'. la-ma mu-u2 i-na-asz-szu-ni 
8'. ar-hi-isz szu-bi-lam-ma 
@reverse 
1. it-ti gi-ir-ri s,a-am-di 
2. lu-ul-li-ik 
3. s,i-bu-ut ta-sza-pa-ra-am 
4. lu-ul-qe2-e-ma la-ma e-bu-ri 
5. a-na ma-ah-ri-ka lu-ut-ta-al-ka 
6. i-na an-ni-tim ta-ka-li ta-ma-ar 
7. u3 tup-pa-ka a-na {d}nanna-ibila-ma-an-szum2 
8. _dub-sar erin2_ szu-bi-lam-ma 
$ rest broken 


Primary publication: AbB 12, 121
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097482
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510644
Transliteration:
&P510644 = AbB 12, 121 
#atf: lang akk 
@tablet 
@obverse 
1. a-na s,il2-li2-ia 
2. qi2-bi2-ma 
3. um-ma a-ra-am-ma-dingir-a-bi-ma# 
4. sza te-pu-sza-an-ni 
5. du-um-mu-qa2-at 
6. a-na _u4 1(disz)-kam_ 
7. a-al#-[la]-ka#-ak-ku# 
@reverse 
1. i-na-an-na be-el# _ku3-babbar_ 
2. {disz}na-qi2-mu _ku3-babbar_ u3 _masz2_ 
3. usz-ta-bi#-la#-am#-ma# 
4. szum-ma# _ku3-babbar_ la tu-sza-ba#-lam# 
5. {disz}dumu-zimbir{ki} [x (x) (x)] 
6. e-sze-e-er-ma 
7. _ku3-babbar_ e-le-eq#-qe2# 


Primary publication: AbB 12, 122
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097501
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510645
Transliteration:
&P510645 = AbB 12, 122 
#atf: lang akk 
@tablet 
@obverse 
1. a-[na] i-din-[x x (x)] 
2. qi2#-bi2-ma# 
3. um-[ma x x (x)] x-ma# 
4. {d}utu li#-[ba]-al#-li#-it,-ka# 
5. an-nu-u2 sza#? [a-na-ku] u3 at-ta#? 
6. ni-id!(DI)-bu#?-bu#? 
7. sza-at-ti x x x x x [...] 
8. asz-ku-nu x x x x x [...] 
9. u2-ul ti-de-e 
10. ar-hi-isz _ku3-babbar_ 
@reverse 
1. u3 ne2-me-el2-szu 
2. li-qe2-a-am-ma ku-usz!(AL)-da-[an-ni] 
3. a-na mi-im-ma 
4. sza ad-di-na-ku# [...] 
5. a-na ARAD-esz3-esz3 la tu-sza-sa-ak 
6. it-ti-ka a-da-bu-ub 
7. ta-al-la-kam-ma ne2-me-lam# 
8. ti-le-eq#-qe2# 
9. {disz}ARAD-esz3#-[esz3 ...] 
10. S,I# x [...] 
@left 
1. _dumu_ {d}suen-na-s,ir la ti-gi 


Primary publication: AbB 12, 123
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097512
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510646
Transliteration:
&P510646 = AbB 12, 123 
#atf: lang akk 
@tablet 
@obverse 
1. i-na _sze_-e sza ma-ah-ri-ka 
2. _4(asz) sze gur {gesz}ban2_ {d}marduk 
3. a-na {d}nin-urta-ni-szu 
4. i-di-in-ma 
5. a-na babila2{ki} 
6. ar-hi-isz li-ib-lam 
7. u3 _1(ban2) sze_ 
@reverse 
1. sak-ku-ut-ta 
2. ku-un-kam-ma 
3. szu-bi-lam 


Primary publication: AbB 12, 124
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097520
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510647
Transliteration:
&P510647 = AbB 12, 124 
#atf: lang akk 
@tablet 
@obverse 
1. a-na ARAD-si-gar qi2-bi2-ma 
2. um-ma gi-mil-{d}marduk-ma 
3. ki-ma ta-at,-t,u2-la-an-ni 
4. a-na _e2_-ia pa-ni-ia u2-ul# u2-sa-hi-ir# 
5. it-ti um-mi-ia u2-ul am#-ta-li#-ik# 
6. ki-ma ti-du-u2 sza ha-ar-ra#-ni-im 
7. sza pa-ni-ia u3 a-ma-at 
8. u3 ba-al-t,a2-ku u3-li-i-de#-e 
9. _a-sza3_ szu-ta-ak-szi-id 
10. a-na _e2_-ti-ka la te-gu 
11. la i-ha-t,i3-a-ma li-bi la i-ri-iq 
@reverse 
1. u3 a-na um-mi-ka 
2. la te-gu _szuku_ i-di-in 
3. ar-hi-isz _2(barig) zi3-da_ szu-bi-lam 
4. a-ma-tum i-na _e2-gal_ u2-zu-ba 
5. ni-da-hi-im la ta-ra-szi-a-am 
6. u3 la i-ha-t,i3-ma li-bi 
7. la i-ma-ra-as, it-ti-ka szu-un-s,i2-ir-ka 
8. a-na sza asz-pu-ra-ak-ku 
9. ni-da-hi-im la ta-ra-asz-szi 
10. [a]-na# li-bu ma-ti-im 
11. la ta-la-ak 
@left 
1. a-bi a-hi at-ta-ma ni-da-hi-im 
2. la ta-ra-szi-a-am 


Primary publication: AbB 12, 125
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097527
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510648
Transliteration:
&P510648 = AbB 12, 125 
#atf: lang akk 
@tablet 
@obverse 
1. a-na be-li2-ia 
2. qi2-bi2-ma 
3. um-ma id-da-tum-ma 
4. sza el-me-szum ARAD-ka 
5. i-pu-sza-an#-ni 
6. be#-li2# at-ta u2-ul ti-de-e 
7. da#-ba-ba-am isz-pu-ra-am-ma 
8. um-ma szu-ma# a-di pa-ni-ia 
9. la ta-mu#-ru la te-ep-pe2#-[esz] 
10. an-ni-tam isz-pu#-ra-am-ma 
11. a-li#-ik#-ma# 
@reverse 
1. szu-uz-zu#-qa2#-ku# 
2. u3 _ku3-babbar_ um-mi-a-ni-ia# 
3. a-na _szuku-mesz_ i-il#-la#-ka#-[am] 
4. tup-pi2 a-na ma-har be#-[li2]-ia ka-ta# 
5. usz-ta-bi-lam 
6. it-ti _{gesz}ma2 hi-a_ sza# i-il#-la-ka#-[(nim)] 
7. tup-pi2 be-li2-ia ka-ta 
8. {disz}sza#-al-lu-rum ARAD-ka li-il-qe2-a-am 
9. a-na# ma-har be-li2-ia ka-ta 
10. lu-ul-li-ka 
11. la a-ma-a-at 
@left 
1. a-me#-[ru-u2]-a a-na be-li2#-ia 
2. [ka-ta] li-ik-ru-bu 


Primary publication: AbB 12, 126
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097564
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510649
Transliteration:
&P510649 = AbB 12, 126 
#atf: lang akk 
@tablet 
@obverse 
1. a-na a-wi-lim sza {d}marduk 
2. u2-ba-la-t,u2-szu 
3. qi2-bi2-ma 
4. um-ma {d}suen-na-s,i-ir-ma 
5. {d}utu u3 {d}marduk da-ri-isz _u4_-mi 
6. li-ba-al-li-t,u2-ka 
@reverse 
1. asz-szum s,u2-ha-ri-im 
2. sza ta-asz-pur-ra-am 
3. di-in-szu-u2 
4. pu-ru-sa-am 
5. usz-ta-ar-szi 

Primary publication: AbB 12, 127
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097638
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510650
Transliteration:
&P510650 = AbB 12, 127 
#atf: lang akk 
@tablet 
@obverse 
1. a-na sza-pi2-ri-ia 
2. qi2#-bi2-ma 
3. um-ma {d}nin-szubur-tukul-ti-ma 
4. {d}utu u3 {d}marduk asz-szu-mi-ia 
5. sza#-pi2-ri li-ba-al#-<li>-t,u2 
6. asz-szum _gir2_ mu-sza-ki-lim 
7. sza# sza-pi2-ri iq-bi-a-am 
@reverse 
1. um-ma sza-pi2#-ri-ma 
2. _gir2_ mu-sza-ki-lam ga-am-ra-am# 
3. u2-sza-ab-ba-la-kum# 
4. _gir2_ mu-sza-ki-lam szu-a-ti 
5. szu#-bi-lam-ma 
6. ma#-har {d}marduk lu-sza-bi-la#-kum 


Primary publication: AbB 12, 128
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097653
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510651
Transliteration:
&P510651 = AbB 12, 128 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}suen-e-ri-ba-am 
2. qi2-bi2-ma 
3. um-ma ta-ri-ba-tum 
4. _1/2(disz) gin2 ku3-babbar_ 
5. a-na bu-ra-tum 
@reverse 
1. i-di-in 
$ blank space 


Primary publication: AbB 12, 129
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097659
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510652
Transliteration:
&P510652 = AbB 12, 129 
#atf: lang akk 
@tablet 
@obverse 
1. a-na a-ia-a qi2-bi2-ma 
2. um-ma i3-li2-u3-{d}utu-ma 
3. {d}utu u3 _dingir_ be-li-ki li-ba-al-li-t,u2-ki 
4. sza-al-ma-a-ku _1(disz) gin2 ku3-babbar_ 
5. u2-sza-bi-lam-ma te-re-tum 
6. u2-ul isz-li-ma-ma u2-ul u2-s,u2-nim 
7. _1(disz) sila3 i3-gesz_ e-li {disz}{d}nanna-in-du8 
8. i-szu szu-up-ri-ma li-il-qu2-ni-ki 
9. pi2#-qa2-at sza il-ki-ia 
10. i-sza-su-ni-ki-im 
11. [tap]-pe2-e u2-na-a-id# 
@reverse 
1. _sze_-am szum-ma 1(barig) 4(ban2) szum-ma 2(barig) 3(ban2) 
2. li-qe2-e-ma id-ni 
3. szum-ma tap-pe2-e la id-di-na-ki 
4. _a-sza3_ a-hi-ia al-qe2-ma 
5. um-ma at-ti-ma a-di a-hu-ka i-la-kam 
6. _sze_-am lu-u2 1(barig) 4(ban2) lu-u2 2(barig) 3(ban2) 
7. id-nam-ma lu-ud-di-in 
8. szum-ma la i-di-nu-ni-ki-im# 
9. ar#-hi-isz ka-asz-da-ki 
10. szu-bi-li-szu-nu-ti 


Primary publication: AbB 12, 130
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097677
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510653
Transliteration:
&P510653 = AbB 12, 130 
#atf: lang akk 
@tablet 
@obverse 
1. a-na _ugula gidri_ sza {d}marduk u2-ba-al-la-t,u2-szu 
2. qi2-bi2-ma 
3. um-ma du-ul-lu-qum-ma 
4. ze-eh-pi2 qe2-er-bi-a-am 
5. u3 a-li-a-am ak-nu-kam-ma 
6. usz-ta-bi-la-ak-kum 
7. _1(disz) gin2 ku3-babbar_ a-na ARAD-ku-bi 
8. i-di-in-ma 
9. a-na ma-ah-ri-ia 
@reverse 
1. szu-bi-lam 
2. ze-eh-pi2 a-na szi-bu-ti-ia 
3. ki-i-il 
4. i-dam la tu-sza-ar-sza-am-ma 
5. la ta-sza-ap-pa-ra 
@seal 1 
1. du-lu-qum 
2. dumu# [...] 
3. ARAD {d}marduk#? 


Primary publication: AbB 12, 131
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097687
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510654
Transliteration:
&P510654 = AbB 12, 131 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}suen-na-tum 
2. qi2-bi2-ma 
3. um-ma i3-li2-{d}utu-ma 
4. {d}utu <u3> {d}mar-tu 
5. li-ba-al-li-t,u2-ka 
6. a-bu-ka ma-ru-us,4-ma 
7. u2-ul a-li-ka-x-x 
@reverse 
1. _1(barig) 1(ban2) zi3-da!(ID)_ 
2. _1(disz) 1/2(disz) sila3 <i3>-gesz_ 
3. sza sin-na-tum 
4. _1(barig) zi3-da!(ID)_ 
5. sza i-pa-li-is!(KU) 
6. i-na _zi3_ ta bi ID 


Primary publication: AbB 12, 132
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097795
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510655
Transliteration:
&P510655 = AbB 12, 132 
#atf: lang akk 
@tablet 
@obverse 
1. a-na lu-u2-numun 
2. qi2-bi2#-ma# 
3. um-ma a-wi-il-[{d}]iszkur 
4. {disz}ar-du a-hi 
5. a-na ma-ah-ri-ka 
6. at,-t,ar-dam 
7. 1(disz) szu-szi gi-id-li 
8. sza _szum2{sar}_ 
@reverse 
1. u3 1(u) gi-id-li 
2. sza _el-lu-tum{sar}_ 
3. sza _igi-6(disz)-gal2 ku3-babbar_ 
4. szu-bi-lam 
5. ni-di a-hi la ta-ra-asz-szi 


Primary publication: AbB 12, 133
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097820
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet & envelope
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510656
Transliteration:
&P510656 = AbB 12, 133 
#atf: lang akk 
@tablet 
@obverse 
1. a-na ka-{d}utu 
2. {disz}{d}nin-urta-e-ri-isz 
3. u3 im-gur-{d}suen qi2-bi2-ma 
4. um-ma {d}er3-ra-ga-mil-ma 
5. asz-szum di-nim sza ta-di-na-ne i-ia-tim i3-li2 
6. ma-ha-ar ri-isz-{d}utu gi-<im>-la-ni 
7. a-na ib-ba-tim qi2-bi-ma 
8. _ku3-babbar_ li-sza-bi-lam 
9. a-na ib-ba-tim qi2-bi2-ma 
10. _ku3-babbar_ la ma-du la me ma 
11. a-nu-ma _ku3-babbar_ szu-bi-lam 
@reverse 
1. szum-ma _ku3-babbar_ a-bi la i-di-na-ku 
2. u3 a-na-ku asz-pu-ra-ku 
3. iq-qa-ab-li-it e-ri-isz-hi-gal 
4. tup-pa an-ne2-em iq-qa-ab-li-it 
5. e-ri-isz-hi-gal hi-pi2-szu-ma 
6. u3 at-la-ak 
7. _u4_-mi-sza tu BE? bu 
8. 3(disz) pa-<ar>-si-ka-tim _kasz_ 
9. 5(disz) pa-ri-si _sze_ a-na ki-sa3-tim 
10. sza s,u2-ha-re-e 
$ single ruling 
@envelope 
@obverse 
1. tup-pi2 {d}er3-ra-ga-mil 
2. a-na ka-{d}utu 
3. {disz}{d}nin-gal-e-ri-isz 
4. u3 im-gur-{d}suen 
@seal 1 
$ (uninscribed) 


Primary publication: AbB 12, 134 
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097833a
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: envelope
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510657
Transliteration:
&P510657 = AbB 12, 134 
#atf: lang akk 
@envelope 
@obverse 
1. [tup]-pi#? a-hi-i3-li2-ia 
2. a-na szar-rum-{d}iszkur# 


Primary publication: AbB 12, 135
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 016496
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510658
Transliteration:
&P510658 = AbB 12, 135 
#atf: lang akk 
@tablet 
@obverse 
1. a-na sza#-pi2#-ri-ia# 
2. qi2-bi2-ma 
3. um-ma nu?-uh#?-dingir-ma 
4. {d}utu# u3 {d}marduk# da#-ri-isz _u4_-mi 
5. sza#-pi2-ri [(x) (x)] li-ba-al-li-t,u2-ka 
6. sza-pi2#-ri# lu sza-lim# lu ba-li-it, lu da-ri 
7. [_dingir_ na]-s,i#-ir sza-pi2#-ri-ia 
8. s,i#-bu#-tam a-ia ir-szi 
9. [szu]-lum# sza-pi2-ri-ia ma-ha-ar {d}utu 
10. [lu] ka#-ia-an 
11. [asz]-szum# _4(iku) GAN2 a-sza3_ sza x [x] x 
12. [x (x)] x x x i-ri-szu#-ma 
13. [x x x (x)] x-ia mu x x 
14. [x x x (x)] x-pu-szu x x x 
15. [x x x x] x x [...] 
16. [x x x x] x x [...] 
17. [isz]-tu# _mu 4(disz)-kam#_ [...] 
18. [x x] x x x x [...] 
@reverse 
1. [...] 
2. [...] x [x (x)] 
3. [...] x szu# [...] 
4. _1(iku) GAN2_ [...] x u3 ba#?-x [x] 
5. ib-ru-u2 i-[na _mu] 2(disz)-kam_ ih-li-qu2-ni-in-ni 
6. sza-at#-tam il-qi2#-i-szum-ma 
7. _2(iku) GAN2 a-sza3_ i-ri#-isz-ma# 
8. x x _hi-a_-ma szu#-u2 u3 x x 
9. i-ha-al-li-qu2 ARAD-i3-li2-szu szu-u2 
10. x x-i3-li2-szu asz-szu-mi-szu i-da-ab-bu-bu 
11. _2(esze3) GAN2# a-sza3_-szu i-na _a-gar3_ la#-sza-na-an 
12. u3 _1(esze3) GAN2 a-sza3_ i-na _a-gar3_ ha-ra-rum 
13. u3 ne#-eb-ri-tam it-ti _aga-us2_ bi-ru-tim 
14. i-na-ad-di-nu-szum i-na-an-na _1(u) erin2_ 
15. {disz}zalag2-i3-li2 il-qi2-a-am#-ma# 
16. _dumu#_ ri#-isz-{d}utu u3 ma-ra#-[as-su2] 
17. is#-sa3-na-ah-hu-ur-szu#-[nu-ti-ma] 
18. u2-ul ti-mu#-ur-szu-nu-ti 
19. _{disz}dam#_ ri-isz-{d}utu it-ta-bi-a-am# 
@left 
1. sza-pi2-ri x x x [x x (x)] x [x] x [...] 
2. [_{disz}]dam_ ri-isz-{d}utu# x [x] x x [x x] x x [...] 

Primary publication: AbB 12, 136
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 016797
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510659
Transliteration:
&P510659 = AbB 12, 136 
#atf: lang akk 
@tablet 
@obverse 
$ beginning broken 
1'. x [...] 
2'. a-na [szu-ul-mi-ka asz-pu-ra-am] 
3'. szu-lum#-ka i-na [ma-har {d}utu] 
4'. lu# [da-ri] 
5'. ki-ma at#-ta [ti-du-u2] 
6'. asz-[pu-ra-ak-kum] 
7'. um#-ma# [a-na-ku-ma] 
8'. i-na# qa2-[be2-e ...] 
9'. _udu-nita2#-mesz_ [...] 
10'. an-ni-tam asz-pu#-ra#-ak#-ku#-um# 
11'. [x x] x x i-na# x [x x] x x [x (x)] 
12'. [...]-am 
$ rest broken 
@reverse 
$ beginning broken 
1'. a-sza-am#-ma re#-esz-ka u2-ka-al-lu 
2'. an-ni-tam isz-me-ma ih-du 
3'. i-na-an-na dumu-u4-2(u)-kam szu-a-ti# 
4'. tup-pi2 usz-ta-bi-la-ak-[kum] 
5'. {disz}ku-ru-u2 sza a-na ma-ah-ri#-ka 
6'. asz-pu-ra-asz-szu# 
7'. _udu-nita2-mesz_ i-di-isz-szum-ma 
8'. ar-hi-isz t,u2-ur-da-asz-szu 
9'. an-ni-tam ep-sza-[am] 
10'. i-na an-ni-tim at#-[hu-ut-ka] 
11'. lu-[mu-ur] 
12'. [x] x x [...] 
$ rest broken 
@left 
@column 1 
1. [...] x-ma 
2. [...] e-pe2-szum 
@column 2 
1. a-na sza asz-pu-ra-ak-ku-[um] 
2. la tu-usz-ta-a 

Primary publication: AbB 12, 137
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 017024
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510660
Transliteration:
&P510660 = AbB 12, 137 
#atf: lang akk 
@tablet 
@obverse 
1. a-na _a-sza3_ i-na e-re-szi-im 
2. la ik-ka-bi-su 
3. {disz}na-bi-{d}en-lil2 u3 mu-ba#-al-li-it, 
4. a-na babila2{ki} la i-il-la-ku-ni 
5. a-na e2-duru5-bi-sa3{ki} szu-pu-ur2-ma 
6. _duh had2# du#_ li#-il#-qu2-nim 
7. a-na# sza asz-pu-ra-am 
8. ni-di a-hi-im la ta-ra-asz-szi 
9. {disz}su-ra-ra-am a-di wa-asz-bu 
10. _2(disz) sila3 ninda_ u3 _2(disz) sila3 kasz_ 
11. li-ip-qi2-du-szu 
@reverse 
1. isz-tu ta-al-li-ku 
2. t,e4-em _a-sza3_ ma-la te-ri-szu 
3. u3 _sze-gesz-i3_ u2-ul ta-asz-pu-ra-am 
4. _duh had2# du#_ sza e2-duru5-bi-sa3{ki} 
5. il5-te-qu2-ni-ik-ku-um 
6. {disz}i3-li2-i-qi2-sza-am at,-t,ar-dam 
7. [t,e4?]-em# _a-sza3_ ma-la a-di i-na-an-na 
8. in#-ne-er-szu 
9. u3 _sze-gesz-i3_ 
10. <<i-na>> tup-pa-ka pa-nam szu-ur2-szi-a-am-ma 
11. szu-up-ra-am 


Primary publication: AbB 12, 138
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 017151
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510661
Transliteration:
&P510661 = AbB 12, 138 
#atf: lang akk 
@tablet 
@obverse 
1. a-na a-hi-ia 
2. qi2-bi2-ma 
3. um-ma be-el-szu-nu-ma 
4. {d}utu u3 {d}marduk da-ri-isz _u4_-mi 
5. a-hi ka-ta# li-ba-al-li-t,u2 
6. a-hi lu sza-lim lu ba-li2-it, 
7. _dingir_ na-s,i-ir a-hi-ia re-esz a-hi-ia 
8. a-na da-mi-iq-tim li-ki-il 
9. a-na szu-lum a-hi-ia asz-pu-ra-am 
10. szu-lum a-hi-ia ma-har {d}utu u3 {d}[marduk] 
11. lu da-ri 
@reverse 
1. ki-ma a-hi at-ta# ti-du-[u2] 
2. x x x x a-na x x x x 
3. ki-a-am aq#-bi um#-ma a-na-ku-ma 
4. ki#-ma _sze_-am ta-ma-ah-ha-ru3 
5. a-[na] a-hi-ka qi2-bi-ma 
6. _1(asz) sze_-am li-qe2-a-am 
7. i-na _buru14 sze_-am a-na# ma-asz-ka-ni-szu 
8. u2-ta-ar 
9. _u4 <<kam iti>> 1(u) 6(disz)-kam_ sza _iti udru{duru5}_ 
10. {disz}ib-ni-{d}marduk? a-na x x _u8 udu hi-a_ 
11. x x sza a-na x x x x [(x)] 
12. ki#-a-am iq-bi um-ma szu#-ma 
@left 
1. _3(barig) 1(ban2) numun_ SAR? RA? tu-x x x 
2. szu-u2 u2-ul im-gur 


Primary publication: AbB 12, 139
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 017156
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: Sumu-al_el.00.00.00, Sabium.00.00.00
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510662
Transliteration:
&P510662 = AbB 12, 139 
#atf: lang akk 
@tablet 
@obverse 
1. szi-pi2-ir-tum i-s,a-at-ma 
2. i-na li-ib-bi u2-ul asz-t,u2-ur 
$ single ruling 
3. a-di be-li2 at-ta mu-sza-ki-li 
4. e-sza-am ta-al-li-ku-ma 
5. AN NU UM? AZ ZA SZI AM 
6. an-ni-a-am i-qa2-ab-bi-a-am 
7. i-na-an-na szum-ma be-li2 i-qa2-ab-bi 
8. a-na _dumu_ e-tel-pi4-sza 
9. it#-ta-[la-ak] 
@reverse 
1. [1(disz)?] _tug2#?_ a-la-qe2-am 
2. am-mu-uh-hi _1/3(disz) ma-na ku3-babbar_ 
3. _5(disz) gin2 ku3-babbar_ u3 _4(disz) gin2 ku3-sig17_ 
4. _si-bi_ a-na-ku am-mu-uh-hi 
5. e-te-di-IG _3(disz) gin2 ku3-babbar_ 
$ single ruling 
6. ki-ma u2-pa-hi-ru sza be-li2-ia-ma 

Primary publication: AbB 12, 140
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 017162
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510663
Transliteration:
&P510663 = AbB 12, 140 
#atf: lang akk 
@tablet 
@obverse 
1. a-na# [x x]-ia 
2. qi2#-[bi2]-ma 
3. um#-[ma ...] x-ma 
4. {d}utu u3 [{d}]marduk# da-ri-isz _u4_-mi 
5. li-ba-li-t,u2-ka 
6. lu sza-al-ma-ta lu ba-al-t,a-ta# 
7. _dingir_ na-s,i-ir#-ka x ri-isz-ka a-na da#-mi#-[iq-tim] 
8. li#-ki-il# a-na szu-ul-mi#-ka# asz-pu-ra#-[am] 
9. szu-lum-ka ma-har# {d}utu u3 {d}marduk 
10. lu da-ri 
11. {disz}sin-i-din-nam x x x x 
@reverse 
1. a-na ma-ah-ri-ka at,-t,ar-dam# 
2. {disz}[x x (x)] x-{d}utu 
3. x [x x x (x)]-ma 
4. a-na x [x x x (x)]-ma 
5. ri-x x [x x (x)] x 
6. u3 ze-eh#-pi2 [(x) (x)] 
7. ki-[(i)-il] 
$ single ruling 


Primary publication: AbB 12, 141
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 017167
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510664
Transliteration:
&P510664 = AbB 12, 141 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}suen-re-me-ni 
2. qi2#-bi2-ma 
3. [um-ma {d}]suen-a-bu-szu-ma 
4. [{d}utu u3] {d}marduk asz-szu-mi-ia 
5. [da]-ri#-isz _u4_-mi li-ba-al-li-t,u2-ka# 
6. [x x x (x)] _a-sza3_-im 
7. [x x x x (x)] x-tu-ni-szu# 
$ rest broken 
@reverse 
$ blank space 


Primary publication: AbB 12, 142
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 017188
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510665
Transliteration:
&P510665 = AbB 12, 142 
#atf: lang akk 
@tablet 
@obverse 
1. {disz}i-lu-la-tum _sza3 erin2_ hi-ri2-tum{ki} 
2. sza at,-ru-da-ak-kum-ma 
3. _3(ban2) 2(disz) sila3 i3-gesz_ sza _{gesz}ban2_ {d}marduk na-da-nu 
4. isz-sza-ap-ra-ak-kum 
5. at-ta i-na na-ma-ad-di ma-t,i-i 
6. _i3-gesz_ ta-ad-di-in-ma 
7. _2(disz) sila3 i3-gesz_ a-na ZU-hu-ur ri x ti szu-pur-ma 
8. usz#-ta-ah-ri-s,u2-ni-in-ni 
9. u3 ni-sza-am i-na sza-ap-ti-ni szu#-ku#-un-ma 
10. _i3-gesz_ id-[na]-szum# 
@reverse 
1. x x x x x x te-te-ep-sza#-[(am)] 
2. {disz}i-lu-la-tum szu-u2 
3. a-na zimbir{ki} it-ta-al-kam 
4. _i3-gesz_ usz-sze-er-szum-ma 
5. li#-il-qe2-a-am 
6. u3 t,e4-em-ka a-na _ugula mar-tu_ 
7. i-na tup-pi2 u2-ul ta-asz-pu-ra-am-ma 
8. u2-ul aq-bi-szum 
9. i-na li-li-a-ti 
10. a-na babila2{ki} 
11. u2-sze-esz-sze-er 
12. t,e4-em-ka ma-am-ma 
@left 
1. ar-ki-ia a-na _ugula mar-tu_ 
2. szu#-up-ra-am 


Primary publication: AbB 12, 143
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 017339
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510666
Transliteration:
&P510666 = AbB 12, 143 
#atf: lang akk 
@tablet 
@obverse 
1. a-na a-wi-lim ra-i-im a-wi-le#-[e] 
2. sza {d}marduk u2-ba#-la#-t,u2#-szu 
3. qi2-bi2-ma 
4. um-ma {d}na-bi-um#-ma#-lik-ma 
5. {d}utu u3 {d}marduk da#-[ri]-isz _u4_-mi li-ba-al#-li#-t,u2#-ka 
6. lu sza-al#-ma-a-ta lu ba-al-t,a2-a-ta# 
7. a-na szu-ul#-[mi]-ka asz-pur-am szu-lum-ka szu#-[up]-ra# 
8. [x x x (x)] x a-na an-za-gar3-en-lil2-la2{ki} 
9. a-na sza-am-mi# szu#-ku-li-im 
10. is-su2-ha-am 
11. tup#-pa-ka a-na {d}marduk#-na#-s,ir# 
12. s,u2-ha-ri-ka 
@reverse 
1. sza i-na# i-ta#-at# an-za-gar3-en#-lil2-la2#[{ki}] 
2. li#-il#-li#-ik#-ma 
3. x x TUR li-id#-du-ma 
4. sza#-am#-mi li-sza#-ki-lu 
5. x i# x x BI-im-ma 
6. la [(x)] x x x-ru 


Primary publication: AbB 12, 144
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 017358
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510667
Transliteration:
&P510667 = AbB 12, 144 
#atf: lang akk 
@tablet 
@obverse 
1. [a]-na# a-wi-[lim] sza# {d}marduk# u2-ba#-al#-la-t,u2-szu 
2. [qi2]-bi2#-ma 
3. [um-ma] i3-li2-i-qi2-sza#-am#-ma 
4. [{d}utu u3 {d}]marduk# da#-ri-isz# _u4_-[mi] li#-ba-al-li-t,u2-ka 
5. [lu] ba#-al-t,a-ta# [szu-lum]-ka ma-har# {d}marduk# 
6. [lu] da#-ri# 
7. _dingir_ na#-s,i#-ir-ka s,i#-[bu]-tam# a-ia ir-szi 
8. a-na szu#-ul#-mi-ka [asz]-pu#-ra-am 
9. szu-lum-ka [ma-har {d}marduk] lu-u2 da-ri 
10. {disz}{d}suen-a-bu#-szu a-na# sza-tam-mu-ut 
11. _e2_ {d}inanna be-el-ti x x x x 
12. x x u2-wa-e-ra#-asz-szu#-ma 
13. [a]-na# zimbir{ki} a-na ma-ah-ri-ka 
14. [it]-ta#-al-kam 
15. it#-ti-ka a-wi-lum szu-u2 
16. u2-ul na-ka-ra-an-ni-a-szi-im# 
@reverse 
1. a-hu#-ni li-ib-bu ki-im-ti#-[ni] 
2. _e2_ na-ap-t,a#-[ri-im] t,a#-ba-am 
3. szu#-ku-usz-szu#-um 
4. it-ti-szu i-sza-ri-isz 
5. du-bu-ub 
6. li-ib#-ba#-szu la# i-ma#-ar#-ra-as,-ma 
7. [x x (x) e-sze]-em-me-e-ma 
8. [li-ib-bi] la# i-ma#-ar-ra-s,a-ak-kum 
9. [a]-na# a-wa#-ti-szu la tu-usz-ta-a 
10. [a]-na# ia-ku-un-a-szar x-ru 
11. [x] BU# usz x szar-ri 
12. [qa2-ba]-am# isz#-ku-un-ma 
13. [x x] x x x x x a-bu-szu 
14. [x x x]-ru-ma _ku3-babbar_ sza# ta-ad-di-nu 
15. [{disz}ia]-ku#-un-a-szar szu-a-ti 
16. [...] x x [...] 
17. [...] 
18. [...] x x [...] 


Primary publication: AbB 12, 145
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 017359
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510668
Transliteration:
&P510668 = AbB 12, 145 
#atf: lang akk 
@tablet 
@obverse 
1. [a-na] be#-li2-[ia] 
2. [qi2]-bi2#-ma 
3. [um-ma x x]-mu#-sza-lim-ma 
4. [{d}utu u3 {d}marduk] asz#-szu-mi-ia da-ri-isz# _u4_-mi 
5. [be-li2 ka-ta] li-ba-al-li-t,u2 
6. ki#-ma# sza-mu-u2 u3 er-s,e-tum da-ru-u2 
7. [(x)] asz-szu-mi-ia lu# da#-ri#-[a]-ta# 
8. [x] x x ti-im-ma x i-qa-ab-bi-ka 
9. [x x (x)] asz-pu-ra-am 
10. [x x x (x)] e-gu-u2 x [...] 
11. [x] x x x x x x x x 
12. it#-ti _ugula szu-i_ ma-di-isz usz-te-s,i2 
13. x x-am# u2-ub#-bi#-la-an-ni-ma 
14. u2#?-t,u2-ul 
15. x la id-bu-ba-am u3 a-na-ku 
16. [x x] x x szu x [...] 
17. [...] x [...] 
@reverse 
1. {disz}a-bu-um-wa-qar u3 [...] 
2. a-na t,e4-mi tu-ur-ri-[...] 
3. _8(disz) u4_-mi ki-a-am x [x] x [(x)] 
4. u2-ul u2-te-er-ru-nim 
5. a-di i-na-an-na uq-ti-szu-nu-ti 
6. u3 t,e4-em a-la-ki-ia u2-ul ta-asz-pu-ra-am 
7. a-di _u4_-um _u4 2(u) 5(disz)-kam#_ wa-asz-ba-a#-ku# 
8. asz-szum ne-me-et-tim e-li#-ia la# ra#-szi-e 
9. re#-sza-am u2-ki-il 
10. x KI? la il#-li#-ku-nim at-ta-la-ka-am 
11. a-na la#-ma#-di-ka asz-pu-ra#-am 
12. u3 ki-ma be-li2 x TI u2-ne-HI-hu 
13. li-iq-bu-ni-ik-kum 
14. mi-id-de sig-{d}sza-la i-na la a-sza-bi-ia# 
15. ne2#-pu-ti i-ne2-ep-pi 
16. [x x x (x)] x x li IZ ZI 


Primary publication: AbB 12, 146
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 017370
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510669
Transliteration:
&P510669 = AbB 12, 146 
#atf: lang akk 
@tablet 
$ illegible 


Primary publication: AbB 12, 147
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 017396
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510670
Transliteration:
&P510670 = AbB 12, 147 
#atf: lang akk 
@tablet 
$ illegible 


Primary publication: AbB 12, 148
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 017413
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510671
Transliteration:
&P510671 = AbB 12, 148 
#atf: lang akk 
@tablet 
@obverse 
1. x x [...] 
2. x [...] 
3. ZU? x [...] 
4. _dumu_ x x [...] 
5. u2-ZI-x [...] 
6. x sza ZU DA DI [...] 
7. it-ta-la-ak 
8. _mu 3(disz)-kam_ 
9. i-na x x x [(x)] 
10. BU x [...] 
11. i-na [...] 
12. x x [...] 
13. [...] 
14. [x x x] ma an x [...] 
@reverse 
1. [x] x x ip-pa-li#-[is] 
2. [_n] ma-na ku3-babbar_ 
3. [sza] qa2#-at a-bi-ia 
4. [{disz}ARAD]-i3-li2-szu 
5. [im]-hu#-ur 
6. ki-ra-am sza asz-sza-ti 
7. asz-pu-uk#-ma 
8. sza# _1(disz) gin2 ku3-babbar_ 
9. [(x)] x x a-sza-am 
10. u2-ka#-al#-szu 
11. x ka [...] 
12. di-qa-[(x)] x 
@left 
1. [...] 
2. [...] 
3. [...] 


Primary publication: AbB 12, 149
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 017506
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510672
Transliteration:
&P510672 = AbB 12, 149 
#atf: lang akk 
@tablet 
@obverse 
$ beginning broken 
1'. a-na szu-ul-mi-ka asz-pu#-ra#-am# 
2'. szu-lum-ka ma-har {d}utu u3 {d}marduk# lu#-u2 da-ri# 
3'. sza-ad-da-aq-dam i-nu-ma _2(disz) sar_ te-el-qu2#-[u2] 
4'. _3(u) sar_ ta-ad-di-nam# 
5'. sza-at-tam _2(disz) sar_ a-na _e2-gal_ il-qu2-u2 
6'. u3 _2(disz) sar_ a-na _szuku_-ka te#-el-qe2-e 
7'. i-na# ma-ah-ri-im tup#-pi2# ki-a-am# u2-sza-bi-la-ku-um-ma 
8'. [x x (x)] x _1(disz) ma-na ku3-babbar_ szu-bi-lam-ma 
9'. [x x (x)] lu-sza-bi-la-ku 
10'. [x (x)] asz-pu-ra-kum-ma 
11'. [tup-pa-ka] u2-ul tu-sza-bi-lam 
12'. [x x x (x)] x x x x [_{gesz}]gu-za_ sza tu#-[...] 
13'. [x x x (x)] s,i2#-bu-tim e-pe2-szi-im 
14'. [x x x] x-ma mar-s,a-a-ku 
@reverse 
1. [x x x] x-kum a-na ma-ah-ri-ka 
2. [u2-sza]-bi#-lam 
3. [x x (x)] x a-na _szuku_-ka sza-ak-nu 
4. [x x x]-sza#-bi-lam-ma szum-ma _ku3-babbar_ ma-ah-ri-ia u2-sza-bi-la#-[kum] 
5. sza# [ta]-asz-pu-ra-am-ma i-na babila2{ki} _ku3-babbar_ x [...] 
6. _1(u) sar_ x x sza te-el-qu2-u2 u2-sa-tum 
7. _lu2_ ta-ak-lam u2-ul i-szu-u2-ma u2-ul asz-pu-<ra>-kum-ma 
8. [(x)] u2-ul i-sza-mu-nim 
9. [x] x i-na qa-ti-ia ma du ul lu li 
10. [x] x li-il#-[li]-ku x x x [...] 
11. [x x] x _{gesz}gu-za_ x x [x (x)] x x [...] 


Primary publication: AbB 12, 150
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 017511
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510673
Transliteration:
&P510673 = AbB 12, 150 
#atf: lang akk 
@tablet 
@obverse 
1. a-na ib-ni-{d}mar-tu 
2. qi2-bi2-ma 
3. um-ma sag-il2-ma-an-szum2#-[ma] 
4. asz-szum _a-sza3_-im sza na-di-tim 
5. asz-ta-na-pa-ra-ku-ma 
6. at-ta da-a-ta-ma 
7. u2-ul ta-sza-al 
8. a-nu-um-ma 
9. asz-ta-ap-ra-kum 
10. _sze_-a-am ma-ma-an 
@reverse 
$ broken 


Primary publication: AbB 12, 151
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 021161
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510674
Transliteration:
&P510674 = AbB 12, 151 
#atf: lang akk 
@tablet 
@obverse 
$ illegible 
@reverse 
1. [x x x x] KI e iq-bi-a-am# [...] 
2. [be-el] pi2-ha-ti-szu i-il-la-ka#-[am] 
3. [x] x sza-am-ma szu-up-li-is-su2# [...] 
4. [i]-na# babila2{ki} la i-ra-AG-GA-GA-an-ni 
5. um#-ma at-ta-ma ga-me-er _a-sza3_ x e-x 
6. an#-ni#-ta-am qi2-bi-szum-ma 
7. [be]-el# pi2-ha-ti-szu sza il-li-ka-am 
8. _1(disz) ansze#_-szu li-te-er-ra-am 
9. [...] x x szu-bi-la-am 


Primary publication: AbB 12, 152
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 021195
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510675
Transliteration:
&P510675 = AbB 12, 152 
#atf: lang akk 
@tablet 
@obverse 
$ beginning broken 
1'. a-na _tug2 hi-a_-ma u2-x [...] 
2'. it-ti ak-ka-di-i 
3'. a-sza-am-ma 
4'. _2(disz) sila4? hi-a_ a-na _2(disz) u4_-mi 
5'. u2-sza-ab-ba-la-ak-ki 
6'. asz-pu-ra-ak-ki-im-ma 
@reverse 
1. _{gi}kid_ ku-tu-um-mi 
2. u2-ul tu-sza-bi-lim 
3. i-na-an-na tup-pi2 usz-ta-bi-la-ki 
4. u3 _{mi2}{d}utu_-la-ma-as-si2 
5. [x] x x [x x (x)] x 

Primary publication: AbB 12, 153
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 021994
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510676
Transliteration:
&P510676 = AbB 12, 153 
#atf: lang akk 
@tablet 
@obverse 
$ beginning broken 
1'. ma#-ha-ar {d}utu# [...] 
2'. u3 ku-ru-up-pu x [...] 
3'. iz-ku-ra-am-ma PA sza? ki#-[...] 
4'. um#-ma szi-i-ma mi-im-ma 
5'. sza it-ti mu-ti-ia a-di-nu-ma 
6'. e-li-ka ka-x-ma 
7'. _5(disz) gin2 ku3-babbar_ a-na di-na-ti-sza 
8'. ag-mu-ur 
9'. _u4_-mi _mu 7(disz)-kam_ 
10'. mah#-ri-ia a-di i-mu-tu 
11'. u2-szi-ib-ma 
12'. _sza3#-gal siki-ba i3-ba_ 
13'. u3 ma-asz-ti-ta-am 
@reverse 
1. at-ta-asz-szi#-i-szi# 
2. _u4_-um i-mu-tu _1(disz) tug2_ 
3. _5(disz) tug2 bar-si_ isz-szu-tum 
4. _3(disz) ninda mu igi-4(disz)-gal2 ku3-babbar_-szu-nu 
5. _igi-6(disz)-gal2 ku3-babbar_ sza {dug}la-ah-ta-nim 
6. _1(asz) gur kasz 1(disz) sila3 dabin 2(disz) sila3 i3-gesz_ 
7. a-di _u4 7(disz)-kam#-ta-am3_ 
8. [x] x [x (x)] x DA x x 
9. [...] x 


Primary publication: AbB 12, 154
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 022515
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510677
Transliteration:
&P510677 = AbB 12, 154 
#atf: lang akk 
@tablet 
@obverse 
$ beginning broken 
1'. [bu-qu-mu] 
2'. [i-na _e2_ a-ki-tim isz]-sza#-ak#-[ka-an] 
3'. [ki-ma] tup#-[pi2 an]-ni-a-am# 
4'. ta-[am]-ma-ra 
5'. pa#-ni _u8 udu hi-a_ sza te#-re#-eh#-za 
6'. s,a-ab-ta#-[nim] 
7'. u3 ka-ni-ka-a-at _u8 udu# hi#-a_ x [...] 
8'. sza# a-na s,i-i-tim# tu-sze-s,i-[a] 
9'. li-qe2-a-[nim-ma] 
10'. a-na babila2#[{ki}] 
11'. al#-ka-[a-nim] 
12'. [la] tu#-la#-ap-pa#-[ta-nim] 
$ rest broken 
@reverse 
$ blank space 


Primary publication: AbB 12, 155
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 022529
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510678
Transliteration:
&P510678 = AbB 12, 155 
#atf: lang akk 
@tablet 
@obverse 
1. [a-na ...] 
2. [qi2-bi2-ma] 
3. [um]-ma# {d}marduk-x-[...] 
4. tup-pi2 an-ni-a-am# 
5. i-na a-ma-ri-im# 
6. lu ti-de 
7. {disz}{d}suen-i-din-nam [(x) (x)] 
8. tah-he-e ta-ri#-[x x] 
9. li-qe2-a-am-ma 
@reverse 
1. li-ib-bu _u4_-mi-im# 
2. an-ni-im 
3. a-na kar-{d}utu{ki} si-in-[qa2-am] 
4. lu# ti-de 
5. sze-er-tam-ma pa-ni-ka 
6. lu-mu-ur 
7. s,i-bu-us-su2 ma-di#-[isz] 
8. la u2-uh2-ha-ra-am 
9. a-la-kam ep-sza-am# 


Primary publication: AbB 12, 156
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 022540
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510679
Transliteration:
&P510679 = AbB 12, 156 
#atf: lang akk 
@tablet 
@obverse 
1. {d}marduk ra-i-im-ka 
2. asz-szu-mi-ia li-la-ab-bi#-[ir-ka] 
3. lu sza-al-ma-ta 
4. isz-tu ib-ni-{d}marduk 
5. u3 mu-ba-li2-it,-{d}marduk 
6. _1(disz) gu4_ u2-te-er-ru-ni-kum# 
7. _iti 1(disz)-kam_ ki-a-am# 
8. a-na ib-ni-{d}marduk# u3 mu-ba-li2-[it,-{d}marduk] 
9. at-ta-ku-ud 
10. _4(disz)_ u3 _5(disz) udu-nita2_ 
11. [sza asz]-pu#-ra-ak-kum 
12. [u2-ul] tu#-sza-bi-la-am 
13. [x x x x (x)] _erin2_ ka-asz-szi-a 
$ rest broken 
@reverse 
1. [...] x-ka 
2. [...] x 
3. [x x] _udu#-nita2_ i-di-isz-szum-ma 
4. [it-ti] ib#-ni-{d}marduk 
5. u3 mu-ba-li2-it,-{d}marduk# 
6. a-na babila2[{ki} (x) (x) (x)] 
7. ar-hi-isz li-[li-kam] 


Primary publication: AbB 12, 157
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 022545
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510680
Transliteration:
&P510680 = AbB 12, 157 
#atf: lang akk 
@tablet 
@obverse 
$ beginning broken 
1'. x [...] 
2'. id#-dam-x [...] x-ki-im#-ma# 
3'. sza tup-pu-um# [...] 
4'. ki-a-am ta-aq#-bi# um#-ma at-ti#-ma 
5'. s,u2-ha-rum sza _gu-za-la2_ li-li-kam-ma 
6'. lu-ud-di-in 
7'. a-wi-il-tum be-le-et 
8'. nu-ma-tim it-ta-al-ka-ki-im 
@reverse 
1. mi-im-mu-sza id-ni-szi-im 
$ single ruling 
$ blank space 


Primary publication: AbB 12, 158
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 022577
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510681
Transliteration:
&P510681 = AbB 12, 158 
#atf: lang akk 
@tablet 
@obverse 
1. a-na a-wi-lim sza {d}marduk u2-ba-al-la-t,u2-szu 
2. qi2-bi2-ma 
3. um-ma {d}na-bi-um-na-s,i-ir-ma 
4. {d}utu u3 {d}marduk da-ri-isz _u4_-mi li-ba#-[al-li]-t,u2#-ka 
5. lu sza-al-ma-ta 
6. _a-sza3_ sza _kaskal_ kar-{d}utu sza _e bara2_ {d}inanna _nin#_ [...] x{ki} 
7. sza ib-ni-{d}suen a-bu-ka 
8. a-na {d}marduk-mu-sza-lim _sza13-dub-ba_ 
9. id-di-nu 
10. {disz}ib-na-tum _{lu2}engar#_ 
11. ku-ul-lim-ma 
12. t,e4-em-szu li-te-er 
$ single ruling 
@reverse 
$ blank space 
@seal 1 
$ illegible 


Primary publication: AbB 12, 159
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 022583
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510682
Transliteration:
&P510682 = AbB 12, 159 
#atf: lang akk 
@tablet 
@obverse 
1. a-na _ugula dam-gar3-mesz_ sza {d}marduk# u2-[ba-al-la-t,u2-szu] 
2. qi2-bi2-ma 
3. um#-ma# {d}utu-ba-ni-ma 
4. {d}utu u3 {d}marduk da-ri-isz _u4_-[mi] 
5. li-ba-al-li-t,u2#-ka# 
6. lu sza-al-ma-ta lu ba-al-t,a-ta 
7. lu da-ri#-a-ta# 
8. a-nu#-um#-ma# [...] 
$ rest broken 
@reverse 
$ beginning broken 
1'. x [...] 
2'. im-x x x x [...] 
3'. ta#-qa2#-ab#-bu-u2 
4'. x x [x (x)] iq-bi 
5'. ah-hi-sza t,u2-ur#-dam-ma 
6'. it-ti ah-hi-sza li-il#-[li]-ka# 
7'. {disz}x x x [(x)] 
8'. i-ni-mu-ur# 


Primary publication: AbB 12, 160
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 022584
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510683
Transliteration:
&P510683 = AbB 12, 160 
#atf: lang akk 
@tablet 
@obverse 
1. lu-u2 it-tu 
2. _1(disz) ma-na siki_ nu-ur2-{d}isz#-ha-ra 
3. id-di-nam 
4. u3 _3(disz) u8 udu hi-a_ 
5. {disz}{d}sze-rum-ba-ni id#-<di>-nam# 
6. i-nu-ma ma-ar-s,u2# 
7. u3 lu-u2 it-tu 
8. i-na u2-ri-im# _siki#_ 
9. _3(disz) u8 [udu hi-a_] 
@reverse 
1. a-na {d}nin-si4-an-na 
2. ni-qi2-a-am ta-qi2 
3. it-ta!(TU)-sza ki-it-ta-am 
4. szu-up#-ra-a-nim 
5. a-na it-ti ki-it-ti 
6. lu-ul#-li-ka 
$ single ruling 

Primary publication: AbB 12, 161
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 022645
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510684
Transliteration:
&P510684 = AbB 12, 161 
#atf: lang akk 
@tablet 
@obverse 
1. a-na a-wi-lim sza {d}marduk u2-ba#-al-la-t,u2#-szu# 
2. qi2#-bi2-ma 
3. um#-ma {d}marduk-dingir-ma 
4. {d}utu u3 {d}marduk da-ri-isz# [_u4_-mi] 
5. li-ba-al-li-t,u2#-[ka] 
6. ki-ma ti-du-[u2] 
7. i-na# _e2_ zimbir#[{ki} ...] 
8. [x x] x [...] 
$ rest broken 
@reverse 
$ beginning broken 
$ blank space  


Primary publication: AbB 12, 162
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 022690
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510685
Transliteration:
&P510685 = AbB 12, 162 
#atf: lang akk 
@tablet 
@obverse 
1. a-na a-ta-a 
2. qi2-bi2-ma 
3. um-ma# nu-ur2-{d}utu#-ma# 
4. a-wi-il-tum 
5. sza zi#-im#-ra#-ha#-mu 
@reverse 
1. la ta#-ka-as2-si 
2. mi-t,i-sa 
3. ma-ah-ra-ku 
4. li-te-eq 


Primary publication: AbB 12, 163
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 022709
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet & envelope
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510686
Transliteration:
&P510686 = AbB 12, 163 
#atf: lang akk 
@tablet 
@obverse 
1. be-li2 {d}na-bi-um 
2. asz-szu-mi-ia li-la-ab-bi-ir-ka 
3. lu sza-al-ma-ta 
4. isz-ti-isz-szu u3 szi-ni-szu 
5. asz-szum _5(disz) udu-nita2_ a-na _za3-ga_ <<qa2-be2-e>> 
6. u3 a-na ARAD-ku-bi mu-ti a-ha#-ti-ka 
7. qa2-be2-e-em-ma _udu-nita2 hi-a_ 
8. u3 _ha-za-nu-um_ szu-<<bi>>-bu-li-im 
9. asz-pu-ra-ak-kum-ma 
10. t,e4-em-ka ri-qa2-am u2-ul ta-asz-pu-ra-am 
11. i-na-an-na tup-pi2 usz-ta-bi-la-ak-kum# 
12. sza _gu2-un hi-a a-sza3_-ia u3 _zu2-kesz2 e2_ 
13. _5(disz) udu-nita2_ u3 at-ta 
14. _8(disz) udu-nita2_ szu-bi-lam-ma 
@reverse 
1. ur2-ra-am i-na _ka2_ bu-qu2-mi 
2. _5(disz) udu-nita2_ lu-te-er-ra-ak-kum 
3. _1(u) udu-nita2_ mi-it-gu-ru-ti 
4. s,i-im-da-am-ma szu-bi-lam 
5. 1(u)-am lu-ma-li 
6. i-na _iti apin-du8-a u4 3(u)-kam_ 
7. szu-bi-lam 
8. a-na sza asz-pu-ra-ak-kum 
9. la tu-usz-ta-a 
10. i-na _u8 udu-hi-a_-ka _udu-nita2_ a-na 
11. _1(u) udu-nita2_ szu-bi-lam 
12. i-na babila2{ki} _1(u) udu-nita2_ 
13. a-na-ad-di-na-ak-kum 
@envelope 
@obverse 
$ blank space 
@reverse 
$ broken 
@seal 1 
$ illegible 


Primary publication: AbB 12, 164
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 022755
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510687
Transliteration:
&P510687 = AbB 12, 164 
#atf: lang akk 
@tablet 
@obverse 
1. a-na# a-zi-ir-{d}da#?-gan#? 
2. qi2-bi2-ma 
3. um-ma {d}suen-be-el-numun-ma 
4. {d}utu li-ba-al-li-it,-ka 
5. sza te-pu-sza-an-ni da-mi-iq 
6. aq-bi-i-ma _8(disz) sila3 i3-gesz_ 
7. a-na t,a-ab-ti i-di-nu-{ku}kum 
8. t,a-ab-ta-am u2-ul 
9. tu-sza-bi-lam 
10. u3 a-wi#-lum# ma-ga-al 
11. i-te-ep-sza#-an-ni 
12. _u4_ ma-ti-i-ma 
13. mi-im-ma la iq-bi-am 
@reverse 
1. u3 u2-ne2-ti-ia 
2. sza a-na sza _iri{ki}_ a-ha-nu-ta 
3. at-lu-ki s,e2-ne2-e-ku-ma 
4. _{gesz}ma2_ usz-ta-PI#-la#-an#-ni 
5. um-ma szu-u2-ma 
6. _8(disz) sila3 i3-gesz_ sza ta-aq-bi-am-ma 
7. a-na a-wi-lim ad#-di-nu 
8. id-na-am-ma 
9. u2-ne2-ti-ka lu-wa-szi-ra-ku 
10. _8(disz) sila3 i3-gesz 2(disz) gin2 ku3-babbar_ 
11. u2-ba-al 
12. [x] SZI# ik-lu-ni-in-ni 
13. [sza _2(disz) gin2] ku3-babbar_ 
@left 
1. t,a-ab-ta-am bi-la-am-ma ma-ga-al-la i-pu-szu-ni-ni# 


Primary publication: AbB 12, 165
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 023133
Accession no.: 1897-05-13, 0031
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510688
Transliteration:
&P510688 = AbB 12, 165 
#atf: lang akk 
@tablet 
@obverse 
1. a-na be-el bi-tim# 
2. qi2-bi2-[ma] 
3. um-ma _dumu-munus_ {d}suen#-x-x-ma 
4. {d}utu u3 {d}marduk [asz-szu]-mi#-ia 
5. da-ri-isz _u4_-mi# li#-ba-al-li#-t,u2-ka 
6. bi-tum sza-lim u3 s,u2-ha-ru-u2 
7. sza#-al-mu u3 _gu4# hi-a_ szi-ru-[szu]-nu 
8. sza-lim i-na _a-sza3_-im 
9. _sze_-am _3(u) [sze gur_] 
10. <<i>> el-qe2 i-na _a-sza3_ [x]-x-lim 
11. _9(asz) sze gur_ el-qe2# 
12. u3 ki-a-am ta-asz-pu-ra-am 
13. um#-ma at-ta#-ma 
14. al#-wa-am u2-sza-bi-la-ki-im 
15. al#-wa-am u2-ul i-di-nu-ni 
@reverse 
1. a-wi#-lum# sza al-wa-am 
2. tu-sza-bi-la-ak-ku-um-ma 
3. szu-up-ra-ma a-wi-la!(LI)-am sza-tu 
4. a-al-wa-am lu-ri-isz 
5. u3 at#-ta# isz-tu# _u4_-mi-im 
6. sza# al#-li#-ku t,e4-em-ka 
7. u2-ul# ta#-asz-pu-ra-am 
8. {disz}a-pil2-{d}mar-tu 
9. _dumu_ i3-li2-um-ma-ti 
10. a-la-ak-ta-szu sa-ad-ra-at-ma 
11. ki-a-am aq-bi-szu um-ma a-na-ku-ma 
12. su-hu-ur-szu-ma 
13. t,e4-em-szu szu-up-ra-am 
14. u3 a-na _a-sza3 sze-gesz-i3_ 
15. a-hi u2-ul na-di-i 


Primary publication: AbB 12, 166
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 023146
Accession no.: 1897-05-13, 0044
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510689
Transliteration:
&P510689 = AbB 12, 166 
#atf: lang akk 
@tablet 
@obverse 
1. [a]-na# puzur4-{d}a-szur4#? 
2. qi2#-bi2-ma 
3. um-ma {d}suen-ma-gir-ma 
4. e-pe-szum an-nu-um 
5. da-mi-iq-kum 
6. sza tu-sza-hi-zu-u2-ma 
7. _nu-{gesz}kiri6_-ia 
8. i-du-ku 
9. _a-sza3 u2-sal_ TUM? ka-lu-szi-na 
10. sza szar-ri-im-ma 
11. ma-an-nu-um sza _a-sza3 u2-sal_ 
12. la-a s,a-ab-tu-ma 
13. ia-ti-i-ma tu-ba-qa2-ra-an-ni 
14. {disz}a-hu-ni _sukkal_ 
15. _1(disz) usz a-sza3 u2-sal_ 
16. pu-ut _a-sza3 szuku aga-us2-e-ne_ 
17. s,a-bi-it 
18. am-mi-ni _aga-us2-e-[ne_] 
19. la-a ib-qu2-ru-u2 [(x) (x)] 
20. sza i-na larsa{ki#} 
21. wa-asz-bu# 
@reverse 
1. sza szar-ri-im-[ma] 
2. sza i-na s,e-ri#-[im] 
3. wa-asz-bu [x x x (x)] 
4. szi-pi-[ir ...] 
5. i-pu-[szu ...] 
6. u2-ul [...] 
7. [x] x [...] 
8. [...] 
9. i-x [...] 
10. x [x x] x x x x x x-ma 
11. u3 [a-na-ku u3] at-ta 
12. i-ni-[in-na]-me-er 
13. li#-[x x (x)]-sza-an 
14. ki#-ma# _gu4# hi-a_ u3 _u8 udu-hi-a_-ka 
15. ba-ab du-ri-ia 
16. la-a i-ba-ri-u2 
17. e-pe-esz 
18. u3 ki#-ma a-sza#-ri-isz 
19. [x] x x x sza x _dug#-mesz_-ka 
20. [...]-ri#-ia 
21. [...] x _BUR-mesz_ 
22. [...] 
23. [...] x x 
24. [x (x)] x i at-ta#-di-[in] 


Primary publication: AbB 12, 167
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 023201
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510690
Transliteration:
&P510690 = AbB 12, 167 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}suen-i-qi2-sza#-[am] 
2. qi2-bi2-ma# 
3. um#-ma {d}suen-i-din-nam-ma# 
4. [a]-nu#-um-ma 
5. [{disz}]ARAD-KU-[x (x)]-NI 
6. qa2#-du-[um ...] x 
7. szu-uh-[...] x 
8. i-na _iri_ [...-{d}la]-ga#-ma-al# 
9. u2-qa2-[a-szu-nu-ti] 
10. pa-nu [x (x)] 
@reverse 
1. i-na a-ma-ri-i-ka 
2. _{gesz}ma2 hi-a_ 
3. ka-la-szi-na-a 
4. ma-la wa-ar-ki-ia 
5. i-li-ka-ni-im 
6. sza i-na _ka i7-da#_ na#?-di#-a 
7. gu-um-ra-am# 
8. isz-ti-a-[at] 
9. la te-zi-ba-[am] 


Primary publication: AbB 12, 168
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 023367
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510691
Transliteration:
&P510691 = AbB 12, 168 
#atf: lang akk 
@tablet 
@obverse 
1. a-na NI?-x-x-[(x)] 
2. qi2-bi2-ma 
3. um-ma si-im-me-GAL#-ma 
4. {d}utu u3 {d}marduk# 
5. li-ba-al-li-t,u3-ka 
6. a-nu-um-ma 
7. {disz}sze-li-bu-um at,-t,ar-da-ak-kum 
8. _1(ban2) i3-gu-la_ 1(disz) HU x x UD 
9. szu-bi#-lam 
10. a-na# x [x (x)] x x x x 
11. li-ib-ba# [...] 
12. ah-hu-tam bu-un-ni 
13. i-na mah-ri-im 
14. [x] x u2-sza-bi-la-am# 
@reverse 
1. [x x] x i-na-an-na# 
2. a-na# [x (x)] x-im# la# te#-[gi] 
3. sza asz-pu-ra#-[ak-kum] 
4. szu-bi-lam# 


Primary publication: AbB 12, 169
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 023813
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510692
Transliteration:
&P510692 = AbB 12, 169 
#atf: lang akk 
@tablet 
@obverse 
1. [a]-na# {d}suen#-ba-ni 
2. qi2#-bi2#-ma# 
3. um#-ma# x x x-dingir 
4. _3(u)# sze# gur#_ [(x)] sza# i-ti-ka 
5. x x [x (x)] ki# 
6. _2(u) 3(asz) sze gur#_ ri-ha-at 
7. x x ir-tim 
8. sza# sza-da-aq-di-im 
9. _5(u) sze gur_ sza# _nu-{gesz}kiri6_ 
10. sza ka#-[x (x)] 
11. mu#-du-ud-ma# 
12. [x] ka [...] 
13. [u3] a-na ka-[ri-im] 
@reverse 
1. szu-pu-uk# 
2. ap-pu-tum _guru7_ 
3. la te-pe2-te 
4. ta-mu-ut!(AD) 
5. a-na i-ki-im 
6. la te-gi!(NAM) ta-mu-ut 
7. la-ma-sa3-am 
8. sza usz-ka-pu-um 
9. at-ma 
10. i-ka-am szu-a-ti 
11. e tu-da-ni-in 
12. bi#-it a-bi-ka 
13. ka#-la-szu lu usz-ma#-at 


Primary publication: AbB 12, 170
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 025173
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet & envelope
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510693
Transliteration:
&P510693 = AbB 12, 170 
#atf: lang akk 
@tablet 
@obverse 
1. a-na# [x]-x-{d}suen 
2. qi2-bi2-ma 
3. um-ma x-ma-sum2-ma 
4. {d}szakkan2 u3 {d}dumu-zi 
5. li-ba-al-li-t,u3-ka 
6. _sze_-a-am sza ki-ma a-na a-wi-il-i3-li2 
7. ta-na-di-nu 
8. da-am-qa2 i-di-szu-ma 
9. u3 an-ni-ki-a-am 
@reverse 
1. da-am-qa2 li-di-nam 
2. u3 s,i2-ib-tam 
3. ku-un-ka-asz-szu 
@envelope 
@obverse 
$ broken 
@reverse 
$ broken 
@seal 1 
$ broken 

Primary publication: AbB 12, 171
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 025671
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510694
Transliteration:
&P510694 = AbB 12, 171 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}suen-na-s,ir 
2. qi2-bi2-ma 
3. um-ma an-pi4-{d}a-a-ma# 
4. {d}utu u3 {d}marduk li-ba-al#-[li-t,u2-ka] 
5. s,i-bu-ut-ka ma-du-[tum] 
6. ir-szu-ma isz-pu-ru [x] x [...] 
7. u2-ul ta-al-li-kam# 
8. na-t,u2 sza te-pu-szu 
9. asz-szum lu-usz-ta-mar-{d}iszkur 
10. sza a-ba-szu 
11. x x x e [(x)] 
12. e-[x] x [x] x TU sza te#-pu-szu 
13. ma-ah# [...] x x x 
14. i-na [...] 
15. asz-pu#-[ra ...] 
16. a-wi#-[lam ...] 
17. la tu-da-ba-ab# [(x) (x)] 
18. szu#-ta-ah-ri-su2#-[(um)-ma] 
19. a-szar# na-t,u2#-[u2] 
20. e-si2-ik a-wi-lum x [(x)] 
21. ma-di-isz be2-ri 
@left 
@column 1 
1. ki-ma qa2-qa2-ad _aga#-us2_-szu 
2. la sa-ra-hi-im e-pu-usz 
@column 2 
1. u3 a-hi 
2. {disz}szar-rum-{d}iszkur 
3. ki-ma ti-du-u2 
4. e-pu-usz 


Primary publication: AbB 12, 172
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 026254a
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510695
Transliteration:
&P510695 = AbB 12, 172 
#atf: lang akk 
@tablet 
@obverse 
$ beginning broken 
1'. x [...] 
2'. u3 be-li2# [...] 
3'. ma-har {d}utu a-na# be#-[li2-ia ...] 
4'. a-na be-li2-ia x [...] 
5'. u3 a-na-ku _ARAD_-ka u2-ul x [...] 
6'. isz#-ri-qa2-am ku-nu-uk lu2-{d}iszkur-ra# [...] 
7'. a-na-as,-s,a-ar 
8'. ki-ma be-li2 i-du-u2 mi-szar ma-tim 
9'. szar-rum isz-ku-un di-pa-ar _ku3-sig17_ 
10'. a-na ma#-tim isz-szi u3 ma-li ma-tim im-si 
11'. a-na-ku a-na ma-tim sza-ni-a-ku 
12'. u3 ki-ma i-na# la wa-sza-bi-ia ki-ma _sze_-um 
13'. i-na _e2_ sin-i-din-nam _ARAD_-ka la i-ba-asz-szu-u2 
14'. a-na szar-rum ta-aq-bu-u2 esz-me-e-ma 
15'. ma#-har {d}utu a-na be-li2-ia ka-ta [ak-ru-ub] 
16'. i-na-an-na 2(disz) tup-pa-tim# [...] 
17'. sza _1(gesz2) sze gur_ i-na _sze_ [...] 
18'. a-na kar-{d}utu x [...] 
@reverse 
1. ka-ni-ka-at _7(gesz2) sze gur_ sza u2-x-[...] 
2. sza be-li2-ia ka#-ta a-wi-il-sin _sza13#-dub#-ba#_ 
3. u3 _x x-mesz_ na-szi-a-[ku] 
4. u3 i-nu-ma be-li2 at-ta a-na _ab2 gu4 hi-a_ 
5. u3 _u8 udu hi-a_ sza _dumu-munus lugal_ szu-bu-ri-im 
6. be-li2 il-li-kam-ma i-na zimbir{ki} usz-bu 
7. {disz}a-wi-il-{d}suen _gal-ukken-na erin2 ka2 e2-gal_ 
8. a-na _szuku erin2 ug3-IL2_ sza qa2-ti-szu na-da-nim 
9. iq#-bi-i-ma tup-pi2 _lugal#_ a-na be-li2-ia ka-ta 
10. sza i-na _sze_-im sza sin-i-din#-nam# [...] 
11. _szuku ug3-IL2_ x [...] 
$ rest broken 
@left 
1. a-na lu2-{d}iszkur-ra u3 _kar_ zimbir#{ki#} al-li-kam-ma du-[...] 
2. be-li2 ki-ma ra-bu-ti-szu a-na _lugal_ li-iq-bi-ma ki-ma [...] 


Primary publication: AbB 12, 173
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 028518
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510696
Transliteration:
&P510696 = AbB 12, 173 
#atf: lang akk 
@tablet 
@obverse 
1. a-na# re-s,u2-u2-se2-li 
2. qi2-bi2-ma 
3. um#-ma {d}utu-mu-na-wi-ir-ma# 
4. {d}utu li-ba-al-li-it,-ka 
5. a-nu-um-ma dingir-li-t,u3-ul _ugula gidri_ 
6. at,-t,ar-da-ak-kum 
7. _5/6(disz) gin2 ku3-babbar_ s,a-ar-pa-am 
8. a-na i-gi-se-e 
9. i-di-szum la ta-ka-la-szu# 
10. _na4_ {d}utu 
@reverse 
1. a-na# x x s,i2-bu-tim 
2. [...] s,i2#-bu-tim 
3. [...] 
4. [... i]-di-im-ma 
5. [...]-im 
6. [...]-ar 
7. x [x x (x)] 


Primary publication: AbB 12, 174
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 028720
Accession no.: 
Provenience: 
Excavation no.: 
Period: Early Old Babylonian (ca. 2000-1900 BC)
Dates referenced: Sumu-abum.00.00.00
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510697
Transliteration:
&P510697 = AbB 12, 174 
#atf: lang akk 
@tablet 
@obverse 
1. a-na li-pi2#-it#-esz18-dar 
2. qi2-bi2-ma 
3. um-ma KI? NI? x-[(x)]-sze#-mi-ma 
4. {disz}i-din-[...] 
5. i-li-kam#-[ma] 
6. um-ma szu-u2-ma 
7. {disz}e-ma-a-a 
8. i-ti-ia 
9. li-il-li-ik 
10. _sze-ba#_ a-wi-li-im 
@reverse 
1. li-il-li-ka!(TA)-am-ma 
2. li-ta-al-kam 
3. a-mi-ni 
4. a-wi-lam ta-ak-la 
5. a-wi-lam wu-szi-ra-am 
6. szu-um-ma mi-im-ma 
7. sza-a-ti 
8. u3 be-el a-wa-ti-szu 
9. szu-ri-a-am 
10. a-na-ku 
11. i-na qa2-ti-ia 
12. lu-sza-re-kum# 


Primary publication: AbB 12, 175
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 028843
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510698
Transliteration:
&P510698 = AbB 12, 175 
#atf: lang akk 
@tablet 
@obverse 
1. [a-na be-li2-ia] 
2. qi2#-bi2#-[ma] 
3. um#-ma {d}[...] 
4. {d}utu li-ba-al#-[li-it,]-ka# 
5. be#-li2 a-na s,e-ri#-ka# 
6. al-li-ka-am#-[(ma)] 
7. {disz}sag-il2-x-ri-a-am x x x 
8. _a-sza3_-li i-te-ek-ma-an-ni 
9. u3 a-na sza-AB-ru-ut x x [(x)] x 
10. isz-ta-at,-ra#-an#-ni# 
11. szum-ma i-na ki-tim a-bi 
12. u3 be-el na-pi-isz-ti-ia at-ta# 
13. i-na an-ni-tim et,-ra-an-ni-i-ma 
14. lu wa-ra-ad-ka sza da-ri#-a-tim a-na#-ku# 
15. ap-pu-tum 
$ single ruling 
$ blank space 
@reverse 
$ blank space 


Primary publication: AbB 12, 176
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 029109
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510699
Transliteration:
&P510699 = AbB 12, 176 
#atf: lang akk 
@tablet 
@obverse 
1. a-na i3-li2-x-x-AD 
2. qi2-bi2-ma 
3. um-ma be-lum#-ma 
4. a-na mi-ni-im 
5. a-na tu-uk-la-ti 
6. AD-GA-al-ma 
7. _{gesz}mar-gid2-da_ 
8. la at,-ru-da-am 
@reverse 
1. _ku3#-babbar#_ ma-la 
2. i-ri-szu-ka 
3. lu _4(disz) gin2 ku3-babbar_ 
4. ma-la ga-ma-ri-szu 
5. a-na szu-mi-a-hi-ia 
6. i-di-in-ma 
7. li-li-kam-ma 
8. a-na-ku _ku3-babbar_ 
9. lu-sza-bi-la-x 
@left 
1. szu-ma a-hi at#-ta# 
2. la ta-ka-la 


Primary publication: AbB 12, 177
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 029402
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510700
Transliteration:
&P510700 = AbB 12, 177 
#atf: lang akk 
@tablet 
@obverse 
1. a-na sza-pi2-ri-ia!(I) qi2-bi2-ma 
2. um-ma ta-ri-bu-um-ma 
3. {d}utu u3 {d}marduk asz-szu-mi-ia da-ri-isz _u4_-mi 
4. sza-pi2-ri li-ba-al-li-t,u2 
5. i-na {iri}dag-la-a _gu4 hi-a_-ni ka-su2-ma 
6. _gu4_ isz-tu szi-ip-ri ki-ma pa-t,a-ri-szu-nu 
7. a-na _a-sza3_-el _sze-gesz-i3_ id-da-ri-ir 
8. be-el _a-sza3_-lim _gu4 hi-a_ u2-szi-li-a-am-ma 
9. i-na pa-szi-im szi-ip _gu4_ isz-te-bi-ir 
10. _gu4#_ sza szi-ip-szu isz-bi-ru _gu4 egir_ 
11. [a]-na qa2-ba-al-ti x x 
12. [a]-na# i-ri-szi-im 
13. _gu4# hi-a_-ni usz-ta-ri-am#-ma# 
@reverse 
1. sza-pi2-ri a-na a-hu-wa-qa2#-ar# 
2. u3 ri-im-{d}iszkur 
3. li-isz-pu-ur-ma 
4. wa-ar-ka-tam li-ip-ru-su2-ma 
5. t,e4-e-ma-am a-na sza-pi2-ri-ia# 
6. li-te-er-ru-nim 


Primary publication: AbB 12, 178
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 029649
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510701
Transliteration:
&P510701 = AbB 12, 178 
#atf: lang akk 
@tablet 
@obverse 
1. a-na hu-usz-szu-tum# [qi2-bi2-ma] 
2. um-ma {d}esz18-dar-x-x-[x]-ma# 
3. {d}esz18-dar u3 {d}na-na-a be-le-tu-ki 
4. li-ba-al-li-t,u3-ki 
5. {disz}ma-an-ni-ia e-ri#-isz-szi-szu-ma 
6. mi-im-ma i-na qa2-ti-ia [u2]-ul# i-ba-asz-szi-ma 
7. u2-ul u2-la-ab-bi-su2# 
8. u3 ZA?-bu-ki a-na _1(disz) gin2 ku3-babbar_ a-na _2(disz) gin2 ku3-babbar_ 
9. i-na qa2-ti-ia la i-ba-asz-szu-u2 
10. a-na {d}nin-iri?{ki} a-na {d}utu-mu-ba-li2-it, _gala?_ 
11. at-ma 
12. u3 bi-tum ka#-lu#-szu e-ri-isz#-szi-[szu-ma] 
$ rest broken 
@reverse 
$ beginning broken 
1'. [...] x x [...] 
2'. [it]-ta-al-ka-am# 
3'. e-ri#-isz-szi-szu-u2-ma 
4'. am-ri-i-ma _tug2_ s,u2-ba-tam 
5'. lu-bi-szi-szu 
6'. e-ri-isz-szi-szu la i-il-la-kam 
7'. a-na sza-at-ti-ni-ma 


Primary publication: AbB 12, 179
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 038100
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510702
Transliteration:
&P510702 = AbB 12, 179 
#atf: lang akk 
@tablet 
@obverse 
1. a-na sin-tu-uk-la 
2. um-ma lu2-{d}ha-ia3 
3. a-mi-ni re-x ti-pu-usz# 
4. bi#-ti te-er-di 
5. i-na ma#-ar-tim 
6. sza u2-ra-bu-u2-szi-ma 
7. u3 x x x x _ibila_-sa# 
8. a-mi-ni ta-su-ha-ni 
9. i-na pe2-em-tim 
10. ia-tim _zi3-da_-ka# 
11. ta-asz-ku-un 
@reverse 
1. a-mi-ni ki-ma mi-x-x 
2. ta-ap-qi2-dam-ma 
3. sa3-la-tam2 ta-ah-x-[x] 
4. la ni-s,a-al-ma 
5. la e-ha-du-ni-a-szi# 
6. mi#-ma ib-szu-u2-ma 
7. u2-s,u2-ur-ma 
8. sza a-hi i-ni-pu-usz 
9. szum-ma la t,a-ab-ma 
10. i-mi#-ir#-tam 
@left 
1. u2-la ta-ha-ba-la-ni 


Primary publication: AbB 12, 180
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 038101
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510703
Transliteration:
&P510703 = AbB 12, 180 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}suen-sze-mi 
2. qi2-bi2-ma 
3. um-ma lu2-{d}ha-ia3-ma 
4. _e2_ {d}ba-ba6 
5. _e2_ {d}nin-gir2-su 
6. a-ka-ra-ab-ku-um 
7. be2-ri-a-ku-u2-ma 
8. asz-pu-ra-ku-um 
9. qa2-ti za-ka-at 
10. bu-li-t,a-ni 
@reverse 
1. _1(disz) gin2 ku3-babbar_ 
2. id-nam-ma lu-ku-ul 
3. u3 la a-ta-ba-al 
4. du-um-qa2-am 
5. e-pi2-isz-ka 
6. _5(disz) ku6_ szu-bi-lam 
7. a-na {d}ba-ba6 
8. szum-ma i-ba-szu-u2 


Primary publication: AbB 12, 181
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 038103
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510704
Transliteration:
&P510704 = AbB 12, 181 
#atf: lang akk 
@tablet 
@obverse 
1. a-na <a-na>-nin-tak2-la-ku# 
2. um-ma lu2-{d}ha-ia3# 
3. {d}ba-ba6 {d}suen 
4. {d}nin-gir2-su# x [(x)] x 
5. a x [(x)] x x [...] 
6. ma-ri la# iq#-bi-am-ma 
7. am-ti la iq#-bi-am-ma 
8. na#-ak-ru-um-ma 
9. [iq-bi-am-ma] 
$ rest broken 
@reverse 
$ beginning broken 
1'. [x x] x SZI ba [...] 
2'. u3 a-pi2-il-szu-nu 
3'. ki-ma il-ma-du-ki 
4'. sza iq-bi-am-ma 
5'. {d}nin-gesz-zi#-[da] 
6'. lu it-ma-am 
7'. BI# i-s,u2-ru-um 
8'. sza# la i-ka-lu# 
9'. [{d}nin]-gesz#-zi-da 
10'. [x x (x)] x-um 
11'. [x x] a DAM? u3 KU ZA x [...] 
12'. [x x] x-szi-il x [...] 


Primary publication: AbB 12, 183
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 057577
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510705
Transliteration:
&P510705 = AbB 12, 183 
#atf: lang akk 
@tablet 
@obverse 
$ beginning broken 
1'. x x [...] x x [...] 
2'. {disz}be-el-szu-nu tu-x [x x] x [x (x)] 
3'. u3 sza x e zi iz za [...] 
4'. _sze_-am u3 _ku3-babbar_ isz-tu _u4_-mi [...] 
5'. ni-le-eq-qe2-[ma] 
6'. nu-ta-ar-szu-nu-szi u3 ka-ni-[kam? ...] 
7. u2-ul ni-sza-al-li-[...] 
8'. x x be-le-e-ia [(x) (x)] 
9'. ta#?-da-bu-bu 
10'. [...] x-szu-nu 
11'. [...]-ma-am x x [...] 
12'. [...] x x x [...] 
$ rest broken 
@reverse 
$ beginning broken 
1'. [... x-szu]-nu#-ti-ma 
2'. [... be]-le#-e-ia 
3'. [... x]-KU-ni-isz-szu-nu-ti 
4'. {disz}x KUR me e be-le-e-ia 
$ single ruling 


Primary publication: AbB 12, 184
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 057942
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510706
Transliteration:
&P510706 = AbB 12, 184 
#atf: lang akk 
@tablet 
@obverse 
$ beginning broken 
1'. [x x x]-hu i-na# x li szu x [...] 
2'. sza [a-na] _bala-ri_ kar-{d}utu{ki} ni#-[...] 
3'. u2-sze-bi-ru [(x) (x)] 
4'. i-na-an-na _ab2 gu4 hi-a_ [...] 
5'. a-na _bala-ri_ kar-{d}utu{ki} il-li#-[ku ...] 
6'. sza ta-asz-pu-ra#-[am] 
7'. x [x (x)] [x (x) (x)] 
8'. [_ab2] gu4 hi-a_ [x x x] ti [x x (x)] 
$ rest broken  
@reverse 
$ beginning broken 
1'. [_ab2] gu4# hi-a_ [...] 
2'. a-na _bala-ri_ x [...] 
3'. la u2-sze-eb-be2#-[ru ...] 
$ single ruling 


Primary publication: AbB 12, 185
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 060340
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510707
Transliteration:
&P510707 = AbB 12, 185 
#atf: lang akk 
@tablet 
@obverse 
1. a-na sin-isz-me-an-ni 
2. qi2-bi2-ma 
3. um-ma sin-im-gur-ra-[(an)-ni-ma] 
4. szi-ip-{d}iszkur ga-mil x [...] 
5. {disz}ib-ni-{d}suen [...] 
6. il-li-kam-ma 
7. s,i#-bu-ta-am 
8. isz#-ti-a-at u2-ul x [...] 
@reverse 
1. a-na x x [...] 
2. il-li#-[ik-ma ...] 
3. u3 x [...] 
4. ma-am-ma#-[...] 
5. a-na x [...] 
6. a-na x [...] 
7. ga-ma-x [...] 
8. _1(asz) sze gur_ a-[na ...] 
9. i-na-di-in 
10. _1(disz) gin2 ku3-babbar 1(u) sze#_ [...] 
@left 
1. [a]-na# ka-lu-mu-um 
2. [i-(na)]-di-in 


Primary publication: AbB 12, 186
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 066438
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510708
Transliteration:
&P510708 = AbB 12, 186 
#atf: lang akk 
@tablet 
@obverse 
1. a-na be#-[li2-ia] 
2. qi2-bi2-ma 
3. um-ma {d}marduk-mu#-ba-li2-it,# 
4. {d}suen# u3 {d}nin-gal da-ri-isz _u4_-[mi] 
5. li-ba-al-li-t,u2-ka 
6. [lu]-u2 sza-al-ma-a-ta 
7. lu#-u2 ba!(SZA)-al-t,a-a-ta# 
8. lu#-u2 da#-ri-a-ta 
9. [a]-na# szu-ul-mi-ia 
10. sza# ta#-asz-pu#-ra#-am 
@reverse 
1. sza#-al#-ma-a-ku 
2. {d}marduk# _dingir_ a-li-ka 
3. da-ri-isz _u4_-mi li#-[ba-al]-li#-t,u3#-ka 
4. a-na szu-ul-mi-ka asz-[pu-ra-am] 
5. szu-lum-ka szu-up-ra-am# 


Primary publication: AbB 12, 187
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 067298
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510709
Transliteration:
&P510709 = AbB 12, 187 
#atf: lang akk 
@tablet 
@obverse 
1. a-na# a-bi-ia 
2. qi2-bi2-ma 
3. um-ma x [x] akszak{ki} x x 
4. x x x (x) sza-la-mi-ka 
5. a-bi# at#-ta lu sza-al-ma-ta 
6. x x x x x x 
7. x x ti x x x x 
8. {disz}ar-x x x x x x 
9. x x x x x 
@reverse 
1. x x x x x 
2. {disz}ARAD-ku-bi 
3. usz-ta-bi-lam 
4. _3(disz) gin2 ku3-babbar sze_-am 
5. sza 1(disz) [x] UD x 
6. a-na-di-in 
7. u3 x x x x 
8. x x x 
$ single ruling 


Primary publication: AbB 12, 188
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 068778
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510710
Transliteration:
&P510710 = AbB 12, 188 
#atf: lang akk 
@tablet 
@obverse 
$ beginning broken 
1'. 1(disz) x [...] 
2'. _1(disz) 2/3(disz) gin2#_ [...] 
3'. a-na hu#-[x ...] 
4'. _dumu_ sin-ga-mi#-il# 
5'. u3 a-na 
6'. x x x x 
7'. _dumu_ i-za-x 
8'. a-di-in 
@reverse 
1. i-nu-ma 
2. ma-ah-ri-ka 
3. {disz}nu-ur2-{d}x x 
4. {disz}dingir-szu-ba-ni# 
5. {disz}nu-ur2#-[...] 
6. x [...] 
$ rest broken 
@left 
1. x x a x x 
2. x x x x ni 


Primary publication: AbB 12, 189
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 071946
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510711
Transliteration:
&P510711 = AbB 12, 189 
#atf: lang akk 
@tablet 
@obverse 
$ broken 
@reverse 
$ beginning broken 
1'. [x x] x x [...] 
2'. x x-da-ak-x [...] 
3'. tu-sza-bi#-[lam ...] 
4'. sza [...] 
5'. x [...] 
$ rest broken 
@left 
1. [...] szum-ma la ta#-[...] 
2. [...]-li a-ma-ha-[ar ...] 

Primary publication: AbB 12, 190
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 078216
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510712
Transliteration:
&P510712 = AbB 12, 190 
#atf: lang akk 
@tablet 
@obverse 
1. [a-na] sin-re-me-ni 
2. [qi2]-bi2-ma 
3. [um]-ma ARAD-{d}utu-ma 
4. [{d}]utu# u3 {d}marduk# li-ba-al-li#-t,u2#-ka 
5. ki-a-am# [asz-pu]-ra#-kum 
6. um-ma# [a-na-ku]-u2-ma 
7. t,e4-em# [x x (x)] x x x [(x)] x 
8. szu-up#-[ra]-am 
9. mi-im#-[ma u2-ul] ta#-asz-pur#-ra#-am# 
10. mi-im-ma# [x x] x x x x-ra#-an#-ni 
11. u3 li#-pi2#-it#-{d}suen# x 
12. am-mi-ni ta-ad-di#-in# 
13. a-na {d}utu-na-s,i-ir 
14. [ki]-a-am# [(x) x]-bi 
15. [um-ma ...-ma] 
$ rest broken 
@reverse 
$ beginning broken 
1'. pa szu szi ia i-na x [...] 
2'. li#-ib#-ti-ru-u2-ma 
3'. _sze#_-a-am ta#-at#-ta-di#-in 
4'. i-[na]-an#-na _szuku erin2-mesz#_ 
5'. am#-mi#-ni x x x x 
6'. _sze#_-a-am# sza el-qu2-u2 
7'. ku-nu-ka#-tim 
8'. a-na pe2-te-e-em 
9'. la ta#-na-ad-di#-in# 
10'. 1(disz) s,u2#-ha-ra#-am# szu#-up#-ra-am 
11'. x x x x _i3-gesz_ 
12'. li-il-qu2-ni#-kum# 
13'. szu-lu#-um _erin2#-mesz#_ u3 _u8 udu hi#-a_-ka# 
14'. szu-up#-ra#-am 
15'. ASZ x il-qe2#-a-am 
16'. x x x ra 
17'. [i]-na# re-esz ma-ak-ku-ri-im# 
18'. hu#-ru-us, 
19'. [x x x (x)]-ma isz-pu-ru-ni-im-ma 
20'. a-x x it-ba-al# [(x)] 


Primary publication: AbB 12, 191
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 078838
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510713
Transliteration:
&P510713 = AbB 12, 191 
#atf: lang akk 
@envelope 
@obverse 
1. a-na be#-el#-ti-ia 
@seal 1 
$ illegible 


Primary publication: AbB 12, 192
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 079068
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510714
Transliteration:
&P510714 = AbB 12, 192 
#atf: lang akk 
@tablet 
@obverse 
1. a-na be-el-szu-nu 
2. qi2-bi2-ma 
3. um-ma be-el-szu-nu-ma 
4. _4(disz) gu2-un siki hi-a_ i-na _siki hi-a_ sza {d}utu-ri-isz-x x 
5. i-na _na4 3(u) ma-na_ ki-la-al-le-en 
6. szu-qu2-ul-ma SZI#?-GA-am 
7. [x x]-x-szum 
8. [...] x 
$ rest broken 
@reverse 
$ blank space 


Primary publication: AbB 12, 193
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 079108
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510715
Transliteration:
&P510715 = AbB 12, 193 
#atf: lang akk 
@tablet 
@obverse 
1. {d}utu u3 {d}marduk li-ba-al-li-t,u2-ka 
2. t,e-em szu-ul-mi ta-asz-pu-ra-am 
3. i-na ma-ah-ri-ia szu-ul-mu 
4. {d}utu i-na ma-ah-ri-ka 
5. szu-ul-ma li#-isz#-ku-un 
6. _1(disz) {gi}NIG2 sig4 hi!-a_ 
7. _1(disz) gu2-un_ x a ta SZI 
8. u3 _dug_ hu-bu-un _i3-du10-ga_ 
@reverse 
1. sza ma-ah-ri-ka 
2. {disz}ri-isz-{d}utu szu-bi-lam 
$ single ruling 
3. ar-ki ze-eh-pi2-ia an-ni-i 
4. t,e-e-em szu-ul-mi 
5. a-sza-ap-pa-ra-ak-kum 
$ single ruling 


Primary publication: AbB 12, 194
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 079127
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510716
Transliteration:
&P510716 = AbB 12, 194 
#atf: lang akk 
@tablet 
@obverse 
1. isz-tu _iti 2(disz)-kam_ 
2. _ku3-babbar_ ad-di-na-ak-kum 
3. _{gesz}ma-nu_ ma-la ak-ki-su 
4. i-na sza ka-ta 
5. e-ti-qu2 u3 ba-a-u2 
6. im-szu-uh2-ma 
7. i-bi-is-si2-a te-te-em-da-an-ni 
8. i-na-an-na _{gesz}ma-nu_ 
9. na-ki-is-ma sza-ki-in 
@reverse 
1. ar-hi-isz 
2. _{gesz}ma2 hi-a_ li-qe2-a-am 
3. lu-ut-ba-al-ma 
4. la i-ha-al-li-qu2 
5. [asz]-szu-mi-ka wa-asz-ba-ku 
6. ar#-hi-isz u2-ul ta-al-la-ka-am-ma 
7. ta#-at-ta-al-kam 
8. [ki]-ma# s,i-im-da-ti 
9. [_n ma]-na# ku3-babbar_ u2-sza-ad-da#-an#-ka 
10. tup-pi2 a-na szi-bu-ti-ia 
11. ki-i-il 


Primary publication: AbB 12, 195
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 079147
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510717
Transliteration:
&P510717 = AbB 12, 195 
#atf: lang akk 
@tablet 
@obverse 
1. {disz}{mi2}ra#-bi#-a-at-_{d}nin-tu_ 
2. asz-ti _{d}marduk#_-ra-bi-isz 
3. ma-ru-sza szu-mu-un-da-ak-sze-er 
4. _{disz}{mi2}du10_-at-a-ha-tu 
5. ma-ra#-as-sa3 ra-bi-tum 
6. _{disz}{d}isztaran_-ki-nam-i-de 
7. x [x (x)] x sza it-ti-sza 
8. [il]-qu2-u2 [(x)] 
@reverse 
1. [lu]-u2 it-tu 
2. i-[na] _e2_ ni-id-na-ti 
3. ap-t,u2-ra-ak-ki-ma 
4. a-na su-um-i-la ub-la-ak-ki 
5. asz-tap-ra-ak-ki 
6. qa2-at-ki a-na qa2-ti 
7. _{disz}ARAD-{d}marduk dam-gar3_ 
8. szu-uk-ni-im-ma 
9. at-la-ki# 
10. la ta-x [x (x)] 


Primary publication: AbB 12, 196
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 079186
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510718
Transliteration:
&P510718 = AbB 12, 196 
#atf: lang akk 
@tablet 
@obverse 
1. a-na ARAD-i3-li2-szu qi2-bi2-ma 
2. um-ma {d}na-bi-um-mu-dam-mi-iq-ma 
3. {d}utu u3 {d}marduk li-ba-al-li-t,u2-ka 
4. i-nu-u2-ma al-li-kam ki-a-am ta-aq-bi-a-am 
5. um-ma at-ta-ma isz-tu i-na-an-na 
6. _u4 1(u)-kam_ a-ka-sza-da-ak-ka 
7. i-na-an-na isz-tu al-li-kam-ma [x x] 
8. as,-s,e-er at-ta la ta-al-li-[kam] 
9. u3 t,e4-em-ka-a-ma u2-ul ta-asz#-[pu-ra-am] 
10. szum-ma ni-t,i-il-ka 
11. t,e4#-em#-ka# szu-up-ra-am-ma# 
@reverse 
1. [... x]-al-kam 
$ about 5 lines broken 
1'. [...] x 
2'. [...] x 
3'. [... i]-na ku-us,-s,i2-ma 
4'. [... x]-ia# a-sza-al-ma x 
5'. [u2-ul i?]-le-i 
6'. [u3 ki]-ma# as-hu-ru-ka 
7'. x ki-a-am as-hu-ur-ka 
8'. isz-tu i-na-an-na _u4 5(disz)-kam_ 
9'. u2-ul ta-al-la-kam-ma 
@left 
@column 1 
1. a-na-ad-di-a-am-ma 
2. at#-ta-al#-la#-kam 
@column 2 
$ 1 line erased 


Primary publication: AbB 12, 197
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 079264
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510719
Transliteration:
&P510719 = AbB 12, 197 
#atf: lang akk 
@tablet 
@obverse 
1. a-na x [x (x)] x x 
2. qi2-bi2#-ma# 
3. um-ma hu-[x]-x-tum-ma 
4. {d}utu u3 {d}marduk li-ba-li-t,u2-ka# 
5. _1(asz) 1(barig) sze gur {gesz}ban2_ {d}utu 
6. {gesz}me-sze-qa2-am 
7. a-na qi2-isz-tim 
8. i-di-in 
$ blank space 
@reverse 
$ blank space 


Primary publication: AbB 12, 198
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 079282
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510720
Transliteration:
&P510720 = AbB 12, 198 
#atf: lang akk 
@tablet 
@obverse 
1. {d}marduk ra-i-im-ka [x] x 
2. a-bi ka-ta li-it-ta-[(am)] 
3. u3 szi-bu-tam li-sze-eb-bi#-ka 
4. lu sza-al-ma-ta lu# ba!(SZA)-al-t,a2#-ta!(KA) 
5. a-bi# [ka]-ta lu-mu-ur# 
6. ki-ma a-bi at-ta ti-du-u2 
7. sza-at-ta _a-sza3#_ it-ti x x x x x 
8. a-na _tab-ba#_-[szu] ip-ta#-qi2#-id# 
9. _sze#_-am x x [x (x)] x 
10. x x x ra x [...] 
@reverse 
1. x x [...] 
2. a-na x [...] 
3. li-[...] 
4. a-na x [...] x x 
5. [a]-na# ma-ah-ri#-[...] 
6. x x x ti [x] x a [...] 
7. x [x] x BU x x x x x 
$ single ruling 


Primary publication: AbB 12, 199
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 079347
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510721
Transliteration:
&P510721 = AbB 12, 199 
#atf: lang akk 
@tablet 
@obverse 
1. a-na ARAD-ku-bi# 
2. qi2-bi2-ma 
3. um-ma szu#-esz18-dar-ma 
4. {d}utu li-ba-al-li-it,-ka# 
5. asz-szum t,e4-em a-ga-ri-ni# [...] 
6. sza ta-asz-ku-nu 
7. [x] x x-ra#-at 
8. [u2-ul] i-ba-asz-sza-a 
@reverse 
1. [...] UD 
$ 5-6 lines broken 
1'. i-na# x x [...] 


Primary publication: AbB 12, 200
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 079463
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510722
Transliteration:
&P510722 = AbB 12, 200 
#atf: lang akk 
@tablet 
@obverse 
1. a-na bi-ti-i 
2. qi2-bi2-ma 
3. um-ma dumu-zimbir-ma 
4. {d}utu u3 {d}marduk li-ba-al-li-t,u2-ki 
5. a-nu-um-ma a-na pe2-ru-ru-tim qi2-bi2-ma 
6. um-ma dumu-zimbir-ma 
7. {d}utu u3 {d}marduk li-ba-al-li-t,u2-ki 
8. i-na! _u4_-mi asz-tap-ra-ak-ki-mi 
9. i-na ka-ni-ka-tim a-hi#-a-tim 
10. sza i-ba-asz-szi-a [(x)] 
11. ka-ni-ka sza 
@reverse 
1. {disz}ISZ-KUR-ra-NE-x 
2. li-we-di-ma 
3. li-il-qe2 
4. szum-ma i-na 
5. ka-ni-ka-tim 
6. a-he2-tim la i-ta-ma-ar 
7. ka-ni-ka li-we-di-ma 
8. i-na pi2-sza-an-ni ku-nu-ka-tim 
9. ka-ni-ik-szu li-we-di-ma 
10. li-il-qe2-ku-nu-x 
11. szum-ma i-na ku-nu-ka-tim 
12. a-hi-a-tim la u2-we-<di>-ma 
13. la# i-mu-ur pi2-sza-an-<na> 
@left 
1. li-ip-te-ma ka-ni-ka 
2. li-we-di-ma li-il-qe2 
3. i-na ku-nu-ki-szu li-ik-<nu-uk> 

Primary publication: AbB 13, 001
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 093746
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510723
Transliteration:
&P510723 = AbB 13, 001 
#atf: lang akk 
@tablet 
@obverse 
1. [a]-na# [...] 
2. qi2#-[bi2-ma] 
3. um#-[ma ...]-ti a-[...] 
4. [...] x x [...] 
5. [x] x x [x x x] _na-gada_ [x (x) (x)] 
6. [x] x x x x x [...] 
7. [x (x)] x [...] x 
8. [...] u2-ul x x [...] 
9. [...] x x x x x 
10. [x] x x x [x (x)] 
11. [x] x x x x-bi-ta 
12. [x]-x-al x [(x)] 
13. [x] x sza? x-na-x-a-AB# [(x)] 
14. i-ba-asz-szu-u2 
15. ma-an x x la# i-ta-ab#-[ba-al] 
16. szum-ma a-sza#-ar ta-sa3-hu-[ru] 
17. [x] x BI u2-ka-lu a x [x (x)] 
18. [x x] x x x x x [...] 
19. la#-a ta-sa3-la-ah# 
$ single ruling 
$ blank space 
@reverse 
$ blank space 


Primary publication: AbB 13, 002
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 093747
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510724
Transliteration:
&P510724 = AbB 13, 002 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}pa4-nigar{gar}-ra-lugal# [x x x x (x) (x)] 
2. qi2-bi2-ma 
3. um-ma {d}ri-im-{d}suen be2-e-el-ka-a-ma 
4. asz-szum _a-sza3_-lim 
5. sza {disz}{d}suen-gi-im-la-an-ni 
6. sza i-na be2-e-ri-tim s,a-ab-tu 
7. un-ne-du-uk-ki i-na a-ma-ri-i-ka 
8. _a-sza3_ {disz}{d}suen-gi-im-la-an-ni 
9. ma-la i-na be2-e-ri-i-tim 
10. i-ba-asz-szu-u2 
11. a-na id-na-tim i-di-in# 
$ single ruling 
$ blank space 
@reverse 
$ blank space 


Primary publication: AbB 13, 003
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 093748
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510725
Transliteration:
&P510725 = AbB 13, 003 
#atf: lang akk 
@tablet 
@obverse 
1. [a-na] i3-li2#-a-a-ba#-[asz] 
2. [qi2]-bi2-ma# 
3. um#-ma x x a x [x x (x)]-ma# 
4. {d}utu li#-[ba]-al#-li#-[it,]-ka 
5. a-nu-um#-ma 
6. {disz}{d}utu-ba-ni 
7. u3 {d}suen-re-me-ni 
8. _1(u) gin2 ku3-babbar_ usz-ta-bi-la-ak-ku 
9. i-na _u4_-mi-im 
10. sza pa-ni-szu-nu 
11. ta-am-ma-ru <<um>> 
12. _ku3-babbar_ sza qa2-ti-szu-nu 
13. li-qe2-e-ma 
14. _5(disz) tug2 hi-a_ 
15. id-na-szu-nu-ti 
16. ar-hi-isz 
17. t,u3-ur-da-szu-nu-ti 
18. ap-pu-tum 
$ single ruling 


Primary publication: AbB 13, 004
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 093749
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510726
Transliteration:
&P510726 = AbB 13, 004 
#atf: lang akk 
@tablet 
@obverse 
1. [a-na] be-li2-ia 
2. qi2#-bi2-ma 
3. um-ma ib-ni-{d}mar-tu ARAD-ka-ma 
4. i-nu-ma a-na _erin2_ i3-si-in-na{ki} be-li2 isz-ku#-na-an-ni 
5. _4(bur3) 1(esze3) 3(iku) GAN2 a-sza3 szuku_ sza _bala-ri i7_ ir-ni-na it-ba#-lu 
6. _1(bur'u) 5(bur3) GAN2 a-sza3_ i-na i3-si-in-na{ki} be-li2 it-ba-al#-ma 
7. it-ti _dam-gar3_ il-qe2-e ma-na-ha-tim ra-bi-a-tim asz-ku-un-ma 
8. gi-mi-il-li u2-ul u2-te-er# i-nu-ma i-na _kaskal_ a-na-ku 
9. i-ki-mu-ni-in-ni-ma a-na sa3-ni-iq-pi4-{d}utu _dumu_ x-ra#-am-ma _dub-sar_ 
10. sza _5(bur3) GAN2 a-sza3_ i-ik-ka-lu it-ta-an-di-in 
11. a-na e-mu-ut-ba-lum{ki} a-na a-[nu]-um#-pi2-{d}marduk [x (x)] 
12. a-li-ik pa-ni-ia na-da#-nim# [(x)] 
13. be-li2 a-na {d}suen-i-din-nam isz-[ta-ap]-pa-ar-ma# 
14. _a-sza3_ u2-ul id-di-nam-ma# [u2]-ul# i-ri-isz [x x x x x (x)]-szu# 
15. isz-tu al-li-kam-ma a-na e-mu#-[ut]-ba-lum{ki} al-[li-ku?] 
16. ma-ha-ar {d}suen-i-din-nam asz-ta#-ak-ka-an-[ma] 
17. ti-x-tim sza ma-ti-ma la in-ne2#-ep#-sza-[am?] 
18. AZ? x-am al x [...] 
19. _a-sza3_ na-da-nu-um [...] 
20. isz-tu x li [...] 
$ rest broken 
@reverse 
$ beginning broken 
1'. i-na x [x x x] x x x x x in#-na#-s,a#-[ar? ...] 
2'. {disz}e-tel-pi4-{d}marduk ma-as,-s,a-ri i-du-kam u2-sza-x [x (x) (x)] 
3'. a-na be-li2-ia asz-pur-am-[ma] 
4'. be-li2 {d}suen-i-din-nam u3 {d}utu-ha-zi-ir i-sza#-[al-szu-nu-ti-ma] 
5'. ki-ma _a-sza3_ a-na _gu2-un_ a-na e-tel-pi4-{d}marduk la [id-di-nu-ma] 
6'. a-ia-szi-im id-di-nu-nim a-na be-li2-ia iq-[bu-u2] 
7'. be-li2 a-na {d}suen-i-din-nam _sze_-am ma-ka-sa-am iq-bi# [(x) (x)] 
8'. u3 a-na e-tel-pi4-{d}marduk isz-pur 
9'. a-di i-na-an-na ma-as,-s,a-ri ma-asz-ka-nam i-na-as,-s,a-ar# [(x) (x)] 
10'. i-di-isz iz-ru-u2-ma _sze_-am usz-te-ri-ib 
11'. ma-as,-s,a-ri it,-t,a-ar-du-nim 
12'. _aga-us2-mesz_ sza _a-sza3_-ti-szu-nu i-ri-szu _sze_-am im-ku-su#-[ma] 
13'. a-ia-szi-im _1(disz) sila3 sze_ u2-ul in-na-ad-nam 
14'. ba-ri-a-ku i-na _buru14_ an-ni-im _1(asz) sze gur_ a-na bi-ti-ni u2-ul u2-sze#-[ri-bu] 
15'. a-na _4(bur3) 1(esze3) 3(iku) <GAN2> 4(u) sar a-sza3_ pe2-te-e-em sza be-li2 i-si-ha-an-ni 
16'. _2(disz) gu4-apin_-ia sza i-szu-u2 at,-ru-ud-ma 
17'. a-na _sza3-gal gu4 hi-a_ 2(disz) s,e-eh-he-ru-ti-ia at-ta-di-in 
18'. _zi3-kaskal_ i-na mi-nim li-isz-pu-ku-nim u3 _a-sza3_ i-na mi-nim lu-ri-isz 
19'. be-li2 li-isz-pur-ma mi-ik-sa-at _a-sza3_-ia li-id-di-nu-nim-ma 
20'. la# e-be2-er-ri 
21'. [me]-e u2-ul id-di-nu-nim-ma 
22'. _[a]-sza3_ u2-ul as,-pu 
23'. u3 i-na ki-ma i-na-an-na 
24'. _1(disz) sar_ ip-sze-tim u2-ul i-szu-u2 
$ single ruling 


Primary publication: AbB 13, 005
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 093750
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510727
Transliteration:
&P510727 = AbB 13, 005 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}suen-i-din-nam qi2-bi2-ma 
2. um-ma ha-am-mu-ra-pi2-ma 
3. u4-bala-nam-he2 
4. ki-a-am isz-pur-am um-ma szu-u2-ma 
5. _bad3_ {d}asar#-lu2#-hi sza kar-utu{ki} 
6. si2-ik-ru-um sza li-il-li 
7. u3 si2-ik-ru-um sza i7-kur-ra sza bad3-hub2-bi-im 
8. [u2]-ul s,u2-ub-bu-tu-ma 
9. [x x]-u2 sza _i7_ buranun sza be-li2 u2-sza-ab-szu-u2 
10. [x x] a-AB-ba-ma szu-ur-du-u2 
11. [pi2-i]-tu-szu-nu li-is,-s,a-ab-bi-tu 
12. [x x x] x sza uri2{ki} mu-u2 li-im-lu-u2 
13. [ki-a-am] isz-pu-ra-am 
14. [tup-pi2] an#-ni-a-am [i]-na# a-ma-ri-im 
15. [x x x (x)] a-na# [tam]-li-tim mu-ul-li#-i-im 
16. [...]-ta?-asz-ku-nu 
17. [...] x larsa[{ki}] 
$ rest broken 
@reverse 
$ beginning broken 
1'. [x x sza] a-na pa-nim# szu#-[a]-ti# 
2'. qe2#-er-bu s,u2-de-e 
3'. ar#-hi-isz pi2-i-ti# szu#-nu-ti 
4'. s,u2-ub-bi-it-ma 
5'. ap-pa-ra-a-tim sza uri2{ki} 
6'. me-e li-im-lu-u2 
7'. u3 isz-tu pi2-i-ti an-nu-tim 
8'. tu-s,a-ab-bi-tu 
9'. t,e4-em-ka szu-up-ra-am 
$ single ruling 


Primary publication: AbB 13, 006
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 093751
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510728
Transliteration:
&P510728 = AbB 13, 006 
#atf: lang akk 
@tablet 
@obverse 
1. [a-na be-li2]-ni qi2-bi2#-[ma] 
2. [um-ma x x] x-dingir u3 {d}marduk#-x [x (x)] 
3. [{d}utu u3 {d}]marduk# li#-[ba-al-li-t,u2]-ka# 
4. [asz]-szum# _ma2#-i3-dub#_ sza [be]-el#-ni 
5. i-si2-ha-an-ni-a-szi#-im# 
6. _5(gesz2) gur_ it#-ti a-bu-wa-qar _5(gesz2) gur#_ [it-ti] sze-ep-{d}suen 
7. ki-ma be-el-ni i-du-u2 
8. a-di e-bu-ur2-ni ni-ik-mi-su2 
9. _ma2-i3-dub 1(gesz'u) gur_ qa2-du _erin2_-szu# 
10. i-na qa2-ti-szu-nu-u2-ma# 
11. _u4_-um _sze_-am nu-za-ak-ku-u2-ma# 
12. _ma2-i3-dub_ ni-ri-szu-szu-nu-ti# 
13. _6(disz) ma2 hi-a_ a-na _ma2-i3-dub 5(gesz2) gur#_ 
14. {disz}sze-ep-{d}suen id-di-na-an-ni-a-szi-im-ma 
15. _5(gesz2) gur sze_-am ni-is-ru-uq-szi-na-a-szi-im-ma 
16. _4(gesz2) 2(u) gur_-ma _sze_-am isz-szi-a 
17. u3 _ma2-i3-dub_-szu ka-lu-u2-szu 
18. me-e i-na-an-di-a 
19. i-na mu-uh2-hi-i-szu ni-isz-si 
20. li-ib-ba-a-ti-szu ni-im#-la#-a-szu-ma# 
21. _1(disz) ma2_ u2-PI-ha-[...] 
22. _sze_-am ni-[...] 
$ single ruling 
@reverse 
1. [{disz}]a-bu-wa-qar _6(disz) ma2 hi-a_ 
2. _[ma2]-i3-dub 5(gesz2) gur_ na-da-an-szu-ma# 
3. _5(gesz2) gur ma2 hi-a_ id-di-na-an-ni-a-szi-im# 
4. i-na _1(disz) ma2 5(asz) gur <sze>_-am ni-it-bu-uk-ma 
5. me-e id-di-a-am-ma it,-t,e-bu-u2-ma-an 
6. _sze_-sza ni-it-ta-pa-al 
7. u3 _1(disz) ma2_ sza isz-tu sza-da-aq-di it,-bu-u2 
8. _ma2-DU-TUR_-sza be-el-ni szu-ru-ba-am 
9. iq-bi-szum# u3 {d}suen-i-din-nam ARAD be-li-ni 
10. _aga-us2_ [a]-na# _ma2_ szu-ru-bi-im 
11. isz-ku-un# u3 _ma2_ u2-ul usz-ri-ib 
12. a-wi-x [x x x] x ni#-di# a-hi-im i-szu-u2 
13. _dub_ be-li-ni# [a-na] _aga-us2_ 
14. li-il-li#-[ka-asz]-szu-nu-szi-im-ma 
15. _ma2-i3-dub#_ [(x)] li#-im#-ta-lu-ni-a-ti-ma 
16. _sze_-am# [... nu-sza-ba]-lam# 
17. x x x [...] 
18. a-na# [...] x 
$ about 3 lines broken 

Primary publication: AbB 13, 007
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 093752
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510729
Transliteration:
&P510729 = AbB 13, 007 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}suen-i-din-[nam] 
2. qi2-bi2-ma 
3. um-ma ha-am-mu-ra-pi2-ma 
4. i-na# _szu-ku6_ sza _szu_-ti sa3-sum2 sza _e2_ szi-ip-ri-im 
5. [{disz}]pa-ia-kum _szu-ku6_ 
6. {disz}{d}mar-tu-illat-ti a-na _szu-ku6_ sza _e2_ szi-ip-ri-im 
7. u2-sza-asz2-t,e4-er-szu 
8. isz-tu _u4_-mi-im sza {d}mar-tu-illat-ti 
9. a-na _szu-ku6_ sza _e2_ szi-ip-ri-im 
10. u2-sza-asz2-t,e4-ru-szu 
11. _u4 1(disz)-kam_ i-li-ik _e2_ szi-ip-ri#-im# 
12. u2-ul il-li-ik 
13. ha#-la-qum-ma ha-li-iq 
@reverse 
1. [...] x [x (x)] 
2. [x] x x [x x] x [x]-ma 
3. {disz}pa-ia-kum e-ri-is-su 
4. li-ir-di-a-ak-kum-ma 
5. a-na babila2{ki} szu-ri-a-asz-szu 
6. szum-ma {disz}pa-ia-kum la it-ba-la-ak-kum 
7. 1(disz) _szu-ku6_ ta-ak-la-am 
8. ki-ma {disz}pa-ia-kum e-ri-is-su 
9. li-ir-di-a-ak-kum-ma 
10. _szu-ku6_ szu-a-ti a-na babila2{ki} 
11. szu-ri-a-am-ma 
12. a-na _e2_ szi-ip-ri-im 
13. li-in-na-di-in 
$ single ruling 


Primary publication: AbB 13, 008
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 093753
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510730
Transliteration:
&P510730 = AbB 13, 008 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}suen-i-din-nam 
2. qi2-bi2-ma 
3. um-ma ha-am-mu-ra-pi2-ma 
4. tup-pi2 an-ni-a-am i-na a-ma-ri-im 
5. a-na sza-pi2-ir ma-tim 
6. sza li-tim _ki-ta_ sza qa2-ti-ka 
7. szi#-ta-ap-pa-ar 
8. _gu4 hi-a_ u3 _udu-nita2 hi-a_ 
9. sza na-ak-ka-ma-tim sza qa2-ti-szu-nu 
10. te-li-tam 
11. ki-ma qa2-tim 
12. a-na babila2{ki} li-sze-lu-nim 
$ single ruling 


Primary publication: AbB 13, 009
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 093754
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510731
Transliteration:
&P510731 = AbB 13, 009 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}suen-i-din-nam 
2. qi2-bi2-ma 
3. um-ma ha-am-mu#-[ra]-pi2-ma 
4. asz-szum ri-ib-ba-a-at# _sipa#-mesz_ 
5. u3 _ensi2-mesz_ 
6. szu-ud-du-nim 
7. a-na nam-ti-[la-ni]-i3-du10 
8. asz-tap-[(pa)-ra]-am# 
9. u3 2(disz) _aga#-us2#-[x]-mesz#_ 
10. at,-t,ar#-dam 
11. szi-tap-pa-ar-szu-nu-szi-im-ma 
12. ri-ib-ba-a-at _sipa#-mesz_ 
13. u3 _ensi2-mesz_ 
@reverse 
1. ar-hi-isz li-sza-ad-di-nu 
$ single ruling 


Primary publication: AbB 13, 010
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): Charpin Rendre la justice, p. 86 (n42) (translation)
Collection: British Museum, London, UK
Museum no.: BM 093755
Accession no.: 
Provenience: uncertain (mod. uncertain)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20160211 cdliadmin
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P497778
Transliteration:
&P497778 = AbB 13, 010 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}suen#-[i-din-nam qi2-bi2-ma] 
2. um-ma ha-am-mu#-[ra-pi2-ma] 
3. a-nu-um-ma e-ri#-[...] 
4. qa2-du-um _lu2-mesz_ we-du#?-tim#? 
5. sza i-na _ka2 e2-gal_ iz-za-az-zu 
6. sza i-na ma-az-za-az-tim pa-at,-ru at,-t,ar-dam 
7. i-nu-ma is-sa3-an-qu2-ni-ik-kum 
8. a-wa-a-ti-szu-nu a-mu-ur 
9. wa#-ar-ka-as-su2-nu pu-ru-us2-ma 
10. di-nam ki-ma di-i-nim sza i-na-an-na 
11. i-na e-mu-ut-ba-lum id-di-in-nu 
12. szu-hi-is-su2-nu-ti 
@reverse 
1. a-pu-ul-szu-nu-ti 
2. szu-te-sze-er-szu-nu-ti 
$ single ruling 


Primary publication: AbB 13, 011
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 093756
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510732
Transliteration:
&P510732 = AbB 13, 011 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}suen#-i-din-nam# 
2. qi2-bi2-ma 
3. um-ma ha-am-mu-ra-pi2-ma 
4. a-nu-um-ma {d}suen-he2-u3-tu _ra2-gaba_ 
5. _lu2_ na-kam-tum# 
6. at,-t,ar-da-ak-kum 
7. ki-ma qa2-tim 
8. _ma2 hi-a_ i-di-isz-szu-nu-szi-im-ma 
9. _gu4 hi-a_ u3 _udu-nita2 hi-a_ 
10. sza na-kam-ti larsa{ki} 
11. u3 bad3-tibira{ki} 
$ single ruling 
@reverse 
1. li-sza-ar-ki-bu-nim 
$ single ruling 


Primary publication: AbB 13, 012
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): Charpin Rendre la justice, p. 85 (n41) (translation)
Collection: British Museum, London, UK
Museum no.: BM 093757
Accession no.: 
Provenience: uncertain (mod. uncertain)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20160211 cdliadmin
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P497779
Transliteration:
&P497779 = AbB 13, 012 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}suen#-[i]-din-nam 
2. qi2-bi2#-ma 
3. um-ma ha-am-mu-ra-pi2-ma 
4. _{disz}dumu_ ip-qu2-sza _ku3-dim2_ 
5. ki-a-am u2-lam-mi-da-an-ni 
6. um-ma szu-[u2]-ma# 
7. sza-ad-da-aq-di#-im 
8. {lu2}sza-ar-ra-qu2 
9. bi-ti ip-lu-szu-ma 
10. mi-im-mu-ia il-te-qu2-u2 
11. i-na-an-na ap-pu-na-ma 
12. [i]-na# qa2-ti-szu-nu i-tu-ru 
13. [bi]-ti# ip-lu-szu-ma 
@reverse 
1. {lu2#}sza-ar-ra-qi2 szu-nu-ti 
2. as,-s,a-ba-at 
3. ki-a-am iq-bi-a-am 
4. a-nu-um-ma _dumu_ ip-qu2-sza szu-a-ti 
5. a-na s,e-ri-ka 
6. at,-t,ar#-dam# 
7. {lu2}sza-ar-ra#-qi2 sza is,-ba#-[tu] 
8. ku-sa-a-am-ma [ma-s,a]-ri# szu-uk#-[na-asz-szu-nu]-szi#-im-ma 
9. a-na ma-ah-ri-ia szu-ri-a-[asz-szu-nu]-ti# 
10. u3 {lu2}szi-i-bi sza _dumu#_ [ip-qu2-sza] 
11. t,u2-ur-[dam] 
$ single ruling 


Primary publication: AbB 13, 013
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 093758
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510733
Transliteration:
&P510733 = AbB 13, 013 
#atf: lang akk 
@tablet 
@obverse 
1. [a-na] {d}[suen-i-din-nam] 
2. qi2-bi2-[ma] 
3. um-ma ha-am-mu#-ra#-pi2#-[ma] 
4. {disz}{d}utu-tukul-ta-szu x [...] 
5. ki-a-am u2-lam-mi-da-an#-[ni] 
6. um-ma szu-u2-ma# 
7. {disz}{d}nanna#-tum# 
8. _a-sza3_ x x x x x x-KI-a-am {d}suen-illat 
9. a-na er-re-szu-tim i-te-ne-er-ri-isz-ma 
10. _sze_-am mi-ki-is _a-sza3_-ia 
11. sza#-at-ti-sza-am i-na-ad-di-nam 
12. [i]-na#-an-na _sze_-am mi-ki-is _a-sza3#_-ia 
13. u2-ul id-di-nam 
@reverse 
1. u3 [tup-pa]-am# usz-te#-li-[a-am] 
2. um-ma szu-u2-ma 
3. _a-sza3_-ka a-na _gu2-un_ na-ad-nam 
4. ki-a-am u2-lam-mi-da-an-ni 
5. tup-pu-um sza _a-sza3 gu2-un_ {d}nanna-tum 
6. in-na-me-er-ma 
7. _5(bur3) GAN2_-ma _a-sza3_ i-na _iri_ ur-sa6-ga{ki} 
8. a-na {d}nanna-tum a-na _gu2-un_ na-di#-in# 
9. a-na mi-nim {d}nanna-[tum] 
10. _a-sza3_-am sza la na-ad-nu-szum# [x x (x)] 
11. {disz}{d}nanna#-tum# _a-sza3#_-am# sza i-na# [...] 
12. sza [x x x x x x (x)] li [...] 
$ 2-3 lines broken 


Primary publication: AbB 13, 014
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 093759
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510734
Transliteration:
&P510734 = AbB 13, 014 
#atf: lang akk 
@tablet 
@obverse 
1. [a-na {d}suen-i-din-nam] 
2. [qi2-bi2-ma] 
3. [um-ma ha-am-mu-ra-pi2-ma] 
4. {disz}dumu-{d}suen# 
5. ki-a-am iq#-[bi-a-am] 
6. um-ma szu#-[u2-ma] 
7. {disz}a-pil-{d}mar-tu# [x x (x) (x)] 
8. _ab2 gu4 hi-a_ ra-[x x x (x) (x)] 
9. asz-szum ri-ib-ba-ti#-[szu] 
10. {disz}{d}suen-sza-mu-uh2 [(x)] 
11. {disz}a-li2-wa-aq-[rum] 
12. {disz}la-li-ia 
13. u3 _dumu_ a-pil-i3-li2-szu# 
14. qa2-ba-am isz-ku#-[nu]-nim# 
15. u3 ka-ni-kam# [u2-sze]-zi-bu-nim-ma 
16. a-na qa2-be2-e-[szu]-nu 
@reverse 
1. _ab2 gu4 hi-a_ ri-ib-ba-at# 
2. {disz}a-pil-{d}mar-tu a-pu-ul 
3. i-na-an-na _ab2 gu4 hi-a_ 
4. sza qa2-ba-am isz-ku-nu-nim 
5. u2-ul id-di-nu-nim 
6. ki-a-am iq-bi-a-am 
7. a-nu-um-ma _1(disz) aga-us2-sag_ 
8. at,-t,ar-dam 
9. a-wi-le-e sza qa2-ba-a-am 
10. isz-ku-nu-szum 
11. li-si-ir-ma 
12. a-na pi2-i ka-ni-<ki>-szu-nu 
13. _ab2# gu4# [hi-a_ ...] 
$ rest broken 


Primary publication: AbB 13, 015
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 093760
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510735
Transliteration:
&P510735 = AbB 13, 015 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}suen-i-din-nam qi2-bi2-ma 
2. um-ma ha-am-mu-ra-pi2-ma 
3. asz-szum _lu2_ e-di-ki-_mesz_ 
4. sza asz-szum _a-sza3_-szu-nu sza _gu2_ A IRI s,u2-up-ri# 
5. u2-lam-mi-du-ni-in-ni-ma# 
6. asz-pu-ra#-ak-kum 
7. szum-ma ki-ma u2-lam-mi-du#-[ni]-in#-ni 
8. pu-uh2 _a-sza3_-szu-nu sza KI [x x] x x 
9. sza mu#-s,i2# u2-sza#-AD-x-[(x)-szu-nu]-ti# 
10. {disz}[...] 
11. [...] 
12. [...] 
13. [x] x AN [...] 
@reverse 
1. _a-sza3_-am [...] 
2. a-na ni# [...] 
3. _sze_-am [...] 
4. _a-sza3_ x x [...] 
5. te-e-er# 
6. szum-ma {d}utu-ha-zi-ir 
7. _a-sza3_-am a-na _lu2_ e-di-ki-_mesz_ 
8. la ip-lu#-uk-ma 
9. _lu2_ e-di-ku-_mesz_ 
10. u2-wa-at-tu#-u2-ni#-ma# 
11. u2-lam-mi-du-ni#-in#-ni# 
12. _lu2_ e-[di]-ki#-_mesz_ 
13. ar-nam e-mi#-id# 


Primary publication: AbB 13, 016
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 093761
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510736
Transliteration:
&P510736 = AbB 13, 016 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}suen-i-din-nam 
2. qi2-bi2-ma 
3. um-ma ha-am-mu-ra-pi2-ma 
4. {disz}ha-am-mu-ra-pi2-mu-ba-li2-it, 
5. sza _e2_ szi-ip-ri-im 
6. ki-a-am u2-lam-mi-da-an-ni 
7. um-ma szu-ma 
8. {disz}i3-li2-a-wi-lim _ugula nam-1(u)_ 
9. u3 sig-i3-li2-szu _szesz-a-ni_ 
10. a-wi-lu-u2 sza _e2_ szi-ip-ri-im# 
11. sza qa2-ti-ia 
12. {disz}{d}suen-im-gur-an-ni 
13. _ugula mar-tu_ 
14. u3 {d}suen-be-el#-ap-lim# 
15. _dumu_ [...] 
@reverse 
1. is,-ba-tu-szu#-[nu-ti-ma] 
2. a-na szi-[ip-ri-im] 
3. sza na-ri-[im ...] 
4. sza ih-he-[er-ru-u2] 
5. ut,-t,e4-eh-[hu-u2-(szu-nu-ti)] 
6. ki#-a-am u2-lam#-[mi-da-an-ni] 
7. a-na mi-nim a-wi-le#-[e] 
8. sza e2 szi-ip-ri#-[im] 
9. a-na szi-ip-ri-[im] 
10. u2-t,e4-eh-hu-u2 
11. wa-ar-ka-at _lu2-mesz_ szu-nu-ti 
12. pu#-ru-us2-ma 
13. [a-wi]-le-e szu-nu-ti 
14. wu#-usz-sze-er 
$ single ruling 


Primary publication: AbB 13, 017
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 093762
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510737
Transliteration:
&P510737 = AbB 13, 017 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}suen-i-din-nam# 
2. qi2-bi2-ma 
3. um-ma ha-am-mu-ra-pi2-ma 
4. asz-szum# me-he-er _dub_ i-si-ih-tim 
5. sza# e-pi2-isz-tim 
6. sza ia-mu-ut-ba-lim 
7. sza li-i-tim _an-ta_ 
8. u3 li-i-tim _ki-ta_ 
9. szu-bu-li-im 
10. sza ta-asz-pu-ra-am 
@reverse 
1. a-nu-um-ma 
2. _dub_ i-si-ih-tim szu-a-ti 
3. usz-ta-bi-la-ak-kum 
$ single ruling 


Primary publication: AbB 13, 018
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 093763
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20070811 cdliadmin_dahl
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 21198/zz0022bd5s
Composite no.: 
Seal no.: 
CDLI no.: P370926
Transliteration:
&P370926 = AbB 13, 018 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}suen-i-din-nam 
2. qi2-bi2-ma 
3. um-ma ha-am-mu-ra-pi2-ma 
4. _dumu-mesz_ si2-ia-tum 
5. ki-a-am u2-lam-mi-du-ni-in-ni 
6. um-ma szu-nu-ma 
7. _1(disz) sag-geme2_ sza bi-ti-ni 
8. qa2-du-um ma-ra-ti-sza 
9. u2-da-ap-pi2-ir-ma 
10. i-na _e2_ i3-li2-ma-x [...] 
11. i-na bad3-tibira{ki} 
12. i-ba-asz-szi 
@reverse 
1. ki-a-am u2-lam-mi-du-ni-in-ni 
2. a-nu-um-ma _dumu-mesz_ si2-ia-tum# 
3. a-na s,e-ri-ka 
4. at,-t,ar-dam 
5. it-ti-szu-nu szu-pur-ma 
6. _sag-geme2_ sza iq-bu-u2 
7. qa2-du-um ma-ra-ti-sza 
8. li-it-ru-ni-ik-kum 
9. wa-ar-ka-tam pu-ru-us2-ma 
10. szum-ma _sag-geme2_ szi-i 
11. sza# _dumu-mesz_ si2-ia-tum-ma 
12. [du-up]-pu#-rum u2-da-ap-pi2-ir 
13. [_sag-geme2_ (x) (x)] szi-a-ti 
14. [qa2-du-um] ma#-a-ra-ti-sza# 
15. [a-na _dumu]-mesz#_ si2-ia-tum 
16. te#-e-er 


Primary publication: AbB 13, 019
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 093764
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510738
Transliteration:
&P510738 = AbB 13, 019 
#atf: lang akk 
@tablet 
@obverse 
1. [a-na {d}suen]-i-din-nam 
2. qi2#-bi2-ma 
3. um-ma ha-am-mu-ra-pi2-ma 
4. asz-szum ri-ib-ba-at _igi-sa2_ 
5. sza sza-pi2-ir ma-tim sza li-ti-ka 
6. szu-ud-du-nim 
7. asz-pu-ra-ak-kum-ma 
8. ri-ib-ba-at _igi-sa2_ 
9. u2-ul tu-sza-ad-di-in 
10. u3 t,e4-em-ka sza-pa-ru-um-ma 
11. u2-ul# ta#-asz-pu-ra-am 
12. [da-mi-iq e-pe2]-szum an-nu-u2-um sza te-pu-szu 
13. [a-nu-um]-ma# _1(disz) aga-us2-sag_ 
14. _[dub]_ ri-ib-ba-at _igi-sa2_ 
@reverse 
1. [sza sza-pi2]-ir ma-tim sza li-ti-ka 
2. sza# isz-tu _mu e2-me-te-ur-sag_ 
3. a-di _mu kilib gu2 du3-a-bi_ 
4. sza a-na {d}suen-mu-sza-lim _ugula e2_ 
5. a-na szu-ud-du-nim na-ad-nu 
6. usz-ta-bi-la-ak-kum 
7. it-ti-szu _lu2-mesz_ ta-ak-lu-tim 
8. szu-ku-un-ma 
9. a-na pi2-i tup-pi2-im sza u2-sza-bi-la-ak-kum 
10. ri#-ib-ba-at _igi-sa2_ 
11. li#-sza-ad-di-nu-ma 
12. [a-na] ma#-ah#-ri#-ia szu-bi-lam 
$ single ruling 


Primary publication: AbB 13, 020
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 093765
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510739
Transliteration:
&P510739 = AbB 13, 020 
#atf: lang akk 
@tablet 
@obverse 
1. [a-na] {d}suen-i-din-nam 
2. qi2#-bi2-ma 
3. um-ma ha-am-mu-ra-pi2-ma 
4. tup-pi2 an-ni-a-am i-na a-ma-ri-im 
5. {disz}a-na-{d}suen-tak2-la-ku _dumu_ ip-qu2-{d}na-na-a 
6. {disz}lu2-{d}nin-szubur-kam {disz}an-pi2-sza 
7. {disz}sza-lim-t,e4-eh-hi# u3 {disz}i3-li2-i-qi2-sza-am 
8. 4(disz) _szesz-mesz_ a-na-{d}suen-tak2-la#-ku 
9. {disz}ib-ni-{d}iszkur {disz}qa2-aq-qa2-da-nu-um 
10. {disz}sze-li-be2-nu-um u3 sig-esz18-dar 
11. 4(disz) _dumu-mesz_ a-na-{d}suen-tak2-la-ku 
12. _lu2 iri_ ra-ha-bi{ki}-_mesz_ 
@reverse 
1. a-na babila2{ki} 
2. t,u2-ur-dam 
$ single ruling 

Primary publication: AbB 13, 021
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 093766
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510740
Transliteration:
&P510740 = AbB 13, 021 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}suen-i-din#-[nam qi2-bi2-ma] 
2. um-ma ha-am#-[mu-ra-pi2-ma] 
3. {disz}{d}suen-u2-se-li# [x x (x)] 
4. ki-a-am u2-lam-mi-da-an#-ni# um#-ma# szu#-ma 
5. {disz}gesztu2-la2 ma-ri 
6. isz-tu _mu 8(disz)-kam_ ih-li-qa3-an-ni-ma 
7. ba-al-t,u2-us-su2 u2-ul i-de-e-ma 
8. ki-ma mi-tim ki-is-pa-am 
9. ak-ta-as-si2-ip-szum 
10. i-na-an-na i-na _iri_ e-ba-ri-i{ki} 
11. i-na _e2_ ib-ni-e2-a _ra2-gaba ku3-dim2_ 
12. _dumu_ s,il2-li2-{d}utu 
13. wa-asz-bu-us-su2 iq-bu-nim 
14. a-na _iri_ i-ik-ba-ri-i{ki} 
15. al#-li-ik-ma 
@reverse 
1. i-na pa-ni-ia usz-ta-ar-qu2-u2-szu#-[(ma)] 
2. it-ta-ak-ru-ni-in-ni 
3. ki-a-am u2-lam-mi-da-an-ni 
4. a-nu-um-ma 1(disz) _aga-us2-sag_ 
5. u3 {d}suen-u2-se-li szu-a-ti 
6. a-na s,e-ri-ka# at,-t,ar-dam 
7. ki-ma is-[sa3-an]-qu2-ni-ik#-kum# 
8. isz-te-en ta-ak#-lam 
9. [it-ti]-szu-nu# t,u2-ru-ud 
10. [a]-na# _iri#_ e-ba-ri-i{ki} li-il-li-ku-ma 
11. {disz}gesztu2-la2 _dumu_ {d}suen-u2-se-li 
12. u3 ib#-ni-e2-a sza gesztu2-la2 
13. [isz-tu] _mu# 8(disz)-kam#_ i-na _e2_-szu ik-lu-szu# 
14. [a-na ma-ah-ri]-ka# li-it-ru-ni-ik#-kum#-[ma] 
15. [a-na] babila2#{ki} szu-ri-[a-am] 
$ single ruling 


Primary publication: AbB 13, 022
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 093767
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510741
Transliteration:
&P510741 = AbB 13, 022 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}suen-i-din-nam 
2. qi2-bi2-ma 
3. um-ma ha-am-mu-ra-pi2-ma 
4. {disz}i-din-ia-tum 
5. ki-a-am iq-bi-a-am um-ma szu-ma 
6. {disz}{d}suen#-sze-mi 
7. _1(disz) 1/2(disz) ma-na ku3#-babbar#_ a-na {d}suen-u2-se-li 
8. _dumu_ ta-ri-bu-um 
9. a-na hu-bu-ul-lim id-di-in-ma 
10. {disz}{d}suen-u2-se-li 
11. a-na szi-ma-ti-szu it#-ta#-la#-ak 
12. i-na-an-na ta-ri#-[bu-um] 
13. _ha-la_ {d}suen-u2-[se-li ma-ri-szu] 
14. it-ba-[al] 
15. u3 {d}suen#-[sze-mi (x) (x)] 
@reverse 
1. _ku3-babbar_-am# [sza hu-bu-(ul)-lim] 
2. u2-ul [im-hu-ur] 
3. ki-a-am {disz}i-din-ia-tum# iq#-bi#-[a]-am# 
4. ka-ni-ik {d}suen-u2-se-li 
5. a-mu-ur-ma 
6. a-na pi2-i ka-ni-ki-szu 
7. _ku3-babbar_-am 
8. {disz}ta-ri-bu-um 
9. sza zi-it-ti ma-ri-szu il-qu2-u2 
10. li-pu-ul 
$ single ruling 


Primary publication: AbB 13, 023
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 093768
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510742
Transliteration:
&P510742 = AbB 13, 023 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}suen-i-din-nam# 
2. qi2-bi2-ma 
3. um-ma ha-am-mu-ra-pi2-ma 
4. a-nu-um-ma ka-ni-ik _{gesz}eme-sig hi-a_ 
5. sza na-szi _gu2-un hi-a_ 
6. sza li-ti-ka 
7. a-na sza-lu-usz-ti _ma2-i3-dub_ 
8. sza qa2-ti-szu-nu e-pe2-szi-im 
9. ak-nu-kam-ma 
10. usz-ta-bi-lam 
11. a-na# pi2-i ka-ni-ki-im 
12. sza# u2-sza-bi-lam 
@reverse 
1. na-szi _gu2-un hi-a_ 
2. li-il-li-ku-nim 
3. i-na _gu2 i7_ buranun 
4. e-li-tim 
5. _{gesz}eme-sig hi-a_ 
6. li-ik-ki-su2-ma 
7. sza-lu-usz-ti _ma2-i3-dub_ 
8. sza qa2-ti-szu-nu 
9. li#-pu-szu 
$ single ruling 


Primary publication: AbB 13, 024
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 093769
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510743
Transliteration:
&P510743 = AbB 13, 024 
#atf: lang akk 
@tablet 
@obverse 
1. [a-na {d}]suen-i-din-nam 
2. [qi2]-bi2-ma 
3. um#-ma ha-am-mu-ra-pi2-ma 
4. i-na# _erin2#_ um-ma-tim 
5. sza# [li]-tim# sza qa2-ti-ka 
6. _erin2_-am# sza# sza-ka-nim 
7. szu-[ku]-un 
8. x [x x x] _erin2#_ bi-i-ir#-tim 
9. sza# [x x x x (x)] x [x x] 
10. x [...] 
@reverse 
1. _e2_ ka-x [x (x)] x 
2. li-iq-ni-szu 
$ single ruling 


Primary publication: AbB 13, 025
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 093770
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510744
Transliteration:
&P510744 = AbB 13, 025 
#atf: lang akk 
@tablet 
@obverse 
1. [a-na {d}suen]-i-din-nam qi2-bi2#-[ma] 
2. [um-ma ha]-am#-mu-ra-pi2-ma 
3. [{disz}{d}suen]-i-din-nam _ugula mar-tu_ 
4. [sza] {iri#}ra-pi2-qum{ki} wa-asz-bu 
5. qa2#-du-um _erin2_-szu 
6. a-na s,i-bu-tim 
7. ip-ta-at,-ru-nim 
8. tup-pi2 an-ni-a-am i-na a-ma-ri-im 
9. i-na _ugula mar-tu-mesz_ sza _erin2_ ma-tim 
10. sza li-ti-ka 
11. sza a-na _kaskal_-im la il-li-ku-ma 
12. _erin2_-szu-nu i-na li-bu ma-tim 
13. in-ne-ez-bu 
@reverse 
1. 1(disz) _[ugula mar]-tu_ 
2. qa2-du-um# [(x)] _erin2_-szu 
3. a-na ra-pi2#-qum{ki} 
4. t,u2-ru-ud-ma 
5. i-na ra-pi2-qum#{ki} 
6. li-szi-ib 
$ single ruling 


Primary publication: AbB 13, 026
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 093771
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510745
Transliteration:
&P510745 = AbB 13, 026 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}suen-i-din-nam 
2. qi2-bi2-ma 
3. um-ma {d}marduk-mu-sza-lim-ma 
4. {d}utu u3 {d}marduk li-ba-al-li-t,u2-ka 
5. asz-szum _geme2_ sza i3-li2-ia-tum# 
6. _lu2_ u2-ba-la-tim 
7. isz-te-szu szi-ni-szu asz-tap-ra#-kum 
8. di-in-szu di-in 
9. a-wa-su2 a-mu-ur-ma 
10. _geme2_ te-er-szu 
$ single ruling 


Primary publication: AbB 13, 027
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 093772
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510746
Transliteration:
&P510746 = AbB 13, 027 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}suen-i-din-nam 
2. qi2-bi2-ma 
3. um-ma ha-am-mu-ra-pi2-ma 
4. {disz}{d}suen-gim-la-an-ni _ugula nam-5(disz)_ 
5. ki-a-am u2-lam-mi-da-an-ni um-ma szu-ma 
6. a-na im-gur-{d}suen _dam-gar3_ 
7. mi-im-ma sza _1(disz) ma-na ku3-babbar_-am ub-ba-lu 
8. a-na ma-as,-s,a-ar-tim ad-di-isz-szum-ma 
9. e-te-er-ri-is-su-ma u2-ul id-di-nam 
10. ki-a-am u2-lam-mi-da-an-ni 
11. szu-pur im-gur-{d}suen _dam-gar3_ 
12. li-it-ru-ni-ik-kum-ma 
13. a-wa-a-ti-szu-nu a-mu-ur-ma 
14. di#-nam ki-ma s,i-im-da-tim 
15. szu-hi-is-su2-nu-ti 
@reverse 
$ blank space 


Primary publication: AbB 13, 028
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 093773
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510747
Transliteration:
&P510747 = AbB 13, 028 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}suen-i-din-nam 
2. [qi2]-bi2-ma 
3. um#-ma ha-am-mu-ra-pi2-ma 
4. [n] _me erin2_ i3-li2-ip-pa-al-sa3-am 
5. u3 5(u) _erin2 sza3_ sza {d}iszkur-ni-szu 
6. _nu-banda3-e szusz3_ sza _dingir_ 
7. i-na _iti gu4-si-sa2 u4 2(u) 5(disz)-kam_ 
8. t,u2-ur-dam-ma 
9. i-na _iti sig4-a u4 1(disz)-kam_ 
10. a-na babila2#{ki} 
11. a-na ma-an-za-asz-ti-szu-nu 
@reverse 
1. li-is-ni-qu2-nim 
$ single ruling 


Primary publication: AbB 13, 029
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 093774
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510748
Transliteration:
&P510748 = AbB 13, 029 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}suen-i-din-nam# 
2. qi2-bi2-ma# 
3. um-ma ha-am-mu-ra-pi2-ma 
4. tup-pi2 an-ni-a-am i-na a-ma-ri#-im 
5. {disz}ta-ri-bu-um 
6. u3 szu-i3-li2-szu 
7. wa-ar-ke-e sza larsa#{ki} 
8. a-na babila2{ki} 
9. t,u2-ur-dam 
10. a-la-kam li-pu-szu#-[nim]-ma# 
11. ar-hi-isz# 
@reverse 
1. a-na babila2{ki} 
2. li-is-ni-qu2-nim 
$ single ruling 


Primary publication: AbB 13, 030
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 093775
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510749
Transliteration:
&P510749 = AbB 13, 030 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}suen-i-din-nam 
2. qi2-bi2-ma 
3. um-ma ha-am-mu-ra-pi2-ma 
4. asz-szum 1(u) _erin2 gi-il2_-ka 
5. 1(u) _erin2 gi-il2_ {d}utu-mu-sza-lim 
6. 1(u) {d}nanna-tum bad3-tibira#{ki#} 
7. 1(u) {d}na-bi-um-ma-lik larsa#{ki#} 
8. 1(u)# zi-im-ru-akszak{ki} [x] x x 
9. 5(u) _erin2 gi-il2_ 
10. [s,a]-ma#-di-im u3 t,a-ra-di-im 
11. [asz]-ta#-ap-ra-ak-kum-ma 
12. [a-na] ha#-da-nim sza isz-sza-ap-ra-kum#-ma 
13. _[u4 1(disz)]-kam#_ u2-la-ap-pi2-tu 
$ rest broken 


Primary publication: AbB 13, 031
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 093776
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510750
Transliteration:
&P510750 = AbB 13, 031 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}suen-i-din-nam 
2. qi2-bi2-ma 
3. um-ma ha-am-mu-ra-pi2-ma 
4. _ku3-babbar e2_ {d}ki-it-tim 
5. sza sze-ep-{d}suen 
6. _ugula dam-gar3-mesz_ sza larsa{ki} 
7. _9(disz) ma-na ku3-babbar_-um 
8. a-di-ni u2-ul szu-ud-du-un 
9. um-ma sze-ep-{d}suen-ma 
10. sza-pi2-ir na-a-ri 
11. ip-ta-na-ar-ri-ku-nim-ma 
12. _ku3#-babbar_-um szu-u2 
13. u2-ul usz-ta-ad-di-in 
@reverse 
1. [1(disz)] _aga#-us2# [sag]_ 
2. [it-ti] mu-sza-ad-di#-nim# 
3. [sza _ku3#]-babbar# e2_ {d}ki-it-tim 
4. [u2-sza]-ad#-da-nu 
5. szu#-ku#-un#-ma# 
6. _9(disz) ma-na ku3#-[babbar_-am] ga-am-ra-am 
7. li-sza-ad#-[di]-nu-nim-ma 
8. a-na babila2#{ki} 
9. li-ib#-[lu]-nim 

Primary publication: AbB 13, 032
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 093777
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510751
Transliteration:
&P510751 = AbB 13, 032 
#atf: lang akk 
@tablet 
@obverse 
1. a-na [{d}suen-i-din-nam] 
2. qi2-[bi2-ma] 
3. um-ma ha-am#-mu#-[ra-pi2-ma] 
4. a-na _erin2 en-nu e2-[gal]_ 
5. sza li-ti-im# _ki#-ta#_ 
6. a-la-kum isz-sza#-ap#-ru#-ni#-im-ma 
7. a-di-ni u2-ul i-sa-an-ni-qu2-nim 
8. tup-pi2 an-ni-a-am 
9. i-na a-ma-ri-im 
10. _erin2 en-nu e2-gal_ 
11. sza li-ti-ka 
12. gu-um-me-ra-am-ma 
@reverse 
1. t,u2-ur-dam 
2. u3 1(disz) _dumu e2-dub-ba_-ka 
3. pa-ni-szu-nu li-is,-ba-tam 
4. a-la-kam li-pu-sza-am-ma 
5. ar#-hi-isz a-na babila2{ki} 
6. li-is-ni-qa2-am 
$ single ruling 


Primary publication: AbB 13, 033
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 093778
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510752
Transliteration:
&P510752 = AbB 13, 033 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}suen-i-din-nam 
2. qi2-bi2-ma 
3. um-ma {d}marduk-mu-sza-lim-ma 
4. {d}utu u3 {d}marduk da-ri-isz _u4_-mi 
5. li-ba-al-li-t,u2-ka 
6. tup#-pi2 be-li2-ia ki-a-am il-li-kam um-ma 
7. ri#-ib-ba-at _sipa-mesz_ sza szu-ud-du-nu-um 
8. isz#-sza-ap-ra-ak-kum-ma 
9. tu-sza-ad-di-nu 
10. a-na s,e-er _lu2-mesz_ sza a-na ZA-la-tim il-li-ku 
11. t,u2-ru-ud-ma li-ip-qi2-du 
12. u3 szi-im-tam li-isz-ku-nu 
13. ki-a-am tup-pi2 be-li2-ia il-li-kam 
14. ki-ma a-na ia-szi-im isz-sza-ap-ra-am# 
15. u3 a-na ka-szi-im isz-sza-ap-ra#-ak#-kum 
16. me-he-er tup-pi2-im sza be-li2-ia# 
17. ki-i ta-pu-ul i-na ri-ib-ba-at _sipa-mesz_ 
@reverse 
1. sza szu-ud-du-nu-um isz-sza-ap-ra-ak-kum 
2. _u8 udu hi-a_ ki ma-s,i 
3. u2-sza-ad-di-nu-ni-ik-kum 
4. _u8 udu hi-a_ sza u2-sza-ad-di-nu-ni-ik-kum 
5. mi-im-ma-a a-na s,e-er _lu2-mesz_ 
6. ta-at,-ru-ud 
7. t,e4#-em-ka ga-am-ra-am szu-up-ra-am 
8. [u3] asz-szum ri-ib-ba-at _sipa-mesz_ 
9. sza# szu#-ud-du-nu-um isz-sza-ap-ra#-an#-ni-a-szi-im 
10. ki-ma szu-ud-du-nam la ni-le-u2 
11. a-na be-li2-ia aq-bi 
12. u3 at-ta a-na be-li2-ia qi2-bi-ma 
13. t,e4-ma-am sza be-li2 i-ip-pa-lu-ka 
14. szu-up-ra-am 
$ single ruling 


Primary publication: AbB 13, 034
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 093779
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510753
Transliteration:
&P510753 = AbB 13, 034 
#atf: lang akk 
@tablet 
@obverse 
$ beginning broken 
1'. {d}utu# u3 {d}marduk# [da-ri-isz _u4_-mi-im] 
2'. li-ba-al-li-t,u2#-[ka] 
3'. {disz}e2-a-mu-sza-lim ki-a-am iq#-[bi-(a-am)] 
4'. um-ma szu-u2-ma 
5'. a-na mu-ha-du-um u3 a-pil-{d}szakkan2 
6'. sza-pi2-ri a-na ta-ri-im isz-pur#-an-ni 
7'. asz-szum sza-pi2-ri tu-up-pa-szu 
8'. asz-szum-mi-szu-nu la u2-sza-bi-lam 
9'. um-ma a-na-ku-u2-ma a-na nu-pu-usz li-ib-bi 
10'. sza sza-pi2-ri-ia tu-up-pi2 lu-sza-bi-il 
11'. a-wi-le-e sza asz-szum-mi-szu-nu 
12'. a-na sza-pi2-ri-ia sa3-ar-tam iq-bu-u2 
13'. {disz}a-hu-um u3 na-ra-am#-i3-li2-szu 
14'. eb-bu-tum sza sza-pi2-ri [(x) (x)] 
@reverse 
1. isz#-ku-nu [...] 
2. _5(disz) sila3 i3-gesz_ [...] 
3. a-na tap-pu-ti#-[szu-nu a-la-ki-im] 
4. {disz}mu-ha-du-um u3 a-pil#-[{d}]szakkan2 
5. asz-ku-un u3 a-na a-hu-um 
6. u3 na-ra-am-i3-li2-szu 
7. eb-bu-tim sza sza-pi2-ri-ia 
8. ki-a-am aq-bi um-ma a-na-ku-u2-ma 
9. asz-szum i-s,a-tu-nu 
10. a-na tap-pu-ti-ku-nu a-la-ki-im 
11. asz-ku-nu-szu-nu-ti 
12. i-na ni-isz _dingir_ li-ib-ba-ku-nu 
13. u2-na-pa-szu 
14. [...] x [...] 
$ rest broken 
@left 
1. [...] a-na s,e-er sza-pi2-ri-ia 
2. [...] x a-la-ki-im 


Primary publication: AbB 13, 035
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 093780
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510754
Transliteration:
&P510754 = AbB 13, 035 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}suen-i-din-nam 
2. qi2-bi2-ma 
3. um-ma ha-am-mu-ra-pi2-ma 
4. tup-pi2 an-ni-a-am 
5. i-na a-ma-ri-im 
6. {disz}ap-lum _dumu_ i-din-ia-tum 
7. {disz}pir-hu#-um# _dumu_ nu-ur2-i3-li2-szu 
8. {disz}i3-li2-i-qi2-sza-am _dumu_ {d}suen-a-sza-re-ed 
9. {disz}gi#-mil-{d}suen _dumu_ {d}suen-pa-t,e4-er 
10. [x x x] x sza-ra-ab-tu-um 
11. [5(disz) _lu2-mesz_ an-nu-ti]-in# _lu2_ la-ga-asz{ki}-_mesz_ 
12. [...] x _gu4 hi-a_ 
@reverse 
1. [a-na ma]-ah#-ri-ia 
2. szu#-ri#-a-am 
$ single ruling 


Primary publication: AbB 13, 036
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 093781
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510755
Transliteration:
&P510755 = AbB 13, 036 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}suen-i-din-nam 
2. qi2-bi2-ma 
3. um-ma ha-am-mu-ra-pi2-ma 
4. ki#-ma# qa2-tim 
5. [...] _{gesz#}ma2 hi-a_ 
6. [i]-di#-in-ma 
7. _ab2# hi#-a_ u3 _udu-nita2-[hi-a]_ 
8. te#-li-tam 
9. [sza] na#-kam#-ti larsa{ki} 
10. u3 na-kam#-ti# bad3-tibira{ki} 
11. [a-na] _iri#_ babila2#{ki} 
12. [li]-sze-lu-nim 
$ single ruling 
@reverse 
$ blank space 


Primary publication: AbB 13, 037
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 093782
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510756
Transliteration:
&P510756 = AbB 13, 037 
#atf: lang akk 
@tablet 
@obverse 
1. a-na sza-pi2-ri#-ia qi2-bi2-ma 
2. um-ma {d}za-ba4-ba4-na-s,i-ir-ma 
3. ki-ma isz-tu babila2{ki} a-na ku-ba-tim{ki} 
4. as2-ni-qa2#-am 
5. u2-ul {d}suen-im-gur-an-ni is-ni-qa2-am 
6. u2-ul ta#-ri#-bu#-um sza sza-pi2-ri u2-wa-e-ra-asz-szu# 
7. a-mu#-ur 
8. u3 asz-szum a-[na] a-la-ak _erin2_-im 
9. a-na ha-da-an a-na sza-pi2-ri-ia isz-sza-ap-ra-am 
10. mu-szi u3 ur-ri a-la-kum qa2-bu-u2 
11. a-di _ugula mar-tu-mesz_ u3 _erin2_-szu-nu is-ni-qa2-am 
12. [i]-na# ku-ba-tim{ki} re-sza-am u2-ki-il-ma 
13. ki#-ma as2-ni-qa2-am 
14. t,e4-ma-am a-na sza-pi2-ri-ia 
15. asz-pur-am 
@reverse 
1. [szum]-ma sza-pi2-ri isz-pur-am 
2. _erin2#_-am nu-sze-esz-sze-er-ma 
3. t,e4-em _erin2_-im a-na sza-pi2-ri-ia 
4. u2-ta-ar-ra-am 
5. wa-ar-ki _erin2_-im an-ni-i-im 
6. i-na _iti sze-sag11-ku5 u4 1(u)-kam_ 
7. a-na _erin2_ u2-s,i-nu-rum u3 ia-di-du-um 
8. x [x] x x [...] x-im# 
9. a-na babila2{ki} [a-la]-qi2#-a-szu-nu-ti# 
10. a-na sza-pi2-ri-ia isz-sza-ap-pa-ra-am 
11. u3 a-na u2-s,i-nu-rum u3 ia-di-du-um 
12. i-na _e2-gal_-im a-na ha-da-an 
13. a-na sza-pi2-ri-ia isz-pu-ru-ni-in-ni 
14. iq-qa2-bi-szu-nu-szi-im 
15. a-na la-ma-ad sza-pi2-ri-ia asz-pur-am 
16. szum-ma sza-pi2-ri i-qa2-ab-bi 
@left 
@column 1 
1. li-ib-te-er-ri-szu-nu-szi-im-ma 
2. s,i-bi-it t,e4-mi-im li-ir-szu-u2 
@column 2 
1. [(x) (x) (x) (x) (x)] 


Primary publication: AbB 13, 038
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 093783
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510757
Transliteration:
&P510757 = AbB 13, 038 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}suen-i-din-nam 
2. qi2-bi2-ma 
3. um-ma ha-am-mu-ra-pi2-ma 
4. {disz}ha-am-mu-ra-pi2-mu-ba-li2-it, 
5. sza _e2_ szi-ip-ri-im 
6. ki-a-am iq-bi-a-am um-ma szu-ma 
7. _dumu-mesz_ s,il2-li2-{d}utu _ugula mar-tu_ 
8. _lu2_ e-mu-ut-ba-lum 
9. {disz}ap-lum _aga-us2#_ sza# qa2-ti-ia 
10. x x ri x [...] 
11. [x x x (x)] x [...] 
$ rest broken 
@reverse 
$ beginning broken 
1'. [a-wa]-ti#-szu-nu a-[mu-ur-ma] 
2'. di-nam ki-ma s,i-im-da#-tim# 
3'. szu-hi-is-su2-nu-ti 
$ single ruling 


Primary publication: AbB 13, 039
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 093784
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510758
Transliteration:
&P510758 = AbB 13, 039 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}suen-i-din-nam 
2. qi2-bi2-ma 
3. um-ma ha-am-mu-ra-pi2-ma 
4. asz-szum a-la-ki-ka 
5. sza ta-asz-pu-ra-am 
6. la-ma ta-sza-ap-pa-ra-am-ma 
7. asz-szum a-la#-ki-ka 
8. asz-ta-ap#-[(pa)-ra]-am# 
9. ki-ma asz-pu-ra#-ak#-kum 
10. al-kam 
11. la tu-la-ap-pa-tam 
12. ar-hi-isz si2-in-qa2-am 
$ blank space 
@reverse 
$ blank space 


Primary publication: AbB 13, 040
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 093785
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510759
Transliteration:
&P510759 = AbB 13, 040 
#atf: lang akk 
@tablet 
@obverse 
1. [a-na {d}suen-i-din]-nam# 
2. [qi2-bi2]-ma 
3. um-ma ha-am-mu-ra-pi2-ma 
4. tup-pi2 an-ni-a-am 
5. i-na a-ma-ri-im 
6. {disz}a-bi-i-din-nam _lu2 iri_ ku-ta-al-la{ki} 
7. a-na babila2{ki} 
8. szu-ri-a-am 
9. u3 {lu2}ma-as,-s,a-ru 
10. li-is,-s,u2-ru-ni-isz-szu 
$ single ruling 
@reverse 
$ blank space 


Primary publication: AbB 13, 041
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 093786
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510760
Transliteration:
&P510760 = AbB 13, 041 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}suen-i-din-nam qi2-bi2#-ma 
2. um-ma ha-am-mu-ra-pi2-ma# 
3. asz-szum {disz}a-pil-{d}mar-tu _ka-bar_ 
4. _lu2_ e2-lugal{ki} 
5. sza qa2-du-um 2(u) _ab2 gu4 hi-a_ <sza> _e2_ [{d}utu] 
6. a-na bad3{ki} in-na-bi-tu 
7. u3 2(disz) _lu2_ bad3{ki}-_mesz_ 
8. sza# 6(disz) _ab2 gu4 hi-a_ sza _e2_ {d}utu isz-[ri-qu2-ma] 
9. i-na bad3{ki} wa-asz-bu 
10. a-na _lu2-mesz#_ szu#-nu-ti szu#-ri-i-[im] 
11. a-na su2-la-mu-um# ta#-[asz-pu-ra-am-ma] 
12. {disz}su2-la#-mu-um _lu2_ e2-[lugal{ki} (u3 2(disz) _lu2 bad3{ki}-mesz)]_ 
13. la# u2-sza-ri#-[a-kum] 
14. sza asz-pu-ra#-[ak-kum] 
@reverse 
1. [{disz}su2-la-mu]-um# szu#-[a-ti] 
2. [x (x)] di#?-in-ma x [x] 
3. _lu2-[mesz]_ szu-nu-ti# 
4. a-na ma-ah#-ri#-ka u2-sza-ar#-[ra-am?] 
5. _lu2-mesz_ szu-nu-ti 
6. a-na _e2_ {d}utu szu#-ri-[a-am] 
7. i-na _e2_ {d}utu li-be2-er-ru-szu-nu#-[ti-(ma)] 
8. a-wi-lam sza a-wa-as-su2 
9. i-hi-il-tam i-szu-u2 
10. a-na ma#-ah#-ri-ia 
11. szu-[ri]-a-am 
$ single ruling 

Primary publication: AbB 13, 042
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 093787
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510761
Transliteration:
&P510761 = AbB 13, 042 
#atf: lang akk 
@tablet 
@obverse 
1. [a-na {d}]suen#-i-din-nam 
2. [qi2]-bi2-ma 
3. um-ma ha-am-mu-ra-pi2-ma 
4. _ma2 hi-a nig2-szu_ ta-ri-ba-tum 
5. u3 {d}suen-dingir 
6. gu-um-me-ra-am-ma 
7. t,u2-ur-dam 
$ single ruling 


Primary publication: AbB 13, 043
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 093788
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510762
Transliteration:
&P510762 = AbB 13, 043 
#atf: lang akk 
@tablet 
@obverse 
1. [a-na {d}suen]-i-din-nam# 
2. [qi2]-bi2#-ma# 
3. um-ma ha-am-mu-ra-pi2-ma# 
4. {disz}e-pe2-esz-dingir _en-nu e2-gal_ 
5. ki-a-am u2-lam-mi-da-an-ni 
6. um-ma szu-u2-ma 
7. _a-sza3_-am sza {d}utu-ha-zi-ir _sa12-du5_ 
8. ip-lu-ka-am 
9. _dumu#_ lu2-{d}asar-lu2-hi ib-qu2-ra-an-ni-ma 
10. _[sze]_-e it-ba-al 
11. u3 _{gesz}kiri6_ e-tel-pi4-{d}marduk 
12. ib#-qu2-ra-an-ni-ma 
13. _zu2#-lum_-ia it-ba-al 
@reverse 
1. ki#-a-am u2-lam-mi-da-an-ni 
2. a-nu-um-ma {disz}e-pe2-esz-dingir szu-a-ti 
3. at,-t,ar-dam 
4. szu-pur be-el a-wa-ti-szu 
5. li-is-su-ni-ik-kum-ma 
6. wa#-ar-ka-tam pu-ru-us2-ma 
7. szum#-ma _a-sza3_-szu u3 _{gesz}kiri6_-szu ha-bi-il 
8. _a-sza3_-am u3 _sze_-a-szu 
9. _{gesz}kiri6_-am u3 _zu2-lum_-szu 
10. te-e-er-szum 
$ single ruling 


Primary publication: AbB 13, 044
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 093789
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510763
Transliteration:
&P510763 = AbB 13, 044 
#atf: lang akk 
@tablet 
@obverse 
1. a-na# sza-pi2-ri-ni 
2. qi2-bi2-ma 
3. um-ma ra-bi-a-an _iri_ a-ta-szum{ki} 
4. u3 szi-bu-ut a-lim-ma 
5. {d}utu u3 {d}marduk sza-pi2-ir-ni 
6. da-ri-isz _u4_-mi li-ba-al-li-t,u2 
7. asz-szum _sze_-e-im sza sza-pi2-ir-ni 
8. id-di-na-an-ne2-szi-im-ma 
9. a-na _lu2 hun-ga2-mesz_ ni-id-di-nu 
10. {disz}{d}utu-mu-sza-lim sza-pi2-ir ma-tim 
11. {disz}ib-na-tum _aga-us2_ 
12. isz-pu-ra-an-ne2-szi-im-ma 
@reverse 
1. um#-ma szu-nu-ma 
2. a-na dingir-szu-na-s,i-ir 
3. u3 {d}utu-ba-ni 
4. na-ad-na-tu-nu 
5. _a-sza3 gu2-un_-szu-nu te-s,i#-da# 
6. u3 tu-ka-am-ma-sa# 
7. a-na _a-sza3_-el {d}suen-i-din-nam 
8. u2-ul ta-la-ka 
9. u3 _sze_-a-am sza a-na _lu2 hun-ga2-mesz#_ 
10. ta-ad#-di#-na a-na ri-im-{d}iszkur te-er#-ra 
11. {disz}x-[x]-{d}iszkur# x x 
12. u3 ri#-[im]-{d}iszkur# [x (x)] 
13. [...] x x szu 
14. [...] 
15. a-na# pi2-ha-at a-pa-li-ka 
16. la ta-s,a-ab-ba-ta-an-ni 


Primary publication: AbB 13, 045
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 093790
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510764
Transliteration:
&P510764 = AbB 13, 045 
#atf: lang akk 
@tablet 
@obverse 
$ beginning broken 
1'. {d}e2-a {d}utu {d}marduk u3 {d}[...] 
2'. li#-ba-al-li-t,u2-ka 
3'. asz-szum {disz}an-pi2-{d}nin-szubur 
4'. u3 {disz}a-wi-li-ia 
5'. sza _ensi2-mesz_ sza qa2-ti-ia 
6'. sza u2-lam-ma-du-ka-ma 
7'. sza asz-ta-na-ap-pa-ra-am 
8'. i-na te-er-ti-ia _ensi2-mesz_ 
9'. sza qa2-bi-ia u2-ul i-ip#-pu-szu 
@reverse 
1. _erin2 en-nu e2-gal_ a-ap-pa-al-szu-nu#-[ti] 
2. a-la-kam u2-ul e-le-i-ma 
3. t,e4-e-em te-er-ti-ia 
4. mah-ri-ka u2-ul asz-ku-un 
5. a-na s,e-ri-ka at,-t,ar-da-asz-szu-nu-ti 
6. _aga-us2_-ka szu-ku-un-szu-nu-szi-im-ma 
7. {disz}sze-ep-{d}suen a-na s,e-ri-ka 
8. li-ir-du-nim-ma 
9. di#-nam# szu#-hi-is-su2-nu-ti 
$ rest broken 


Primary publication: AbB 13, 046
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 023589
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510765
Transliteration:
&P510765 = AbB 13, 046 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}suen-i-din-nam# 
2. qi2-bi2-ma 
3. um-ma ha-am-mu-ra-pi2-ma 
4. {disz}e-tel-li-ia _lu2_ pu-ru-us2-sa{ki} 
5. ki-a-am u2-lam-mi-da-an-ni um-ma szu-ma 
6. _{disz}dumu_ dumu-{d}mar-tu _lu2_ ha-szu-ur2{ki} 
7. {disz}a-hu-szi-na ma-ri 
8. tah-hu sza szum-ma-an-la-{d}utu _en-nu e2-gal_ 
9. a-na _{kusz}usan3_ is,-ba-at-ma ip-ta-a-ad 
10. ki#-a-am u2-lam-mi-da-an-ni-ma 
11. [tup]-pu#-um sza _e2-gal_ 
12. in#-na-me-er-ma 
13. {disz}a-hu-szi-na [(x) (x)] 
14. _dumu_ e-tel-li#-[ia] 
@reverse 
1. a-na _{kusz#}[usan3]_ u2-ul sza-[t,e-er] 
2. a-na tah#-hi# szum-ma-an#-[la]-{d}utu#-ma# 
3. sza-t,e-er 
4. a-na mi#-nim# ma-ri dumu-{d}mar-tu 
5. a-wi#-lam# sza# la na-ad-nu-szum 
6. is,-ba-at 
7. wa-ar-ka-tam pu-ru-us2-ma 
8. {disz}a-hu-szi-na 
9. _dumu_ e-tel-li-ia 
10. sza _dumu_ dumu-{d}mar-tu 
11. a-na _{kusz}usan3_ is,-ba-tu 
12. wu-usz-sze-er 
$ single ruling 


Primary publication: AbB 13, 047
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 088574
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510766
Transliteration:
&P510766 = AbB 13, 047 
#atf: lang akk 
@tablet 
@obverse 
1. [a-na] {d}suen#-i-din#-[nam] 
2. qi2#-bi2-[ma] 
3. [um]-ma# ha-am-mu-ra-pi2#-[ma] 
4. [{disz}{d}]suen#-sze-me-e _dumu_ {d}suen#-[...] 
5. [ki-a]-am# u2-lam-mi-da-an#-[ni] 
6. [um-ma] szu-[ma] 
7. [x x] su2#-un-qi2-im i-na ki# [...] 
8. [x x x] {d}utu-dingir [...] 
9. [x x x] _sze_ id-di-nam# [...] 
10. [...] x [...] 
$ rest broken 
@reverse 
$ beginning broken 
1'. [...] x x x [...] 
2'. [...] {d}utu-dingir x [...] 
3'. [isz-pu]-ru-ni-isz#-[szum] 
4'. [tup]-pa#-szu a-mu-ur#-[ma] 
5'. [szum]-ma tup-pu-um szu#-[u2-um] 
6'. [ki]-ma# s,i#-im-da-tim# [(x) (x)] 
7'. [...] x x [...] 
$ rest broken 


Primary publication: AbB 13, 048
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 094588
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510767
Transliteration:
&P510767 = AbB 13, 048 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}suen-i-din-nam qi2-bi2#-ma 
2. um-ma ha-am-mu-ra-pi2-ma# 
3. a-nu-um-ma ig-mil-{d}suen _dumu_ puzur4-{d}utu 
4. u3 na-bi-ia-tum _ra2-gaba#_ 
5. a-na nam-ri-ia-tim sza larsa{ki} 
6. _nig2-szu_ {d}na-bi-um-ma-lik 
7. ma#-ha-ri-im 
8. u2-wa-e-ra-am-ma# at,#-t,ar-dam# 
9. u3 {d}utu#-ha-zi-ir _sa12-du5_ at,#-t,ar-dam 
10. i-nu-ma is-sa3-an-qu2#-ni#-ik-kum 
$ rest broken 
@reverse 
$ beginning broken 
1'. ki#-ma# x x [...] 
2'. ap-la-szu-[nu-ti-ma] 
3'. szu-ta-as,-bi-ta-szu-nu-ti# 
4'. u3 ka-ni-ik nam-ri-a-tim# 
5'. sza tu-pa-aq-qa2-du-szu-nu-szi#-im 
6'. i-na ku-nu-uk-ka#-ti#-szu-nu 
7'. szu-uk-ni-ka-szu#-[nu]-ti#-ma 
8'. a-na ma-ah-ri-ia 
9'. szu-bi-la-nim# 
$ single ruling 


Primary publication: AbB 13, 049
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 095499
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510768
Transliteration:
&P510768 = AbB 13, 049 
#atf: lang akk 
@tablet 
@obverse 
1. [a-na] ha-ia-ab-ni-dingir 
2. {disz}{d}marduk-na-s,i-ir 
3. {disz}ku-ub-bu-tum 
4. u3 ARAD-{d}utu 
5. qi2#-bi2-ma 
6. [um]-ma sa-am-su-i-lu-na-ma# 
7. i-na _erin2_ bi-ir-tim 
8. _erin2_-am lu-up-ta-ma 
9. _sze#_-am sza _e2_ t,a3-ab-e-li#-ma#-[tim] 
10. u3 _e2_ nu-ur2-a-li#-[szu] 
11. li#-ip-pu-s,u2 
12. [u3] a-na _guru7_ li-sze-ri-bu# 
$ single ruling 


Primary publication: AbB 13, 050
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 094169
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510769
Transliteration:
&P510769 = AbB 13, 050 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}suen-i-din-nam# 
2. _kar_ zimbir#[{ki}] 
3. u3 _di#-ku5#-mesz_ zimbir#[{ki}] 
4. [qi2]-bi2-[ma] 
5. [um-ma] a-bi-e-szu-uh-ma 
6. [x x x] NI? _dumu e2-dub-ba-a_ x x NI _aga-us2_ 
7. [x x x (x) x] _3(esze3) GAN2_ e-li# zimbir{ki} 
8. [x x x x] a-me-er-ta#-[szu] 
9. i-mu#-ur# [(x)] 
10. wa-ar#-[ka-at x x] a-me-er-ti#-[szu] 
11. pu-[ur]-sa-ma# 
12. szum-ma [x x x]-ti# i-mu#-ur# 
13. a-na [...] 
14. [x x x x (x)] ma-am-ma-an 
15. [x x (x) (x)] x-di-in# [(x)] 
16. [x (x)] la e-ri-[x x] 
@reverse 
1. [x (x)] di-i-x 
2. re-sza-am# u2-ka-al# 
3. t,e4-ma-am szu-up#-ra#-nim# 
$ single ruling 


Primary publication: AbB 13, 051
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 094197
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510770
Transliteration:
&P510770 = AbB 13, 051 
#atf: lang akk 
@tablet 
@obverse 
1. a-na ib-ni-{d}marduk 
2. {disz}{d}suen#-i-din-nam 
3. _kar_ zimbir{ki} 
4. u3 _di-ku5-mesz_ zimbir{ki} 
5. qi2-bi2-ma 
6. um-ma a-bi-e-szu-uh-ma 
7. {disz}na-bi-{d}utu _sza13-dub-ba sza3 e2-gal_ 
8. a-na# u2-nu#-ti#-[im] 
9. [sza] i-na _e2-gal_ zimbir#{ki#} [(x) (x)] 
10. sza-ak-na-at 
11. pa-qa2#-di-im 
12. isz-pu#-ra#-am 
13. a-na u2-nu-tim# szu#-a-ti pa-qa2-di 
14. {disz}na-bi#-{d}[...] 
15. u3 {d}na-bi-um-na-s,i-[ir] 
16. [x] x IZ u2-nu-tim 
@reverse 
1. u2-[wa]-e-ra-am-ma# 
2. at,-t,ar-dam# 
3. ki#-ma is-sa3-an-qu2-ni-ik-ku-nu-szi-im 
4. at#-tu-nu it-ti-szu-nu i-zi-iz-za 
5. u2-nu-tam szu-a-ti# szu#-up-qi2-da-ma 
6. t,e4-ma#-[am szu-up-ra]-nim# 
$ single ruling 


Primary publication: AbB 13, 052
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 094199
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510771
Transliteration:
&P510771 = AbB 13, 052 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}suen#-i-din-nam# [(x) (x)] 
2. _kar#_ zimbir{ki} u3 _di-ku5-mesz_ zimbir{ki} 
3. qi2#-bi2-ma 
4. um-ma a-bi-e-szu-uh-ma 
5. _ansze hi-a_ a-na gi-ir-ri-im ih-ha-asz-hu-ma 
6. _lu2#-mesz kar hi-a dusu2 hi-a_ <a>-na sza-mi-im i-si-hu 
7. [u3 ku]-nu#-ti ki-ma _lu2-mesz kar hi-a_ 
8. _[2(u)] ma#-na# ku3#-babbar sa10#_ 1(disz) szu#-szi _dusu2# hi-a_ 
9. _ansze# 1(disz)-e 1/3(disz) ma-na#-ta_ 
10. a-na sza-mi-im# i-si#-hu#-ku-nu-ti# 
11. 1(disz) _szu-i_ at,-t,ar-dam 
12. ki-ma is-sa3-an-qa2-ak-ku-nu-szi-im 
13. 2(disz) _lu2-mesz_ we-du-tim a-na babila2{ki} 
14. t,u2#-ur-da-nim 
15. _[2(u)?] ma#-na# ku3#-babbar sa10 ansze hi#-a_ 
@reverse 
1. li#-il#-qu2-ni-ik-ku-nu-szi-im 
2. a-di _lu2-mesz_ ta#-t,a-ar-ra-da-nim-ma 
3. _ku3-babbar_ i-le#-eq#-qu2-ni-ik-ku-nu-szi-im 
4. _ansze hi-a_ dam-qu2-tim# da-an-nu-tim 
5. a-di _iti sze-sag11-ku5 u4 1(u) 4(disz)-kam#_ x [x] x x 
6. re-esz gi-ir-ri-im# [li-ki]-lu# 
7. i-na# _iti# x x u4 1(u) 4(disz)# [n-kam_ ...] 
8. _dusu2# [hi-a_ x x (x)] x x x [(x) (x)] 
9. _ansze 1(disz)-e 1(disz) ma-na ku3-sig17_ 
10. u2-sza#-asz-qa2-lu-ku-nu-ti 
$ single ruling 

Primary publication: AbB 13, 053
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 096586
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510772
Transliteration:
&P510772 = AbB 13, 053 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}mar-tu-illat-ti 
2. qi2-bi2-ma 
3. um-ma {d}ri-im-{d}suen-ma 
4. a-na na-me-er-ti ia-mu-ut-ba-lum{ki} 
5. sza-ka-nim u3 ni-szi-szu 
6. sa3-ap-ha-tim pu-uh-hu-ri-im 
7. _dingir gal-gal-e-ne_ i-na ke-esz 
8. _iri{ki}_ ba-ni-ti-ia isz-di _gu-za_-ia 
9. u2-ki-in-nu 
10. ki-ma ma-tum ka-lu-sza 
11. isz-mu-u2-ma ih-du-u2 
@reverse 
1. u3 il-li-ku-nim-ma 
2. it-ti-ia in-na-am-ru 
3. u3 at-ta al-kam-ma 
4. it-ti-ia na-an-me-er 
5. tup-pi2 i-na# a-ma-ri-im 
6. al-kam-ma it-ti-ia 
7. na-an-me-er# szu-um-ka 
8. ra-bi#-isz# a-za-ka-ar 
9. {disz}{d}[x-x-(x)]-li#-we-er s,u2-ha-ra-am 
10. sza [i-na x-x]{ki} u2-sze-ni-qu2-szu 
11. t,u2-ur#-dam# 
$ single ruling 


Primary publication: AbB 13, 054
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 028470
Accession no.: 
Provenience: 
Excavation no.: 
Period: Early Old Babylonian (ca. 2000-1900 BC)
Dates referenced: Sumu-abum.00.00.00
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510773
Transliteration:
&P510773 = AbB 13, 054 
#atf: lang akk 
@tablet 
@obverse 
1. a-na li-pi2-it-esz18-dar 
2. u3 lu2-{d}ba-ba6 qi2-bi2#-ma# 
3. um-ma a-hu-um-ma 
4. _1(disz) gu4_ ka-ab-ra-am 
5. KU? BU? ri-am 
6. _6(asz) gur nig2-gu7_ 
7. sza szu-uh2-mu#-t,i3-im 
@reverse 
1. ku-nu-ki# i-na a-ma#-ri#-ku-nu 
2. li-ih-mu-t,u2-ni-im 
3. _u4_-ra-am 
4. lu-mu-ur 
$ single ruling 


Primary publication: AbB 13, 055
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 028472
Accession no.: 
Provenience: 
Excavation no.: 
Period: Early Old Babylonian (ca. 2000-1900 BC)
Dates referenced: Sumu-abum.00.00.00
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510774
Transliteration:
&P510774 = AbB 13, 055 
#atf: lang akk 
@tablet 
@obverse 
1. [a]-na# li-pi2-it-esz18-dar 
2. {disz}lu2-{d}ba-ba6 
3. u3 qi2#-isz#-{d}ma-ma# 
4. qi2-bi2#-ma 
5. um-ma a-hu-um-ma 
6. _{disz}dumu#_ ki#-ir-ki-ri-im# 
7. di-nam# sza# _ka2_ {d}szara2 
8. sza# at#-tu-nu 
9. tu-sza-hi-za-szu 
10. i-na-di#-i-ma 
11. i-nu#-ma i-la-kam 
12. [x x] x x-tim 
$ rest broken 
@reverse 
$ beginning broken 
1'. _sze-gesz-i3_ szu-ri-ba-a 
2'. sza-ni-tam2 
3'. asz-szum {disz}hu-nu-bi-im 
4'. sza ta-asz-pu-ra-ni-im 
5'. _sze_-a-am i-pi2-ir-szu 
6'. pa-ni-a-am-ma 
7'. id-na-a-szum 
8'. la ta-pa-ra-sa3 
9'. 2(disz) tu-ha-la-tim 
10'. sza# su2-lu-pi2-i 
11'. [i-na] _u4_-ma-ka-al 
12'. [u3 x] _gur_ ta-ra-tim 
13'. li#-ta-di-nu-u2 


Primary publication: AbB 13, 056
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 028491
Accession no.: 
Provenience: 
Excavation no.: 
Period: Early Old Babylonian (ca. 2000-1900 BC)
Dates referenced: Sumu-abum.00.00.00
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510775
Transliteration:
&P510775 = AbB 13, 056 
#atf: lang akk 
@tablet 
@obverse 
$ beginning broken 
1'. x x [...] 
2'. li-ki-in-szum# 
3'. szum-ma la u2-ki-in 
4'. a-ra#-an#-szi-na <<ti>> 
5'. lu-mi-is#-si2-na#-[ti] 
6'. u3 ku-nu-ka-a-tim# 
7'. sza ta-ak-nu-ku 
8'. ba-ab qa2-a-ti-szi-na 
9'. szu-ut,-ra-am-ma 
10'. szu-bi-lam 
@reverse 
1. sza-ni-tam2 
2. ku-nu-kam 
3. asz-szum {disz}dumu-a-la-li-im 
4. re-esz-ta-am-ma 
5. la a-t,a2-ra-da-asz-szu 
6. ku-nu-kam u2-sza-bi-la-kum# 
7. i-nu-ma szu-u2 
8. i-li-kam 
9. [x x] x x x x i szum 


Primary publication: AbB 13, 057
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 028497
Accession no.: 
Provenience: 
Excavation no.: 
Period: Early Old Babylonian (ca. 2000-1900 BC)
Dates referenced: Sumu-abum.00.00.00
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510776
Transliteration:
&P510776 = AbB 13, 057 
#atf: lang akk 
@tablet 
@obverse 
1. a-na lu2#-{d}ba#-[ba6] 
2. {disz}qi2-isz-{d}ma-ma# [(x)] 
3. {d}suen-i-qi2-sza-am 
4. u3 ZA-ra-qi2 
5. qi2-bi2-ma 
6. um-ma a-hu-um-ma 
7. a-na mi-ni-im 
8. _i3-gesz_ sza _dam-gar3_-ri 
9. qa2#-al-la-am 
10. ta-am-hu-ra-ma 
@reverse 
1. _i3-gesz_ 
2. tu-qa2-li-la 
3. szu-up-ra-szu-nu-ti-ma 
4. _i3-gesz_ 
5. li-da-mi-qu2 
6. sza-ni-tam2 
7. {disz}dingir-dingir-sze-me-a 
8. _ku3-babbar_-ap i x e 
9. a-na s,e-ri-ia# 
10. li-ib-lam 
$ 0-2 lines broken 

Primary publication: AbB 13, 058
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 028524
Accession no.: 
Provenience: 
Excavation no.: 
Period: Early Old Babylonian (ca. 2000-1900 BC)
Dates referenced: Sumu-abum.00.00.00
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510777
Transliteration:
&P510777 = AbB 13, 058 
#atf: lang akk 
@tablet 
@obverse 
1. a-na li#-pi2#-it-esz18-[dar] 
2. u3 lu2-{d}[ba]-ba6 
3. qi2-bi2-[ma] 
4. um-ma a-hu#-um#-ma 
5. a-nu#-um#-ma# 
6. a-wi-[lam] 
7. sza {disz}{d}suen#-[i]-qi2#-sza#-[am] 
8. s,u#-ud#-di-a-szu-ma# 
9. _[n] gur# sze_-a-am 
10. id#-na-szum# 
11. ma-ha-ar 
12. {disz}li-pi2#-it-esz18-dar 
13. a-ka-lam li-ku-ul 
@reverse 
1. bi-it i-me-ri 
2. pi2-iq-da-szu 
3. _5(bur3) GAN2 a-sza3_ 
4. i-na _a-sza3_ a-ku-ul-s,i2-la#-al# 
5. a-szar dam-qu-ma 
6. szum-ma al-pu-szu 
7. i-ba-szu-u2 li-ri-szu# [(x)] 
8. szum#-ma la i-ba-szu-u2 
9. i-na# al-pi2 sza _e2-gal#_-lim# 
10. er-sza-szu-ma# 
11. u3 bi#-ta-am 
12. a-sza-ar dam-qu2#-szu 
13. szu-uk#-na# 
14. ki-ma sza a-na#-ku 
@left 
@column 1 
1. wa-asz-ba-ku# 
2. li-ba-szu 
@column 2 
1. t,i3#-ib-ba 
$ single ruling 


Primary publication: AbB 13, 059
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 085324
Accession no.: 
Provenience: 
Excavation no.: 
Period: Early Old Babylonian (ca. 2000-1900 BC)
Dates referenced: Sumu-abum.00.00.00
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510778
Transliteration:
&P510778 = AbB 13, 059 
#atf: lang akk 
@tablet 
@obverse 
1. [a]-na lu2-{d}ba-ba6 
2. qi2-bi2-ma 
3. um-ma a-hu-um-ma# 
4. bi-ri-it 
5. ku-ba-tim{ki} 
6. sza-ku#-ru#-ti-szu{ki} 
7. u3 sza x-{d}suen{ki} 
8. x-UB#-tum sza-ki-in 
9. i-na qa2-ti ri-ig-mi-im 
10. ra-ab-bu-um-ma 
11. qa2-qa2-di x x x x 
12. ri#-ig-mu#-um# an-ni-a-am 
13. ki-ma a-na x x x{ki#} 
14. szar-ru-[um] 
15. u2-ZA-x [...] 
16. u2-x [...] 
17. DI? x [...] 
18. x ti [...] 
19. i-na ZA? x [...] 
@reverse 
1. u2-ZI-[(x) x] 
2. sza-al-ma# 
3. qa2-du-um mi-im-ma# 
4. sza il-qu2-u2 
5. s,u2#-ub-bi-su2-nu#-ti#-ma 
6. szu-up-ra-am 
7. szum-ma# x (x) umma{ki} 
8. a-x-[(x)]-u2-ma 
9. x-x-ma-da-am-ma 
10. szu#-up#-ra#-am# 
11. x-ri u2-ul x-ZI-i-ma 
12. x x ma-ri-ia 
13. x x x ni-mi-id 
14. x x-ti-ma 
15. x x x-ka-ma 
16. szar-ru-um 
17. i-sza-al-ka 
$ single ruling 

Primary publication: AbB 13, 061
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 079470
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510779
Transliteration:
&P510779 = AbB 13, 061 
#atf: lang akk 
@tablet 
@obverse 
1. asz-szum _1/3(disz) gin2 ku3-babbar_ 
2. sza qa2-ti-ka 
3. szu-bu-lim asz-pu-ra-ak-kum-ma 
4. um-ma at-ta-ma 
5. a-na zimbir{ki} a-al-la-ak-ma 
6. a-na ta-ri-ba-at-{d}suen 
7. a-na-ad-di-in 
8. sza ta-asz-pu-ra-am 
@reverse 
1. i-na-an-na tup-pi2 usz-ta-bi-la#-ku 
2. _1/3(disz) gin2 ku3-babbar_ i-di-isz-szum 
3. ka-ni-ka-ti-ka li-qe2 
4. a-na la ma-at-ti 
5. it-ti-ia la te-ze-ni 
6. s,u2-ha-ri ri-qu2-us-su 
7. la tu-ta-ar-ra-asz-szu 
$ single ruling 


Primary publication: AbB 13, 062
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 079472
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510780
Transliteration:
&P510780 = AbB 13, 062 
#atf: lang akk 
@tablet 
@obverse 
1. a-na ib-ni-{d}iszkur 
2. qi2-bi2-ma 
3. um-ma ta-ri-ba-tum-ma 
4. a-na-ku u3 at-ta 
5. an-ni-ki-a-am 
6. ki ni-id-bu-ub 
7. ki-a-am aq-bi-kum 
8. um-ma a-na-ku-ma 
9. an-ni-a-am e-pu-usz-ma 
@reverse 
1. i ni-da-ri-ir-ma 
2. u3 _szuku_ i ni-ir-szi 
3. isz-tu-ma aq-bi-kum-ma 
4. la ta-am-gur-an-ni 
5. szar-rum a-na zimbir!(|UD.KIB|){ki} 
6. i-la-kam i-s,a-ba-at-ka 
7. u2-ul a-wa-ti 
8. asz-szum aq-bu-kum-ma 
9. la ta-am-gur-an-ni 
10. a-na sza i-mi-ri 
$ single ruling 
@left 
@column 1 
1. la ta-la-ak 
@column 2 
1. _u4_-ma-ti-ka 
2. im mu ul lu 


Primary publication: AbB 13, 063
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 079487
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510781
Transliteration:
&P510781 = AbB 13, 063 
#atf: lang akk 
@tablet 
@obverse 
1. a-na a-wi-le-e 
2. qi2-bi2-ma 
3. um-ma {d}marduk-la-ma-sa3-szu-ma 
4. {d}utu u3 {d}marduk da-ri-isz _u4_-mi li-ba-al-li-t,u2-ku-nu-ti 
5. lu sza-al-ma-tu-nu lu ba-al-t,a-tu-nu 
6. _dingir_ na-s,i-ir-ku-nu re-esz-ku-nu a-na da-mi-iq-tim 
7. li-ki-il 
8. a-na szu-ul-mi-ku-nu asz-pu-ra-am 
9. szu-lum-ku-nu ma-har {d}utu u3 {d}marduk 
10. lu da-ri 
11. i-na tup-pi2 szar-ri-im 
12. asz-szum ma-an-nu-um-ba-lum-i3-li2-szu 
13. u3 ARAD-ku-bi 
14. _szitim-mesz_ sza ma-ah-ri-ku-nu 
15. a-na# babila2{ki} t,a-ra-di-im 
@reverse 
1. isz-sza-ap-ra-am 
2. 1(disz) _aga-us2-sag_ 
3. u3 _lu2#_ mu-ka-al-li-ma-am 
4. a-na ma-ah-ri-ku-nu it-ta-al-ku-nim 
5. {disz}ma-an-nu-um-ba-lum-i3-li2-szu 
6. u3 ARAD-ku-bi _szitim-mesz_ szu-nu-ti 
7. t,u2-ur-da-nim-ma 
8. a-na babila2{ki} lu-ut,-ru-us-su2-nu-ti 
$ single ruling 


Primary publication: AbB 13, 064
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 079488
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510782
Transliteration:
&P510782 = AbB 13, 064 
#atf: lang akk 
@tablet 
@obverse 
1. {d}marduk ra-i-im-ka szu-ma-am dam-qa2-am 
2. sza ta-ra-am-mu la-ma-as-si2 qa2-be2-e 
3. u3 ma-ga-ri-im asz-szu-mi-ia 
4. li-isz-ru-ka-ak-kum 
5. tup-pa-ka sza tu-sza-bi-lam esz-me 
6. la-ma ta-sza-ap-pa-ra-am-ma 
7. i-na pu-uh2-ri-im ma-har a-wi-le-e 
8. ad-da-bu-ub u3 ki-ma tup-pa-ka esz-mu#-[u2] 
9. ma-har a-wi-le ad-bu-um-ma 
10. tup-pi2 pu-uh2-<ri>-im sza a-wi-[le-e] 
11. 1(disz) tup-pu a-na {d}suen-x-[...] 
12. {disz}a-pil2-i3-li2-szu# [x x] 
13. u3 ib-ni-{d}marduk x [x x] 
@reverse 
1. u3 1(disz) tup-pu a-na a-ba-zum su-hu# [(x)] 
2. ud-da-an-na-nam-ma i-il-la-kam [(x)] 
3. at-ta a-na _a-sza3_-im szi-ip-ri-im 
4. la e-pe2-szi-im i-na pu-uh2-ri#-[im] 
5. ne-me-et-tam-ma ri-ta-asz-szi [(x) (x)] 
6. a-na-ku i-na _iti NE-NE-gar u4 2(u)-kam_ 
7. asz-szum di-ib-ba-at _pa5_ nam-kar-ri-[im] 
8. sza a-wi-lim {d}nanna-ma-an-szum2 _dub#-sar#_ 
9. a-wi-lim be-li2 iq-bi-a-am-ma 
10. a-na _iri_ gu2-du3-a SZI DI? usz-te-sze-er 
11. _a-sza3_ szu-u2 lu-u2 e-ri-isz 
12. te-le-eq-qi2 a-di sza-pa-a-tum# 
13. i-sa-an-ni-qa2-ni-ik-kum 
14. ne-me-de-tim ri-ta-asz-szi 


Primary publication: AbB 13, 065
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 079491
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510783
Transliteration:
&P510783 = AbB 13, 065 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}nanna-tum 
2. qi2-bi2-ma 
3. um-ma KA-{d}utu-ma 
4. {d}utu u3 il!(AL)-ka 
5. li-ba-al-li-t,u2-ka 
6. u2-ul ti-de-e 
7. ki-ma _ku3-babbar e2-gal_ 
8. u3 s,i2-ib-tam 
9. i-ka-s,a-ru 
10. ta-ah-ta-ab-la-an-ni 
@reverse 
1. gi-ir-ru-um 
2. ka-lu-szu it-ta-s,i2 
3. i-ia-ti ta-sza-la-an-ni 
4. u3 pi4-sza-da-nu tap-pe2-e 
5. i-na mu-hi-ia 
6. isz-ta-na-as2-si 
7. a-la-ka-am-ma 
8. ki-ma la a-hi at-ta 
9. e-pu-usz-ka [(x)] 
10. _tug2# hi-a_ sza# aq-ba-ku 
11. [sza]-tu-ni-kum la tu-ta#-ar 


Primary publication: AbB 13, 066
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 079492
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510784
Transliteration:
&P510784 = AbB 13, 066 
#atf: lang akk 
@tablet 
@obverse 
1. a-na a-bi-ia sza _{d}marduk_ u2-ba-al-la-t,u2-szu 
2. qi2-bi2-ma 
3. um-ma ib-ni-_{d}marduk_-ma 
4. _{d}utu_ u3 _{d}marduk_ li-ba-al-li-t,u2-ka 
5. asz-szum _geme2_ i-na-sza-mi-ri-sza-AM sza a-bi at-ta 
6. tu-szi-ra-asz-szi-ma ta-ad-di-na-asz-szi 
7. a-na i-di-sza a-na be-el-ti-sza ka-ni-ki sza ar-hi-isz e-zi-bu 
8. a-di a-la-ki-ka ar-ki!-i 6(disz) _u4_-mi ir-ru-sza i-sza-ru 
9. 2(disz) _u4_-mi is,-ne2-e-ma i-na _e2_-ti {d}na-bi-um-mu-sza-lim# 
10. u2-szi-ib 8(disz) _u4_-mi ma-ra-ka tu-sza-x [(x)] 
11. isz-tu i-na ma-ah-ri-ia a-bi at-ta 
12. a-na _zimbir{ki}_ tu-sze-sze-ru ar-ki-ka-ma 
13. isz-qu2-ma a-na _zimbir{ki}_ it-ta-la-ak 
14. ia-a-ti u2-ul u2-la-mi-da-an-ni 
15. ba-lu sza la nu ia-a-ma it-ta-la-ak 
@reverse 
1. ki-ma ra-bu-ti-ka a-bi at-ta 
2. {mi2}be-le#-es-sa3 li-is-sa3-ni-ik-ku-ma 
3. ki-ma i-na a-lim te-<esz>-te-ne2-em-mu 
4. di-na a-na be-el-ti-sza qi2-bi 
5. a-na a-wa-at a-na a-bi-ia asz-pu-ra-am 
6. ni-da-hi-im la ta-ra-asz-szi 
7. uz-na-ia ki-ma _{d}utu_ i-ba-asz-szi-a-ni-ku 
8. szum-ma at-ta lu-pu-ta-at 
9. ma-la i-qa2-ab-bu-ni-ku i-na tup-pi2-ka# 
10. szu#-t,u2#-ur-ma 
11. szu#-up#-ra-am 
12. me#-he#-er# tup-pi2-ia szu-up-ra-am 
$ single ruling 


Primary publication: AbB 13, 067
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 079498
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510785
Transliteration:
&P510785 = AbB 13, 067 
#atf: lang akk 
@tablet 
@obverse 
1. [a-na {d}...]-re#-me-ni# 
2. qi2#-bi2-ma 
3. um-ma {d}utu-a-ia-ba-asz-ma 
4. a-hu-ka-a-ma 
5. {d}utu u3 {d}marduk 
6. li-ba-al-li-t,u2-ka 
7. asz-szum t,e4-em _a-sza3_-im 
8. sza ki-a-am ta-asz-pu-ra-am 
9. um-ma at-ta-a-ma 
10. _2(bur3) GAN2 a-sza3_ e-ri-isz 
11. _2(bur3) GAN2 a-sza3#_ e-te-ri-isz 
12. u3 szu-up#-ra-am-ma 
13. sza# ki#-ma# ru-di-im# 
@reverse 
1. [lu]-re-di# 
$ single ruling 


Primary publication: AbB 13, 068
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 079587
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510786
Transliteration:
&P510786 = AbB 13, 068 
#atf: lang akk 
@tablet 
@obverse 
1. [a-na ...] sza {d}marduk# [u2-ba-(al)-la?-t,u2-szu] 
2. [qi2]-bi2#-ma 
3. [um-ma {d}...]-i-din-nam-ma 
4. [{d}utu u3 {d}]marduk# da-ri-isz _u4_-mi li-ba-li-t,u2-ka# 
5. lu sza#-al-ma-ta 
6. _5(disz) gin2 ku3-babbar_ ak-nu-uk-ma 
7. a-na ma-ah-ri-ka 
8. usz-ta-bi-lam 
9. sza _3(disz) gin2# ku3-babbar ha-za-nu-um{sar}_ 
10. sza _2(disz) gin2 ku3-babbar gar3-szum{sar}_ 
11. ki-ma i-na _iri_-ka i-il-la-ku 
12. sza-ma-am-ma 
13. i-na ku-nu-uk-ki#-ka# ku-un-kam-ma 
14. szu-bi-lam# 
$ single ruling 
@reverse 
$ blank space 


Primary publication: AbB 13, 069
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 079805
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510787
Transliteration:
&P510787 = AbB 13, 069 
#atf: lang akk 
@tablet 
@obverse 
1. a-na ARAD-{d}suen 
2. qi2-bi2-ma 
3. um-ma a-wi-il-{d}na-bi-um-ma 
4. {disz}mu-ti-dingir at,-t,ar-dam 
5. _5(disz) gin2 ku3-babbar sza3 1(u) 8(disz) gin2 ku3-babbar_ 
6. sza qa2-ti-ka 
@reverse 
1. a-na si-iz-za-tum 
2. i-di-in 
$ single ruling 


Primary publication: AbB 13, 070
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 079823
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510788
Transliteration:
&P510788 = AbB 13, 070 
#atf: lang akk 
@tablet 
@obverse 
1. {d}marduk ra-im-ka 
2. asz-szu-mi-ia li-la-bi-ir-ka 
3. _x x-mesz_ kal-bu ze-nu-u2 
4. a-na la sza-al-mi it-ti a-hi-ia ka-ta 
5. uz-za-an-nu-ni-in-ni 
6. esz-te-me 
7. i-nu-ma a-hi at-ta sza#-ap#-ti#-ia# 
8. te-esz-te-mu#-u2 
9. pa-ni-ia la# ta#-[...] 
10. a-na mu-x x x [...] 
11. asz-szu a-hi at#-ta# 
@reverse 
1. la ta-qa-ab#-[bu-u2] 
2. i-na-an-na x-ma x i-la-x [...] 
3. x ru x 
4. iq#-bu#-nim# 
5. x [x] x KA x x [(x)] 
$ single ruling 


Primary publication: AbB 13, 071
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 079826
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510789
Transliteration:
&P510789 = AbB 13, 071 
#atf: lang akk 
@tablet 
@obverse 
1. be#-li2 {d}na-bi-um# asz-[szu]-mi#-ia# 
2. li-ba-al-li-it,#-ka 
3. tup-pa#-ka sza tu-sza-bi-lam esz-me 
4. szum#-ma# _e2 gu4_ u3 _a-sza3_ sza ad-di-na#-ak#-kum 
5. [i]-in#-ka la ma-ah-ru 
6. _x-mesz_ szu-nu-ti u3 _a-sza3_-am 
7. a-na# x x-ki-in-numun 
8. u3 x x x (x) pi2-qi2-id-ma 
9. _sze_ sza _gu2#-un#_ ma-la u2-sze-el-lu-nim 
10. li#-sze#-lu-nim 
@reverse 
1. i-dam la tu-sza-ar-sza 
2. da-ba-ba-am la tu-na-as-sa3-aq-ma 
3. ri-t,i-ib-tum la it-ta-as,-s,i2 
4. u3 szu-nu ne-me-et-tam la i-ra-asz-szu-u2 
5. asz-szum# _siki# hi-a_ sza ta-asz-pu-ra-am 
6. a-wi-lum {d}suen-im-gur-an-ni um-ma szu-ma 
7. _dam-gar3-mesz_ wa-szi-ib zimbir{ki} 
8. ki#-ma# ka-ta-ma ia-szi-im u2-wa-du-nim# 
9. s,e-eh-he-ru-ti-szu-nu a-na _siki hi-a_ it,-ru-du-nim 
10. am-mi-ni ki-ma ka-ta tup-pa-szu-nu 
11. a-na ia-szi-im la u2-sza-bi-lu-ma 
12. x x x [x (x)] x _tug2 hi-a_ 
13. x [...] x 
14. [...] x x x 
@left 
1. [...] x x x x x 

Primary publication: AbB 13, 072
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 079858
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510790
Transliteration:
&P510790 = AbB 13, 072 
#atf: lang akk 
@tablet 
@obverse 
1. {disz}{d}suen-i-din-nam# i-na babila2{ki} 
2. _1(disz) 1/2(disz) gin2 ku3-babbar_ a-na _sze_-e sza-mi-im 
3. a-na _ka2#_ ka-re-e id-di-in-ma 
4. a-di-ni _sze_-am u2-ul i-le-eq-qe2 
5. i-na-an-na _szuku_ i-na zimbir{ki} 
6. u2-ul i-szu-ma ud-da-ab-bi-ba-an-ni 
7. _1(asz) sze gur {gesz}ban2_ {d}marduk i-na _e2_-ti 
8. a-wi-lum i-na-pa-le-szu _masz2-szu-gid2-gid2_ 
9. ma#-ah-ri-ka li-id-di-in-szu 
@reverse 
1. u3 _e2_-ta i-na ku-nu-uk-ki-szu 
2. li-ik-nu-uk 
3. asz-szum _{gesz}ma2-gur8!(TE)_ sza aq-bu-kum 
4. a-na ib-na-tum _ma2-lah5_ 
5. qi2-bi-ma ar-hi-isz 
6. li-isz-qa2-al-pi2-a-am-ma 
7. a-na zimbir{ki} lu-usz-qa2-a 
$ single ruling 


Primary publication: AbB 13, 073
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 079864
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510791
Transliteration:
&P510791 = AbB 13, 073 
#atf: lang akk 
@tablet 
@obverse 
1. i-nu-ma i-na zimbir#{ki} 
2. nu-usz-ta-tu-u2 
3. asz-szum _siki_ sza _gu2-un a-sza3_-ia 
4. aq-bi-kum-ma 
5. ki-a-am ta-aq-bi-a-am 
6. um-ma# at-ta-ma 
7. ki#-ma# a-na babila2{ki} 
8. a-na _ezem KI-SAR_ 
9. a-al-li-a 
@reverse 
1. a-la-aq-qi2-a 
2. an-ni-tam ta-aq-bi-a-am 
3. i-na babila2{ki} 
4. re-szi-ka asz-szi-a 
5. u2-ul a-mu-ur-ka 
6. _siki_ ma-la tu-sza-ab-ba-lam 
7. a-na ha-am-ri-in-bi-sin 
8. i-di-in 
9. u3 ze-eh-pa-ka 
10. szu-bi-lam 


Primary publication: AbB 13, 074
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 079884
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510792
Transliteration:
&P510792 = AbB 13, 074 
#atf: lang akk 
@tablet 
@obverse 
1. [a]-na um-mi#-ia# u3 be-el-ti-ia 
2. qi2#-bi2-ma 
3. um#-ma ma-la-ku-ma ma-ru-ki-ma# 
4. [{d}utu u3] {d}marduk asz-szu-mi-ia 
5. [da]-ri-isz _u4_-mi-im 
6. li-ba-al-li-t,u3-ki 
7. sza-al-ma-ku 
8. i-na ha-la-ab 
9. [wa-asz]-ba-a-ku 
@reverse 
1. [asz-szum] s,u2#-ba-ti-im ta-qa2#-bi#-szum 
2. [n] s,u2#-ba-ti a-na pa-ni-ia 
3. li#-ir-di 
4. u2-ul ti-de-e 
5. a-na ka-szi-im-ma 
6. ta#-ak-la-ku 
7. tup#-pi2 ar-ki-i 
8. [x] x-re-e 
9. [x] x-ri-im 
10. [isz]-te-mu-u2 
@left 
$ broken 


Primary publication: AbB 13, 075
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 079888
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510793
Transliteration:
&P510793 = AbB 13, 075 
#atf: lang akk 
@tablet 
@obverse 
1. [a-na] {d}marduk-ni-szu 
2. [qi2]-bi2-ma 
3. um#-ma {d}marduk-na-s,ir-ma 
4. {d}utu li-ba-al-li-it,-ka 
5. tup-pa-ka sza tu-sza-bi-x x 
6. a-na um-mi-ka aq-bi 
7. x-ka u2-ka-al-li#-mu-ni-in-ni-ma 
8. i-nam u2-ul 
9. ma-hi-ir-ma 
10. isz-tu t,e4-ne-e-em 
11. ma-ah-ri-im 
12. u2-ul u2-sza-bi-la-ak-kum 
13. i-na-an-na-ma 
14. _erin2#_-ka ip-ta-ar-ka 
15. [u2]-sza-ab-ba-la-ak-kum 
16. [1(disz)] s,u2#-ha-ar-tam _sag-geme2_-ka 
17. [a-t,ar-ra]-da#-ak-kum 
18. [x x x x] x x-_mesz_ 
19. [sza ta-asz]-pur-am 
20. [a-t,ar]-ra#-da-ak-kum 


Primary publication: AbB 13, 076
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 079892
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510794
Transliteration:
&P510794 = AbB 13, 076 
#atf: lang akk 
@tablet 
@obverse 
1. a-na a-wi-lim sza {d}marduk# u2-ba-al-la-t,u2-szu# 
2. qi2#-bi2#-ma 
3. um#-ma# geme2-x-x-tum-ma 
4. {d}utu# u3 {d}marduk li-ba#-al#-li-t,u2-ka# 
5. lu sza#-al#-ma-ta lu ba#-al#-t,a-ta# 
6. _dingir_ na-s,i#-ir-ka re-esz-ka a-na da-mi#-iq#-tim 
7. li-ki-il 
8. a-na szu-ul-mi-ka asz-pu-ra-am 
9. szu-lum-ka ma-har# {d}utu u3 {d}marduk 
10. lu da#-ri# 
11. asz-szum zimbir{ki}-li-wi-ir 
@reverse 
1. sza u2-na-ah-i-du-ka 
2. ki-a-am aq-bi-a-kum 
3. um-ma a-na-ku-ma 
4. {disz}zimbir{ki}-li-wi-ir szu-a-ti 
5. szu-pu-ur a-na ma-ah-ri-ka# 
6. li-qe2-er-ri#-bu-ni-ik-ku-usz-szu 
7. t,e4-ma#-am# ga-am-ra-am# 
8. szu#-up-ra-am-ma 
9. [ma]-har {d}utu u3 {d}marduk 
10. lu#-uk-ta-ar-ra-ba-ku# 


Primary publication: AbB 13, 077
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 079904
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510795
Transliteration:
&P510795 = AbB 13, 077 
#atf: lang akk 
@tablet 
@obverse 
1. asz-szum _gu2-un a-sza3_-im sza _mu_ am-mi-s,a-du-qa2 _lugal-e bad3_ am-mi-s,a-du-qa2 _ka i7 zimbir{ki}_ 
3. sza i-na qa2-ti-ka iz-zi-zu 
4. i-na li-ib-bu _1/3(disz) gin2 ku3-babbar_ te-eq-ru-ba-tum 
5. u3 _1(asz) sze gur_ ta-ad-di-nam 
6. a-na szi-ta-at-ti {disz}el-me-szum a-hi 
7. ka-ni-kam il!(AL)-qi2-a-am-ma il-li-ka-ak-ku 
8. um-ma at-ta-ma {disz}e-ri-ba-am-{d}na-na-a 
9. li-id-di-na-ak-kum a-na-ku-u2 
10. _a-sza3_-am a-na a-bi-ia ka-ta ad-di-in 
11. mi-nu-um wa-ma-tum-ma 
12. isz-tu _6(disz) kaskal gid2-da_ 
13. ri-qu2-su-u2 ta-t,a-ra-da-asz-szu 
14. i-na-an-na {disz}el-me-szum 
@reverse 
1. a-na ma-ri a-na a-bi-ia 
2. it-ta-al-kam 
3. szi-ta-at _gu2-un a-sza3_ sza sza-ad-da-<aq>-dam 
4. u3 sza-at-tam i-di-in-szum-ma 
5. ar-hi-isz a-na babila2{ki} t,u2-ur-da-asz-szu 
6. wa-ma-tam i-da-am la tu-sza-ar-sza-ma 
7. la ta-sza-pa-ra-am 
8. e-SU-ub la ia-a-ti _aga-us2-mesz_ 
9. _gu2-un a-sza3_-im sza _mu_ ub-lam 
10. i-na qa2-ti er-re-szi-im 
11. il-te-qe2-e 
$ single ruling 


Primary publication: AbB 13, 078
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 079905
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510796
Transliteration:
&P510796 = AbB 13, 078 
#atf: lang akk 
@tablet 
@obverse 
1. i-na WA-hi-tim isz-me-e-ma 
2. _ensi2-mesz_ i-na _erin2-mesz_ 
3. _sze-gesz-i3_ i-na na-pa-s,i-im szu-te-em-t,u2-u2 
4. ze2-eh-pi2 a-na ma-ah-ri-ka 
5. usz-ta-bi-lam 
6. _5(asz) sze gur_ a-na el-me-szum 
7. u3 ku-ub-bu-rum i-di-in-ma 
8. _erin2 hun-ga2_ li-gu-ru-ma 
9. _sze-gesz-i3_ li-ip-pu-SU 
10. u3 a-na-ku a-al-la-kam 
@reverse 
1. szum-ma _ku3-babbar ganba_ a-lim 
2. szum-ma _sze_-am a-na _e2-i3-dub_-szu 
3. lu-te-er 
$ single ruling 


Primary publication: AbB 13, 079
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 079906
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510797
Transliteration:
&P510797 = AbB 13, 079 
#atf: lang akk 
@tablet 
@obverse 
1. a-na gi-mil-lum 
2. qi2-bi2-ma 
3. um-ma ha-da-an-szu-li-ik-szu-ud-ma 
4. asz-szum {disz}ia-asz-ni-dingir 
5. {disz}nu-bar-ki-ba 
6. {disz}tu-ul-bi-ia 
7. u3 ah-la-an-du 
8. _4(disz) nu-{gesz}kiri6-mesz_ 
9. _nig2-szu_ pir-hi-i3-li2-szu _nu-{gesz}kiri6_ 
10. {disz}pir-hi-i3-li2-szu a-sza-al-ma 
11. ki-a-am iq-bi-a-am um-ma szu-ma 
12. i-nu-ma a-na _iri_ ba-s,um{ki} al-li-ku 
13. _nu-{gesz}kiri6-mesz_ szu-nu-ti 
14. it-ti-ia a-na ta-re-e-em aq-bi-ma 
@reverse 
1. {disz}gi-mil-lum 
2. u2-ul im-gur-an-ni 
3. a-na#-ku# i-na _iri_ ba-s,um{ki} wa-asz-ba-ku 
4. a-na _szum2{sar}_ sza i-na x-ri i-pu-szu 
5. {disz}gi-mil-lum u2-sze-s,i-szu-nu-ti-ma 
6. _2(disz) nu-{gesz}kiri6 lu2 didli_ ka-asz-szu-u2 
7. il-te-qe2-szu-nu-ti ki-a-am iq-bi-a-am 
8. szum-ma _nu-{gesz}kiri6_ szu-nu 
9. i-na zimbir{ki} ma-ah-ri-ka wa-asz-bu 
10. a-na babila2{ki} t,u2-ur-da-asz-szu-nu-ti 
11. szum-ma ki-ma iq-bu-nim 
12. _lu2 didli_ il-qe2-szu-nu-ti 
13. x qa2-du _1/2(disz) ma-na ku3-babbar_ 
14. a-na ma-ah-ri-ia szu-bi-lam 
$ single ruling 


Primary publication: AbB 13, 080
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 079911
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510798
Transliteration:
&P510798 = AbB 13, 080 
#atf: lang akk 
@tablet 
@obverse 
1. {disz}ib-ni-{d}suen# {d}suen-i-din#-nam# _dumu-mesz e2-dub-ba-a_ 
2. {disz}i-din-{d}er3-ra i3-li2-u2-sa-ti 
3. u3 gi-mil-{d}na-na-a at,-t,ar-dam 
4. _2(u) sze gur sza3 sze_ <<gur>> 
5. sza ib-ni-{d}suen u3 at-ta 
6. ta-am-hu-ra 
7. a-na ib-ni-{d}suen# {disz}{d}suen-i-din-nam# 
8. {disz}i-din-{d}er3-ra i3-li2-u2-sa-ti 
9. u3 gi-mil-{d}na-na-a i-di-in 
10. ka-ni-ik-szu li-qe2-e-ma 
11. a-na babila2{ki} szu-bi-lam 
@reverse 
1. u3 _e2-i3-dub_ sza _sze_-im 
2. at-ta u3 ib-ni-{d}marduk _dumu_ ib-ni-{d}suen# 
3. ku-un-ka 
$ single ruling 

Primary publication: AbB 13, 081
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 079918
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510799
Transliteration:
&P510799 = AbB 13, 081 
#atf: lang akk 
@tablet 
@obverse 
1. a-na nu-ni-ia# 
2. qi2-bi2-ma# 
3. um-ma {d}utu-na-din#-szu#-[mi-ma] 
4. be-el#-ki-ma# 
5. pa-na-nu-um za-zu x x x 
6. {disz}a-wi-il-{d}iszkur 
7. ni-za-az i-na-an-na 
8. _sze-gesz#-i3_ a-na da-li-im 
9. na#-da#-ni#-im# 
10. u3 i-sa-[...] 
@reverse 
1. i-na# [...] 
2. szum-[ma] sza#-pa-[rum] 
3. szu-up-ri-ma# 
4. _sze_-am a-na da-li#-im 
5. sza _sze-gesz#-i3_ lu-di#-in 
6. a-na-ku e-re-sza 
7. a-s,a-ba-at 
8. _1(u) 6(asz) 3(barig) 4(ban2) 2(disz)# [n] sila3 sze# gur#_ 
9. _{gesz}ban2#_ [{d}]utu# _nig2#-szu#_ [x x x (x)] 
10. ma-ah-ra-ku 
@left 
1. _2(u) 6(asz) 2(barig) 3(ban2) sze gur 2(asz) 5(ban2) {gesz}ban2_ {d}utu 
2. _nig2-szu_ dumu-esz18-dar sza nu-ka-ri-bi 
3. u3 ge6-{d}isztaran 


Primary publication: AbB 13, 082
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 079925
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510800
Transliteration:
&P510800 = AbB 13, 082 
#atf: lang akk 
@tablet 
@obverse 
1. a-na szu-mu-[x x x (x) (x)] 
2. qi2-bi2#-[ma] 
3. um-ma ri-isz-{d}marduk#-ma# 
4. {d}utu u3 {d}marduk li-ba-li#-t,u2#-[ka] 
5. asz-szum _ma2-i3-dub hi-a_ a-di-AN# [(x) (x)] 
6. ki-a-am isz-pur-am 
7. um-ma szu-u2-ma 
8. a-na zimbir{ki} 
9. asz-ta#-ap#-pa#-ra-[am] 
10. _ma2-i3-dub hi-a_ an#-[ni-a-tim] 
11. [i-t,ar]-ra-du-ni-kum# 
@reverse 
1. [ki]-a-am isz-pu#-[ra-am] 
2. isz-tu isz-pu-ra-[am] 
3. _u4 1(u)-kam_ im-ta-lu#-u2 
4. {disz}{d}suen-im-gur-an-ni 
5. at,-t,ar-da-ak-kum# 
6. _ma2-i3-dub_ ku#-li-[im-szu-ma] 
7. t,u2-ur-dam-ma 
8. _sze_-a-am# lu#-s,e-en 
9. _sze_-e i-na babila2[{ki}] 
10. sze#-ra# i-ka-asz#-[sza-ad] 
11. ar-hi-isz _ma2-[i3-dub hi-a_] 
12. t,u2#-ur-[dam] 


Primary publication: AbB 13, 083
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 079926
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510801
Transliteration:
&P510801 = AbB 13, 083 
#atf: lang akk 
@tablet 
@obverse 
1. a-na# [...] 
2. [qi2]-bi2#-[ma] 
3. [um]-ma# a-wi-il-{d}na-bi-um-ma# 
4. [{d}utu] u3 {d}marduk da-ri-isz _u4_-mi li#-[ba-(al)-li-t,u2-ka] 
5. [lu] sza#-al-ma-ta lu ba-al-t,a-ta# 
6. [_dingir_ na]-s,i-ir-ka re-esz-ka a-na da#-[mi-iq-tim] 
7. li#-ki-il 
8. a-na szu#-ul#-mi-ka asz-pu-ra-am 
9. szu#-lum-ka ma-har {d}utu u3 {d}marduk 
10. lu da-ri 
11. szi#-ma-am sza tu-sza-bi-lam 
12. a-mu-ur-ma 
13. i-ni u2-ul im-hu-ur 
14. {disz}be-el-szu-nu 
15. a-na ma-ah-ri-ka at,-t,ar-dam 
@reverse 
1. [x x (x)] x _ku3-babbar_ [x] x [x] x x 
$ rest broken 


Primary publication: AbB 13, 084
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 079931
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510802
Transliteration:
&P510802 = AbB 13, 084 
#atf: lang akk 
@tablet 
@obverse 
1. a-na dumu-munus-er-s,e-tim 
2. qi2#-bi2-ma 
3. [um]-ma# hu-up-pa-ia-ma 
4. [{d}utu] u3 {d}marduk li-ba-al-li-t,u2-ki 
5. [{disz}i3]-li2-e-ri-ba-am s,u2-ha-ra-am 
6. [ma]-ah#-ri-ki _iti szu-numun-a u4 5(disz)-kam_ 
7. a-na puzur4-{d}nin-tu a-hi _a-zu_ 
8. a-na ig-ri-im ad-di-isz-szu 
9. al-ki-ma a-na _e2_ a-gi-ri-szu 
10. s,u2-ha-ra-am tu-re-e-em-ma 
11. a-na ma-ah-ri-ia a-na kar-{d}na-bi-um 
12. t,u2-ur-di-isz-szu-ma 
@reverse 
1. li-il-li-kam 
2. isz#-tu wa-ra-ah-szu um-ta-al-lu 
3. _u4 1(disz)-kam_ a-na _e2_ a-gi-ri-szu 
4. la# i-il-la-ak at-ti u3 be-el-ta-ni 
5. x il-da-am pi2-ti-a-ma 
6. _n sila3 i3-gesz_ i-na ma-as2-ha-ar-tim 
7. li#-isz-pu-ka-am-ma li-il-qe2-a-am 
8. u3 _1(barig) sze_ sza ra-ma-ni-ki id-ni-szum 
9. szum-ma _sze_-am la ti-szi#-i 
10. qu2-up-pa-tam ia-at-tam pi2-[ti]-a-ma 
11. x _sze_-a-[am] x-di#?-isz-szum# 
12. x x [...] 
13. sza pa x [...] 
14. szi-ka-ra#?-am x [...] 


Primary publication: AbB 13, 085
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 079935
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510803
Transliteration:
&P510803 = AbB 13, 085 
#atf: lang akk 
@tablet 
@obverse 
1. [a-na a-bi]-ia 
2. [qi2-bi2]-ma# 
3. [um-ma ...-ma] 
4. [lu sza-al-ma-ta lu ba-al]-t,a#-ta 
5. [...] 
6. [...] 
7. [...] 
8. [...]-am# 
9. [...] TE 
10. [...] 
11. [...] 
12. [...] 
13. [...] 
14. [...] x su-ti-i 
15. [...] x x GU 
16. [...]-ma# 
17. [...] 
@reverse 
1. i-na ma-har# a-wi-lim a-pi2-tam ub-ta-ah-i-il 
2. a-na i-lu-ni qa2-ta-am 
3. ud-da-an-ni-nu 
4. ma-an-da-a it-ta-du-szu 
5. a-bi ki-ma ra-bu-ti-szu 
6. li-id-bu-ub li-pa-at,-t,e-er-szu-ma 
7. lu-u2 a-ra-ar-ra-szu i-na zimbir{ki} 
8. a-me-ru-szu ma-har {d}utu {d}marduk 
9. u3 an-nu-ni#-tum# a-na a-bi-ia li-ik-ru-bu 
10. {disz}x [x x x (x)]-id# sza a-na ma-har a-bi-ia 
11. at,-ru-dam 
12. _e2_ re-di#-[im] li-ka-al-li-im li-il-li-[kam-ma] 
13. a-wa-ti-szu# li#-isz-ta-as-si2-ih 
14. szum-ma la i-la-ka 
15. a-bi _sag-geme2_ li-sza-ba-al 
16. a-na sza asz-pu-ra-am 
17. a-bi la usz-ta-a 
$ single ruling 


Primary publication: AbB 13, 086
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 079939
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510804
Transliteration:
&P510804 = AbB 13, 086 
#atf: lang akk 
@tablet 
@obverse 
1. a-na# a-bi-ia# 
2. qi2-bi2#-[ma] 
3. um-ma szu-mu-x [x x-ma] 
4. {d}utu u3 {d}marduk da#-[ri-isz _u4_-mi a-bi] li#-ba-al-li-t,u2 
5. a-bi# lu# sza#-li#-[im lu ba-li]-it, 
6. _dingir#_ na#-[s,i]-ir# a-[bi-ia re-esz a-bi-ia a]-na# da-mi-iq-tim 
7. [li]-ki#-[il] 
8. [a-na szu-lum a-bi-ia asz-pu]-ra#-am 
9. [szu]-lum# a-bi#-[ia ma-ha]-ar# {d}utu u3 {d}marduk 
10. lu# [da-ri] 
11. asz-szum sza x [x x (x)] x x-im szar-ri 
12. ki-a-am iq-bi#-a-[ku um-ma] szu#-ma 
13. _1/2(disz) gin2 ku3-babbar gu2#-[un a-sza3_]-ia# 
14. a-bi li-id#-[di-na]-am#-ma 
15. a-na na-ga-ri [sza x x x (x)] i-pu-szu 
16. lu-di-[in] 
@reverse 
1. asz-tap{ap}-ra-ku 
2. a-bi at-ta la tu-usz-ta-a-ma# 
3. _1/2(disz) gin2 ku3-babbar gu2-un a-sza3_-szu 
4. i-di-in-szu-ma 
5. a-na na-ga-ri li-di-in 
6. na-ga-ru la i-ri-qu2 
$ single ruling 


Primary publication: AbB 13, 087
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 079941
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510805
Transliteration:
&P510805 = AbB 13, 087 
#atf: lang akk 
@tablet 
@obverse 
1. a-na be-el-x [...] 
2. qi2-bi2-[ma] 
3. um-ma su-mu-li#-s,i2 a-hu-ki-ma 
4. ra-bi a-mu-ur-ri-im u2-lam-mi-da-ma 
5. um-ma szu-u2-ma 
6. _sze_-am mu-hu-ur-ma 
7. a-na s,e-er szar-ri-im 
8. lu-ut,-ru-ud-ka 
9. di-nam# la ta-ga-ma-ri 
10. u3 ni-isz i-li-im 
11. la# tu-sza-az-ka-ri-szu 
12. ni#-isz i-li#-im 
13. [x] x x [...] 
$ rest broken 
@reverse 
$ beginning broken 
1'. mi-im#-[ma ...] 
2'. DA ba x [...] 
3'. a-wi-lum u2-ul na-bu-ut 
4'. i-na mar2-da{ki} 
5'. s,a-ba-as-su2-u2-ma 
6'. ba-szi-it-ka 
7'. szu-ud-di-in-szu 
8. _sze_-am a-ma-ha-ar-ma 
9'. ka-asz-da-ak-ki 
10'. a-na a-wa-tim 
11'. la ta-ar-ru-ri-szu 
$ single ruling 


Primary publication: AbB 13, 088
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 079964
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510806
Transliteration:
&P510806 = AbB 13, 088 
#atf: lang akk 
@tablet 
@obverse 
1. [a-na] a-bi-ia 
2. qi2-bi2-ma 
3. um-ma a-hu-ni-i-ma# 
4. {d}utu u3 {d}marduk da#-ri#-isz# _u4_-mi 
5. a-bi li-ba#-al#-li-t,u2 
6. asz-szum _{gesz}taskarin# hi-a_ sza# ta#-asz-pu#-ra-am 
7. um-ma at#-ta#-ma 
8. 3(disz) szu-szi _{gesz}taskarin# hi#-a_ x x-ma 
9. szu-bi-lam 
10. sza ta-asz-pur-ra-am AR x x 
11. ki-ma isz-tu# x [x x] x 
12. a-di x x x x x 
13. 3(disz) szu-szi _{gesz}taskarin hi-a_ 
@reverse 
1. la i-ba-asz#-[szu-u2] 
2. sza ta-asz-tap-ra-am 
3. i-nu-ma 1(disz) szu-szi _{gesz}taskarin hi-a_ 
4. at-ta-ak-mu 
5. a-sza#-ap#-pa-ra#-ak-kum 
6. szu-up-ra#-am#-ma# li-il-qu2-ni-ik#-kum# 
$ single ruling 


Primary publication: AbB 13, 089
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 079979 + BM 080020
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510807
Transliteration:
&P510807 = AbB 13, 089 
#atf: lang akk 
@tablet 
@obverse 
1. [a]-na# a-bi-ia 
2. qi2-bi2-ma 
3. um-ma ip-qu2-an-nu-ni-tum-ma 
4. _{d}utu_ u3 _{d}marduk_ da-ri-isz _u4_-mi 
5. a-bi ka-ta li-ba-al-li-t,u2 
6. a-bi lu sza-lim lu ba-li2-it, 
7. _dingir_ na-s,i-ir a-bi-ia re-esz da-mi-iq-tim 
8. sza a-bi-ia li-ki-il 
9. a-na szu-lum a-bi-ia asz-pu-ra-am 
10. szu-lum a-bi-ia ma-har _{d}utu_ u3 _{d}marduk_ 
11. lu da-ri 
12. ki-ma a-bi i-du-u2 
13. [{disz}{d}]tu#-tu#-na-s,i-ir _sza3 kar zimbir{ki}_ 
14. i-na pa-ni be#-el hu-bu#-ul-li-szu 
15. a-na _e2-duru5#_-bi2#-sa3{ki#} il#-li#-[ik-ma] 
16. _u4_-mi _mu 1(disz)-kam_ it-[ti x (x) (x)] 
17. il-li-ik ki-ma mi-sza-ru isz-sza#-[ak-nu] 
18. a-na _zimbir{ki}_ a-li-<<ID>>-szu it-tu#-ra#-am# 
19. {disz}i-din-_{d}suen ensi2_ 
20. a-na _sze_-am u3 _ku3-babbar_ e-li-szu 
21. la i-szu-u2 
22. a-na _e2_ na-ap-t,a-ri-szu 
23. isz-pu-ur-ma 
24. _{tug2#}bar-si hi-a_ sza wa-sza-ab-tim 
@reverse 
1. [sza] _e2_ na-ap-t,a-ri-szu 
2. [x]-te-BI-e 
3. [i]-na#-an-na a-sza-ab-tum szi-i 
4. a-na# _zimbir{ki}_ il-li-ka-am-ma 
5. {disz}{d}tu-tu-na-s,i-ir szu-a-ti 
6. u2-ka-al 
7. {disz}{d}tu-tu-na-s,i-ir szu-u2 [(x) (x)] 
8. ma-ah-ri-ia u2-ul x [x (x)] 
9. u2-ul# at,-ru-da-ak#-[kum] 
10. a-na# a-bi-ia asz-tap-ra-am# 
11. a-bi ki-ma ra-bu-ti-szu 
12. sza-ap-ti i-din-{d}suen szu-a-ti 
13. li-isz-me-e-ma 
14. {mi2}ni-[pu]-tam sza ip-pu-u2 
15. a-bi li-wa-sze-er 
16. _sze_-am u3 _ku3-babbar_ ma-la e-li-szu i-szu-u2 
17. a-bi ze-eh-ep-szu li-sza-bi-la-am-ma 
18. a-na-ku lu-pu-ul 
19. a-bi a-wa-tam i-dam la u2-sza-ar-sza-ma 
20. la i-sza-ap-pa-ra-am 
21. asz-szum di-ib-ba-at _sag-ARAD_ 
22. sza a-bi isz-pu-ra-am 
23. ki-ma a-wi-lum is-sa3-an-qa2-am 
24. a-bi li-isz-pu-ra-am-ma 
25. [a]-na# ma-har a-bi#-ia# lu-ul-li-ka-am 


Primary publication: AbB 13, 090
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 079980
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510808
Transliteration:
&P510808 = AbB 13, 090 
#atf: lang akk 
@tablet 
@obverse 
1. a-na me-er-si-ia 
2. u3 na-ra-am-ta-ni 
3. qi2-bi2-ma 
4. um-ma {d}suen-im-gur-an-ni-ma# 
5. a-na mi-ni-im 
6. s,u2-ha-ar-tam a-na mu-um-mi 
7. ta-ad-di-i 
8. wa-ak-lu-ti-i 
9. te-ep-pi2-szi 
10. u2-lu ku-ru-ma-sa3 
@reverse 
1. ta-na-ad-di-ni-ma 
2. a-al-la-kam-ma# 
3. ia-at-tam u2 ka-ta 
4. ga-gu-um i-de4 
5. u2 sza am-ti-ia 
6. {disz}{d}a-a-mu-ba-li2-t,a-at 
7. GIR ZI-im 
8. i-x-x-ni-szu 
$ single ruling 


Primary publication: AbB 13, 091
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 079983
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510809
Transliteration:
&P510809 = AbB 13, 091 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}suen-re-me-ni 
2. qi2-bi2-ma 
3. um-ma il-ta-ni-ma 
4. {disz}geme2-{d}ma-mu _dumu-munus_ {d}suen-e-ri-ba-am 
5. ki-a-am iq-bi-a-am 
6. um#-ma# szu-u2-ma 
7. [x x (x)] x x it-ti-ia 
8. [x x x (x)] uk#-ti-in-nu-nim 
9. [x x x x (x)] x na-AD-x 
10. [x x x x (x)] _i3-gesz_-sza 
$ rest broken 
@reverse 
$ beginning broken 
1'. [x x x] x x x-szi#-im-ma 
2'. [x x] x-s,i-ir-ma 
3'. [u2]-ul# tu-sza-bi-la-asz-szi 
4'. u3 _2(barig) sze_ ta-aq-bi-szi-im-ma 
5'. u2-ul tu-sza-bi-la-asz-szi 
6'. i-na-an-na asz-tap-ra-kum 
7'. ma-la sza asz-pu-ra-kum 
8'. {disz}na-ra-am-ta-ni 
9'. i-na pi2-ti-sza li-id-bu-ba-kum 
10'. _2(barig) sze_ sza# ta-aq-bu-szi 
11'. szu-bi-la-asz-szi 
$ single ruling 

Primary publication: AbB 13, 092
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 079989
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510810
Transliteration:
&P510810 = AbB 13, 092 
#atf: lang akk 
@tablet 
@obverse 
1. _1(u) sze# [gur_ ...] 
2. a-na# [...] 
3. it#-[ti ...] x 
$ rest broken 
@reverse 
$ beginning broken 
1'. e-x-ra#-as-su2 [x (x)] 
2'. it-ti i-din-{d}er3-ra _dam-gar3#_ 
3'. _1(u) sze gur_ ih-bu-ut 
4'. at-ta {d}suen-sze-mi# 
5'. u3 lu-u2-numun it-ti#-[szu] 
6'. li-iz-zi#-[zu-(ma)] 
7'. _ma2-i3-dub_ x [...] 


Primary publication: AbB 13, 093
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 080010
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510811
Transliteration:
&P510811 = AbB 13, 093 
#atf: lang akk 
@tablet 
@obverse 
1. a-na a-wi-lim sza {d}marduk u2-ba-[(al)-la?-t,u2-szu] 
2. qi2-bi2-[ma] 
3. um-ma {d}suen-im-gur#-[an-ni-ma] 
4. {d}utu u3 {d}marduk da-ri-[isz _u4_-mi-(im) li-ba-(al)-li-t,u2-ka] 
5. lu sza-al-ma-ta lu# [ba-al-t,a-ta] 
6. _dingir_ na-s,i-ir-ka re-esz#-[ka a-na da-mi-iq-tim] 
7. li-ki-[il] 
8. a-na# szu#-ul-mi-ka asz-[pu-ra-am] 
9. szu-lum#-ka ma-har {d}utu u3 [{d}marduk lu da-ri] 
10. a-na {d}suen-sze#-[mi ...] 
11. asz-szum# _sze#_-e-szu a-na [...] 
$ rest broken 
@reverse 
$ beginning broken 
1'. x x [...] 
2'. [...] 
3'. [...]-la-pi2-it# [(x)] 
4'. [...] x UD 
$ single ruling 


Primary publication: AbB 13, 094
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 080014
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510812
Transliteration:
&P510812 = AbB 13, 094 
#atf: lang akk 
@tablet 
@obverse 
1. [a]-na a-wi-lim 
2. qi2-bi2-ma 
3. um-ma i3-li2-i-qi2-sza-am-ma 
4. {d}utu u3 {d}marduk asz-szu-mi-ia da-ri-isz _u4_-mi 
5. li-ba-al-li-t,u2-ka 
6. lu sza-al-ma-ta lu ba-al-t,a-ta 
7. _dingir_ na-s,i-ir-ka re-esz-ka a-na da-mi#-[iq-tim] 
8. li-ki-il 
9. a-na szu-ul-mi-ka asz-pu#-[ra-am] 
10. szu-lum-ka ma-har {d}utu u3 [{d}marduk lu da-ri] 
11. 1(disz) _gu4_ it-ti _erin2_ su#-[ti-i el-qe2-ma] 
12. {disz}a-hi il-li-kam#-[ma ...] 
13. i-na ma-ah-ri#-[ia ...] 
@reverse 
1. _1(u) gin2 ku3-babbar_ ku-nu-uk#-[ma szu-bi-lam] 
2. a-na _sa10 i3-gesz_ ki-ma# [ma-hi-ra-at] 
3. _i3-gesz_ i-il-[la-ku] 
4. u2-lu ma-ah-ri#-ka u2-[lu x (x)] 
5. a-am-ra-[am-ma] 
6. _i3-gesz_ [(x)] lu-ud-di#-[in-(ma)] 
7. _1(u) [gin2] ku3-babbar_ szu-a-ti a-na ma#-[ah-ri-ia] 
8. la tu-sza-ab-ba-[lam] 
9. _erin2_ su-ti-i lu-usz-pu-ra-ak#-[kum] 
10. qa2-tam u2-su-uh2-szu-nu-szi#-[im] 
$ single ruling 


Primary publication: AbB 13, 095
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 080023 (+) BM 080029
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510813
Transliteration:
&P510813 = AbB 13, 095 
#atf: lang akk 
@tablet 
@obverse 
1. [a-na] a-wi-lim 
2. qi2-bi2-ma 
3. [um]-ma {d}marduk-mu-ba-li2-it,-ma 
4. [{d}]utu u3 {d}marduk da-ri-isz _u4_-mi 
5. li#-ba-al-li-t,u2-ka 
6. lu# sza-al-ma-ta lu ba-al-t,a-ta 
7. _dingir#_ na-s,i#-ir-ka re#-esz-ka a-na# da#-mi-iq-tim 
8. [li]-ki-[il] 
9. [a-na szu-ul-mi-ka asz-pu-ra-am] 
10. szu#-lum-ka [ma-har {d}utu {d}marduk] 
11. u3 be-li2-ia [... lu da-ri] 
12. i-nu-ma i-na zimbir{ki} [x x x] 
13. ki-a-am ta-aq-bi-a-am um#-[ma at-ta-ma] 
14. a-na 5(disz) _u4_-mi tup-pi2 u2-sza#-[ba-la-kum] 
15. s,i-bu-ut a-sza-ap-pa-ra-[ak-kum] 
16. te-ep-pu-sza-[am] 
17. isz#-tu a-na babila2#[{ki}] ta#-al#-[li-ku] 
18. tup#-pa-ka u2-ul# [tu-sza-bi-lam] 
$ rest broken 
@reverse 
$ beginning broken 
1'. [s,i-bu-ut]-ka# [...] 
2'. u2-ul# ta-asz#-[pu-ra-am-ma] 
3'. s,i-bu-ut-ka u2-ul e-[pu-usz] 
4'. i-na-an-na {disz}x x [...] 
5'. a-na ma-ah-ri-ka at,-[t,ar-da-asz-szu] 
6'. t,e-em-ka ga-am#-ra szu-[up-ra-am-ma] 
7'. sza ta-qa2-ab-bu-u2 [x] x [...] 
8'. a-na ARAD-{d}e2-ul-masz mi-[im-ma] 
9'. s,i-bu-tam [asz-pu]-ra#-am#-[ma] 
10'. [...] 
11'. [...] 
12'. u3 ARAD-a-x-[...] 
13'. _szum2#{sar} szum2-el-lum{sar}_ x [...] 
14'. [ap]-pu#?-tum ar#-hi-isz szu-bi-lam 
15'. [x x (x)]-iz#-za sza ta#-aq-bi-a-am# u2-ul tu-sza-bi-lam 
16'. [x x x]-ti#-ka e-re-x-DU 
$ single ruling 


Primary publication: AbB 13, 096
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 080024 + BM 080039
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510814
Transliteration:
&P510814 = AbB 13, 096 
#atf: lang akk 
@tablet 
@obverse 
1. a-na a-hi-ia sza be-li2 [u3] be#-el#-ti# 
2. u2-ba-al-la-t,u2-szu 
3. qi2-bi2-ma 
4. um-ma be-el-ta-ni _dumu-munus_ {d}asznan-ma-an-szum2 
5. ka-ri-ib-ta-ka-ma 
6. be-li2 u3 be-el-ti da-ri-isz _u4_-mi 
7. li-ba-al-li-t,u2-ka 
8. _szuku_ ka-s,a-tim u3 li-li-a-tim 
9. ma-har be-li2-ia u3 be-el-ti-ia 
10. a-na ba-la-t,i#-ka# lu-uk-ta-ra-ba-kum 
11. asz-szum {disz}{d}suen-i-din#-nam# a-hi#-ia# 
12. sza i-na szi-pi2-ir-ti#-ka 
13. i-na gi-ir-ri im-qu2-tu 
14. ki-is-ka sza-li-im-tam 
15. it-ta-ad-na-ak-ku 
16. mi-nu-um a-wa-tum-ma 
17. mi-im-mu-u2 a-hi-ia 
18. te#-le-eq-qe2-e-ma 
19. ta#-ka-an-na-ak 
20. isz#-tu-u2-ma 
@reverse 
1. mi#-im-mu-u2-ka# a-hi 
2. la i-pu-lu-ka 
3. 2(disz) _dam-gar3-mesz_ sza it-ti a-hi-ia 
4. il-li-ku-u2-ma 
5. a-wa#-a-tim mu-du-u2 
6. [a-na] ma#-ah-ri#-ia 
7. [t,u2]-ur#-da-asz-szu-nu-ti-ma 
8. [i]-na# ma-har# be-li2-ia 
9. lu#-sza-al-szu-nu-ti#-ma# 
10. _sze_-am u3 _ku3-babbar_ sza x [...] 
11. ta-na-BU-u2-ma la# [...] 
12. a-na-ku a-ap-pa-al-ka# 
13. mi-im-mu-u2 a-hi-ia 
14. a-na mi-nim tu-ka-al-ma 
15. la ta-na-di-na-am 
16. asz-tap-ra-ak-kum 
17. t,e4-ma-am ga-am-ra-am 
18. [me]-hi#-ir tup-pi2-ia 
19. szu#-bi-lam-ma 
20. ki-ma ta-sza-pa-ra#-[am] 
21. lu-pu-usz 


Primary publication: AbB 13, 097
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 080034
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510815
Transliteration:
&P510815 = AbB 13, 097 
#atf: lang akk 
@tablet 
@obverse 
$ beginning broken 
1'. _dingir#_ na-s,i-ir#-ka# [re-esz]-ka# a-na da#-[mi-iq-tim] 
2'. li-ki-il 
3'. a-na szu-ul-mi-ka# asz-pu-ra-am 
4'. szu-lum-ka ma-har _{d}[utu]_ u3 _{d}marduk_ lu da-ri 
5'. asz-szum da-ba-bi sza# _dumu#_ ki-{d}en-lil2-qi2-in-ni 
6'. sza a-hi at-ta ta-asz-pu-ra-am 
7'. i-na pa-ni-tim i-nu-ma i-na _zimbir{ki}_ a-na-ku 
8'. a-wi-lum _ugula dam-gar3-mesz_ isz-pu-ra-am-ma 
9'. {mi2}ni-pa-at _dumu-mesz_ ki-{d}en-lil2-qi2-in-ni szu-nu-ti 
10'. a-pa-ad-ma 
11'. a-hi at-ta DI? x da#-ba-bu szu-u2 
12'. a-di e-ri-ib-[x] _ugula# dam-gar3#-mesz#_ 
13'. sza# aq-bi-a-[kum] 
@reverse 
1. {mi2}ni-pu-tam szu-a-ti u2-te#-[ru] 
2. i-na _u4_-mi-szu-ma be-el-szu-nu _lu2-egir-ra_ 
3. u2-ul i-mi-id#-[ma] a-na# ma-har a-wi-lim 
4. a-na {iri}LU# x [x x (x) it]-ta#-la-ak 
5. da-[ba-ba sza x x x x (x)] sza# ad-bu-bu 
6. x [x x x x x x x x (x)]-ub-ma 
7. [... x]-szu 
$ rest broken 
@left 
1. [...] x-i-ID be-li2-ia e-te-qa2 u2-ul e-le-e 


Primary publication: AbB 13, 098
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 080040
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510816
Transliteration:
&P510816 = AbB 13, 098 
#atf: lang akk 
@tablet 
@obverse 
$ beginning broken 
1'. a-na ba-la-t,i3-ka ak-[ta-na-ra]-ab# 
2'. {disz}i3-li2-u3-{d}suen _aga-us2_ 
3'. sza ta-asz-ku-nam 2(disz) _gin2 ku3-babbar_ ne-ba-ah-szu 
4'. ad-di-in-szum e-zu-ub ku-ru-ma-ti-szu 
5'. u3 ta-ri-im-ti-szu 
6'. [(x)] _a-sza3_-i _{gesz}kiri6_-i 
7'. [(x)] _gu4 hi-a u8 udu hi-a_-ia 
@reverse 
1. u3 ba-szi-ti u2-ul u2-sza-s,i2-a-am 
2. _a-sza3_-i a-na er-re-szi-im 
3. _{gesz}kiri6_-i a-na sza-ak-ki-nim 
4. u2-ul id-di-in-ma 
5. [ap-pu]-na#-ma {disz}e-tel-pi4-{d}na-bi-um a-hi 
6. [x x (x)] x-la-an-ni 
$ rest broken 
@left 
1. [...] x-na#?-ma#? szar-ra-am 
2. [...]-ha-ar 


Primary publication: AbB 13, 099
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 080047
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510817
Transliteration:
&P510817 = AbB 13, 099 
#atf: lang akk 
@tablet 
@obverse 
1. a-na a-wi-li#-[im] sza {d}marduk u2-ba-al-la#-t,u2#-szu# 
2. qi2-bi2-ma 
3. um-ma {d}na-bi-um-na-s,i-ir-ma 
4. [{d}]utu# u3 {d}marduk da-ri-isz# _u4_-mi# li-ba-al-li#-[t,u2-ka] 
5. lu# sza-al-ma-ta# [lu] ba#-al-t,a#-[ta] 
6. _dingir_ na-s,i-ir-ka re-esz-ka a-na [da-mi-iq-tim] 
7. li#-[ki-il] 
8. a-na szu-ul#-mi-ka# [asz-pu-ra-am szu-lum-ka] 
9. ma#-har# {d}utu# [u3 {d}marduk lu da-ri] 
$ rest broken 
@reverse 
$ beginning broken 
1'. x [...] 
2'. x x [...] 
3'. pi2-qi2-id-ma [...] 
4'. _siki u8 udu hi-a_ x x [...] 
5'. u3 ma-la tu-sza-ab-ba-la-am# 
6'. szu-bi-[lam] 
$ single ruling 
$ blank space 


Primary publication: AbB 13, 100
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 080071
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: envelope
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510818
Transliteration:
&P510818 = AbB 13, 100 
#atf: lang akk 
@envelope 
@obverse 
1. a-na szum#-ma-{d}utu# 
@seal 1 
$ (uninscribed) 


Primary publication: AbB 13, 101
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 080072
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: envelope
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510819
Transliteration:
&P510819 = AbB 13, 101 
#atf: lang akk 
@envelope 
$ beginning broken 
$ blank space 
@seal 1 
$ (uninscribed) 


Primary publication: AbB 13, 102
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 080073
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: envelope
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510820
Transliteration:
&P510820 = AbB 13, 102 
#atf: lang akk 
@envelope 
@obverse 
1. [...] x x x [...] 
@seal 1 
1. [{disz}ni]-szu-i-ni-szu#? 
2. _[dumu]_ {d}marduk?-mu-ba-li2-it,# 
3. ARAD# {d}x 

Primary publication: AbB 13, 103
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 080079
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510821
Transliteration:
&P510821 = AbB 13, 103 
#atf: lang akk 
@tablet 
@obverse 
$ beginning broken 
1'. [...] x x [...] 
2'. [asz-szum] a-na# la ba-ni-a-tim# 
3'. [pa-ni]-ka# ta-asz-ku-nu-u2 [(x)] 
4'. u3 a-ba#-ka a-na la a-bi-ka# 
5'. ta-asz-ku-nu-u2 
6'. DISZ KAM ad-di-i-ma 
7'. _tug2_ s,u2-ba-tam# a-na bu-ni-ka 
8'. u2-ul <<u2-ul>> e-pu-usz 
9'. _tug2#_ s,u2-ba-at-ka 
$ single ruling 
@reverse 
1. [isz]-tu# i-na-an-na 
2. _[u4 n]-kam_ i-pa-ra-su2-u2 
3. _[ku3]-babbar_-ap sza#-ar-tim 
4. [ba-ni?]-tim sza# a-wi-lu-u2 
5. [x x] x x [x] x i-la-ku-nim 
6. [x x x x x (x)] x NA x x [x (x)] 
7. [x x x x x (x)] x x [...] 
8. [x x x x x (x)] BI x [...] 
9. [x x x x x (x)]-ma x [...] 
$ rest broken 


Primary publication: AbB 13, 104
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 080081
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510822
Transliteration:
&P510822 = AbB 13, 104 
#atf: lang akk 
@tablet 
@obverse 
$ beginning broken 
1'. [x x x (x)] x x HA x [...] 
2'. [x x] x ID#-ki a-nu-um-ma# [asz-tap-ra]-ak#-ki 
3'. [it]-ti#-ia ah-hi a-bi-szu-nu# [ma]-la# wa-asz-bu 
4'. [u2]-ul i-ba-asz-szi a-na-ku-u2-ma a-na bi-it _a-ba_ 
5'. wa-asz-ba-a-ku um-ma szar-ru-um-ma ba-ma-su2-nu 
6'. lu wa-asz-bu ba-ma-su2-nu li#-li-ku 
7'. u3 ki-im-tu li-s,e-di#-szu#-[nu]-ti# 
8'. a-na#-ku-ma wa-asz-ba-a-ku ah-hi a-bi-ia 
9'. la-asz-szu-u2 isz-tu-u2-ma a-bi 
10'. re-mu-szu-nu-ti-ma la it,-ru#-du#-szu-nu-ti [(x)] 
11'. u3 ki-ma i-ia-ti la usz-bu# [x (x)] 
12'. _sze_-a-am _ku3-babbar_ u3 _zi3-da#_ x [(x)] 
@reverse 
1. ki-ma szar-ru-um iq-bu-[u2 x (x)] 
2. li-s,e-du-ni-in-ni# [(x)] 
3. al-ki-i-ma es-ri-szu-nu-ti 
4. szum-ma la im-gu-ru-ki szu-up-ri-im#-ma# 
5. ma#-ha-ar _ARAD-mesz lugal_ e-zu-ub {disz}nu-ra#-tum 
6. [a]-na# {d}utu-ba-ni u3 _kar_ zimbir{ki} ka-li#-szu-nu 
7. [x x x (x)]-sza-am mi-na-am ha-ab-la-ta 
8. [x x x x (x)]-lim lu-usz-ku-um-ma 
9. [x x x x] li#-it-ru-ni-im 
10. [_sze_-a-am _ku3-babbar_] u3 _zi3-da_ szu-di-ni-szi-nu-ti-ma 
11. [x x ni-di] a-hi#-im# la ta-ra-asz-szi-i 
12. [...] x x x x [...] 
$ rest broken 


Primary publication: AbB 13, 105
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 080082
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510823
Transliteration:
&P510823 = AbB 13, 105 
#atf: lang akk 
@tablet 
@obverse 
1. asz-szum ka-ni-ki# [...] 
2. mi-nu-u2 i-du# [...] 
3. ka-ni-kam szu-a-ti# x x [...] 
4. isz-tu a-wa-ti-i ta-hu-zu# 
5. u3 asz-szum ka-ni-ki ta-sza-ap-pa-ra-am 
6. ki-ma asz-szum ka-ni-ki szu-a-ti ta-ba-lim 
7. {disz}{d}suen-im-gur-an-ni a-na# _di-ku5-mesz_ 
8. a-wa-tam ip-qi2-du u2-ul# [u2]-szi#-ib# 
9. ka#-ni#-kam szu-a-ti# [x x (x) (x)] 
@reverse 
1. qa#-ti _di-ku5-mesz_ i-ka-asz-sza-ad-ma# 
2. ka-bi-it#-tam# te-ep-pu-usz 
3. a-wi#-lum# _gal-ukken-na_ sza-ap-ti _di-ku5-mesz_ 
4. u3 _lukur_ {d}utu li-isz-me-e-ma 
5. a-di a-na 2(disz) _u4_-mi a-sza-aq-qa2-a 
6. _dumu-munus_ be-el u2-ni-a-tim 
7. li-ki-in-nu-ma a-na be#-el#-ti _szuku_ 
8. _szuku#_ li-te-er#-[ru-nim] 
9. szum-ma a-wa-tum i-dam [i-ra-asz-szi] 
10. ka-ni-kam szu-a-ti# [ku-un-kam-ma] 
11. a-na s,e#-[ri-ia szu-bi-lam] 
@left 
1. i-na _e2_ {d}utu ma-har szar-ri-im# [lu-usz-ku-un?] 


Primary publication: AbB 13, 106
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 080244
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510824
Transliteration:
&P510824 = AbB 13, 106 
#atf: lang akk 
@tablet 
@obverse 
1. [a]-na# a-bi#-ia# sza {d}marduk u2-ba-al-la-t,u2-szu 
2. qi2#-bi2-ma 
3. um#-ma# e-tel#-pi4-{d}na-bi-um-ma 
4. {d}utu u3 {d}marduk asz#-szu#-mi#-ia# da-ri-isz _u4_-mi 
5. a-bi li-ba-al#-li#-t,u2 
6. a-bi lu sza-lim lu ba-li-it, lu da#-ri# 
7. _dingir#_ na#-s,i#-ir a-bi-ia re-esz _e2_-ka# [...] 
8. [li]-ki-il 
9. a-na szu-lum a-bi-ia asz#-[pu]-ra#-am 
10. szu-lum a-bi#-ia ma#-har# {d}utu u3 {d}marduk 
11. lu da-ri 
12. asz-szum sza ki-a-am ta-asz-pu-ra-am 
13. um-ma at-ta-ma 
14. {disz}x x x x i-na li-ib-bu ma-tim u2-ul i-[ba-asz-szi?] 
15. _n(bur3) GAN2# a-sza3_ x x x _4(bur3) GAN2 a-sza3_ 
16. x x te#-er-ra i-na hi-ri-tum{ki} 
17. [x x x (x)] x x BA x KI? 
18. [x x x x (x)] x-al-ma _a-sza3_-am x x x 
19. [...] x 
20. [...] x 
@reverse 
1. [...] x x x [...] 
2. [x x x (x)]-nu-um i-na tu-x-[...] 
3. [x (x)]-ir-ri-[x x (x) (x)] 
4. [x x]-ar-ku-um x x [x x] x [...] 
5. [i-na] er-s,e-et hi-ri-tum#{ki#} 
6. [x (x)] x x _aga-us2-mesz_ u2-x x [x] x [...] 
7. _a-sza3_-am ma-la e-mu-qi2-ka i nu-sze#-s,i#-ma 
8. i ni-pu-usz 
9. x x sza-at-tam a-na zimbir{ki} a-na _e2_ x [...] 
10. x x x ka-ab-tu 
11. [(x)] x x la-ma x u2-ku-le-e isz-tu _x-mesz#_ 
12. il#-li-ku-nim-ma# 
13. _a-sza3_-am# is,-ba-tu#-u2 
14. [x] x x x-ma _[a]-sza3#_-am ma-la e-mu-qi2#-ka# 
15. [i] nu-sze-s,i-ma 
16. a-na re#-e-szi-im a-na hi-t,i-im la ta-x x x 
17. x [x] x x nu-usz-tam-lu-u2-ma x x x x 
18. [(x)] x _hi-a_-ka _szuku_ li-IZ-x x x 
19. [...] x x-ru ma x 
$ about 3 lines broken 
@left 
1. [...] x KI x [x (x)] x a-mu-ur x [...] 
2. [...] 


Primary publication: AbB 13, 107
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 080469
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510825
Transliteration:
&P510825 = AbB 13, 107 
#atf: lang akk 
@tablet 
@obverse 
1. [a]-na sza#-pi2#-ri#-[ni] 
2. qi2-bi2-ma# 
3. um-ma szi-bu-ut hi-ri-tum#[{ki}-ma] 
4. {d}utu u3 {d}marduk asz-szu-mi-ni da-ri-isz# [_u4_-mi] 
5. sza-pi2-ir-ni li-ba-al#-[li-t,u2] 
6. a-wi-lum la-ba-x x [...] 
7. _sze_-a-am a-na _ansze hi-a_ x [...] 
8. a-na x x x [...] 
9. x x x x x [...] 
10. [x] x [x] x BI IR [...] 
11. [x x] x [x] i x [...] 
@reverse 
$ illegible 
$ blank space 


Primary publication: AbB 13, 108
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 082616
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510826
Transliteration:
&P510826 = AbB 13, 108 
#atf: lang akk 
@tablet 
@obverse 
1. a-na e2-nam#-ti-la-x-[x (x) (x)] 
2. qi2-bi2-ma 
3. um#-ma {d}marduk-a-ia-ba-asz#-ma# 
4. {d}utu u3 {d}marduk asz-[szu-mi-ia] 
5. li-ba-al-li-t,u2#-ka# 
6. i-nu-ma i-na _ezem_ {d}utu 
7. i-na zimbir#{ki#} ni-in-na-<am>-ru-u2 
8. ki-a-x a-x-x 
9. um-ma a-na-ku-ma 
10. [x] x _e2_ ga-gi-im 
11. [x x] x ha-ar-ti-im 
12. [x (x)]-ti-ka 
@reverse 
1. [lu]-pu#-usz [x x x x (x)] 
2. x-ma a-x x _ku3-babbar-mesz?_ x x 
3. u2-ul x x x x 
4. _1(u) gin2 ku3-babbar_ x [x] x x x 
5. x x x x x x x 
6. sza a-na x x x x x x 
7. x x x x sza-ma-am#-ma 
8. szu-bi#-lam 
$ single ruling 


Primary publication: AbB 13, 109
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 085018
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510827
Transliteration:
&P510827 = AbB 13, 109 
#atf: lang akk 
@tablet 
@obverse 
1. a-na ra-bi-a-an _gu2# i7_ idigna# 
2. qi2-bi2-ma 
3. um-ma {d}na-bi-um-ma-lik-ma 
4. sza _e2_ {d}ki-it-tum 
5. sza a-na _ku3-babbar#_ szu-ud-du-nim 
6. i-x-x-(x) 
7. _ku3-babbar_ szu#-[a-ti] 
8. la u2-sza-ad-da#-an 
@reverse 
1. _ku3-babbar_ a-li-im ra#-bi-a-nu-um# 
2. li-sza-ad-di-in li-id-di-in 
3. u3 ka-ni-ik-szu 
4. li#-qe2-a-am 
$ single ruling 


Primary publication: AbB 13, 110
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 085248
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510828
Transliteration:
&P510828 = AbB 13, 110 
#atf: lang akk 
@tablet 
@obverse 
1. a-na ka-lu-mu-um 
2. qi2-bi2-ma 
3. um-ma a-hu-szi-na-ma 
4. {d}utu u3 {d}marduk li-ba-al-li-t,u2-ka 
5. i-na pa-ni-tim i-nu-ma a-na hi-ri-tim{ki} 
6. qa2-du _erin2_-ia sza-ak-na-ku-ma 
7. i-na zimbir{ki} it-ti-ia ta-an-nam-ru 
8. ki-a-am aq-bi-kum um-ma a-na-ku-ma 
9. i-na zimbir{ki} _e2_ na-ap-t,a-ri 
10. u2-ul i-szu 1(disz) _e2_ am-ra-am-ma 
11. _ku3-babbar_ lu-usz-qu2-ul-ma lu-sza-am 
12. at-ta ki-a-am ta-pu-la-an-ni 
13. um-ma at-ta-a-ma am-mi-nim 
14. _ku3-babbar_ ma-ar-s,u2-us-su2 
15. ta#-sza-aq-qa2-al sza-pi2-ir _erin2_ at-ta 
16. qa2-qa2-rum ni-di-tum <i>-ba-asz-szi-ma# 
17. ta#-am-ma#-ra#-[am-ma qa2-qa2-ra-am (ta)-sza-am] 
@reverse 
1. _e2_ szu-u2 x [x x x x x (x)]-a-am-ma 
2. a-wa-tam a-na bi-it-ri#-i-[im ...] 
3. e-li-ia i-t,i-ib ki-ma ta-aq-bi-a-am 
4. _ku3-babbar_ asz-qu2-ul-ma qa2-qa2-ra-am a-sza-am 
5. {disz}dumu-{d}il-tum u3 ha-bil-da-du 
6. ma-ah-ri-ka e-zi-im-ma _sahar hi-a_ is-su2-hu 
7. _sahar hi-a_ szu-nu ma-la tam-li _e2_ u2-ul ma-s,u2-u2 
8. u3 _3(disz) gin2 ku3-babbar_ e-zu-ub _sze a2 lu2 hun-ga2-mesz_ 
9. u3 _szuku erin2_ sza a-na be-el _sahar hi-a_  ra-bi-a-ni 
10. id-di-nu-ma _sahar hi-a_ ma-la tam-li _e2_-ma 
11. u2-ul in-na-as2-hu i-na-an-na 
12. szi-ip-rum s,a-ab-ta-an-ni-ma _erin2_ e-mu-qa2-tim 
13. u2-ul at,-ru-da-kum u3 _sze_-am 
14. a-na _a2 lu2 hun-ga2-mesz_ u2-ul u2-sza-bi-lam 
15. ki-ma ar-ti-qu2 _erin2_-am a-t,a-ar-ra-da-kum 
16. u3 _sze_-am e-s,e-en-nam-ma u2-sza-ab-ba-la-ku 
17. a-nu-um-ma 1(u) _erin2_ qa2-du _szuku iti 1(disz)-kam_ 
18. u3 ha-bil-da-du at,-t,a-ar-da-kum 
19. _1(disz) gin2 ku3-babbar_ a-na be-el _e2_ 
@left 
@column 1 
1. u3 _1(asz) sze gur_ a-na _szuku_-ka usz-ta-bi-la-kum 
2. a-di _erin2_-am u3 _sze_-am a-t,a-ar-ra-da-kum 
@column 2 
1. _erin2_ szu-u2 _sahar hi-a_ ma-la tam-li# _[e2]_ 
2. szu-us-si2-ih be-el _sahar hi-[a_ x] 
3. la tap-pa-ar-ra-ak-szum [x (x)] 

Primary publication: AbB 13, 111
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 085313
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510829
Transliteration:
&P510829 = AbB 13, 111 
#atf: lang akk 
@tablet 
@obverse 
1. a-na ka-lu-mu-um 
2. qi2-bi2-ma 
3. um-ma a-hu-szi-na-ma 
4. {d}utu u3 {d}marduk li-ba-al-li-t,u2-ka 
5. tup-pa-ka sza tu-sza-bi-lam esz-me-e 
6. tup-pi2 pa-nam u2-sza-ar-szi-a-am-ma 
7. a-na be-la-nu-um usz-ta-bi-lam 
8. at-ta sza pi2-ha-at _e2_ la-qe2-a-ta 
9. u3 ki-ma pa-ag-ri-ia i-na mu-uh-hi 
10. _erin2#_-ia wa-asz-ba-a-ti a-na a-wa-tim# 
11. [am]-mi#-nim pa-ni x [x x x x (x)] 
12. [...] x ha-a [...] 
13. [...] x [...] 
$ 2-3 lines broken 
@reverse 
1. [x x] x ki-ma be-el# [_sahar hi-a_] 
2. [i]-ta#-wu-u2 a-na _sanga_ {d}[utu] 
3. qi2#-bi-ma li-sza-hi-is-su2 [(x)] 
4. szi-pi2-ir _u4 1(u)-kam guru7_ uh-hu-ur 
5. ki-ma _guru7_ ag-da-am-ru 
6. ma-ah-ri-ka a-na-ku at-ta 
7. a-na _sahar hi-a_ na-sa-hi-im ni-di a-hi-im 
8. la ta-ra-asz-szi _sahar hi-a_ 
9. isz-tu ma-li tam-li _e2_ ta-at-ta-as2-hu 
10. a-na# _sahar hi-a erin2_-ka s,u2-uh-hi-ir 
11. szum-ma ra-bi-a-nu u2-da-ab-ba-ab-ka 
12. 1(disz) _udu-nita2_ ha-bil-da-du li-sza-am-ma 
13. li-t,e4-eh-hi-szum 
14. ni#-di a-hi-im a-na szi-ip-ri-im 
15. szu-pu-szi-im la ta-ra-asz-szi 
@left 
1. _sze_-a-am _szuku erin2_ u3 2(disz) _{uruda}mar_ 
2. a-za-mi-lam-ma u2-sza-ba-la-ku 


Primary publication: AbB 13, 112
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 085332
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510830
Transliteration:
&P510830 = AbB 13, 112 
#atf: lang akk 
@tablet 
@obverse 
1. [a]-na# be-ia qi2-bi2-ma 
2. [um]-ma# a-wi-il#-esz18-dar-ma 
3. [{d}]utu# u3 {d}marduk# [asz]-szu#-mi-ia 
4. [da-ri]-isz# _u4_-mi# li#-ba#-al-li-[t,u2-ka] 
5. [asz]-szum# _2(u) gin2# [ku3]-babbar#_ u3 _5(disz) gin2 ku3-babbar_ 
6. sza# qa2#-ti-ka# 
7. asz-szum ki-a-am ta-asz-pu-ra-am 
8. [um]-ma at-ta-ma 
9. [x (x)] ta#-la-ka-am 
@reverse 
1. [i-na] qa2#-ti# a-bu-um-ki-ma-dingir 
2. _1/3(disz) ma-na 5(disz) gin2 ku3-babbar_ 
3. il-ti-qe2 
4. ki-ma ta-am-hu-ra-an-ni 
5. _1/3(disz) ma-na 5(disz) gin2 ku3#-babbar#_ 
6. _na4_ {d}utu 
7. a-na a-bu-um-ki-ma-dingir 
8. i-di-in 
9. _1(disz) 2/3(disz) ma-na 5(disz) gin2 uruda_ 
10. i-di-in 
@left 
1. im#-ma#-x [x] x x x ru 
2. a-na a-bu-um-ki-ma-dingir i-di-in 


Primary publication: AbB 13, 113
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 085335
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510831
Transliteration:
&P510831 = AbB 13, 113 
#atf: lang akk 
@tablet 
@obverse 
1. a-na i3-li2-ip-pa-al-sa3#-am 
2. qi2-bi2-ma 
3. um-ma a-pil-{d}iszkur-ma 
4. {d}utu u3 {d}nin-tu li-ba#-al-li-t,u2-ka 
5. {disz}{d}utu-ma-gir# 
6. 1(disz) _ma2_ a-na ra-ka-bi-ia 
8. i-ip-pi2-sza-am 
$ rest broken 
@reverse 
$ beginning broken 
1'. [x] x x [...] 
2'. la ta-ka-al-la-szum# 


Primary publication: AbB 13, 114
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 085347
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510832
Transliteration:
&P510832 = AbB 13, 114 
#atf: lang akk 
@tablet 
@obverse 
1. a-na i-pa-[...] 
2. qi2-bi2-ma# 
3. um-ma ka-lu-mu-um#-[ma] 
4. a-nu-um-ma tup-pa-am# 
5. a-na {d}na-bu-um-x [...] 
6. usz-ta-bi-[lam] 
7. sza qa2-ti na-asz is#-[qi2-im] 
8. _1(asz) 1(barig) sze gur {gesz}ban2_ {d}utu li#-di#-in 
9. szum-ma qa2-ti na-asz is-qi2-im 
10. la i-di-na-ku mi-im-ma 
11. la te-le-qe2 
12. ki-ma ur-ra-am a-wa-tam 
13. e-li-ka la ra-szi-im 
14. e-pu-usz 
@reverse 
1. ur-ra-am ki-a-am 
2. i-qa2-bi-kum 
3. um-ma szu-u2-ma 
4. sa-na-qum-ma 
5. u2-ul is3-ni-qa2-am 
6. a-wa-tam e-li-ka i-ra-szi 
7. ta-ta-hi-id#-ma 
8. pa-nu-szu u2-ul ku-tu-x [(x)] 
9. a-na s,e-er sin-e-[ri-ba-am] 
10. a-li-ik-[ma] 
11. szu-mi zu-ku-ur#-szum#-[ma] 
12. it-ti-szu su-li-im# 
13. asz-szum sin-i-din-nam _dumu_ dingir-x [...] 
14. sza ta-asz-pu-ra-am 
15. isz#-tu i-na-an#-na# [_u4 n-kam_] 
@left 
1. ma-ah-ri-ka a-na-ku 
2. a-di a-la-kam du-bu-ub-szu la ta-ma-t,i3 


Primary publication: AbB 13, 115
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 085455
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510833
Transliteration:
&P510833 = AbB 13, 115 
#atf: lang akk 
@tablet 
@obverse 
$ beginning broken 
1'. x x [...] 
2'. tup-pi2 a-na {disz}x x [...] 
3'. usz-ta-bi-lam tup-pa-am szu-a-ti# 
4'. {disz}ha-bil-da-du li-t,e-hi 
5'. _1(asz) sze gur_ a-na ku-ru-ma-ti-ka 
6'. {disz}ha-bil-da-du-um usz-ta-bi-la-kum 
7'. it-ti _sze_-e sza-ni-im 
8'. {disz}dumu-{d}il-tim i-il-la-kam 
9'. am-mi-ni a-na szu-pu-szi-im 
10'. ni-di a-hi-im ti-szu 
@reverse 
1. a-na _erin2_-im sza it-ti 
2. {disz}ha-bil-da-du il-li-kam 
3. a-na szi-ip-ri-im szu-pu-szi-im 
4. ni-di a-hi-im la ta-ra-asz-szi 
5. _u4_-ma-ka-li-a-am i-na mu-uh-hi-szu-nu 
6. i-zi-iz _sahar hi-a_ 
7. ma-ah-ru-tim u3 wa-ar-ku-tim 
8. i-na _{gesz}tukul_ sza {d}utu a-ma-ha-ar-ka 
9. [(x)] x x-ar-szu-nu _u4_-ma-ka-li-am 
$ rest broken 
@left 
1. [...] x _sahar hi-a_ isz-tu u2-sza-li 
2. [... mi]-szi-il _erin2 sahar hi-a_ 
3. [...] x u2-sza-ar-ka-ab 


Primary publication: AbB 13, 116
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 086007
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510834
Transliteration:
&P510834 = AbB 13, 116 
#atf: lang akk 
@tablet 
@obverse 
1. a-na be2-li-i qi2-bi2-ma 
2. um-ma _{d}suen_-u2-ba-li-is-su2-ma 
3. {d}utu u3 {d}mar-tu asz-szum-ia da-ri-isz _u4_-mi 
4. li-ba-al-li-t,u3-ka 
5. a-wa-ti-ia gi-me-er-szi-na 
6. isz-tu _u4 5(disz)-kam_ mah-ri-ka 
7. t,e4-mi ga-am#-ra-am asz-ku-un 
8. ki-ma ti-du-u2 isz-tu _mu 3(disz)-kam_ 
9. ki-ma x [...] x x x [...] 
10. a-na _e2 {d}marduk_-AM-PI al-li-kam-ma 
11. um-ma a-na-ku-ma a-na _larsa{ki}_-ma 
12. lu#-ul#-li-ik-ma 
13. t,e4-mi lu-ud-di-isz-szum 
14. szi-pi im-ta-ra#-as,-ma 
15. [x] x [...] x-ti 
$ rest broken 
@reverse 
$ beginning broken 
1'. [...] 
2'. [...] 
3'. [...]
4'. x x x x x x x-ma 
5'. [x] x x x x x x-e 
6'. [x x] x x x x x-du-ma 
7'. [...] id-di-nu-kum 
8'. [...] 
9'. [...] 
10'. [...] 
11'. x am? x x x x x-ba-am 
12'. la#-qe2#-a-ku 
13'. u3 a-x x x x x-tum# 
14'. e-li-ia i-ba-asz-szi 


Primary publication: AbB 13, 117
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 086019
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510835
Transliteration:
&P510835 = AbB 13, 117 
#atf: lang akk 
@tablet 
@obverse 
1. a-na e2-ra-bi 
2. qi2-bi2-ma 
3. um-ma e2-a-an-pi4-szu-ma 
4. {d}utu u3 {d}marduk li-ba-al-li-t,u2-ka# 
5. asz-szum sza a-na szu-ul-mi-ia 
6. ta-asz-pu-ra-am 
7. sza-pa-ar-ka an-ni-a-am 
8. {d}marduk li-ra-am 
9. asz-szum x u2-ul ta-asz-pu-ra-am-ma# 
10. a-na be-li2-ia 
11. u2-ul aq-bi 
@reverse 
1. x x [...] 
$ rest broken 


Primary publication: AbB 13, 118
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 086031
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510836
Transliteration:
&P510836 = AbB 13, 118 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}utu-a-bi 
2. qi2-bi2-ma 
3. um-ma {d}utu-ra-bi-ma 
4. {d}utu u3 {d}nin-mar# 
5. li-ba-al-li-t,u3-u2-ka 
6. ki-i-ma a-li-ka-am 
7. be2-ri-a-ku 
8. szi-ip-ra-am u2-ul e-pu-usz-ma 
9. u2-ul u2-szi-li-a-ma 
10. u2-ul a-ka-al 
11. ki-i ta-aq-bi-a-am 
12. um#-ma at#-[ta-ma] 
13. [_a]-sza3#_-am i-hi#-[id] 
@reverse 
1. _a-sza3_-am sza {disz}gi#-mil#-[{d}...] 
2. i-zi-ba-ak-ku 
3. a-la-ka-am u2-ul i-le-i-ma 
4. u2-ul a-la-ka#-ku 
5. a-nu-um-ma {disz}li-pi2-it-esz18-dar 
6. at,-t,ar-da-ku-um 
7. _7(asz) 3(barig) 2(ban2) gur sze_ i-na me-sze#-qi2 
8. u3 su2-ti-ia mu-da-am-ma 
9. id-na-szu-um-ma 
10. li-ib-lam 
11. al-ka-am-ma 
12. ku-up-ra-am bu-qa-ma 
13. _3(ban2) 2(disz) sila3 sze#-gesz-i3_ 
14. id-<na>-ni-isz-szu 
$ single ruling 


Primary publication: AbB 13, 119
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 086032
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510837
Transliteration:
&P510837 = AbB 13, 119 
#atf: lang akk 
@tablet 
@obverse 
1. a-na sza-pi2-ri-ia 
2. qi2-bi2-ma 
3. um-ma {d}nanna-tum-ma 
4. {d}utu u3 {d}marduk asz-szu-mi-ia da-ri-isz _u4_-mi 
5. sza-pi2#-ri# li-ba#-al-li-t,u2 
6. asz-szum# _a-sza3 gu2-un_ sza a-na-ku 
7. u3 {d}na-bi-um-ma-lik ni-zu-zu 
8. {disz}{d}na-bi-um-ma-lik i-na# _a-sza3_-lim 
9. u3 me-e x u2-da-ar#-ri#-sa#-an-ni-ma 
10. u3 {disz}{d}suen-i-din-nam# _gal#-zu-ukken-na_ 
11. a-wi#-lum e x x x a-na x x x x [...] 
12. [...] x-ma 
$ rest broken 
@reverse 
$ beginning broken 
1'. a-na# ma#-har# [...] 
2'. it-ta-al#-[kam] 
3'. ki-ma sza-pi2-ri [i-du-u2] 
4'. pi2-ha-as-su2 an-ni-ki-a-am# 
5'. na-di-a-at-ti 
6'. sza-pi2-ri i-sza-ri-isz 
7'. li-pu-la-asz-szu-ma 
8'. ar-hi-isz li-it,-ru-da-asz-szu 
$ single ruling 


Primary publication: AbB 13, 120
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 086046
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510838
Transliteration:
&P510838 = AbB 13, 120 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}suen-u2-se2-el-li# 
2. qi2-bi2-ma 
3. um-ma dingir-szu-ib-ni-szu-ma 
4. {d}utu li-ba-al-li-it,-ka# 
5. asz-szum _sze_-e-im sza ta-asz-pu-ra-am 
6. ki-i-ma te-esz-mu-u2 
7. isz-tu ni-il-li-kam 
8. a-ah-hi a-bi-ia 
9. lu-uh-hu-szu-ni-a-ti 
@reverse 
1. asz-szum _sze_-e-im sza ta#-[asz]-pu-ra#-am# 
2. _sze_-a-am szu-a-ti 
3. a-na {d}utu-li-wi-ir 
4. ni-im-ta-da-ad-ma 
5. szum-ma di-gi-il-ka 
6. i-na _sze_-e-im sza i-na 
7. {iri}za-ku-rum ni-zu-zu 
8. t,e4-em-ka szu-up-ra-am-ma 
9. _sze_-a-am sza x x [...] 
10. lu-sza-bi#-[la-kum] 

Primary publication: AbB 13, 121
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 086060
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510839
Transliteration:
&P510839 = AbB 13, 121 
#atf: lang akk 
@tablet 
@obverse 
1. a-na# be#-li2-ia# 
2. qi2-bi2-ma 
3. um-ma {d}suen-ia-tu#?-ma 
4. a-wa-tam sza la x x x 
5. a-sza-pa#-ra#-kum 
6. a-wa-at# a-wi-li-im 
7. hu-UB-x _a-sza3_-im 
8. um-ma szar-ru-um-ma 
9. a-na-ku i-x x x 
@reverse 
1. a-wi-la-am 
2. sza i-na qa2-tim 
3. s,a-ab-tu-u2 
4. u3 NI TI IZ 
5. s,u2-ha-ra-am x x x 
6. szu-ri-a-am 
7. i-du-ku-u2-szu 
8. a-pu-tum 
9. ma-ru szi-ri-im# 
10. sza A GA LI# [(x)] 
11. wa-asz-bu-u2 
@left 
1. a-al-ka sza-li-im 
2. um-ma at-ta-ma am-x [(x)] 


Primary publication: AbB 13, 122
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 086277
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510840
Transliteration:
&P510840 = AbB 13, 122 
#atf: lang akk 
@tablet 
@obverse 
1. a-na# {d}marduk-na-s,i-ir _ugula dam-gar3_ 
2. [(x)] u3 _di-ku5-mesz_ zimbir{ki}-am-na-nu-um 
3. [qi2]-bi2-ma 
4. [um-ma] ta#-ri-ba-tum-ma 
5. [x x x (x)] x _ugula gidri_ sza _erin2_ a-wi-lum x [...] 
6. [ki-a-am iq]-bi#-a-am um-ma szu-ma 
7. [{disz}{d}marduk-na]-s,i-ir _ugula dam-gar3_ 
8. [(x) (x) u3 _di-ku5]-mesz_ zimbir{ki}-am-na-nu 
9. [_dub_ {d}...-na]-di#-in-szu-mi _sipa ab2 gu4 hi-a_ 
10. [u3 _dub_ ...]-nu _sipa u8 udu hi-a_ 
11. [(x) (x) u2]-ul# ik-nu-ku-ni-in-ni-ma 
12. [tup-pi2] ma#-ah#-ru-tim# 
13. [...] x x _ra2-gaba_ ki-ma u2-[...] 
14. [...] x it-te-x [...] 
15. [ki-a-am iq]-bi#-a-am# [...] 
$ rest broken 
@reverse 
$ beginning broken 
1'. [a-na be]-li2#-ia u2-ul AD# x [...] 
2'. a-wa-tum szi-i ki-i ep-sze-et [(x)] 
3'. t,e4-ma-am 
4'. pa-nam szu-ur-szi-a-nim-ma 
5'. a-na be-li2-ia lu-uq-bi 
$ single ruling 


Primary publication: AbB 13, 123
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 086283
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510841
Transliteration:
&P510841 = AbB 13, 123 
#atf: lang akk 
@tablet 
@obverse 
$ beginning broken 
1'. [...] x 
2'. [ki-a-am] iq#-bi-a-am um-ma szu#-ma 
3'. [asz-szum _udu] szu#-gi-na_ sza i-na _iti 1(disz)-kam_ 
4'. sza# [a-na] _e2_ an-nu-ni-tum 
5'. ne#-me-et#-ti {lu2#}[x x] x x x 
6'. sza wa-ar#-hi-sza-am# [a-na] _e2_ an-nu-ni-tum 
7'. i-na-ad-di#-[nu] 
8'. isz-tu _iti du6-ku3 udu# [szu-gi-na]_ 
9'. u2-ul i-na-ad#-di#-nu# [(x)] 
10'. _udu szu#-gi#-[na_ a-na _e2_ an-nu-ni-tum] 
11'. u2-ul i-il-la-[ku-nim?] 
12'. ki#-a-am iq#-bi#-[a]-am# 
@reverse 
1. {disz}{d}suen-la-ma-sa3-szu _agrig_ 
2. at,-t,ar-dam 
3. ki-ma is#-sa3-an-qa2-ak-ku-nu-szi#-[im] 
4. a-wi-le-e sza# _udu szu-gi-[na]_ 
5. ne-me-et-ta#-szu-nu 
6. a-na _e2_ an-nu-ni-tum la id-di#-nu# 
7. i-na _e2_ an-nu-ni-tum 
8. bi#-ir-ra-a-ma 
9. [a-na] babila2#{ki} 
10. [t,u2-ur-da?]-ni#-isz-szu-nu-ti 
$ rest broken 


Primary publication: AbB 13, 124
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 086403
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510842
Transliteration:
&P510842 = AbB 13, 124 
#atf: lang akk 
@tablet 
@obverse 
$ beginning broken 
1'. {d}utu u3 [{d}marduk asz-szu-mi-ia da-ri-isz _u4_-mi] 
2'. a-bi# [ka-ta li-ba-al-li-t,u2] 
3'. a-bi lu [sza-li-im lu ba-li-it,] 
4'. lu# da-ri 
5'. [_dingir_] na#-s,i-ir# [a-bi]-ia# re-esz da-mi-iq-ti-szu 
6'. [li]-ki#-il 
7'. [a-na szu]-lum# a-bi#-[ia asz]-pu-ra-am 
8'. [szu-lum a-bi-ia ma-har] {d}utu u3 {d}marduk 
9'. [lu da]-ri 
10'. [asz-szum ...] x x [...] 
11'. sza# i-na _e2_ [...] x 
12'. [asz]-pu-ra-am# 
13'. [_sze_]-am szu-a-ti it-ti {d}utu-na-s,i-ir _ugula dam-mesz_ 
14'. [a-na]-ku u2-sze-s,i-i u3 LU2 KA x MI 
15'. [a-na] _erin2-mesz_ al-li-ik 
16'. [ki]-ma# _erin2-mesz_ at,-ru-du x x [...] 
17'. [x]-at _e2-gal_ asz-szum _gu4 hi-a_ 
@reverse 
1. [...] x [...] 
2. [x x] TA? [x x x x (x)] 
3. [x x]-ia# ip-pa-ri-is#-ma 
4. [x x] _erin2#_-ia la wa-asz-bu-u2 
5. [x x x (x)] x x-u2 qa2-as-su u2-bi-il-ma 
6. [x x x x (x)] x u2-sze-lu-u2 
7. [x x x x x] i-pu-usz 
8. [x x] x [...] x-ra ma-ah-ri-ka 
9. [x (x)]-li-[x (x)] 
10. [ki-a]-am# iq-bi-a-am um-ma [szu-u2-ma] 
11. [x x] _ugula# dam-mesz#_-ma ki-ma pa-al-hi-im#-ma# 
12. [x (x)] usz-ta-na-ab-la-ak-ku-um 
13. [ki]-a-am iq-bi-a-am-ma 
14. {disz}dingir-szu-ib-ni a-na ma-ah-ri-ia at,-t,ar-dam 
15. _gu4 hi-a_-ia al-la-al-ma _a-sza3_ i ni-ri-isz# 
16. mi-in-de a-wi-la-tum _ku3-babbar#_ sza _dumu-munus lugal_ 
17. i-ta#-ar-ra-am-ma ga-ar#-x [...] 
$ rest broken 
@left 
1. [...]-ni# lu da-ri x [...] 
2. [...] isz-KU-u2 sza x [...] 


Primary publication: AbB 13, 125
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 086567
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510843
Transliteration:
&P510843 = AbB 13, 125 
#atf: lang akk 
@tablet 
@obverse 
1. a-na i3-li2-am-ta#-ha#-ar# 
2. qi2-bi2-ma 
3. um-ma li#-pi2#-it#-{d}mar-tu-ma 
4. {d}utu li#-ba-al#-li-it,-ka 
5. asz-szum {disz}ta-ri-bu 
6. a-na ni-pu#-ut# {disz}u-bar-esz18-dar 
7. a-wi#-lam# i-na# s,i#-bi#-it-tim 
8. ta-ka-al#-la#-[a] 
9. szum-ma a-wi-lum# szu#-u2 
10. im-tu-ut 
11. pi-ha-at a-wi-lim 
12. sza-a-ti i-na mu-uh#-[hi-ka] 
13. u2-ul i-sza-ak-ka#-nu 
@reverse 
1. a-wi-lum szu-u2 
2. _sza3 kaskal_-na-tim sza _an-za-gar3#-lugal#_ 
3. a-wi-lam sza-a-ti 
4. szu-s,i-a-asz-szu-u2-ma 
5. a-na s,e-ri-ia szu#-[ri-a-asz-szu] 
$ single ruling 


Primary publication: AbB 13, 126
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 086568
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet & envelope
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510844
Transliteration:
&P510844 = AbB 13, 126 
#atf: lang akk 
@tablet 
@obverse 
1. a-na# i3-li2-am-ta-ha-ar 
2. u3 szi-bu-ut a-lim 
3. qi2#-bi2-ma 
4. um-ma li-pi2-it-{d}mar-tu-ma 
5. {d}utu# li-ba-al-li-it,-ku-nu-ti 
6. _1(asz) gur sze_-a-am u3 _masz2-bi_ 
7. {disz}dingir-szu-ib-ni-szu 
8. a-na {d}i-szar-pa-dan-e-mu-qi2 
9. [i]-na-ad-di-in 
$ single ruling 
@reverse 
$ blank space 
@envelope 
@obverse 
$ broken 
@reverse 
$ blank space 
@seal 1 
1. li-pi2#-it#-{d}mar-tu# 
2. _dumu_ {d}marduk#-isz-me-[an-ni] 
3. ARAD {d}mar#-[tu] 


Primary publication: AbB 13, 127
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 086574
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510845
Transliteration:
&P510845 = AbB 13, 127 
#atf: lang akk 
@tablet 
@obverse 
1. a-na dingir#-szu-ib-ni-szu 
2. qi2-bi2-ma 
3. um-ma {d}suen-i-din-nam-ma 
4. {d}utu u3 {d}marduk li-ba-al-li#-[t,u2-ka] 
5. {disz}bi-la-nu _dumu_ ARAD-esz18-dar [...] 
6. a-na s,u2-ha-ar {disz}sze-ep-[{d}suen] 
7. sza i-la-ka-ak-kum# 
8. i-di-in 
9. u3 {d}marduk-gim-la-an-ni 
10. _ARAD_ sza {d}utu-ha-x [...] 
@reverse 
1. um-ma be-el-[szu-(u2)-ma (x) (x)] 
2. ARAD i x [...] 
3. _1(disz) ma-na ku3-babbar_ x [x x (x)] 
4. asz-TAB-BU x [x x x (x)] 
5. ARAD x [...] 
$ rest broken 


Primary publication: AbB 13, 128
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 086607
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: envelope
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510846
Transliteration:
&P510846 = AbB 13, 128 
#atf: lang akk 
@envelope 
@obverse 
1. a-na# a-wi-lim 
@seal 1 
1. ta-ri-bu#-[um] 
2. _dumu_ {d}suen-re-me-ni# 
3. ARAD {d}e2-[a] 


Primary publication: AbB 13, 129
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 087307
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510847
Transliteration:
&P510847 = AbB 13, 129 
#atf: lang akk 
@tablet 
@obverse 
1. [a-na] a-bi-ia# 
2. [qi2]-bi2-ma 
3. [um]-ma# {d}suen-na-s,i-ir-ma 
4. [{d}]utu# u3 {d}marduk da-ri-isz _u4_-mi 
5. a-bi ka-ta li-ba-al-li-t,u2 
6. a-bi at#-ta# [lu] sza#-al-ma-ta lu# ba#-al#-t,a-ta 
7. [_dingir_ na-s,i-ir a-bi-ia re-esz] a-bi#-ia# a-na# da-mi-iq-tim li-ki-il 
8. [...] x 
$ rest broken 
@reverse 
$ beginning broken 
1'. [x x x (x) (x)] x a-hi {d}suen#-x x x x 
2'. [x x x (x) (x)]-ba-ab-ba#-bu 
3'. [x x x x (x) (x)] x i-sza-ap-pa-ra-am-ma 
4'. [...] x x szu-a-ti 
5'. [...] x x tum? 
$ single ruling 


Primary publication: AbB 13, 130
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 087342
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510848
Transliteration:
&P510848 = AbB 13, 130 
#atf: lang akk 
@tablet 
@obverse 
1. be-li2 {d}[...] 
2. asz-szu-mi-ia# [li-ba-(al)-li-it,-ka] 
3. ki-ma te-esz#-[(te)-mu-u2] 
4. _dam-gar3-mesz_ wa-szi-ib babila2#[{ki}] 
5. a-lik i-di-ka _1(disz) gin2 ku3-sig17-ta_ 
6. il-qu2-u2-ma it-ti a-wi-lim 
7. sza-pi2-ri-szu-nu in-nam-ru 
8. qa2-ti _dam-gar3-mesz_ 
9. a-wi-lum i-ri-im-an-ni 
10. isz-me-e-ma 
@reverse 
1. um-ma szu-ma _dam-gar3-mesz_ 
2. sza pi2-i qa2-ti an-ni-tim 
3. am-mi-ni la tu-ga-am-me-ra-ma 
4. it-ti-ia la in-nam-ru 
5. an-ni-tam iq-bi-a-am#-ma# [(x)] 
6. i-na mu-uh2-hi-ia [x x x (x)] 
7. a-na babila2#[{ki} x x x (x)] 
8. it-x [...] 

Primary publication: AbB 13, 131
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 087443
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510849
Transliteration:
&P510849 = AbB 13, 131 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}suen-sze-me 
2. qi2-bi2-ma 
3. um-ma pi-sza-ah-dingir-ma# 
4. a-na mi-ni-im# 
5. sza-ha-am ti-el-qe2-ma 
6. la tu-te-ra-am# 
7. szu#-up-ra-am-ma 
8. sza-ha-am li-di-nu-ni 
@reverse 
1. ni-pa-ti-ka 
2. u2-sze-ri-ib 
3. sza-ha-am _e2-gal_-lum 
4. i-te-er-sza-an-ni 


Primary publication: AbB 13, 132
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 087643
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510850
Transliteration:
&P510850 = AbB 13, 132 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}suen-u2-se2-el-li# 
2. qi2-bi2-ma 
3. um-ma {d}suen-pa-t,e4-er-ma 
4. {d}utu li-ba-al-li-it,-ka 
5. a-nu-um-ma {d}iszkur-ta-a-a-ar 
6. at,-t,ar-da-ak-kum 
7. x x x sza tu-ha-al-x [x] 
8. sza ma-ah-ri-ka 
9. pi-iq-da-asz-szu-um-ma 
@reverse 
1. i-na ku-nu-uk-ki#-ka# 
2. [ku]-un-ka-am#-ma# 
3. szu#-bi-[la]-am# 
$ single ruling 


Primary publication: AbB 13, 133
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 087907
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510851
Transliteration:
&P510851 = AbB 13, 133 
#atf: lang akk 
@tablet 
@obverse 
1. [a-na ...] 
2. qi2#-bi2#-ma 
3. um-ma du-hi-sza-tum-ma 
4. {d}utu u3 {d}marduk li-ba-al-li-t,u2-<ka> 
5. _ku3-babbar_ ad-di-in 
6. u2-ne2-tim u3 ka-ni-kam 
7. isz-tu _e2-gal_ usz-te-s,u2-u2 
@reverse 
1. u3 ka-ni-kam# 
2. ma-ah-ri-ia 
3. a-di ta-al-la-kam 
4. ak-ta-la 
5. ma-ha-ar-ka 
6. [x] x x-ia ki-a-am iq-bi 
7. [...] x x 
$ rest broken 


Primary publication: AbB 13, 134
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 088391
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510852
Transliteration:
&P510852 = AbB 13, 134 
#atf: lang akk 
@tablet 
@obverse 
1. [a-na] a-bi-[ia] 
2. qi2#-bi2-[ma] 
3. um-ma i3-li2-tu-ra-am#-ma# 
4. {d}utu _mu 1(szar2)-kam_ li-ba-al-li-it,-ka 
5. ma-ri-a-ka sza-al 
6. ki-ma al-pa-am la i-szu-u2 
7. al-pa-am sza ta-asz-pu-ra-am 
8. um-ma at-ta-a-ma 
9. al-pa-am sza szi-ip szar-ri-im 
10. u2-sza-asz-sza-qu2-ka 
11. a-na-an-di-ik#-[kum] 
12. szum-ma i-na x [x x (x) (x)] 
13. x [...] x [...] 
$ 2 lines broken 
@reverse 
1. al-pa-am li-x [x x (x) (x)] 
$ single ruling 
$ blank space 


Primary publication: AbB 13, 135
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 088479
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510853
Transliteration:
&P510853 = AbB 13, 135 
#atf: lang akk 
@tablet 
@obverse 
1. a-na i3-li2-tu-ra-am 
2. qi2-bi2-ma 
3. um-ma li-pi2-it-esz18-dar 
4. {d}utu li-ba-li-it,#-[ka] 
5. iq-bu-nim-ma# 
6. ah-du# ki-i-ma 
7. a-na-ku-u2 al-li-ku 
8. te-pu-usz 
9. ki-i-ma tu-ba-li-t,a2-an-[ni] 
10. szu-ur-di-i-ma 
@reverse 
1. [x x x (x)]-ba-AD 
2. [...] x x x 
3. [...] x 
4. [...]-ni-im 
5. [...] x-ba?-bu 
$ broken 
1'. tu#-te-er# 


Primary publication: AbB 13, 136
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 088581
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510854
Transliteration:
&P510854 = AbB 13, 136 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}suen-ma-gir 
2. qi2-bi2-ma 
3. um-ma {d}iszkur-szar-rum-ma 
4. {d}utu u3 {d}marduk 
5. li-ba-al-li-t,u2-ka 
6. a-nu-um-ma 
7. {disz}szar-rum-{d}iszkur# 
8. at,-t,ar-da-kum 
@reverse 
1. [n] 1/2(disz) _gin2 ku3-babbar_ sza# {d}iszkur 
2. i-di-szum 
3. lu it-tum um-ma at-ta-a-ma 
4. wa-ar-ka-at 
5. i-si2-nu-um 
6. a-na _sza3-gu4{ki}_ 
7. a-la-ak 
$ single ruling 


Primary publication: AbB 13, 137
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 088676
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510855
Transliteration:
&P510855 = AbB 13, 137 
#atf: lang akk 
@tablet 
@obverse 
1. a-na s,a-ab-rum 
2. qi2-bi2-ma 
3. um-ma mu-ha-du#-um-ma 
4. {d}utu li-ba-al-li-it,-ka 
5. asz-szum 1(disz) _udu-nita2_ 
6. sza ta-aq-bi-a-am 
@reverse 
1. 1(disz) _udu-nita2_ ka-ab#-ra# 
2. a-na# x x x PA KU 
3. sza AN x x [...] 
4. id#-na-asz-szum 
5. ki-ma ta-na-di-nu-szum 
6. ma-am-ma-an 
7. la i-ma-ar 


Primary publication: AbB 13, 138
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 088726
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510856
Transliteration:
&P510856 = AbB 13, 138 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}suen-he2-u3-tu 
2. qi2-bi2-ma 
3. um-ma ma-an-nu-um-ba-lum-{d}utu-ma 
4. {d}utu u3 {d}gu-la 
5. a-na da-ri-a-tim 
6. li#-ba-al-li-t,u3-ka 
7. a-nu#-um-ma {disz}na-bi-{d}utu 
@reverse 
1. _1(asz) gur sze#_-a-am# i-na _{gesz#}ma2#_ 
2. [x] x KA lum 
3. i-ka-na-kam-ma 
4. a-na larsa{ki} ub-ba-al 
5. qi2#-bi-ma 
6. la# i-ma-ki-su2-szu 
$ single ruling 


Primary publication: AbB 13, 139
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 094168
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510857
Transliteration:
&P510857 = AbB 13, 139 
#atf: lang akk 
@tablet 
@obverse 
1. [a]-na# {d}marduk#-na-s,i-ir 
2. [qi2]-bi2#-[ma] 
3. [um]-ma# a-bi-[e]-szu#-uh-ma 
4. [{disz}]ib#-ni-{d}[x] x x ki#-a-am# 
5. [(x) (x) (x)] [u2]-lam#-mi-da#-an-[ni] 
6. [um-ma] szu#-[u2]-ma 
7. [a]-na {d}marduk-na#-[s,i]-ir# _ugula dam-gar3_ 
8. [asz]-szum _szah_ ne-me#-et-[ti-szu] sza# _iti gan-gan-e3_ 
9. a-na babila2#{ki} 
10. szu#-bu-li-im# 
11. asz-ta-na-ap#-pa-ar-szum#-ma 
12. _szah_ ne-me#-et-ti-szu 
13. a-na babila2#{ki} 
14. u2-ul u2-sza-bi-lam 
15. ki-a-am u2-lam-mi-da-an-ni 
16. a-na mi-nim a-di i-na-an-na 
17. _szah#_ ne-me-et-ti-ka sza _iti gan#-[gan-e3]_ 
18. [a-na] babila2{ki} 
@reverse 
1. la# tu-sza-bi-lam 
2. ki#-ma tup-pi2 an-ni#-a-am ta-am-ma-ru 
3. _szah_ ne-me-et#-ti#-ka sza _iti gan-gan-e3_ 
4. a-na babila2{ki} 
5. szu-bi-lam 
$ single ruling 


Primary publication: AbB 13, 140
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 094338
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510858
Transliteration:
&P510858 = AbB 13, 140 
#atf: lang akk 
@tablet 
@obverse 
1. [a-na a-wi]-lim sza {d}marduk u2-ba-al-la#-[t,u2-szu] 
2. qi2-bi2-ma 
3. um-ma pir-hi-{d}mar-tu-ma 
4. {d}utu u3 {d}marduk da-ri-isz _u4_-mi li-ba-al-li#-t,u2#-ka 
5. lu sza-al#-ma#-a-ta lu ba-al-t,a-ta# 
6. _dingir_ na-s,i-ir-ka re-esz-ka a-na da#-[mi]-iq#-tim 
7. li-ki-il 
8. szu-lum-ka ma-har {d}utu [u3 {d}marduk] 
9. lu da#-ri# 
10. asz-szum _a-sza3 dumu#-munus_ {d}marduk-la#-ma#-[sa3-szu] 
11. sza ta-asz-pu-[ra-am] 
12. a-na a-wi-lim isz-me-{d}suen a-hi-sza# 
13. aq-bi 
14. [x x] x x-bi#-im-ma 
$ rest broken 
@reverse 
$ beginning broken 
1'. sza#-la#-ma# x [...] 
2'. i-na szu-ul-mi-im u3 ba-la-t,i-im 
3'. al-kam-ma 
4'. bu-nu nam-ru-tum sza {d}marduk i-li a-li-ka 
5'. li-im-hu-ru-ka 
6'. ba#-al-t,u2-ut-ka u3 sza-al-mu-ut-ka# 
7'. al-kam-ma 
8'. lu-mu-ur-ka# 
$ single ruling 

Primary publication: AbB 13, 141
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 094425
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510859
Transliteration:
&P510859 = AbB 13, 141 
#atf: lang akk 
@tablet 
@obverse 
1. a-na a-wi-lim 
2. qi2-bi2-ma 
3. um-ma {d}marduk-na-s,i-ir-ma 
4. {d}utu u3 {d}marduk da-ri-isz _u4_-mi li-ba-al#-[li-t,u2-ka] 
5. lu sza-al-ma-ta lu ba-al-t,a!(MA)-ta 
6. _dingir_ na-s,i-ir-ka re-esz-ka a-na da-mi#-[iq-tim] 
7. li-ki-il# 
8. a-na szu-ul-mi-ka asz-pu-ra-[am] 
9. szu-lum-ka ma-har {d}utu# [u3 {d}marduk lu da-ri] 
10. asz-szum sza ta-asz-pu#-[ra-am um-ma at-ta-ma] 
11. x AH hu x [...] 
12. [x] x x [...] 
$ rest broken 
@reverse 
$ beginning broken 
1'. sza# x [...] 
2'. la ta-x [...] 
3'. u3 a-na _szuku_ [...] 
4'. ni-di a-hi-im# [la ta-ra-(asz)-szi] 
$ single ruling 


Primary publication: AbB 13, 142
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 094433
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510860
Transliteration:
&P510860 = AbB 13, 142 
#atf: lang akk 
@tablet 
@obverse 
1. a-na a-bi-ia qi2-bi2-ma 
2. um-ma ib-ni-{d}mar-tu-ma 
3. {d}utu u3 {d}marduk asz-szu-mi-ia da-ri-isz _u4_-mi-im 
4. a-bi li-ba#-al#-li-t,u2 
5. asz-szum _dumu-mesz e2_ [{d}]suen# sza ia-ad-ru-uk-li-im 
6. u3 {d}marduk-mu-ba-li2-it, sza a-bi isz-pur-am 
7. i-na _dumu-mesz e2_ {d}suen sza ia-ad-ru-uk#-li-im 
8. [{disz}]a-pil-er-s,e#-tim#-ma ma-ah-ri-ia 
9. [{disz}]bad3{ki}-ga-mil# ma-har a-bi-ia 
10. [{disz}]a-pil-er-s,e-tim usz-ta-ri-a-am 
11. _[x]-mesz_ [...] 
$ rest broken 
@reverse 
$ beginning broken 
$ blank space 


Primary publication: AbB 13, 143
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 094457
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510861
Transliteration:
&P510861 = AbB 13, 143 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}suen-u2-se2-li 
2. qi2-bi2-ma 
3. um-ma e2-a-la-ma-si2-ma# 
4. {d}utu# u3 {d}x x x x 
5. asz-szum-ia li-ba-al-li-t,u2#-ka# 
6. a-wi-lum {disz}li-pi2-it-e2-a 
7. u2-ul na-ka-ra-am 
8. a-na {disz}i-bi-{d}suen qi2-bi2-ma# 
9. di-in-szu ki-ma sza a-na-ku# 
@reverse 
1. [az]-za-az#-zu# 
2. li#-di#-in# 
3. u3 at-ta-a-[ma] 
4. [a-na] a-li-szu la ta#-[(al)-la-ak] 
5. [a]-wi-lum it#-ta-al#-[kam] 
6. tup-pi2 a-wi-lim# 
7. a-na {disz}i-bi-{d}suen <<u2-sza#>> 
8. u2-sza-bi-lam 
9. a-ah-ka e-li-szu 
10. la ta-na-an-di 
$ single ruling 


Primary publication: AbB 13, 144
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 094520
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510862
Transliteration:
&P510862 = AbB 13, 144 
#atf: lang akk 
@tablet 
@obverse 
$ beginning broken 
1'. [x x (x)] x [x (x)] x [...] 
2'. [x x (x)] i-mu-ur-ma x [x x x x (x)] x [...] 
3'. [x x (x)] tup#-pa-ti szi-na#-ti# [x x x x] x-ma 
4'. a-na ma-har be-li2-ia [x x x x]-bi 
5'. i-na sza-al {d}utu ra-i-im be-[li2-ia x x (x)]-a-ma# [...] 
6'. [asz]-szum _4(disz) ma-na 1(u) gin2 ku3-babbar_-ia [x x x] il#-x [...] 
7'. a-na szu-a-ti be-li2 u2-ul it#-[x x x] x [...] 
8'. i-na t,a-a-at ra-ma-ni-ia i-GA#-x x x [...] 
9'. a-x-tu sza-ad-da-aq-da _e2_-ti im-szu-[uh?] 
10'. wa-ar-ka-at _e2_-ia sza im-ma-asz-hu be-li2 x [...] 
11'. sza-at-tam {disz}ku-ub-bu-rum {disz}s,i-li2#-{d}utu {disz}x x x [...] 
12'. u3 hu-za-lum 1(disz) _ab2_ il-te-qu2-u2 UG?-du-u2 [...] 
13'. sza-ad-da-aq-da x x x x a-na e-re-szi-im u2-ul# [...] 
$ rest broken 
@reverse 
$ broken 


Primary publication: AbB 13, 145
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 095839
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510863
Transliteration:
&P510863 = AbB 13, 145 
#atf: lang akk 
@tablet 
@obverse 
1. [a]-na# be2-li-ia# 
2. qi2-bi2-ma 
3. um-ma ma-ri-{d}mar-tu-ma 
4. {d}utu u3 {d}mar-tu 
5. a-na da-ri-a-tim li-ba-al-<li>-t,u2#-[ka] 
6. {disz}bi-it-ti-i usz-te-s,u2-ni 
7. a-na qa2-ti-i-sza s,a-ba-a-tim# 
8. a-wi#-lam# asz-ta-pa-ar 
9. {disz}i3-li2-ip#-pa#-al-sa3-am# 
10. isz-tu i-na-an-na _u4 5(disz)-[kam]_ 
11. u2-szi-s,u2-ni-im 
12. u3 i3-li2-i-qi2-sza-am 
13. a-na _sze-gesz-i3_ sza TE ER x x-s,i-im 
14. sza-ki-in 
15. _ab2# gu4 hi-a_ u3 x x-tim 
16. UG? BA? ta-a-nu 
17. {disz}a-hi-ti wa-aq-ra-am 
18. it-ti ni-pa-a-ti 
@reverse 
1. x x x da-a x x [...] 
2. it-ba-lu-u2-nim# 
3. isz-tu _lugal aga_ u2-s,a-mi#-du# 
4. {disz}{d}na-bu-um-[x x] x-a 
5. it-ba-a-[x] x 
6. asz-szum _ab2 gu4 hi-a_ [...] x [...] 
7. id-na-szi-na-a-ti x [x] x [...] 
8. x [...] 
9. x x x [...] 
10. MA x x [...] 
11. i-na a-li-im [x x (x)] im# x [...] 
12. _gu4_ u3 _udu hi-a_ x x x x 
13. _sipa_ sza ta-qa2-ab-bu-u2 
14. im-tu-ut-ma an-nu-um x 
15. i-na mu-uh-hi-szi-na li-DI?-in 
16. ta#-na-sa3-ah-szi-na-ti 
17. [u2]-ul im-gu-ra-an-ni 
18. _a-sza3 ki-kal_ s,u2-pi2-a-asz-szu-um# 
19. x x a x MA LI? x x _a-sza3 ki-kal_ mi-x [...] 
20. _ab2 gu4 hi-a_ sza {d}utu x x x ka a x [...] 
21. [(x)] x i-na-ZA-x [...] 


Primary publication: AbB 13, 146
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 096651
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510864
Transliteration:
&P510864 = AbB 13, 146 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}suen-ni-i-szu 
2. um-ma lu-usz-ta-mar-{d}utu 
3. {d}utu u3 {d}asznan 
4. asz-szum-ia a-na da-re-tim 
5. li-ba-al-li-t,u3-u2-ka 
6. a-nu-um-ma li-wi-ir-esz18-dar 
7. it-ta-al-ka-ku 
@reverse 
1. _2(ban2) i3-gesz_ i-di-szu 
2. ri-qu2-su2 la i-tu-ra 
$ single ruling 


Primary publication: AbB 13, 147
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 097516
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510865
Transliteration:
&P510865 = AbB 13, 147 
#atf: lang akk 
@tablet 
@obverse 
1. _2(disz) sila3 za3-hi-li-a{sar}_ 
2. u3 _1/3(disz) numun-x{sar}_ 
3. {disz}ta-ri-bu 
4. szu-bi-lam 
$ single ruling 
$ blank space 
@reverse 
$ blank space 

Primary publication: AbB 13, 148
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 100165
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20100806 cdliadmin_bdtns
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 21198/zz00214r3g
Composite no.: 
Seal no.: 
CDLI no.: P412801
Transliteration:
&P412801 = AbB 13, 148 
#atf: lang akk 
@tablet 
@obverse 
1. a-na a-[bi-ia] 
2. qi2-[bi2]-ma# 
3. um-ma {d}suen-na-di-[in-szu-mi]-ma# 
4. {d}utu u3 {d}marduk da-ri-isz# [_u4_-mi-(im) a-bi ka]-ta 
5. li-ba-al-li#-[t,u2] 
6. a-bi at-ta lu sza#-al-ma-ta# [lu ba-al]-t,a#-ta 
7. _dingir#_ na-s,i-ir a-bi-ia ka-ta re-esz#-ka a-na da-mi#-iq#-[tim] 
8. li#-ki-il 
9. [a-na] szu#-lum# a-bi#-ia ka#-ta# asz-pu-ra-am#  
10. [szu-lum a-bi-ia ka-ta] ma#-har# {d}utu u3 {d}marduk# 
11. [lu da]-ri# 
$ rest broken 
@reverse 
$ beginning broken 
1'. x x x x x-ka# i-di-in 
2'. an-ni-tam aq-bi-a-am 
3'. ki-ma BI-SZE {d}marduk ra-i-mi-ka# 
4'. ta-ad-di-nu 
5'. a-na ba-la-t,i-im tu-usz-te-sze-er-ma 
6'. it-ti a-bi-ia u2-ul usz-sza-ab 
7'. i-na-an-na ARAD-{d}tasz-me-tum ARAD-ka 
8'. at,-t,ar-dam 
9'. i-na a-li-ia _gu2-gal_ u3 _gu2 nig2-ar3-ra_ 
10'. u2-ul i-ba-asz-szi-a 
11'. _2(ban2) gu2-gal_ u3 _1(ban2) gu2 nig2-ar3-ra_ 
12'. a-bi li-sza-bi-lam 
13'. a-bi i-dam la u2-sza-ar#-[sza ...] 
14'. i-na an-ni-tim e-pe2-esz a-bi-[ia ...] 
@envelope 
$ broken 
$ blank space 
@seal 1 
$ (uninscribed) 


Primary publication: AbB 13, 149
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 103074
Accession no.: 1910-10-08, 0002
Provenience: Kish (mod. Tell Uhaimir)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20100806 cdliadmin_bdtns
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 21198/zz002109j4
Composite no.: 
Seal no.: 
CDLI no.: P413146
Transliteration:
&P413146 = AbB 13, 149 
#atf: lang akk 
@tablet 
@obverse 
1. a-na gi-mil-{d}marduk# 
2. sza {d}marduk u2-ba-al-la-t,u2-szu 
3. qi2-bi2-ma 
4. um-ma {d}na-bi-um-na-s,i-ir-ma 
5. {d}utu u3 {d}marduk asz-szu-mi-ia da-ri-isz _u4_-mi 
6. li-ba-al-li-t,u2-ka 
7. {d}marduk asz-szu-mi-ia 1(disz) szu-szi i-na _an_-e 
8. szum-ka dam-qa2-am li-iz-kur# 
9. _1(esze3) GAN2 a-sza3_ i-na ha-bu-uz{ki} u2-sze-s,i-ma 
10. s,e-eh-ri a-na me-e s,a-pe2-e-szu 
11. at,-ru-ud-ma ud-da-ar-ri-su-szu 
12. u3 _dumu lu2_ qe2-er-bi at,-ru-ud-ma ud-da-ar-ri-su-szu 
13. ki-ma ti-du-u2 we-du-tam at-ta-la-ak 
14. a-la-ka u3 _e2_ na-ap-t,a-ri-ia 
15. [na]-sza#-a u2-ul e-le-i 
16. [szum]-ma ta-ga-am-mi-la-an-ni# 
$ single ruling 
@reverse 
1. [a-nu]-um#-ma li-wi-ra-szum 
2. at,#-t,ar-da-ak-ku-usz-szu 
3. isz-te-en sza ta-ta-ak-ka-lu-szu 
4. it-ti-szu t,u2-ru-ud-ma 
5. _a-sza3_-am szu-a-ti me-e li-is,-pa-asz-szu 
6. ki-ma ti-du-u2 sza-at-tum it-ta-la-ak 
7. _gu2-un a-sza3_ i-na mu-uh-hi-ia la isz-sza-ka-an 
8. la tu-usz-ta-a 
9. ki-ma ta-ag-da-na-am-mi-la-an-ni 
10. gi-im-la-an-ni 
$ single ruling 


Primary publication: AbB 13, 150
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 103181
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20100806 cdliadmin_bdtns
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 21198/zz00217wk0
Composite no.: 
Seal no.: 
CDLI no.: P413253
Transliteration:
&P413253 = AbB 13, 150 
#atf: lang akk 
@tablet 
@obverse 
1. a-na sza-pi2-ri-ia 
2. qi2-bi2-ma 
3. um-ma x [x] x x-ma 
4. {d}utu# [li-ba-al-li-it,]-ka# 
$ rest broken 
@reverse 
$ beginning broken 
1'. [...] x x x [...] 
2'. [...] x RI i-ra-asz-szi 
3'. x x x a-na sza-pi2#-ri#-ia# [...] 
4'. asz-tap-ra#-[am] 
5'. 2(disz) {gesz}[...] 
6'. 4(disz) {gesz}LI-x [(x) (x)] 
7'. 4(disz) _{gesz}nig2-x_ [...] 
8'. 2(disz) {gi}me-es-su2 x [(x) (x)] 
9'. ki-ma a-mu-ru 1(disz) AN KA x [x (x)] 
10'. ma-ah-s,a-am AB x [(x) (x)] 
11'. asz-szum _a-sza3_ {iri}eresz2{ki} 
12'. a-na s,u2-ha-ri-im sza {disz}{d}mar-tu-na-s,ir 
13'. _i7_ a-na sza-DI-im u2-ki-il-ma 
14'. u2-ul im-hu-ra-an-ni 
15'. um#-ma szu-u2-<ma> _a-sza3_-lam a-ka-ar-ra#-ar# 
16'. e-ri-isz a-na _sag-ARAD_ ki-a-am aq-bi 
17'. um#-ma a-na-ku-ma a-na ka-ra-ri-im 
18'. la ta-na-ad-di-in 
@left 
1. [_a]-sza3#_-lam a-na x-li-NI-x [...] 
2. at-ta-di-in u3 ka-ni-kam# usz-te-zi#-[ib-szu? ...] 
$ rest broken 

Primary publication: AbB 13, 151
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 103699
Accession no.: 
Provenience: 
Excavation no.: 
Period: Early Old Babylonian (ca. 2000-1900 BC)
Dates referenced: Sumu-la-El.00.00.00
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20100806 cdliadmin_bdtns
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 21198/zz0020vnzz
Composite no.: 
Seal no.: 
CDLI no.: P413547
Transliteration:
&P413547 = AbB 13, 151 
#atf: lang akk 
@tablet 
@obverse 
1. a-na ba-la-s,u2-ra-ma 
2. u3 su-mu-la-el3-na-da 
3. qi2-bi2-ma 
4. um-ma nu-t,u2-up#-tum-ma 
5. a-nu-um#-ma# 
6. {disz}lu2-[...] 
7. u3 a-[...] 
8. at,#-[t,ar-da-ak-kum] 
9. _u8 udu hi-a_ x x x x BUR KUR i 
10. _[ab2] gu4 hi-a_ sza HI A [...] 
@reverse 
$ beginning broken 
1'. x x x [...] 
2'. la UB-BU-[x x x (x)] 
3'. ma-la i-qa2-ab#-[bu-u2 (x) (x)] 
4'. _{gesz}apin? hi-a_ x x a 
5'. szu-um-x-x-qa2-szu-nu-ti-ma 
6'. li-[ib]-lu#-nim 
$ single ruling 


Primary publication: AbB 13, 152
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 103702
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20100806 cdliadmin_bdtns
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 21198/zz0020vp20
Composite no.: 
Seal no.: 
CDLI no.: P413550
Transliteration:
&P413550 = AbB 13, 152 
#atf: lang akk 
@tablet 
@obverse 
1. a-na ka2-gi4-x [x (x)] 
2. u3 x [...] 
3. qi2#-bi2-[ma] 
4. um-ma na-ra-am-[...] 
5. {d}utu u3 {d}marduk li#-[ba-(al)-li-t,u2-ku-nu-ti] 
6. 2(disz) _tug2 hi-a ugula gidri_ sza x [...] 
7. usz-ta-bi-la-ak-ku-nu-[szi-im] 
8. n _sila3 numun ga-rasz{sar}_ [...] 
9. [1(disz)] _{gesz}mar uruda ugula gidri_ [...] 
10. usz#-ta#-bi#-la-ku#-nu#-szi-im# 
11. [...] x{sar} 
$ single ruling 
@reverse 
1. szum#-ma ta-sza-x [...] 
2. [x] x _a-sza3_-szu x [...] 
3. [...] ga#?-ar [...] 
$ single ruling 


Primary publication: AbB 13, 153
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 103705
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20100806 cdliadmin_bdtns
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 21198/zz0020vp5j
Composite no.: 
Seal no.: 
CDLI no.: P413553
Transliteration:
&P413553 = AbB 13, 153 
#atf: lang akk 
@tablet 
@obverse 
1. a-na a-wi-lim sza {d}marduk u2-ba-al-la-t,u2-szu 
2. qi2-bi2-ma 
3. um-ma {d}marduk-dingir-ma 
4. {d}utu u3 {d}marduk da-ri-isz _u4_-mi 
5. li-ba-al-li-t,u2-ka 
6. [lu] sza#-al-ma-ta lu ba-al-t,a-ta 
7. [_dingir_ na]-s,i#-ir-ka re-esz-ka a-na da-mi-iq-tim# 
8. [li]-ki-il 
9. [a-na szu-ul]-mi-ka asz-pu-ra-am 
10. [szu]-lum#-ka ma-har {d}utu u3 {d}marduk 
11. lu da-ri 
12. _1/2(disz) gin2 ku3-babbar_ sza ar-du ha-al-gi-tu-u2 
13. sza# qa2-ta-am 
@reverse 
1. ta-as-su2-hu 
2. a-na {d}i-szum-na-s,i-ir i-di-in 
3. szum-ma _ku3-babbar_ la qu2-ur-ru-ba-ak-ku 
4. [_sze_]-am sza _1/2(disz) gin2 ku3-babbar_ 
5. i-di-in-szu 
6. [tup-pi2] at-ta-di-in-szu 
7. [x (x)] ID# me-he-er tup-pi2-ia 
8. szu#-bi-lam 
$ single ruling 


Primary publication: AbB 13, 154
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 103710
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20100806 cdliadmin_bdtns
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 21198/zz0020vpb4
Composite no.: 
Seal no.: 
CDLI no.: P413558
Transliteration:
&P413558 = AbB 13, 154 
#atf: lang akk 
@tablet 
@obverse 
1. a-na# {d}na-na-a-ib-ni-szu 
2. qi2-bi2-ma 
3. um-ma dingir-szu-ib-ni-szu-ma# 
4. a-nu-um-ma s,u2-ha-ar {d}suen-da-a-a-ni 
5. at,-t,ar-da-ak-kum 
6. 1(disz) x SA x NI PA 
7. a-na# x x x x pi2-qi2-id#-ma 
8. [a-na s,u2-ha]-ar {d}suen-da-a-a-ni# li#-id-di-in 
9. [i]-na# mu-szi-im# 
$ single ruling 
@reverse 
1. i-na _edin#_ li-bi-it 
2. u3 ki-ma x-pu-UD-ma 
3. {disz}ta-ri-bu ma-ah-ri-ka 
4. ak-lu-u2 
5. a-na {d}marduk-ni-szu qi2-bi-ma 
6. la i-na-ak-ku-ud 
7. i-na ti-bi-im ma-ah-ri-ka 
8. ni-nu 
$ single ruling 


Primary publication: AbB 13, 155
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 103712
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20100806 cdliadmin_bdtns
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 21198/zz0021643p
Composite no.: 
Seal no.: 
CDLI no.: P413560
Transliteration:
&P413560 = AbB 13, 155 
#atf: lang akk 
@tablet 
@obverse 
1. a-na GA-ti-lu-x [(x)] 
2. qi2-bi2-ma 
3. um-ma u-bar-{d}urasz-ma 
4. isz-tu _u4 1(u)-kam_ 
5. a-na 1(u) _lu2-mesz_ 
6. ha-am-szi-szu asz-tap-ra-kum 
7. u3 i-na i-in a-wi-lim 
8. ki-ma sza isz-tu _u4 n-kam#_ 
9. mah-ri-ia wa-asz-bu 
10. 3(disz) _lu2-mesz_ il-li-ku-nim-ma 
11. u3 it-ta-al-ku 
12. [(u3) mi-im]-ma# a-sza-lu-ka 
@reverse 
1. [...] 
2. [... asz]-pur# 
3. [a-na mi-nim] la ta-na-di-nam 
4. [an]-ni-tam la an-ni-tam 
5. [szu-up]-ra-am-ma 
6. a-na a-wi-lim lu-usz#-pur 
7. u3 _ad-kup4_ mah-ri-ia 
8. u2-ul i-ba-asz-szi 
9. a-di a-wi-lum i-la-kam-ma 
10. 1(disz) _ad-kup4_ a-na qa2-ti-ia 
11. i-na-di-nam 
12. 1(u) _{gi}dusu hi-a_ 
13. 1(disz) _{gi}ma-an-sim_ 
14. 1(disz) _{gi}ma-an-sim nig2-ar3-ra#_ 
15. 1(disz) {gi}KAB-LU-tim [(x)] 
16. la ta-ka-la-a-am 


Primary publication: AbB 13, 156
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 103720
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20100806 cdliadmin_bdtns
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 21198/zz002164ct
Composite no.: 
Seal no.: 
CDLI no.: P413568
Transliteration:
&P413568 = AbB 13, 156 
#atf: lang akk 
@tablet 
@obverse 
1. a-na gi-mil#-[{d}...] 
2. qi2-bi2-[ma] 
3. um-ma nu-ur2-i3-li2-szu#-[ma] 
4. {d}utu u3 {d}marduk li-ba-al-li#-[t,u2-ka] 
5. {disz}li-pi2-it-{d}en-lil2 _um-mi-a_ 
6. ki-a-am iq-bi-a-am um-ma szu-ma 
7. {disz}{d}en-lil2-mu-ba-li2-it, a-hi 
8. i-na kisz{ki} i-sa-an-qa2-ma 
9. sza-pi2-ir kisz{ki} 
10. a-na ba-ab-bi-lu-tim sza _sze-gesz-i3_ 
11. is,-ba-as-su2-ma 
12. ik-ta-la-szu# 
@reverse 
1. [ki-a]-am# iq-[bi-a-am] 
2. [x] u3 x [...] 
3. [...] x wa-asz-bu 
4. [...] x x 
5. [...] 
6. [...]-{d}en-lil2 
7. [...] x-ri 
8. [...] x iq-bi-a-am# x [x] ka#-lu-u2 
9. [...] x _sze-gesz-i3_ [x (x)] 
10. [x] x x i-na x x [...] 
$ about 2 lines broken 


Primary publication: AbB 13, 157
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 103722
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20100806 cdliadmin_bdtns
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 21198/zz002164fv
Composite no.: 
Seal no.: 
CDLI no.: P413570
Transliteration:
&P413570 = AbB 13, 157 
#atf: lang akk 
@tablet 
@obverse 
1. [a-na ...]-ia 
2. [qi2]-bi2#-ma 
3. [um-ma] ib-ni-{d}suen-ma 
4. [{d}utu] u3 {d}marduk asz-szu-mi-ia 
5. [li]-ba#-al-li-t,u2-ka 
6. [lu] ba#-al-t,a!(ID)-a-ta 
7. [lu] sza#-al-ma-ta 
8. [lu] da#-ri-a-ta 
9. [_dingir_ na]-s,i#-ir-ka 
10. [s,i-bu]-tam 
11. [a-a ir]-szi 
12. [a-na szu-ul]-mi#-ka 
13. [asz-pu]-ra#-am 
14. [szu-lu-um-ka szu]-up#-ra-am 
15. [...] x x 
$ rest broken 
@reverse 
$ beginning broken 
1'. [x x x (x)] BI?-ti x [(x) (x)] 
2'. [li]-qe2#-e-ma# 
3'. [x] _sze#_-a-am u3 _sze-gesz-i3_ [(x) (x)] 
4'. [sza]-ma-am-ma 
5'. szu#-bi-lam 
$ single ruling 


Primary publication: AbB 13, 158
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 103723
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20100806 cdliadmin_bdtns
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 21198/zz002164gc
Composite no.: 
Seal no.: 
CDLI no.: P413571
Transliteration:
&P413571 = AbB 13, 158 
#atf: lang akk 
@tablet 
@obverse 
1. a-na a-bu-um-ki-ma-i3-li2 x x x 
2. qi2-bi2-ma 
3. um-ma {d}suen-gim-la-an-ni-ma 
4. {d}utu u3 {d}marduk li-ba-al-li-t,u2-ka 
5. du-um-mu-uq-ta-ka isz-x x 
6. it-ta-ab-szi-a-am 
7. re-esz du-um-mu-uq#-ti#-[ka] 
8. a-na _e2_-ti-ni# 
9. i-na mu-uh-hi a-[...] 
10. sza at-ba-la# [...] 
$ single ruling 
@reverse 
1. [...] 
2. x [x] x x MA [x x (x) (x)] 
$ single ruling 


Primary publication: AbB 13, 159
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 103724
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20100806 cdliadmin_bdtns
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 21198/zz002164hw
Composite no.: 
Seal no.: 
CDLI no.: P413572
Transliteration:
&P413572 = AbB 13, 159 
#atf: lang akk 
@tablet 
@obverse 
1. a-na szi-x-x-x-ia 
2. qi2#-bi2#-ma 
3. um#-ma# {d}[...]-mu#-sza-lim-ma 
5. [x x] x x [x x] _a-sza3_ mu-ku-ur 
6. [x x (x)] x [x] x AN x AN DA x x 
7. [x x x]-u2 
8. [x x x] x-ma 
9. [x] x [x x]-{d}nin-szubur 
10. tu-[x-(x)]-il#-lu 
$ single ruling 


Primary publication: AbB 13, 160
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 103731
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20100806 cdliadmin_bdtns
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 21198/zz002164rh
Composite no.: 
Seal no.: 
CDLI no.: P413579
Transliteration:
&P413579 = AbB 13, 160 
#atf: lang akk 
@tablet 
@obverse 
1. [a]-na# a-hi-[ia] 
2. qi2#-bi2-[ma] 
3. [um]-ma# x-x-{d}x-ma 
4. [{d}]utu# u3 {d}marduk# li-ba-al#-li#-t,u2#-ka 
5. lu# sza-al-ma#-ta# 
6. i-na _sza3 ku3-babbar_ sza ma-ah-ri-ka 
7. _igi-6(disz)-gal2 <gin2> ku3-babbar_ 
8. a-na {disz}pa-t,e4-er-e-il-tim 
9. i-di-in 
@reverse 
$ single ruling 

Primary publication: AbB 13, 161
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 103741
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20100806 cdliadmin_bdtns
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 21198/zz00216535
Composite no.: 
Seal no.: 
CDLI no.: P413589
Transliteration:
&P413589 = AbB 13, 161 
#atf: lang akk 
@tablet 
@obverse 
1. a-na ZI-[...] 
2. qi2-bi2-[ma] 
3. um-ma# x [x x (x)]-tum-ma 
4. {d}utu# {d}marduk# u3 {d}mar-tu 
5. ba-ni-ka asz-szum-[ia] da-ri-isz _u4_-mi 
6. li-ba-al-li-t,u2-ka 
7. [lu]-u2 ba-al-t,a-a-ta 
8. [lu]-u2 sza-al-ma-a-ta 
9. lu-u2 da-ri-a-ta# 
10. [...] x [...] 
11. [...] 
@reverse 
1. [x x] ka x [x x x] 
2. [x x (x)] x ib-ba#-[x x (x)] 
3. na#-ra-am nu-usz-x [x (x) (x)] 
4. u3 _a-sza3_ ma-ki#-ir 
5. mi-im-ma la ta-na#-[ku-ud] 
6. {disz}um#-mi-wa-aq#-[ra-at] 
7. si2-in-ni-isz-ta-ka# <<sza-li-im>> 
8. sza-al#-ma#-at u3 ba#-al#-t,a#-[at] 
9. ki-ma na-az-x x [...] 
10. u2-ul ti-de-e 
11. [x x (x)] x IZ lu x [x x (x)] 
12. [x x x]-ra-am [x x (x) (x)] 
13. [x x] na ZI x [x x (x)] 


Primary publication: AbB 13, 162
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 103743
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20100806 cdliadmin_bdtns
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 21198/zz002106mq
Composite no.: 
Seal no.: 
CDLI no.: P413591
Transliteration:
&P413591 = AbB 13, 162 
#atf: lang akk 
@tablet 
@obverse 
1. a-na a-[bi]-ia 
2. qi2-bi2#-ma# 
3. um-ma {d}marduk-dingir#-ma 
4. {d}utu u3 {d}marduk da-ri-isz# _u4_-mi a-bi ka-ta 
5. li-ba-al#-li-t,u2 
6. lu# sza-al-ma-ta lu ba-al#-t,a-ta 
7. _dingir#_ na-s,i-ir a-bi-ia ka-ta re-esz# [a]-bi-[ia a-na da-mi-iq-tim] 
8. li#-ki-il 
9. a-na szu-ul-mi#-ka [asz]-pu-ra-am 
10. szu-lum a-bi-ia ka#-ta# ma-har# {d}utu u3 [{d}marduk] 
11. lu da-ri 
12. gi-ir-ru a-di-ni u2-ul i-sa#-[an-ni-qa2-am] 
13. _siki hi-a_ sza aq-bi-a-[ak-kum] 
14. u2-la-qi2-ta-am-ma x [x x (x) (x)] 
15. i-na-an-na i3-li2-i-qi2-sza-am x [...] 
@reverse 
16. x [...] 
17. u3 x [...] 
18. usz-[...] 
19. szum-ma ta-x x [...] 
20. szum-ma x x [...] 
21. u3 x [...] 
$ rest broken 


Primary publication: AbB 13, 163
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 103755
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20100806 cdliadmin_bdtns
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 21198/zz0021071d
Composite no.: 
Seal no.: 
CDLI no.: P413603
Transliteration:
&P413603 = AbB 13, 163 
#atf: lang akk 
@tablet 
@obverse 
1. [a-na] {d}suen-e-mu#-[qi2] 
2. qi2#-bi2-[ma] 
3. [um-ma] i-ka-x x [(x)] x [...] 
4. [{d}utu] u3 {d}marduk li#-ba#-li#-[t,u2-ka] 
5. [tup]-pi2# i-na a-ma-ri#-im# 
6. [x] NI-ib-ba-x IG? [...] 
7. [x] x x sza usz x x 
8. x x x GA? AM? x 
9. [x x (x)] x ti x x 
@reverse 
$ beginning broken 
$ blank space 


Primary publication: AbB 13, 164
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 103768
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20100806 cdliadmin_bdtns
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 21198/zz002107g4
Composite no.: 
Seal no.: 
CDLI no.: P413616
Transliteration:
&P413616 = AbB 13, 164 
#atf: lang akk 
@tablet 
@obverse 
1. a-na# be-el-ti-ia {d}nin#-mug# 
2. qi2-bi2-ma 
3. um-ma {d}nin-urta-qar-ra-ad wa-ra-ad-ki-ma 
4. qa2-ba-ki {d}i-szum i-sze-mi 
5. a-na an-ni-tim hi-t,i-tim 
6. sza ub-lam# qa2-ta-ti-ia 
7. it-ti {d}i-szum li-qe2-a 
8. i-nu-u2-ma qa2-ta-ti#-ia# 
9. te-el-te-qe2 
10. i-na pa-ni-in na-am-ru-tim 
@reverse 
1. a-na {d}i-szum ni-qi2-a-am 
2. ub-ba-la-am 
3. u3 a-na ka-szi-im 
4. _udu-nita2_ ub-ba-la-am# 
5. i-nu-u2-ma da-li-li 
6. a-na# ma#-har# {d}i-szum 
7. a-da-la-lu 
8. u3 da!(DI)-li-li-ki 
9. lu-ud-lu-ul 
$ single ruling 


Primary publication: AbB 13, 165
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 103770
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20100806 cdliadmin_bdtns
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 21198/zz002107j5
Composite no.: 
Seal no.: 
CDLI no.: P413618
Transliteration:
&P413618 = AbB 13, 165 
#atf: lang akk 
@tablet 
@obverse 
1. a-na e-t,i-rum qi2-bi2-ma 
2. um-ma mu-na-wi-rum-ma 
3. esz18-dar u3 {d}za-ba4-ba4 da-ri-isz _u4_-mi 
4. li-ba-al-li-t,u2-ka 
5. i-na kisz{ki} ki-a-am# [ta-aq-bi-a-am] 
6. um-ma at-ta-ma 
7. i-nu-ma s,i-bu-ti-ka 
8. szu-up-ra-am-ma 
9. lu-ud-di-in# 
10. ki-a-am ta-aq-bi-a-am# 
@reverse 
1. i-na-an-na gur-ru-rum 
2. tup-pi2 u3 ka-ni-kam 
3. usz-ta#-bi-la-ak-kum 
4. _2(disz) gin2# ku3#-babbar_ 
5. i-di#-isz#-szum 
6. la ta#-ka-al-la 
$ single ruling 


Primary publication: AbB 13, 166
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 103773
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20100806 cdliadmin_bdtns
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 21198/zz00216vmk
Composite no.: 
Seal no.: 
CDLI no.: P413621
Transliteration:
&P413621 = AbB 13, 166 
#atf: lang akk 
@tablet 
@obverse 
1. a-na SZI-x x x x 
2. qi2#-bi2-ma 
3. um-ma gi-mil-{d}marduk-ma 
4. {d}utu li-ba-al-li-it,-ka 
5. [{disz}]x-x-x-{d}suen ki-a-am isz-pur#-am# 
6. [um]-ma# szu#-u2-ma# 
7. [...] x-ka 
8. [...] x x x 
$ rest broken 
@reverse 
$ beginning broken 
1'. [...] x  [...] 
2'. [...] x-sza?-am-ma 
3'. [...] x-ad-di-kum [(x)] 
4'. ki#-a-am ta-aq#-bi#-a-[am] 
5'. tup-pi2 usz-ta-bi-la-ak-kum# 
6'. _sze_-am a-na s,u2-ha-ri-ia 
7'. i-di-in 
$ single ruling 


Primary publication: AbB 13, 167
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 103775
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20100806 cdliadmin_bdtns
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 21198/zz00216vpm
Composite no.: 
Seal no.: 
CDLI no.: P413623
Transliteration:
&P413623 = AbB 13, 167 
#atf: lang akk 
@tablet 
@obverse 
1. [a-na a-wi-lim sza {d}marduk u2-ba-(al)]-la#-t,u2-szu 
2. [qi2]-bi2#-ma 
3. [um-ma x] x x x-[ma] 
4. [{d}utu] u3 {d}marduk# li-ba-al#-li#-t,u2-ka 
5. [{disz}]in#-bi-{d}utu a-na ma#-[ah]-ri-ka 
6. at,-t,ar-da-am# 
7. x x x ka? x 
8. x x x x x-ne2?-e? 
9. [...]-kum 
10. _[n] gin2 ku3-babbar_ 
11. i-di-in-szum 
12. s,u2-ha-ar-rum 
13. _szuku_ u2-ul i-szu 
$ single ruling 
@seal 1 
$ illegible 


Primary publication: AbB 13, 168
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 103832
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20100806 cdliadmin_bdtns
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 21198/zz00210p5r
Composite no.: 
Seal no.: 
CDLI no.: P413677
Transliteration:
&P413677 = AbB 13, 168 
#atf: lang akk 
@tablet 
@obverse 
1. a-na i3-li2-ha-zi-ri 
2. qi2#-bi2-ma 
3. um-ma ni-szu-x-am#?-ma# 
4. {d}utu u3 {d}marduk li-ba-al-li#-[t,u2-ka] 
5. a-nu-um-ma {disz}i-KI-[x x] 
6. at,#-t,ar-da-kum 
@reverse 
1. [x x (x)]-il? a-wi-lim 
2. [x (x)]-il-qu2-ni# 
3. [x x (x)] x ARAD# [x (x)] 
4. [x x] ma [x (x)] 
5. i-ri-szu-ka 
6. [x] x x la-ta-ka 
7. [la ta-ka]-la-szum 
$ single ruling 


Primary publication: AbB 13, 169
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 103834
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20100806 cdliadmin_bdtns
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 21198/zz00210p7s
Composite no.: 
Seal no.: 
CDLI no.: P413679
Transliteration:
&P413679 = AbB 13, 169 
#atf: lang akk 
@tablet 
@obverse 
$ beginning broken 
1'. li#-[ba-al-li-t,u2-ku-nu-ti] 
2'. a-na ka#-[ti u3 ra-i-mi]-ki# 
3'. be-el-ki [{d}x (x)] a-na na-s,a-ri-ku#-[nu a-a i-gu] 
4'. ki-ma sza#-[mu]-u2 u3 er-s,e-tum da-ru-u2 
5'. at-ti [u3] ra#-im-ki lu-u2 da-ri-a-tu-nu 
6'. [x x] _ku3#-babbar_ a-wi-lum i-ri-sza-an-ni-ma 
7'. [x x x x x]-ti#-ia x x-ni-ma 
8'. [...] x-il-szum 
9'. [...] na# x x x-ni 
@reverse 
1. [...] x u2-ta-ra-ki 
2. [... qa2]-ba#-am isz-ku-nam 
3. [...] x sza-mu-uh-ma ad-di-szu 
4. [...] x x x x-ma 
$ rest broken 


Primary publication: AbB 13, 170
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 103857
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510866
Transliteration:
&P510866 = AbB 13, 170 
#atf: lang akk 
@tablet 
@obverse 
1. a-na a-wi-le-e 
2. qi2-bi2-ma 
3. um-ma a-li2-ta-li-mi-ma 
4. {d}utu u3 {d}marduk da-ri-isz _u4_-mi 
5. li-ba#-al-li-t,u2-ku-nu-ti# 
6. lu sza#-al-ma-tu-nu lu ba-al-t,a#-tu#-[nu] 
7. _dingir_ na-s,i-ir-ku-nu re-esz-ku-nu a-[na da-mi-iq-tim] 
8. li-ki-il 
9. a-na szu-ul-mi-ku#-nu asz-pu-ra-am 
10. szu-lum-ku#-nu ma#-har# {d}utu u3 {d}marduk 
11. lu da-ri 
12. {disz}ti-il-ga-ab _ugula mar-tu_ 
13. sza a-na be2-eh-ru-tim# ma x x 
14. iz-za-az#-[zu] 
15. a-na {tug2}u2-pu-ur-tim u3 s,i-il#-[li-im] 
16. a-na be-eh#-ru#-tim le-qe2#-e-[em] 
17. _4(disz) gin2# ku3#-babbar#_ x x x x 
$ rest broken 
@reverse 
$ beginning broken 
1'. la tu#-usz#-ta#-ha 
2'. {disz}ti-il-ga-ab ar-hi-isz 
3'. {tug2}u2-pu-ur-tam u3 s,i-il-li-a-am# 
@left 
1. li#-il#-qe2# x u3 i-[...] x-ma 
2. u3 x x [...] x x 

Primary publication: AbB 13, 171
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 103879
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510867
Transliteration:
&P510867 = AbB 13, 171 
#atf: lang akk 
@tablet 
@obverse 
1. a-na# [...] x x x {d}marduk 
2. qi2-bi2#-ma 
3. um#-ma# x [x x x]-ma 
4. [x] x x asz-tap-ra-ak-kum 
5. _4(barig) zi3-da_ 5(disz) pi2-hu _kasz_ ul-li-a-am-ma 
6. u3 i-si-im-ma-na-a-am 
7. sza _3(u) [gin2] ku3#-babbar_ li-qe2-a-am 
8. a-na# ma-ah-ri-ia# al#-kam 
9. _3(disz) gin2 ku3-babbar#_ i-na qa2-ti# _{lu2#}szu-i_ 
10. ki-ma pa-ni-ka 
11. li-qe2-a-am-ma 
@reverse 
1. ar-hi-isz at-la-kam 
$ single ruling 


Primary publication: AbB 13, 172
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 103881
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510868
Transliteration:
&P510868 = AbB 13, 172 
#atf: lang akk 
@tablet 
@obverse 
1. a-na ib-ni-{d}iszkur 
2. qi2-bi2-ma 
3. um-ma {d}marduk-na-s,i-ir-ma 
4. {d}utu u3 {d}marduk li-ba-al-li-t,u2-ka 
5. asz-szum _sze_-ia sza i-na szu-ur-qi2-im 
6. il-le-qu2-u2-ma 
7. szu-ur-qa2-am szu-a-ti ta-as,-ba-tu 
8. u3 tup-pa-ti-ka tu-sza-bi-lam 
9. tup#-pa#-ti-ka sza tu-sza-bi#-lam 
10. [x x (x)]-a-ar# 
11. [...] x x 
@reverse 
1. [...] x x-mu-ni#-in#-[ni] 
2. _sze#_-am szu-a-ti u2-ul tu-sza-al-la-ma#-an-ni-ma 
3. ma-har be-li2-ia 
4. _sze_-am szu-a-ti i-na mu-uh-hi-ka 
5. u2-sza-asz-ka-an 
6. i-na pa-la-ah {disz}u2-s,i-su-mu-a-bu-um 
7. a-wa-a-tim i-na qa2-tim 
8. la tu-ka-a-al 
$ single ruling 


Primary publication: AbB 13, 173
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 103888
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510869
Transliteration:
&P510869 = AbB 13, 173 
#atf: lang akk 
@tablet 
@obverse 
1. a-na si2-ia-tum 
2. qi2-bi2-ma 
3. um-ma {d}suen-a-bu-szu-ma# 
4. {disz}la-ma-sum2 it-ti#-ka# 
5. a-na kisz{ki} ri-de-e-ma 
6. x [x] sza# _1(disz) gin2# ku3-babbar sze_-a-am# x [...] 
7. [...] x [...] 
$ broken 
1'. [x] x x [...] 
2'. li-di-in u3 _a-sza3_-am# 
3'. a-nu-um-mi-a-am szum-ma lu x [...] 
4'. _gu4 hi-a_ li-la-bi-ku-u2 
5'. i-na a-la-ki-ia 
6'. _ku3-babbar_ lu-usz-qu2-ul 
@reverse 
1. szum-ma la ki-a-am 
2. u2-lu-u2 a-na _igi-3(disz)-gal2-am3_ 
3. u2-lu#-u2 a-BI-il [...] 
$ broken 
1'. AD x x [...] 
2'. sza# [x] x x x-di x [...] 
3'. wa-asz-ba-ku#-[(ma)] 
4'. _igi-6(disz)-gal2 ku3-babbar_ it-[ti] 
5'. ma-ma-an am-ri-im#-[ma] 
6'. szu-bi-li-im# 
7'. _1(barig) 4(ban2) sze_ sza it-ti-[ka] 
8'. {d}suen-ri-isz a-pu-ul# 
$ single ruling 


Primary publication: AbB 13, 174
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 103889
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510870
Transliteration:
&P510870 = AbB 13, 174 
#atf: lang akk 
@tablet 
@obverse 
1. [a-na] {d}suen#-x [x (x)] 
2. [qi2]-bi2#-ma 
3. [um-ma ... x]-ma# 
4. [... x]-am 
5. [...] x 
6. [...] NI NI 
$ 3 lines broken 
@reverse 
1. [a-mu]-ur-ma 
2. ap#-pu-tum 
$ single ruling 


Primary publication: AbB 13, 175
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 103906
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510871
Transliteration:
&P510871 = AbB 13, 175 
#atf: lang akk 
@tablet 
@obverse 
1. [a-na] a-pil-ku-bi 
2. [qi2]-bi2#-ma 
3. um#-ma [(x)] la#-ma-si-i-ma 
4. a-ha-at#-ka#-a-ma 
5. {d}utu u3 {d}marduk 
6. asz-szu-mi#-ia# da-ri-isz _u4_-mi 
7. li-ba-li-t,u2-u2-ka# 
8. am-mi-nim isz-tu _u4_-um 
9. tu-s,u2-u2 
10. szu-lu-um-ka 
11. la ta-asz-pu-ra-am 
@reverse 
1. a-na-ku-u2 an-ni-ki 
2. u2-mi-sza i-na bi-ta-ki 
3. i-na-ia i-ta-ah-ma-t,a 
4. tup-pi2 ki-ma te-esz3-te-mu 
5. szu-lu-um-ka 
6. szu-up-ra-am-ma 
7. li-ib-bi li-nu-uh 
$ single ruling 


Primary publication: AbB 13, 176
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 103907
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510872
Transliteration:
&P510872 = AbB 13, 176 
#atf: lang akk 
@tablet 
@obverse 
1. a-na gi-mil-_{d}marduk_ 
2. qi2#!-bi2#-ma 
3. um-ma _{d}marduk_-na-s,i-ir-ma 
4. _{d}utu#_ u3 _{d}marduk_ li-ba-al-li-t,u2-ka 
5. _{mi2}geme2#-{d}asar-lu2-hi_ 
6. ma#-ra#-as-sa3 ha-ab-la-at#-[ma] 
7. a-na# x-a-ri-sza it-ta-al-x x 
8. x [x x x (x)] sza qa2-ti 
9. szu-UG?-DI?-ir 
$ single ruling 
@reverse 
1. a-na# _babila2{ki}_ 
2. li-il-li-kam-ma 
3. di-nam ki-ma s,i-im-da-tim 
4. li-iq-bu-szi-im 
$ single ruling 


Primary publication: AbB 13, 177
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 103909
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510873
Transliteration:
&P510873 = AbB 13, 177 
#atf: lang akk 
@tablet 
@obverse 
1. [a-na ...] x [...] 
2. [qi2-bi2]-ma# 
3. um-ma# x-[x]-i3-li2-[x]-ma 
4. {d}utu u3 {d}marduk# li-ba-al#-li#-t,u2#-ka 
5. asz-szum a-wi-lim an#-ni-im sza# s,u2#-ha-ra-am a-hi im-ha-s,u2 
6. [x x] szar-ri-im a-na qa2-be2-e-ma 
7. i-na _e2-gal_ ki-a-am ta#-aq#-bi-a-am 
8. um-ma at-ta-a-ma a-na# szar#-ri-im# ta-qa2-ab-bi 
9. ki#-ma# a-na _lu2_ x x x [...] 
$ rest broken 
@reverse 
$ beginning broken 
1'. x x x x x [...] 
2'. a-wi-lam szu-ri-a-am-ma 
3'. pi2-ha-as-su2 li-pu-ul 
4'. a-wi-lam u2-ul ta-t,a-ra-dam-ma 
5'. a-na szar-ri-im a-qa2-ab-bi 
$ single ruling 


Primary publication: AbB 13, 178
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 103940
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510874
Transliteration:
&P510874 = AbB 13, 178 
#atf: lang akk 
@tablet 
@obverse 
1. a-na x-an-nu-[x (x)] 
2. qi2-bi2#-ma# 
3. um-ma x x x x-a-ni-ma 
4. i-na li-ib#-bi# 
5. _2(u) [sze] gur#_ 
6. sza# e-li-ka# 
7. i-szu-u2 
8. ni-ka-si2 
9. ni-te#-pu-usz-ma 
10. _3(asz) sze gur_ 
11. e-li#-ka# 
12. u2-x x [...] 
@reverse 
1. x x x x 
2. {disz}hu#-nu-bu-um 
3. [asz]-ta-ap-ra-ku-um 
4. id-na-szu-um-ma 
5. li-ib-lam 
$ single ruling 


Primary publication: AbB 13, 179
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 103958
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510875
Transliteration:
&P510875 = AbB 13, 179 
#atf: lang akk 
@tablet 
@obverse 
$ beginning broken 
1'. it#-ti#-i-ka [...] 
2'. ki-a-am aq-bi um#-[ma a-na-ku-ma] 
3'. {disz}{d}suen-i-qi2-szam _ugula gidri#_ it#-ta-as,#-s,i#-a-am 
4'. lu-uk-szu-us-su2-ma s,i-bu-ti lu-pu-usz 
5'. u3 a-wi-il-{d}utu i-na kisz{ki} ak-szu-ud-ma 
6'. um-ma szu-ma a-wi-lu-u2 u2-ul ma-ah-ri-ia 
7'. u2-ma-am u3 ur-ra-am ku-ru-ma-su2-nu 
8'. a-s,a-mi-id-ma a-t,a-ra-da-ak-ku-szu-nu-ti 
9'. a-wa-tam szu-a-ti a-na {disz}gi-mil-ia ap-qi2-id-ma 
10'. um-ma a-na-ku-ma _erin2# hi-a {gesz}ma2-1(u)-gur aga-silig zabar_ 
11'. s,i-im-dam t,u2-ur-dam 
12'. a-di al-li-kam {disz}mu-na-wi-rum sza-a-al 
13'. nu-uh-u2 u3 bi-tum be2-ri 
14'. _erin2 hi-a_ ma-la isz-tu mah-ri-i-ka 
15'. il-li-kam 
@reverse 
1. u3 mah-ri-ia wa-asz-bu 
2. as,-mi-id-ma _{gesz}pa_ i-na-ki-su 
3. i-na _erin2 hi-a_ sza ma-har a-wi-il-{d}utu 
4. te-si2-hu {disz}t,a3-ab-na-as2-hu-ur-{d}utu 
5. u2-ul il-li-kam 
6. s,u2-ha-re-e i-na _iri_ bi-ir-bi-ri{ki} 
7. e-zi-ba-am-ma 
8. asz-szum _1(barig) sze_ a-na _szuku_-szu-nu a-ma-ri-im 
9. a-na _iri_ du-um{ki} e-li-a-am 
10. _1(barig) sze_ sza pa-ni-ia i-le-qu2-ma a-la-kam 
11. _{gesz}ma2_ {d}utu-ri-im-i3-li2 u3 s,u2-ha-re-e 
12. es-ha-am-ma t,u2-ur-dam 
13. _gesz hi-a_ ma-la i-ma-ha-ru-szu#-nu#-ti# 
14. i-na-[ki-su] 
15. x [x] x x [...] 
$ rest broken 
@left 
@column 1 
1. [... n] _sila3 sze_ i-na _iri_ du-um{ki} 
2. [... u2]-ul i-ba-asz-szi 
@column 2 
1. 2(disz) _aga-silig zabar_ 
2. 1(disz) _uruda_ MA ma-ah-rum ub-lu-nim 


Primary publication: AbB 13, 180
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 103974
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510876
Transliteration:
&P510876 = AbB 13, 180 
#atf: lang akk 
@tablet 
@obverse 
1. [a-na a]-wi#-lim sza {d}marduk# u2-ba#-li#-t,u2#-szu# 
2. [qi2]-bi2#-ma 
3. [um-ma x x] x x-bi-ma 
4. {d}utu u3 [{d}marduk da-ri]-isz# _u4_-<mi> 
5. li-[ba-al]-li-t,u2-ka# 
6. lu# sza-al-ma-ta 
7. me#-[e] te-ep-te-e-ma 
8. a-di#-ni# x-li u2-ul es-ki-ir-ma 
9. x x x x u2-ul ta-at,-ru-dam i-na-an-na ta-ki-rum 
10. sza _i7_ x-DI-la-tim 
11. te#-ep-te-e-ma 
12. {disz}a-li2-ta-li-mi 
13. ki#-a-am isz-pur-am 
14. [um]-ma# szu-u2-ma 
@reverse 
1. [a]-na# se-ke-ri-im al-li#-[ik] 
2. {disz}gi-mil-{d}marduk ra-bi-a-an kisz{ki} 
3. {disz}{d}marduk-ni-szu usz-ta-ad-du-ni-in-ni 
4. i-na ki-im-na-an-na 
5. a-na# mi-li ki-isz-sza-tim 
6. _i7 nu-{gesz}kiri6_ ip-pe2-et-te-e 
7. a-na e-pe2#-szi#-im an-ni-im 
8. be-li2 i-sze-em-me-e-ma 
9. hi-t,um szu-u2 sza _i7_ a-di i-na-an-na 
10. x KU? x RI ID i-na mu-uh-hi-ka 
11. hi#?-t,um#? isz-sza-ak-ka-<an> 
12. [x x (x)] x-e-ma 
13. [x x x x (x)] x es-ki-ir 
14. [x x x x x (x)]-ni-ma [(x)] 
15. [x x x x x] x x [x] 
@left 
@column 1 
1. [...] x la ta-ap-pa-lu 
2. [...] _lu2_ u3 _i7_ ta-ki-rum 
@column 2 
1. sza _i7_ x-DI-la-tim 
2. qa2-at-ka u2-su2-uh# 

Primary publication: AbB 13, 181
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 103979
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510877
Transliteration:
&P510877 = AbB 13, 181 
#atf: lang akk 
@tablet 
@obverse 
1. a-na a-wi-lim sza {d}marduk u2-ba-al-la-t,u2-szu 
3. qi2-bi2-ma 
4. um-ma PA x x-ma 
5. {d}utu u3 {d}marduk da-ri-isz# _u4_-mi li-ba-al-li-t,u2-ka 
6. asz-szum sza um-ma at-ta-a-ma 
7. {disz}nam-ra-sza-ru#-ur# _dumu#_ a-bi-ia 
8. _2(disz) ma-na ku3-babbar_-ia a-na# s,i#-bu-tim 
9. a-na nibru{ki} u2-sza-bi#-il-ma 
10. s,u2-ha-ru sza# i-na ga-ra-ta-ia-mi{ki} 
11. il-qu2-u2 x x szu-bi-lam 
12. szum-ma# la# ki#-a-am# a-na _e2-gal#_ a-sza-par2 
13. sza-tu-ur2-ri-im!(KAM)-ma x-x-ra#-am 
14. sza-pa-rum an-nu-um na-t,u2#-[u2] 
15. _lu2 nu-kar2{ki}-mesz ku3-babbar_-am i-le-qu2#-[u2] 
@reverse 
1. s,u2-ha-re-e sza {d}marduk-na-s,ir# 
2. nu-AZ-su2-nu ad-di-im-ma u2-x-x-in-szu#-[nu-ti] 
3. u3 la-ma tup-pa-ka i-sa-an-ni-qa2-am 
4. a-na nam-ra-sza-ru-ur ki-sa-am 
5. _nig2-GAZ? zabar_ u3 _tug2_ lu-ba-ar-tam 
6. i-na qa2-ti _ibila-mesz_ u2-pi2-hu-ma 
7. it-ta-ad-nu-szum 
8. sza la szi-ri-ka am-mi-ni an-ni-tam 
9. ta-asz-pur-am i-nu-ma kar-{d}na-bi-um{ki} usz-bu 
10. szu-ri-ni sza _e2-gal_ i-qi2-sza-am 
11. i-na _{gi}kid szu-i_ s,u2-ha-ri-ia 
12. a-na nu-kar2{ki} u2-sza-bi-lam-ma 
13. {disz}pir-hu-um s,u2-ha-ar {disz}{d}marduk-na-s,ir 
14. sza i-na-an-na _gir2 zabar_ 
15. i-na qa2-ti-szu s,a-ab-tu 
16. ih-bu-us-su2-nu-ti i-na mi-it-hu-ri 
17. 1(disz) _dumu_ nu-kar2{ki} di-i-ik 
$ single ruling 
@left 
@column 1 
1. {disz}t,a3-ab-s,il2-lum a-wa-tim szi-na-ti# i-de-e 
2. _gir2 zabar_ sza it-ta-nu _ugula mar-tu_ 
3. it-ti-szu wa-ar-ka-tam 
@column 2 
1. pu-ru-us2 


Primary publication: AbB 13, 182
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 103983
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510878
Transliteration:
&P510878 = AbB 13, 182 
#atf: lang akk 
@tablet 
@obverse 
1. a-na i3-li2-x [x x] 
2. qi2-bi2-[ma] 
3. um-ma {d}suen-i-qi2-sza-am-ma 
4. {d}utu u3 {d}marduk li-ba-al-li-t,u2-ka 
5. {disz}dingir-{d}mar-tu x x 
6. a-na ma-ah-ri-ka at,-t,ar-dam 
7. ki-ma is-sa3-[an]-qa2#-ak#-kum# 
8. _ku3-babbar iti_ [x x x (x)] 
9. sza _masz2#-szu#-[gid2-gid2]_ 
10. [...] 
@reverse 
1. x [...] 
2. i-di-isz-szum#-[ma] 
3. a-na ma-ah-ri-ia t,u2-ur#-da#-szu# 
4. _masz2-szu-gid2-gid2_ 
5. la u2-da-ab-ba-ba-an-ni 


Primary publication: AbB 13, 183
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 103992
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510879
Transliteration:
&P510879 = AbB 13, 183 
#atf: lang akk 
@tablet 
@obverse 
1. [a]-na# dumu-munus-er-s,e-tim 
2. qi2#-bi2#-ma 
3. um-ma i-din#-{d}za-ba4-ba4-ma 
4. {d}utu u3 {d}marduk# li#-ba#-al-li#-t,u2#-ki# 
5. [...]-BU-szu 
6. [...] x-hi-NI? 
7. x-[x]-pu#-ra#-ma 
8. [x x (x)] _ku3#-babbar_ li-isz-ti-ma# 
9. [...] x-am 
10. [...] x x x 
@reverse 
1. [x] x x x NI-szu 
2. a-na ma-ah#-[ri]-ka x x 
3. lu#-usz-KI-x 
4. x x i-zi-[x ...] 
5. [an]-ni-ki-a-am x x 
6. [(x)] x _a-sza3_-am [x x] x 
7. [...] 
8. [...] x a-na x ZA x 
9. [...] x i-di-in 
10. [...] x 
11. [a]-na# mi-nim# [x] UD 
12. [x] pa-ga-ar GA 


Primary publication: AbB 13, 184
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 104008
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510880
Transliteration:
&P510880 = AbB 13, 184 
#atf: lang akk 
@tablet 
@obverse 
1. a-na usz-x x x [(x)] 
2. qi2#-bi2#-ma 
3. um-ma {d}suen#-[x]-x 
4. sza-al-ma-ti#-x 
5. mi-im-ma x x x 
6. _sze_-a-am sza i-na 
7. <<sza i-na>> ha-ra-ab x x 
8. e-ri-szu 
9. mu-du-ud-ma 
@reverse 
1. a-na [...] 
2. mu-du#-[ud-ma] 
3. szu-[...] 
4. 2(disz) x [...] 
5. ki-ma x x x 
6. ra-ma-ni-ka 
7. i-hi-id 
8. sza la ka-ti [(x)] 
9. mu-sza-al-li-x [(x)]-x 
10. x [x] i-x [...] 
11. x x x 
12. a-ah-ka 
13. la ta-na-an-di 


Primary publication: AbB 13, 185
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 104010a
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510881
Transliteration:
&P510881 = AbB 13, 185 
#atf: lang akk 
@tablet 
@obverse 
1. a-na dingir-mu-tab-bil 
2. qi2-bi2-ma 
3. um-ma a-hu-da-di-ma 
4. [...] x x x x 
$ rest broken 
@reverse 
$ beginning broken 
1'. x la x [...] 
2'. la ta-bi-ta-am 
$ double ruling 


Primary publication: AbB 13, 186
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 104010b
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510882
Transliteration:
&P510882 = AbB 13, 186 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}utu-ga-mi-il5 
2. qi2-bi2-ma 
3. um#-ma {d}suen-re-me-ni-ma 
4. ha-ra-an szar-ri-im 
5. x-x-BI-ID 
6. [...] x 
$ rest broken 
@reverse 
$ beginning broken 
1'. DI? RU BI DA? 
2'. [x] x x x 
$ single ruling 


Primary publication: AbB 13, 187
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 104016
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510883
Transliteration:
&P510883 = AbB 13, 187 
#atf: lang akk 
@tablet 
@obverse 
1. a-na dingir-szu-x [x (x)] x 
2. qi2#-bi2#-ma 
3. um-ma# {d}utu-lu-mur-ma 
4. _3(barig) sze 1/2(disz) sila3 i3-gesz_ 
5. a-na ni#-x-li-ia 
@reverse 
1. lu-x-x-x [(x)] 
$ single ruling 


Primary publication: AbB 13, 188
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 104023
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510884
Transliteration:
&P510884 = AbB 13, 188 
#atf: lang akk 
@tablet 
@obverse 
1. a-na a-x-x u3 a-wi-il-{d}iszkur 
2. qi2-bi2-ma 
3. um-ma a-li-tu-um-ma 
4. {d}utu u3 {d}marduk li-ba-al-li-t,u2-ku-nu-ti 
5. _1(asz) sze gur_ [x] x [(x)] 
6. x x [...] x u2-ul x x [...] 
7. a-nu-um-ma li-x [...] 
8. x x x [...] 
$ rest broken 
@reverse 
$ beginning broken 
1'. u2-x [...] 
2'. x x x x x 
3'. tup-pi2 x x x x x x 
4'. a-x ka x x x x 
5'. x x x ar-x x 
6'. x x x ti x x x 
7'. x a x-tum-ma 
8'. s,u2-ha-ru la sza-li-im 
9'. x x x x x x x x x x x 
10'. x x x x x e-te-x x 
11'. x x x-im-ma 
12'. [...] x 


Primary publication: AbB 13, 189
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 104028
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510885
Transliteration:
&P510885 = AbB 13, 189 
#atf: lang akk 
@tablet 
@obverse 
1. _sze_-am sza _sa10 ku3-babbar#_ [(x)] 
2. a-di-ni u2-ul i-ma-ah-ha-ar 
3. _zi3-da_ a-na re-szi-im ku-ul-lim 
4. {disz}gi-mil-{d}marduk sza qa2-bu-szu 
5. u2-ul isz-te-en 
6. i-na-an-na ze-eh-pi2 usz-ta-bi-la-ak-kum 
7. _1(barig) sze_ a-na gi-mil-_{d}marduk_ i-di-in-ma 
8. a-hi-tum sza it-ti-ia ma-da-at 
9. {disz}{mi2}su-ur-ra-tum x x 
@reverse 
1. u3 ni-ih-du-szi x x [(x)] 
2. _zi3-da_ ma-la _szuku_-ia 
3. [sza] _u4_-mi li-isz-ta-lu-szi-ma# 
4. [i-dam] la tu-sza-ar-sza 
5. [x x]-a _sa10 ku3-babbar_ sza a-sza-am-mu 
6. [x x (x)] a-ap-pa-al-ka 
$ 1 line blank
$ single ruling 


Primary publication: AbB 13, 190
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 104030
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510886
Transliteration:
&P510886 = AbB 13, 190 
#atf: lang akk 
@tablet 
@obverse 
1. a-na a-wi-lim sza {d}marduk u2-ba-al-li-t,u2-szu 
2. qi2-bi2-ma 
3. um-ma a-wi-il-{d}na-bi-um-ma 
4. {d}utu u3 {d}marduk asz-szu-mi-ia 
5. li-ba#-al#-li-t,u2-ka 
6. a-[nu-um]-ma# {disz}an-pi4#-{d}na-bi-um# 
7. [at,-t,ar-da-ak-kum] 
$ rest broken 
@reverse 
$ beginning broken 
1'. [id]-na-szum# 
$ single ruling 

Primary publication: AbB 13, 191
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 104032
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510887
Transliteration:
&P510887 = AbB 13, 191 
#atf: lang akk 
@tablet 
@obverse 
1. a-na USZ GA [x (x)] 
2. qi2-bi2-ma# 
3. um-ma i-din-{d}za-ba4-ba4-ma 
4. [{d}]utu# u3 {d}marduk# li-ba-al-li-t,u2-ki# 
5. x [x (x)] ip#-qu2-an-nu-ni-tum 
6. [...] x [...]-nim 
$ rest broken 
@reverse 
$ beginning broken 
1'. [...] x GI x [...] 
2'. [...] x x [...] 
3'. [...] x x {d}isztaran 
4'. [...] x x x 
5'. [sza] ta#-asz-pu#-ra#-am a-ka-sza-ad# 
6'. [x (x)] [x]-ID-ki [(x) (x)] 
7'. [...] x x x x sza {d}x x [...] 
8'. [...] 
@seal 1 
1. i-din-{d}[za-ba4-ba4] 
2. _dumu_ x x [...] 
3. ARAD [{d}za-ba4-ba4] 


Primary publication: AbB 13, 192
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 104048
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510888
Transliteration:
&P510888 = AbB 13, 192 
#atf: lang akk 
@tablet 
@obverse 
$ beginning broken 
1'. [...] x x x [...] 
2'. _a-sza3_ sza i-na a-ah x [...] x x x 
3'. wa-ar-ka-at _ku3#-babbar#_ sza ta-ad-di-nu 
4'. pu-ru#-us2 
5'. s,u2#-ba#-tam# _babbar_ ap-ta-ra-as2 
6'. u3 a-na asz-la-ki#-im# 
7'. at-ta-di-in 
8'. ri-qa3-ku 
@reverse 
1. i-na _ku3-babbar_ sza# [a]-na# i-ni-a-tim 
2. na-szi-a-ta# [a]-na# _1(disz) gin2 ku3#-babbar#_ 
3. _siki hi-a_ sza#-ma-am# 
4. szum-ma _siki hi#-[a]_ la# im-qu2-ta-ni-ik-kum 
5. _1(disz) gin2 ku3-babbar_ szu-bi-lam-ma 
6. a-na#-ku an-ni-ki-a-am lu-na-AB-BI-IK-ma 
7. [...] lu#-sza-am-ma 
$ rest broken 
@left 
1. [...]-ka# la i-ba-asz-szi 
2. [... me-he-er] tup-pi2-ia szu-bi-lam# 


Primary publication: AbB 13, 193
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 104051
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510889
Transliteration:
&P510889 = AbB 13, 193 
#atf: lang akk 
@tablet 
@obverse 
1. a-na a-wi-lim 
2. qi2-bi2-ma 
3. um-ma {d}marduk-dingir-ma 
4. {d}utu u3 {d}marduk li-ba-al-li-t,u2-ka 
5. isz-ti-tu u3 szi-nu 
6. asz-pu-ra-ak-kum-ma 
7. _sze_-am u2-ul tu-sza-bi-la 
8. i-na-an-na e-tel-pu 
9. asz-ta-ap-ra-am 
10. _sze_-am sza _1/2(disz) gin2 ku3-babbar_ 
11. szu-bi-lam 
12. i-dam la tu-sza-ar-szi-a-am 
$ single ruling 
@reverse 
$ blank space 


Primary publication: AbB 13, 194
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 104054
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510890
Transliteration:
&P510890 = AbB 13, 194 
#atf: lang akk 
@tablet 
@obverse 
1. a-na mi-nam#-e-pu-usz-dingir-lam 
2. qi2-bi2-ma 
3. um#-ma i3-li2-i-qi2-sza-am-ma 
4. {d}utu u3 {d}marduk li-ba-al-li#-t,u2#-ka# 
5. [_dingir_ na-s,i-ir]-ka# re#-esz#-ka# [a-na da-mi-iq-tim] 
6. [li-ki-il] 
$ rest broken 
@reverse 
$ beginning broken 
1'. _ansze?_ {d}suen#-x [...] 
2'. szum-ma x x x x 
3'. la# ki a x u3 UB BU [...] 
4'. x [...] x x-he-e 
$ single ruling 


Primary publication: AbB 13, 195
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 104058
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510891
Transliteration:
&P510891 = AbB 13, 195 
#atf: lang akk 
@tablet 
@obverse 
1. a-na a-wi-lim 
2. qi2-bi2-ma 
3. um-ma ARAD-{d}mar#-tu# 
4. [{d}]utu# u3 {d}[... da-ri-isz _u4_-mi] li#-ba-al-li-t,u3-ka 
$ rest broken 
@reverse 
$ beginning broken 
1'. a-na sza-ka-an _szuku_ x x [...] 
2'. i-na i-di-ka an-ni-tam ep-sza-am 
$ single ruling 


Primary publication: AbB 13, 196
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 104059
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510892
Transliteration:
&P510892 = AbB 13, 196 
#atf: lang akk 
@tablet 
@obverse 
1. a-na x x x-ru-u2 
2. qi2-bi2-ma 
3. [um]-ma# x x x-{d}marduk#-ma# 
$ rest broken 
@reverse 
$ beginning broken 
$ blank space 


Primary publication: AbB 13, 197
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 104066
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510893
Transliteration:
&P510893 = AbB 13, 197 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}suen-be-el#-numun# 
2. qi2-bi2-ma 
3. um-ma {d}suen#-e-ri-ba-am-ma 
4. asz-szum [x x] x szu NI ia? 
5. TE KU-u2 x szum-ma-dingir 
6. a-ta-di-szum 
7. _ku3-babbar_ szum-ma i-te-ri-isz-ka 
8. _ku3-babbar_ ta-na-di-in 
@reverse 
$ blank space 


Primary publication: AbB 13, 198
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 104071
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510894
Transliteration:
&P510894 = AbB 13, 198 
#atf: lang akk 
@tablet 
@obverse 
$ beginning broken 
1'. [...] x [...] 
2'. [tup]-pi2# usz-ta#-[bi-lam] 
3'. [me-he]-er tup-pi2-[ia] 
4'. u2-ul# tu-sza-bi-[lam] 
5'. i-na x x szu i x [x (x)] 
6'. ma-ah-ra-[x x (x) (x)] 
7'. _a-sza3_ isz-tu 1(u) _u4_-mi# 
@reverse 
1. e-ri-isz 
2. mu-u2 isz-tu 5(disz) _u4_-mi 
3. ib#-ba-szu-u2-ma 
4. x-am-ha-a-ZU 
5. [u3] ma#-am-ma-an u2-ul i-sza#-[...] 
6. [x] x a-wi-lum el-me-szum 
7. [x x x x x] x x 
$ rest broken 
@left 
1. [...] x-tum# 
2. [...] x 
3. [...] x x x 


Primary publication: AbB 13, 199
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 104122
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510895
Transliteration:
&P510895 = AbB 13, 199 
#atf: lang akk 
@tablet 
@obverse 
1. a-na i-bi-ab-lu-ut, 
2. qi2-bi2-ma 
3. um-ma e-tel-pi4-{d}marduk-ma 
4. {d}utu u3 {d}marduk li-ba-al-li-t,u2-ki 
5. a-nu-um-ma {d}suen-iri-ba-am 
6. at,#-t,ar-da-ak-ki-im 
$ single ruling 
@reverse 
1. _{uruda#}szen#_ sza ma-ah-ri-ki 
2. sza-ak-na-at 
3. id-ni-szum 
4. [x] x i-na du10-gar{ki} ki-nu 
5. [x x (x)]-ti e-pu-szu 
6. [x x (x)] ti [x (x) (x)] 
7. [x] x NI x [...] 
8. ar#-hi-isz ap-li-szu 
@left 
1. _ku3#-babbar_ sza qa3-tim sza u2-bi-la-ki 
2. [a]-na# be-le-tum id-ni 


Primary publication: AbB 13, 200
Author(s): Soldt, Wilfred H. van
Publication date: 1990
Secondary publication(s): 
Collection: British Museum, London, UK
Museum no.: BM 104190
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: Akkadian
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20180604 cdliadmin_jagersma
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P510896
Transliteration:
&P510896 = AbB 13, 200 
#atf: lang akk 
@tablet 
@obverse 
$ beginning broken 
1'. [x x x x x]-pu-usz 
2'. szum-ma# x [x] x s,i-bu-tam szu-a-ti 
3'. te-ep-pu-usz 
4'. t,e4-em-ka ar#-hi-isz szu-up-ra-am 
$ single ruling 
$ 1 line erased
@reverse 
1. x da-ba-ab x x [x] x 
2. il-li-ka-ak-kum-ma# [x] x x 
3. tup-pa-ka a-na szu-x [x x] x-ka 
4. [ma]-la# s,i#-bu-tim sza# [a-na e]-pe2#-szi-im 
5. [...] x x [...] x x 
$ rest broken 

Primary publication: AbB 14, 010
Author(s): Veenhof, Klaas R.
Publication date: 2006
Secondary publication(s): Arnaud RA 071, p. 3 sq.
Collection: Louvre Museum, Paris, France
Museum no.: AO 04324
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20151201 wagensonner
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P492284
Transliteration:
&P492284 = AbB 14, 010 
#atf: lang akk 
@tablet 
@obverse 
1. [x x x x] x KI szu ri [(x)] 
2. [x x x x] _mu#-kux(DU)_ 
3. [x x x x] me? KI 
4. 1(disz) x [x] KI [x x] ni-u2 
5. _mu-kux(DU)#_ [x x x]-tum? 
6. x [x x x x] 
7. sze-am# [x x x x] 
8. a-na# [x x x x] x 
9. i-[x x x x] 
10. i-[x x x x] 
$ rest broken 
@reverse 
$ beginning broken 
1'. a#-hu# it#-ti# [x x x x] 
2'. usz-ta-ri-id UD# [x x x] 
3'. _1(disz) ARAD mu-kux(DU)_ {d}suen-x [x] 
4'. a-na i-si-in{ki} usz-ta-ri#-[id] 
5'. usz-tu i ZA [x x] x [(x)] 
6'. 2(disz) ARAD HAR HI UD TE ta x x 
7'. _2(disz) sila3 lal3 2(disz) sila3 i3-nun 1(disz) sila3 x#_ 
8'. _5(ban2) esza sa2-du11_ {d}ba-ba6 IB x [(x)] 
9'. a-na i-si-in{ki} i3-li2-tab-ba-e usz-[ta-ri-id] 
10'. usz-tu za-ba-a-a be-li2 
11'. i-na _{gesz}gu-za_-im usz-bu-ma 
12'. a-ni-a-am ka3-la-ma i-din# 
13'. [x] a? a kum sza usz-tu ur-nigar{gar}-ra 
14'. [x x x] x ma sza li KI ta szu 
15'. [x x x x x] x 

Primary publication: AbB 14, 210
Author(s): Veenhof, Klaas R.
Publication date: 2006
Secondary publication(s): Arnaud, Daniel, BBVOT 01 (1989) 015
Collection: Louvre Museum, Paris, France
Museum no.: AO 03233
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20151201 wagensonner
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P491914
Transliteration:
&P491914 = AbB 14, 210 
#atf: lang akk 
@tablet 
@obverse 
1. a-na be-li2-ia 
2. qi2-bi2-ma 
3. um-ma li-pi2-it-er3-ra-ma 
4. um-ma-nu 
5. sza _iri_ ku-ru-ru{ki} 
6. _u4 7(disz)-kam_ 
7. pi2-li-ik? _u4 2(disz)-kam_ 
8. na-du-u2-ma 
@reverse 
1. a-di-ni u2-la 
2. i-li-u2-ni-im 
3. asz-szum la-pu-te-e 
4. mi-im-ma 
5. qa2-ba-a-am 
6. u2-la e-le-i 
7. szu-up-ra-szu-nu-szi-im 


Primary publication: AbB 14, 211
Author(s): Veenhof, Klaas R.
Publication date: 2006
Secondary publication(s): Arnaud, Daniel, BBVOT 01 (1989) 016
Collection: Louvre Museum, Paris, France
Museum no.: AO 03234
Accession no.: 
Provenience: 
Excavation no.: 
Period: Early Old Babylonian (ca. 2000-1900 BC)
Dates referenced: Sumu-abum.00.00.00
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20151201 wagensonner
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P491915
Transliteration:
&P491915 = AbB 14, 211 
#atf: lang akk 
@tablet 
@obverse 
1. a-na bu-ut-ta-tim 
2. u3 [{d}]suen#-ka3-szi2-id 
3. qi2-bi2#-ma 
4. um#-ma a-hu-um-ma 
5. bi#-it x _szu-i_ 
6. pi2-ti-a-ma 
7. _2(gesz'u) {u2}x_ 
8. _1(u) gin2_ szi-im x _gu2_ 
9. za-ba-lum# 
@reverse 
1. _1(u) ma-na_ szi-im _li_ 
2. it#-ti _lu2-mesz_ 
3. li-qi2-<a>-ni-im-ma 
4. id#-na-ni-im-ma 
5. [li]-ih-mu-t,u2-nim? 


Primary publication: AbB 14, 212
Author(s): Veenhof, Klaas R.
Publication date: 2006
Secondary publication(s): Arnaud, Daniel, BBVOT 01 (1989) 017
Collection: Louvre Museum, Paris, France
Museum no.: AO 03235
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20151201 wagensonner
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P491916
Transliteration:
&P491916 = AbB 14, 212 
#atf: lang akk 
@tablet 
@obverse 
1. a-na dingir-na-da 
2. qi2-bi2-ma 
3. um-ma a-hu-um-ma 
4. [a]-wi-lam 
5. [i]-nu#-ma a-sza-pa-ra-kum# 
6. x-li-sza 
7. tu-sza-ak-sza-ad# 
8. a#-nu-um-ma 
9. _lu2_-x x 
10. [x x] x x 
11. x x [x x] 
@reverse 
1. [x x x x] 
2. [x x] ak# [x] 
3. [x?] mu#-ul szu-um# 
4. qa2-du s,i-li2-{d}[x] 
5. u3 asz-sza-ti-szu 
6. hi-ri-im-szu-ma 
7. a-na a-li-im# 
8. ta-ru-szu 
9. i-na an-ni-tim 
10. a-wi-lu-ut-ka 
11. a-ma-ar 
12. la te-gi 
13. a-pu-tum 


Primary publication: AbB 14, 213
Author(s): Veenhof, Klaas R.
Publication date: 2006
Secondary publication(s): Arnaud, Daniel, BBVOT 01 (1989) 018
Collection: Louvre Museum, Paris, France
Museum no.: AO 03236
Accession no.: 
Provenience: 
Excavation no.: 
Period: Early Old Babylonian (ca. 2000-1900 BC)
Dates referenced: Sumu-abum.00.00.00
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20151201 wagensonner
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P491917
Transliteration:
&P491917 = AbB 14, 213 
#atf: lang akk 
@tablet 
@obverse 
1. a-na lu2-{d}ba-ba6 
2. qi2-bi2-ma 
3. um-ma a-hu-um-ma 
4. am-szi-i-ma 
5. u2-la aq-bi#-[kum] 
6. hu-mu-ut, 
7. i-na t,e4-he-e-ka 
8. pi-qi2-tam2# 
9. szu-ud-di-na#-szu-nu-ti# 
10. pi-iq#-da#-ma 
@reverse 
1. su2-ni-iq-szu-nu-ti-ma 
2. isz-ka-ra-ti-szu-nu 
3. e-ri-isz-su2-nu-ti-ma 
4. isz-tu ne2-ba-ha-tim 
5. qa2-at-na-tim 
6. re-esz15-tam2 
7. u3 ka-ab-ra-tim 
8. at-ta u3 li-pi2-it-esz18-dar 
9. su2-ni-qa2-a-ma 
10. i-na _{gi}pisan_ 
11. ku-un-ka-ni-im-ma 
12. szu-bi-la-ni-im 


Primary publication: AbB 14, 214
Author(s): Veenhof, Klaas R.
Publication date: 2006
Secondary publication(s): Arnaud, Daniel, BBVOT 01 (1989) 021
Collection: Louvre Museum, Paris, France
Museum no.: AO 03965
Accession no.: 
Provenience: uncertain (mod. uncertain)
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20160211 cdliadmin
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P497780
Transliteration:
&P497780 = AbB 14, 214 
#atf: lang akk 
@tablet 
@obverse 
1. [a-na a-wi-lim? sza {d}]utu#? u2-ba-la-t,u2-szu 
2. [qi2-bi2-ma] 
3. [um-ma ...-ma] 
4. [x x x x x x x] 
5. [x x x li]-ba#-al-li#-[it,-ka] 
6. [x x x x] x-am la i-sza-[x] 
7. [x x x x x x] 
8. [x x x x x x] x ru-nim 
9. [x x x x x x] x x 
10. [x x x x x] x 
11. a-na _a-sza3_ ba-aq-ri# [x x] 
@reverse 
1. a-na [x x x i]-ka#?-al#? 
2. t,u2#-ur-dam-ma# 
3. ma-ha-ar mu x (x) 
4. lu#!-usz-ku-un-ma 
5. ba-aq-ri-i-sza a x 
6. lu-u2 SU lam 
7. {disz}ib-ba-ia-asz 
8. asz-ta-ap-ra#-kum 
9. a#?-t,a2-ra-ad 


Primary publication: AbB 14, 215
Author(s): Veenhof, Klaas R.
Publication date: 2006
Secondary publication(s): Arnaud, Daniel, BBVOT 01 (1989) 055
Collection: Louvre Museum, Paris, France
Museum no.: AO 05462a
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20151201 wagensonner
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P492385
Transliteration:
&P492385 = AbB 14, 215 
#atf: lang akk 
@tablet 
@obverse 
1. a-na na#-[x]-gi-x 
2. qi2-bi2#-ma 
3. um-ma a-bi-{d}utu-ma 
4. {d}utu u3 {d}marduk li-ba-al#-li-t,u3-ka 
5. asz-szum t,e4#-em _ku3-babbar_-im sza ta?-[asz]-pu-[ra-am] 
$ rest broken 
@reverse 
$ broken 


Primary publication: AbB 14, 216
Author(s): Veenhof, Klaas R.
Publication date: 2006
Secondary publication(s): Arnaud, Daniel, BBVOT 01 (1989) 076
Collection: Louvre Museum, Paris, France
Museum no.: AO 06897b
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20151201 wagensonner
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P492490
Transliteration:
&P492490 = AbB 14, 216 
#atf: lang akk
@tablet 
@obverse
$ beginning broken 
1'. [x x x] zi? x 
2'. [x] x ri 
3'. a-li#-ik-[ma] 
4'. na-pa-al-ta-am# 
5'. ma-la i-ip-pa-lu-ka 
@reverse 
1. me-he-[er] 
2. ze-[eh-pi-ia?] 
3. [x] ta-am x x [x] 
$ rest broken 


Primary publication: AbB 14, 217
Author(s): Veenhof, Klaas R.
Publication date: 2006
Secondary publication(s): Arnaud, Daniel, BBVOT 01 (1989) 160
Collection: Louvre Museum, Paris, France
Museum no.: AO 29691
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20151201 wagensonner
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P494220
Transliteration:
&P494220 = AbB 14, 217 
#atf: lang akk 
@tablet 
@obverse 
1. a-na ba ba-li-e-ra-ah 
2. qi2-bi2-ma 
3. um-ma {d}suen-im-gur-an-ni-ma 
4. {d}utu _mu 1(szar2)-kam_ li-ba-li-it,-ka 
5. asz-szum _lu2 hun-ga2_ sza um-ma a-na-ku-u2 
6. wu-szi-ra-asz-szu 
7. aq-bu-ku-um 
8. um-ma a-na-ku-u2-ma 
9. a-di t,e4-em-szu i-s,a-ba-tu 
10. la a-da!-la-ah-szu 
11. i-na-an-na szi-ip-ra-am-mi 
12. ta-as,-s,a-ba-at 
13. szum-ma i-na ki-tim 
14. a-hi at-ta <<ta>> 
15. {disz}a-bu-um-dingir _lu2 hun-ga2_ <<sza>> 
16. sza {d}suen-ni-ia 
@reverse 
1. [a]-na _ensi2-mesz_ 
2. a-na _iri{ki}_ an-za-gar3-ku-na-nu-um{ki} 
3. wu-usz-szi-ra-asz-szu 
4. u3 a-na _iri#_ [x]-gu#-nu#-um{ki} 
5. a-li-ik-ma 
6. sze-a-am am-ta#-da-ad 
7. u3 sze-a-am sza# ta#-aq#-bi-a-am 
8. a-hi-ta#-a#-ma 
9. asz-ta#-ka#-an-mi 
10. sze-um x x x-mi 
11. u2-KU-x [x] 
12. szu-up-ra-am-ma 
13. a-sza-ar ki-ma ta-qa2!-bu-u2 
14. lu-ud-di-in 


Primary publication: AbB 14, 218
Author(s): Veenhof, Klaas R.
Publication date: 2006
Secondary publication(s): Arnaud, Daniel, BBVOT 01 (1989) 174
Collection: Louvre Museum, Paris, France
Museum no.: AO 20334
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20151201 wagensonner
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P493663
Transliteration:
&P493663 = AbB 14, 218 
#atf: lang akk 
@tablet 
@obverse 
1. a-na nu-ur2-{d}utu# 
2. qi2-bi2-ma 
3. um-ma {d}utu-na-s,i-ir-ma 
4. mi-nu-um sza ni-isz _lugal_ i-pi2 a-wi-le-e 
5. tu-ur-gul-la2{ki}-_mesz_ ta-asz-ta-na-ka-nu 
6. um-ma at-ta-a-ma ni-isz _lugal_ sza a-na _a-sza3_-ma 
7. u2-ra-du 
8. a-na na-sa-hi-im u2 sza-ka-nim 
9. qa2-at-ka-a i-te-li 
10. na-sa3-hu u3 sza-ka-nu 
11. sza qa2-ti sza qa2-ti-ka# 
@reverse 
1. a-nu-um-ma asz2-tap-ra-am 
2. a-wi-le-e i-na isz-ka-ri-szu-nu 
3. ma-am-ma-an la u2-da-ab-ba-ab-szu-nu 
4. u3 a-na tu-ur-gul-la2{ki} 
5. la ta-ta-ar-ma 
6. la ta-la-ak 
7. i-na a-ka-li u3 sza-ti-im 
8. a-wi-le-e ta-ad-da-al-[pa] 
9. sza 3(disz) szu-szi _zu2-lum_ 
10. mi-nu-um-ma x-du-um 
11. at-tu-nu _u4 1(u)-kam_ 
12. tu-usz!-ba-ma a-wi-le-e ta-da-al-pa 


Primary publication: AbB 14, 219
Author(s): Veenhof, Klaas R.
Publication date: 2006
Secondary publication(s): Arnaud, Daniel, BBVOT 01 (1989) 176
Collection: Louvre Museum, Paris, France
Museum no.: AO 24159
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20151201 wagensonner
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P494008
Transliteration:
&P494008 = AbB 14, 219 
#atf: lang akk 
@tablet 
@obverse 
1. a-na ba-li-e-ra-[ah] 
2. qi2-bi2-ma 
3. um-ma qi2-isz-tum-ma 
4. {d}utu li-ba-al-li-it,-ka 
5. asz-szum sze-e-em 
6. sza ta-asz-pu-ra-am 
7. mi-im-ma la ta-ta-na-asz-sza-asz-szi 
8. ur-ra-am szum-ma {disz}s,i-li2-{d}gu-la 
9. szum-ma a-na-ku-u2 
10. ni-il-la-kam-ma 
11. sze-a-am [(x)] bi-si-le-e-tim 
12. nu-sza#-ar-sza 
$ blank space 
@reverse 
$ blank space 


Primary publication: AbB 14, 220
Author(s): Veenhof, Klaas R.
Publication date: 2006
Secondary publication(s): 
Collection: Louvre Museum, Paris, France
Museum no.: AO 21938
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20151201 wagensonner
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P493805
Transliteration:
&P493805 = AbB 14, 220 
#atf: lang akk 
@tablet 
@obverse 
1. a-na ku-ru-na#-[x] 
2. qi2-bi2-ma 
3. um-ma e-te-lum#-ma# 
4. ka-ta-a-am 
5. a-mu-ur-ma 
6. a-sza-ar 
7. a-na bu-lu-t,i3-im 
8. i-li#-[x x] ki#?-a-szu 
9. bu-li#-[is-su2-ma] 
@reverse 
1. a-sza-ar i-in#-[ka] 
2. la ma-ah-ra-at 
3. x x li KU x 
4. u3 na-ra-am [(x)] 
5. isz-du gu-un-gu-nu-um 
6. im-ta-ag-ru-ka 
7. se2-ke-er 


Primary publication: AbB 14, 221
Author(s): Veenhof, Klaas R.
Publication date: 2006
Secondary publication(s): 
Collection: Louvre Museum, Paris, France
Museum no.: AO 21944
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20151201 wagensonner
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P493810
Transliteration:
&P493810 = AbB 14, 221 
#atf: lang akk 
@tablet 
@obverse 
1. a-na gu-un-gu-nim 
2. um-ma i-pa-um-ma 
3. szum-ma a-bi 
4. u3 be-li2 at-ta 
5. isz-tu _8(disz) mu-me_ 
6. sza _dumu-munus_ i3-li2-isz-ma-ni-a 
7. _5(disz) gin2 ku3-babbar_ 
@reverse 
1. ki {disz}ku-ba-sza 
2. i-ba-asz2-szi2-ma 
3. a-na a-wi-lim 
4. u2-la ip-pa-al-la-as 
5. si2-ni-iq-szu-ma 
6. _ku3-babbar_-am u3 _masz2-bi_ 
7. szu-ud-di3-isz-szum 


Primary publication: AbB 14, 222
Author(s): Veenhof, Klaas R.
Publication date: 2006
Secondary publication(s): 
Collection: Louvre Museum, Paris, France
Museum no.: AO 21965
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20151201 wagensonner
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P493831
Transliteration:
&P493831 = AbB 14, 222 
#atf: lang akk 
@tablet 
@obverse 
1. a-na pa-na-i3-li2-szu 
2. qi2-bi2-ma 
3. um-ma szu-{d}dumu-zi 
4. tu-ta-ki-la-ni-ma 
5. asz#-szu-mi-ka 
6. _GAN2_-lam u2-la u2-sze-s,i 
7. szum#-ma 
8. i-ki-ti#-im 
9. a-hi at-ta 
10. _GAN2_ ma-x 
$ rest broken 
@reverse 
$ broken 


Primary publication: AbB 14, 223
Author(s): Veenhof, Klaas R.
Publication date: 2006
Secondary publication(s): 
Collection: Louvre Museum, Paris, France
Museum no.: AO 21962
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20151201 wagensonner
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P493828
Transliteration:
&P493828 = AbB 14, 223 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}en-lil2-i-su2 
2. qi2-bi2-ma 
3. um-ma im-gur-{d}suen-ma 
4. ta-al-li-kam-ma 
5. mi-ri-isz-ti ta-mu#-ur 
6. u2-ul e-gi-i-ma 
7. _GAN2_-lam u2-le-ri-isz-ma 
8. i-na a-wa-tim 
9. u2-ul ta-s,a-ba-ta-an-ni 
10. szum#-ma i-na ki-tim 
11. be-li at-ta 
@reverse 
1. _sze gu2-un_ 
2. a-na re-ba-tim 
3. s,u2-hi-ir-ma 
4. a-na ba-la-at, 
5. lu-um-du-ud 
6. mi-im-ma-a-a 
7. lu-di-in-ma 
8. _1(u) sze gur_ 
9. al-pi lu-sza-ki-il5 
10. szum-ma mi-im-ma 
11. re-di szar-ri-im 
12. ta-sza-pa-ra-am 
13. i-na-na-a-ma 
14. lu-ta-al-kam-ma 
@left 
1. wa-ar-ki al-pi-ka 
2. lu-ul-li-ik 


Primary publication: AbB 14, 224
Author(s): Veenhof, Klaas R.
Publication date: 2006
Secondary publication(s): 
Collection: Louvre Museum, Paris, France
Museum no.: AO 21963
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20151201 wagensonner
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P493829
Transliteration:
&P493829 = AbB 14, 224 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}suen-eri-ba 
2. qi2-bi2-ma 
3. um-ma a-pil-x-x-ma 
4. at-ta a-na [x x] 
5. [x] x-{d}nanna 
$ rest broken 
@reverse 
$ beginning broken 
1'. u2 x a bi i [x] 
2'. a-wi-lam u2-ha-di-ir 
3'. u3# ni-pi-at a#-wi#-li#-[im] 
4'. ip#-pe#-e# 
5'. [x?] ba ri x 
6'. szi-ni?-ka da AZ? 
@left 
1. [x] isz-szi x x 
2. [x] x szu ma x x x 


Primary publication: AbB 14, 225
Author(s): Veenhof, Klaas R.
Publication date: 2006
Secondary publication(s): 
Collection: Louvre Museum, Paris, France
Museum no.: AO 05420
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20151201 wagensonner
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P492347
Transliteration:
&P492347 = AbB 14, 225 
#atf: lang akk 
@tablet 
@obverse 
1. a-na {d}suen-i-din-nam qi2-[bi2-ma] 
2. um-ma [ha-am]-mu#-ra#-[pi2-ma] 
3. tup-pi2 an-[ni-a-am i-na] a#-ma-ri#-im# 
4. i-na ha#-[x x x] x _ugula-mesz ma2-i3-dub hi-a_ 
5. sza le#-et# [x x sza] qa2-ti-ka 
6. sza a-na na-x [x x] _hi-a_ 
7. in-[na-ad]-nu 
8. _5(disz) ma2-lah5-mesz_ sza# [a]-na# ta-ri-ba-tum 
9. in-na-ad-nu 
10. _ugula_ {d}utu-ma#-gir 
11. 5(disz) a-na {d}nanna-tum u3# sze-ep-{d}suen 
12. 3(disz) a-hu-ia-tum u3 i3-li2-i-din#-nam 
13. 2(disz) an-pi2-{d}utu u3 na-ra-[am-{d}]suen# 
14. 5(disz) _ugula_ a-bu-um-wa-qar 
15. 4(disz) {d}na-bi-um-ma-lik 
16. 4(disz) u4-bala-ni-nam-he2# 
17. 8(disz) _ugula_ i-din-{d}mar-tu# 
@reverse 
1. 3(disz) x _ugula_ dingir-dingir-sze-me-a 
2. 3(disz) x _ugula_ {d}utu-ma-gir 
3. 2(disz) x _ugula_ i-din-{d}mar-tu 
4. 6(disz) _ki_ {d}utu-mu-sza-lim 
5. _3(u) 3(disz) ma2-lah5-mesz_ 
6. ep-pe2-szi an-nu-tim 
7. sza li-ti-ka 
8. a-na pi2-i tup-pi2-im 
9. an-ni-i-im 
10. sza u2-sza-bi-la-ak-kum 
11. li#-pa-ah-hi-ru-ni-ik-kum-ma 
12. a-na babila2{ki} 
13. t,u2-ur-da!-asz-szu-nu-ti 
14. lu ti-de asz-tap-ra-ak-kum 
15. i-na# _ma2-lah5-mesz_ ep-pe2-szi an-nu-tim 
16. 1(disz) _lu2#_ la te-ez-zi-ba-am 


Primary publication: AbB 14, 226
Author(s): Veenhof, Klaas R.
Publication date: 2006
Secondary publication(s): 
Collection: Louvre Museum, Paris, France
Museum no.: AO 24211
Accession no.: 
Provenience: 
Excavation no.: 
Period: Old Babylonian (ca. 1900-1600 BC)
Dates referenced: 
Object type: tablet
Remarks: 
Material: clay
Language: 
Genre: Letter
Sub-genre: 
CDLI comments: 
Catalogue source: 20151201 wagensonner
ATF source: Jagersma, Bram
Translation: no translation
UCLA Library ARK: 
Composite no.: 
Seal no.: 
CDLI no.: P494060
Transliteration:
&P494060 = AbB 14, 226 
#atf: lang akk 
@tablet 
@obverse 
1. [a-na x]-da-a-a 
2. qi2#-[bi2]-ma 
3. um-ma [x]-x-ki-<ma> 
4. szum-ma be#-li2# at!-ta# 
5. a-na-ku _geme2_-am 
6. ad-di-in 
7. _geme2#_-am a-na be-li2-ia [a]-na# 
@reverse 
1. szi#-pi2-ir _e2_ 
2. i-di-im-ma 
3. a-na larsa{ki} 
4. li-ir-de-szi 
$ single ruling