├── .github └── workflows │ └── action.yml ├── .gitignore ├── .gitmodules ├── .readthedocs.yaml ├── CHANGES.md ├── CONTRIBUTING.md ├── DEV_NOTES.md ├── LICENSE.txt ├── README ├── README.rst ├── compactify_spec_examples.py ├── docs ├── README.md ├── api.rst ├── command_line.rst ├── conf.py ├── conformance.rst ├── demo_build_v1_0_spec_examples.md ├── demo_build_v1_1_spec_examples.md ├── demo_ocfl_object_script.md ├── demo_ocfl_root_script.md ├── demo_ocfl_sidecar_script.md ├── demo_ocfl_validate_script.md ├── demo_using_bagit_bags.md ├── demos.rst ├── fixtures.rst ├── index.rst ├── installation.rst ├── jsonschema_inventory_validation.md ├── ocfl.constants.rst ├── ocfl.inventory.rst ├── ocfl.inventory_validator.rst ├── ocfl.new_version.rst ├── ocfl.object.rst ├── ocfl.storage_root.rst ├── ocfl.version.rst ├── ocfl.version_metadata.rst ├── ocfl_object_script.rst ├── ocfl_root_script.rst ├── ocfl_sidecar_script.rst ├── ocfl_validate_script.rst ├── requirements.txt └── validation_status.md ├── extra_fixtures ├── 1.0 │ ├── bad-objects │ │ ├── E009_version_two_only │ │ │ ├── 0=ocfl_object_1.0 │ │ │ ├── inventory.json │ │ │ ├── inventory.json.sha512 │ │ │ └── v2 │ │ │ │ ├── content │ │ │ │ └── a_file.txt │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── E024_empty_dir_in_content.zip │ │ ├── E033_inventory_bad_json │ │ │ ├── 0=ocfl_object_1.0 │ │ │ ├── inventory.json │ │ │ ├── inventory.json.sha512 │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── E041_manifest_not_object │ │ │ ├── 0=ocfl_object_1.0 │ │ │ ├── inventory.json │ │ │ ├── inventory.json.sha512 │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── E042_bad_manifest_content_path │ │ │ ├── 0=ocfl_object_1.0 │ │ │ ├── inventory.json │ │ │ ├── inventory.json.sha512 │ │ │ └── v1 │ │ │ │ ├── content │ │ │ │ └── a_file.txt │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── E046_missing_version_dir │ │ │ ├── 0=ocfl_object_1.0 │ │ │ ├── inventory.json │ │ │ └── inventory.json.sha512 │ │ ├── E050_state_digest_different_case │ │ │ ├── 0=ocfl_object_1.0 │ │ │ ├── inventory.json │ │ │ ├── inventory.json.sha512 │ │ │ └── v1 │ │ │ │ ├── content │ │ │ │ └── empty1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── E050_state_repeated_digest │ │ │ ├── 0=ocfl_object_1.0 │ │ │ ├── inventory.json │ │ │ ├── inventory.json.sha512 │ │ │ └── v1 │ │ │ │ ├── content │ │ │ │ └── empty1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── E056_null_fixity │ │ │ ├── 0=ocfl_object_1.0 │ │ │ ├── inventory.json │ │ │ ├── inventory.json.sha512 │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── E066_changed_content_for_logical_path │ │ │ ├── 0=ocfl_object_1.0 │ │ │ ├── inventory.json │ │ │ ├── inventory.json.sha512 │ │ │ ├── v1 │ │ │ │ ├── content │ │ │ │ │ ├── a_file.txt │ │ │ │ │ └── b_file.txt │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ │ └── v2 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── E066_changed_v1_logical_path │ │ │ ├── 0=ocfl_object_1.0 │ │ │ ├── inventory.json │ │ │ ├── inventory.json.sha512 │ │ │ ├── v1 │ │ │ │ ├── content │ │ │ │ │ └── a_file.txt │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ │ └── v2 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── E092_bad_manifest_digest │ │ │ ├── 0=ocfl_object_1.0 │ │ │ ├── inventory.json │ │ │ ├── inventory.json.sha512 │ │ │ └── v1 │ │ │ │ ├── content │ │ │ │ └── a_file.txt │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── E093_fixity_digest_mismatch_in_v1 │ │ │ ├── 0=ocfl_object_1.0 │ │ │ ├── inventory.json │ │ │ ├── inventory.json.sha512 │ │ │ ├── v1 │ │ │ │ ├── content │ │ │ │ │ └── test.txt │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ │ └── v2 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── E094_message_not_a_string │ │ │ ├── 0=ocfl_object_1.0 │ │ │ ├── inventory.json │ │ │ ├── inventory.json.sha512 │ │ │ └── v1 │ │ │ │ ├── content │ │ │ │ └── a_file.txt │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── E096_manifest_repeated_digest │ │ │ ├── 0=ocfl_object_1.0 │ │ │ ├── inventory.json │ │ │ ├── inventory.json.sha512 │ │ │ └── v1 │ │ │ │ ├── content │ │ │ │ ├── a_file.txt │ │ │ │ └── duplicate_of_a_file.txt │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── E097_fixity_repeated_digest │ │ │ ├── 0=ocfl_object_1.0 │ │ │ ├── inventory.json │ │ │ ├── inventory.json.sha512 │ │ │ └── v1 │ │ │ │ ├── content │ │ │ │ ├── a_file.txt │ │ │ │ └── duplicate_of_a_file.txt │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ └── E099_bad_content_path_elements │ │ │ ├── 0=ocfl_object_1.0 │ │ │ ├── inventory.json │ │ │ ├── inventory.json.sha512 │ │ │ └── v1 │ │ │ ├── content │ │ │ └── a_file.txt │ │ │ ├── inventory.json │ │ │ └── inventory.json.sha512 │ ├── content │ │ └── spec-ex-full-metadata.json │ ├── good-objects │ │ ├── root_ext0003_horrible-obj │ │ │ ├── 0=ocfl_object_1.0 │ │ │ ├── inventory.json │ │ │ ├── inventory.json.sha512 │ │ │ └── v1 │ │ │ │ ├── content │ │ │ │ └── file.txt │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── root_ext0003_object-01 │ │ │ ├── 0=ocfl_object_1.0 │ │ │ ├── inventory.json │ │ │ ├── inventory.json.sha512 │ │ │ └── v1 │ │ │ │ ├── content │ │ │ │ └── file.txt │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ └── ten_level_deep_directories.zip │ └── warn-objects │ │ └── W003_empty_content_dir.zip ├── 1.1 │ ├── bad-objects │ │ ├── E003_two_declarations │ │ │ ├── 0=ocfl_object_1.0 │ │ │ ├── 0=ocfl_object_1.1 │ │ │ ├── inventory.json │ │ │ ├── inventory.json.sha512 │ │ │ └── v1 │ │ │ │ ├── content │ │ │ │ └── a_file.txt │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── E019_content_dir_set_in_v2_not_v1 │ │ │ ├── 0=ocfl_object_1.1 │ │ │ ├── inventory.json │ │ │ ├── inventory.json.sha512 │ │ │ ├── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ │ └── v2 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── stuff │ │ │ │ └── test.txt │ │ ├── E020_inconsistent_content_directory │ │ │ ├── 0=ocfl_object_1.1 │ │ │ ├── inventory.json │ │ │ ├── inventory.json.sha512 │ │ │ ├── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ │ └── v2 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── stuff │ │ │ │ └── test.txt │ │ ├── E038_type_not_str │ │ │ ├── 0=ocfl_object_1.1 │ │ │ ├── inventory.json │ │ │ ├── inventory.json.sha512 │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ └── E111_null_fixity │ │ │ ├── 0=ocfl_object_1.1 │ │ │ ├── inventory.json │ │ │ ├── inventory.json.sha512 │ │ │ └── v1 │ │ │ ├── inventory.json │ │ │ └── inventory.json.sha512 │ ├── content │ │ └── spec-ex-full-metadata.json │ └── good-objects │ │ └── empty_fixity │ │ ├── 0=ocfl_object_1.1 │ │ ├── inventory.json │ │ ├── inventory.json.sha512 │ │ └── v1 │ │ ├── inventory.json │ │ └── inventory.json.sha512 ├── bad-inventories │ ├── inventory_E042a_bad_content_paths.json │ ├── inventory_E042b_unknown_version.json │ ├── inventory_E042b_zero_padding_mismatch.json │ └── inventory_E042c_bad_content_paths.json ├── bad-storage-roots │ ├── E069_no_declaration_file.zip │ ├── E072_root_with_file_not_in_object │ │ ├── 0=ocfl_1.0 │ │ ├── dir1 │ │ │ └── bad_file.txt │ │ └── dir2 │ │ │ └── minimal_no_content │ │ │ ├── 0=ocfl_object_1.0 │ │ │ ├── inventory.json │ │ │ ├── inventory.json.sha512 │ │ │ └── v1 │ │ │ ├── inventory.json │ │ │ └── inventory.json.sha512 │ ├── E073_root_with_empty_dir.zip │ └── simple-bad-root.zip ├── content │ ├── dedupe_content │ │ ├── v1 │ │ │ ├── empty1.txt │ │ │ ├── empty2.txt │ │ │ └── empty3.txt │ │ └── v2 │ │ │ └── empty4.txt │ └── dupe-files │ │ ├── file1.txt │ │ └── file1_dupe.txt ├── extension_configs │ └── extensions │ │ ├── good_param │ │ └── config.json │ │ ├── no_config │ │ └── keep │ │ ├── not_json │ │ └── config.json │ │ └── not_json_object │ │ └── config.json ├── good-storage-roots │ ├── fedora-root │ │ ├── 10 │ │ │ └── d6 │ │ │ │ └── 0c │ │ │ │ └── 7ad430f9-93ea-4962-be72-eae7ba8ee26c │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ ├── 7ad430f9-93ea-4962-be72-eae7ba8ee26c-description.json │ │ │ │ │ │ │ └── 7ad430f9-93ea-4962-be72-eae7ba8ee26c.json │ │ │ │ │ │ │ ├── 7ad430f9-93ea-4962-be72-eae7ba8ee26c │ │ │ │ │ │ │ └── 7ad430f9-93ea-4962-be72-eae7ba8ee26c-description.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 13 │ │ │ └── 89 │ │ │ │ └── 75 │ │ │ │ └── b09d6ae1-83db-496a-98b3-93c24e6691c7 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── b09d6ae1-83db-496a-98b3-93c24e6691c7.json │ │ │ │ │ │ │ └── b09d6ae1-83db-496a-98b3-93c24e6691c7.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 14 │ │ │ └── 83 │ │ │ │ └── 65 │ │ │ │ └── _fedora_repository_root │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── _fedora_repository_root.json │ │ │ │ │ │ │ └── _fedora_repository_root.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 17 │ │ │ └── 23 │ │ │ │ └── a9 │ │ │ │ └── 40066aca-ca16-4e92-a9a4-6ed444139d60 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ ├── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ │ │ ├── v2 │ │ │ │ ├── content │ │ │ │ │ └── r1 │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ └── 40066aca-ca16-4e92-a9a4-6ed444139d60.json │ │ │ │ │ │ └── 40066aca-ca16-4e92-a9a4-6ed444139d60.nt │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ │ │ └── v3 │ │ │ │ ├── content │ │ │ │ └── r1 │ │ │ │ │ ├── .fcrepo │ │ │ │ │ ├── child1-description.json │ │ │ │ │ └── child1.json │ │ │ │ │ ├── child1 │ │ │ │ │ └── child1-description.nt │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 18 │ │ │ └── 2b │ │ │ │ └── fe │ │ │ │ └── 5ba4c9e2-68be-4c62-a09f-49e8fdae01be │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── 5ba4c9e2-68be-4c62-a09f-49e8fdae01be.json │ │ │ │ │ │ │ └── 5ba4c9e2-68be-4c62-a09f-49e8fdae01be.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 19 │ │ │ ├── 47 │ │ │ │ └── 57 │ │ │ │ │ └── 821f56ff-e476-484c-8da7-b30f416a1c2e_child-3 │ │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ │ ├── extensions │ │ │ │ │ └── mutable-head │ │ │ │ │ │ ├── HEAD │ │ │ │ │ │ ├── content │ │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ │ └── child-3.json │ │ │ │ │ │ │ │ └── child-3.nt │ │ │ │ │ │ ├── inventory.json │ │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ │ ├── revisions │ │ │ │ │ │ └── r1 │ │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ │ ├── inventory.json │ │ │ │ │ ├── inventory.json.sha512 │ │ │ │ │ └── v1 │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ └── f3 │ │ │ │ └── ce │ │ │ │ └── 9b7daf70-4165-45d8-bb21-e497b916097a │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── 9b7daf70-4165-45d8-bb21-e497b916097a.json │ │ │ │ │ │ │ └── 9b7daf70-4165-45d8-bb21-e497b916097a.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 21 │ │ │ └── b0 │ │ │ │ └── e1 │ │ │ │ └── ea290fe3-1961-4508-bd77-2491129b2b45 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── ea290fe3-1961-4508-bd77-2491129b2b45.json │ │ │ │ │ │ │ └── ea290fe3-1961-4508-bd77-2491129b2b45.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 23 │ │ │ └── 6e │ │ │ │ └── 57 │ │ │ │ └── 821f56ff-e476-484c-8da7-b30f416a1c2e_child-18 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── child-18.json │ │ │ │ │ │ │ └── child-18.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 24 │ │ │ └── ed │ │ │ │ └── 04 │ │ │ │ └── e157cd3f-10ea-401a-9d52-6824be4e9bf9 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── e157cd3f-10ea-401a-9d52-6824be4e9bf9.json │ │ │ │ │ │ │ └── e157cd3f-10ea-401a-9d52-6824be4e9bf9.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 25 │ │ │ ├── 40 │ │ │ │ └── bb │ │ │ │ │ └── bffa039d-5718-400a-816b-94b359451b94 │ │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ │ ├── inventory.json │ │ │ │ │ ├── inventory.json.sha512 │ │ │ │ │ ├── v1 │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ └── v2 │ │ │ │ │ ├── content │ │ │ │ │ └── r1 │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ └── bffa039d-5718-400a-816b-94b359451b94.json │ │ │ │ │ │ └── bffa039d-5718-400a-816b-94b359451b94.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ └── ec │ │ │ │ └── 16 │ │ │ │ └── 821f56ff-e476-484c-8da7-b30f416a1c2e_child-9 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── child-9.json │ │ │ │ │ │ │ └── child-9.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 26 │ │ │ └── 92 │ │ │ │ └── ca │ │ │ │ └── c0a6272d-d098-402f-a920-6b5dd659b707 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── c0a6272d-d098-402f-a920-6b5dd659b707.json │ │ │ │ │ │ │ └── c0a6272d-d098-402f-a920-6b5dd659b707.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 27 │ │ │ └── ef │ │ │ │ └── e8 │ │ │ │ └── 20a59092-98b6-43e6-820f-e0850da17e2c_x │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ ├── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ │ └── x-description.json │ │ │ │ │ │ │ └── x-description.nt │ │ │ │ │ │ └── r2 │ │ │ │ │ │ │ └── .fcrepo │ │ │ │ │ │ │ └── x.json │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ ├── r1 │ │ │ │ │ └── r2 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 28 │ │ │ └── f1 │ │ │ │ └── 82 │ │ │ │ └── 821f56ff-e476-484c-8da7-b30f416a1c2e_child-12 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── child-12.json │ │ │ │ │ │ │ └── child-12.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 29 │ │ │ ├── 90 │ │ │ │ └── c5 │ │ │ │ │ └── a5de4862-f3ce-4dc1-964d-c9e7fdc47d2b │ │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ │ ├── extensions │ │ │ │ │ └── mutable-head │ │ │ │ │ │ ├── HEAD │ │ │ │ │ │ ├── content │ │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ │ └── a5de4862-f3ce-4dc1-964d-c9e7fdc47d2b.json │ │ │ │ │ │ │ │ └── a5de4862-f3ce-4dc1-964d-c9e7fdc47d2b.nt │ │ │ │ │ │ ├── inventory.json │ │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ │ ├── revisions │ │ │ │ │ │ └── r1 │ │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ │ ├── inventory.json │ │ │ │ │ ├── inventory.json.sha512 │ │ │ │ │ └── v1 │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ └── b3 │ │ │ │ └── e6 │ │ │ │ └── 27dc1fe1-0691-48ed-b525-864dcdc7af84_x │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ ├── x-description.json │ │ │ │ │ │ │ └── x.json │ │ │ │ │ │ │ ├── x │ │ │ │ │ │ │ └── x-description.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 31 │ │ │ └── 45 │ │ │ │ └── 41 │ │ │ │ └── 8844f976-a2a6-4ede-8897-db0f2aa471aa │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── 8844f976-a2a6-4ede-8897-db0f2aa471aa.json │ │ │ │ │ │ │ └── 8844f976-a2a6-4ede-8897-db0f2aa471aa.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 33 │ │ │ ├── 18 │ │ │ │ └── b7 │ │ │ │ │ └── 28784804-0f6a-430e-9011-9545354f7b84 │ │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ │ ├── extensions │ │ │ │ │ └── mutable-head │ │ │ │ │ │ ├── HEAD │ │ │ │ │ │ ├── content │ │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ │ └── 28784804-0f6a-430e-9011-9545354f7b84.json │ │ │ │ │ │ │ │ └── 28784804-0f6a-430e-9011-9545354f7b84.nt │ │ │ │ │ │ ├── inventory.json │ │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ │ ├── revisions │ │ │ │ │ │ └── r1 │ │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ │ ├── inventory.json │ │ │ │ │ ├── inventory.json.sha512 │ │ │ │ │ └── v1 │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ └── 49 │ │ │ │ └── 12 │ │ │ │ └── 2292d713-c182-4c40-b0b6-56983b3facb7_00_1 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── 1.json │ │ │ │ │ │ │ └── 1.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 35 │ │ │ └── 39 │ │ │ │ └── fd │ │ │ │ └── b32be786-e7d9-47ad-be2d-b550f33b9c7e │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── b32be786-e7d9-47ad-be2d-b550f33b9c7e.json │ │ │ │ │ │ │ └── b32be786-e7d9-47ad-be2d-b550f33b9c7e.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 38 │ │ │ ├── ac │ │ │ │ └── 5d │ │ │ │ │ └── 90f9d90f-e114-4264-a14f-edc0d5c7ee85 │ │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ │ ├── extensions │ │ │ │ │ └── mutable-head │ │ │ │ │ │ ├── HEAD │ │ │ │ │ │ ├── content │ │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ │ └── 90f9d90f-e114-4264-a14f-edc0d5c7ee85.json │ │ │ │ │ │ │ │ └── 90f9d90f-e114-4264-a14f-edc0d5c7ee85.nt │ │ │ │ │ │ ├── inventory.json │ │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ │ ├── revisions │ │ │ │ │ │ └── r1 │ │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ │ ├── inventory.json │ │ │ │ │ ├── inventory.json.sha512 │ │ │ │ │ └── v1 │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ └── e6 │ │ │ │ └── 1f │ │ │ │ └── 73781b39-8b8c-4313-a6f1-9c6d54494ae7 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ ├── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ │ │ └── v2 │ │ │ │ ├── content │ │ │ │ └── r1 │ │ │ │ │ ├── .fcrepo │ │ │ │ │ └── 73781b39-8b8c-4313-a6f1-9c6d54494ae7.json │ │ │ │ │ └── 73781b39-8b8c-4313-a6f1-9c6d54494ae7.nt │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 39 │ │ │ ├── 5a │ │ │ │ └── 1d │ │ │ │ │ └── c58b2e2a-9964-4e40-8c32-1bbfbdcd7b7b │ │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ │ ├── inventory.json │ │ │ │ │ ├── inventory.json.sha512 │ │ │ │ │ ├── v1 │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ └── v2 │ │ │ │ │ ├── content │ │ │ │ │ └── r1 │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ └── c58b2e2a-9964-4e40-8c32-1bbfbdcd7b7b.json │ │ │ │ │ │ └── c58b2e2a-9964-4e40-8c32-1bbfbdcd7b7b.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ └── ef │ │ │ │ └── 1e │ │ │ │ └── a56afe87-90c3-45bd-8ef9-f630dd8ae15b_x │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ ├── x-description.json │ │ │ │ │ │ │ └── x.json │ │ │ │ │ │ │ ├── x │ │ │ │ │ │ │ └── x-description.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 42 │ │ │ └── d8 │ │ │ │ └── 17 │ │ │ │ └── e3f21631-a467-4f55-812e-53e13f2b306a │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── e3f21631-a467-4f55-812e-53e13f2b306a.json │ │ │ │ │ │ │ └── e3f21631-a467-4f55-812e-53e13f2b306a.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 43 │ │ │ └── 8c │ │ │ │ └── 3c │ │ │ │ └── f356f2d2-8fe4-46ae-9d8c-c2816a47a532 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── f356f2d2-8fe4-46ae-9d8c-c2816a47a532.json │ │ │ │ │ │ │ └── f356f2d2-8fe4-46ae-9d8c-c2816a47a532.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 45 │ │ │ └── 95 │ │ │ │ └── 4a │ │ │ │ └── d3b8b5b9-5b50-4fe4-922f-43f71104429e │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ ├── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ │ └── d3b8b5b9-5b50-4fe4-922f-43f71104429e.json │ │ │ │ │ │ │ └── d3b8b5b9-5b50-4fe4-922f-43f71104429e.nt │ │ │ │ │ │ └── r3 │ │ │ │ │ │ │ └── .fcrepo │ │ │ │ │ │ │ └── e4bf8075-f67c-4c4b-9beb-10aed7072968.json │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ ├── r1 │ │ │ │ │ ├── r2 │ │ │ │ │ └── r3 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 48 │ │ │ └── 26 │ │ │ │ └── 83 │ │ │ │ └── 9b7daf70-4165-45d8-bb21-e497b916097a_c │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r2 │ │ │ │ │ │ │ └── .fcrepo │ │ │ │ │ │ │ └── c.json │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ ├── r1 │ │ │ │ │ └── r2 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 50 │ │ │ └── ad │ │ │ │ └── 0a │ │ │ │ └── 74b1ac2f-8ced-4607-82f4-844d32457764 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── 74b1ac2f-8ced-4607-82f4-844d32457764.json │ │ │ │ │ │ │ └── 74b1ac2f-8ced-4607-82f4-844d32457764.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 51 │ │ │ └── 10 │ │ │ │ └── 06 │ │ │ │ └── 63cd67ae-ed3c-4b08-9a64-e7af3172031a │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ ├── 63cd67ae-ed3c-4b08-9a64-e7af3172031a-description.json │ │ │ │ │ │ │ └── 63cd67ae-ed3c-4b08-9a64-e7af3172031a.json │ │ │ │ │ │ │ ├── 63cd67ae-ed3c-4b08-9a64-e7af3172031a │ │ │ │ │ │ │ └── 63cd67ae-ed3c-4b08-9a64-e7af3172031a-description.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 52 │ │ │ └── 06 │ │ │ │ └── 1f │ │ │ │ └── 821f56ff-e476-484c-8da7-b30f416a1c2e_child-19 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── child-19.json │ │ │ │ │ │ │ └── child-19.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 60 │ │ │ └── 57 │ │ │ │ └── 0f │ │ │ │ └── 8bc9546a-4295-43e2-8605-d243bc182572 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r2 │ │ │ │ │ │ │ └── .fcrepo │ │ │ │ │ │ │ ├── 8bc9546a-4295-43e2-8605-d243bc182572-description.json │ │ │ │ │ │ │ └── 8bc9546a-4295-43e2-8605-d243bc182572.json │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ ├── r1 │ │ │ │ │ └── r2 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 61 │ │ │ └── 38 │ │ │ │ └── 37 │ │ │ │ └── 3fede0e4-d168-475a-9b51-edbed6f0d972 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ ├── 3fede0e4-d168-475a-9b51-edbed6f0d972-description.json │ │ │ │ │ │ │ └── 3fede0e4-d168-475a-9b51-edbed6f0d972.json │ │ │ │ │ │ │ ├── 3fede0e4-d168-475a-9b51-edbed6f0d972 │ │ │ │ │ │ │ └── 3fede0e4-d168-475a-9b51-edbed6f0d972-description.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 62 │ │ │ ├── 49 │ │ │ │ └── 98 │ │ │ │ │ └── c8463261-fe17-45a3-85c9-0a2dae9ee0d0 │ │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ │ ├── extensions │ │ │ │ │ └── mutable-head │ │ │ │ │ │ ├── HEAD │ │ │ │ │ │ ├── content │ │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ │ └── c8463261-fe17-45a3-85c9-0a2dae9ee0d0.json │ │ │ │ │ │ │ │ └── c8463261-fe17-45a3-85c9-0a2dae9ee0d0.nt │ │ │ │ │ │ ├── inventory.json │ │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ │ ├── revisions │ │ │ │ │ │ └── r1 │ │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ │ ├── inventory.json │ │ │ │ │ ├── inventory.json.sha512 │ │ │ │ │ └── v1 │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ └── 4a │ │ │ │ └── 1f │ │ │ │ └── b05e8f6a-2f81-4976-97b9-9e885c01d75a │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r2 │ │ │ │ │ │ │ └── .fcrepo │ │ │ │ │ │ │ └── b05e8f6a-2f81-4976-97b9-9e885c01d75a.json │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ ├── r1 │ │ │ │ │ └── r2 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 63 │ │ │ ├── 31 │ │ │ │ └── 59 │ │ │ │ │ └── 21523393-bd34-401a-ac50-9f6cb505a2f7 │ │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ │ ├── extensions │ │ │ │ │ └── mutable-head │ │ │ │ │ │ ├── HEAD │ │ │ │ │ │ ├── content │ │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ │ └── 21523393-bd34-401a-ac50-9f6cb505a2f7.json │ │ │ │ │ │ │ │ └── 21523393-bd34-401a-ac50-9f6cb505a2f7.nt │ │ │ │ │ │ ├── inventory.json │ │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ │ ├── revisions │ │ │ │ │ │ └── r1 │ │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ │ ├── inventory.json │ │ │ │ │ ├── inventory.json.sha512 │ │ │ │ │ └── v1 │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ └── ba │ │ │ │ └── 29 │ │ │ │ └── 313c1d16-8dc0-433f-a031-1a9055023dc3 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ ├── v1 │ │ │ │ ├── content │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ ├── 313c1d16-8dc0-433f-a031-1a9055023dc3-description.json │ │ │ │ │ │ └── 313c1d16-8dc0-433f-a031-1a9055023dc3.json │ │ │ │ │ ├── 313c1d16-8dc0-433f-a031-1a9055023dc3 │ │ │ │ │ └── 313c1d16-8dc0-433f-a031-1a9055023dc3-description.nt │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ │ │ ├── v2 │ │ │ │ ├── content │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ └── 313c1d16-8dc0-433f-a031-1a9055023dc3.json │ │ │ │ │ └── 313c1d16-8dc0-433f-a031-1a9055023dc3 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ │ │ └── v3 │ │ │ │ ├── content │ │ │ │ ├── .fcrepo │ │ │ │ │ └── 313c1d16-8dc0-433f-a031-1a9055023dc3.json │ │ │ │ └── 313c1d16-8dc0-433f-a031-1a9055023dc3 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 65 │ │ │ └── 60 │ │ │ │ └── b7 │ │ │ │ └── a5cb93a6-58c2-4616-9336-243ffdf71377_x │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ ├── x-description.json │ │ │ │ │ │ │ └── x.json │ │ │ │ │ │ │ ├── x │ │ │ │ │ │ │ └── x-description.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 66 │ │ │ └── 35 │ │ │ │ └── 36 │ │ │ │ └── 14f3276d-2590-4883-9e50-876b22bb323b │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── 14f3276d-2590-4883-9e50-876b22bb323b.json │ │ │ │ │ │ │ └── 14f3276d-2590-4883-9e50-876b22bb323b.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 68 │ │ │ └── 35 │ │ │ │ └── c4 │ │ │ │ └── f2e74288-e306-4705-8946-abca369681a4 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r3 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── f2e74288-e306-4705-8946-abca369681a4.json │ │ │ │ │ │ │ └── f2e74288-e306-4705-8946-abca369681a4.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ ├── r1 │ │ │ │ │ ├── r2 │ │ │ │ │ └── r3 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 69 │ │ │ └── 14 │ │ │ │ └── f7 │ │ │ │ └── 73873662-fa8b-42fe-8cda-dde70724d202 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── 73873662-fa8b-42fe-8cda-dde70724d202.json │ │ │ │ │ │ │ └── 73873662-fa8b-42fe-8cda-dde70724d202.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 70 │ │ │ └── cf │ │ │ │ └── 4f │ │ │ │ └── 9da61df2-3424-416b-a3a1-a93cd10f6889 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── 9da61df2-3424-416b-a3a1-a93cd10f6889.json │ │ │ │ │ │ │ └── 9da61df2-3424-416b-a3a1-a93cd10f6889.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 72 │ │ │ ├── 6e │ │ │ │ └── b4 │ │ │ │ │ └── 821f56ff-e476-484c-8da7-b30f416a1c2e_child-1 │ │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ │ ├── extensions │ │ │ │ │ └── mutable-head │ │ │ │ │ │ ├── HEAD │ │ │ │ │ │ ├── content │ │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ │ └── child-1.json │ │ │ │ │ │ │ │ └── child-1.nt │ │ │ │ │ │ ├── inventory.json │ │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ │ ├── revisions │ │ │ │ │ │ └── r1 │ │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ │ ├── inventory.json │ │ │ │ │ ├── inventory.json.sha512 │ │ │ │ │ └── v1 │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ └── f1 │ │ │ │ └── fd │ │ │ │ └── b6b7c28e-c261-466f-80ed-15a5399b4c26 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── b6b7c28e-c261-466f-80ed-15a5399b4c26.json │ │ │ │ │ │ │ └── b6b7c28e-c261-466f-80ed-15a5399b4c26.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 73 │ │ │ └── c1 │ │ │ │ └── fa │ │ │ │ └── 3141bf18-f488-447b-8c77-f696363cc6da │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── 3141bf18-f488-447b-8c77-f696363cc6da.json │ │ │ │ │ │ │ └── 3141bf18-f488-447b-8c77-f696363cc6da.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 75 │ │ │ ├── 11 │ │ │ │ └── 92 │ │ │ │ │ └── 821f56ff-e476-484c-8da7-b30f416a1c2e_child-6 │ │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ │ ├── extensions │ │ │ │ │ └── mutable-head │ │ │ │ │ │ ├── HEAD │ │ │ │ │ │ ├── content │ │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ │ └── child-6.json │ │ │ │ │ │ │ │ └── child-6.nt │ │ │ │ │ │ ├── inventory.json │ │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ │ ├── revisions │ │ │ │ │ │ └── r1 │ │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ │ ├── inventory.json │ │ │ │ │ ├── inventory.json.sha512 │ │ │ │ │ └── v1 │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ ├── a2 │ │ │ │ └── 8f │ │ │ │ │ └── a415f625-bc9e-4556-b000-4790648736de │ │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ │ ├── extensions │ │ │ │ │ └── mutable-head │ │ │ │ │ │ ├── HEAD │ │ │ │ │ │ ├── content │ │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ │ └── a415f625-bc9e-4556-b000-4790648736de.json │ │ │ │ │ │ │ │ └── a415f625-bc9e-4556-b000-4790648736de.nt │ │ │ │ │ │ ├── inventory.json │ │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ │ ├── revisions │ │ │ │ │ │ └── r1 │ │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ │ ├── inventory.json │ │ │ │ │ ├── inventory.json.sha512 │ │ │ │ │ └── v1 │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ └── a4 │ │ │ │ └── 89 │ │ │ │ └── 84841381-3c53-4aca-bb04-60156e447822 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── 84841381-3c53-4aca-bb04-60156e447822.json │ │ │ │ │ │ │ └── 84841381-3c53-4aca-bb04-60156e447822.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 76 │ │ │ └── 1e │ │ │ │ └── 90 │ │ │ │ └── 5d3103be-a2f8-492f-af47-288f00fcaa70 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ ├── 5d3103be-a2f8-492f-af47-288f00fcaa70-description.json │ │ │ │ │ │ │ └── 5d3103be-a2f8-492f-af47-288f00fcaa70.json │ │ │ │ │ │ │ ├── 5d3103be-a2f8-492f-af47-288f00fcaa70 │ │ │ │ │ │ │ └── 5d3103be-a2f8-492f-af47-288f00fcaa70-description.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 82 │ │ │ └── 78 │ │ │ │ └── 93 │ │ │ │ └── 76055145-36f8-405d-af6b-574d0eec1d27 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ ├── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ │ │ ├── v2 │ │ │ │ ├── content │ │ │ │ │ └── r1 │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ └── 76055145-36f8-405d-af6b-574d0eec1d27.json │ │ │ │ │ │ └── 76055145-36f8-405d-af6b-574d0eec1d27.nt │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ │ │ ├── v3 │ │ │ │ ├── content │ │ │ │ │ └── r1 │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ └── 76055145-36f8-405d-af6b-574d0eec1d27.json │ │ │ │ │ │ └── 76055145-36f8-405d-af6b-574d0eec1d27.nt │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ │ │ └── v4 │ │ │ │ ├── content │ │ │ │ └── r1 │ │ │ │ │ ├── .fcrepo │ │ │ │ │ └── 76055145-36f8-405d-af6b-574d0eec1d27.json │ │ │ │ │ └── 76055145-36f8-405d-af6b-574d0eec1d27.nt │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 83 │ │ │ └── 42 │ │ │ │ └── b9 │ │ │ │ └── 179ee05e-a632-4aff-95ae-c07b4375872a │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ ├── 179ee05e-a632-4aff-95ae-c07b4375872a-description.json │ │ │ │ │ │ │ └── 179ee05e-a632-4aff-95ae-c07b4375872a.json │ │ │ │ │ │ │ ├── 179ee05e-a632-4aff-95ae-c07b4375872a │ │ │ │ │ │ │ └── 179ee05e-a632-4aff-95ae-c07b4375872a-description.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 84 │ │ │ ├── 08 │ │ │ │ └── 68 │ │ │ │ │ └── 2292d713-c182-4c40-b0b6-56983b3facb7_00_2 │ │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ │ ├── extensions │ │ │ │ │ └── mutable-head │ │ │ │ │ │ ├── HEAD │ │ │ │ │ │ ├── content │ │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ │ └── 2.json │ │ │ │ │ │ │ │ └── 2.nt │ │ │ │ │ │ ├── inventory.json │ │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ │ ├── revisions │ │ │ │ │ │ └── r1 │ │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ │ ├── inventory.json │ │ │ │ │ ├── inventory.json.sha512 │ │ │ │ │ └── v1 │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ ├── 6b │ │ │ │ └── 0b │ │ │ │ │ └── 1f28c4fe-b856-4153-9e8e-2f15c18cfc42 │ │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ │ ├── extensions │ │ │ │ │ └── mutable-head │ │ │ │ │ │ ├── HEAD │ │ │ │ │ │ ├── content │ │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ │ └── 1f28c4fe-b856-4153-9e8e-2f15c18cfc42.json │ │ │ │ │ │ │ │ └── 1f28c4fe-b856-4153-9e8e-2f15c18cfc42.nt │ │ │ │ │ │ ├── inventory.json │ │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ │ ├── revisions │ │ │ │ │ │ └── r1 │ │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ │ ├── inventory.json │ │ │ │ │ ├── inventory.json.sha512 │ │ │ │ │ └── v1 │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ ├── 6f │ │ │ │ └── d0 │ │ │ │ │ └── 6c9d0a2b-ed8c-4e82-9588-be6fbb7cce66 │ │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ │ ├── inventory.json │ │ │ │ │ ├── inventory.json.sha512 │ │ │ │ │ ├── v1 │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ └── v2 │ │ │ │ │ ├── content │ │ │ │ │ └── r1 │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ └── 6c9d0a2b-ed8c-4e82-9588-be6fbb7cce66.json │ │ │ │ │ │ └── 6c9d0a2b-ed8c-4e82-9588-be6fbb7cce66.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ └── da │ │ │ │ └── 4a │ │ │ │ └── bc3d54db-e94a-4e8c-9d05-7af7e143b4b5 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ ├── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ │ └── bc3d54db-e94a-4e8c-9d05-7af7e143b4b5.json │ │ │ │ │ │ │ └── bc3d54db-e94a-4e8c-9d05-7af7e143b4b5 │ │ │ │ │ │ └── r3 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── bc3d54db-e94a-4e8c-9d05-7af7e143b4b5-description.json │ │ │ │ │ │ │ └── bc3d54db-e94a-4e8c-9d05-7af7e143b4b5-description.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ ├── r1 │ │ │ │ │ ├── r2 │ │ │ │ │ └── r3 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 85 │ │ │ ├── 57 │ │ │ │ └── ed │ │ │ │ │ └── 821f56ff-e476-484c-8da7-b30f416a1c2e_child-13 │ │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ │ ├── extensions │ │ │ │ │ └── mutable-head │ │ │ │ │ │ ├── HEAD │ │ │ │ │ │ ├── content │ │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ │ └── child-13.json │ │ │ │ │ │ │ │ └── child-13.nt │ │ │ │ │ │ ├── inventory.json │ │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ │ ├── revisions │ │ │ │ │ │ └── r1 │ │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ │ ├── inventory.json │ │ │ │ │ ├── inventory.json.sha512 │ │ │ │ │ └── v1 │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ └── 2d │ │ │ │ └── 6a │ │ │ │ └── f20453cc-2c12-42c6-b3c7-f1b9a4300237 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── f20453cc-2c12-42c6-b3c7-f1b9a4300237.json │ │ │ │ │ │ │ └── f20453cc-2c12-42c6-b3c7-f1b9a4300237.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 86 │ │ │ ├── 26 │ │ │ │ └── 7a │ │ │ │ │ └── 2292d713-c182-4c40-b0b6-56983b3facb7_00_4 │ │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ │ ├── extensions │ │ │ │ │ └── mutable-head │ │ │ │ │ │ ├── HEAD │ │ │ │ │ │ ├── content │ │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ │ └── 4.json │ │ │ │ │ │ │ │ └── 4.nt │ │ │ │ │ │ ├── inventory.json │ │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ │ ├── revisions │ │ │ │ │ │ └── r1 │ │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ │ ├── inventory.json │ │ │ │ │ ├── inventory.json.sha512 │ │ │ │ │ └── v1 │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ └── 0d │ │ │ │ └── 56 │ │ │ │ └── dbf6b1fd-f227-40da-aad1-93cbb95b50ca │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r2 │ │ │ │ │ │ │ └── .fcrepo │ │ │ │ │ │ │ └── dbf6b1fd-f227-40da-aad1-93cbb95b50ca.json │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ ├── r1 │ │ │ │ │ └── r2 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 87 │ │ │ └── 0a │ │ │ │ └── 20 │ │ │ │ └── 974ecb74-8193-491b-bb38-515e62be9a6f │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ ├── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ │ │ └── v2 │ │ │ │ ├── content │ │ │ │ └── r1 │ │ │ │ │ ├── .fcrepo │ │ │ │ │ └── 974ecb74-8193-491b-bb38-515e62be9a6f.json │ │ │ │ │ └── 974ecb74-8193-491b-bb38-515e62be9a6f.nt │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 89 │ │ │ ├── cf │ │ │ │ └── 8c │ │ │ │ │ └── 32bf84ed-ba9c-464d-b2a9-1f9c4577169c │ │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ │ ├── extensions │ │ │ │ │ └── mutable-head │ │ │ │ │ │ ├── HEAD │ │ │ │ │ │ ├── content │ │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ │ └── 32bf84ed-ba9c-464d-b2a9-1f9c4577169c.json │ │ │ │ │ │ │ │ └── 32bf84ed-ba9c-464d-b2a9-1f9c4577169c.nt │ │ │ │ │ │ ├── inventory.json │ │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ │ ├── revisions │ │ │ │ │ │ └── r1 │ │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ │ ├── inventory.json │ │ │ │ │ ├── inventory.json.sha512 │ │ │ │ │ └── v1 │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ └── d8 │ │ │ │ └── ca │ │ │ │ └── 821f56ff-e476-484c-8da7-b30f416a1c2e_child-17 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── child-17.json │ │ │ │ │ │ │ └── child-17.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 93 │ │ │ ├── 40 │ │ │ │ └── 9c │ │ │ │ │ └── 2a907922-8a7e-4236-ae31-b5f0526bbccf │ │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ │ ├── extensions │ │ │ │ │ └── mutable-head │ │ │ │ │ │ ├── HEAD │ │ │ │ │ │ ├── content │ │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ │ └── 2a907922-8a7e-4236-ae31-b5f0526bbccf.json │ │ │ │ │ │ │ │ └── 2a907922-8a7e-4236-ae31-b5f0526bbccf.nt │ │ │ │ │ │ ├── inventory.json │ │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ │ ├── revisions │ │ │ │ │ │ └── r1 │ │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ │ ├── inventory.json │ │ │ │ │ ├── inventory.json.sha512 │ │ │ │ │ └── v1 │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ └── 55 │ │ │ │ └── 60 │ │ │ │ └── 8ae988fa-0973-49c5-aefb-7d7a58255220_x │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ ├── x-description.json │ │ │ │ │ │ │ └── x.json │ │ │ │ │ │ │ ├── x │ │ │ │ │ │ │ └── x-description.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 94 │ │ │ └── 63 │ │ │ │ └── cd │ │ │ │ └── 0adae491-2e45-4052-97a5-af635549d9d6_binary │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ ├── binary-description.json │ │ │ │ │ │ │ └── binary.json │ │ │ │ │ │ │ ├── binary │ │ │ │ │ │ │ └── binary-description.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 95 │ │ │ └── 74 │ │ │ │ └── 18 │ │ │ │ └── 2292d713-c182-4c40-b0b6-56983b3facb7_00_3 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── 3.json │ │ │ │ │ │ │ └── 3.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 96 │ │ │ └── 2c │ │ │ │ └── db │ │ │ │ └── 3b828719-91c7-40d1-ac43-c512482f19ca │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── 3b828719-91c7-40d1-ac43-c512482f19ca.json │ │ │ │ │ │ │ └── 3b828719-91c7-40d1-ac43-c512482f19ca.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 97 │ │ │ └── e5 │ │ │ │ └── 72 │ │ │ │ └── da981410-08eb-439d-b5be-902d4d68ef13_binary1 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ ├── binary1-description.json │ │ │ │ │ │ │ └── binary1.json │ │ │ │ │ │ │ ├── binary1 │ │ │ │ │ │ │ └── binary1-description.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 99 │ │ │ └── 78 │ │ │ │ └── cc │ │ │ │ └── f7566361-27c0-4bf3-9191-c8de733affd4 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── f7566361-27c0-4bf3-9191-c8de733affd4.json │ │ │ │ │ │ │ └── f7566361-27c0-4bf3-9191-c8de733affd4.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 00 │ │ │ └── 5d │ │ │ │ └── d1 │ │ │ │ └── ba1ddbf3-929e-4a38-a75c-cd2e4eb05dbe_test │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── test.json │ │ │ │ │ │ │ └── test.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 01 │ │ │ └── 8a │ │ │ │ └── 85 │ │ │ │ └── 8a5f2a36-4441-4479-9cd3-afdee1699ffa │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ ├── 8a5f2a36-4441-4479-9cd3-afdee1699ffa-description.json │ │ │ │ │ │ │ └── 8a5f2a36-4441-4479-9cd3-afdee1699ffa.json │ │ │ │ │ │ │ ├── 8a5f2a36-4441-4479-9cd3-afdee1699ffa │ │ │ │ │ │ │ └── 8a5f2a36-4441-4479-9cd3-afdee1699ffa-description.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 02 │ │ │ └── 64 │ │ │ │ └── f3 │ │ │ │ └── 6cccd9e8-afcd-40a3-9440-73f778ec6fc5 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ ├── 6cccd9e8-afcd-40a3-9440-73f778ec6fc5-description.json │ │ │ │ │ │ │ └── 6cccd9e8-afcd-40a3-9440-73f778ec6fc5.json │ │ │ │ │ │ │ ├── 6cccd9e8-afcd-40a3-9440-73f778ec6fc5 │ │ │ │ │ │ │ └── 6cccd9e8-afcd-40a3-9440-73f778ec6fc5-description.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 03 │ │ │ └── d8 │ │ │ │ └── 32 │ │ │ │ └── 821f56ff-e476-484c-8da7-b30f416a1c2e_child-7 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── child-7.json │ │ │ │ │ │ │ └── child-7.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 06 │ │ │ └── f7 │ │ │ │ └── 0d │ │ │ │ └── 39961a64-b435-4445-acda-56021249855e │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ ├── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ │ │ └── v2 │ │ │ │ ├── content │ │ │ │ └── r1 │ │ │ │ │ ├── .fcrepo │ │ │ │ │ └── 39961a64-b435-4445-acda-56021249855e.json │ │ │ │ │ └── 39961a64-b435-4445-acda-56021249855e.nt │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 07 │ │ │ ├── 49 │ │ │ │ └── e9 │ │ │ │ │ └── 550f1839-9921-45e4-9688-7db1094a5a8c │ │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ │ ├── extensions │ │ │ │ │ └── mutable-head │ │ │ │ │ │ ├── HEAD │ │ │ │ │ │ ├── content │ │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ │ └── 550f1839-9921-45e4-9688-7db1094a5a8c.json │ │ │ │ │ │ │ │ └── 550f1839-9921-45e4-9688-7db1094a5a8c.nt │ │ │ │ │ │ ├── inventory.json │ │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ │ ├── revisions │ │ │ │ │ │ └── r1 │ │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ │ ├── inventory.json │ │ │ │ │ ├── inventory.json.sha512 │ │ │ │ │ └── v1 │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ ├── 2b │ │ │ │ └── d6 │ │ │ │ │ └── 9e2f547c-c549-4f3f-9439-d4087ad38d89 │ │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ │ ├── extensions │ │ │ │ │ └── mutable-head │ │ │ │ │ │ ├── HEAD │ │ │ │ │ │ ├── content │ │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ │ └── 9e2f547c-c549-4f3f-9439-d4087ad38d89.json │ │ │ │ │ │ │ │ └── 9e2f547c-c549-4f3f-9439-d4087ad38d89.nt │ │ │ │ │ │ ├── inventory.json │ │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ │ ├── revisions │ │ │ │ │ │ └── r1 │ │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ │ ├── inventory.json │ │ │ │ │ ├── inventory.json.sha512 │ │ │ │ │ └── v1 │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ └── b1 │ │ │ │ └── 32 │ │ │ │ └── ba1ddbf3-929e-4a38-a75c-cd2e4eb05dbe │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── ba1ddbf3-929e-4a38-a75c-cd2e4eb05dbe.json │ │ │ │ │ │ │ └── ba1ddbf3-929e-4a38-a75c-cd2e4eb05dbe.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 08 │ │ │ └── 5b │ │ │ │ └── c2 │ │ │ │ └── d8cda308-b876-4cdf-a74d-226f48def519 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── d8cda308-b876-4cdf-a74d-226f48def519.json │ │ │ │ │ │ │ └── d8cda308-b876-4cdf-a74d-226f48def519.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 0=ocfl_1.0 │ │ ├── 0b │ │ │ ├── 91 │ │ │ │ └── c8 │ │ │ │ │ └── b1471585-68c2-42dc-ac1a-b80a9133ecaa │ │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ │ ├── inventory.json │ │ │ │ │ ├── inventory.json.sha512 │ │ │ │ │ ├── v1 │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ └── v2 │ │ │ │ │ ├── content │ │ │ │ │ └── r1 │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ ├── b1471585-68c2-42dc-ac1a-b80a9133ecaa-description.json │ │ │ │ │ │ └── b1471585-68c2-42dc-ac1a-b80a9133ecaa.json │ │ │ │ │ │ ├── b1471585-68c2-42dc-ac1a-b80a9133ecaa │ │ │ │ │ │ └── b1471585-68c2-42dc-ac1a-b80a9133ecaa-description.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ ├── 1b │ │ │ │ └── 17 │ │ │ │ │ └── 821f56ff-e476-484c-8da7-b30f416a1c2e_child-11 │ │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ │ ├── extensions │ │ │ │ │ └── mutable-head │ │ │ │ │ │ ├── HEAD │ │ │ │ │ │ ├── content │ │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ │ └── child-11.json │ │ │ │ │ │ │ │ └── child-11.nt │ │ │ │ │ │ ├── inventory.json │ │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ │ ├── revisions │ │ │ │ │ │ └── r1 │ │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ │ ├── inventory.json │ │ │ │ │ ├── inventory.json.sha512 │ │ │ │ │ └── v1 │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ └── 7c │ │ │ │ └── b9 │ │ │ │ └── 72dbbfd0-56dd-4bd7-9d53-3fe70629299b │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── 72dbbfd0-56dd-4bd7-9d53-3fe70629299b.json │ │ │ │ │ │ │ └── 72dbbfd0-56dd-4bd7-9d53-3fe70629299b.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 0c │ │ │ └── c6 │ │ │ │ └── cc │ │ │ │ └── 3b6f620d-c597-4bc8-b505-acc516ae3594 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ ├── 3b6f620d-c597-4bc8-b505-acc516ae3594-description.json │ │ │ │ │ │ │ └── 3b6f620d-c597-4bc8-b505-acc516ae3594.json │ │ │ │ │ │ │ ├── 3b6f620d-c597-4bc8-b505-acc516ae3594 │ │ │ │ │ │ │ └── 3b6f620d-c597-4bc8-b505-acc516ae3594-description.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 0d │ │ │ └── 24 │ │ │ │ └── 9c │ │ │ │ └── 99bf8650-fbb9-4ee8-8f99-6d1e0d21eab9 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── 99bf8650-fbb9-4ee8-8f99-6d1e0d21eab9.json │ │ │ │ │ │ │ └── 99bf8650-fbb9-4ee8-8f99-6d1e0d21eab9.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 1b │ │ │ └── 11 │ │ │ │ └── 04 │ │ │ │ └── 0f770612-f53b-47d8-bf09-aeca6c846875 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ ├── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ │ │ ├── v2 │ │ │ │ ├── content │ │ │ │ │ └── r1 │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ └── 0f770612-f53b-47d8-bf09-aeca6c846875.json │ │ │ │ │ │ └── 0f770612-f53b-47d8-bf09-aeca6c846875.nt │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ │ │ └── v3 │ │ │ │ ├── content │ │ │ │ └── r1 │ │ │ │ │ ├── .fcrepo │ │ │ │ │ └── 0f770612-f53b-47d8-bf09-aeca6c846875.json │ │ │ │ │ └── 0f770612-f53b-47d8-bf09-aeca6c846875.nt │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 1e │ │ │ └── 0d │ │ │ │ └── e2 │ │ │ │ └── 011a5fd3-b600-41d7-b66f-63f37c380102_a │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── a.json │ │ │ │ │ │ │ └── a.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 1f │ │ │ ├── 25 │ │ │ │ └── 76 │ │ │ │ │ └── f7a463d2-d87a-4659-bf9a-57bd9322b15c │ │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ │ ├── extensions │ │ │ │ │ └── mutable-head │ │ │ │ │ │ ├── HEAD │ │ │ │ │ │ ├── content │ │ │ │ │ │ │ └── r2 │ │ │ │ │ │ │ │ └── .fcrepo │ │ │ │ │ │ │ │ └── f7a463d2-d87a-4659-bf9a-57bd9322b15c.json │ │ │ │ │ │ ├── inventory.json │ │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ │ ├── revisions │ │ │ │ │ │ ├── r1 │ │ │ │ │ │ └── r2 │ │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ │ ├── inventory.json │ │ │ │ │ ├── inventory.json.sha512 │ │ │ │ │ └── v1 │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ └── 46 │ │ │ │ └── 06 │ │ │ │ └── f82a19b0-4011-4989-8cfe-fe976d749b8a │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── content │ │ │ │ ├── .fcrepo │ │ │ │ │ └── f82a19b0-4011-4989-8cfe-fe976d749b8a.json │ │ │ │ └── f82a19b0-4011-4989-8cfe-fe976d749b8a.nt │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 2c │ │ │ └── ad │ │ │ │ └── 6c │ │ │ │ └── 821f56ff-e476-484c-8da7-b30f416a1c2e_child-15 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── child-15.json │ │ │ │ │ │ │ └── child-15.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 2d │ │ │ ├── 22 │ │ │ │ └── b6 │ │ │ │ │ └── c6d4f82d-a370-43ca-b91a-a1d81fd7072b │ │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ │ ├── extensions │ │ │ │ │ └── mutable-head │ │ │ │ │ │ ├── HEAD │ │ │ │ │ │ ├── content │ │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ │ ├── c6d4f82d-a370-43ca-b91a-a1d81fd7072b-description.json │ │ │ │ │ │ │ │ └── c6d4f82d-a370-43ca-b91a-a1d81fd7072b.json │ │ │ │ │ │ │ │ ├── c6d4f82d-a370-43ca-b91a-a1d81fd7072b │ │ │ │ │ │ │ │ └── c6d4f82d-a370-43ca-b91a-a1d81fd7072b-description.nt │ │ │ │ │ │ ├── inventory.json │ │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ │ ├── revisions │ │ │ │ │ │ └── r1 │ │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ │ ├── inventory.json │ │ │ │ │ ├── inventory.json.sha512 │ │ │ │ │ └── v1 │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ └── 3d │ │ │ │ └── 18 │ │ │ │ └── f639d918-f634-45be-b1e7-75e8c1523d27 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ ├── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ │ │ └── v2 │ │ │ │ ├── content │ │ │ │ └── r1 │ │ │ │ │ ├── .fcrepo │ │ │ │ │ └── f639d918-f634-45be-b1e7-75e8c1523d27.json │ │ │ │ │ └── f639d918-f634-45be-b1e7-75e8c1523d27.nt │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 2e │ │ │ ├── 00 │ │ │ │ └── 2f │ │ │ │ │ └── 821f56ff-e476-484c-8da7-b30f416a1c2e_child-8 │ │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ │ ├── extensions │ │ │ │ │ └── mutable-head │ │ │ │ │ │ ├── HEAD │ │ │ │ │ │ ├── content │ │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ │ └── child-8.json │ │ │ │ │ │ │ │ └── child-8.nt │ │ │ │ │ │ ├── inventory.json │ │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ │ ├── revisions │ │ │ │ │ │ └── r1 │ │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ │ ├── inventory.json │ │ │ │ │ ├── inventory.json.sha512 │ │ │ │ │ └── v1 │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ └── 7e │ │ │ │ └── fb │ │ │ │ └── b99bb8cf-6899-4c6d-a692-c59a451f7b15 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── b99bb8cf-6899-4c6d-a692-c59a451f7b15.json │ │ │ │ │ │ │ └── b99bb8cf-6899-4c6d-a692-c59a451f7b15.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 3a │ │ │ └── 69 │ │ │ │ └── 0c │ │ │ │ └── 821f56ff-e476-484c-8da7-b30f416a1c2e_child-5 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── child-5.json │ │ │ │ │ │ │ └── child-5.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 3b │ │ │ └── ca │ │ │ │ └── 6a │ │ │ │ └── 6c3f8dfc-853b-4a1a-ac94-a78509c4ac76 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── 6c3f8dfc-853b-4a1a-ac94-a78509c4ac76.json │ │ │ │ │ │ │ └── 6c3f8dfc-853b-4a1a-ac94-a78509c4ac76.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 3d │ │ │ └── 8c │ │ │ │ └── e2 │ │ │ │ └── 00fa77a2-536d-418d-ab75-2923c50704e9_x │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ ├── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ │ └── x.json │ │ │ │ │ │ │ └── x │ │ │ │ │ │ └── r2 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── x-description.json │ │ │ │ │ │ │ └── x-description.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ ├── r1 │ │ │ │ │ └── r2 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 3f │ │ │ └── 84 │ │ │ │ └── ad │ │ │ │ └── 2292d713-c182-4c40-b0b6-56983b3facb7 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── 2292d713-c182-4c40-b0b6-56983b3facb7.json │ │ │ │ │ │ │ └── 2292d713-c182-4c40-b0b6-56983b3facb7.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 4a │ │ │ └── ed │ │ │ │ └── d7 │ │ │ │ └── 1628eb7e-527b-4987-b5d2-9557bfa00fdb_ds │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ ├── ds-description.json │ │ │ │ │ │ │ └── ds.json │ │ │ │ │ │ │ ├── ds │ │ │ │ │ │ │ └── ds-description.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 4c │ │ │ └── b5 │ │ │ │ └── ba │ │ │ │ └── 97e23cfd-dade-421e-8014-0b4dfeb527c2_x │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ ├── x-description.json │ │ │ │ │ │ │ └── x.json │ │ │ │ │ │ │ ├── x │ │ │ │ │ │ │ └── x-description.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 4d │ │ │ └── c2 │ │ │ │ └── 55 │ │ │ │ └── f5b29056-8305-4e5d-9d72-4ed8306bfc66 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── f5b29056-8305-4e5d-9d72-4ed8306bfc66.json │ │ │ │ │ │ │ └── f5b29056-8305-4e5d-9d72-4ed8306bfc66.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 5a │ │ │ └── 0a │ │ │ │ └── 86 │ │ │ │ └── a932fc55-e2b0-41d0-a6ec-5dc345e53049 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── a932fc55-e2b0-41d0-a6ec-5dc345e53049.json │ │ │ │ │ │ │ └── a932fc55-e2b0-41d0-a6ec-5dc345e53049.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 5b │ │ │ └── b3 │ │ │ │ └── f1 │ │ │ │ └── 4268ce79-4aef-4688-9499-adc7c94f2f37 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── 4268ce79-4aef-4688-9499-adc7c94f2f37.json │ │ │ │ │ │ │ └── 4268ce79-4aef-4688-9499-adc7c94f2f37.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 5d │ │ │ └── 7a │ │ │ │ └── e0 │ │ │ │ └── 7663344c-b6c9-4c0d-898a-2afaee994534 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── 7663344c-b6c9-4c0d-898a-2afaee994534.json │ │ │ │ │ │ │ └── 7663344c-b6c9-4c0d-898a-2afaee994534.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 5e │ │ │ └── 38 │ │ │ │ └── 14 │ │ │ │ └── 821f56ff-e476-484c-8da7-b30f416a1c2e_child-10 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── child-10.json │ │ │ │ │ │ │ └── child-10.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 7b │ │ │ ├── 95 │ │ │ │ └── 87 │ │ │ │ │ └── 5e27c0b4-45a0-415d-8ba4-ee0ee5eeeaad │ │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ │ ├── extensions │ │ │ │ │ └── mutable-head │ │ │ │ │ │ ├── HEAD │ │ │ │ │ │ ├── content │ │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ │ └── 5e27c0b4-45a0-415d-8ba4-ee0ee5eeeaad.json │ │ │ │ │ │ │ │ └── 5e27c0b4-45a0-415d-8ba4-ee0ee5eeeaad.nt │ │ │ │ │ │ ├── inventory.json │ │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ │ ├── revisions │ │ │ │ │ │ └── r1 │ │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ │ ├── inventory.json │ │ │ │ │ ├── inventory.json.sha512 │ │ │ │ │ └── v1 │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ └── 7a │ │ │ │ └── 6c │ │ │ │ └── 2a907922-8a7e-4236-ae31-b5f0526bbccf_ds1 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r2 │ │ │ │ │ │ │ └── .fcrepo │ │ │ │ │ │ │ ├── ds1-description.json │ │ │ │ │ │ │ └── ds1.json │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ ├── r1 │ │ │ │ │ └── r2 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 7d │ │ │ └── c1 │ │ │ │ └── ae │ │ │ │ └── 0e261406-b19d-4d31-84d9-6ceda50e9239 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ ├── 0e261406-b19d-4d31-84d9-6ceda50e9239-description.json │ │ │ │ │ │ │ └── 0e261406-b19d-4d31-84d9-6ceda50e9239.json │ │ │ │ │ │ │ ├── 0e261406-b19d-4d31-84d9-6ceda50e9239 │ │ │ │ │ │ │ └── 0e261406-b19d-4d31-84d9-6ceda50e9239-description.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 7f │ │ │ └── c3 │ │ │ │ └── 2b │ │ │ │ └── 48b51ed1-070a-427b-b51c-17c3ee2d6443 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r2 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── 48b51ed1-070a-427b-b51c-17c3ee2d6443.json │ │ │ │ │ │ │ └── 48b51ed1-070a-427b-b51c-17c3ee2d6443.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ ├── r1 │ │ │ │ │ └── r2 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 8a │ │ │ └── f3 │ │ │ │ └── b6 │ │ │ │ └── cb6322a5-443e-40b8-b86a-32d0bab0d234 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ ├── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ │ │ └── v2 │ │ │ │ ├── content │ │ │ │ └── r1 │ │ │ │ │ ├── .fcrepo │ │ │ │ │ └── cb6322a5-443e-40b8-b86a-32d0bab0d234.json │ │ │ │ │ └── cb6322a5-443e-40b8-b86a-32d0bab0d234.nt │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 8d │ │ │ └── 06 │ │ │ │ └── 05 │ │ │ │ └── 54445a56-98dc-4251-aeaf-1a57fa0a4585 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ ├── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ │ │ └── v2 │ │ │ │ ├── content │ │ │ │ └── r1 │ │ │ │ │ ├── .fcrepo │ │ │ │ │ └── 54445a56-98dc-4251-aeaf-1a57fa0a4585.json │ │ │ │ │ └── 54445a56-98dc-4251-aeaf-1a57fa0a4585.nt │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 8e │ │ │ └── a4 │ │ │ │ └── 1a │ │ │ │ └── 1199fa04-39f1-4888-9fd8-d49dfa5459dc │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ ├── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ │ └── 1199fa04-39f1-4888-9fd8-d49dfa5459dc.json │ │ │ │ │ │ │ └── 1199fa04-39f1-4888-9fd8-d49dfa5459dc.nt │ │ │ │ │ │ ├── r2 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ │ └── child.json │ │ │ │ │ │ │ └── child.nt │ │ │ │ │ │ └── r3 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── child │ │ │ │ │ │ │ │ └── grandchild.json │ │ │ │ │ │ │ └── child │ │ │ │ │ │ │ └── grandchild.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ ├── r1 │ │ │ │ │ ├── r2 │ │ │ │ │ └── r3 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 9c │ │ │ └── 85 │ │ │ │ └── 7c │ │ │ │ └── 113c692d-90d8-4c18-b373-11f6cd784392 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── 113c692d-90d8-4c18-b373-11f6cd784392.json │ │ │ │ │ │ │ └── 113c692d-90d8-4c18-b373-11f6cd784392.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── 9e │ │ │ └── 99 │ │ │ │ └── af │ │ │ │ └── 821f56ff-e476-484c-8da7-b30f416a1c2e_child-2 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── child-2.json │ │ │ │ │ │ │ └── child-2.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── a3 │ │ │ └── a5 │ │ │ │ └── c7 │ │ │ │ └── 3df27c79-3969-46a5-b953-9cc684a2274f │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ ├── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ │ │ └── v2 │ │ │ │ ├── content │ │ │ │ └── r1 │ │ │ │ │ ├── .fcrepo │ │ │ │ │ └── 3df27c79-3969-46a5-b953-9cc684a2274f.json │ │ │ │ │ └── 3df27c79-3969-46a5-b953-9cc684a2274f.nt │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── a5 │ │ │ └── b6 │ │ │ │ └── 12 │ │ │ │ └── 821f56ff-e476-484c-8da7-b30f416a1c2e_child-14 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── child-14.json │ │ │ │ │ │ │ └── child-14.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── aa │ │ │ └── 24 │ │ │ │ └── fd │ │ │ │ └── 821f56ff-e476-484c-8da7-b30f416a1c2e │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── 821f56ff-e476-484c-8da7-b30f416a1c2e.json │ │ │ │ │ │ │ └── 821f56ff-e476-484c-8da7-b30f416a1c2e.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── ad │ │ │ └── e7 │ │ │ │ └── ea │ │ │ │ └── c5239a3f-aede-4f7d-b06b-bfffbb5db2e5 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── c5239a3f-aede-4f7d-b06b-bfffbb5db2e5.json │ │ │ │ │ │ │ └── c5239a3f-aede-4f7d-b06b-bfffbb5db2e5.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── af │ │ │ ├── 0c │ │ │ │ └── 5b │ │ │ │ │ └── 65373868-2b36-46b7-8f24-f517c0d97def │ │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ │ ├── extensions │ │ │ │ │ └── mutable-head │ │ │ │ │ │ ├── HEAD │ │ │ │ │ │ ├── content │ │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ │ └── 65373868-2b36-46b7-8f24-f517c0d97def.json │ │ │ │ │ │ │ │ └── 65373868-2b36-46b7-8f24-f517c0d97def.nt │ │ │ │ │ │ ├── inventory.json │ │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ │ ├── revisions │ │ │ │ │ │ └── r1 │ │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ │ ├── inventory.json │ │ │ │ │ ├── inventory.json.sha512 │ │ │ │ │ └── v1 │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ ├── 9d │ │ │ │ └── a4 │ │ │ │ │ └── 821f56ff-e476-484c-8da7-b30f416a1c2e_child-16 │ │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ │ ├── extensions │ │ │ │ │ └── mutable-head │ │ │ │ │ │ ├── HEAD │ │ │ │ │ │ ├── content │ │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ │ └── child-16.json │ │ │ │ │ │ │ │ └── child-16.nt │ │ │ │ │ │ ├── inventory.json │ │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ │ ├── revisions │ │ │ │ │ │ └── r1 │ │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ │ ├── inventory.json │ │ │ │ │ ├── inventory.json.sha512 │ │ │ │ │ └── v1 │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ ├── a7 │ │ │ │ └── 78 │ │ │ │ │ └── f657b8de-012b-417a-8187-879873195a4f_x │ │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ │ ├── extensions │ │ │ │ │ └── mutable-head │ │ │ │ │ │ ├── HEAD │ │ │ │ │ │ ├── content │ │ │ │ │ │ │ ├── r1 │ │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ │ │ └── x.json │ │ │ │ │ │ │ │ └── x │ │ │ │ │ │ │ └── r2 │ │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ │ └── x-description.json │ │ │ │ │ │ │ │ └── x-description.nt │ │ │ │ │ │ ├── inventory.json │ │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ │ ├── revisions │ │ │ │ │ │ ├── r1 │ │ │ │ │ │ └── r2 │ │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ │ ├── inventory.json │ │ │ │ │ ├── inventory.json.sha512 │ │ │ │ │ └── v1 │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ └── e3 │ │ │ │ └── 64 │ │ │ │ └── 65d1cf37-a494-42c5-abe5-84ca8285aceb │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ ├── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ │ │ └── v2 │ │ │ │ ├── content │ │ │ │ └── r1 │ │ │ │ │ ├── .fcrepo │ │ │ │ │ ├── 65d1cf37-a494-42c5-abe5-84ca8285aceb-description.json │ │ │ │ │ └── 65d1cf37-a494-42c5-abe5-84ca8285aceb.json │ │ │ │ │ ├── 65d1cf37-a494-42c5-abe5-84ca8285aceb │ │ │ │ │ └── 65d1cf37-a494-42c5-abe5-84ca8285aceb-description.nt │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── b0 │ │ │ └── f3 │ │ │ │ └── 61 │ │ │ │ └── 011a5fd3-b600-41d7-b66f-63f37c380102 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── 011a5fd3-b600-41d7-b66f-63f37c380102.json │ │ │ │ │ │ │ └── 011a5fd3-b600-41d7-b66f-63f37c380102.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── b1 │ │ │ └── 85 │ │ │ │ └── 16 │ │ │ │ └── f8bf1d00-a47e-4d92-9d5d-786e67d46904 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── f8bf1d00-a47e-4d92-9d5d-786e67d46904.json │ │ │ │ │ │ │ └── f8bf1d00-a47e-4d92-9d5d-786e67d46904.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── b3 │ │ │ └── 14 │ │ │ │ └── f3 │ │ │ │ └── e8e76ff8-8b4b-463f-8808-f49ab69fda03 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ ├── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ │ │ ├── v2 │ │ │ │ ├── content │ │ │ │ │ └── r1 │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ ├── e8e76ff8-8b4b-463f-8808-f49ab69fda03-description.json │ │ │ │ │ │ └── e8e76ff8-8b4b-463f-8808-f49ab69fda03.json │ │ │ │ │ │ ├── e8e76ff8-8b4b-463f-8808-f49ab69fda03 │ │ │ │ │ │ └── e8e76ff8-8b4b-463f-8808-f49ab69fda03-description.nt │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ │ │ └── v3 │ │ │ │ ├── content │ │ │ │ └── r1 │ │ │ │ │ ├── .fcrepo │ │ │ │ │ └── e8e76ff8-8b4b-463f-8808-f49ab69fda03.json │ │ │ │ │ └── e8e76ff8-8b4b-463f-8808-f49ab69fda03 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── b5 │ │ │ └── 94 │ │ │ │ └── 79 │ │ │ │ └── 0adae491-2e45-4052-97a5-af635549d9d6 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── 0adae491-2e45-4052-97a5-af635549d9d6.json │ │ │ │ │ │ │ └── 0adae491-2e45-4052-97a5-af635549d9d6.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── b8 │ │ │ ├── 94 │ │ │ │ └── b6 │ │ │ │ │ └── c1042925-5764-40e1-a253-773035f3c47f │ │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ │ ├── extensions │ │ │ │ │ └── mutable-head │ │ │ │ │ │ ├── HEAD │ │ │ │ │ │ ├── content │ │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ │ └── c1042925-5764-40e1-a253-773035f3c47f.json │ │ │ │ │ │ │ │ └── c1042925-5764-40e1-a253-773035f3c47f.nt │ │ │ │ │ │ ├── inventory.json │ │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ │ ├── revisions │ │ │ │ │ │ └── r1 │ │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ │ ├── inventory.json │ │ │ │ │ ├── inventory.json.sha512 │ │ │ │ │ └── v1 │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ └── c8 │ │ │ │ └── e6 │ │ │ │ └── e96f0a4e-b59a-41b0-8570-e76a6d2d2f3a │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── e96f0a4e-b59a-41b0-8570-e76a6d2d2f3a.json │ │ │ │ │ │ │ └── e96f0a4e-b59a-41b0-8570-e76a6d2d2f3a.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── ba │ │ │ ├── 13 │ │ │ │ └── 8c │ │ │ │ │ └── 1b9157a5-0c60-4ae2-a3fc-4b6e1b6e02c3 │ │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ │ ├── extensions │ │ │ │ │ └── mutable-head │ │ │ │ │ │ ├── HEAD │ │ │ │ │ │ ├── content │ │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ │ └── 1b9157a5-0c60-4ae2-a3fc-4b6e1b6e02c3.json │ │ │ │ │ │ │ │ └── 1b9157a5-0c60-4ae2-a3fc-4b6e1b6e02c3.nt │ │ │ │ │ │ ├── inventory.json │ │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ │ ├── revisions │ │ │ │ │ │ └── r1 │ │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ │ ├── inventory.json │ │ │ │ │ ├── inventory.json.sha512 │ │ │ │ │ └── v1 │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ └── 67 │ │ │ │ └── f6 │ │ │ │ └── 1cef6477-b12f-474a-a6d0-d830fd510439 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── 1cef6477-b12f-474a-a6d0-d830fd510439.json │ │ │ │ │ │ │ └── 1cef6477-b12f-474a-a6d0-d830fd510439.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── bb │ │ │ ├── 10 │ │ │ │ └── b8 │ │ │ │ │ └── 821f56ff-e476-484c-8da7-b30f416a1c2e_child-4 │ │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ │ ├── extensions │ │ │ │ │ └── mutable-head │ │ │ │ │ │ ├── HEAD │ │ │ │ │ │ ├── content │ │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ │ └── child-4.json │ │ │ │ │ │ │ │ └── child-4.nt │ │ │ │ │ │ ├── inventory.json │ │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ │ ├── revisions │ │ │ │ │ │ └── r1 │ │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ │ ├── inventory.json │ │ │ │ │ ├── inventory.json.sha512 │ │ │ │ │ └── v1 │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ └── 21 │ │ │ │ └── f6 │ │ │ │ └── 3b828719-91c7-40d1-ac43-c512482f19ca_ds1 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ ├── ds1-description.json │ │ │ │ │ │ │ └── ds1.json │ │ │ │ │ │ │ ├── ds1 │ │ │ │ │ │ │ └── ds1-description.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── bc │ │ │ └── 7b │ │ │ │ └── 2c │ │ │ │ └── 0aab0dcb-d8a0-41ef-9fc5-bce03f5f7147 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── 0aab0dcb-d8a0-41ef-9fc5-bce03f5f7147.json │ │ │ │ │ │ │ └── 0aab0dcb-d8a0-41ef-9fc5-bce03f5f7147.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── bd │ │ │ └── 7f │ │ │ │ └── 54 │ │ │ │ └── 1fcddb06-3910-435e-8334-0d6d0762090d │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ ├── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ │ │ └── v2 │ │ │ │ ├── content │ │ │ │ └── r1 │ │ │ │ │ ├── .fcrepo │ │ │ │ │ ├── 1fcddb06-3910-435e-8334-0d6d0762090d-description.json │ │ │ │ │ └── 1fcddb06-3910-435e-8334-0d6d0762090d.json │ │ │ │ │ ├── 1fcddb06-3910-435e-8334-0d6d0762090d │ │ │ │ │ └── 1fcddb06-3910-435e-8334-0d6d0762090d-description.nt │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── c0 │ │ │ ├── a7 │ │ │ │ └── 1e │ │ │ │ │ └── 20a59092-98b6-43e6-820f-e0850da17e2c │ │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ │ ├── extensions │ │ │ │ │ └── mutable-head │ │ │ │ │ │ ├── HEAD │ │ │ │ │ │ ├── content │ │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ │ └── 20a59092-98b6-43e6-820f-e0850da17e2c.json │ │ │ │ │ │ │ │ └── 20a59092-98b6-43e6-820f-e0850da17e2c.nt │ │ │ │ │ │ ├── inventory.json │ │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ │ ├── revisions │ │ │ │ │ │ └── r1 │ │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ │ ├── inventory.json │ │ │ │ │ ├── inventory.json.sha512 │ │ │ │ │ └── v1 │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ ├── b5 │ │ │ │ └── e8 │ │ │ │ │ └── 5961801e-2a34-4a88-876a-478bc8d69dbd │ │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ │ ├── extensions │ │ │ │ │ └── mutable-head │ │ │ │ │ │ ├── HEAD │ │ │ │ │ │ ├── content │ │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ │ └── 5961801e-2a34-4a88-876a-478bc8d69dbd.json │ │ │ │ │ │ │ │ └── 5961801e-2a34-4a88-876a-478bc8d69dbd.nt │ │ │ │ │ │ ├── inventory.json │ │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ │ ├── revisions │ │ │ │ │ │ └── r1 │ │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ │ ├── inventory.json │ │ │ │ │ ├── inventory.json.sha512 │ │ │ │ │ └── v1 │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ └── f8 │ │ │ │ └── 06 │ │ │ │ └── 83061dfb-75ae-4d6f-83dd-0253ef107504 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── 83061dfb-75ae-4d6f-83dd-0253ef107504.json │ │ │ │ │ │ │ └── 83061dfb-75ae-4d6f-83dd-0253ef107504.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── c1 │ │ │ └── 3e │ │ │ │ └── 90 │ │ │ │ └── e10c4707-9134-4c4c-a379-0727345861f1 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ ├── e10c4707-9134-4c4c-a379-0727345861f1-description.json │ │ │ │ │ │ │ └── e10c4707-9134-4c4c-a379-0727345861f1.json │ │ │ │ │ │ │ ├── e10c4707-9134-4c4c-a379-0727345861f1 │ │ │ │ │ │ │ └── e10c4707-9134-4c4c-a379-0727345861f1-description.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── c2 │ │ │ └── 1a │ │ │ │ └── 6d │ │ │ │ └── 584fd17c-2039-4cf0-9466-805c11714b26 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ ├── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ │ │ └── v2 │ │ │ │ ├── content │ │ │ │ └── r1 │ │ │ │ │ ├── .fcrepo │ │ │ │ │ └── 584fd17c-2039-4cf0-9466-805c11714b26.json │ │ │ │ │ └── 584fd17c-2039-4cf0-9466-805c11714b26.nt │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── c3 │ │ │ ├── 45 │ │ │ │ └── b5 │ │ │ │ │ └── 821f56ff-e476-484c-8da7-b30f416a1c2e_child-0 │ │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ │ ├── extensions │ │ │ │ │ └── mutable-head │ │ │ │ │ │ ├── HEAD │ │ │ │ │ │ ├── content │ │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ │ └── child-0.json │ │ │ │ │ │ │ │ └── child-0.nt │ │ │ │ │ │ ├── inventory.json │ │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ │ ├── revisions │ │ │ │ │ │ └── r1 │ │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ │ ├── inventory.json │ │ │ │ │ ├── inventory.json.sha512 │ │ │ │ │ └── v1 │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ ├── 3b │ │ │ │ └── 95 │ │ │ │ │ └── b028b070-a690-4511-af2e-c2acb3569f7e │ │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ │ ├── extensions │ │ │ │ │ └── mutable-head │ │ │ │ │ │ ├── HEAD │ │ │ │ │ │ ├── content │ │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ │ └── b028b070-a690-4511-af2e-c2acb3569f7e.json │ │ │ │ │ │ │ │ └── b028b070-a690-4511-af2e-c2acb3569f7e.nt │ │ │ │ │ │ ├── inventory.json │ │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ │ ├── revisions │ │ │ │ │ │ └── r1 │ │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ │ ├── inventory.json │ │ │ │ │ ├── inventory.json.sha512 │ │ │ │ │ └── v1 │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ ├── a0 │ │ │ │ └── ad │ │ │ │ │ └── f90a0226-b02d-4268-9b82-93957e42cc80 │ │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ │ ├── inventory.json │ │ │ │ │ ├── inventory.json.sha512 │ │ │ │ │ ├── v1 │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ └── v2 │ │ │ │ │ ├── content │ │ │ │ │ └── r1 │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ └── f90a0226-b02d-4268-9b82-93957e42cc80.json │ │ │ │ │ │ └── f90a0226-b02d-4268-9b82-93957e42cc80.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ └── c9 │ │ │ │ └── 31 │ │ │ │ └── 0736cf7c-8294-47ad-8127-3483379b9b50 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── 0736cf7c-8294-47ad-8127-3483379b9b50.json │ │ │ │ │ │ │ └── 0736cf7c-8294-47ad-8127-3483379b9b50.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── c6 │ │ │ └── 9b │ │ │ │ └── 22 │ │ │ │ └── 769b7b7c-c65b-4968-8271-cca8692fe905 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── 769b7b7c-c65b-4968-8271-cca8692fe905.json │ │ │ │ │ │ │ └── 769b7b7c-c65b-4968-8271-cca8692fe905.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── c7 │ │ │ └── 82 │ │ │ │ └── 48 │ │ │ │ └── 7f4711a8-e79a-4471-90ab-8cceebbb1d72 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── 7f4711a8-e79a-4471-90ab-8cceebbb1d72.json │ │ │ │ │ │ │ └── 7f4711a8-e79a-4471-90ab-8cceebbb1d72.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── c9 │ │ │ └── d3 │ │ │ │ └── 3e │ │ │ │ └── 7e78d9a4-c0df-4009-960c-13ee8c02d543 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ ├── 7e78d9a4-c0df-4009-960c-13ee8c02d543-description.json │ │ │ │ │ │ │ └── 7e78d9a4-c0df-4009-960c-13ee8c02d543.json │ │ │ │ │ │ │ ├── 7e78d9a4-c0df-4009-960c-13ee8c02d543 │ │ │ │ │ │ │ └── 7e78d9a4-c0df-4009-960c-13ee8c02d543-description.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── ca │ │ │ └── 11 │ │ │ │ └── 9c │ │ │ │ └── a3a7adc3-8f64-4903-af30-10cd4879f907_x │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ ├── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ │ └── x.json │ │ │ │ │ │ │ └── x │ │ │ │ │ │ └── r2 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── x-description.json │ │ │ │ │ │ │ └── x-description.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ ├── r1 │ │ │ │ │ └── r2 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── cc │ │ │ └── 3d │ │ │ │ └── 97 │ │ │ │ └── 0aab0dcb-d8a0-41ef-9fc5-bce03f5f7147_x │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ ├── x-description.json │ │ │ │ │ │ │ └── x.json │ │ │ │ │ │ │ ├── x │ │ │ │ │ │ │ └── x-description.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── cf │ │ │ └── 66 │ │ │ │ └── 99 │ │ │ │ └── some_prefix%3aa55236bc-2793-493a-96a8-69c91bfed296_anotherPrefix%3aa35a2f53-1853-4483-8fdc-54440f1c1d19 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ ├── anotherPrefix:a35a2f53-1853-4483-8fdc-54440f1c1d19-description.json │ │ │ │ │ │ │ └── anotherPrefix:a35a2f53-1853-4483-8fdc-54440f1c1d19.json │ │ │ │ │ │ │ ├── anotherPrefix:a35a2f53-1853-4483-8fdc-54440f1c1d19 │ │ │ │ │ │ │ └── anotherPrefix:a35a2f53-1853-4483-8fdc-54440f1c1d19-description.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── d0 │ │ │ └── d3 │ │ │ │ └── 74 │ │ │ │ └── ddf62d41-d04c-47f6-b0c4-d7691daa3554 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ ├── v1 │ │ │ │ ├── content │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ └── ddf62d41-d04c-47f6-b0c4-d7691daa3554.json │ │ │ │ │ └── ddf62d41-d04c-47f6-b0c4-d7691daa3554.nt │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ │ │ ├── v2 │ │ │ │ ├── content │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ ├── child1-description.json │ │ │ │ │ │ └── child1.json │ │ │ │ │ ├── child1 │ │ │ │ │ └── child1-description.nt │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ │ │ ├── v3 │ │ │ │ ├── content │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ ├── child2-description.json │ │ │ │ │ │ └── child2.json │ │ │ │ │ └── child2 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ │ │ └── v4 │ │ │ │ ├── content │ │ │ │ ├── .fcrepo │ │ │ │ │ └── child1.json │ │ │ │ └── child1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── d1 │ │ │ ├── 95 │ │ │ │ └── 06 │ │ │ │ │ └── fe79ce90-616e-4615-8eec-76fb36da560a │ │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ │ ├── inventory.json │ │ │ │ │ ├── inventory.json.sha512 │ │ │ │ │ ├── v1 │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── v2 │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── fe79ce90-616e-4615-8eec-76fb36da560a.json │ │ │ │ │ │ │ └── fe79ce90-616e-4615-8eec-76fb36da560a.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ └── v3 │ │ │ │ │ ├── content │ │ │ │ │ └── r1 │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ └── fe79ce90-616e-4615-8eec-76fb36da560a.json │ │ │ │ │ │ └── fe79ce90-616e-4615-8eec-76fb36da560a.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ └── a1 │ │ │ │ └── 65 │ │ │ │ └── 28417a80-7c21-4477-98c7-964a77cb395e │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ ├── 28417a80-7c21-4477-98c7-964a77cb395e-description.json │ │ │ │ │ │ │ └── 28417a80-7c21-4477-98c7-964a77cb395e.json │ │ │ │ │ │ │ ├── 28417a80-7c21-4477-98c7-964a77cb395e │ │ │ │ │ │ │ └── 28417a80-7c21-4477-98c7-964a77cb395e-description.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── d3 │ │ │ └── 08 │ │ │ │ └── 3d │ │ │ │ └── 854607ba-05b5-4b8c-a71e-cd652ca89866 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── 854607ba-05b5-4b8c-a71e-cd652ca89866.json │ │ │ │ │ │ │ └── 854607ba-05b5-4b8c-a71e-cd652ca89866.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── d5 │ │ │ └── cd │ │ │ │ └── fe │ │ │ │ └── 2ddad2ed-2192-4706-b2ef-09912df0b74e │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── 2ddad2ed-2192-4706-b2ef-09912df0b74e.json │ │ │ │ │ │ │ └── 2ddad2ed-2192-4706-b2ef-09912df0b74e.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── d8 │ │ │ └── 2d │ │ │ │ └── 96 │ │ │ │ └── fe18d65e-336f-47c7-8e14-3d2dd5a2437b │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── fe18d65e-336f-47c7-8e14-3d2dd5a2437b.json │ │ │ │ │ │ │ └── fe18d65e-336f-47c7-8e14-3d2dd5a2437b.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── db │ │ │ └── 78 │ │ │ │ └── 03 │ │ │ │ └── 07cdeccc-9d31-45b6-abed-88e0f8ad2209 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── 07cdeccc-9d31-45b6-abed-88e0f8ad2209.json │ │ │ │ │ │ │ └── 07cdeccc-9d31-45b6-abed-88e0f8ad2209.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── dd │ │ │ └── e8 │ │ │ │ └── 9e │ │ │ │ └── a4415ff4-a7e5-4857-9237-6ec154b6f9f2 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ ├── a4415ff4-a7e5-4857-9237-6ec154b6f9f2-description.json │ │ │ │ │ │ │ └── a4415ff4-a7e5-4857-9237-6ec154b6f9f2.json │ │ │ │ │ │ │ ├── a4415ff4-a7e5-4857-9237-6ec154b6f9f2 │ │ │ │ │ │ │ └── a4415ff4-a7e5-4857-9237-6ec154b6f9f2-description.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── de │ │ │ └── c6 │ │ │ │ └── 8b │ │ │ │ └── 43ea410d-abe9-4392-90a0-5fa0636f6c01 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ ├── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ │ │ └── v2 │ │ │ │ ├── content │ │ │ │ └── r1 │ │ │ │ │ ├── .fcrepo │ │ │ │ │ └── 43ea410d-abe9-4392-90a0-5fa0636f6c01.json │ │ │ │ │ └── 43ea410d-abe9-4392-90a0-5fa0636f6c01.nt │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── df │ │ │ └── 85 │ │ │ │ └── 88 │ │ │ │ └── 97e23cfd-dade-421e-8014-0b4dfeb527c2 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── 97e23cfd-dade-421e-8014-0b4dfeb527c2.json │ │ │ │ │ │ │ └── 97e23cfd-dade-421e-8014-0b4dfeb527c2.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── e0 │ │ │ └── b0 │ │ │ │ └── 13 │ │ │ │ └── c8e48eb4-f968-460f-9602-b0013cdb1aa0_x │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ ├── x-description.json │ │ │ │ │ │ │ └── x.json │ │ │ │ │ │ │ ├── x │ │ │ │ │ │ │ └── x-description.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── e2 │ │ │ └── e0 │ │ │ │ └── 67 │ │ │ │ └── 58e46986-666f-4892-8e51-a0e865664627 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ ├── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ │ │ └── v2 │ │ │ │ ├── content │ │ │ │ └── r1 │ │ │ │ │ ├── .fcrepo │ │ │ │ │ └── 58e46986-666f-4892-8e51-a0e865664627.json │ │ │ │ │ └── 58e46986-666f-4892-8e51-a0e865664627.nt │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── e5 │ │ │ └── 8d │ │ │ │ └── c6 │ │ │ │ └── b99bb8cf-6899-4c6d-a692-c59a451f7b15_ds1 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ ├── ds1-description.json │ │ │ │ │ │ │ └── ds1.json │ │ │ │ │ │ │ ├── ds1 │ │ │ │ │ │ │ └── ds1-description.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── e7 │ │ │ └── a1 │ │ │ │ └── ad │ │ │ │ └── 123b0d76-8fd4-4355-b86a-338e68aaf248 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── 123b0d76-8fd4-4355-b86a-338e68aaf248.json │ │ │ │ │ │ │ └── 123b0d76-8fd4-4355-b86a-338e68aaf248.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── e9 │ │ │ └── ea │ │ │ │ └── d1 │ │ │ │ └── 32f80142-0149-4df3-a83a-6046d48cfcdc │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── 32f80142-0149-4df3-a83a-6046d48cfcdc.json │ │ │ │ │ │ │ └── 32f80142-0149-4df3-a83a-6046d48cfcdc.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── eb │ │ │ ├── 9f │ │ │ │ └── e9 │ │ │ │ │ └── 545209bb-db1a-4770-b89d-f7593c16189c │ │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ │ ├── extensions │ │ │ │ │ └── mutable-head │ │ │ │ │ │ ├── HEAD │ │ │ │ │ │ ├── content │ │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ │ └── 545209bb-db1a-4770-b89d-f7593c16189c.json │ │ │ │ │ │ │ │ └── 545209bb-db1a-4770-b89d-f7593c16189c.nt │ │ │ │ │ │ ├── inventory.json │ │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ │ ├── revisions │ │ │ │ │ │ └── r1 │ │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ │ ├── inventory.json │ │ │ │ │ ├── inventory.json.sha512 │ │ │ │ │ └── v1 │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ └── ee │ │ │ │ └── 88 │ │ │ │ └── e9914641-4942-4bc7-afff-daa734d26c4b │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── e9914641-4942-4bc7-afff-daa734d26c4b.json │ │ │ │ │ │ │ └── e9914641-4942-4bc7-afff-daa734d26c4b.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── ed │ │ │ └── a7 │ │ │ │ └── 1b │ │ │ │ └── c00b09bb-f617-433f-90e2-d11834702ff0 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── c00b09bb-f617-433f-90e2-d11834702ff0.json │ │ │ │ │ │ │ └── c00b09bb-f617-433f-90e2-d11834702ff0.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── ee │ │ │ └── 12 │ │ │ │ └── 0c │ │ │ │ └── 381ef38f-214f-4cc2-8e29-1c208bfd61af │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── 381ef38f-214f-4cc2-8e29-1c208bfd61af.json │ │ │ │ │ │ │ └── 381ef38f-214f-4cc2-8e29-1c208bfd61af.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── ef │ │ │ └── d0 │ │ │ │ └── 11 │ │ │ │ └── 85ceeeab-c072-4afe-ab36-7dbc7e4fdde2 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r2 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── 85ceeeab-c072-4afe-ab36-7dbc7e4fdde2.json │ │ │ │ │ │ │ └── 85ceeeab-c072-4afe-ab36-7dbc7e4fdde2.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ ├── r1 │ │ │ │ │ └── r2 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── extension-layout-n-tuple.json │ │ ├── f0 │ │ │ ├── 78 │ │ │ │ └── 38 │ │ │ │ │ └── 1a42d362-482d-43c8-9d66-c0e61dc90bfd │ │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ │ ├── extensions │ │ │ │ │ └── mutable-head │ │ │ │ │ │ ├── HEAD │ │ │ │ │ │ ├── content │ │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ │ └── 1a42d362-482d-43c8-9d66-c0e61dc90bfd.json │ │ │ │ │ │ │ │ └── 1a42d362-482d-43c8-9d66-c0e61dc90bfd.nt │ │ │ │ │ │ ├── inventory.json │ │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ │ ├── revisions │ │ │ │ │ │ └── r1 │ │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ │ ├── inventory.json │ │ │ │ │ ├── inventory.json.sha512 │ │ │ │ │ └── v1 │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ ├── 6a │ │ │ │ └── 39 │ │ │ │ │ └── 0736cf7c-8294-47ad-8127-3483379b9b50_x │ │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ │ ├── extensions │ │ │ │ │ └── mutable-head │ │ │ │ │ │ ├── HEAD │ │ │ │ │ │ ├── content │ │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ │ └── x.json │ │ │ │ │ │ │ │ └── x.nt │ │ │ │ │ │ ├── inventory.json │ │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ │ ├── revisions │ │ │ │ │ │ └── r1 │ │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ │ ├── inventory.json │ │ │ │ │ ├── inventory.json.sha512 │ │ │ │ │ └── v1 │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ └── fc │ │ │ │ └── 4f │ │ │ │ └── some_prefix%3a53b0c8f2-5144-493e-9a6f-aa7c19f1ad45 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── some_prefix:53b0c8f2-5144-493e-9a6f-aa7c19f1ad45.json │ │ │ │ │ │ │ └── some_prefix:53b0c8f2-5144-493e-9a6f-aa7c19f1ad45.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── f6 │ │ │ └── e5 │ │ │ │ └── 55 │ │ │ │ └── 26ab3459-2625-4c0a-96fc-6701b5a425be │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── 26ab3459-2625-4c0a-96fc-6701b5a425be.json │ │ │ │ │ │ │ └── 26ab3459-2625-4c0a-96fc-6701b5a425be.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── fa │ │ │ └── 73 │ │ │ │ └── 5b │ │ │ │ └── 73873662-fa8b-42fe-8cda-dde70724d202_c │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── c.json │ │ │ │ │ │ │ └── c.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── fb │ │ │ └── d8 │ │ │ │ └── 61 │ │ │ │ └── 1ac255b7-4103-4d0e-a48d-fa02ac5c41c0 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ ├── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ │ │ └── v2 │ │ │ │ ├── content │ │ │ │ └── r1 │ │ │ │ │ ├── .fcrepo │ │ │ │ │ └── 1ac255b7-4103-4d0e-a48d-fa02ac5c41c0.json │ │ │ │ │ └── 1ac255b7-4103-4d0e-a48d-fa02ac5c41c0.nt │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── fc │ │ │ └── 32 │ │ │ │ └── 5b │ │ │ │ └── 3f2afa5f-537e-4bfc-873e-94a7d05c6396 │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── 3f2afa5f-537e-4bfc-873e-94a7d05c6396.json │ │ │ │ │ │ │ └── 3f2afa5f-537e-4bfc-873e-94a7d05c6396.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── fe │ │ │ └── fb │ │ │ │ └── 9f │ │ │ │ └── 05ff0fc5-0a2f-4e5d-8d83-59fbe34b3dea │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── extensions │ │ │ │ └── mutable-head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── content │ │ │ │ │ │ └── r1 │ │ │ │ │ │ │ ├── .fcrepo │ │ │ │ │ │ │ └── 05ff0fc5-0a2f-4e5d-8d83-59fbe34b3dea.json │ │ │ │ │ │ │ └── 05ff0fc5-0a2f-4e5d-8d83-59fbe34b3dea.nt │ │ │ │ │ ├── inventory.json │ │ │ │ │ └── inventory.json.sha512 │ │ │ │ │ ├── revisions │ │ │ │ │ └── r1 │ │ │ │ │ └── root-inventory.json.sha512 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ └── ocfl_1.0.txt │ ├── reg-extension-dir-root │ │ ├── 0=ocfl_1.0 │ │ ├── a47 │ │ │ └── 817 │ │ │ │ └── 83d │ │ │ │ └── cec │ │ │ │ └── ark%3a123%2fabc │ │ │ │ ├── 0=ocfl_object_1.0 │ │ │ │ ├── inventory.json │ │ │ │ ├── inventory.json.sha512 │ │ │ │ └── v1 │ │ │ │ ├── content │ │ │ │ └── a_file.txt │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── extensions │ │ │ └── 0003-hash-and-id-n-tuple-storage-layout │ │ │ │ └── config.json │ │ └── ocfl_layout.json │ ├── root_ext0003_ex1.zip │ ├── root_ext0003_ex2.zip │ ├── simple-root │ │ ├── 0=ocfl_1.0 │ │ ├── ark%3A%2F12345%2Fbcd987 │ │ │ ├── 0=ocfl_object_1.0 │ │ │ ├── inventory.json │ │ │ ├── inventory.json.sha512 │ │ │ ├── v1 │ │ │ │ ├── content │ │ │ │ │ ├── empty.txt │ │ │ │ │ ├── foo │ │ │ │ │ │ └── bar.xml │ │ │ │ │ └── image.tiff │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ │ ├── v2 │ │ │ │ ├── content │ │ │ │ │ └── foo │ │ │ │ │ │ └── bar.xml │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ │ └── v3 │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ ├── ark%3A123%2Fabc │ │ │ ├── 0=ocfl_object_1.0 │ │ │ ├── inventory.json │ │ │ ├── inventory.json.sha512 │ │ │ └── v1 │ │ │ │ ├── content │ │ │ │ └── a_file.txt │ │ │ │ ├── inventory.json │ │ │ │ └── inventory.json.sha512 │ │ └── http%3A%2F%2Fexample.org%2Fminimal_mixed_digests │ │ │ ├── 0=ocfl_object_1.0 │ │ │ ├── inventory.json │ │ │ ├── inventory.json.sha512 │ │ │ └── v1 │ │ │ ├── content │ │ │ └── a_file.txt │ │ │ ├── inventory.json │ │ │ └── inventory.json.sha512 │ └── unreg-extension-dir-root │ │ ├── 0=ocfl_1.0 │ │ ├── ark%3A123%2Fabc │ │ ├── 0=ocfl_object_1.0 │ │ ├── inventory.json │ │ ├── inventory.json.sha512 │ │ └── v1 │ │ │ ├── content │ │ │ └── a_file.txt │ │ │ ├── inventory.json │ │ │ └── inventory.json.sha512 │ │ └── extensions │ │ └── unregistered-extension-name │ │ └── config.json └── misc │ ├── multiple_declarations │ ├── 0=ocfl_1.0 │ └── 0=ocfl_object_1.0 │ └── unknown_declaration │ └── 0=something_1.0 ├── extract_codes.py ├── ocfl-object.py ├── ocfl-root.py ├── ocfl-sidecar.py ├── ocfl-validate.py ├── ocfl ├── __init__.py ├── _version.py ├── bagger.py ├── command_line_utils.py ├── constants.py ├── data │ └── validation-errors.json ├── digest.py ├── inventory.py ├── inventory_validator.py ├── layout.py ├── layout_0002_flat_direct.py ├── layout_0003_hash_and_id_n_tuple.py ├── layout_nnnn_flat_quoted.py ├── layout_nnnn_tuple_tree.py ├── layout_nnnn_uuid_quadtree.py ├── layout_registry.py ├── namaste.py ├── new_version.py ├── object.py ├── object_utils.py ├── pyfs.py ├── storage_root.py ├── validation_logger.py ├── validator.py ├── version_metadata.py └── w3c_datetime.py ├── pypi_upload.md ├── pyproject.toml ├── requirements.txt ├── run_coverage.sh ├── testlib └── tests ├── __init__.py ├── test_bagger.py ├── test_command_line_utils.py ├── test_demo_build_spec_v1_0_examples.py ├── test_demo_build_spec_v1_1_examples.py ├── test_demo_ocfl_object_script.py ├── test_demo_ocfl_root_script.py ├── test_demo_ocfl_sidecar_script.py ├── test_demo_ocfl_validate_script.py ├── test_demo_using_bagit_bags.py ├── test_digest.py ├── test_inventory.py ├── test_inventory_validator.py ├── test_layout.py ├── test_layout_0002_flat_direct.py ├── test_layout_0003-hash-and-id-n-tuple.py ├── test_layout_nnnn_flat_quoted.py ├── test_layout_nnnn_tuple_tree.py ├── test_layout_nnnn_uuid_quadtree.py ├── test_layout_registry.py ├── test_namaste.py ├── test_new_version.py ├── test_object.py ├── test_object_utils.py ├── test_storage_root.py ├── test_validation_logger.py ├── test_validator.py ├── test_version_metadata.py ├── test_w3c_datetime.py ├── testdata ├── bags │ ├── bag_no_metadata │ │ ├── bag-info.txt │ │ ├── bagit.txt │ │ ├── data │ │ │ └── my_content │ │ │ │ ├── dracula.txt │ │ │ │ └── poe.txt │ │ ├── manifest-sha512.txt │ │ └── tagmanifest-sha512.txt │ ├── invalid_bag │ │ ├── bag-info.txt │ │ ├── bagit.txt │ │ ├── data │ │ │ └── my_content │ │ │ │ ├── dracula.txt │ │ │ │ └── poe.txt │ │ ├── manifest-sha512.txt │ │ └── tagmanifest-sha512.txt │ ├── uaa_v1 │ │ ├── bag-info.txt │ │ ├── bagit.txt │ │ ├── data │ │ │ └── my_content │ │ │ │ ├── dracula.txt │ │ │ │ └── poe.txt │ │ ├── manifest-sha512.txt │ │ └── tagmanifest-sha512.txt │ ├── uaa_v2 │ │ ├── bag-info.txt │ │ ├── bagit.txt │ │ ├── data │ │ │ └── my_content │ │ │ │ ├── a_second_copy_of_dracula.txt │ │ │ │ ├── another_directory │ │ │ │ └── a_third_copy_of_dracula.txt │ │ │ │ ├── dracula.txt │ │ │ │ └── poe-nevermore.txt │ │ ├── manifest-sha512.txt │ │ └── tagmanifest-sha512.txt │ ├── uaa_v3 │ │ ├── bag-info.txt │ │ ├── bagit.txt │ │ ├── data │ │ │ └── my_content │ │ │ │ ├── another_directory │ │ │ │ └── a_third_copy_of_dracula.txt │ │ │ │ ├── dracula.txt │ │ │ │ └── poe-nevermore.txt │ │ ├── manifest-sha512.txt │ │ └── tagmanifest-sha512.txt │ └── uaa_v4 │ │ ├── bag-info.txt │ │ ├── bagit.txt │ │ ├── data │ │ └── my_content │ │ │ ├── another_directory │ │ │ └── a_third_copy_of_dracula.txt │ │ │ ├── dracula.txt │ │ │ ├── dunwich.txt │ │ │ └── poe-nevermore.txt │ │ ├── manifest-sha512.txt │ │ └── tagmanifest-sha512.txt ├── files │ ├── empty │ └── hello_out_there.txt ├── inventories │ └── inv_1_good.json ├── inventory_schema.json └── namaste │ ├── 0=bison │ ├── 0=frog │ ├── 0=snake │ └── 1=red └── testlib ├── __init__.py └── demo_unittest.py /.github/workflows/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/.github/workflows/action.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/.gitmodules -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/CHANGES.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DEV_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/DEV_NOTES.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/README -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- 1 | README -------------------------------------------------------------------------------- /compactify_spec_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/compactify_spec_examples.py -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/command_line.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/docs/command_line.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/conformance.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/docs/conformance.rst -------------------------------------------------------------------------------- /docs/demo_build_v1_0_spec_examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/docs/demo_build_v1_0_spec_examples.md -------------------------------------------------------------------------------- /docs/demo_build_v1_1_spec_examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/docs/demo_build_v1_1_spec_examples.md -------------------------------------------------------------------------------- /docs/demo_ocfl_object_script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/docs/demo_ocfl_object_script.md -------------------------------------------------------------------------------- /docs/demo_ocfl_root_script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/docs/demo_ocfl_root_script.md -------------------------------------------------------------------------------- /docs/demo_ocfl_sidecar_script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/docs/demo_ocfl_sidecar_script.md -------------------------------------------------------------------------------- /docs/demo_ocfl_validate_script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/docs/demo_ocfl_validate_script.md -------------------------------------------------------------------------------- /docs/demo_using_bagit_bags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/docs/demo_using_bagit_bags.md -------------------------------------------------------------------------------- /docs/demos.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/docs/demos.rst -------------------------------------------------------------------------------- /docs/fixtures.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/docs/fixtures.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/jsonschema_inventory_validation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/docs/jsonschema_inventory_validation.md -------------------------------------------------------------------------------- /docs/ocfl.constants.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/docs/ocfl.constants.rst -------------------------------------------------------------------------------- /docs/ocfl.inventory.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/docs/ocfl.inventory.rst -------------------------------------------------------------------------------- /docs/ocfl.inventory_validator.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/docs/ocfl.inventory_validator.rst -------------------------------------------------------------------------------- /docs/ocfl.new_version.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/docs/ocfl.new_version.rst -------------------------------------------------------------------------------- /docs/ocfl.object.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/docs/ocfl.object.rst -------------------------------------------------------------------------------- /docs/ocfl.storage_root.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/docs/ocfl.storage_root.rst -------------------------------------------------------------------------------- /docs/ocfl.version.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/docs/ocfl.version.rst -------------------------------------------------------------------------------- /docs/ocfl.version_metadata.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/docs/ocfl.version_metadata.rst -------------------------------------------------------------------------------- /docs/ocfl_object_script.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/docs/ocfl_object_script.rst -------------------------------------------------------------------------------- /docs/ocfl_root_script.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/docs/ocfl_root_script.rst -------------------------------------------------------------------------------- /docs/ocfl_sidecar_script.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/docs/ocfl_sidecar_script.rst -------------------------------------------------------------------------------- /docs/ocfl_validate_script.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/docs/ocfl_validate_script.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/validation_status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/docs/validation_status.md -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E009_version_two_only/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E009_version_two_only/inventory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/1.0/bad-objects/E009_version_two_only/inventory.json -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E009_version_two_only/inventory.json.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/1.0/bad-objects/E009_version_two_only/inventory.json.sha512 -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E009_version_two_only/v2/content/a_file.txt: -------------------------------------------------------------------------------- 1 | Hello! I am a file. 2 | -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E009_version_two_only/v2/inventory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/1.0/bad-objects/E009_version_two_only/v2/inventory.json -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E009_version_two_only/v2/inventory.json.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/1.0/bad-objects/E009_version_two_only/v2/inventory.json.sha512 -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E024_empty_dir_in_content.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/1.0/bad-objects/E024_empty_dir_in_content.zip -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E033_inventory_bad_json/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E033_inventory_bad_json/inventory.json: -------------------------------------------------------------------------------- 1 | { 2 | This file is not valid JSON 3 | } -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E033_inventory_bad_json/inventory.json.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/1.0/bad-objects/E033_inventory_bad_json/inventory.json.sha512 -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E033_inventory_bad_json/v1/inventory.json: -------------------------------------------------------------------------------- 1 | { 2 | This file is not valid JSON 3 | } -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E033_inventory_bad_json/v1/inventory.json.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/1.0/bad-objects/E033_inventory_bad_json/v1/inventory.json.sha512 -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E041_manifest_not_object/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E041_manifest_not_object/inventory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/1.0/bad-objects/E041_manifest_not_object/inventory.json -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E041_manifest_not_object/inventory.json.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/1.0/bad-objects/E041_manifest_not_object/inventory.json.sha512 -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E041_manifest_not_object/v1/inventory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/1.0/bad-objects/E041_manifest_not_object/v1/inventory.json -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E042_bad_manifest_content_path/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E042_bad_manifest_content_path/inventory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/1.0/bad-objects/E042_bad_manifest_content_path/inventory.json -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E042_bad_manifest_content_path/v1/content/a_file.txt: -------------------------------------------------------------------------------- 1 | Hello! I am a file. 2 | -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E042_bad_manifest_content_path/v1/inventory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/1.0/bad-objects/E042_bad_manifest_content_path/v1/inventory.json -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E046_missing_version_dir/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E046_missing_version_dir/inventory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/1.0/bad-objects/E046_missing_version_dir/inventory.json -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E046_missing_version_dir/inventory.json.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/1.0/bad-objects/E046_missing_version_dir/inventory.json.sha512 -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E050_state_digest_different_case/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E050_state_digest_different_case/inventory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/1.0/bad-objects/E050_state_digest_different_case/inventory.json -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E050_state_digest_different_case/v1/content/empty1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E050_state_repeated_digest/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E050_state_repeated_digest/inventory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/1.0/bad-objects/E050_state_repeated_digest/inventory.json -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E050_state_repeated_digest/inventory.json.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/1.0/bad-objects/E050_state_repeated_digest/inventory.json.sha512 -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E050_state_repeated_digest/v1/content/empty1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E050_state_repeated_digest/v1/inventory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/1.0/bad-objects/E050_state_repeated_digest/v1/inventory.json -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E056_null_fixity/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E056_null_fixity/inventory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/1.0/bad-objects/E056_null_fixity/inventory.json -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E056_null_fixity/inventory.json.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/1.0/bad-objects/E056_null_fixity/inventory.json.sha512 -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E056_null_fixity/v1/inventory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/1.0/bad-objects/E056_null_fixity/v1/inventory.json -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E056_null_fixity/v1/inventory.json.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/1.0/bad-objects/E056_null_fixity/v1/inventory.json.sha512 -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E066_changed_content_for_logical_path/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E066_changed_content_for_logical_path/v1/content/a_file.txt: -------------------------------------------------------------------------------- 1 | Hello! I am a file. 2 | -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E066_changed_v1_logical_path/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E066_changed_v1_logical_path/inventory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/1.0/bad-objects/E066_changed_v1_logical_path/inventory.json -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E066_changed_v1_logical_path/v1/content/a_file.txt: -------------------------------------------------------------------------------- 1 | Hello! I am a file. 2 | -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E066_changed_v1_logical_path/v1/inventory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/1.0/bad-objects/E066_changed_v1_logical_path/v1/inventory.json -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E066_changed_v1_logical_path/v2/inventory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/1.0/bad-objects/E066_changed_v1_logical_path/v2/inventory.json -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E092_bad_manifest_digest/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E092_bad_manifest_digest/inventory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/1.0/bad-objects/E092_bad_manifest_digest/inventory.json -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E092_bad_manifest_digest/inventory.json.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/1.0/bad-objects/E092_bad_manifest_digest/inventory.json.sha512 -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E092_bad_manifest_digest/v1/content/a_file.txt: -------------------------------------------------------------------------------- 1 | Hello! I am a file. 2 | -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E092_bad_manifest_digest/v1/inventory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/1.0/bad-objects/E092_bad_manifest_digest/v1/inventory.json -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E093_fixity_digest_mismatch_in_v1/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E093_fixity_digest_mismatch_in_v1/inventory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/1.0/bad-objects/E093_fixity_digest_mismatch_in_v1/inventory.json -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E093_fixity_digest_mismatch_in_v1/v1/content/test.txt: -------------------------------------------------------------------------------- 1 | testing 2 | -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E094_message_not_a_string/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E094_message_not_a_string/inventory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/1.0/bad-objects/E094_message_not_a_string/inventory.json -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E094_message_not_a_string/inventory.json.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/1.0/bad-objects/E094_message_not_a_string/inventory.json.sha512 -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E094_message_not_a_string/v1/content/a_file.txt: -------------------------------------------------------------------------------- 1 | Hello! I am a file. 2 | -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E094_message_not_a_string/v1/inventory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/1.0/bad-objects/E094_message_not_a_string/v1/inventory.json -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E096_manifest_repeated_digest/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E096_manifest_repeated_digest/inventory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/1.0/bad-objects/E096_manifest_repeated_digest/inventory.json -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E096_manifest_repeated_digest/v1/content/a_file.txt: -------------------------------------------------------------------------------- 1 | Hello! I am a file. 2 | -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E096_manifest_repeated_digest/v1/content/duplicate_of_a_file.txt: -------------------------------------------------------------------------------- 1 | Hello! I am a file. 2 | -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E096_manifest_repeated_digest/v1/inventory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/1.0/bad-objects/E096_manifest_repeated_digest/v1/inventory.json -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E097_fixity_repeated_digest/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E097_fixity_repeated_digest/inventory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/1.0/bad-objects/E097_fixity_repeated_digest/inventory.json -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E097_fixity_repeated_digest/v1/content/a_file.txt: -------------------------------------------------------------------------------- 1 | Hello! I am a file. 2 | -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E097_fixity_repeated_digest/v1/content/duplicate_of_a_file.txt: -------------------------------------------------------------------------------- 1 | Hello! I am a file. 2 | -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E097_fixity_repeated_digest/v1/inventory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/1.0/bad-objects/E097_fixity_repeated_digest/v1/inventory.json -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E099_bad_content_path_elements/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E099_bad_content_path_elements/inventory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/1.0/bad-objects/E099_bad_content_path_elements/inventory.json -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E099_bad_content_path_elements/v1/content/a_file.txt: -------------------------------------------------------------------------------- 1 | Hello! I am a file. 2 | -------------------------------------------------------------------------------- /extra_fixtures/1.0/bad-objects/E099_bad_content_path_elements/v1/inventory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/1.0/bad-objects/E099_bad_content_path_elements/v1/inventory.json -------------------------------------------------------------------------------- /extra_fixtures/1.0/content/spec-ex-full-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/1.0/content/spec-ex-full-metadata.json -------------------------------------------------------------------------------- /extra_fixtures/1.0/good-objects/root_ext0003_horrible-obj/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/1.0/good-objects/root_ext0003_horrible-obj/inventory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/1.0/good-objects/root_ext0003_horrible-obj/inventory.json -------------------------------------------------------------------------------- /extra_fixtures/1.0/good-objects/root_ext0003_horrible-obj/v1/content/file.txt: -------------------------------------------------------------------------------- 1 | This is the one file in object with name "..hor/rib:le-$id" 2 | 3 | -------------------------------------------------------------------------------- /extra_fixtures/1.0/good-objects/root_ext0003_horrible-obj/v1/inventory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/1.0/good-objects/root_ext0003_horrible-obj/v1/inventory.json -------------------------------------------------------------------------------- /extra_fixtures/1.0/good-objects/root_ext0003_object-01/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/1.0/good-objects/root_ext0003_object-01/inventory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/1.0/good-objects/root_ext0003_object-01/inventory.json -------------------------------------------------------------------------------- /extra_fixtures/1.0/good-objects/root_ext0003_object-01/inventory.json.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/1.0/good-objects/root_ext0003_object-01/inventory.json.sha512 -------------------------------------------------------------------------------- /extra_fixtures/1.0/good-objects/root_ext0003_object-01/v1/content/file.txt: -------------------------------------------------------------------------------- 1 | This is the one file in object-01 2 | -------------------------------------------------------------------------------- /extra_fixtures/1.0/good-objects/root_ext0003_object-01/v1/inventory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/1.0/good-objects/root_ext0003_object-01/v1/inventory.json -------------------------------------------------------------------------------- /extra_fixtures/1.0/good-objects/ten_level_deep_directories.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/1.0/good-objects/ten_level_deep_directories.zip -------------------------------------------------------------------------------- /extra_fixtures/1.0/warn-objects/W003_empty_content_dir.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/1.0/warn-objects/W003_empty_content_dir.zip -------------------------------------------------------------------------------- /extra_fixtures/1.1/bad-objects/E003_two_declarations/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/1.1/bad-objects/E003_two_declarations/0=ocfl_object_1.1: -------------------------------------------------------------------------------- 1 | ocfl_object_1.1 2 | 3 | -------------------------------------------------------------------------------- /extra_fixtures/1.1/bad-objects/E003_two_declarations/inventory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/1.1/bad-objects/E003_two_declarations/inventory.json -------------------------------------------------------------------------------- /extra_fixtures/1.1/bad-objects/E003_two_declarations/inventory.json.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/1.1/bad-objects/E003_two_declarations/inventory.json.sha512 -------------------------------------------------------------------------------- /extra_fixtures/1.1/bad-objects/E003_two_declarations/v1/content/a_file.txt: -------------------------------------------------------------------------------- 1 | Hello! I am a file. 2 | -------------------------------------------------------------------------------- /extra_fixtures/1.1/bad-objects/E003_two_declarations/v1/inventory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/1.1/bad-objects/E003_two_declarations/v1/inventory.json -------------------------------------------------------------------------------- /extra_fixtures/1.1/bad-objects/E019_content_dir_set_in_v2_not_v1/0=ocfl_object_1.1: -------------------------------------------------------------------------------- 1 | ocfl_object_1.1 2 | -------------------------------------------------------------------------------- /extra_fixtures/1.1/bad-objects/E019_content_dir_set_in_v2_not_v1/v2/stuff/test.txt: -------------------------------------------------------------------------------- 1 | testing 2 2 | -------------------------------------------------------------------------------- /extra_fixtures/1.1/bad-objects/E020_inconsistent_content_directory/0=ocfl_object_1.1: -------------------------------------------------------------------------------- 1 | ocfl_object_1.1 2 | -------------------------------------------------------------------------------- /extra_fixtures/1.1/bad-objects/E020_inconsistent_content_directory/v2/stuff/test.txt: -------------------------------------------------------------------------------- 1 | testing 2 2 | -------------------------------------------------------------------------------- /extra_fixtures/1.1/bad-objects/E038_type_not_str/0=ocfl_object_1.1: -------------------------------------------------------------------------------- 1 | ocfl_object_1.1 2 | -------------------------------------------------------------------------------- /extra_fixtures/1.1/bad-objects/E038_type_not_str/inventory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/1.1/bad-objects/E038_type_not_str/inventory.json -------------------------------------------------------------------------------- /extra_fixtures/1.1/bad-objects/E038_type_not_str/inventory.json.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/1.1/bad-objects/E038_type_not_str/inventory.json.sha512 -------------------------------------------------------------------------------- /extra_fixtures/1.1/bad-objects/E038_type_not_str/v1/inventory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/1.1/bad-objects/E038_type_not_str/v1/inventory.json -------------------------------------------------------------------------------- /extra_fixtures/1.1/bad-objects/E038_type_not_str/v1/inventory.json.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/1.1/bad-objects/E038_type_not_str/v1/inventory.json.sha512 -------------------------------------------------------------------------------- /extra_fixtures/1.1/bad-objects/E111_null_fixity/0=ocfl_object_1.1: -------------------------------------------------------------------------------- 1 | ocfl_object_1.1 2 | -------------------------------------------------------------------------------- /extra_fixtures/1.1/bad-objects/E111_null_fixity/inventory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/1.1/bad-objects/E111_null_fixity/inventory.json -------------------------------------------------------------------------------- /extra_fixtures/1.1/bad-objects/E111_null_fixity/inventory.json.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/1.1/bad-objects/E111_null_fixity/inventory.json.sha512 -------------------------------------------------------------------------------- /extra_fixtures/1.1/bad-objects/E111_null_fixity/v1/inventory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/1.1/bad-objects/E111_null_fixity/v1/inventory.json -------------------------------------------------------------------------------- /extra_fixtures/1.1/bad-objects/E111_null_fixity/v1/inventory.json.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/1.1/bad-objects/E111_null_fixity/v1/inventory.json.sha512 -------------------------------------------------------------------------------- /extra_fixtures/1.1/content/spec-ex-full-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/1.1/content/spec-ex-full-metadata.json -------------------------------------------------------------------------------- /extra_fixtures/1.1/good-objects/empty_fixity/0=ocfl_object_1.1: -------------------------------------------------------------------------------- 1 | ocfl_object_1.1 2 | -------------------------------------------------------------------------------- /extra_fixtures/1.1/good-objects/empty_fixity/inventory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/1.1/good-objects/empty_fixity/inventory.json -------------------------------------------------------------------------------- /extra_fixtures/1.1/good-objects/empty_fixity/inventory.json.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/1.1/good-objects/empty_fixity/inventory.json.sha512 -------------------------------------------------------------------------------- /extra_fixtures/1.1/good-objects/empty_fixity/v1/inventory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/1.1/good-objects/empty_fixity/v1/inventory.json -------------------------------------------------------------------------------- /extra_fixtures/1.1/good-objects/empty_fixity/v1/inventory.json.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/1.1/good-objects/empty_fixity/v1/inventory.json.sha512 -------------------------------------------------------------------------------- /extra_fixtures/bad-inventories/inventory_E042a_bad_content_paths.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/bad-inventories/inventory_E042a_bad_content_paths.json -------------------------------------------------------------------------------- /extra_fixtures/bad-inventories/inventory_E042b_unknown_version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/bad-inventories/inventory_E042b_unknown_version.json -------------------------------------------------------------------------------- /extra_fixtures/bad-inventories/inventory_E042b_zero_padding_mismatch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/bad-inventories/inventory_E042b_zero_padding_mismatch.json -------------------------------------------------------------------------------- /extra_fixtures/bad-inventories/inventory_E042c_bad_content_paths.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/bad-inventories/inventory_E042c_bad_content_paths.json -------------------------------------------------------------------------------- /extra_fixtures/bad-storage-roots/E069_no_declaration_file.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/bad-storage-roots/E069_no_declaration_file.zip -------------------------------------------------------------------------------- /extra_fixtures/bad-storage-roots/E072_root_with_file_not_in_object/0=ocfl_1.0: -------------------------------------------------------------------------------- 1 | ocfl_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/bad-storage-roots/E072_root_with_file_not_in_object/dir1/bad_file.txt: -------------------------------------------------------------------------------- 1 | A bad file, should cause E072 error 2 | -------------------------------------------------------------------------------- /extra_fixtures/bad-storage-roots/E072_root_with_file_not_in_object/dir2/minimal_no_content/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/bad-storage-roots/E073_root_with_empty_dir.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/bad-storage-roots/E073_root_with_empty_dir.zip -------------------------------------------------------------------------------- /extra_fixtures/bad-storage-roots/simple-bad-root.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/bad-storage-roots/simple-bad-root.zip -------------------------------------------------------------------------------- /extra_fixtures/content/dedupe_content/v1/empty1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/content/dedupe_content/v1/empty2.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/content/dedupe_content/v1/empty3.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/content/dedupe_content/v2/empty4.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/content/dupe-files/file1.txt: -------------------------------------------------------------------------------- 1 | Some text 2 | -------------------------------------------------------------------------------- /extra_fixtures/content/dupe-files/file1_dupe.txt: -------------------------------------------------------------------------------- 1 | Some text 2 | -------------------------------------------------------------------------------- /extra_fixtures/extension_configs/extensions/good_param/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/extension_configs/extensions/good_param/config.json -------------------------------------------------------------------------------- /extra_fixtures/extension_configs/extensions/no_config/keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/extension_configs/extensions/not_json/config.json: -------------------------------------------------------------------------------- 1 | NOT a JSON file! 2 | -------------------------------------------------------------------------------- /extra_fixtures/extension_configs/extensions/not_json_object/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/extension_configs/extensions/not_json_object/config.json -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/00/5d/d1/ba1ddbf3-929e-4a38-a75c-cd2e4eb05dbe_test/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/00/5d/d1/ba1ddbf3-929e-4a38-a75c-cd2e4eb05dbe_test/extensions/mutable-head/HEAD/content/r1/test.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/00/5d/d1/ba1ddbf3-929e-4a38-a75c-cd2e4eb05dbe_test/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/01/8a/85/8a5f2a36-4441-4479-9cd3-afdee1699ffa/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/01/8a/85/8a5f2a36-4441-4479-9cd3-afdee1699ffa/extensions/mutable-head/HEAD/content/r1/8a5f2a36-4441-4479-9cd3-afdee1699ffa: -------------------------------------------------------------------------------- 1 | test content -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/01/8a/85/8a5f2a36-4441-4479-9cd3-afdee1699ffa/extensions/mutable-head/HEAD/content/r1/8a5f2a36-4441-4479-9cd3-afdee1699ffa-description.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/01/8a/85/8a5f2a36-4441-4479-9cd3-afdee1699ffa/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/02/64/f3/6cccd9e8-afcd-40a3-9440-73f778ec6fc5/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/02/64/f3/6cccd9e8-afcd-40a3-9440-73f778ec6fc5/extensions/mutable-head/HEAD/content/r1/6cccd9e8-afcd-40a3-9440-73f778ec6fc5: -------------------------------------------------------------------------------- 1 | Some text here. -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/02/64/f3/6cccd9e8-afcd-40a3-9440-73f778ec6fc5/extensions/mutable-head/HEAD/content/r1/6cccd9e8-afcd-40a3-9440-73f778ec6fc5-description.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/02/64/f3/6cccd9e8-afcd-40a3-9440-73f778ec6fc5/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/03/d8/32/821f56ff-e476-484c-8da7-b30f416a1c2e_child-7/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/03/d8/32/821f56ff-e476-484c-8da7-b30f416a1c2e_child-7/extensions/mutable-head/HEAD/content/r1/child-7.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/03/d8/32/821f56ff-e476-484c-8da7-b30f416a1c2e_child-7/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/06/f7/0d/39961a64-b435-4445-acda-56021249855e/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/06/f7/0d/39961a64-b435-4445-acda-56021249855e/v2/content/r1/39961a64-b435-4445-acda-56021249855e.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/07/2b/d6/9e2f547c-c549-4f3f-9439-d4087ad38d89/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/07/2b/d6/9e2f547c-c549-4f3f-9439-d4087ad38d89/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/07/49/e9/550f1839-9921-45e4-9688-7db1094a5a8c/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/07/49/e9/550f1839-9921-45e4-9688-7db1094a5a8c/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/07/b1/32/ba1ddbf3-929e-4a38-a75c-cd2e4eb05dbe/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/07/b1/32/ba1ddbf3-929e-4a38-a75c-cd2e4eb05dbe/extensions/mutable-head/HEAD/content/r1/ba1ddbf3-929e-4a38-a75c-cd2e4eb05dbe.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/07/b1/32/ba1ddbf3-929e-4a38-a75c-cd2e4eb05dbe/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/08/5b/c2/d8cda308-b876-4cdf-a74d-226f48def519/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/08/5b/c2/d8cda308-b876-4cdf-a74d-226f48def519/extensions/mutable-head/HEAD/content/r1/d8cda308-b876-4cdf-a74d-226f48def519.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/08/5b/c2/d8cda308-b876-4cdf-a74d-226f48def519/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/0=ocfl_1.0: -------------------------------------------------------------------------------- 1 | ocfl_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/0b/1b/17/821f56ff-e476-484c-8da7-b30f416a1c2e_child-11/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/0b/1b/17/821f56ff-e476-484c-8da7-b30f416a1c2e_child-11/extensions/mutable-head/HEAD/content/r1/child-11.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/0b/1b/17/821f56ff-e476-484c-8da7-b30f416a1c2e_child-11/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/0b/7c/b9/72dbbfd0-56dd-4bd7-9d53-3fe70629299b/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/0b/7c/b9/72dbbfd0-56dd-4bd7-9d53-3fe70629299b/extensions/mutable-head/HEAD/content/r1/72dbbfd0-56dd-4bd7-9d53-3fe70629299b.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/0b/7c/b9/72dbbfd0-56dd-4bd7-9d53-3fe70629299b/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/0b/91/c8/b1471585-68c2-42dc-ac1a-b80a9133ecaa/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/0b/91/c8/b1471585-68c2-42dc-ac1a-b80a9133ecaa/v2/content/r1/b1471585-68c2-42dc-ac1a-b80a9133ecaa: -------------------------------------------------------------------------------- 1 | binary content -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/0b/91/c8/b1471585-68c2-42dc-ac1a-b80a9133ecaa/v2/content/r1/b1471585-68c2-42dc-ac1a-b80a9133ecaa-description.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/0c/c6/cc/3b6f620d-c597-4bc8-b505-acc516ae3594/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/0c/c6/cc/3b6f620d-c597-4bc8-b505-acc516ae3594/extensions/mutable-head/HEAD/content/r1/3b6f620d-c597-4bc8-b505-acc516ae3594-description.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/0c/c6/cc/3b6f620d-c597-4bc8-b505-acc516ae3594/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/0d/24/9c/99bf8650-fbb9-4ee8-8f99-6d1e0d21eab9/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/0d/24/9c/99bf8650-fbb9-4ee8-8f99-6d1e0d21eab9/extensions/mutable-head/HEAD/content/r1/99bf8650-fbb9-4ee8-8f99-6d1e0d21eab9.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/0d/24/9c/99bf8650-fbb9-4ee8-8f99-6d1e0d21eab9/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/10/d6/0c/7ad430f9-93ea-4962-be72-eae7ba8ee26c/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/10/d6/0c/7ad430f9-93ea-4962-be72-eae7ba8ee26c/extensions/mutable-head/HEAD/content/r1/7ad430f9-93ea-4962-be72-eae7ba8ee26c-description.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/10/d6/0c/7ad430f9-93ea-4962-be72-eae7ba8ee26c/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/13/89/75/b09d6ae1-83db-496a-98b3-93c24e6691c7/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/13/89/75/b09d6ae1-83db-496a-98b3-93c24e6691c7/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/14/83/65/_fedora_repository_root/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/14/83/65/_fedora_repository_root/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/17/23/a9/40066aca-ca16-4e92-a9a4-6ed444139d60/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/17/23/a9/40066aca-ca16-4e92-a9a4-6ed444139d60/v3/content/r1/child1: -------------------------------------------------------------------------------- 1 | v2 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/17/23/a9/40066aca-ca16-4e92-a9a4-6ed444139d60/v3/content/r1/child1-description.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/18/2b/fe/5ba4c9e2-68be-4c62-a09f-49e8fdae01be/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/18/2b/fe/5ba4c9e2-68be-4c62-a09f-49e8fdae01be/extensions/mutable-head/HEAD/content/r1/5ba4c9e2-68be-4c62-a09f-49e8fdae01be.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/18/2b/fe/5ba4c9e2-68be-4c62-a09f-49e8fdae01be/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/19/47/57/821f56ff-e476-484c-8da7-b30f416a1c2e_child-3/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/19/47/57/821f56ff-e476-484c-8da7-b30f416a1c2e_child-3/extensions/mutable-head/HEAD/content/r1/child-3.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/19/47/57/821f56ff-e476-484c-8da7-b30f416a1c2e_child-3/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/19/f3/ce/9b7daf70-4165-45d8-bb21-e497b916097a/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/19/f3/ce/9b7daf70-4165-45d8-bb21-e497b916097a/extensions/mutable-head/HEAD/content/r1/9b7daf70-4165-45d8-bb21-e497b916097a.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/19/f3/ce/9b7daf70-4165-45d8-bb21-e497b916097a/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/1b/11/04/0f770612-f53b-47d8-bf09-aeca6c846875/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/1e/0d/e2/011a5fd3-b600-41d7-b66f-63f37c380102_a/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/1e/0d/e2/011a5fd3-b600-41d7-b66f-63f37c380102_a/extensions/mutable-head/HEAD/content/r1/a.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/1e/0d/e2/011a5fd3-b600-41d7-b66f-63f37c380102_a/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/1f/25/76/f7a463d2-d87a-4659-bf9a-57bd9322b15c/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/1f/25/76/f7a463d2-d87a-4659-bf9a-57bd9322b15c/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/1f/25/76/f7a463d2-d87a-4659-bf9a-57bd9322b15c/extensions/mutable-head/revisions/r2: -------------------------------------------------------------------------------- 1 | r2 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/1f/46/06/f82a19b0-4011-4989-8cfe-fe976d749b8a/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/21/b0/e1/ea290fe3-1961-4508-bd77-2491129b2b45/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/21/b0/e1/ea290fe3-1961-4508-bd77-2491129b2b45/extensions/mutable-head/HEAD/content/r1/ea290fe3-1961-4508-bd77-2491129b2b45.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/21/b0/e1/ea290fe3-1961-4508-bd77-2491129b2b45/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/23/6e/57/821f56ff-e476-484c-8da7-b30f416a1c2e_child-18/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/23/6e/57/821f56ff-e476-484c-8da7-b30f416a1c2e_child-18/extensions/mutable-head/HEAD/content/r1/child-18.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/23/6e/57/821f56ff-e476-484c-8da7-b30f416a1c2e_child-18/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/24/ed/04/e157cd3f-10ea-401a-9d52-6824be4e9bf9/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/24/ed/04/e157cd3f-10ea-401a-9d52-6824be4e9bf9/extensions/mutable-head/HEAD/content/r1/e157cd3f-10ea-401a-9d52-6824be4e9bf9.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/24/ed/04/e157cd3f-10ea-401a-9d52-6824be4e9bf9/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/25/40/bb/bffa039d-5718-400a-816b-94b359451b94/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/25/ec/16/821f56ff-e476-484c-8da7-b30f416a1c2e_child-9/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/25/ec/16/821f56ff-e476-484c-8da7-b30f416a1c2e_child-9/extensions/mutable-head/HEAD/content/r1/child-9.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/25/ec/16/821f56ff-e476-484c-8da7-b30f416a1c2e_child-9/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/26/92/ca/c0a6272d-d098-402f-a920-6b5dd659b707/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/26/92/ca/c0a6272d-d098-402f-a920-6b5dd659b707/extensions/mutable-head/HEAD/content/r1/c0a6272d-d098-402f-a920-6b5dd659b707.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/26/92/ca/c0a6272d-d098-402f-a920-6b5dd659b707/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/27/ef/e8/20a59092-98b6-43e6-820f-e0850da17e2c_x/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/27/ef/e8/20a59092-98b6-43e6-820f-e0850da17e2c_x/extensions/mutable-head/HEAD/content/r1/x-description.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/27/ef/e8/20a59092-98b6-43e6-820f-e0850da17e2c_x/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/27/ef/e8/20a59092-98b6-43e6-820f-e0850da17e2c_x/extensions/mutable-head/revisions/r2: -------------------------------------------------------------------------------- 1 | r2 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/28/f1/82/821f56ff-e476-484c-8da7-b30f416a1c2e_child-12/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/28/f1/82/821f56ff-e476-484c-8da7-b30f416a1c2e_child-12/extensions/mutable-head/HEAD/content/r1/child-12.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/28/f1/82/821f56ff-e476-484c-8da7-b30f416a1c2e_child-12/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/29/90/c5/a5de4862-f3ce-4dc1-964d-c9e7fdc47d2b/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/29/90/c5/a5de4862-f3ce-4dc1-964d-c9e7fdc47d2b/extensions/mutable-head/HEAD/content/r1/a5de4862-f3ce-4dc1-964d-c9e7fdc47d2b.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/29/90/c5/a5de4862-f3ce-4dc1-964d-c9e7fdc47d2b/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/29/b3/e6/27dc1fe1-0691-48ed-b525-864dcdc7af84_x/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/29/b3/e6/27dc1fe1-0691-48ed-b525-864dcdc7af84_x/extensions/mutable-head/HEAD/content/r1/x: -------------------------------------------------------------------------------- 1 | some content -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/29/b3/e6/27dc1fe1-0691-48ed-b525-864dcdc7af84_x/extensions/mutable-head/HEAD/content/r1/x-description.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/29/b3/e6/27dc1fe1-0691-48ed-b525-864dcdc7af84_x/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/2c/ad/6c/821f56ff-e476-484c-8da7-b30f416a1c2e_child-15/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/2c/ad/6c/821f56ff-e476-484c-8da7-b30f416a1c2e_child-15/extensions/mutable-head/HEAD/content/r1/child-15.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/2c/ad/6c/821f56ff-e476-484c-8da7-b30f416a1c2e_child-15/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/2d/22/b6/c6d4f82d-a370-43ca-b91a-a1d81fd7072b/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/2d/22/b6/c6d4f82d-a370-43ca-b91a-a1d81fd7072b/extensions/mutable-head/HEAD/content/r1/c6d4f82d-a370-43ca-b91a-a1d81fd7072b-description.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/2d/22/b6/c6d4f82d-a370-43ca-b91a-a1d81fd7072b/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/2d/3d/18/f639d918-f634-45be-b1e7-75e8c1523d27/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/2e/00/2f/821f56ff-e476-484c-8da7-b30f416a1c2e_child-8/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/2e/00/2f/821f56ff-e476-484c-8da7-b30f416a1c2e_child-8/extensions/mutable-head/HEAD/content/r1/child-8.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/2e/00/2f/821f56ff-e476-484c-8da7-b30f416a1c2e_child-8/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/2e/7e/fb/b99bb8cf-6899-4c6d-a692-c59a451f7b15/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/2e/7e/fb/b99bb8cf-6899-4c6d-a692-c59a451f7b15/extensions/mutable-head/HEAD/content/r1/b99bb8cf-6899-4c6d-a692-c59a451f7b15.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/2e/7e/fb/b99bb8cf-6899-4c6d-a692-c59a451f7b15/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/31/45/41/8844f976-a2a6-4ede-8897-db0f2aa471aa/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/31/45/41/8844f976-a2a6-4ede-8897-db0f2aa471aa/extensions/mutable-head/HEAD/content/r1/8844f976-a2a6-4ede-8897-db0f2aa471aa.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/31/45/41/8844f976-a2a6-4ede-8897-db0f2aa471aa/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/33/18/b7/28784804-0f6a-430e-9011-9545354f7b84/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/33/18/b7/28784804-0f6a-430e-9011-9545354f7b84/extensions/mutable-head/HEAD/content/r1/28784804-0f6a-430e-9011-9545354f7b84.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/33/18/b7/28784804-0f6a-430e-9011-9545354f7b84/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/33/49/12/2292d713-c182-4c40-b0b6-56983b3facb7_00_1/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/33/49/12/2292d713-c182-4c40-b0b6-56983b3facb7_00_1/extensions/mutable-head/HEAD/content/r1/1.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/33/49/12/2292d713-c182-4c40-b0b6-56983b3facb7_00_1/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/35/39/fd/b32be786-e7d9-47ad-be2d-b550f33b9c7e/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/35/39/fd/b32be786-e7d9-47ad-be2d-b550f33b9c7e/extensions/mutable-head/HEAD/content/r1/b32be786-e7d9-47ad-be2d-b550f33b9c7e.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/35/39/fd/b32be786-e7d9-47ad-be2d-b550f33b9c7e/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/38/ac/5d/90f9d90f-e114-4264-a14f-edc0d5c7ee85/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/38/ac/5d/90f9d90f-e114-4264-a14f-edc0d5c7ee85/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/38/e6/1f/73781b39-8b8c-4313-a6f1-9c6d54494ae7/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/39/5a/1d/c58b2e2a-9964-4e40-8c32-1bbfbdcd7b7b/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/39/ef/1e/a56afe87-90c3-45bd-8ef9-f630dd8ae15b_x/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/39/ef/1e/a56afe87-90c3-45bd-8ef9-f630dd8ae15b_x/extensions/mutable-head/HEAD/content/r1/x: -------------------------------------------------------------------------------- 1 | a56afe87-90c3-45bd-8ef9-f630dd8ae15b -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/39/ef/1e/a56afe87-90c3-45bd-8ef9-f630dd8ae15b_x/extensions/mutable-head/HEAD/content/r1/x-description.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/39/ef/1e/a56afe87-90c3-45bd-8ef9-f630dd8ae15b_x/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/3a/69/0c/821f56ff-e476-484c-8da7-b30f416a1c2e_child-5/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/3a/69/0c/821f56ff-e476-484c-8da7-b30f416a1c2e_child-5/extensions/mutable-head/HEAD/content/r1/child-5.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/3a/69/0c/821f56ff-e476-484c-8da7-b30f416a1c2e_child-5/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/3b/ca/6a/6c3f8dfc-853b-4a1a-ac94-a78509c4ac76/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/3b/ca/6a/6c3f8dfc-853b-4a1a-ac94-a78509c4ac76/extensions/mutable-head/HEAD/content/r1/6c3f8dfc-853b-4a1a-ac94-a78509c4ac76.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/3b/ca/6a/6c3f8dfc-853b-4a1a-ac94-a78509c4ac76/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/3d/8c/e2/00fa77a2-536d-418d-ab75-2923c50704e9_x/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/3d/8c/e2/00fa77a2-536d-418d-ab75-2923c50704e9_x/extensions/mutable-head/HEAD/content/r1/x: -------------------------------------------------------------------------------- 1 | some content -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/3d/8c/e2/00fa77a2-536d-418d-ab75-2923c50704e9_x/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/3d/8c/e2/00fa77a2-536d-418d-ab75-2923c50704e9_x/extensions/mutable-head/revisions/r2: -------------------------------------------------------------------------------- 1 | r2 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/3f/84/ad/2292d713-c182-4c40-b0b6-56983b3facb7/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/3f/84/ad/2292d713-c182-4c40-b0b6-56983b3facb7/extensions/mutable-head/HEAD/content/r1/2292d713-c182-4c40-b0b6-56983b3facb7.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/3f/84/ad/2292d713-c182-4c40-b0b6-56983b3facb7/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/42/d8/17/e3f21631-a467-4f55-812e-53e13f2b306a/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/42/d8/17/e3f21631-a467-4f55-812e-53e13f2b306a/extensions/mutable-head/HEAD/content/r1/e3f21631-a467-4f55-812e-53e13f2b306a.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/42/d8/17/e3f21631-a467-4f55-812e-53e13f2b306a/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/43/8c/3c/f356f2d2-8fe4-46ae-9d8c-c2816a47a532/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/43/8c/3c/f356f2d2-8fe4-46ae-9d8c-c2816a47a532/extensions/mutable-head/HEAD/content/r1/f356f2d2-8fe4-46ae-9d8c-c2816a47a532.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/43/8c/3c/f356f2d2-8fe4-46ae-9d8c-c2816a47a532/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/45/95/4a/d3b8b5b9-5b50-4fe4-922f-43f71104429e/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/45/95/4a/d3b8b5b9-5b50-4fe4-922f-43f71104429e/extensions/mutable-head/HEAD/content/r1/d3b8b5b9-5b50-4fe4-922f-43f71104429e.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/45/95/4a/d3b8b5b9-5b50-4fe4-922f-43f71104429e/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/45/95/4a/d3b8b5b9-5b50-4fe4-922f-43f71104429e/extensions/mutable-head/revisions/r2: -------------------------------------------------------------------------------- 1 | r2 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/45/95/4a/d3b8b5b9-5b50-4fe4-922f-43f71104429e/extensions/mutable-head/revisions/r3: -------------------------------------------------------------------------------- 1 | r3 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/48/26/83/9b7daf70-4165-45d8-bb21-e497b916097a_c/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/48/26/83/9b7daf70-4165-45d8-bb21-e497b916097a_c/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/48/26/83/9b7daf70-4165-45d8-bb21-e497b916097a_c/extensions/mutable-head/revisions/r2: -------------------------------------------------------------------------------- 1 | r2 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/4a/ed/d7/1628eb7e-527b-4987-b5d2-9557bfa00fdb_ds/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/4a/ed/d7/1628eb7e-527b-4987-b5d2-9557bfa00fdb_ds/extensions/mutable-head/HEAD/content/r1/ds: -------------------------------------------------------------------------------- 1 | content -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/4a/ed/d7/1628eb7e-527b-4987-b5d2-9557bfa00fdb_ds/extensions/mutable-head/HEAD/content/r1/ds-description.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/4a/ed/d7/1628eb7e-527b-4987-b5d2-9557bfa00fdb_ds/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/4c/b5/ba/97e23cfd-dade-421e-8014-0b4dfeb527c2_x/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/4c/b5/ba/97e23cfd-dade-421e-8014-0b4dfeb527c2_x/extensions/mutable-head/HEAD/content/r1/x: -------------------------------------------------------------------------------- 1 | foo -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/4c/b5/ba/97e23cfd-dade-421e-8014-0b4dfeb527c2_x/extensions/mutable-head/HEAD/content/r1/x-description.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/4c/b5/ba/97e23cfd-dade-421e-8014-0b4dfeb527c2_x/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/4d/c2/55/f5b29056-8305-4e5d-9d72-4ed8306bfc66/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/4d/c2/55/f5b29056-8305-4e5d-9d72-4ed8306bfc66/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/50/ad/0a/74b1ac2f-8ced-4607-82f4-844d32457764/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/50/ad/0a/74b1ac2f-8ced-4607-82f4-844d32457764/extensions/mutable-head/HEAD/content/r1/74b1ac2f-8ced-4607-82f4-844d32457764.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/50/ad/0a/74b1ac2f-8ced-4607-82f4-844d32457764/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/51/10/06/63cd67ae-ed3c-4b08-9a64-e7af3172031a/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/51/10/06/63cd67ae-ed3c-4b08-9a64-e7af3172031a/extensions/mutable-head/HEAD/content/r1/63cd67ae-ed3c-4b08-9a64-e7af3172031a-description.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/51/10/06/63cd67ae-ed3c-4b08-9a64-e7af3172031a/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/52/06/1f/821f56ff-e476-484c-8da7-b30f416a1c2e_child-19/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/52/06/1f/821f56ff-e476-484c-8da7-b30f416a1c2e_child-19/extensions/mutable-head/HEAD/content/r1/child-19.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/52/06/1f/821f56ff-e476-484c-8da7-b30f416a1c2e_child-19/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/5a/0a/86/a932fc55-e2b0-41d0-a6ec-5dc345e53049/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/5a/0a/86/a932fc55-e2b0-41d0-a6ec-5dc345e53049/extensions/mutable-head/HEAD/content/r1/a932fc55-e2b0-41d0-a6ec-5dc345e53049.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/5a/0a/86/a932fc55-e2b0-41d0-a6ec-5dc345e53049/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/5b/b3/f1/4268ce79-4aef-4688-9499-adc7c94f2f37/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/5b/b3/f1/4268ce79-4aef-4688-9499-adc7c94f2f37/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/5d/7a/e0/7663344c-b6c9-4c0d-898a-2afaee994534/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/5d/7a/e0/7663344c-b6c9-4c0d-898a-2afaee994534/extensions/mutable-head/HEAD/content/r1/7663344c-b6c9-4c0d-898a-2afaee994534.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/5d/7a/e0/7663344c-b6c9-4c0d-898a-2afaee994534/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/5e/38/14/821f56ff-e476-484c-8da7-b30f416a1c2e_child-10/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/5e/38/14/821f56ff-e476-484c-8da7-b30f416a1c2e_child-10/extensions/mutable-head/HEAD/content/r1/child-10.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/5e/38/14/821f56ff-e476-484c-8da7-b30f416a1c2e_child-10/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/60/57/0f/8bc9546a-4295-43e2-8605-d243bc182572/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/60/57/0f/8bc9546a-4295-43e2-8605-d243bc182572/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/60/57/0f/8bc9546a-4295-43e2-8605-d243bc182572/extensions/mutable-head/revisions/r2: -------------------------------------------------------------------------------- 1 | r2 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/61/38/37/3fede0e4-d168-475a-9b51-edbed6f0d972/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/61/38/37/3fede0e4-d168-475a-9b51-edbed6f0d972/extensions/mutable-head/HEAD/content/r1/3fede0e4-d168-475a-9b51-edbed6f0d972: -------------------------------------------------------------------------------- 1 | <> a . -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/61/38/37/3fede0e4-d168-475a-9b51-edbed6f0d972/extensions/mutable-head/HEAD/content/r1/3fede0e4-d168-475a-9b51-edbed6f0d972-description.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/61/38/37/3fede0e4-d168-475a-9b51-edbed6f0d972/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/62/49/98/c8463261-fe17-45a3-85c9-0a2dae9ee0d0/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/62/49/98/c8463261-fe17-45a3-85c9-0a2dae9ee0d0/extensions/mutable-head/HEAD/content/r1/c8463261-fe17-45a3-85c9-0a2dae9ee0d0.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/62/49/98/c8463261-fe17-45a3-85c9-0a2dae9ee0d0/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/62/4a/1f/b05e8f6a-2f81-4976-97b9-9e885c01d75a/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/62/4a/1f/b05e8f6a-2f81-4976-97b9-9e885c01d75a/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/62/4a/1f/b05e8f6a-2f81-4976-97b9-9e885c01d75a/extensions/mutable-head/revisions/r2: -------------------------------------------------------------------------------- 1 | r2 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/63/31/59/21523393-bd34-401a-ac50-9f6cb505a2f7/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/63/31/59/21523393-bd34-401a-ac50-9f6cb505a2f7/extensions/mutable-head/HEAD/content/r1/21523393-bd34-401a-ac50-9f6cb505a2f7.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/63/31/59/21523393-bd34-401a-ac50-9f6cb505a2f7/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/63/ba/29/313c1d16-8dc0-433f-a031-1a9055023dc3/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/63/ba/29/313c1d16-8dc0-433f-a031-1a9055023dc3/v1/content/313c1d16-8dc0-433f-a031-1a9055023dc3: -------------------------------------------------------------------------------- 1 | v1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/63/ba/29/313c1d16-8dc0-433f-a031-1a9055023dc3/v1/content/313c1d16-8dc0-433f-a031-1a9055023dc3-description.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/63/ba/29/313c1d16-8dc0-433f-a031-1a9055023dc3/v2/content/313c1d16-8dc0-433f-a031-1a9055023dc3: -------------------------------------------------------------------------------- 1 | v2 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/63/ba/29/313c1d16-8dc0-433f-a031-1a9055023dc3/v3/content/313c1d16-8dc0-433f-a031-1a9055023dc3: -------------------------------------------------------------------------------- 1 | v3 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/65/60/b7/a5cb93a6-58c2-4616-9336-243ffdf71377_x/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/65/60/b7/a5cb93a6-58c2-4616-9336-243ffdf71377_x/extensions/mutable-head/HEAD/content/r1/x: -------------------------------------------------------------------------------- 1 | 123 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/65/60/b7/a5cb93a6-58c2-4616-9336-243ffdf71377_x/extensions/mutable-head/HEAD/content/r1/x-description.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/65/60/b7/a5cb93a6-58c2-4616-9336-243ffdf71377_x/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/66/35/36/14f3276d-2590-4883-9e50-876b22bb323b/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/66/35/36/14f3276d-2590-4883-9e50-876b22bb323b/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/68/35/c4/f2e74288-e306-4705-8946-abca369681a4/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/68/35/c4/f2e74288-e306-4705-8946-abca369681a4/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/68/35/c4/f2e74288-e306-4705-8946-abca369681a4/extensions/mutable-head/revisions/r2: -------------------------------------------------------------------------------- 1 | r2 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/68/35/c4/f2e74288-e306-4705-8946-abca369681a4/extensions/mutable-head/revisions/r3: -------------------------------------------------------------------------------- 1 | r3 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/69/14/f7/73873662-fa8b-42fe-8cda-dde70724d202/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/69/14/f7/73873662-fa8b-42fe-8cda-dde70724d202/extensions/mutable-head/HEAD/content/r1/73873662-fa8b-42fe-8cda-dde70724d202.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/69/14/f7/73873662-fa8b-42fe-8cda-dde70724d202/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/70/cf/4f/9da61df2-3424-416b-a3a1-a93cd10f6889/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/70/cf/4f/9da61df2-3424-416b-a3a1-a93cd10f6889/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/72/6e/b4/821f56ff-e476-484c-8da7-b30f416a1c2e_child-1/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/72/6e/b4/821f56ff-e476-484c-8da7-b30f416a1c2e_child-1/extensions/mutable-head/HEAD/content/r1/child-1.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/72/6e/b4/821f56ff-e476-484c-8da7-b30f416a1c2e_child-1/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/72/f1/fd/b6b7c28e-c261-466f-80ed-15a5399b4c26/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/72/f1/fd/b6b7c28e-c261-466f-80ed-15a5399b4c26/extensions/mutable-head/HEAD/content/r1/b6b7c28e-c261-466f-80ed-15a5399b4c26.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/72/f1/fd/b6b7c28e-c261-466f-80ed-15a5399b4c26/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/73/c1/fa/3141bf18-f488-447b-8c77-f696363cc6da/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/73/c1/fa/3141bf18-f488-447b-8c77-f696363cc6da/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/75/11/92/821f56ff-e476-484c-8da7-b30f416a1c2e_child-6/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/75/11/92/821f56ff-e476-484c-8da7-b30f416a1c2e_child-6/extensions/mutable-head/HEAD/content/r1/child-6.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/75/11/92/821f56ff-e476-484c-8da7-b30f416a1c2e_child-6/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/75/a2/8f/a415f625-bc9e-4556-b000-4790648736de/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/75/a2/8f/a415f625-bc9e-4556-b000-4790648736de/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/75/a4/89/84841381-3c53-4aca-bb04-60156e447822/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/75/a4/89/84841381-3c53-4aca-bb04-60156e447822/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/76/1e/90/5d3103be-a2f8-492f-af47-288f00fcaa70/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/76/1e/90/5d3103be-a2f8-492f-af47-288f00fcaa70/extensions/mutable-head/HEAD/content/r1/5d3103be-a2f8-492f-af47-288f00fcaa70: -------------------------------------------------------------------------------- 1 | binary content -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/76/1e/90/5d3103be-a2f8-492f-af47-288f00fcaa70/extensions/mutable-head/HEAD/content/r1/5d3103be-a2f8-492f-af47-288f00fcaa70-description.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/76/1e/90/5d3103be-a2f8-492f-af47-288f00fcaa70/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/7b/7a/6c/2a907922-8a7e-4236-ae31-b5f0526bbccf_ds1/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/7b/7a/6c/2a907922-8a7e-4236-ae31-b5f0526bbccf_ds1/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/7b/7a/6c/2a907922-8a7e-4236-ae31-b5f0526bbccf_ds1/extensions/mutable-head/revisions/r2: -------------------------------------------------------------------------------- 1 | r2 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/7b/95/87/5e27c0b4-45a0-415d-8ba4-ee0ee5eeeaad/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/7b/95/87/5e27c0b4-45a0-415d-8ba4-ee0ee5eeeaad/extensions/mutable-head/HEAD/content/r1/5e27c0b4-45a0-415d-8ba4-ee0ee5eeeaad.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/7b/95/87/5e27c0b4-45a0-415d-8ba4-ee0ee5eeeaad/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/7d/c1/ae/0e261406-b19d-4d31-84d9-6ceda50e9239/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/7d/c1/ae/0e261406-b19d-4d31-84d9-6ceda50e9239/extensions/mutable-head/HEAD/content/r1/0e261406-b19d-4d31-84d9-6ceda50e9239-description.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/7d/c1/ae/0e261406-b19d-4d31-84d9-6ceda50e9239/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/7f/c3/2b/48b51ed1-070a-427b-b51c-17c3ee2d6443/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/7f/c3/2b/48b51ed1-070a-427b-b51c-17c3ee2d6443/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/7f/c3/2b/48b51ed1-070a-427b-b51c-17c3ee2d6443/extensions/mutable-head/revisions/r2: -------------------------------------------------------------------------------- 1 | r2 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/82/78/93/76055145-36f8-405d-af6b-574d0eec1d27/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/83/42/b9/179ee05e-a632-4aff-95ae-c07b4375872a/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/83/42/b9/179ee05e-a632-4aff-95ae-c07b4375872a/extensions/mutable-head/HEAD/content/r1/179ee05e-a632-4aff-95ae-c07b4375872a: -------------------------------------------------------------------------------- 1 | <> a . -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/83/42/b9/179ee05e-a632-4aff-95ae-c07b4375872a/extensions/mutable-head/HEAD/content/r1/179ee05e-a632-4aff-95ae-c07b4375872a-description.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/83/42/b9/179ee05e-a632-4aff-95ae-c07b4375872a/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/84/08/68/2292d713-c182-4c40-b0b6-56983b3facb7_00_2/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/84/08/68/2292d713-c182-4c40-b0b6-56983b3facb7_00_2/extensions/mutable-head/HEAD/content/r1/2.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/84/08/68/2292d713-c182-4c40-b0b6-56983b3facb7_00_2/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/84/6b/0b/1f28c4fe-b856-4153-9e8e-2f15c18cfc42/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/84/6b/0b/1f28c4fe-b856-4153-9e8e-2f15c18cfc42/extensions/mutable-head/HEAD/content/r1/1f28c4fe-b856-4153-9e8e-2f15c18cfc42.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/84/6b/0b/1f28c4fe-b856-4153-9e8e-2f15c18cfc42/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/84/6f/d0/6c9d0a2b-ed8c-4e82-9588-be6fbb7cce66/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/84/da/4a/bc3d54db-e94a-4e8c-9d05-7af7e143b4b5/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/84/da/4a/bc3d54db-e94a-4e8c-9d05-7af7e143b4b5/extensions/mutable-head/HEAD/content/r1/bc3d54db-e94a-4e8c-9d05-7af7e143b4b5: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/84/da/4a/bc3d54db-e94a-4e8c-9d05-7af7e143b4b5/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/84/da/4a/bc3d54db-e94a-4e8c-9d05-7af7e143b4b5/extensions/mutable-head/revisions/r2: -------------------------------------------------------------------------------- 1 | r2 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/84/da/4a/bc3d54db-e94a-4e8c-9d05-7af7e143b4b5/extensions/mutable-head/revisions/r3: -------------------------------------------------------------------------------- 1 | r3 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/85/2d/6a/f20453cc-2c12-42c6-b3c7-f1b9a4300237/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/85/2d/6a/f20453cc-2c12-42c6-b3c7-f1b9a4300237/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/85/57/ed/821f56ff-e476-484c-8da7-b30f416a1c2e_child-13/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/85/57/ed/821f56ff-e476-484c-8da7-b30f416a1c2e_child-13/extensions/mutable-head/HEAD/content/r1/child-13.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/85/57/ed/821f56ff-e476-484c-8da7-b30f416a1c2e_child-13/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/86/0d/56/dbf6b1fd-f227-40da-aad1-93cbb95b50ca/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/86/0d/56/dbf6b1fd-f227-40da-aad1-93cbb95b50ca/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/86/0d/56/dbf6b1fd-f227-40da-aad1-93cbb95b50ca/extensions/mutable-head/revisions/r2: -------------------------------------------------------------------------------- 1 | r2 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/86/26/7a/2292d713-c182-4c40-b0b6-56983b3facb7_00_4/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/86/26/7a/2292d713-c182-4c40-b0b6-56983b3facb7_00_4/extensions/mutable-head/HEAD/content/r1/4.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/86/26/7a/2292d713-c182-4c40-b0b6-56983b3facb7_00_4/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/87/0a/20/974ecb74-8193-491b-bb38-515e62be9a6f/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/89/cf/8c/32bf84ed-ba9c-464d-b2a9-1f9c4577169c/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/89/cf/8c/32bf84ed-ba9c-464d-b2a9-1f9c4577169c/extensions/mutable-head/HEAD/content/r1/32bf84ed-ba9c-464d-b2a9-1f9c4577169c.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/89/cf/8c/32bf84ed-ba9c-464d-b2a9-1f9c4577169c/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/89/d8/ca/821f56ff-e476-484c-8da7-b30f416a1c2e_child-17/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/89/d8/ca/821f56ff-e476-484c-8da7-b30f416a1c2e_child-17/extensions/mutable-head/HEAD/content/r1/child-17.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/89/d8/ca/821f56ff-e476-484c-8da7-b30f416a1c2e_child-17/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/8a/f3/b6/cb6322a5-443e-40b8-b86a-32d0bab0d234/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/8d/06/05/54445a56-98dc-4251-aeaf-1a57fa0a4585/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/8e/a4/1a/1199fa04-39f1-4888-9fd8-d49dfa5459dc/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/8e/a4/1a/1199fa04-39f1-4888-9fd8-d49dfa5459dc/extensions/mutable-head/HEAD/content/r1/1199fa04-39f1-4888-9fd8-d49dfa5459dc.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/8e/a4/1a/1199fa04-39f1-4888-9fd8-d49dfa5459dc/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/8e/a4/1a/1199fa04-39f1-4888-9fd8-d49dfa5459dc/extensions/mutable-head/revisions/r2: -------------------------------------------------------------------------------- 1 | r2 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/8e/a4/1a/1199fa04-39f1-4888-9fd8-d49dfa5459dc/extensions/mutable-head/revisions/r3: -------------------------------------------------------------------------------- 1 | r3 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/93/40/9c/2a907922-8a7e-4236-ae31-b5f0526bbccf/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/93/40/9c/2a907922-8a7e-4236-ae31-b5f0526bbccf/extensions/mutable-head/HEAD/content/r1/2a907922-8a7e-4236-ae31-b5f0526bbccf.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/93/40/9c/2a907922-8a7e-4236-ae31-b5f0526bbccf/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/93/55/60/8ae988fa-0973-49c5-aefb-7d7a58255220_x/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/93/55/60/8ae988fa-0973-49c5-aefb-7d7a58255220_x/extensions/mutable-head/HEAD/content/r1/x: -------------------------------------------------------------------------------- 1 | some content -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/93/55/60/8ae988fa-0973-49c5-aefb-7d7a58255220_x/extensions/mutable-head/HEAD/content/r1/x-description.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/93/55/60/8ae988fa-0973-49c5-aefb-7d7a58255220_x/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/94/63/cd/0adae491-2e45-4052-97a5-af635549d9d6_binary/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/94/63/cd/0adae491-2e45-4052-97a5-af635549d9d6_binary/extensions/mutable-head/HEAD/content/r1/binary: -------------------------------------------------------------------------------- 1 | some-content -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/94/63/cd/0adae491-2e45-4052-97a5-af635549d9d6_binary/extensions/mutable-head/HEAD/content/r1/binary-description.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/94/63/cd/0adae491-2e45-4052-97a5-af635549d9d6_binary/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/95/74/18/2292d713-c182-4c40-b0b6-56983b3facb7_00_3/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/95/74/18/2292d713-c182-4c40-b0b6-56983b3facb7_00_3/extensions/mutable-head/HEAD/content/r1/3.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/95/74/18/2292d713-c182-4c40-b0b6-56983b3facb7_00_3/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/96/2c/db/3b828719-91c7-40d1-ac43-c512482f19ca/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/96/2c/db/3b828719-91c7-40d1-ac43-c512482f19ca/extensions/mutable-head/HEAD/content/r1/3b828719-91c7-40d1-ac43-c512482f19ca.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/96/2c/db/3b828719-91c7-40d1-ac43-c512482f19ca/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/97/e5/72/da981410-08eb-439d-b5be-902d4d68ef13_binary1/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/97/e5/72/da981410-08eb-439d-b5be-902d4d68ef13_binary1/extensions/mutable-head/HEAD/content/r1/binary1: -------------------------------------------------------------------------------- 1 | some test content -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/97/e5/72/da981410-08eb-439d-b5be-902d4d68ef13_binary1/extensions/mutable-head/HEAD/content/r1/binary1-description.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/97/e5/72/da981410-08eb-439d-b5be-902d4d68ef13_binary1/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/99/78/cc/f7566361-27c0-4bf3-9191-c8de733affd4/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/99/78/cc/f7566361-27c0-4bf3-9191-c8de733affd4/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/9c/85/7c/113c692d-90d8-4c18-b373-11f6cd784392/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/9c/85/7c/113c692d-90d8-4c18-b373-11f6cd784392/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/9e/99/af/821f56ff-e476-484c-8da7-b30f416a1c2e_child-2/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/9e/99/af/821f56ff-e476-484c-8da7-b30f416a1c2e_child-2/extensions/mutable-head/HEAD/content/r1/child-2.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/9e/99/af/821f56ff-e476-484c-8da7-b30f416a1c2e_child-2/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/a3/a5/c7/3df27c79-3969-46a5-b953-9cc684a2274f/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/a5/b6/12/821f56ff-e476-484c-8da7-b30f416a1c2e_child-14/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/a5/b6/12/821f56ff-e476-484c-8da7-b30f416a1c2e_child-14/extensions/mutable-head/HEAD/content/r1/child-14.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/a5/b6/12/821f56ff-e476-484c-8da7-b30f416a1c2e_child-14/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/aa/24/fd/821f56ff-e476-484c-8da7-b30f416a1c2e/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/aa/24/fd/821f56ff-e476-484c-8da7-b30f416a1c2e/extensions/mutable-head/HEAD/content/r1/821f56ff-e476-484c-8da7-b30f416a1c2e.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/aa/24/fd/821f56ff-e476-484c-8da7-b30f416a1c2e/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/ad/e7/ea/c5239a3f-aede-4f7d-b06b-bfffbb5db2e5/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/ad/e7/ea/c5239a3f-aede-4f7d-b06b-bfffbb5db2e5/extensions/mutable-head/HEAD/content/r1/c5239a3f-aede-4f7d-b06b-bfffbb5db2e5.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/ad/e7/ea/c5239a3f-aede-4f7d-b06b-bfffbb5db2e5/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/af/0c/5b/65373868-2b36-46b7-8f24-f517c0d97def/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/af/0c/5b/65373868-2b36-46b7-8f24-f517c0d97def/extensions/mutable-head/HEAD/content/r1/65373868-2b36-46b7-8f24-f517c0d97def.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/af/0c/5b/65373868-2b36-46b7-8f24-f517c0d97def/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/af/9d/a4/821f56ff-e476-484c-8da7-b30f416a1c2e_child-16/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/af/9d/a4/821f56ff-e476-484c-8da7-b30f416a1c2e_child-16/extensions/mutable-head/HEAD/content/r1/child-16.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/af/9d/a4/821f56ff-e476-484c-8da7-b30f416a1c2e_child-16/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/af/a7/78/f657b8de-012b-417a-8187-879873195a4f_x/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/af/a7/78/f657b8de-012b-417a-8187-879873195a4f_x/extensions/mutable-head/HEAD/content/r1/x: -------------------------------------------------------------------------------- 1 | some content -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/af/a7/78/f657b8de-012b-417a-8187-879873195a4f_x/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/af/a7/78/f657b8de-012b-417a-8187-879873195a4f_x/extensions/mutable-head/revisions/r2: -------------------------------------------------------------------------------- 1 | r2 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/af/e3/64/65d1cf37-a494-42c5-abe5-84ca8285aceb/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/af/e3/64/65d1cf37-a494-42c5-abe5-84ca8285aceb/v2/content/r1/65d1cf37-a494-42c5-abe5-84ca8285aceb: -------------------------------------------------------------------------------- 1 | This is some versioned content -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/af/e3/64/65d1cf37-a494-42c5-abe5-84ca8285aceb/v2/content/r1/65d1cf37-a494-42c5-abe5-84ca8285aceb-description.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/b0/f3/61/011a5fd3-b600-41d7-b66f-63f37c380102/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/b0/f3/61/011a5fd3-b600-41d7-b66f-63f37c380102/extensions/mutable-head/HEAD/content/r1/011a5fd3-b600-41d7-b66f-63f37c380102.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/b0/f3/61/011a5fd3-b600-41d7-b66f-63f37c380102/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/b1/85/16/f8bf1d00-a47e-4d92-9d5d-786e67d46904/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/b1/85/16/f8bf1d00-a47e-4d92-9d5d-786e67d46904/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/b3/14/f3/e8e76ff8-8b4b-463f-8808-f49ab69fda03/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/b3/14/f3/e8e76ff8-8b4b-463f-8808-f49ab69fda03/v2/content/r1/e8e76ff8-8b4b-463f-8808-f49ab69fda03: -------------------------------------------------------------------------------- 1 | binary content -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/b3/14/f3/e8e76ff8-8b4b-463f-8808-f49ab69fda03/v2/content/r1/e8e76ff8-8b4b-463f-8808-f49ab69fda03-description.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/b3/14/f3/e8e76ff8-8b4b-463f-8808-f49ab69fda03/v3/content/r1/e8e76ff8-8b4b-463f-8808-f49ab69fda03: -------------------------------------------------------------------------------- 1 | updated content -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/b5/94/79/0adae491-2e45-4052-97a5-af635549d9d6/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/b5/94/79/0adae491-2e45-4052-97a5-af635549d9d6/extensions/mutable-head/HEAD/content/r1/0adae491-2e45-4052-97a5-af635549d9d6.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/b5/94/79/0adae491-2e45-4052-97a5-af635549d9d6/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/b8/94/b6/c1042925-5764-40e1-a253-773035f3c47f/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/b8/94/b6/c1042925-5764-40e1-a253-773035f3c47f/extensions/mutable-head/HEAD/content/r1/c1042925-5764-40e1-a253-773035f3c47f.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/b8/94/b6/c1042925-5764-40e1-a253-773035f3c47f/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/b8/c8/e6/e96f0a4e-b59a-41b0-8570-e76a6d2d2f3a/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/b8/c8/e6/e96f0a4e-b59a-41b0-8570-e76a6d2d2f3a/extensions/mutable-head/HEAD/content/r1/e96f0a4e-b59a-41b0-8570-e76a6d2d2f3a.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/b8/c8/e6/e96f0a4e-b59a-41b0-8570-e76a6d2d2f3a/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/ba/13/8c/1b9157a5-0c60-4ae2-a3fc-4b6e1b6e02c3/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/ba/13/8c/1b9157a5-0c60-4ae2-a3fc-4b6e1b6e02c3/extensions/mutable-head/HEAD/content/r1/1b9157a5-0c60-4ae2-a3fc-4b6e1b6e02c3.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/ba/13/8c/1b9157a5-0c60-4ae2-a3fc-4b6e1b6e02c3/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/ba/67/f6/1cef6477-b12f-474a-a6d0-d830fd510439/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/ba/67/f6/1cef6477-b12f-474a-a6d0-d830fd510439/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/bb/10/b8/821f56ff-e476-484c-8da7-b30f416a1c2e_child-4/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/bb/10/b8/821f56ff-e476-484c-8da7-b30f416a1c2e_child-4/extensions/mutable-head/HEAD/content/r1/child-4.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/bb/10/b8/821f56ff-e476-484c-8da7-b30f416a1c2e_child-4/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/bb/21/f6/3b828719-91c7-40d1-ac43-c512482f19ca_ds1/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/bb/21/f6/3b828719-91c7-40d1-ac43-c512482f19ca_ds1/extensions/mutable-head/HEAD/content/r1/ds1: -------------------------------------------------------------------------------- 1 | foo -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/bb/21/f6/3b828719-91c7-40d1-ac43-c512482f19ca_ds1/extensions/mutable-head/HEAD/content/r1/ds1-description.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/bb/21/f6/3b828719-91c7-40d1-ac43-c512482f19ca_ds1/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/bc/7b/2c/0aab0dcb-d8a0-41ef-9fc5-bce03f5f7147/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/bc/7b/2c/0aab0dcb-d8a0-41ef-9fc5-bce03f5f7147/extensions/mutable-head/HEAD/content/r1/0aab0dcb-d8a0-41ef-9fc5-bce03f5f7147.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/bc/7b/2c/0aab0dcb-d8a0-41ef-9fc5-bce03f5f7147/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/bd/7f/54/1fcddb06-3910-435e-8334-0d6d0762090d/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/bd/7f/54/1fcddb06-3910-435e-8334-0d6d0762090d/v2/content/r1/1fcddb06-3910-435e-8334-0d6d0762090d: -------------------------------------------------------------------------------- 1 | binary content -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/bd/7f/54/1fcddb06-3910-435e-8334-0d6d0762090d/v2/content/r1/1fcddb06-3910-435e-8334-0d6d0762090d-description.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/c0/a7/1e/20a59092-98b6-43e6-820f-e0850da17e2c/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/c0/a7/1e/20a59092-98b6-43e6-820f-e0850da17e2c/extensions/mutable-head/HEAD/content/r1/20a59092-98b6-43e6-820f-e0850da17e2c.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/c0/a7/1e/20a59092-98b6-43e6-820f-e0850da17e2c/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/c0/b5/e8/5961801e-2a34-4a88-876a-478bc8d69dbd/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/c0/b5/e8/5961801e-2a34-4a88-876a-478bc8d69dbd/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/c0/f8/06/83061dfb-75ae-4d6f-83dd-0253ef107504/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/c0/f8/06/83061dfb-75ae-4d6f-83dd-0253ef107504/extensions/mutable-head/HEAD/content/r1/83061dfb-75ae-4d6f-83dd-0253ef107504.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/c0/f8/06/83061dfb-75ae-4d6f-83dd-0253ef107504/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/c1/3e/90/e10c4707-9134-4c4c-a379-0727345861f1/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/c1/3e/90/e10c4707-9134-4c4c-a379-0727345861f1/extensions/mutable-head/HEAD/content/r1/e10c4707-9134-4c4c-a379-0727345861f1: -------------------------------------------------------------------------------- 1 | <> a . -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/c1/3e/90/e10c4707-9134-4c4c-a379-0727345861f1/extensions/mutable-head/HEAD/content/r1/e10c4707-9134-4c4c-a379-0727345861f1-description.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/c1/3e/90/e10c4707-9134-4c4c-a379-0727345861f1/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/c2/1a/6d/584fd17c-2039-4cf0-9466-805c11714b26/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/c3/3b/95/b028b070-a690-4511-af2e-c2acb3569f7e/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/c3/3b/95/b028b070-a690-4511-af2e-c2acb3569f7e/extensions/mutable-head/HEAD/content/r1/b028b070-a690-4511-af2e-c2acb3569f7e.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/c3/3b/95/b028b070-a690-4511-af2e-c2acb3569f7e/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/c3/45/b5/821f56ff-e476-484c-8da7-b30f416a1c2e_child-0/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/c3/45/b5/821f56ff-e476-484c-8da7-b30f416a1c2e_child-0/extensions/mutable-head/HEAD/content/r1/child-0.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/c3/45/b5/821f56ff-e476-484c-8da7-b30f416a1c2e_child-0/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/c3/a0/ad/f90a0226-b02d-4268-9b82-93957e42cc80/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/c3/c9/31/0736cf7c-8294-47ad-8127-3483379b9b50/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/c3/c9/31/0736cf7c-8294-47ad-8127-3483379b9b50/extensions/mutable-head/HEAD/content/r1/0736cf7c-8294-47ad-8127-3483379b9b50.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/c3/c9/31/0736cf7c-8294-47ad-8127-3483379b9b50/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/c6/9b/22/769b7b7c-c65b-4968-8271-cca8692fe905/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/c6/9b/22/769b7b7c-c65b-4968-8271-cca8692fe905/extensions/mutable-head/HEAD/content/r1/769b7b7c-c65b-4968-8271-cca8692fe905.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/c6/9b/22/769b7b7c-c65b-4968-8271-cca8692fe905/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/c7/82/48/7f4711a8-e79a-4471-90ab-8cceebbb1d72/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/c7/82/48/7f4711a8-e79a-4471-90ab-8cceebbb1d72/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/c9/d3/3e/7e78d9a4-c0df-4009-960c-13ee8c02d543/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/c9/d3/3e/7e78d9a4-c0df-4009-960c-13ee8c02d543/extensions/mutable-head/HEAD/content/r1/7e78d9a4-c0df-4009-960c-13ee8c02d543: -------------------------------------------------------------------------------- 1 | xyz -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/c9/d3/3e/7e78d9a4-c0df-4009-960c-13ee8c02d543/extensions/mutable-head/HEAD/content/r1/7e78d9a4-c0df-4009-960c-13ee8c02d543-description.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/c9/d3/3e/7e78d9a4-c0df-4009-960c-13ee8c02d543/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/ca/11/9c/a3a7adc3-8f64-4903-af30-10cd4879f907_x/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/ca/11/9c/a3a7adc3-8f64-4903-af30-10cd4879f907_x/extensions/mutable-head/HEAD/content/r1/x: -------------------------------------------------------------------------------- 1 | some content -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/ca/11/9c/a3a7adc3-8f64-4903-af30-10cd4879f907_x/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/ca/11/9c/a3a7adc3-8f64-4903-af30-10cd4879f907_x/extensions/mutable-head/revisions/r2: -------------------------------------------------------------------------------- 1 | r2 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/cc/3d/97/0aab0dcb-d8a0-41ef-9fc5-bce03f5f7147_x/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/cc/3d/97/0aab0dcb-d8a0-41ef-9fc5-bce03f5f7147_x/extensions/mutable-head/HEAD/content/r1/x: -------------------------------------------------------------------------------- 1 | OggS -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/cc/3d/97/0aab0dcb-d8a0-41ef-9fc5-bce03f5f7147_x/extensions/mutable-head/HEAD/content/r1/x-description.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/cc/3d/97/0aab0dcb-d8a0-41ef-9fc5-bce03f5f7147_x/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/cf/66/99/some_prefix%3aa55236bc-2793-493a-96a8-69c91bfed296_anotherPrefix%3aa35a2f53-1853-4483-8fdc-54440f1c1d19/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/cf/66/99/some_prefix%3aa55236bc-2793-493a-96a8-69c91bfed296_anotherPrefix%3aa35a2f53-1853-4483-8fdc-54440f1c1d19/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/d0/d3/74/ddf62d41-d04c-47f6-b0c4-d7691daa3554/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/d0/d3/74/ddf62d41-d04c-47f6-b0c4-d7691daa3554/v2/content/child1: -------------------------------------------------------------------------------- 1 | v2 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/d0/d3/74/ddf62d41-d04c-47f6-b0c4-d7691daa3554/v2/content/child1-description.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/d0/d3/74/ddf62d41-d04c-47f6-b0c4-d7691daa3554/v3/content/child2: -------------------------------------------------------------------------------- 1 | v3 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/d0/d3/74/ddf62d41-d04c-47f6-b0c4-d7691daa3554/v4/content/child1: -------------------------------------------------------------------------------- 1 | v4 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/d1/95/06/fe79ce90-616e-4615-8eec-76fb36da560a/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/d1/a1/65/28417a80-7c21-4477-98c7-964a77cb395e/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/d1/a1/65/28417a80-7c21-4477-98c7-964a77cb395e/extensions/mutable-head/HEAD/content/r1/28417a80-7c21-4477-98c7-964a77cb395e: -------------------------------------------------------------------------------- 1 | binary content -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/d1/a1/65/28417a80-7c21-4477-98c7-964a77cb395e/extensions/mutable-head/HEAD/content/r1/28417a80-7c21-4477-98c7-964a77cb395e-description.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/d1/a1/65/28417a80-7c21-4477-98c7-964a77cb395e/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/d3/08/3d/854607ba-05b5-4b8c-a71e-cd652ca89866/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/d3/08/3d/854607ba-05b5-4b8c-a71e-cd652ca89866/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/d5/cd/fe/2ddad2ed-2192-4706-b2ef-09912df0b74e/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/d5/cd/fe/2ddad2ed-2192-4706-b2ef-09912df0b74e/extensions/mutable-head/HEAD/content/r1/2ddad2ed-2192-4706-b2ef-09912df0b74e.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/d5/cd/fe/2ddad2ed-2192-4706-b2ef-09912df0b74e/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/d8/2d/96/fe18d65e-336f-47c7-8e14-3d2dd5a2437b/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/d8/2d/96/fe18d65e-336f-47c7-8e14-3d2dd5a2437b/extensions/mutable-head/HEAD/content/r1/fe18d65e-336f-47c7-8e14-3d2dd5a2437b.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/d8/2d/96/fe18d65e-336f-47c7-8e14-3d2dd5a2437b/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/db/78/03/07cdeccc-9d31-45b6-abed-88e0f8ad2209/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/db/78/03/07cdeccc-9d31-45b6-abed-88e0f8ad2209/extensions/mutable-head/HEAD/content/r1/07cdeccc-9d31-45b6-abed-88e0f8ad2209.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/db/78/03/07cdeccc-9d31-45b6-abed-88e0f8ad2209/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/dd/e8/9e/a4415ff4-a7e5-4857-9237-6ec154b6f9f2/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/dd/e8/9e/a4415ff4-a7e5-4857-9237-6ec154b6f9f2/extensions/mutable-head/HEAD/content/r1/a4415ff4-a7e5-4857-9237-6ec154b6f9f2-description.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/dd/e8/9e/a4415ff4-a7e5-4857-9237-6ec154b6f9f2/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/de/c6/8b/43ea410d-abe9-4392-90a0-5fa0636f6c01/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/df/85/88/97e23cfd-dade-421e-8014-0b4dfeb527c2/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/df/85/88/97e23cfd-dade-421e-8014-0b4dfeb527c2/extensions/mutable-head/HEAD/content/r1/97e23cfd-dade-421e-8014-0b4dfeb527c2.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/df/85/88/97e23cfd-dade-421e-8014-0b4dfeb527c2/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/e0/b0/13/c8e48eb4-f968-460f-9602-b0013cdb1aa0_x/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/e0/b0/13/c8e48eb4-f968-460f-9602-b0013cdb1aa0_x/extensions/mutable-head/HEAD/content/r1/x: -------------------------------------------------------------------------------- 1 | some content -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/e0/b0/13/c8e48eb4-f968-460f-9602-b0013cdb1aa0_x/extensions/mutable-head/HEAD/content/r1/x-description.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/e0/b0/13/c8e48eb4-f968-460f-9602-b0013cdb1aa0_x/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/e2/e0/67/58e46986-666f-4892-8e51-a0e865664627/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/e5/8d/c6/b99bb8cf-6899-4c6d-a692-c59a451f7b15_ds1/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/e5/8d/c6/b99bb8cf-6899-4c6d-a692-c59a451f7b15_ds1/extensions/mutable-head/HEAD/content/r1/ds1-description.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/e5/8d/c6/b99bb8cf-6899-4c6d-a692-c59a451f7b15_ds1/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/e7/a1/ad/123b0d76-8fd4-4355-b86a-338e68aaf248/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/e7/a1/ad/123b0d76-8fd4-4355-b86a-338e68aaf248/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/e9/ea/d1/32f80142-0149-4df3-a83a-6046d48cfcdc/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/e9/ea/d1/32f80142-0149-4df3-a83a-6046d48cfcdc/extensions/mutable-head/HEAD/content/r1/32f80142-0149-4df3-a83a-6046d48cfcdc.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/e9/ea/d1/32f80142-0149-4df3-a83a-6046d48cfcdc/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/eb/9f/e9/545209bb-db1a-4770-b89d-f7593c16189c/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/eb/9f/e9/545209bb-db1a-4770-b89d-f7593c16189c/extensions/mutable-head/HEAD/content/r1/545209bb-db1a-4770-b89d-f7593c16189c.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/eb/9f/e9/545209bb-db1a-4770-b89d-f7593c16189c/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/eb/ee/88/e9914641-4942-4bc7-afff-daa734d26c4b/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/eb/ee/88/e9914641-4942-4bc7-afff-daa734d26c4b/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/ed/a7/1b/c00b09bb-f617-433f-90e2-d11834702ff0/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/ed/a7/1b/c00b09bb-f617-433f-90e2-d11834702ff0/extensions/mutable-head/HEAD/content/r1/c00b09bb-f617-433f-90e2-d11834702ff0.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/ed/a7/1b/c00b09bb-f617-433f-90e2-d11834702ff0/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/ee/12/0c/381ef38f-214f-4cc2-8e29-1c208bfd61af/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/ee/12/0c/381ef38f-214f-4cc2-8e29-1c208bfd61af/extensions/mutable-head/HEAD/content/r1/381ef38f-214f-4cc2-8e29-1c208bfd61af.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/ee/12/0c/381ef38f-214f-4cc2-8e29-1c208bfd61af/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/ef/d0/11/85ceeeab-c072-4afe-ab36-7dbc7e4fdde2/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/ef/d0/11/85ceeeab-c072-4afe-ab36-7dbc7e4fdde2/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/ef/d0/11/85ceeeab-c072-4afe-ab36-7dbc7e4fdde2/extensions/mutable-head/revisions/r2: -------------------------------------------------------------------------------- 1 | r2 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/extension-layout-n-tuple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/good-storage-roots/fedora-root/extension-layout-n-tuple.json -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/f0/6a/39/0736cf7c-8294-47ad-8127-3483379b9b50_x/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/f0/6a/39/0736cf7c-8294-47ad-8127-3483379b9b50_x/extensions/mutable-head/HEAD/content/r1/x.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/f0/6a/39/0736cf7c-8294-47ad-8127-3483379b9b50_x/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/f0/78/38/1a42d362-482d-43c8-9d66-c0e61dc90bfd/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/f0/78/38/1a42d362-482d-43c8-9d66-c0e61dc90bfd/extensions/mutable-head/HEAD/content/r1/1a42d362-482d-43c8-9d66-c0e61dc90bfd.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/f0/78/38/1a42d362-482d-43c8-9d66-c0e61dc90bfd/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/f0/fc/4f/some_prefix%3a53b0c8f2-5144-493e-9a6f-aa7c19f1ad45/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/f0/fc/4f/some_prefix%3a53b0c8f2-5144-493e-9a6f-aa7c19f1ad45/extensions/mutable-head/HEAD/content/r1/some_prefix:53b0c8f2-5144-493e-9a6f-aa7c19f1ad45.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/f0/fc/4f/some_prefix%3a53b0c8f2-5144-493e-9a6f-aa7c19f1ad45/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/f6/e5/55/26ab3459-2625-4c0a-96fc-6701b5a425be/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/f6/e5/55/26ab3459-2625-4c0a-96fc-6701b5a425be/extensions/mutable-head/HEAD/content/r1/26ab3459-2625-4c0a-96fc-6701b5a425be.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/f6/e5/55/26ab3459-2625-4c0a-96fc-6701b5a425be/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/fa/73/5b/73873662-fa8b-42fe-8cda-dde70724d202_c/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/fa/73/5b/73873662-fa8b-42fe-8cda-dde70724d202_c/extensions/mutable-head/HEAD/content/r1/c.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/fa/73/5b/73873662-fa8b-42fe-8cda-dde70724d202_c/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/fb/d8/61/1ac255b7-4103-4d0e-a48d-fa02ac5c41c0/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/fc/32/5b/3f2afa5f-537e-4bfc-873e-94a7d05c6396/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/fc/32/5b/3f2afa5f-537e-4bfc-873e-94a7d05c6396/extensions/mutable-head/HEAD/content/r1/3f2afa5f-537e-4bfc-873e-94a7d05c6396.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/fc/32/5b/3f2afa5f-537e-4bfc-873e-94a7d05c6396/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/fe/fb/9f/05ff0fc5-0a2f-4e5d-8d83-59fbe34b3dea/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/fe/fb/9f/05ff0fc5-0a2f-4e5d-8d83-59fbe34b3dea/extensions/mutable-head/revisions/r1: -------------------------------------------------------------------------------- 1 | r1 -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/fedora-root/ocfl_1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/good-storage-roots/fedora-root/ocfl_1.0.txt -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/reg-extension-dir-root/0=ocfl_1.0: -------------------------------------------------------------------------------- 1 | ocfl_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/reg-extension-dir-root/a47/817/83d/cec/ark%3a123%2fabc/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/reg-extension-dir-root/a47/817/83d/cec/ark%3a123%2fabc/v1/content/a_file.txt: -------------------------------------------------------------------------------- 1 | Hello! I am a file. 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/reg-extension-dir-root/ocfl_layout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/good-storage-roots/reg-extension-dir-root/ocfl_layout.json -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/root_ext0003_ex1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/good-storage-roots/root_ext0003_ex1.zip -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/root_ext0003_ex2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/good-storage-roots/root_ext0003_ex2.zip -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/simple-root/0=ocfl_1.0: -------------------------------------------------------------------------------- 1 | ocfl_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/simple-root/ark%3A%2F12345%2Fbcd987/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/simple-root/ark%3A%2F12345%2Fbcd987/v1/content/empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/simple-root/ark%3A123%2Fabc/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/simple-root/ark%3A123%2Fabc/inventory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extra_fixtures/good-storage-roots/simple-root/ark%3A123%2Fabc/inventory.json -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/simple-root/ark%3A123%2Fabc/v1/content/a_file.txt: -------------------------------------------------------------------------------- 1 | Hello! I am a file. 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/simple-root/http%3A%2F%2Fexample.org%2Fminimal_mixed_digests/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/simple-root/http%3A%2F%2Fexample.org%2Fminimal_mixed_digests/v1/content/a_file.txt: -------------------------------------------------------------------------------- 1 | Hello! I am a file. 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/unreg-extension-dir-root/0=ocfl_1.0: -------------------------------------------------------------------------------- 1 | ocfl_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/unreg-extension-dir-root/ark%3A123%2Fabc/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/unreg-extension-dir-root/ark%3A123%2Fabc/v1/content/a_file.txt: -------------------------------------------------------------------------------- 1 | Hello! I am a file. 2 | -------------------------------------------------------------------------------- /extra_fixtures/good-storage-roots/unreg-extension-dir-root/extensions/unregistered-extension-name/config.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /extra_fixtures/misc/multiple_declarations/0=ocfl_1.0: -------------------------------------------------------------------------------- 1 | ocfl_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/misc/multiple_declarations/0=ocfl_object_1.0: -------------------------------------------------------------------------------- 1 | ocfl_object_1.0 2 | -------------------------------------------------------------------------------- /extra_fixtures/misc/unknown_declaration/0=something_1.0: -------------------------------------------------------------------------------- 1 | something_1.0 -------------------------------------------------------------------------------- /extract_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/extract_codes.py -------------------------------------------------------------------------------- /ocfl-object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/ocfl-object.py -------------------------------------------------------------------------------- /ocfl-root.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/ocfl-root.py -------------------------------------------------------------------------------- /ocfl-sidecar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/ocfl-sidecar.py -------------------------------------------------------------------------------- /ocfl-validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/ocfl-validate.py -------------------------------------------------------------------------------- /ocfl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/ocfl/__init__.py -------------------------------------------------------------------------------- /ocfl/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/ocfl/_version.py -------------------------------------------------------------------------------- /ocfl/bagger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/ocfl/bagger.py -------------------------------------------------------------------------------- /ocfl/command_line_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/ocfl/command_line_utils.py -------------------------------------------------------------------------------- /ocfl/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/ocfl/constants.py -------------------------------------------------------------------------------- /ocfl/data/validation-errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/ocfl/data/validation-errors.json -------------------------------------------------------------------------------- /ocfl/digest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/ocfl/digest.py -------------------------------------------------------------------------------- /ocfl/inventory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/ocfl/inventory.py -------------------------------------------------------------------------------- /ocfl/inventory_validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/ocfl/inventory_validator.py -------------------------------------------------------------------------------- /ocfl/layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/ocfl/layout.py -------------------------------------------------------------------------------- /ocfl/layout_0002_flat_direct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/ocfl/layout_0002_flat_direct.py -------------------------------------------------------------------------------- /ocfl/layout_0003_hash_and_id_n_tuple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/ocfl/layout_0003_hash_and_id_n_tuple.py -------------------------------------------------------------------------------- /ocfl/layout_nnnn_flat_quoted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/ocfl/layout_nnnn_flat_quoted.py -------------------------------------------------------------------------------- /ocfl/layout_nnnn_tuple_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/ocfl/layout_nnnn_tuple_tree.py -------------------------------------------------------------------------------- /ocfl/layout_nnnn_uuid_quadtree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/ocfl/layout_nnnn_uuid_quadtree.py -------------------------------------------------------------------------------- /ocfl/layout_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/ocfl/layout_registry.py -------------------------------------------------------------------------------- /ocfl/namaste.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/ocfl/namaste.py -------------------------------------------------------------------------------- /ocfl/new_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/ocfl/new_version.py -------------------------------------------------------------------------------- /ocfl/object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/ocfl/object.py -------------------------------------------------------------------------------- /ocfl/object_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/ocfl/object_utils.py -------------------------------------------------------------------------------- /ocfl/pyfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/ocfl/pyfs.py -------------------------------------------------------------------------------- /ocfl/storage_root.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/ocfl/storage_root.py -------------------------------------------------------------------------------- /ocfl/validation_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/ocfl/validation_logger.py -------------------------------------------------------------------------------- /ocfl/validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/ocfl/validator.py -------------------------------------------------------------------------------- /ocfl/version_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/ocfl/version_metadata.py -------------------------------------------------------------------------------- /ocfl/w3c_datetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/ocfl/w3c_datetime.py -------------------------------------------------------------------------------- /pypi_upload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/pypi_upload.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/run_coverage.sh -------------------------------------------------------------------------------- /testlib: -------------------------------------------------------------------------------- 1 | tests/testlib -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | """ocfl-py unit tests.""" 2 | -------------------------------------------------------------------------------- /tests/test_bagger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/test_bagger.py -------------------------------------------------------------------------------- /tests/test_command_line_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/test_command_line_utils.py -------------------------------------------------------------------------------- /tests/test_demo_build_spec_v1_0_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/test_demo_build_spec_v1_0_examples.py -------------------------------------------------------------------------------- /tests/test_demo_build_spec_v1_1_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/test_demo_build_spec_v1_1_examples.py -------------------------------------------------------------------------------- /tests/test_demo_ocfl_object_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/test_demo_ocfl_object_script.py -------------------------------------------------------------------------------- /tests/test_demo_ocfl_root_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/test_demo_ocfl_root_script.py -------------------------------------------------------------------------------- /tests/test_demo_ocfl_sidecar_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/test_demo_ocfl_sidecar_script.py -------------------------------------------------------------------------------- /tests/test_demo_ocfl_validate_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/test_demo_ocfl_validate_script.py -------------------------------------------------------------------------------- /tests/test_demo_using_bagit_bags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/test_demo_using_bagit_bags.py -------------------------------------------------------------------------------- /tests/test_digest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/test_digest.py -------------------------------------------------------------------------------- /tests/test_inventory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/test_inventory.py -------------------------------------------------------------------------------- /tests/test_inventory_validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/test_inventory_validator.py -------------------------------------------------------------------------------- /tests/test_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/test_layout.py -------------------------------------------------------------------------------- /tests/test_layout_0002_flat_direct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/test_layout_0002_flat_direct.py -------------------------------------------------------------------------------- /tests/test_layout_0003-hash-and-id-n-tuple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/test_layout_0003-hash-and-id-n-tuple.py -------------------------------------------------------------------------------- /tests/test_layout_nnnn_flat_quoted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/test_layout_nnnn_flat_quoted.py -------------------------------------------------------------------------------- /tests/test_layout_nnnn_tuple_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/test_layout_nnnn_tuple_tree.py -------------------------------------------------------------------------------- /tests/test_layout_nnnn_uuid_quadtree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/test_layout_nnnn_uuid_quadtree.py -------------------------------------------------------------------------------- /tests/test_layout_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/test_layout_registry.py -------------------------------------------------------------------------------- /tests/test_namaste.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/test_namaste.py -------------------------------------------------------------------------------- /tests/test_new_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/test_new_version.py -------------------------------------------------------------------------------- /tests/test_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/test_object.py -------------------------------------------------------------------------------- /tests/test_object_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/test_object_utils.py -------------------------------------------------------------------------------- /tests/test_storage_root.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/test_storage_root.py -------------------------------------------------------------------------------- /tests/test_validation_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/test_validation_logger.py -------------------------------------------------------------------------------- /tests/test_validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/test_validator.py -------------------------------------------------------------------------------- /tests/test_version_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/test_version_metadata.py -------------------------------------------------------------------------------- /tests/test_w3c_datetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/test_w3c_datetime.py -------------------------------------------------------------------------------- /tests/testdata/bags/bag_no_metadata/bag-info.txt: -------------------------------------------------------------------------------- 1 | Payload-Oxum: 909316.2 2 | -------------------------------------------------------------------------------- /tests/testdata/bags/bag_no_metadata/bagit.txt: -------------------------------------------------------------------------------- 1 | BagIt-Version: 0.97 2 | Tag-File-Character-Encoding: UTF-8 3 | -------------------------------------------------------------------------------- /tests/testdata/bags/bag_no_metadata/data/my_content/dracula.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/testdata/bags/bag_no_metadata/data/my_content/dracula.txt -------------------------------------------------------------------------------- /tests/testdata/bags/bag_no_metadata/data/my_content/poe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/testdata/bags/bag_no_metadata/data/my_content/poe.txt -------------------------------------------------------------------------------- /tests/testdata/bags/bag_no_metadata/manifest-sha512.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/testdata/bags/bag_no_metadata/manifest-sha512.txt -------------------------------------------------------------------------------- /tests/testdata/bags/bag_no_metadata/tagmanifest-sha512.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/testdata/bags/bag_no_metadata/tagmanifest-sha512.txt -------------------------------------------------------------------------------- /tests/testdata/bags/invalid_bag/bag-info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/testdata/bags/invalid_bag/bag-info.txt -------------------------------------------------------------------------------- /tests/testdata/bags/invalid_bag/bagit.txt: -------------------------------------------------------------------------------- 1 | BagIt-Version: 0.97 2 | Tag-File-Character-Encoding: UTF-8 3 | -------------------------------------------------------------------------------- /tests/testdata/bags/invalid_bag/data/my_content/dracula.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/testdata/bags/invalid_bag/data/my_content/dracula.txt -------------------------------------------------------------------------------- /tests/testdata/bags/invalid_bag/data/my_content/poe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/testdata/bags/invalid_bag/data/my_content/poe.txt -------------------------------------------------------------------------------- /tests/testdata/bags/invalid_bag/manifest-sha512.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/testdata/bags/invalid_bag/manifest-sha512.txt -------------------------------------------------------------------------------- /tests/testdata/bags/invalid_bag/tagmanifest-sha512.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/testdata/bags/invalid_bag/tagmanifest-sha512.txt -------------------------------------------------------------------------------- /tests/testdata/bags/uaa_v1/bag-info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/testdata/bags/uaa_v1/bag-info.txt -------------------------------------------------------------------------------- /tests/testdata/bags/uaa_v1/bagit.txt: -------------------------------------------------------------------------------- 1 | BagIt-Version: 0.97 2 | Tag-File-Character-Encoding: UTF-8 3 | -------------------------------------------------------------------------------- /tests/testdata/bags/uaa_v1/data/my_content/dracula.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/testdata/bags/uaa_v1/data/my_content/dracula.txt -------------------------------------------------------------------------------- /tests/testdata/bags/uaa_v1/data/my_content/poe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/testdata/bags/uaa_v1/data/my_content/poe.txt -------------------------------------------------------------------------------- /tests/testdata/bags/uaa_v1/manifest-sha512.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/testdata/bags/uaa_v1/manifest-sha512.txt -------------------------------------------------------------------------------- /tests/testdata/bags/uaa_v1/tagmanifest-sha512.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/testdata/bags/uaa_v1/tagmanifest-sha512.txt -------------------------------------------------------------------------------- /tests/testdata/bags/uaa_v2/bag-info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/testdata/bags/uaa_v2/bag-info.txt -------------------------------------------------------------------------------- /tests/testdata/bags/uaa_v2/bagit.txt: -------------------------------------------------------------------------------- 1 | BagIt-Version: 0.97 2 | Tag-File-Character-Encoding: UTF-8 3 | -------------------------------------------------------------------------------- /tests/testdata/bags/uaa_v2/data/my_content/a_second_copy_of_dracula.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/testdata/bags/uaa_v2/data/my_content/a_second_copy_of_dracula.txt -------------------------------------------------------------------------------- /tests/testdata/bags/uaa_v2/data/my_content/dracula.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/testdata/bags/uaa_v2/data/my_content/dracula.txt -------------------------------------------------------------------------------- /tests/testdata/bags/uaa_v2/data/my_content/poe-nevermore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/testdata/bags/uaa_v2/data/my_content/poe-nevermore.txt -------------------------------------------------------------------------------- /tests/testdata/bags/uaa_v2/manifest-sha512.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/testdata/bags/uaa_v2/manifest-sha512.txt -------------------------------------------------------------------------------- /tests/testdata/bags/uaa_v2/tagmanifest-sha512.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/testdata/bags/uaa_v2/tagmanifest-sha512.txt -------------------------------------------------------------------------------- /tests/testdata/bags/uaa_v3/bag-info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/testdata/bags/uaa_v3/bag-info.txt -------------------------------------------------------------------------------- /tests/testdata/bags/uaa_v3/bagit.txt: -------------------------------------------------------------------------------- 1 | BagIt-Version: 0.97 2 | Tag-File-Character-Encoding: UTF-8 3 | -------------------------------------------------------------------------------- /tests/testdata/bags/uaa_v3/data/my_content/dracula.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/testdata/bags/uaa_v3/data/my_content/dracula.txt -------------------------------------------------------------------------------- /tests/testdata/bags/uaa_v3/data/my_content/poe-nevermore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/testdata/bags/uaa_v3/data/my_content/poe-nevermore.txt -------------------------------------------------------------------------------- /tests/testdata/bags/uaa_v3/manifest-sha512.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/testdata/bags/uaa_v3/manifest-sha512.txt -------------------------------------------------------------------------------- /tests/testdata/bags/uaa_v3/tagmanifest-sha512.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/testdata/bags/uaa_v3/tagmanifest-sha512.txt -------------------------------------------------------------------------------- /tests/testdata/bags/uaa_v4/bag-info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/testdata/bags/uaa_v4/bag-info.txt -------------------------------------------------------------------------------- /tests/testdata/bags/uaa_v4/bagit.txt: -------------------------------------------------------------------------------- 1 | BagIt-Version: 0.97 2 | Tag-File-Character-Encoding: UTF-8 3 | -------------------------------------------------------------------------------- /tests/testdata/bags/uaa_v4/data/my_content/dracula.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/testdata/bags/uaa_v4/data/my_content/dracula.txt -------------------------------------------------------------------------------- /tests/testdata/bags/uaa_v4/data/my_content/dunwich.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/testdata/bags/uaa_v4/data/my_content/dunwich.txt -------------------------------------------------------------------------------- /tests/testdata/bags/uaa_v4/data/my_content/poe-nevermore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/testdata/bags/uaa_v4/data/my_content/poe-nevermore.txt -------------------------------------------------------------------------------- /tests/testdata/bags/uaa_v4/manifest-sha512.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/testdata/bags/uaa_v4/manifest-sha512.txt -------------------------------------------------------------------------------- /tests/testdata/bags/uaa_v4/tagmanifest-sha512.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/testdata/bags/uaa_v4/tagmanifest-sha512.txt -------------------------------------------------------------------------------- /tests/testdata/files/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testdata/files/hello_out_there.txt: -------------------------------------------------------------------------------- 1 | Hello out there\! 2 | -------------------------------------------------------------------------------- /tests/testdata/inventories/inv_1_good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/testdata/inventories/inv_1_good.json -------------------------------------------------------------------------------- /tests/testdata/inventory_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/testdata/inventory_schema.json -------------------------------------------------------------------------------- /tests/testdata/namaste/0=bison: -------------------------------------------------------------------------------- 1 | not a bison 2 | -------------------------------------------------------------------------------- /tests/testdata/namaste/0=frog: -------------------------------------------------------------------------------- 1 | frog 2 | -------------------------------------------------------------------------------- /tests/testdata/namaste/0=snake: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testdata/namaste/1=red: -------------------------------------------------------------------------------- 1 | red 2 | -------------------------------------------------------------------------------- /tests/testlib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/testlib/__init__.py -------------------------------------------------------------------------------- /tests/testlib/demo_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimeon/ocfl-py/HEAD/tests/testlib/demo_unittest.py --------------------------------------------------------------------------------