├── .dockerignore ├── .github ├── ISSUE_TEMPLATE │ ├── add-a-new-ontology-to-the-ebi-ols-instance-.md │ ├── bug_report.md │ ├── feature_request.md │ ├── incorrect-or-insufficient-documentation-.md │ ├── ols-down-.md │ └── report-an-ontology-that-is-outdated-on-ols.md ├── SECURITY_SCANNING.md ├── copilot-instructions.md └── workflows │ ├── claude.yml │ ├── docker.yml │ ├── security-codeql.yml │ ├── security-container-scan.yml │ ├── security-secrets.yml │ └── test.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── New OLS ontology request.xlsx ├── README.md ├── apitester4 ├── .vscode │ ├── launch.json │ └── settings.json ├── Dockerfile ├── ontologies.json ├── pom.xml └── src │ └── main │ └── java │ └── uk │ └── ac │ └── ebi │ └── ols │ └── apitester │ ├── App.java │ ├── Ols4ApiTester.java │ └── RecursiveJsonDiff.java ├── backend ├── .dockerignore ├── .gitignore ├── Dockerfile ├── README.md ├── pom.xml └── src │ └── main │ ├── java │ └── uk │ │ └── ac │ │ └── ebi │ │ └── spot │ │ └── ols │ │ ├── JsonHelper.java │ │ ├── Ols4Backend.java │ │ ├── config │ │ ├── CrossOriginResourceSharingFilter.java │ │ ├── OLSRestMVCConfiguration.java │ │ ├── OntologyDefaults.java │ │ ├── SwaggerConfig.java │ │ └── WebConfig.java │ │ ├── controller │ │ ├── api │ │ │ ├── exception │ │ │ │ ├── BadRequestException.java │ │ │ │ ├── CustomErrorController.java │ │ │ │ ├── ErrorResponse.java │ │ │ │ ├── GlobalExceptionHandler.java │ │ │ │ └── ResourceNotFoundException.java │ │ │ ├── v1 │ │ │ │ ├── SolrFieldMapper.java │ │ │ │ ├── V1ApiUnavailable.java │ │ │ │ ├── V1IndividualAssembler.java │ │ │ │ ├── V1IndividualController.java │ │ │ │ ├── V1OntologyAssembler.java │ │ │ │ ├── V1OntologyController.java │ │ │ │ ├── V1OntologyIndividualController.java │ │ │ │ ├── V1OntologyPropertyController.java │ │ │ │ ├── V1OntologyTermController.java │ │ │ │ ├── V1PreferredRootTermAssembler.java │ │ │ │ ├── V1PropertyAssembler.java │ │ │ │ ├── V1PropertyController.java │ │ │ │ ├── V1SearchController.java │ │ │ │ ├── V1SearchResultAssembler.java │ │ │ │ ├── V1SelectController.java │ │ │ │ ├── V1SuggestController.java │ │ │ │ ├── V1TermAssembler.java │ │ │ │ └── V1TermController.java │ │ │ └── v2 │ │ │ │ ├── HealthCheckController.java │ │ │ │ ├── V2ClassController.java │ │ │ │ ├── V2DefinedFieldsController.java │ │ │ │ ├── V2EntityController.java │ │ │ │ ├── V2IndividualController.java │ │ │ │ ├── V2LLMController.java │ │ │ │ ├── V2OntologyController.java │ │ │ │ ├── V2PropertyController.java │ │ │ │ ├── V2StatisticsController.java │ │ │ │ ├── helpers │ │ │ │ └── DynamicQueryHelper.java │ │ │ │ └── responses │ │ │ │ ├── V2PagedAndFacetedResponse.java │ │ │ │ └── V2PagedResponse.java │ │ └── mcp │ │ │ ├── McpClassService.java │ │ │ ├── McpOntologyService.java │ │ │ └── McpSearchService.java │ │ ├── exception │ │ ├── ErrorMessage.java │ │ └── OntologyRepositoryException.java │ │ ├── model │ │ ├── mcp │ │ │ ├── McpClass.java │ │ │ ├── McpEntityReference.java │ │ │ ├── McpFetchResult.java │ │ │ ├── McpOntology.java │ │ │ ├── McpPage.java │ │ │ └── McpSearchResult.java │ │ ├── v1 │ │ │ ├── V1Individual.java │ │ │ ├── V1NodePropertyNameConstants.java │ │ │ ├── V1OboDefinitionCitation.java │ │ │ ├── V1OboSynonym.java │ │ │ ├── V1OboXref.java │ │ │ ├── V1Ontology.java │ │ │ ├── V1OntologyConfig.java │ │ │ ├── V1Property.java │ │ │ ├── V1Related.java │ │ │ ├── V1Status.java │ │ │ └── V1Term.java │ │ └── v2 │ │ │ ├── V2DynamicJsonResult.java │ │ │ ├── V2Entity.java │ │ │ └── V2Statistics.java │ │ ├── repository │ │ ├── ClassRepository.java │ │ ├── EntityRepository.java │ │ ├── IndividualRepository.java │ │ ├── OntologyRepository.java │ │ ├── PropertyRepository.java │ │ ├── Validation.java │ │ ├── helpers │ │ │ ├── DynamicFilterParser.java │ │ │ └── SearchFieldsParser.java │ │ ├── neo4j │ │ │ └── OlsNeo4jClient.java │ │ ├── solr │ │ │ ├── OlsFacetedResultsPage.java │ │ │ ├── OlsSolrClient.java │ │ │ ├── OlsSolrQuery.java │ │ │ └── SearchType.java │ │ ├── transforms │ │ │ ├── JsonTransformOptions.java │ │ │ ├── JsonTransformer.java │ │ │ ├── LocalizationTransform.java │ │ │ ├── ManchesterSyntaxTransform.java │ │ │ ├── RemoveLiteralDatatypesTransform.java │ │ │ ├── RemoveReificationTransform.java │ │ │ ├── ResolveReferencesTransform.java │ │ │ └── helpers │ │ │ │ └── JsonCollectionHelper.java │ │ └── v1 │ │ │ ├── V1AncestorsJsTreeBuilder.java │ │ │ ├── V1ChildrenJsTreeBuilder.java │ │ │ ├── V1GraphBuilder.java │ │ │ ├── V1GraphRepository.java │ │ │ ├── V1IndividualRepository.java │ │ │ ├── V1JsTreeRepository.java │ │ │ ├── V1OntologyRepository.java │ │ │ ├── V1PropertyRepository.java │ │ │ ├── V1TermRepository.java │ │ │ └── mappers │ │ │ ├── AnnotationExtractor.java │ │ │ ├── ShortFormExtractor.java │ │ │ ├── V1IndividualMapper.java │ │ │ ├── V1OboDefinitionCitationExtractor.java │ │ │ ├── V1OboSynonymExtractor.java │ │ │ ├── V1OboXrefExtractor.java │ │ │ ├── V1OntologyMapper.java │ │ │ ├── V1PropertyMapper.java │ │ │ └── V1TermMapper.java │ │ └── service │ │ ├── Neo4jClient.java │ │ └── ViewMode.java │ └── resources │ ├── application.properties │ └── logback.xml ├── compare_testcase_output.sh ├── compare_testcase_output_mac.sh ├── dataload ├── .dockerignore ├── .gitignore ├── Dockerfile ├── README.md ├── configs │ ├── ado.json │ ├── apollo.json │ ├── cao.json │ ├── cdao.json │ ├── ceph.json │ ├── dron.json │ ├── duo.json │ ├── edam.json │ ├── efo.json │ ├── fbbt.json │ ├── fobi.json │ ├── foundry.json │ ├── gaz.json │ ├── get-foundry-config.sh │ ├── gsso.json │ ├── hp.json │ ├── idocovid19.json │ ├── kisao.json │ ├── lifestylefactors.json │ ├── mamo.json │ ├── ms.json │ ├── ols.json │ ├── pcl.json │ ├── pride.json │ ├── rdfs.json │ ├── ro.json │ ├── sbo.json │ ├── schemaorg.json │ ├── small.json │ ├── taxon.json │ └── uberon.json ├── create_datafiles.sh ├── create_indexes.cypher ├── create_neo4j_indexes.sh ├── dataload.dockersh ├── embeddings │ ├── ols_add_embeddings_to_json │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ └── src │ │ │ └── main.rs │ ├── ols_embed │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ └── src │ │ │ └── main.rs │ ├── ols_inject_hierarchy │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ └── src │ │ │ └── main.rs │ └── ols_top_k │ │ ├── ols_top_k.py │ │ ├── pyproject.toml │ │ └── uv.lock ├── extras │ ├── json2sssom │ │ ├── dependency-reduced-pom.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ ├── CurieMap.java │ │ │ ├── JSON2SSSOM.java │ │ │ └── JsonHelper.java │ ├── orcid2level │ │ ├── dependency-reduced-pom.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ ├── LevelDB.java │ │ │ └── OrcidExtractor.java │ └── pom.xml ├── json2neo │ ├── dependency-reduced-pom.xml │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ ├── JSON2CSV.java │ │ ├── NeoConverter.java │ │ ├── OntologyScanner.java │ │ └── OntologyWriter.java ├── json2solr │ ├── dependency-reduced-pom.xml │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── JSON2Solr.java ├── linker │ ├── dependency-reduced-pom.xml │ ├── foo.json │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ ├── Bioregistry.java │ │ ├── CopyJsonGatheringStrings.java │ │ ├── Embeddings.java │ │ ├── EntityDefinition.java │ │ ├── EntityDefinitionSet.java │ │ ├── ExtractIriFromPropertyName.java │ │ ├── LevelDB.java │ │ ├── Linker.java │ │ ├── LinkerPass1.java │ │ ├── LinkerPass2.java │ │ └── OboDatabaseUrlService.java ├── load_into_neo4j.sh ├── load_into_solr.sh ├── make_csv_import_cmd.sh ├── pom.xml ├── pre_download.sh ├── predownloader │ ├── dependency-reduced-pom.xml │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── uk │ │ └── ac │ │ └── ebi │ │ └── ols4 │ │ └── predownloader │ │ ├── BulkOntologyDownloader.java │ │ ├── Downloader.java │ │ ├── InputJson.java │ │ └── OntologyDownloaderThread.java ├── rdf2json │ ├── dependency-reduced-pom.xml │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── uk │ │ │ └── ac │ │ │ └── ebi │ │ │ └── rdf2json │ │ │ ├── InputJson.java │ │ │ ├── OntologyGraph.java │ │ │ ├── OntologyNode.java │ │ │ ├── RDF2JSON.java │ │ │ ├── annotators │ │ │ ├── AncestorsAnnotator.java │ │ │ ├── ConfigurablePropertyAnnotator.java │ │ │ ├── DefinitionAnnotator.java │ │ │ ├── DirectParentsAnnotator.java │ │ │ ├── DisjointWithAnnotator.java │ │ │ ├── EquivalenceAnnotator.java │ │ │ ├── HasIndividualsAnnotator.java │ │ │ ├── HierarchicalParentsAnnotator.java │ │ │ ├── HierarchyFlagsAnnotator.java │ │ │ ├── HierarchyMetricsAnnotator.java │ │ │ ├── InverseOfAnnotator.java │ │ │ ├── IsObsoleteAnnotator.java │ │ │ ├── LabelAnnotator.java │ │ │ ├── NegativePropertyAssertionAnnotator.java │ │ │ ├── OboSynonymTypeNameAnnotator.java │ │ │ ├── OntologyMetadataAnnotator.java │ │ │ ├── PreferredRootsAnnotator.java │ │ │ ├── ReifiedPropertyAnnotator.java │ │ │ ├── RelatedAnnotator.java │ │ │ ├── SearchableAnnotationValuesAnnotator.java │ │ │ ├── ShortFormAnnotator.java │ │ │ ├── SynonymAnnotator.java │ │ │ └── helpers │ │ │ │ ├── OntologyBaseUris.java │ │ │ │ └── PropertyCollator.java │ │ │ ├── helpers │ │ │ ├── AncestorsClosure.java │ │ │ └── RdfListEvaluator.java │ │ │ ├── properties │ │ │ ├── PropertySet.java │ │ │ ├── PropertyValue.java │ │ │ ├── PropertyValueAncestors.java │ │ │ ├── PropertyValueBNode.java │ │ │ ├── PropertyValueList.java │ │ │ ├── PropertyValueLiteral.java │ │ │ ├── PropertyValueRelated.java │ │ │ └── PropertyValueURI.java │ │ │ └── reporting │ │ │ ├── ContactInfo.java │ │ │ ├── OntologyLoadStatus.java │ │ │ └── OntologyReportingService.java │ │ └── resources │ │ └── logback.xml └── solr_config │ ├── README.md │ ├── ols4_autocomplete │ ├── conf │ │ ├── _rest_managed.json │ │ ├── lang │ │ │ └── stopwords_en.txt │ │ ├── protwords.txt │ │ ├── schema.xml │ │ ├── solrconfig.xml │ │ ├── stopwords.txt │ │ └── synonyms.txt │ └── core.properties │ ├── ols4_entities │ ├── conf │ │ ├── lang │ │ │ ├── contractions_ca.txt │ │ │ ├── contractions_fr.txt │ │ │ ├── contractions_ga.txt │ │ │ ├── contractions_it.txt │ │ │ ├── hyphenations_ga.txt │ │ │ ├── stemdict_nl.txt │ │ │ ├── stoptags_ja.txt │ │ │ ├── stopwords_ar.txt │ │ │ ├── stopwords_bg.txt │ │ │ ├── stopwords_ca.txt │ │ │ ├── stopwords_cz.txt │ │ │ ├── stopwords_da.txt │ │ │ ├── stopwords_de.txt │ │ │ ├── stopwords_el.txt │ │ │ ├── stopwords_en.txt │ │ │ ├── stopwords_es.txt │ │ │ ├── stopwords_et.txt │ │ │ ├── stopwords_eu.txt │ │ │ ├── stopwords_fa.txt │ │ │ ├── stopwords_fi.txt │ │ │ ├── stopwords_fr.txt │ │ │ ├── stopwords_ga.txt │ │ │ ├── stopwords_gl.txt │ │ │ ├── stopwords_hi.txt │ │ │ ├── stopwords_hu.txt │ │ │ ├── stopwords_hy.txt │ │ │ ├── stopwords_id.txt │ │ │ ├── stopwords_it.txt │ │ │ ├── stopwords_ja.txt │ │ │ ├── stopwords_lv.txt │ │ │ ├── stopwords_nl.txt │ │ │ ├── stopwords_no.txt │ │ │ ├── stopwords_pt.txt │ │ │ ├── stopwords_ro.txt │ │ │ ├── stopwords_ru.txt │ │ │ ├── stopwords_sv.txt │ │ │ ├── stopwords_th.txt │ │ │ ├── stopwords_tr.txt │ │ │ └── userdict_ja.txt │ │ ├── managed-schema.xml │ │ ├── protwords.txt │ │ ├── solrconfig.xml │ │ ├── stopwords.txt │ │ └── synonyms.txt │ └── core.properties │ ├── solr.xml │ ├── solrconfig.xml │ └── zoo.cfg ├── dev-testing ├── README.md ├── backend-testing │ ├── pom.xml │ └── src │ │ └── test │ │ └── java │ │ └── uk │ │ └── ac │ │ └── ebi │ │ └── spot │ │ └── ols │ │ └── backend │ │ └── OntologyTest.java ├── clean-neo4j.sh ├── clean-solr.sh ├── frontend-testing │ ├── pom.xml │ └── src │ │ └── test │ │ └── java │ │ └── uk │ │ └── ac │ │ └── ebi │ │ └── spot │ │ └── ols │ │ └── frontend │ │ ├── AbstractFrontendTest.java │ │ ├── InstallDriversTest.java │ │ └── OntologyPageTest.java ├── load_test_into_neo4j.sh ├── load_test_into_solr.sh ├── make_csv_import_cmd.sh ├── pom.xml ├── start-backend.sh ├── start-frontend.sh ├── start-neo4j.sh ├── start-solr.sh ├── startNeo4JSolr.sh ├── stop-neo4j.sh ├── stop-solr.sh ├── stopNeo4jSolr.sh ├── teststack-mac.sh └── teststack.sh ├── docker-compose.yml ├── docs ├── overview.graffle └── overview.png ├── ebi_ontologies.json ├── frontend ├── .dockerignore ├── .env ├── .gitignore ├── .yarnrc.yml ├── Caddyfile ├── Dockerfile ├── README.md ├── build.mjs ├── build_widgets.mjs ├── dev_server.mjs ├── dist │ ├── Privacy_notice_for_EMBL-EBI_Public_Website.pdf │ ├── Privacy_notice_for_OLS_mailing_list.pdf │ ├── Privacy_notice_for_OLS_submission_service_email_based.pdf │ ├── banner.txt │ ├── css │ │ └── ebi-global.css │ ├── curator.svg │ ├── embl-ebi-background-4.jpg │ ├── favicon.ico │ ├── instance.svg │ ├── json.svg │ ├── jsonbeta.svg │ ├── legacy │ │ ├── OLS-graphview.css │ │ ├── jquery.min.js │ │ ├── ols-graphview.js │ │ └── vis.min.css │ ├── logo.png │ ├── logo.svg │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ ├── model-viewer.min.js │ ├── not-found.jpg │ ├── part.svg │ └── robots.txt ├── dist_widgets │ ├── README.md │ ├── manually_maintained_types.d.ts │ └── package.json ├── entrypoint.dockersh ├── index.html.in ├── package-lock.json ├── package.json ├── src │ ├── App.test.tsx │ ├── App.tsx │ ├── app │ │ ├── api.ts │ │ ├── hooks.ts │ │ ├── mui.ts │ │ ├── store.ts │ │ └── util.ts │ ├── banner.txt │ ├── components │ │ ├── ApiLinks.tsx │ │ ├── Banner.tsx │ │ ├── ClassExpression.tsx │ │ ├── DataTable.tsx │ │ ├── EntityLink.tsx │ │ ├── FallbackWarning.tsx │ │ ├── Footer.tsx │ │ ├── Header.tsx │ │ ├── Image3D.jsx │ │ ├── LanguagePicker.tsx │ │ ├── LoadingOverlay.tsx │ │ ├── Node.tsx │ │ ├── Pagination.tsx │ │ ├── PropertyValuesList.tsx │ │ ├── SearchBox.tsx │ │ └── Tabs.tsx │ ├── global.d.ts │ ├── history.ts │ ├── index.css │ ├── index.tsx │ ├── logo.svg │ ├── model │ │ ├── Class.ts │ │ ├── Entity.ts │ │ ├── Individual.ts │ │ ├── LinkedEntities.ts │ │ ├── Ontology.ts │ │ ├── Property.ts │ │ ├── Reified.ts │ │ ├── Suggest.ts │ │ └── Thing.ts │ ├── pages │ │ ├── API.tsx │ │ ├── About.tsx │ │ ├── DefinedResponseFields.tsx │ │ ├── Downloads.tsx │ │ ├── Error.tsx │ │ ├── MCP.tsx │ │ ├── OLS3Help.tsx │ │ ├── home │ │ │ ├── Home.tsx │ │ │ └── homeSlice.ts │ │ ├── ontologies │ │ │ ├── OntologiesPage.tsx │ │ │ ├── OntologyPage.tsx │ │ │ ├── entities │ │ │ │ ├── EntityDetails.tsx │ │ │ │ ├── EntityGraph.tsx │ │ │ │ ├── EntityGraphContainer.tsx │ │ │ │ ├── EntityList.tsx │ │ │ │ ├── EntityPage.tsx │ │ │ │ ├── EntityTree.tsx │ │ │ │ ├── createTreeFromEntities.ts │ │ │ │ ├── entityPageSections │ │ │ │ │ ├── ClassInstancesSection.tsx │ │ │ │ │ ├── DefiningOntologiesSection.tsx │ │ │ │ │ ├── DisjointWithSection.tsx │ │ │ │ │ ├── DomainSection.tsx │ │ │ │ │ ├── EntityAnnotationsSection.tsx │ │ │ │ │ ├── EntityDescriptionSection.tsx │ │ │ │ │ ├── EntityEquivalentsSection.tsx │ │ │ │ │ ├── EntityImagesSection.tsx │ │ │ │ │ ├── EntityParentsSection.tsx │ │ │ │ │ ├── EntityRelatedFromSection.tsx │ │ │ │ │ ├── EntitySynonymsSection.tsx │ │ │ │ │ ├── HasKeySection.tsx │ │ │ │ │ ├── IndividualDifferentFromSection.tsx │ │ │ │ │ ├── IndividualPropertyAssertionsSection.tsx │ │ │ │ │ ├── IndividualSameAsSection.tsx │ │ │ │ │ ├── IndividualTypesSection.tsx │ │ │ │ │ ├── MetadataTooltip.tsx │ │ │ │ │ ├── PropertyChainSection.tsx │ │ │ │ │ ├── PropertyCharacteristicsSection.tsx │ │ │ │ │ ├── PropertyInverseOfSection.tsx │ │ │ │ │ ├── RangeSection.tsx │ │ │ │ │ ├── SimilarEntitiesSection.tsx │ │ │ │ │ ├── UnionOfSection.tsx │ │ │ │ │ └── addLinksToText.tsx │ │ │ │ ├── extractEntityHierarchy.ts │ │ │ │ ├── graphRenderers │ │ │ │ │ ├── linkRenderer.ts │ │ │ │ │ └── nodeRenderer.ts │ │ │ │ ├── graphUIComponents │ │ │ │ │ ├── EmptyGraphDisplay.tsx │ │ │ │ │ ├── ErrorDisplay.tsx │ │ │ │ │ ├── ExpandedNodesList.tsx │ │ │ │ │ ├── LoadingOverlay.tsx │ │ │ │ │ └── RelationshipFilters.tsx │ │ │ │ └── graphUtils │ │ │ │ │ ├── colorUtils.ts │ │ │ │ │ ├── nodeUtils.ts │ │ │ │ │ └── types.ts │ │ │ └── ontologiesSlice.ts │ │ └── search │ │ │ ├── Search.tsx │ │ │ └── searchSlice.ts │ ├── react-app-env.d.ts │ ├── reportWebVitals.ts │ ├── setupTests.ts │ └── widgets │ │ ├── EntityTreeWidget.tsx │ │ ├── index.ts │ │ └── styles │ │ └── treestyles.css ├── tailwind.config.js └── tsconfig.json ├── import.report ├── k8chart-dev ├── ols4 │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── ols4-backend-deployment.yaml │ │ ├── ols4-backend-service.yaml │ │ ├── ols4-configmap.yaml │ │ ├── ols4-frontend-deployment.yaml │ │ ├── ols4-frontend-service.yaml │ │ ├── ols4-import-volume.yaml │ │ ├── ols4-ingress.yaml │ │ ├── ols4-neo4j-deployment.yaml │ │ ├── ols4-neo4j-pv.yaml │ │ ├── ols4-neo4j-pvc.yaml │ │ ├── ols4-neo4j-service.yaml │ │ ├── ols4-proxy-configmap.yaml │ │ ├── ols4-solr-deployment.yaml │ │ ├── ols4-solr-pv.yaml │ │ ├── ols4-solr-pvc.yaml │ │ └── ols4-solr-service.yaml │ └── values.yaml └── pvcs │ ├── Chart.yaml │ └── values.yaml ├── k8chart ├── ols4 │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── ols4-backend-deployment.yaml │ │ ├── ols4-backend-service.yaml │ │ ├── ols4-configmap.yaml │ │ ├── ols4-frontend-deployment.yaml │ │ ├── ols4-frontend-service.yaml │ │ ├── ols4-import-volume.yaml │ │ ├── ols4-ingress.yaml │ │ ├── ols4-mcp-deployment.yaml │ │ ├── ols4-mcp-service.yaml │ │ ├── ols4-neo4j-deployment.yaml │ │ ├── ols4-neo4j-pv.yaml │ │ ├── ols4-neo4j-pvc.yaml │ │ ├── ols4-neo4j-service.yaml │ │ ├── ols4-proxy-configmap.yaml │ │ ├── ols4-solr-deployment.yaml │ │ ├── ols4-solr-pv.yaml │ │ ├── ols4-solr-pvc.yaml │ │ └── ols4-solr-service.yaml │ └── values.yaml └── pvcs │ ├── Chart.yaml │ └── values.yaml ├── legacy-plugins-test ├── OLS-graphview.css ├── README.md ├── awesomplete.css ├── bootstrap.css ├── handlebars.min.js ├── img │ ├── loading.gif │ └── network │ │ ├── acceptDeleteIcon.png │ │ ├── addNodeIcon.png │ │ ├── backIcon.png │ │ ├── connectIcon.png │ │ ├── cross.png │ │ ├── cross2.png │ │ ├── deleteIcon.png │ │ ├── downArrow.png │ │ ├── editIcon.png │ │ ├── leftArrow.png │ │ ├── minus.png │ │ ├── plus.png │ │ ├── rightArrow.png │ │ ├── upArrow.png │ │ └── zoomExtends.png ├── jquery.min.js ├── jstree.min.js ├── main.css ├── ols-autocomplete.js ├── ols-colors.css ├── ols-graphview.js ├── ols-treeview.js ├── ols.css ├── proton │ ├── 30px.png │ ├── 32px.png │ ├── fonts │ │ └── titillium │ │ │ ├── titilliumweb-bold-webfont.eot │ │ │ ├── titilliumweb-bold-webfont.svg │ │ │ ├── titilliumweb-bold-webfont.ttf │ │ │ ├── titilliumweb-bold-webfont.woff │ │ │ ├── titilliumweb-extralight-webfont.eot │ │ │ ├── titilliumweb-extralight-webfont.svg │ │ │ ├── titilliumweb-extralight-webfont.ttf │ │ │ ├── titilliumweb-extralight-webfont.woff │ │ │ ├── titilliumweb-regular-webfont.eot │ │ │ ├── titilliumweb-regular-webfont.svg │ │ │ ├── titilliumweb-regular-webfont.ttf │ │ │ └── titilliumweb-regular-webfont.woff │ ├── style.css │ ├── style.min.css │ └── throbber.gif ├── test.html ├── typeahead.bundle.min.js ├── typeaheadjs.css └── vis.min.css ├── notebooks ├── free_text_embedding_search.ipynb └── hp_mp_similarity.ipynb ├── ols-shared ├── pom.xml └── src │ └── main │ └── java │ └── uk │ └── ac │ └── ebi │ └── ols │ └── shared │ └── DefinedFields.java ├── pom.xml ├── test_api.sh ├── test_api_fast.sh ├── test_dataload.sh ├── testcases ├── annotation-properties │ ├── gitIssue502.json │ ├── gitIssue502.owl │ ├── oboInOwl.owl │ ├── simple.json │ └── simple.owl ├── class-expression-issues │ ├── max-cardinality-ttl.json │ ├── max-cardinality.json │ ├── max-cardinality.owl │ └── max-cardinality.ttl ├── datatypes │ └── nesting-issue │ │ ├── datatype-enumeration.json │ │ ├── datatype-enumeration.owl │ │ ├── datatype-exclusion.json │ │ ├── datatype-exclusion.owl │ │ ├── datatype-minmax.json │ │ ├── datatype-minmax.owl │ │ ├── datatype-minmax.ttl │ │ ├── hao.owl │ │ ├── minimal-genepio.json │ │ ├── minimal-genepio.owl │ │ ├── minimal-genepio.ttl │ │ ├── user-defined-data-type.json │ │ ├── user-defined-data-type.rdf │ │ └── user-defined-data-type.ttl ├── defined-fields │ ├── BaseUri.json │ ├── BaseUri.owl │ ├── DefinitionMultiple.json │ ├── DefinitionMultiple.owl │ ├── DefinitionSingle.json │ ├── DefinitionSingle.ttl │ ├── DirectParentWithAnnotationAxiom.json │ ├── DirectParentWithAnnotationAxiom.owl │ ├── IsObsolete.json │ ├── IsObsolete.rdf │ ├── IsObsoleteSimple.json │ ├── IsObsoleteSimple.rdf │ ├── IsObsoleteSimpleWithEfoReason.json │ ├── IsObsoleteSimpleWithEfoReason.rdf │ ├── PreferredRoot.json │ ├── PreferredRoot.owl │ ├── labelSingle.json │ └── labelSingle.owl ├── duo.json ├── hierarchical-properties │ ├── efo.json │ ├── efo.owl │ ├── partof.json │ ├── partof.rdf │ └── partof.ttl ├── imports │ ├── OntologyA.rdf │ ├── OntologyB.rdf │ └── ro.owl ├── individuals │ ├── anonymous-types-with-inverse.json │ └── anonymous-types-with-inverse.owl ├── iri-labels │ ├── efo-iri-labels.json │ ├── efo-iri-labels.owl │ ├── use-user-defined-pref-label.json │ └── user-defined-pref-label.owl ├── localized-labels │ ├── label.json │ └── label.rdf ├── ontology-annotations │ └── version │ │ ├── chebi.json │ │ ├── chebi.owl │ │ ├── efo.json │ │ ├── efo.owl │ │ ├── ncbitaxon.json │ │ ├── ncbitaxon.owl │ │ ├── obo-date.json │ │ └── obo-date.owl ├── owl2-primer │ ├── allDisjointClasses.json │ ├── allDisjointClasses.owl │ ├── allDisjointDataProperties.json │ ├── allDisjointDataProperties.owl │ ├── allDisjointObjectProperties.json │ ├── allDisjointObjectProperties.owl │ ├── anonymous-inverse-object-property.json │ ├── anonymous-inverse-object-property.rdf │ ├── asymmetric-object-property.json │ ├── asymmetric-object-property.rdf │ ├── class-assertion.json │ ├── class-assertion.owl │ ├── class-expression-based-on-datatype-restriction.json │ ├── class-expression-based-on-datatype-restriction.rdf │ ├── class.json │ ├── class.owl │ ├── complex-class-assertions-with-negation.json │ ├── complex-class-assertions-with-negation.rdf │ ├── data-property-assertion.json │ ├── data-property-assertion.owl │ ├── data-property-domain-range-restrictions.json │ ├── data-property-domain-range-restrictions.rdf │ ├── dataProperty-functional.json │ ├── dataProperty-functional.owl │ ├── datatype-enumeration.json │ ├── datatype-enumeration.owl │ ├── datatype-exclusion.json │ ├── datatype-exclusion.owl │ ├── datatype-minmax.json │ ├── datatype-minmax.owl │ ├── different-individuals.json │ ├── different-individuals.owl │ ├── disjoint-classes.json │ ├── disjoint-classes.rdf │ ├── disjointUnionOf.json │ ├── disjointUnionOf.owl │ ├── enumeration-of-individuals.json │ ├── enumeration-of-individuals.rdf │ ├── equivalent-intersectionOf-complementOf.json │ ├── equivalent-intersectionOf-complementOf.owl │ ├── equivalent-intersectionOf.json │ ├── equivalent-intersectionOf.owl │ ├── equivalent-propertyRestriction-allValuesFrom.json │ ├── equivalent-propertyRestriction-allValuesFrom.owl │ ├── equivalent-propertyRestriction-someValuesFrom.json │ ├── equivalent-propertyRestriction-someValuesFrom.owl │ ├── equivalentClass-collection.json │ ├── equivalentClass-collection.owl │ ├── equivalentClass.json │ ├── equivalentClass.owl │ ├── equivalentObjectProperty.json │ ├── equivalentObjectProperty.owl │ ├── functional-data-property.json │ ├── functional-data-property.rdf │ ├── functional-object-property.json │ ├── functional-object-property.rdf │ ├── intersectionOf.json │ ├── intersectionOf.owl │ ├── inverse-functional-object-property.json │ ├── inverse-functional-object-property.rdf │ ├── inverse-object-property.json │ ├── inverse-object-property.rdf │ ├── irreflexive-object-property.json │ ├── irreflexive-object-property.rdf │ ├── key-constraint-on-data-property.json │ ├── key-constraint-on-data-property.owl │ ├── minimal.json │ ├── minimal.owl │ ├── namedIndividual.json │ ├── namedIndividual.owl │ ├── negative-data-property-assertion.json │ ├── negative-data-property-assertion.rdf │ ├── negative-object-property-assertion.json │ ├── negative-object-property-assertion.owl │ ├── object-property-assertion.json │ ├── object-property-assertion.owl │ ├── object-property-domain-range-restriction.json │ ├── object-property-domain-range-restriction.owl │ ├── objectProperty-asymmetric.json │ ├── objectProperty-asymmetric.owl │ ├── objectProperty-disjoint.json │ ├── objectProperty-disjoint.owl │ ├── objectProperty-functional.json │ ├── objectProperty-functional.owl │ ├── objectProperty-hasKey.json │ ├── objectProperty-hasKey.owl │ ├── objectProperty-inverse-withoutAssignedName.json │ ├── objectProperty-inverse-withoutAssignedName.owl │ ├── objectProperty-inverse.json │ ├── objectProperty-inverse.owl │ ├── objectProperty-inverseFunctional.json │ ├── objectProperty-inverseFunctional.owl │ ├── objectProperty-irreflexive.json │ ├── objectProperty-irreflexive.owl │ ├── objectProperty-reflexive.json │ ├── objectProperty-reflexive.owl │ ├── property-chain.json │ ├── property-chain.rdf │ ├── propertyRestriction-cardinality.json │ ├── propertyRestriction-cardinality.owl │ ├── propertyRestriction-maxQualifiedCardinality.json │ ├── propertyRestriction-maxQualifiedCardinality.owl │ ├── propertyRestriction-minQualifiedCardinality.json │ ├── propertyRestriction-minQualifiedCardinality.owl │ ├── propertyRestriction-qualifiedCardinality.json │ ├── propertyRestriction-qualifiedCardinality.owl │ ├── qualified-cardinality-exact-restriction.json │ ├── qualified-cardinality-exact-restriction.rdf │ ├── qualified-cardinality-max-restriction.json │ ├── qualified-cardinality-max-restriction.rdf │ ├── qualified-cardinality-min-restriction.json │ ├── qualified-cardinality-min-restriction.rdf │ ├── reflexive-object-property.json │ ├── reflexive-object-property.rdf │ ├── same-individual.json │ ├── same-individual.owl │ ├── self-restriction.json │ ├── self-restriction.owl │ ├── sub-object-property.json │ ├── sub-object-property.owl │ ├── subClassOf-intersectionOf.json │ ├── subClassOf-intersectionOf.owl │ ├── subClassOf.json │ ├── subClassOf.owl │ ├── subClassOf.ttl │ ├── symmetric-object-property.json │ ├── symmetric-object-property.rdf │ ├── transitive-object-property.json │ ├── transitive-object-property.rdf │ ├── unionOf.json │ ├── unionOf.owl │ ├── unqualified-cardinality-exact-restriction.json │ ├── unqualified-cardinality-exact-restriction.rdf │ ├── user-defined-data-type.json │ ├── user-defined-data-type.rdf │ ├── value-restriction-on-individual.json │ └── value-restriction-on-individual.rdf ├── punning │ ├── class-individual.json │ └── class-individual.owl ├── reification │ ├── reified-bnode.json │ └── reified-bnode.owl └── related │ ├── hasValue.json │ ├── hasValue.owl │ ├── oneOf.json │ ├── oneOf.owl │ ├── someValuesOf-fillerAnonymousConjunction.json │ ├── someValuesOf-fillerAnonymousConjunction.owl │ ├── someValuesOf-fillerAnonymousDisjunction.json │ ├── someValuesOf-fillerAnonymousDisjunction.rdf │ ├── someValuesOf-fillerNestedAnonymousConjunction.json │ ├── someValuesOf-fillerNestedAnonymousConjunction.owl │ ├── someValuesOf-hierarchical-relatedToSelf.json │ ├── someValuesOf-hierarchical-relatedToSelf.owl │ ├── someValuesOf-hierarchical.json │ ├── someValuesOf-hierarchical.owl │ ├── someValuesOf-oneOf.json │ ├── someValuesOf-oneOf.owl │ ├── someValuesOf.json │ └── someValuesOf.owl ├── testcases_expected_output ├── annotation-properties │ ├── gitIssue502 │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── gitissue502_classes.csv │ │ ├── gitissue502_edges.csv │ │ ├── gitissue502_individuals.csv │ │ ├── gitissue502_ontologies.csv │ │ ├── gitissue502_properties.csv │ │ ├── individuals.jsonl │ │ ├── oio_classes.csv │ │ ├── oio_edges.csv │ │ ├── oio_individuals.csv │ │ ├── oio_ontologies.csv │ │ ├── oio_properties.csv │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl_classes.csv │ │ ├── owl_edges.csv │ │ ├── owl_individuals.csv │ │ ├── owl_ontologies.csv │ │ ├── owl_properties.csv │ │ ├── properties.jsonl │ │ ├── rdfs_classes.csv │ │ ├── rdfs_edges.csv │ │ ├── rdfs_individuals.csv │ │ ├── rdfs_ontologies.csv │ │ ├── rdfs_properties.csv │ │ ├── skos_classes.csv │ │ ├── skos_edges.csv │ │ ├── skos_individuals.csv │ │ ├── skos_ontologies.csv │ │ └── skos_properties.csv │ └── simple │ │ ├── annotation-properties-simple_classes.csv │ │ ├── annotation-properties-simple_edges.csv │ │ ├── annotation-properties-simple_individuals.csv │ │ ├── annotation-properties-simple_ontologies.csv │ │ ├── annotation-properties-simple_properties.csv │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ └── properties.jsonl ├── class-expression-issues │ ├── max-cardinality-ttl │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── max-cardinality-ttl_classes.csv │ │ ├── max-cardinality-ttl_edges.csv │ │ ├── max-cardinality-ttl_individuals.csv │ │ ├── max-cardinality-ttl_ontologies.csv │ │ ├── max-cardinality-ttl_properties.csv │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ └── properties.jsonl │ └── max-cardinality │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── max-cardinality_classes.csv │ │ ├── max-cardinality_edges.csv │ │ ├── max-cardinality_individuals.csv │ │ ├── max-cardinality_ontologies.csv │ │ ├── max-cardinality_properties.csv │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ └── properties.jsonl ├── datatypes │ └── nesting-issue │ │ ├── datatype-enumeration │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-datatype-enumeration-nesting-issue_classes.csv │ │ ├── owl2primer-datatype-enumeration-nesting-issue_edges.csv │ │ ├── owl2primer-datatype-enumeration-nesting-issue_individuals.csv │ │ ├── owl2primer-datatype-enumeration-nesting-issue_ontologies.csv │ │ ├── owl2primer-datatype-enumeration-nesting-issue_properties.csv │ │ └── properties.jsonl │ │ ├── datatype-exclusion │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-datatype-exclusion-nesting-issue_classes.csv │ │ ├── owl2primer-datatype-exclusion-nesting-issue_edges.csv │ │ ├── owl2primer-datatype-exclusion-nesting-issue_individuals.csv │ │ ├── owl2primer-datatype-exclusion-nesting-issue_ontologies.csv │ │ ├── owl2primer-datatype-exclusion-nesting-issue_properties.csv │ │ └── properties.jsonl │ │ ├── datatype-minmax │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-datatype-minmax-nesting-issue_classes.csv │ │ ├── owl2primer-datatype-minmax-nesting-issue_edges.csv │ │ ├── owl2primer-datatype-minmax-nesting-issue_individuals.csv │ │ ├── owl2primer-datatype-minmax-nesting-issue_ontologies.csv │ │ ├── owl2primer-datatype-minmax-nesting-issue_properties.csv │ │ └── properties.jsonl │ │ ├── minimal-genepio │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── genepio_classes.csv │ │ ├── genepio_edges.csv │ │ ├── genepio_individuals.csv │ │ ├── genepio_ontologies.csv │ │ ├── genepio_properties.csv │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ └── properties.jsonl │ │ └── user-defined-data-type │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-user-defined-data-type-nesting-issue_classes.csv │ │ ├── owl2primer-user-defined-data-type-nesting-issue_edges.csv │ │ ├── owl2primer-user-defined-data-type-nesting-issue_individuals.csv │ │ ├── owl2primer-user-defined-data-type-nesting-issue_ontologies.csv │ │ ├── owl2primer-user-defined-data-type-nesting-issue_properties.csv │ │ └── properties.jsonl ├── defined-fields │ ├── BaseUri │ │ ├── autocomplete.jsonl │ │ ├── base_uri_classes.csv │ │ ├── base_uri_edges.csv │ │ ├── base_uri_individuals.csv │ │ ├── base_uri_ontologies.csv │ │ ├── base_uri_properties.csv │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ └── properties.jsonl │ ├── DefinitionMultiple │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── definition-multiple_classes.csv │ │ ├── definition-multiple_edges.csv │ │ ├── definition-multiple_individuals.csv │ │ ├── definition-multiple_ontologies.csv │ │ ├── definition-multiple_properties.csv │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ └── properties.jsonl │ ├── DefinitionSingle │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── definition-single_classes.csv │ │ ├── definition-single_edges.csv │ │ ├── definition-single_individuals.csv │ │ ├── definition-single_ontologies.csv │ │ ├── definition-single_properties.csv │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ └── properties.jsonl │ ├── DirectParentWithAnnotationAxiom │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── direct-parent-with-annotation-axiom_classes.csv │ │ ├── direct-parent-with-annotation-axiom_edges.csv │ │ ├── direct-parent-with-annotation-axiom_individuals.csv │ │ ├── direct-parent-with-annotation-axiom_ontologies.csv │ │ ├── direct-parent-with-annotation-axiom_properties.csv │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ └── properties.jsonl │ ├── IsObsolete │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── isobsolete_classes.csv │ │ ├── isobsolete_edges.csv │ │ ├── isobsolete_individuals.csv │ │ ├── isobsolete_ontologies.csv │ │ ├── isobsolete_properties.csv │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ └── properties.jsonl │ ├── IsObsoleteSimple │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── isobsoletesimple_classes.csv │ │ ├── isobsoletesimple_edges.csv │ │ ├── isobsoletesimple_individuals.csv │ │ ├── isobsoletesimple_ontologies.csv │ │ ├── isobsoletesimple_properties.csv │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ └── properties.jsonl │ ├── IsObsoleteSimpleWithEfoReason │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── isobsoletesimplewitheforeason_classes.csv │ │ ├── isobsoletesimplewitheforeason_edges.csv │ │ ├── isobsoletesimplewitheforeason_individuals.csv │ │ ├── isobsoletesimplewitheforeason_ontologies.csv │ │ ├── isobsoletesimplewitheforeason_properties.csv │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ └── properties.jsonl │ ├── PreferredRoot │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── preferred-root_classes.csv │ │ ├── preferred-root_edges.csv │ │ ├── preferred-root_individuals.csv │ │ ├── preferred-root_ontologies.csv │ │ ├── preferred-root_properties.csv │ │ └── properties.jsonl │ └── labelSingle │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── labelsingle_classes.csv │ │ ├── labelsingle_edges.csv │ │ ├── labelsingle_individuals.csv │ │ ├── labelsingle_ontologies.csv │ │ ├── labelsingle_properties.csv │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ └── properties.jsonl ├── duo │ ├── autocomplete.jsonl │ ├── classes.jsonl │ ├── duo_classes.csv │ ├── duo_edges.csv │ ├── duo_individuals.csv │ ├── duo_ontologies.csv │ ├── duo_properties.csv │ ├── individuals.jsonl │ ├── ontologies.json │ ├── ontologies.jsonl │ ├── ontologies_linked.json │ └── properties.jsonl ├── hierarchical-properties │ ├── efo │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── efo-hierarchical-properties_classes.csv │ │ ├── efo-hierarchical-properties_edges.csv │ │ ├── efo-hierarchical-properties_individuals.csv │ │ ├── efo-hierarchical-properties_ontologies.csv │ │ ├── efo-hierarchical-properties_properties.csv │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ └── properties.jsonl │ └── partof │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── partof_classes.csv │ │ ├── partof_edges.csv │ │ ├── partof_individuals.csv │ │ ├── partof_ontologies.csv │ │ ├── partof_properties.csv │ │ └── properties.jsonl ├── individuals │ └── anonymous-types-with-inverse │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals-anonymous-types-with-inverse_classes.csv │ │ ├── individuals-anonymous-types-with-inverse_edges.csv │ │ ├── individuals-anonymous-types-with-inverse_individuals.csv │ │ ├── individuals-anonymous-types-with-inverse_ontologies.csv │ │ ├── individuals-anonymous-types-with-inverse_properties.csv │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ └── properties.jsonl ├── iri-labels │ ├── efo-iri-labels │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── efo-iri-labels_classes.csv │ │ ├── efo-iri-labels_edges.csv │ │ ├── efo-iri-labels_individuals.csv │ │ ├── efo-iri-labels_ontologies.csv │ │ ├── efo-iri-labels_properties.csv │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ └── properties.jsonl │ └── use-user-defined-pref-label │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── properties.jsonl │ │ ├── xmpl_classes.csv │ │ ├── xmpl_edges.csv │ │ ├── xmpl_individuals.csv │ │ ├── xmpl_ontologies.csv │ │ └── xmpl_properties.csv ├── localized-labels │ └── label │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── label_classes.csv │ │ ├── label_edges.csv │ │ ├── label_individuals.csv │ │ ├── label_ontologies.csv │ │ ├── label_properties.csv │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ └── properties.jsonl ├── ontology-annotations │ └── version │ │ ├── chebi │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── ontology-annotations-version-chebi_classes.csv │ │ ├── ontology-annotations-version-chebi_edges.csv │ │ ├── ontology-annotations-version-chebi_individuals.csv │ │ ├── ontology-annotations-version-chebi_ontologies.csv │ │ ├── ontology-annotations-version-chebi_properties.csv │ │ └── properties.jsonl │ │ ├── efo │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── ontology-annotations-version-efo_classes.csv │ │ ├── ontology-annotations-version-efo_edges.csv │ │ ├── ontology-annotations-version-efo_individuals.csv │ │ ├── ontology-annotations-version-efo_ontologies.csv │ │ ├── ontology-annotations-version-efo_properties.csv │ │ └── properties.jsonl │ │ ├── ncbitaxon │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── ontology-annotations-version-ncbitaxon_classes.csv │ │ ├── ontology-annotations-version-ncbitaxon_edges.csv │ │ ├── ontology-annotations-version-ncbitaxon_individuals.csv │ │ ├── ontology-annotations-version-ncbitaxon_ontologies.csv │ │ ├── ontology-annotations-version-ncbitaxon_properties.csv │ │ └── properties.jsonl │ │ └── obo-date │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── ontology-annotations-version-obo-date_classes.csv │ │ ├── ontology-annotations-version-obo-date_edges.csv │ │ ├── ontology-annotations-version-obo-date_individuals.csv │ │ ├── ontology-annotations-version-obo-date_ontologies.csv │ │ ├── ontology-annotations-version-obo-date_properties.csv │ │ └── properties.jsonl ├── owl2-primer │ ├── allDisjointClasses │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-alldisjointclasses_classes.csv │ │ ├── owl2primer-alldisjointclasses_edges.csv │ │ ├── owl2primer-alldisjointclasses_individuals.csv │ │ ├── owl2primer-alldisjointclasses_ontologies.csv │ │ ├── owl2primer-alldisjointclasses_properties.csv │ │ └── properties.jsonl │ ├── allDisjointDataProperties │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-alldisjointdataproperties_classes.csv │ │ ├── owl2primer-alldisjointdataproperties_edges.csv │ │ ├── owl2primer-alldisjointdataproperties_individuals.csv │ │ ├── owl2primer-alldisjointdataproperties_ontologies.csv │ │ ├── owl2primer-alldisjointdataproperties_properties.csv │ │ └── properties.jsonl │ ├── allDisjointObjectProperties │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-alldisjointobjectproperties_classes.csv │ │ ├── owl2primer-alldisjointobjectproperties_edges.csv │ │ ├── owl2primer-alldisjointobjectproperties_individuals.csv │ │ ├── owl2primer-alldisjointobjectproperties_ontologies.csv │ │ ├── owl2primer-alldisjointobjectproperties_properties.csv │ │ └── properties.jsonl │ ├── anonymous-inverse-object-property │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-anonymous-inverse-object-property_classes.csv │ │ ├── owl2primer-anonymous-inverse-object-property_edges.csv │ │ ├── owl2primer-anonymous-inverse-object-property_individuals.csv │ │ ├── owl2primer-anonymous-inverse-object-property_ontologies.csv │ │ ├── owl2primer-anonymous-inverse-object-property_properties.csv │ │ └── properties.jsonl │ ├── asymmetric-object-property │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-asymmetric-object-property_classes.csv │ │ ├── owl2primer-asymmetric-object-property_edges.csv │ │ ├── owl2primer-asymmetric-object-property_individuals.csv │ │ ├── owl2primer-asymmetric-object-property_ontologies.csv │ │ ├── owl2primer-asymmetric-object-property_properties.csv │ │ └── properties.jsonl │ ├── class-assertion │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-class-assertion_classes.csv │ │ ├── owl2primer-class-assertion_edges.csv │ │ ├── owl2primer-class-assertion_individuals.csv │ │ ├── owl2primer-class-assertion_ontologies.csv │ │ ├── owl2primer-class-assertion_properties.csv │ │ └── properties.jsonl │ ├── class-expression-based-on-datatype-restriction │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-class-expression-based-on-datatype-restriction_classes.csv │ │ ├── owl2primer-class-expression-based-on-datatype-restriction_edges.csv │ │ ├── owl2primer-class-expression-based-on-datatype-restriction_individuals.csv │ │ ├── owl2primer-class-expression-based-on-datatype-restriction_ontologies.csv │ │ ├── owl2primer-class-expression-based-on-datatype-restriction_properties.csv │ │ └── properties.jsonl │ ├── class │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-class_classes.csv │ │ ├── owl2primer-class_edges.csv │ │ ├── owl2primer-class_individuals.csv │ │ ├── owl2primer-class_ontologies.csv │ │ ├── owl2primer-class_properties.csv │ │ └── properties.jsonl │ ├── complex-class-assertions-with-negation │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-complex-class-assertions-with-negation_classes.csv │ │ ├── owl2primer-complex-class-assertions-with-negation_edges.csv │ │ ├── owl2primer-complex-class-assertions-with-negation_individuals.csv │ │ ├── owl2primer-complex-class-assertions-with-negation_ontologies.csv │ │ ├── owl2primer-complex-class-assertions-with-negation_properties.csv │ │ └── properties.jsonl │ ├── data-property-assertion │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-data-property-assertion_classes.csv │ │ ├── owl2primer-data-property-assertion_edges.csv │ │ ├── owl2primer-data-property-assertion_individuals.csv │ │ ├── owl2primer-data-property-assertion_ontologies.csv │ │ ├── owl2primer-data-property-assertion_properties.csv │ │ └── properties.jsonl │ ├── data-property-domain-range-restrictions │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── data-property-domain-range-restrictions_classes.csv │ │ ├── data-property-domain-range-restrictions_edges.csv │ │ ├── data-property-domain-range-restrictions_individuals.csv │ │ ├── data-property-domain-range-restrictions_ontologies.csv │ │ ├── data-property-domain-range-restrictions_properties.csv │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ └── properties.jsonl │ ├── dataProperty-functional │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-dataproperty-functional_classes.csv │ │ ├── owl2primer-dataproperty-functional_edges.csv │ │ ├── owl2primer-dataproperty-functional_individuals.csv │ │ ├── owl2primer-dataproperty-functional_ontologies.csv │ │ ├── owl2primer-dataproperty-functional_properties.csv │ │ └── properties.jsonl │ ├── datatype-enumeration │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-datatype-enumeration_classes.csv │ │ ├── owl2primer-datatype-enumeration_edges.csv │ │ ├── owl2primer-datatype-enumeration_individuals.csv │ │ ├── owl2primer-datatype-enumeration_ontologies.csv │ │ ├── owl2primer-datatype-enumeration_properties.csv │ │ └── properties.jsonl │ ├── datatype-exclusion │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-datatype-exclusion_classes.csv │ │ ├── owl2primer-datatype-exclusion_edges.csv │ │ ├── owl2primer-datatype-exclusion_individuals.csv │ │ ├── owl2primer-datatype-exclusion_ontologies.csv │ │ ├── owl2primer-datatype-exclusion_properties.csv │ │ └── properties.jsonl │ ├── datatype-minmax │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-datatype-minmax_classes.csv │ │ ├── owl2primer-datatype-minmax_edges.csv │ │ ├── owl2primer-datatype-minmax_individuals.csv │ │ ├── owl2primer-datatype-minmax_ontologies.csv │ │ ├── owl2primer-datatype-minmax_properties.csv │ │ └── properties.jsonl │ ├── different-individuals │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-different-individuals_classes.csv │ │ ├── owl2primer-different-individuals_edges.csv │ │ ├── owl2primer-different-individuals_individuals.csv │ │ ├── owl2primer-different-individuals_ontologies.csv │ │ ├── owl2primer-different-individuals_properties.csv │ │ └── properties.jsonl │ ├── disjoint-classes │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-disjoint-classes_classes.csv │ │ ├── owl2primer-disjoint-classes_edges.csv │ │ ├── owl2primer-disjoint-classes_individuals.csv │ │ ├── owl2primer-disjoint-classes_ontologies.csv │ │ ├── owl2primer-disjoint-classes_properties.csv │ │ └── properties.jsonl │ ├── disjointUnionOf │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-disjointunionof_classes.csv │ │ ├── owl2primer-disjointunionof_edges.csv │ │ ├── owl2primer-disjointunionof_individuals.csv │ │ ├── owl2primer-disjointunionof_ontologies.csv │ │ ├── owl2primer-disjointunionof_properties.csv │ │ └── properties.jsonl │ ├── enumeration-of-individuals │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-enumeration-of-individuals_classes.csv │ │ ├── owl2primer-enumeration-of-individuals_edges.csv │ │ ├── owl2primer-enumeration-of-individuals_individuals.csv │ │ ├── owl2primer-enumeration-of-individuals_ontologies.csv │ │ ├── owl2primer-enumeration-of-individuals_properties.csv │ │ └── properties.jsonl │ ├── equivalent-intersectionOf-complementOf │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-equivalent-intersectionof-complementof_classes.csv │ │ ├── owl2primer-equivalent-intersectionof-complementof_edges.csv │ │ ├── owl2primer-equivalent-intersectionof-complementof_individuals.csv │ │ ├── owl2primer-equivalent-intersectionof-complementof_ontologies.csv │ │ ├── owl2primer-equivalent-intersectionof-complementof_properties.csv │ │ └── properties.jsonl │ ├── equivalent-intersectionOf │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-equivalent-intersectionof_classes.csv │ │ ├── owl2primer-equivalent-intersectionof_edges.csv │ │ ├── owl2primer-equivalent-intersectionof_individuals.csv │ │ ├── owl2primer-equivalent-intersectionof_ontologies.csv │ │ ├── owl2primer-equivalent-intersectionof_properties.csv │ │ └── properties.jsonl │ ├── equivalent-propertyRestriction-allValuesFrom │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-equivalent-propertyrestriction-allvaluesfrom_classes.csv │ │ ├── owl2primer-equivalent-propertyrestriction-allvaluesfrom_edges.csv │ │ ├── owl2primer-equivalent-propertyrestriction-allvaluesfrom_individuals.csv │ │ ├── owl2primer-equivalent-propertyrestriction-allvaluesfrom_ontologies.csv │ │ ├── owl2primer-equivalent-propertyrestriction-allvaluesfrom_properties.csv │ │ └── properties.jsonl │ ├── equivalent-propertyRestriction-someValuesFrom │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-equivalent-propertyrestriction-somevaluesfrom_classes.csv │ │ ├── owl2primer-equivalent-propertyrestriction-somevaluesfrom_edges.csv │ │ ├── owl2primer-equivalent-propertyrestriction-somevaluesfrom_individuals.csv │ │ ├── owl2primer-equivalent-propertyrestriction-somevaluesfrom_ontologies.csv │ │ ├── owl2primer-equivalent-propertyrestriction-somevaluesfrom_properties.csv │ │ └── properties.jsonl │ ├── equivalentClass-collection │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-equivalentclass-collection_classes.csv │ │ ├── owl2primer-equivalentclass-collection_edges.csv │ │ ├── owl2primer-equivalentclass-collection_individuals.csv │ │ ├── owl2primer-equivalentclass-collection_ontologies.csv │ │ ├── owl2primer-equivalentclass-collection_properties.csv │ │ └── properties.jsonl │ ├── equivalentClass │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-equivalentclass_classes.csv │ │ ├── owl2primer-equivalentclass_edges.csv │ │ ├── owl2primer-equivalentclass_individuals.csv │ │ ├── owl2primer-equivalentclass_ontologies.csv │ │ ├── owl2primer-equivalentclass_properties.csv │ │ └── properties.jsonl │ ├── equivalentObjectProperty │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-equivalentobjectproperty_classes.csv │ │ ├── owl2primer-equivalentobjectproperty_edges.csv │ │ ├── owl2primer-equivalentobjectproperty_individuals.csv │ │ ├── owl2primer-equivalentobjectproperty_ontologies.csv │ │ ├── owl2primer-equivalentobjectproperty_properties.csv │ │ └── properties.jsonl │ ├── functional-data-property │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-functional-data-property_classes.csv │ │ ├── owl2primer-functional-data-property_edges.csv │ │ ├── owl2primer-functional-data-property_individuals.csv │ │ ├── owl2primer-functional-data-property_ontologies.csv │ │ ├── owl2primer-functional-data-property_properties.csv │ │ └── properties.jsonl │ ├── functional-object-property │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-functional-object-property_classes.csv │ │ ├── owl2primer-functional-object-property_edges.csv │ │ ├── owl2primer-functional-object-property_individuals.csv │ │ ├── owl2primer-functional-object-property_ontologies.csv │ │ ├── owl2primer-functional-object-property_properties.csv │ │ └── properties.jsonl │ ├── intersectionOf │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-intersectionof_classes.csv │ │ ├── owl2primer-intersectionof_edges.csv │ │ ├── owl2primer-intersectionof_individuals.csv │ │ ├── owl2primer-intersectionof_ontologies.csv │ │ ├── owl2primer-intersectionof_properties.csv │ │ └── properties.jsonl │ ├── inverse-functional-object-property │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-inverse-inverse-functional-object-property_classes.csv │ │ ├── owl2primer-inverse-inverse-functional-object-property_edges.csv │ │ ├── owl2primer-inverse-inverse-functional-object-property_individuals.csv │ │ ├── owl2primer-inverse-inverse-functional-object-property_ontologies.csv │ │ ├── owl2primer-inverse-inverse-functional-object-property_properties.csv │ │ └── properties.jsonl │ ├── inverse-object-property │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-inverse-object-property_classes.csv │ │ ├── owl2primer-inverse-object-property_edges.csv │ │ ├── owl2primer-inverse-object-property_individuals.csv │ │ ├── owl2primer-inverse-object-property_ontologies.csv │ │ ├── owl2primer-inverse-object-property_properties.csv │ │ └── properties.jsonl │ ├── irreflexive-object-property │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-irreflexive-object-property_classes.csv │ │ ├── owl2primer-irreflexive-object-property_edges.csv │ │ ├── owl2primer-irreflexive-object-property_individuals.csv │ │ ├── owl2primer-irreflexive-object-property_ontologies.csv │ │ ├── owl2primer-irreflexive-object-property_properties.csv │ │ └── properties.jsonl │ ├── key-constraint-on-data-property │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-key-constraint-on-data-property_classes.csv │ │ ├── owl2primer-key-constraint-on-data-property_edges.csv │ │ ├── owl2primer-key-constraint-on-data-property_individuals.csv │ │ ├── owl2primer-key-constraint-on-data-property_ontologies.csv │ │ ├── owl2primer-key-constraint-on-data-property_properties.csv │ │ └── properties.jsonl │ ├── minimal │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-minimal_classes.csv │ │ ├── owl2primer-minimal_edges.csv │ │ ├── owl2primer-minimal_individuals.csv │ │ ├── owl2primer-minimal_ontologies.csv │ │ ├── owl2primer-minimal_properties.csv │ │ └── properties.jsonl │ ├── namedIndividual │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-individual_classes.csv │ │ ├── owl2primer-individual_edges.csv │ │ ├── owl2primer-individual_individuals.csv │ │ ├── owl2primer-individual_ontologies.csv │ │ ├── owl2primer-individual_properties.csv │ │ └── properties.jsonl │ ├── negative-data-property-assertion │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-negative-data-property-assertion_classes.csv │ │ ├── owl2primer-negative-data-property-assertion_edges.csv │ │ ├── owl2primer-negative-data-property-assertion_individuals.csv │ │ ├── owl2primer-negative-data-property-assertion_ontologies.csv │ │ ├── owl2primer-negative-data-property-assertion_properties.csv │ │ └── properties.jsonl │ ├── negative-object-property-assertion │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-negative-object-property-assertion_classes.csv │ │ ├── owl2primer-negative-object-property-assertion_edges.csv │ │ ├── owl2primer-negative-object-property-assertion_individuals.csv │ │ ├── owl2primer-negative-object-property-assertion_ontologies.csv │ │ ├── owl2primer-negative-object-property-assertion_properties.csv │ │ └── properties.jsonl │ ├── object-property-assertion │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-object-property-assertion_classes.csv │ │ ├── owl2primer-object-property-assertion_edges.csv │ │ ├── owl2primer-object-property-assertion_individuals.csv │ │ ├── owl2primer-object-property-assertion_ontologies.csv │ │ ├── owl2primer-object-property-assertion_properties.csv │ │ └── properties.jsonl │ ├── object-property-domain-range-restriction │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-object-property-domain-range-restriction_classes.csv │ │ ├── owl2primer-object-property-domain-range-restriction_edges.csv │ │ ├── owl2primer-object-property-domain-range-restriction_individuals.csv │ │ ├── owl2primer-object-property-domain-range-restriction_ontologies.csv │ │ ├── owl2primer-object-property-domain-range-restriction_properties.csv │ │ └── properties.jsonl │ ├── objectProperty-asymmetric │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-objectproperty-asymmetric_classes.csv │ │ ├── owl2primer-objectproperty-asymmetric_edges.csv │ │ ├── owl2primer-objectproperty-asymmetric_individuals.csv │ │ ├── owl2primer-objectproperty-asymmetric_ontologies.csv │ │ ├── owl2primer-objectproperty-asymmetric_properties.csv │ │ └── properties.jsonl │ ├── objectProperty-disjoint │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-objectproperty-disjoint_classes.csv │ │ ├── owl2primer-objectproperty-disjoint_edges.csv │ │ ├── owl2primer-objectproperty-disjoint_individuals.csv │ │ ├── owl2primer-objectproperty-disjoint_ontologies.csv │ │ ├── owl2primer-objectproperty-disjoint_properties.csv │ │ └── properties.jsonl │ ├── objectProperty-functional │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-objectproperty-functional_classes.csv │ │ ├── owl2primer-objectproperty-functional_edges.csv │ │ ├── owl2primer-objectproperty-functional_individuals.csv │ │ ├── owl2primer-objectproperty-functional_ontologies.csv │ │ ├── owl2primer-objectproperty-functional_properties.csv │ │ └── properties.jsonl │ ├── objectProperty-hasKey │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-objectproperty-haskey_classes.csv │ │ ├── owl2primer-objectproperty-haskey_edges.csv │ │ ├── owl2primer-objectproperty-haskey_individuals.csv │ │ ├── owl2primer-objectproperty-haskey_ontologies.csv │ │ ├── owl2primer-objectproperty-haskey_properties.csv │ │ └── properties.jsonl │ ├── objectProperty-inverse-withoutAssignedName │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-objectproperty-inverse-withoutassignedname_classes.csv │ │ ├── owl2primer-objectproperty-inverse-withoutassignedname_edges.csv │ │ ├── owl2primer-objectproperty-inverse-withoutassignedname_individuals.csv │ │ ├── owl2primer-objectproperty-inverse-withoutassignedname_ontologies.csv │ │ ├── owl2primer-objectproperty-inverse-withoutassignedname_properties.csv │ │ └── properties.jsonl │ ├── objectProperty-inverse │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-objectproperty-inverse_classes.csv │ │ ├── owl2primer-objectproperty-inverse_edges.csv │ │ ├── owl2primer-objectproperty-inverse_individuals.csv │ │ ├── owl2primer-objectproperty-inverse_ontologies.csv │ │ ├── owl2primer-objectproperty-inverse_properties.csv │ │ └── properties.jsonl │ ├── objectProperty-inverseFunctional │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-objectproperty-inversefunctional_classes.csv │ │ ├── owl2primer-objectproperty-inversefunctional_edges.csv │ │ ├── owl2primer-objectproperty-inversefunctional_individuals.csv │ │ ├── owl2primer-objectproperty-inversefunctional_ontologies.csv │ │ ├── owl2primer-objectproperty-inversefunctional_properties.csv │ │ └── properties.jsonl │ ├── objectProperty-irreflexive │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-objectproperty-irreflexive_classes.csv │ │ ├── owl2primer-objectproperty-irreflexive_edges.csv │ │ ├── owl2primer-objectproperty-irreflexive_individuals.csv │ │ ├── owl2primer-objectproperty-irreflexive_ontologies.csv │ │ ├── owl2primer-objectproperty-irreflexive_properties.csv │ │ └── properties.jsonl │ ├── objectProperty-reflexive │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-objectproperty-reflexive_classes.csv │ │ ├── owl2primer-objectproperty-reflexive_edges.csv │ │ ├── owl2primer-objectproperty-reflexive_individuals.csv │ │ ├── owl2primer-objectproperty-reflexive_ontologies.csv │ │ ├── owl2primer-objectproperty-reflexive_properties.csv │ │ └── properties.jsonl │ ├── property-chain │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-property-chain_classes.csv │ │ ├── owl2primer-property-chain_edges.csv │ │ ├── owl2primer-property-chain_individuals.csv │ │ ├── owl2primer-property-chain_ontologies.csv │ │ ├── owl2primer-property-chain_properties.csv │ │ └── properties.jsonl │ ├── propertyRestriction-cardinality │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-propertyrestriction-cardinality_classes.csv │ │ ├── owl2primer-propertyrestriction-cardinality_edges.csv │ │ ├── owl2primer-propertyrestriction-cardinality_individuals.csv │ │ ├── owl2primer-propertyrestriction-cardinality_ontologies.csv │ │ ├── owl2primer-propertyrestriction-cardinality_properties.csv │ │ └── properties.jsonl │ ├── propertyRestriction-maxQualifiedCardinality │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-propertyrestriction-maxqualifiedcardinality_classes.csv │ │ ├── owl2primer-propertyrestriction-maxqualifiedcardinality_edges.csv │ │ ├── owl2primer-propertyrestriction-maxqualifiedcardinality_individuals.csv │ │ ├── owl2primer-propertyrestriction-maxqualifiedcardinality_ontologies.csv │ │ ├── owl2primer-propertyrestriction-maxqualifiedcardinality_properties.csv │ │ └── properties.jsonl │ ├── propertyRestriction-minQualifiedCardinality │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-propertyrestriction-minqualifiedcardinality_classes.csv │ │ ├── owl2primer-propertyrestriction-minqualifiedcardinality_edges.csv │ │ ├── owl2primer-propertyrestriction-minqualifiedcardinality_individuals.csv │ │ ├── owl2primer-propertyrestriction-minqualifiedcardinality_ontologies.csv │ │ ├── owl2primer-propertyrestriction-minqualifiedcardinality_properties.csv │ │ └── properties.jsonl │ ├── propertyRestriction-qualifiedCardinality │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-propertyrestriction-qualifiedcardinality_classes.csv │ │ ├── owl2primer-propertyrestriction-qualifiedcardinality_edges.csv │ │ ├── owl2primer-propertyrestriction-qualifiedcardinality_individuals.csv │ │ ├── owl2primer-propertyrestriction-qualifiedcardinality_ontologies.csv │ │ ├── owl2primer-propertyrestriction-qualifiedcardinality_properties.csv │ │ └── properties.jsonl │ ├── qualified-cardinality-exact-restriction │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-qualified-cardinality-exact-restriction_classes.csv │ │ ├── owl2primer-qualified-cardinality-exact-restriction_edges.csv │ │ ├── owl2primer-qualified-cardinality-exact-restriction_individuals.csv │ │ ├── owl2primer-qualified-cardinality-exact-restriction_ontologies.csv │ │ ├── owl2primer-qualified-cardinality-exact-restriction_properties.csv │ │ └── properties.jsonl │ ├── qualified-cardinality-max-restriction │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-qualified-cardinality-max-restriction_classes.csv │ │ ├── owl2primer-qualified-cardinality-max-restriction_edges.csv │ │ ├── owl2primer-qualified-cardinality-max-restriction_individuals.csv │ │ ├── owl2primer-qualified-cardinality-max-restriction_ontologies.csv │ │ ├── owl2primer-qualified-cardinality-max-restriction_properties.csv │ │ └── properties.jsonl │ ├── qualified-cardinality-min-restriction │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-qualified-cardinality-min-restriction_classes.csv │ │ ├── owl2primer-qualified-cardinality-min-restriction_edges.csv │ │ ├── owl2primer-qualified-cardinality-min-restriction_individuals.csv │ │ ├── owl2primer-qualified-cardinality-min-restriction_ontologies.csv │ │ ├── owl2primer-qualified-cardinality-min-restriction_properties.csv │ │ └── properties.jsonl │ ├── reflexive-object-property │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-reflexive-object-property_classes.csv │ │ ├── owl2primer-reflexive-object-property_edges.csv │ │ ├── owl2primer-reflexive-object-property_individuals.csv │ │ ├── owl2primer-reflexive-object-property_ontologies.csv │ │ ├── owl2primer-reflexive-object-property_properties.csv │ │ └── properties.jsonl │ ├── same-individual │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-same-individual_classes.csv │ │ ├── owl2primer-same-individual_edges.csv │ │ ├── owl2primer-same-individual_individuals.csv │ │ ├── owl2primer-same-individual_ontologies.csv │ │ ├── owl2primer-same-individual_properties.csv │ │ └── properties.jsonl │ ├── self-restriction │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-self-restriction_classes.csv │ │ ├── owl2primer-self-restriction_edges.csv │ │ ├── owl2primer-self-restriction_individuals.csv │ │ ├── owl2primer-self-restriction_ontologies.csv │ │ ├── owl2primer-self-restriction_properties.csv │ │ └── properties.jsonl │ ├── sub-object-property │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-sub-object-property_classes.csv │ │ ├── owl2primer-sub-object-property_edges.csv │ │ ├── owl2primer-sub-object-property_individuals.csv │ │ ├── owl2primer-sub-object-property_ontologies.csv │ │ ├── owl2primer-sub-object-property_properties.csv │ │ └── properties.jsonl │ ├── subClassOf-intersectionOf │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-subclassof-intersectionof_classes.csv │ │ ├── owl2primer-subclassof-intersectionof_edges.csv │ │ ├── owl2primer-subclassof-intersectionof_individuals.csv │ │ ├── owl2primer-subclassof-intersectionof_ontologies.csv │ │ ├── owl2primer-subclassof-intersectionof_properties.csv │ │ └── properties.jsonl │ ├── subClassOf │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-subclassof_classes.csv │ │ ├── owl2primer-subclassof_edges.csv │ │ ├── owl2primer-subclassof_individuals.csv │ │ ├── owl2primer-subclassof_ontologies.csv │ │ ├── owl2primer-subclassof_properties.csv │ │ └── properties.jsonl │ ├── symmetric-object-property │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-symmetric-object-property_classes.csv │ │ ├── owl2primer-symmetric-object-property_edges.csv │ │ ├── owl2primer-symmetric-object-property_individuals.csv │ │ ├── owl2primer-symmetric-object-property_ontologies.csv │ │ ├── owl2primer-symmetric-object-property_properties.csv │ │ └── properties.jsonl │ ├── transitive-object-property │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-transitive-object-property_classes.csv │ │ ├── owl2primer-transitive-object-property_edges.csv │ │ ├── owl2primer-transitive-object-property_individuals.csv │ │ ├── owl2primer-transitive-object-property_ontologies.csv │ │ ├── owl2primer-transitive-object-property_properties.csv │ │ └── properties.jsonl │ ├── unionOf │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-unionof_classes.csv │ │ ├── owl2primer-unionof_edges.csv │ │ ├── owl2primer-unionof_individuals.csv │ │ ├── owl2primer-unionof_ontologies.csv │ │ ├── owl2primer-unionof_properties.csv │ │ └── properties.jsonl │ ├── unqualified-cardinality-exact-restriction │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-unqualified-cardinality-exact-restriction_classes.csv │ │ ├── owl2primer-unqualified-cardinality-exact-restriction_edges.csv │ │ ├── owl2primer-unqualified-cardinality-exact-restriction_individuals.csv │ │ ├── owl2primer-unqualified-cardinality-exact-restriction_ontologies.csv │ │ ├── owl2primer-unqualified-cardinality-exact-restriction_properties.csv │ │ └── properties.jsonl │ ├── user-defined-data-type │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-user-defined-data-type_classes.csv │ │ ├── owl2primer-user-defined-data-type_edges.csv │ │ ├── owl2primer-user-defined-data-type_individuals.csv │ │ ├── owl2primer-user-defined-data-type_ontologies.csv │ │ ├── owl2primer-user-defined-data-type_properties.csv │ │ └── properties.jsonl │ └── value-restriction-on-individual │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── owl2primer-value-restriction-on-individual_classes.csv │ │ ├── owl2primer-value-restriction-on-individual_edges.csv │ │ ├── owl2primer-value-restriction-on-individual_individuals.csv │ │ ├── owl2primer-value-restriction-on-individual_ontologies.csv │ │ ├── owl2primer-value-restriction-on-individual_properties.csv │ │ └── properties.jsonl ├── punning │ └── class-individual │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── properties.jsonl │ │ ├── punning-class-individual_classes.csv │ │ ├── punning-class-individual_edges.csv │ │ ├── punning-class-individual_individuals.csv │ │ ├── punning-class-individual_ontologies.csv │ │ └── punning-class-individual_properties.csv ├── reification │ └── reified-bnode │ │ ├── autocomplete.jsonl │ │ ├── classes.jsonl │ │ ├── individuals.jsonl │ │ ├── ontologies.json │ │ ├── ontologies.jsonl │ │ ├── ontologies_linked.json │ │ ├── properties.jsonl │ │ ├── reified-bnode_classes.csv │ │ ├── reified-bnode_edges.csv │ │ ├── reified-bnode_individuals.csv │ │ ├── reified-bnode_ontologies.csv │ │ └── reified-bnode_properties.csv └── related │ ├── hasValue │ ├── autocomplete.jsonl │ ├── classes.jsonl │ ├── individuals.jsonl │ ├── ontologies.json │ ├── ontologies.jsonl │ ├── ontologies_linked.json │ ├── properties.jsonl │ ├── related-hasvalue_classes.csv │ ├── related-hasvalue_edges.csv │ ├── related-hasvalue_individuals.csv │ ├── related-hasvalue_ontologies.csv │ └── related-hasvalue_properties.csv │ ├── oneOf │ ├── autocomplete.jsonl │ ├── classes.jsonl │ ├── individuals.jsonl │ ├── ontologies.json │ ├── ontologies.jsonl │ ├── ontologies_linked.json │ ├── properties.jsonl │ ├── related-oneof_classes.csv │ ├── related-oneof_edges.csv │ ├── related-oneof_individuals.csv │ ├── related-oneof_ontologies.csv │ └── related-oneof_properties.csv │ ├── someValuesOf-fillerAnonymousConjunction │ ├── autocomplete.jsonl │ ├── classes.jsonl │ ├── individuals.jsonl │ ├── ontologies.json │ ├── ontologies.jsonl │ ├── ontologies_linked.json │ ├── properties.jsonl │ ├── related-somevaluesof-filleranonymousconjunction_classes.csv │ ├── related-somevaluesof-filleranonymousconjunction_edges.csv │ ├── related-somevaluesof-filleranonymousconjunction_individuals.csv │ ├── related-somevaluesof-filleranonymousconjunction_ontologies.csv │ └── related-somevaluesof-filleranonymousconjunction_properties.csv │ ├── someValuesOf-fillerAnonymousDisjunction │ ├── autocomplete.jsonl │ ├── classes.jsonl │ ├── individuals.jsonl │ ├── ontologies.json │ ├── ontologies.jsonl │ ├── ontologies_linked.json │ ├── properties.jsonl │ ├── related-somevaluesof-filleranonymousdisjunction_classes.csv │ ├── related-somevaluesof-filleranonymousdisjunction_edges.csv │ ├── related-somevaluesof-filleranonymousdisjunction_individuals.csv │ ├── related-somevaluesof-filleranonymousdisjunction_ontologies.csv │ └── related-somevaluesof-filleranonymousdisjunction_properties.csv │ ├── someValuesOf-fillerNestedAnonymousConjunction │ ├── autocomplete.jsonl │ ├── classes.jsonl │ ├── individuals.jsonl │ ├── ontologies.json │ ├── ontologies.jsonl │ ├── ontologies_linked.json │ ├── properties.jsonl │ ├── related-somevaluesof-fillernestedanonymousconjunction_classes.csv │ ├── related-somevaluesof-fillernestedanonymousconjunction_edges.csv │ ├── related-somevaluesof-fillernestedanonymousconjunction_individuals.csv │ ├── related-somevaluesof-fillernestedanonymousconjunction_ontologies.csv │ └── related-somevaluesof-fillernestedanonymousconjunction_properties.csv │ ├── someValuesOf-hierarchical-relatedToSelf │ ├── autocomplete.jsonl │ ├── classes.jsonl │ ├── individuals.jsonl │ ├── ontologies.json │ ├── ontologies.jsonl │ ├── ontologies_linked.json │ ├── properties.jsonl │ ├── related-somevaluesof-hierarchical-relatedtoself_classes.csv │ ├── related-somevaluesof-hierarchical-relatedtoself_edges.csv │ ├── related-somevaluesof-hierarchical-relatedtoself_individuals.csv │ ├── related-somevaluesof-hierarchical-relatedtoself_ontologies.csv │ └── related-somevaluesof-hierarchical-relatedtoself_properties.csv │ ├── someValuesOf-hierarchical │ ├── autocomplete.jsonl │ ├── classes.jsonl │ ├── individuals.jsonl │ ├── ontologies.json │ ├── ontologies.jsonl │ ├── ontologies_linked.json │ ├── properties.jsonl │ ├── related-somevaluesof-hierarchical_classes.csv │ ├── related-somevaluesof-hierarchical_edges.csv │ ├── related-somevaluesof-hierarchical_individuals.csv │ ├── related-somevaluesof-hierarchical_ontologies.csv │ └── related-somevaluesof-hierarchical_properties.csv │ ├── someValuesOf-oneOf │ ├── autocomplete.jsonl │ ├── classes.jsonl │ ├── individuals.jsonl │ ├── ontologies.json │ ├── ontologies.jsonl │ ├── ontologies_linked.json │ ├── properties.jsonl │ ├── related-somevaluesof-oneof_classes.csv │ ├── related-somevaluesof-oneof_edges.csv │ ├── related-somevaluesof-oneof_individuals.csv │ ├── related-somevaluesof-oneof_ontologies.csv │ └── related-somevaluesof-oneof_properties.csv │ └── someValuesOf │ ├── autocomplete.jsonl │ ├── classes.jsonl │ ├── individuals.jsonl │ ├── ontologies.json │ ├── ontologies.jsonl │ ├── ontologies_linked.json │ ├── properties.jsonl │ ├── related-somevaluesof_classes.csv │ ├── related-somevaluesof_edges.csv │ ├── related-somevaluesof_individuals.csv │ ├── related-somevaluesof_ontologies.csv │ └── related-somevaluesof_properties.csv └── testcases_expected_output_api ├── ontologies.json ├── ontologies ├── annotation-properties-simple │ ├── entities │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fannotation-properties%252Fsimple.owl%2523MyAnnotationProperty.json │ ├── individuals.json │ ├── properties.json │ ├── properties │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fannotation-properties%252Fsimple.owl%2523MyAnnotationProperty.json │ └── terms.json ├── base_uri │ ├── individuals.json │ ├── properties.json │ └── terms.json ├── data-property-domain-range-restrictions │ ├── classes │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdata-property-domain-range-restrictions.rdf%2523Person.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdata-property-domain-range-restrictions.rdf%2523Person.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdata-property-domain-range-restrictions.rdf%2523hasAge.json │ ├── individuals.json │ ├── properties.json │ ├── properties │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdata-property-domain-range-restrictions.rdf%2523hasAge.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdata-property-domain-range-restrictions.rdf%2523Person.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdata-property-domain-range-restrictions.rdf%2523Person │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── definition-multiple │ ├── classes │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FDefinitionMultiple.owl%2523Definition-Multiple_0001.json │ ├── entities │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FDefinitionMultiple.owl%2523Definition-Multiple_0001.json │ ├── individuals.json │ ├── properties.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FDefinitionMultiple.owl%2523Definition-Multiple_0001.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FDefinitionMultiple.owl%2523Definition-Multiple_0001 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── definition-single │ ├── classes │ │ └── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Thing.json │ ├── entities │ │ └── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Thing.json │ ├── individuals.json │ ├── properties.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Thing.json │ │ └── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Thing │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── direct-parent-with-annotation-axiom │ ├── classes │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002259.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005039.json │ │ └── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005151.json │ ├── entities │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000115.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002259.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005039.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005151.json │ │ └── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523source.json │ ├── individuals.json │ ├── properties.json │ ├── properties │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000115.json │ │ └── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523source.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002259.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002259 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005039.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005039 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005151.json │ │ └── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005151 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── duo │ ├── classes │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000008.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000032.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000033.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000522.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000524.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000796.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000001.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000002.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000003.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000004.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000006.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000008.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000009.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000011.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000015.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000016.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000017.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000018.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000019.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000020.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000023.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000024.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000026.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000027.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000028.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000029.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000030.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000031.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000034.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000035.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000038.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000040.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000140.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000141.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000142.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000144.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000145.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000146.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000147.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000148.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000182.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000001.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000004.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_00000044.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000006.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000007.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000011.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000012.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000015.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000016.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000017.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000018.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000019.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000020.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000021.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000022.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000024.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000025.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000026.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000027.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000028.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000029.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000031.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000032.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000033.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000034.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000035.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000036.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000037.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000038.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000039.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000040.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000042.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000043.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000045.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000046.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGAZ_00000448.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000001.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000003.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000005.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000006.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000007.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000009.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000010.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000013.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000015.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000017.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000025.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000027.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000028.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000029.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000030.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000031.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000032.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000033.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000034.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000037.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000038.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000055.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000057.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000064.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000065.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000078.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000079.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000088.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000096.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000098.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000100.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000101.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000102.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000104.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000109.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000129.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000131.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000132.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000140.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000144.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000178.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000179.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000180.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000181.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000183.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000184.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000185.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000186.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000225.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000300.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000301.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000302.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000303.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000304.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000305.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000306.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000307.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000308.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000309.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000310.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000311.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000312.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000313.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000314.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000315.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000316.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000317.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000318.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000319.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000320.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000321.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000322.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000323.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000324.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000325.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000326.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000327.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000328.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000329.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000330.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000400.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000401.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000402.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000403.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000408.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000409.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000414.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000415.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000416.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000422.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000429.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000442.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000443.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000444.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000445.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000572.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000573.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000574.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000575.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000577.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000578.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000579.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000580.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000582.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000584.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000590.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000591.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000592.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000593.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000594.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000595.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000605.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000606.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000607.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000608.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000609.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000610.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000611.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000612.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000613.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000614.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000615.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000616.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000617.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000618.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000619.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000620.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000621.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000622.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000623.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000624.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000625.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000626.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000627.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000628.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000629.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000630.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000631.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000632.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000633.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000634.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000635.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000636.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000637.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000638.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000639.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000640.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000641.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000642.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000643.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000644.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000645.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000646.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000647.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000648.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000650.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000701.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000702.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000703.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000704.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000705.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000706.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000707.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000708.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020000.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020001.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020010.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020015.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020016.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020017.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020020.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000000.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000001.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000002.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000003.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000004.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000005.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000006.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000007.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000008.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000009.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000010.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000011.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000012.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000013.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000014.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000015.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000016.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000017.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000018.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000019.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000020.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0000001.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0000011.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0000066.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0000471.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0200000.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0500000.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000051.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000122.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000125.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001018.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001241.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUO_0000001.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUO_0000002.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUO_0000003.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252Ftopic_0003.json │ │ └── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass.json │ ├── entities │ │ ├── http%253A%252F%252Fprotege.stanford.edu%252Fplugins%252Fowl%252Fprotege%2523defaultLanguage.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000008.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000032.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000033.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000522.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000524.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000796.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000001.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000002.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000003.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000004.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000006.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000008.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000009.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000011.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000015.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000016.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000017.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000018.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000019.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000020.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000023.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000024.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000026.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000027.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000028.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000029.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000030.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000031.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000034.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000035.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000038.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000040.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000050.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000051.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000054.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000055.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000066.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000067.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000140.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000141.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000142.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000144.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000145.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000146.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000147.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000148.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000179.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000180.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000182.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000001.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000004.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_00000044.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000006.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000007.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000010.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000011.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000012.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000015.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000016.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000017.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000018.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000019.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000020.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000021.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000022.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000024.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000025.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000026.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000027.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000028.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000029.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000031.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000032.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000033.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000034.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000035.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000036.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000037.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000038.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000039.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000040.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000041.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000042.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000043.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000045.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000046.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGAZ_00000448.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000001.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000002.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000003.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000004.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000005.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000006.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000007.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000009.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000010.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000013.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000015.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000017.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000025.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000027.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000028.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000029.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000030.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000031.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000032.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000033.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000034.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000037.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000038.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000039.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000055.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000057.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000064.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000065.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000078.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000079.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000088.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000096.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000098.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000100.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000101.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000102.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000103.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000104.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000109.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000111.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000112.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000113.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000114.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000115.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000116.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000117.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000118.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000119.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000120.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000121.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000122.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000123.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000124.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000125.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000129.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000131.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000132.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000136.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000140.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000142.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000143.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000144.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000178.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000179.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000180.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000181.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000183.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000184.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000185.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000186.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000219.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000221.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000225.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000226.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000227.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000228.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000229.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000231.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000232.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000233.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000234.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000235.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000300.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000301.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000302.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000303.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000304.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000305.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000306.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000307.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000308.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000309.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000310.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000311.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000312.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000313.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000314.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000315.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000316.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000317.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000318.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000319.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000320.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000321.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000322.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000323.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000324.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000325.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000326.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000327.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000328.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000329.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000330.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000400.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000401.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000402.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000403.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000404.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000405.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000406.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000407.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000408.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000409.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000410.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000411.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000412.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000413.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000414.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000415.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000416.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000417.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000418.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000419.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000420.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000421.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000422.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000423.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000424.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000425.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000426.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000427.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000428.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000429.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000442.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000443.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000444.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000445.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000572.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000573.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000574.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000575.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000577.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000578.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000579.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000580.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000581.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000582.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000583.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000584.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000589.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000590.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000591.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000592.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000593.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000594.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000595.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000596.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000597.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000598.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000599.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000600.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000601.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000602.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000603.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000604.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000605.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000606.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000607.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000608.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000609.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000610.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000611.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000612.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000613.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000614.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000615.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000616.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000617.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000618.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000619.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000620.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000621.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000622.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000623.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000624.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000625.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000626.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000627.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000628.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000629.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000630.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000631.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000632.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000633.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000634.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000635.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000636.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000637.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000638.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000639.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000640.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000641.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000642.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000643.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000644.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000645.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000646.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000647.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000648.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000650.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000700.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000701.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000702.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000703.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000704.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000705.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000706.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000707.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000708.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0006011.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0006012.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0010000.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020000.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020001.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020010.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020015.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020016.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020017.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020020.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0100001.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000000.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000001.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000002.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000003.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000004.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000005.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000006.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000007.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000008.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000009.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000010.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000011.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000012.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000013.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000014.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000015.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000016.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000017.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000018.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000019.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000020.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0000001.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0000011.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0000066.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0000293.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0000295.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0000299.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0000312.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0000471.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0200000.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0500000.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOMO_0001000.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOMO_0001001.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOMO_0002000.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000051.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000122.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000125.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001018.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001241.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000052.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000053.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000056.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000057.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000058.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000059.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000079.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000080.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000081.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000085.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000086.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000087.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000091.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000092.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0001000.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0001001.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0001015.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0001025.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0001900.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002000.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002002.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002350.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002351.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUO_0000001.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUO_0000002.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUO_0000003.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252Ftopic_0003.json │ │ ├── http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fcontributor.json │ │ ├── http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fcoverage.json │ │ ├── http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fcreator.json │ │ ├── http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fdate.json │ │ ├── http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fdescription.json │ │ ├── http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fformat.json │ │ ├── http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fidentifier.json │ │ ├── http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Flanguage.json │ │ ├── http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fmember.json │ │ ├── http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fpublisher.json │ │ ├── http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Frelation.json │ │ ├── http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Frights.json │ │ ├── http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fsource.json │ │ ├── http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fsubject.json │ │ ├── http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Ftitle.json │ │ ├── http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Ftype.json │ │ ├── http%253A%252F%252Fpurl.org%252Fdc%252Fterms%252Flicense.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteProperty.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523created_by.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523creation_date.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasBroadSynonym.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDbXref.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasExactSynonym.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasNarrowSynonym.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasRelatedSynonym.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523id.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523shorthand.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523comment.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523isDefinedBy.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523label.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523seeAlso.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523exactMatch.json │ │ ├── http%253A%252F%252Fxmlns.com%252Ffoaf%252F0.1%252Fhomepage.json │ │ ├── http%253A%252F%252Fxmlns.com%252Ffoaf%252F0.1%252Fmbox.json │ │ └── http%253A%252F%252Fxmlns.com%252Ffoaf%252F0.1%252Fpage.json │ ├── individuals.json │ ├── individuals │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000002.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000103.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000120.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000121.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000122.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000123.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000124.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000125.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000224.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000226.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000227.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000228.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000229.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000230.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000410.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000420.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000421.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000423.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000428.json │ │ └── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOMO_0001000.json │ ├── properties.json │ ├── properties │ │ ├── http%253A%252F%252Fprotege.stanford.edu%252Fplugins%252Fowl%252Fprotege%2523defaultLanguage.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000050.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000051.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000054.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000055.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000066.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000067.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000179.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000180.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000010.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000041.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000004.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000039.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000111.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000112.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000113.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000114.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000115.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000116.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000117.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000118.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000119.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000135.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000136.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000142.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000143.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000219.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000220.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000221.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000222.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000223.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000231.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000232.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000233.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000234.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000235.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000404.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000405.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000406.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000407.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000411.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000412.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000413.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000417.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000418.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000419.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000424.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000425.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000426.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000427.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000581.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000583.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000589.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000596.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000597.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000598.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000599.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000600.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000601.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000602.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000603.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000604.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000700.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0006011.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0006012.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0010000.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0100001.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0000293.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0000295.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0000299.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0000312.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOMO_0001001.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOMO_0002000.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000052.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000053.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000056.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000057.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000058.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000059.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000079.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000080.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000081.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000085.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000086.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000087.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000091.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000092.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0001000.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0001001.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0001015.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0001025.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0001900.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002000.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002002.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002350.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002351.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004096.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004097.json │ │ ├── http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fcontributor.json │ │ ├── http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fcoverage.json │ │ ├── http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fcreator.json │ │ ├── http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fdate.json │ │ ├── http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fdescription.json │ │ ├── http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fformat.json │ │ ├── http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fidentifier.json │ │ ├── http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Flanguage.json │ │ ├── http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fmember.json │ │ ├── http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fpublisher.json │ │ ├── http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Frelation.json │ │ ├── http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Frights.json │ │ ├── http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fsource.json │ │ ├── http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fsubject.json │ │ ├── http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Ftitle.json │ │ ├── http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Ftype.json │ │ ├── http%253A%252F%252Fpurl.org%252Fdc%252Fterms%252Flicense.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteProperty.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523created_by.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523creation_date.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasBroadSynonym.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDbXref.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasExactSynonym.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasNarrowSynonym.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasRelatedSynonym.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523id.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523shorthand.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523comment.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523isDefinedBy.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523label.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523seeAlso.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523exactMatch.json │ │ ├── http%253A%252F%252Fxmlns.com%252Ffoaf%252F0.1%252Fhomepage.json │ │ ├── http%253A%252F%252Fxmlns.com%252Ffoaf%252F0.1%252Fmbox.json │ │ └── http%253A%252F%252Fxmlns.com%252Ffoaf%252F0.1%252Fpage.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000008.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000008 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000032.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000032 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000033.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000033 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000522.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000522 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000524.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000524 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000796.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000796 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000001.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000001 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000002.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000002 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000003.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000003 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000004.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000004 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000006.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000006 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000008.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000008 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000009.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000009 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000011.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000011 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000015.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000015 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000016.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000016 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000017.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000017 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000018.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000018 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000019.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000019 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000020.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000020 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000023.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000023 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000024.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000024 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000026.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000026 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000027.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000027 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000028.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000028 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000029.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000029 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000030.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000030 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000031.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000031 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000034.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000034 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000035.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000035 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000038.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000038 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000040.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000040 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000140.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000140 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000141.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000141 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000142.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000142 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000144.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000144 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000145.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000145 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000146.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000146 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000147.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000147 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000148.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000148 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000182.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000182 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000001.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000001 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000002.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000002 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000003.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000003 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000004.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000004 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_00000044.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_00000044 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000005.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000005 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000006.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000006 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000007.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000007 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000011.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000011 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000012.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000012 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000014.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000014 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000015.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000015 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000016.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000016 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000017.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000017 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000018.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000018 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000019.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000019 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000020.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000020 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000021.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000021 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000022.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000022 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000024.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000024 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000025.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000025 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000026.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000026 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000027.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000027 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000028.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000028 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000029.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000029 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000031.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000031 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000032.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000032 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000033.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000033 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000034.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000034 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000035.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000035 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000036.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000036 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000037.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000037 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000038.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000038 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000039.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000039 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000040.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000040 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000042.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000042 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000043.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000043 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000045.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000045 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000046.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000046 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGAZ_00000448.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGAZ_00000448 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000001.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000001 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000003.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000003 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000005.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000005 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000006.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000006 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000007.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000007 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000008.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000008 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000009.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000009 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000010.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000010 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000012.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000012 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000013.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000013 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000015.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000015 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000017.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000017 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000018.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000018 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000019.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000019 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000024.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000024 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000025.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000025 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000027.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000027 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000028.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000028 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000029.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000029 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000030.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000030 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000031.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000031 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000032.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000032 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000033.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000033 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000034.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000034 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000035.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000035 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000037.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000037 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000038.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000038 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000047.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000047 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000055.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000055 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000057.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000057 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000059.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000059 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000064.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000064 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000065.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000065 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000078.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000078 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000079.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000079 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000088.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000088 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000091.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000091 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000093.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000093 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000096.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000096 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000097.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000097 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000098.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000098 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000100.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000100 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000101.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000101 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000102.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000102 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000104.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000104 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000105.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000105 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000109.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000109 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000128.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000128 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000129.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000129 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000131.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000131 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000132.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000132 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000140.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000140 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000141.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000141 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000144.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000144 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000178.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000178 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000179.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000179 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000180.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000180 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000181.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000181 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000182.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000182 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000183.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000183 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000184.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000184 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000185.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000185 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000186.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000186 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000225.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000225 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000300.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000300 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000301.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000301 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000302.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000302 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000303.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000303 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000304.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000304 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000305.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000305 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000306.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000306 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000307.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000307 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000308.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000308 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000309.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000309 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000310.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000310 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000311.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000311 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000312.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000312 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000313.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000313 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000314.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000314 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000315.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000315 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000316.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000316 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000317.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000317 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000318.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000318 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000319.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000319 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000320.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000320 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000321.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000321 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000322.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000322 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000323.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000323 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000324.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000324 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000325.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000325 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000326.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000326 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000327.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000327 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000328.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000328 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000329.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000329 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000330.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000330 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000400.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000400 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000401.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000401 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000402.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000402 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000403.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000403 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000408.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000408 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000409.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000409 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000414.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000414 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000415.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000415 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000416.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000416 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000422.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000422 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000429.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000429 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000442.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000442 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000443.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000443 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000444.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000444 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000445.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000445 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000572.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000572 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000573.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000573 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000574.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000574 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000575.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000575 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000576.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000576 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000577.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000577 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000578.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000578 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000579.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000579 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000580.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000580 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000582.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000582 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000584.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000584 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000590.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000590 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000591.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000591 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000592.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000592 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000593.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000593 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000594.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000594 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000595.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000595 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000605.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000605 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000606.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000606 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000607.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000607 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000608.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000608 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000609.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000609 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000610.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000610 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000611.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000611 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000612.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000612 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000613.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000613 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000614.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000614 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000615.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000615 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000616.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000616 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000617.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000617 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000618.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000618 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000619.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000619 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000620.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000620 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000621.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000621 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000622.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000622 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000623.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000623 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000624.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000624 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000625.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000625 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000626.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000626 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000627.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000627 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000628.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000628 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000629.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000629 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000630.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000630 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000631.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000631 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000632.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000632 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000633.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000633 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000634.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000634 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000635.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000635 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000636.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000636 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000637.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000637 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000638.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000638 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000639.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000639 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000640.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000640 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000641.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000641 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000642.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000642 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000643.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000643 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000644.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000644 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000645.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000645 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000646.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000646 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000647.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000647 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000648.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000648 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000650.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000650 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000701.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000701 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000702.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000702 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000703.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000703 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000704.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000704 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000705.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000705 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000706.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000706 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000707.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000707 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000708.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000708 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020000.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020000 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020001.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020001 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020010.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020010 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020015.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020015 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020016.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020016 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020017.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020017 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020020.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020020 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000000.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000000 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000001.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000001 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000002.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000002 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000003.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000003 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000004.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000004 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000005.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000005 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000006.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000006 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000007.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000007 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000008.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000008 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000009.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000009 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000010.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000010 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000011.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000011 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000012.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000012 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000013.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000013 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000014.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000014 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000015.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000015 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000016.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000016 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000017.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000017 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000018.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000018 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000019.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000019 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000020.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000020 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0000001.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0000001 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0000011.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0000011 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0000066.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0000066 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0000471.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0000471 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0200000.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0200000 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0500000.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0500000 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000051.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000051 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000122.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000122 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000125.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000125 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001018.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001018 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001241.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001241 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUO_0000001.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUO_0000001 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUO_0000002.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUO_0000002 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUO_0000003.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUO_0000003 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252Ftopic_0003.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252Ftopic_0003 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass.json │ │ └── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── efo-hierarchical-properties │ ├── classes │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000467.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000468.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000483.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000916.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000949.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001007.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001009.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001193.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001281.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001637.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001638.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001639.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001981.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001982.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001986.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002049.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002100.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002107.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002368.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002423.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002530.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0004535.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0004647.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0006841.json │ │ └── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0013702.json │ ├── entities │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000050.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000051.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000111.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000112.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000115.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000116.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000118.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000232.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0001900.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002174.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0040042.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000467.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000468.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000483.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000916.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000949.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001007.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001009.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001193.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001281.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001637.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001638.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001639.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001981.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001982.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001986.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002049.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002100.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002107.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002368.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002423.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002530.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0004535.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0004647.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0006841.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0013702.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBPROP_0000001.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBPROP_0000002.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBPROP_0000003.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBPROP_0000007.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBPROP_0000008.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBPROP_0000009.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBPROP_0000010.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBPROP_0000012.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBPROP_0000202.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Fefo%252FEFO_URI.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523date_retrieved.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523external_class.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523external_ontology.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasAlternativeId.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasBroadSynonym.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDbXref.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasExactSynonym.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasOBONamespace.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasRelatedSynonym.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasSynonymType.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523id.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523inSubset.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523notes.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ontology.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523shorthand.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523source.json │ │ └── http%253A%252F%252Fxmlns.com%252Ffoaf%252F0.1%252Fdepicted_by.json │ ├── individuals.json │ ├── properties.json │ ├── properties │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000050.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000051.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000111.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000112.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000115.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000116.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000118.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000232.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0001900.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002174.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0040042.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBPROP_0000001.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBPROP_0000002.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBPROP_0000003.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBPROP_0000007.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBPROP_0000008.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBPROP_0000009.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBPROP_0000010.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBPROP_0000012.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBPROP_0000202.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Fefo%252FEFO_URI.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523date_retrieved.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523external_class.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523external_ontology.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasAlternativeId.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasBroadSynonym.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDbXref.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasExactSynonym.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasOBONamespace.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasRelatedSynonym.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasSynonymType.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523id.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523inSubset.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523notes.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ontology.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523shorthand.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523source.json │ │ └── http%253A%252F%252Fxmlns.com%252Ffoaf%252F0.1%252Fdepicted_by.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000467.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000467 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000468.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000468 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000483.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000483 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000916.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000916 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000949.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000949 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001007.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001007 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001009.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001009 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001193.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001193 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001281.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001281 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001637.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001637 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001638.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001638 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001639.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001639 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001981.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001981 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001982.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001982 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001986.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001986 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002049.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002049 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002100.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002100 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002107.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002107 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002368.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002368 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002423.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002423 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002530.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002530 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0004535.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0004535 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0004647.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0004647 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0006841.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0006841 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0013702.json │ │ └── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0013702 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── efo-iri-labels │ ├── classes │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0006807.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0008150.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOGMS_0000063.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Fefo%252FEFO_0000400.json │ ├── entities │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000051.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000054.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0006807.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0008150.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOGMS_0000063.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Fefo%252FEFO_0000400.json │ ├── individuals.json │ ├── properties.json │ ├── properties │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000051.json │ │ └── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000054.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0006807.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0006807 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0008150.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0008150 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOGMS_0000063.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOGMS_0000063 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Fefo%252FEFO_0000400.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Fefo%252FEFO_0000400 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── genepio │ ├── classes │ │ └── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGENEPIO_0002113.json │ ├── entities │ │ └── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGENEPIO_0002113.json │ ├── individuals.json │ ├── properties.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGENEPIO_0002113.json │ │ └── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGENEPIO_0002113 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── gitissue502 │ ├── classes │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000002.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000003.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000004.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000015.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000016.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000017.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000019.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000020.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000023.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000034.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000040.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000141.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000000.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000003.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000039.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000211.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000255.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000393.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000404.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000540.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000548.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000586.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0002319.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0002371.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0000003.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001508.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001704.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001705.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001706.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001707.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001838.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001841.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0002009.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0003008.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0005102.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0005179.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0005183.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0005515.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0006810.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0006811.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007154.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007165.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007267.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007268.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007275.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007276.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007369.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007398.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007399.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007492.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007498.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0008150.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009566.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009653.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009790.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009791.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009792.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009888.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009914.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009987.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0010817.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0016301.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0016331.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0019226.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0019953.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0021915.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0022414.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0023052.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0023061.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0030545.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0030546.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0032501.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0032502.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0032504.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0032940.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0034220.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0035148.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0035239.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0035295.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0038023.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0040016.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0042391.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0043009.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0045202.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0046879.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0046903.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048018.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048332.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048513.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048598.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048609.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048646.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048729.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048731.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048856.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0050789.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0050794.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0050877.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0050896.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0051179.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0051234.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0051301.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0051716.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0055085.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0060429.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0060562.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0065007.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0065008.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0072175.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0098772.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0098916.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0099536.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0099537.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0140352.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0140677.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FHP_0001513.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0000001.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002146.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002254.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002259.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002263.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002320.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003847.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003916.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005039.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005071.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005137.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005151.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0008300.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0011122.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015127.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015160.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015330.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015514.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015770.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015860.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016072.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016565.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0018555.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019040.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019042.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019182.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019755.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019824.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021125.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021126.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021127.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021135.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021136.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021139.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021140.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021147.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021149.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021152.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100038.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100500.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700092.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700096.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_110814.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_110815.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_117570.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_117571.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_1312402.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_131567.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_1338369.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_1437010.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_1547233.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_207598.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_2759.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_314146.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_314293.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_314295.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_32523.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_32524.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_32525.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_33154.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_33208.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_33213.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_33511.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_376913.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_40674.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_6040.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_6072.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_7711.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_7742.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_7776.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_8287.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_89593.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9347.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9443.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9526.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9604.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9605.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9606.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOGMS_0000031.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000001.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000051.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000141.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001018.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001241.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001992.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001993.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001995.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0002198.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0010001.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000000.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000061.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000062.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000066.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000068.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000071.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000092.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000104.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000105.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000106.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000107.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000108.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000109.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000110.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000111.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000463.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000465.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000466.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000467.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000468.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000474.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000922.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000949.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000990.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000991.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001016.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001048.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001062.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002050.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002368.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002530.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0003100.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0003133.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0005156.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0005423.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0005564.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0006598.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0006984.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0010000.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0010199.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0015203.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0015204.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0016880.json │ │ └── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0034923.json │ ├── entities │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000002.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000003.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000004.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000015.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000016.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000017.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000019.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000020.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000023.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000034.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000040.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000050.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000051.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000062.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000063.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000066.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000067.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000141.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000000.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000003.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000039.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000211.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000255.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000393.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000404.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000540.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000548.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000586.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0002319.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0002371.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0000003.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001508.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001704.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001705.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001706.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001707.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001838.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001841.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0002009.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0003008.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0005102.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0005179.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0005183.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0005515.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0006810.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0006811.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007154.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007165.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007267.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007268.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007275.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007276.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007369.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007398.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007399.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007492.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007498.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0008150.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009566.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009653.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009790.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009791.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009792.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009888.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009914.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009987.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0010817.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0016301.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0016331.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0019226.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0019953.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0021915.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0022414.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0023052.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0023061.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0030545.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0030546.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0032501.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0032502.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0032504.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0032940.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0034220.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0035148.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0035239.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0035295.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0038023.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0040016.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0042391.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0043009.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0045202.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0046879.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0046903.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048018.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048332.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048513.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048598.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048609.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048646.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048729.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048731.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048856.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0050789.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0050794.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0050877.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0050896.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0051179.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0051234.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0051301.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0051716.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0055085.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0060429.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0060562.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0065007.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0065008.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0072175.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0098772.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0098916.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0099536.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0099537.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0140352.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0140677.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FHP_0001513.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000115.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000116.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000233.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0006012.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0000001.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002146.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002254.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002259.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002263.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002320.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003847.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003916.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005039.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005071.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005137.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005151.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0008300.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0011122.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015127.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015160.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015330.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015514.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015770.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015860.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016072.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016565.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0018555.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019040.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019042.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019182.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019755.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019824.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021125.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021126.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021127.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021135.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021136.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021139.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021140.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021147.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021149.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021152.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100038.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100500.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700092.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700096.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_110814.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_110815.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_117570.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_117571.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_1312402.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_131567.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_1338369.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_1437010.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_1547233.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_207598.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_2759.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_314146.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_314293.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_314295.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_32523.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_32524.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_32525.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_33154.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_33208.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_33213.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_33511.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_376913.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_40674.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_6040.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_6072.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_7711.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_7742.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_7776.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_8287.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_89593.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9347.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9443.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9526.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9604.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9605.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9606.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOGMS_0000031.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000001.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000051.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000141.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001018.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001241.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001992.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001993.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001995.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0002198.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0010001.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000052.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000053.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000056.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000057.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000079.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000080.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000081.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000085.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000086.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000087.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000091.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000092.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002000.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002002.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002013.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002014.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002015.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002017.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002018.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002022.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002023.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002024.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002025.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002081.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002082.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002086.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002087.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002090.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002131.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002160.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002162.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002175.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002180.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002202.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002203.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002207.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002210.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002211.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002212.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002213.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002215.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002216.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002222.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002223.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002224.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002225.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002229.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002230.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002231.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002232.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002233.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002254.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002255.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002258.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002263.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002264.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002286.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002287.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002304.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002305.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002327.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002331.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002333.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002334.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002335.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002336.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002352.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002384.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002385.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002387.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002388.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002404.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002405.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002407.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002409.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002411.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002412.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002418.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002427.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002428.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002429.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002430.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002431.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002434.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002436.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002447.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002448.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002449.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002450.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002473.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002479.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002487.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002488.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002489.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002490.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002492.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002493.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002494.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002495.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002496.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002497.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002500.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002501.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002506.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002559.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002566.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002578.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002584.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002595.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002596.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002597.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002598.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002608.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002629.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002630.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0003000.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0003001.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004019.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004021.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004023.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004024.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004026.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004029.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004032.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004033.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004034.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004035.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004046.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004047.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0011002.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0012011.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0012012.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0019000.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0019001.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0019002.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000000.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000061.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000062.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000066.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000068.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000071.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000092.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000104.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000105.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000106.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000107.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000108.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000109.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000110.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000111.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000463.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000465.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000466.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000467.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000468.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000474.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000922.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000949.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000990.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000991.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001016.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001048.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001062.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002050.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002368.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002530.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0003100.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0003133.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0005156.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0005423.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0005564.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0006598.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0006984.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0010000.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0010199.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0015203.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0015204.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0016880.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0034923.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252Fmondo%2523excluded_subClassOf.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252Fmondo%2523should_conform_to.json │ │ ├── http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fdate.json │ │ ├── http%253A%252F%252Fpurl.org%252Fdc%252Fterms%252FconformsTo.json │ │ ├── http%253A%252F%252Fpurl.org%252Fdc%252Fterms%252Fcreator.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasBroadSynonym.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDbXref.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasExactSynonym.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasNarrowSynonym.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasRelatedSynonym.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasSynonymType.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523id.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523inSubset.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523shorthand.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523source.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523label.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523closeMatch.json │ │ └── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523exactMatch.json │ ├── individuals.json │ ├── properties.json │ ├── properties │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000050.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000051.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000062.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000063.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000066.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000067.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000115.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000116.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000233.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0006012.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000052.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000053.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000056.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000057.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000079.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000080.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000081.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000085.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000086.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000087.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000091.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000092.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002000.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002002.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002013.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002014.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002015.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002017.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002018.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002022.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002023.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002024.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002025.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002081.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002082.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002086.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002087.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002090.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002131.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002160.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002162.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002175.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002180.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002202.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002203.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002207.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002210.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002211.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002212.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002213.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002215.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002216.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002222.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002223.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002224.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002225.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002229.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002230.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002231.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002232.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002233.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002254.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002255.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002258.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002263.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002264.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002286.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002287.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002304.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002305.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002327.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002331.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002333.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002334.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002335.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002336.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002352.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002384.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002385.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002387.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002388.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002404.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002405.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002407.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002409.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002411.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002412.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002418.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002427.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002428.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002429.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002430.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002431.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002434.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002436.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002447.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002448.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002449.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002450.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002473.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002479.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002487.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002488.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002489.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002490.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002492.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002493.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002494.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002495.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002496.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002497.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002500.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002501.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002506.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002559.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002566.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002578.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002584.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002595.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002596.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002597.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002598.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002608.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002629.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002630.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0003000.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0003001.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004019.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004021.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004023.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004024.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004026.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004029.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004032.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004033.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004034.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004035.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004046.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004047.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0011002.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0012011.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0012012.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0019000.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0019001.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0019002.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252Fmondo%2523excluded_subClassOf.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252Fmondo%2523should_conform_to.json │ │ ├── http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fdate.json │ │ ├── http%253A%252F%252Fpurl.org%252Fdc%252Fterms%252FconformsTo.json │ │ ├── http%253A%252F%252Fpurl.org%252Fdc%252Fterms%252Fcreator.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasBroadSynonym.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDbXref.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasExactSynonym.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasNarrowSynonym.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasRelatedSynonym.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasSynonymType.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523id.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523inSubset.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523shorthand.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523source.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523label.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523closeMatch.json │ │ └── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523exactMatch.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000002.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000002 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000003.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000003 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000004.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000004 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000015.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000015 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000016.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000016 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000017.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000017 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000019.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000019 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000020.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000020 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000023.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000023 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000034.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000034 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000040.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000040 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000141.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000141 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000000.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000000 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000003.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000003 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000039.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000039 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000211.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000211 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000255.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000255 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000393.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000393 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000404.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000404 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000540.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000540 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000548.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000548 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000586.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000586 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0002319.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0002319 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0002371.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0002371 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0000003.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0000003 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001508.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001508 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001704.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001704 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001705.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001705 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001706.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001706 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001707.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001707 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001838.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001838 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001841.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001841 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0002009.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0002009 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0003008.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0003008 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0005102.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0005102 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0005179.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0005179 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0005183.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0005183 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0005515.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0005515 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0006810.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0006810 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0006811.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0006811 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007154.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007154 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007165.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007165 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007267.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007267 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007268.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007268 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007275.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007275 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007276.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007276 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007369.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007369 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007398.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007398 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007399.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007399 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007492.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007492 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007498.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007498 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0008150.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0008150 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009566.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009566 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009653.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009653 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009790.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009790 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009791.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009791 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009792.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009792 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009888.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009888 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009914.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009914 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009987.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009987 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0010817.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0010817 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0016301.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0016301 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0016331.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0016331 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0019226.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0019226 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0019953.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0019953 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0021915.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0021915 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0022414.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0022414 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0023052.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0023052 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0023061.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0023061 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0030545.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0030545 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0030546.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0030546 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0032501.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0032501 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0032502.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0032502 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0032504.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0032504 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0032940.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0032940 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0034220.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0034220 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0035148.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0035148 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0035239.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0035239 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0035295.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0035295 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0038023.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0038023 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0040016.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0040016 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0042391.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0042391 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0043009.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0043009 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0045202.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0045202 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0046879.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0046879 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0046903.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0046903 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048018.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048018 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048332.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048332 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048513.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048513 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048598.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048598 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048609.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048609 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048646.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048646 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048729.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048729 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048731.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048731 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048856.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048856 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0050789.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0050789 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0050794.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0050794 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0050877.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0050877 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0050896.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0050896 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0051179.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0051179 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0051234.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0051234 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0051301.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0051301 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0051716.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0051716 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0055085.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0055085 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0060429.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0060429 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0060562.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0060562 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0065007.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0065007 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0065008.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0065008 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0072175.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0072175 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0098772.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0098772 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0098916.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0098916 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0099536.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0099536 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0099537.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0099537 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0140352.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0140352 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0140677.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0140677 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FHP_0001513.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FHP_0001513 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0000001.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0000001 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002146.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002146 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002254.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002254 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002259.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002259 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002263.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002263 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002320.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002320 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003847.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003847 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003916.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003916 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005039.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005039 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005071.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005071 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005137.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005137 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005151.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005151 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0008300.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0008300 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0011122.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0011122 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015127.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015127 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015160.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015160 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015330.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015330 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015514.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015514 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015770.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015770 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015860.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015860 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016072.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016072 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016565.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016565 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0018555.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0018555 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019040.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019040 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019042.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019042 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019182.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019182 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019755.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019755 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019824.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019824 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021125.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021125 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021126.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021126 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021127.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021127 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021135.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021135 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021136.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021136 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021139.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021139 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021140.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021140 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021147.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021147 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021149.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021149 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021152.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021152 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100038.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100038 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100500.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100500 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700092.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700092 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700096.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700096 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_110814.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_110814 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_110815.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_110815 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_117570.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_117570 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_117571.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_117571 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_1312402.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_1312402 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_131567.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_131567 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_1338369.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_1338369 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_1437010.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_1437010 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_1547233.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_1547233 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_207598.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_207598 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_2759.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_2759 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_314146.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_314146 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_314293.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_314293 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_314295.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_314295 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_32523.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_32523 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_32524.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_32524 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_32525.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_32525 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_33154.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_33154 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_33208.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_33208 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_33213.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_33213 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_33511.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_33511 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_376913.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_376913 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_40674.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_40674 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_6040.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_6040 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_6072.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_6072 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_7711.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_7711 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_7742.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_7742 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_7776.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_7776 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_8287.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_8287 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_89593.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_89593 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9347.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9347 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9443.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9443 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9526.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9526 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9604.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9604 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9605.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9605 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9606.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9606 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOGMS_0000031.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOGMS_0000031 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000001.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000001 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000051.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000051 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000141.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000141 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001018.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001018 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001241.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001241 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001992.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001992 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001993.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001993 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001995.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001995 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0002198.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0002198 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0010001.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0010001 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000000.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000000 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000061.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000061 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000062.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000062 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000066.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000066 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000068.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000068 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000071.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000071 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000092.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000092 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000104.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000104 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000105.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000105 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000106.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000106 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000107.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000107 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000108.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000108 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000109.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000109 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000110.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000110 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000111.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000111 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000463.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000463 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000465.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000465 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000466.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000466 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000467.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000467 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000468.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000468 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000474.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000474 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000922.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000922 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000949.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000949 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000990.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000990 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000991.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000991 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001016.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001016 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001048.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001048 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001062.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001062 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002050.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002050 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002368.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002368 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002530.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002530 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0003100.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0003100 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0003133.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0003133 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0005156.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0005156 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0005423.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0005423 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0005564.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0005564 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0006598.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0006598 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0006984.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0006984 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0010000.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0010000 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0010199.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0010199 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0015203.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0015203 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0015204.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0015204 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0016880.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0016880 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0034923.json │ │ └── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0034923 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── individuals-anonymous-types-with-inverse │ ├── classes │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Findividuals%252Fanonymous-types-with-inverse.owl%2523A.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Findividuals%252Fanonymous-types-with-inverse.owl%2523A.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Findividuals%252Fanonymous-types-with-inverse.owl%2523a.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Findividuals%252Fanonymous-types-with-inverse.owl%2523inverseRelation.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Findividuals%252Fanonymous-types-with-inverse.owl%2523relation.json │ ├── individuals.json │ ├── individuals │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Findividuals%252Fanonymous-types-with-inverse.owl%2523a.json │ ├── properties.json │ ├── properties │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Findividuals%252Fanonymous-types-with-inverse.owl%2523inverseRelation.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Findividuals%252Fanonymous-types-with-inverse.owl%2523relation.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Findividuals%252Fanonymous-types-with-inverse.owl%2523A.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Findividuals%252Fanonymous-types-with-inverse.owl%2523A │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── isobsolete │ ├── classes │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FisObsolete.rdf%2523NonDeprecatedClass.json │ │ └── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FisObsolete.rdf%2523NonDeprecatedClass.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FisObsolete.rdf%2523NonDeprecatedDataProperty.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FisObsolete.rdf%2523NonDeprecatedIndividual.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FisObsolete.rdf%2523NonDeprecatedObjectProperty.json │ │ └── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass.json │ ├── individuals.json │ ├── individuals │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FisObsolete.rdf%2523DeprecatedIndividual.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FisObsolete.rdf%2523NonDeprecatedIndividual.json │ ├── properties.json │ ├── properties │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FisObsolete.rdf%2523DeprecatedDataProperty.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FisObsolete.rdf%2523DeprecatedObjectProperty.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FisObsolete.rdf%2523NonDeprecatedDataProperty.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FisObsolete.rdf%2523NonDeprecatedObjectProperty.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FisObsolete.rdf%2523AnGODefinedObsoleteClass.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FisObsolete.rdf%2523AnGODefinedObsoleteClass │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FisObsolete.rdf%2523DeprecatedClassWithValue1.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FisObsolete.rdf%2523DeprecatedClassWithValue1 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FisObsolete.rdf%2523DeprecatedClassWithValueTRUE.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FisObsolete.rdf%2523DeprecatedClassWithValueTRUE │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FisObsolete.rdf%2523DeprecatedClassWithValueTrue.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FisObsolete.rdf%2523DeprecatedClassWithValueTrue │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FisObsolete.rdf%2523NonDeprecatedClass.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FisObsolete.rdf%2523NonDeprecatedClass │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass.json │ │ └── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── isobsoletesimple │ ├── individuals.json │ ├── properties.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FisObsoleteSimple.rdf%2523DeprecatedClass.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FisObsoleteSimple.rdf%2523DeprecatedClass │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── isobsoletesimplewitheforeason │ ├── individuals.json │ ├── properties.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FIsObsoleteSimpleWithEfoReason.rdf%2523DeprecatedClass.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FIsObsoleteSimpleWithEfoReason.rdf%2523DeprecatedClass │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── label │ ├── classes │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523deLangClass.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523enLabelClass.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523noLabelClass.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523noLangClass.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523deLangClass.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523deProperty.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523enLabelClass.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523enProperty.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523noLabelClass.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523noLabelProperty.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523noLangClass.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523property.json │ ├── individuals.json │ ├── properties.json │ ├── properties │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523deProperty.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523enProperty.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523noLabelProperty.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523property.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523deLangClass.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523deLangClass │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523enLabelClass.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523enLabelClass │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523noLabelClass.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523noLabelClass │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523noLangClass.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523noLangClass │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── labelsingle │ ├── classes │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523noLangClass.json │ ├── entities │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523noLangClass.json │ ├── individuals.json │ ├── properties.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523noLangClass.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523noLangClass │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── max-cardinality-ttl │ ├── classes │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fclass-expression-issues%252FmaxCardinality.owlPerson.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fclass-expression-issues%252FmaxCardinality.owlPerson.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fclass-expression-issues%252FmaxCardinality.owlhasArm.json │ ├── individuals.json │ ├── properties.json │ ├── properties │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fclass-expression-issues%252FmaxCardinality.owlhasArm.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fclass-expression-issues%252FmaxCardinality.owlPerson.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fclass-expression-issues%252FmaxCardinality.owlPerson │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── max-cardinality │ ├── classes │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fclass-expression-issues%252FmaxCardinality.owl%2523Person.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fclass-expression-issues%252FmaxCardinality.owl%2523Person.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fclass-expression-issues%252FmaxCardinality.owl%2523hasArm.json │ ├── individuals.json │ ├── properties.json │ ├── properties │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fclass-expression-issues%252FmaxCardinality.owl%2523hasArm.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fclass-expression-issues%252FmaxCardinality.owl%2523Person.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fclass-expression-issues%252FmaxCardinality.owl%2523Person │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── oio │ ├── classes │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523DbXref.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Definition.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Subset.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Synonym.json │ │ └── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymType.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523DbXref.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Definition.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteProperty.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Subset.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SubsetProperty.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Synonym.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymType.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymTypeProperty.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523consider.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasAlternativeId.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasBroadSynonym.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDate.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDbXref.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDefaultNamespace.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDefinition.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasExactSynonym.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasNarrowSynonym.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasOBONamespace.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasRelatedSynonym.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasSubset.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasSynonym.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasSynonymType.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasURI.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasVersion.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523inSubset.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523isCyclic.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523replacedBy.json │ │ └── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523savedBy.json │ ├── individuals.json │ ├── properties.json │ ├── properties │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteProperty.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SubsetProperty.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymTypeProperty.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523consider.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasAlternativeId.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasBroadSynonym.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDate.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDbXref.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDefaultNamespace.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDefinition.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasExactSynonym.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasNarrowSynonym.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasOBONamespace.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasRelatedSynonym.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasSubset.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasSynonym.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasSynonymType.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasURI.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasVersion.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523inSubset.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523isCyclic.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523replacedBy.json │ │ └── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523savedBy.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523DbXref.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523DbXref │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Definition.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Definition │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Subset.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Subset │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Synonym.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Synonym │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymType.json │ │ └── http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymType │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── ontology-annotations-version-chebi │ ├── individuals.json │ ├── properties.json │ └── terms.json ├── ontology-annotations-version-efo │ ├── individuals.json │ ├── properties.json │ └── terms.json ├── ontology-annotations-version-ncbitaxon │ ├── individuals.json │ ├── properties.json │ └── terms.json ├── ontology-annotations-version-obo-date │ ├── individuals.json │ ├── properties.json │ └── terms.json ├── owl │ ├── classes │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523ContainerMembershipProperty.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDifferent.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointClasses.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointProperties.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Annotation.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AnnotationProperty.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AsymmetricProperty.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Axiom.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Class.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DataRange.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DatatypeProperty.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DeprecatedClass.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DeprecatedProperty.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523FunctionalProperty.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523InverseFunctionalProperty.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523IrreflexiveProperty.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NamedIndividual.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NegativePropertyAssertion.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Nothing.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ObjectProperty.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Ontology.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523OntologyProperty.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ReflexiveProperty.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Restriction.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523SymmetricProperty.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Thing.json │ │ └── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523TransitiveProperty.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523ContainerMembershipProperty.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523comment.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523domain.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523isDefinedBy.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523label.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523member.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523range.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523seeAlso.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523subClassOf.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523subPropertyOf.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDifferent.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointClasses.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointProperties.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Annotation.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AnnotationProperty.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AsymmetricProperty.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Axiom.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Class.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DataRange.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DatatypeProperty.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DeprecatedClass.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DeprecatedProperty.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523FunctionalProperty.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523InverseFunctionalProperty.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523IrreflexiveProperty.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NamedIndividual.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NegativePropertyAssertion.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Nothing.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ObjectProperty.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Ontology.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523OntologyProperty.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ReflexiveProperty.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Restriction.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523SymmetricProperty.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Thing.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523TransitiveProperty.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523allValuesFrom.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523annotatedProperty.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523annotatedSource.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523annotatedTarget.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523assertionProperty.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523backwardCompatibleWith.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523bottomDataProperty.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523bottomObjectProperty.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523cardinality.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523complementOf.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523datatypeComplementOf.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523deprecated.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523differentFrom.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523disjointUnionOf.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523disjointWith.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523distinctMembers.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523equivalentClass.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523equivalentProperty.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523hasKey.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523hasSelf.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523hasValue.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523incompatibleWith.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523intersectionOf.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523inverseOf.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523maxCardinality.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523maxQualifiedCardinality.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523members.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523minCardinality.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523minQualifiedCardinality.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523onClass.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523onDataRange.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523onDatatype.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523onProperties.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523onProperty.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523oneOf.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523priorVersion.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523propertyChainAxiom.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523propertyDisjointWith.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523qualifiedCardinality.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523sameAs.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523someValuesFrom.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523sourceIndividual.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523targetIndividual.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523targetValue.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523topDataProperty.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523topObjectProperty.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523unionOf.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523versionInfo.json │ │ └── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523withRestrictions.json │ ├── individuals.json │ ├── properties.json │ ├── properties │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523comment.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523domain.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523isDefinedBy.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523label.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523member.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523range.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523seeAlso.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523subClassOf.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523subPropertyOf.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523allValuesFrom.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523annotatedProperty.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523annotatedSource.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523annotatedTarget.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523assertionProperty.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523backwardCompatibleWith.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523bottomDataProperty.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523bottomObjectProperty.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523cardinality.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523complementOf.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523datatypeComplementOf.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523deprecated.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523differentFrom.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523disjointUnionOf.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523disjointWith.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523distinctMembers.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523equivalentClass.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523equivalentProperty.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523hasKey.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523hasSelf.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523hasValue.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523incompatibleWith.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523intersectionOf.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523inverseOf.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523maxCardinality.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523maxQualifiedCardinality.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523members.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523minCardinality.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523minQualifiedCardinality.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523onClass.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523onDataRange.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523onDatatype.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523onProperties.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523onProperty.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523oneOf.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523priorVersion.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523propertyChainAxiom.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523propertyDisjointWith.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523qualifiedCardinality.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523sameAs.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523someValuesFrom.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523sourceIndividual.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523targetIndividual.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523targetValue.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523topDataProperty.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523topObjectProperty.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523unionOf.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523versionInfo.json │ │ └── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523withRestrictions.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523ContainerMembershipProperty.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523ContainerMembershipProperty │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDifferent.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDifferent │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointClasses.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointClasses │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointProperties.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointProperties │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Annotation.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Annotation │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AnnotationProperty.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AnnotationProperty │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AsymmetricProperty.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AsymmetricProperty │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Axiom.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Axiom │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Class.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Class │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DataRange.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DataRange │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DatatypeProperty.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DatatypeProperty │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DeprecatedClass.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DeprecatedClass │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DeprecatedProperty.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DeprecatedProperty │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523FunctionalProperty.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523FunctionalProperty │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523InverseFunctionalProperty.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523InverseFunctionalProperty │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523IrreflexiveProperty.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523IrreflexiveProperty │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NamedIndividual.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NamedIndividual │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NegativePropertyAssertion.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NegativePropertyAssertion │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Nothing.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Nothing │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ObjectProperty.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ObjectProperty │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Ontology.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Ontology │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523OntologyProperty.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523OntologyProperty │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ReflexiveProperty.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ReflexiveProperty │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Restriction.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Restriction │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523SymmetricProperty.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523SymmetricProperty │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Thing.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Thing │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523TransitiveProperty.json │ │ └── http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523TransitiveProperty │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── owl2primer-alldisjointclasses │ ├── classes │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointClasses%2523Man.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointClasses%2523Person.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointClasses%2523Woman.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointClasses%2523Man.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointClasses%2523Person.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointClasses%2523Woman.json │ ├── individuals.json │ ├── properties.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointClasses%2523Man.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointClasses%2523Man │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointClasses%2523Person.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointClasses%2523Person │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointClasses%2523Woman.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointClasses%2523Woman │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── owl2primer-alldisjointdataproperties │ ├── classes │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointDataProperties.owl%2523Dummy.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointDataProperties.owl%2523Dummy.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointDataProperties.owl%2523propA.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointDataProperties.owl%2523propB.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointDataProperties.owl%2523propC.json │ ├── individuals.json │ ├── properties.json │ ├── properties │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointDataProperties.owl%2523propA.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointDataProperties.owl%2523propB.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointDataProperties.owl%2523propC.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointDataProperties.owl%2523Dummy.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointDataProperties.owl%2523Dummy │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── owl2primer-alldisjointobjectproperties │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointObjectProperties.owl%2523propA.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointObjectProperties.owl%2523propB.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointObjectProperties.owl%2523propC.json │ ├── individuals.json │ ├── properties.json │ ├── properties │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointObjectProperties.owl%2523propA.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointObjectProperties.owl%2523propB.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointObjectProperties.owl%2523propC.json │ └── terms.json ├── owl2primer-anonymous-inverse-object-property │ ├── classes │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fanonymous-inverse-object-property.rdf%2523Dead.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fanonymous-inverse-object-property.rdf%2523Orphan.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fanonymous-inverse-object-property.rdf%2523Dead.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fanonymous-inverse-object-property.rdf%2523Orphan.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fanonymous-inverse-object-property.rdf%2523hasChild.json │ ├── individuals.json │ ├── properties.json │ ├── properties │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fanonymous-inverse-object-property.rdf%2523hasChild.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fanonymous-inverse-object-property.rdf%2523Dead.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fanonymous-inverse-object-property.rdf%2523Dead │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fanonymous-inverse-object-property.rdf%2523Orphan.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fanonymous-inverse-object-property.rdf%2523Orphan │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── owl2primer-asymmetric-object-property │ ├── entities │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fasymmetric-object-property.rdf%2523hasChild.json │ ├── individuals.json │ ├── properties.json │ ├── properties │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fasymmetric-object-property.rdf%2523hasChild.json │ └── terms.json ├── owl2primer-class-assertion │ ├── classes │ │ └── http%253A%252F%252Fexample.com%252Fowl2primer%2523Person.json │ ├── entities │ │ ├── http%253A%252F%252Fexample.com%252Fowl2primer%2523Mary.json │ │ └── http%253A%252F%252Fexample.com%252Fowl2primer%2523Person.json │ ├── individuals.json │ ├── individuals │ │ └── http%253A%252F%252Fexample.com%252Fowl2primer%2523Mary.json │ ├── properties.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fexample.com%252Fowl2primer%2523Person.json │ │ └── http%253A%252F%252Fexample.com%252Fowl2primer%2523Person │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── owl2primer-class-expression-based-on-datatype-restriction │ ├── classes │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fclass-expression-based-on-datatype-restriction.rdf%2523Teenager.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fclass-expression-based-on-datatype-restriction.rdf%2523Teenager.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fclass-expression-based-on-datatype-restriction.rdf%2523hasAge.json │ ├── individuals.json │ ├── properties.json │ ├── properties │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fclass-expression-based-on-datatype-restriction.rdf%2523hasAge.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fclass-expression-based-on-datatype-restriction.rdf%2523Teenager.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fclass-expression-based-on-datatype-restriction.rdf%2523Teenager │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── owl2primer-class │ ├── classes │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fclass%2523Person.json │ ├── entities │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fclass%2523Person.json │ ├── individuals.json │ ├── properties.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fclass%2523Person.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fclass%2523Person │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── owl2primer-complex-class-assertions-with-negation │ ├── classes │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fcomplex-class-assertions-with-negation.rdf%2523Parent.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fcomplex-class-assertions-with-negation.rdf%2523Person.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fcomplex-class-assertions-with-negation.rdf%2523Jack.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fcomplex-class-assertions-with-negation.rdf%2523Parent.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fcomplex-class-assertions-with-negation.rdf%2523Person.json │ ├── individuals.json │ ├── individuals │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fcomplex-class-assertions-with-negation.rdf%2523Jack.json │ ├── properties.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fcomplex-class-assertions-with-negation.rdf%2523Parent.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fcomplex-class-assertions-with-negation.rdf%2523Parent │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fcomplex-class-assertions-with-negation.rdf%2523Person.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fcomplex-class-assertions-with-negation.rdf%2523Person │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── owl2primer-data-property-assertion │ ├── classes │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdata-property-assertion%2523Person.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdata-property-assertion%2523John.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdata-property-assertion%2523Person.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdata-property-assertion%2523hasAge.json │ ├── individuals.json │ ├── individuals │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdata-property-assertion%2523John.json │ ├── properties.json │ ├── properties │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdata-property-assertion%2523hasAge.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdata-property-assertion%2523Person.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdata-property-assertion%2523Person │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── owl2primer-dataproperty-functional │ ├── classes │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FdataProperty-functional.owl%2523Dummy.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FdataProperty-functional.owl%2523Dummy.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FdataProperty-functional.owl%2523numberOfChildren.json │ ├── individuals.json │ ├── properties.json │ ├── properties │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FdataProperty-functional.owl%2523numberOfChildren.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FdataProperty-functional.owl%2523Dummy.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FdataProperty-functional.owl%2523Dummy │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── owl2primer-datatype-enumeration-nesting-issue │ ├── classes │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-enumeration.owl%2523Dummy.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-enumeration.owl%2523Dummy.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-enumeration.owl%2523ageOfToddler.json │ ├── individuals.json │ ├── properties.json │ ├── properties │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-enumeration.owl%2523ageOfToddler.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-enumeration.owl%2523Dummy.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-enumeration.owl%2523Dummy │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── owl2primer-datatype-enumeration │ ├── classes │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-enumeration.owl%2523Dummy.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-enumeration.owl%2523Dummy.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-enumeration.owl%2523ageOfToddler.json │ ├── individuals.json │ ├── properties.json │ ├── properties │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-enumeration.owl%2523ageOfToddler.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-enumeration.owl%2523Dummy.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-enumeration.owl%2523Dummy │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── owl2primer-datatype-exclusion-nesting-issue │ ├── classes │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-exclusion.owl%2523Dummy.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-exclusion.owl%2523Dummy.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-exclusion.owl%2523ageOfAdult.json │ ├── individuals.json │ ├── properties.json │ ├── properties │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-exclusion.owl%2523ageOfAdult.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-exclusion.owl%2523Dummy.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-exclusion.owl%2523Dummy │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── owl2primer-datatype-exclusion │ ├── classes │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-exclusion.owl%2523Dummy.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-exclusion.owl%2523Dummy.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-exclusion.owl%2523ageOfAdult.json │ ├── individuals.json │ ├── properties.json │ ├── properties │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-exclusion.owl%2523ageOfAdult.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-exclusion.owl%2523Dummy.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-exclusion.owl%2523Dummy │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── owl2primer-datatype-minmax-nesting-issue │ ├── classes │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-minmax.owl%2523Dummy.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-minmax.owl%2523Dummy.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-minmax.owl%2523hasAge.json │ ├── individuals.json │ ├── properties.json │ ├── properties │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-minmax.owl%2523hasAge.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-minmax.owl%2523Dummy.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-minmax.owl%2523Dummy │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── owl2primer-datatype-minmax │ ├── classes │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-minmax.owl%2523Dummy.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-minmax.owl%2523Dummy.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-minmax.owl%2523hasAge.json │ ├── individuals.json │ ├── properties.json │ ├── properties │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-minmax.owl%2523hasAge.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-minmax.owl%2523Dummy.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-minmax.owl%2523Dummy │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── owl2primer-different-individuals │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdifferent-individuals%2523Bill.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdifferent-individuals%2523John.json │ ├── individuals.json │ ├── individuals │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdifferent-individuals%2523Bill.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdifferent-individuals%2523John.json │ ├── properties.json │ └── terms.json ├── owl2primer-disjoint-classes │ ├── classes │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdisjoint-classes.rdf%2523Man.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdisjoint-classes.rdf%2523Woman.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdisjoint-classes.rdf%2523Man.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdisjoint-classes.rdf%2523Woman.json │ ├── individuals.json │ ├── properties.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdisjoint-classes.rdf%2523Man.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdisjoint-classes.rdf%2523Man │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdisjoint-classes.rdf%2523Woman.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdisjoint-classes.rdf%2523Woman │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── owl2primer-disjointunionof │ ├── classes │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FdisjointUnionOf%2523Father.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FdisjointUnionOf%2523Mother.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FdisjointUnionOf%2523Parent.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FdisjointUnionOf%2523Father.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FdisjointUnionOf%2523Mother.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FdisjointUnionOf%2523Parent.json │ ├── individuals.json │ ├── properties.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FdisjointUnionOf%2523Father.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FdisjointUnionOf%2523Father │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FdisjointUnionOf%2523Mother.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FdisjointUnionOf%2523Mother │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FdisjointUnionOf%2523Parent.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FdisjointUnionOf%2523Parent │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── owl2primer-enumeration-of-individuals │ ├── classes │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fenumeration-of-individuals.rdf%2523MyBirthdayGuests.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fenumeration-of-individuals.rdf%2523Bill.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fenumeration-of-individuals.rdf%2523John.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fenumeration-of-individuals.rdf%2523Mary.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fenumeration-of-individuals.rdf%2523MyBirthdayGuests.json │ ├── individuals.json │ ├── individuals │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fenumeration-of-individuals.rdf%2523Bill.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fenumeration-of-individuals.rdf%2523John.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fenumeration-of-individuals.rdf%2523Mary.json │ ├── properties.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fenumeration-of-individuals.rdf%2523MyBirthdayGuests.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fenumeration-of-individuals.rdf%2523MyBirthdayGuests │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── owl2primer-equivalent-intersectionof-complementof │ ├── classes │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf-complementOf%2523ChildlessPerson.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf-complementOf%2523Parent.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf-complementOf%2523Person.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf-complementOf%2523ChildlessPerson.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf-complementOf%2523Parent.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf-complementOf%2523Person.json │ ├── individuals.json │ ├── properties.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf-complementOf%2523ChildlessPerson.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf-complementOf%2523ChildlessPerson │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf-complementOf%2523Parent.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf-complementOf%2523Parent │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf-complementOf%2523Person.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf-complementOf%2523Person │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── owl2primer-equivalent-intersectionof │ ├── classes │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf.owl%2523Mother.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf.owl%2523Parent.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf.owl%2523Woman.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf.owl%2523Mother.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf.owl%2523Parent.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf.owl%2523Woman.json │ ├── individuals.json │ ├── properties.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf.owl%2523Mother.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf.owl%2523Mother │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf.owl%2523Parent.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf.owl%2523Parent │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf.owl%2523Woman.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf.owl%2523Woman │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── owl2primer-equivalent-propertyrestriction-allvaluesfrom │ ├── classes │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-propertyRestriction-allValuesFrom.owl%2523HappyPerson.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-propertyRestriction-allValuesFrom.owl%2523Person.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-propertyRestriction-allValuesFrom.owl%2523HappyPerson.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-propertyRestriction-allValuesFrom.owl%2523Person.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-propertyRestriction-allValuesFrom.owl%2523hasChild.json │ ├── individuals.json │ ├── properties.json │ ├── properties │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-propertyRestriction-allValuesFrom.owl%2523hasChild.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-propertyRestriction-allValuesFrom.owl%2523HappyPerson.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-propertyRestriction-allValuesFrom.owl%2523HappyPerson │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-propertyRestriction-allValuesFrom.owl%2523Person.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-propertyRestriction-allValuesFrom.owl%2523Person │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── owl2primer-equivalent-propertyrestriction-somevaluesfrom │ ├── classes │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-propertyRestriction-someValuesFrom.owl%2523Parent.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-propertyRestriction-someValuesFrom.owl%2523Person.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-propertyRestriction-someValuesFrom.owl%2523Parent.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-propertyRestriction-someValuesFrom.owl%2523Person.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-propertyRestriction-someValuesFrom.owl%2523hasChild.json │ ├── individuals.json │ ├── properties.json │ ├── properties │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-propertyRestriction-someValuesFrom.owl%2523hasChild.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-propertyRestriction-someValuesFrom.owl%2523Parent.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-propertyRestriction-someValuesFrom.owl%2523Parent │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-propertyRestriction-someValuesFrom.owl%2523Person.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-propertyRestriction-someValuesFrom.owl%2523Person │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── owl2primer-equivalentclass-collection │ ├── classes │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentClass-collection.owl%2523MyBirthdayGuests.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentClass-collection.owl%2523Bill.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentClass-collection.owl%2523John.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentClass-collection.owl%2523Mary.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentClass-collection.owl%2523MyBirthdayGuests.json │ ├── individuals.json │ ├── individuals │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentClass-collection.owl%2523Bill.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentClass-collection.owl%2523John.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentClass-collection.owl%2523Mary.json │ ├── properties.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentClass-collection.owl%2523MyBirthdayGuests.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentClass-collection.owl%2523MyBirthdayGuests │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── owl2primer-equivalentclass │ ├── classes │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentClass%2523Human.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentClass%2523Person.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentClass%2523Human.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentClass%2523Person.json │ ├── individuals.json │ ├── properties.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentClass%2523Human.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentClass%2523Human │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentClass%2523Person.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentClass%2523Person │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── owl2primer-equivalentobjectproperty │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentObjectProperty%2523John.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentObjectProperty%2523Mary.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentObjectProperty%2523hasLifePartner.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentObjectProperty%2523hasSpouse.json │ ├── individuals.json │ ├── individuals │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentObjectProperty%2523John.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentObjectProperty%2523Mary.json │ ├── properties.json │ ├── properties │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentObjectProperty%2523hasLifePartner.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentObjectProperty%2523hasSpouse.json │ └── terms.json ├── owl2primer-functional-data-property │ ├── entities │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Ffunctional-data-property.rdf%2523numberOfChildren.json │ ├── individuals.json │ ├── properties.json │ ├── properties │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Ffunctional-data-property.rdf%2523numberOfChildren.json │ └── terms.json ├── owl2primer-functional-object-property │ ├── entities │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Ffunctional-object-property.rdf%2523hasHusband.json │ ├── individuals.json │ ├── properties.json │ ├── properties │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Ffunctional-object-property.rdf%2523hasHusband.json │ └── terms.json ├── owl2primer-individual │ ├── entities │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FnamedIndividual%2523Mary.json │ ├── individuals.json │ ├── individuals │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FnamedIndividual%2523Mary.json │ ├── properties.json │ └── terms.json ├── owl2primer-intersectionof │ ├── classes │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FintersectionOf%2523Mother.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FintersectionOf%2523Parent.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FintersectionOf%2523Woman.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FintersectionOf%2523Mother.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FintersectionOf%2523Parent.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FintersectionOf%2523Woman.json │ ├── individuals.json │ ├── properties.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FintersectionOf%2523Mother.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FintersectionOf%2523Mother │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FintersectionOf%2523Parent.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FintersectionOf%2523Parent │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FintersectionOf%2523Woman.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FintersectionOf%2523Woman │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── owl2primer-inverse-inverse-functional-object-property │ ├── entities │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Finverse-functional-object-property.rdf%2523hasHusband.json │ ├── individuals.json │ ├── properties.json │ ├── properties │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Finverse-functional-object-property.rdf%2523hasHusband.json │ └── terms.json ├── owl2primer-inverse-object-property │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Finverse-object-property.rdf%2523hasChild.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Finverse-object-property.rdf%2523hasParent.json │ ├── individuals.json │ ├── properties.json │ ├── properties │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Finverse-object-property.rdf%2523hasChild.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Finverse-object-property.rdf%2523hasParent.json │ └── terms.json ├── owl2primer-irreflexive-object-property │ ├── entities │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Firreflexive-object-property.rdf%2523parentOf.json │ ├── individuals.json │ ├── properties.json │ ├── properties │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Firreflexive-object-property.rdf%2523parentOf.json │ └── terms.json ├── owl2primer-key-constraint-on-data-property │ ├── classes │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fkey-constraint-on-data-property.owl%2523Person.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fkey-constraint-on-data-property%2523Anne.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fkey-constraint-on-data-property%2523hasSSN.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fkey-constraint-on-data-property.owl%2523Annie.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fkey-constraint-on-data-property.owl%2523Person.json │ ├── individuals.json │ ├── individuals │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fkey-constraint-on-data-property%2523Anne.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fkey-constraint-on-data-property.owl%2523Annie.json │ ├── properties.json │ ├── properties │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fkey-constraint-on-data-property%2523hasSSN.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fkey-constraint-on-data-property.owl%2523Person.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fkey-constraint-on-data-property.owl%2523Person │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── owl2primer-minimal │ ├── individuals.json │ ├── properties.json │ └── terms.json ├── owl2primer-negative-data-property-assertion │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-data-property-assertion.rdf%2523Jack.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-data-property-assertion.rdf%2523hasAge.json │ ├── individuals.json │ ├── individuals │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-data-property-assertion.rdf%2523Jack.json │ ├── properties.json │ ├── properties │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-data-property-assertion.rdf%2523hasAge.json │ └── terms.json ├── owl2primer-negative-object-property-assertion │ ├── classes │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-object-property-assertion%2523Man.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-object-property-assertion%2523Person.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-object-property-assertion%2523Woman.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-object-property-assertion%2523Bill.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-object-property-assertion%2523Man.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-object-property-assertion%2523Mary.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-object-property-assertion%2523Person.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-object-property-assertion%2523Woman.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-object-property-assertion%2523hasWife.json │ ├── individuals.json │ ├── individuals │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-object-property-assertion%2523Bill.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-object-property-assertion%2523Mary.json │ ├── properties.json │ ├── properties │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-object-property-assertion%2523hasWife.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-object-property-assertion%2523Man.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-object-property-assertion%2523Man │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-object-property-assertion%2523Person.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-object-property-assertion%2523Person │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-object-property-assertion%2523Woman.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-object-property-assertion%2523Woman │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── owl2primer-object-property-assertion │ ├── classes │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-assertion%2523Man.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-assertion%2523Person.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-assertion%2523Woman.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-assertion%2523John.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-assertion%2523Man.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-assertion%2523Mary.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-assertion%2523Person.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-assertion%2523Woman.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-assertion%2523hasWife.json │ ├── individuals.json │ ├── individuals │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-assertion%2523John.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-assertion%2523Mary.json │ ├── properties.json │ ├── properties │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-assertion%2523hasWife.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-assertion%2523Man.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-assertion%2523Man │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-assertion%2523Person.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-assertion%2523Person │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-assertion%2523Woman.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-assertion%2523Woman │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── owl2primer-object-property-domain-range-restriction │ ├── classes │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-domain-range-restriction%2523Man.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-domain-range-restriction%2523Person.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-domain-range-restriction%2523Woman.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-domain-range-restriction%2523Man.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-domain-range-restriction%2523Person.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-domain-range-restriction%2523Woman.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-domain-range-restriction%2523hasWife.json │ ├── individuals.json │ ├── properties.json │ ├── properties │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-domain-range-restriction%2523hasWife.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-domain-range-restriction%2523Man.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-domain-range-restriction%2523Man │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-domain-range-restriction%2523Person.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-domain-range-restriction%2523Person │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-domain-range-restriction%2523Woman.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-domain-range-restriction%2523Woman │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── owl2primer-objectproperty-asymmetric │ ├── entities │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-asymmetric.owl%2523hasChild.json │ ├── individuals.json │ ├── properties.json │ ├── properties │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-asymmetric.owl%2523hasChild.json │ └── terms.json ├── owl2primer-objectproperty-disjoint │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-disjoint.owl%2523hasParent.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-disjoint.owl%2523hasSpouse.json │ ├── individuals.json │ ├── properties.json │ ├── properties │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-disjoint.owl%2523hasParent.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-disjoint.owl%2523hasSpouse.json │ └── terms.json ├── owl2primer-objectproperty-functional │ ├── entities │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-functional.owl%2523hasHusband.json │ ├── individuals.json │ ├── properties.json │ ├── properties │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-functional.owl%2523hasHusband.json │ └── terms.json ├── owl2primer-objectproperty-haskey │ ├── classes │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-hasKey.owl%2523Address.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-hasKey.owl%2523Business.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-hasKey.owl%2523Address.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-hasKey.owl%2523Business.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-hasKey.owl%2523a.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-hasKey.owl%2523b1.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-hasKey.owl%2523b2.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-hasKey.owl%2523businessAddress.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-hasKey.owl%2523hasSSN.json │ ├── individuals.json │ ├── individuals │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-hasKey.owl%2523a.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-hasKey.owl%2523b1.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-hasKey.owl%2523b2.json │ ├── properties.json │ ├── properties │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-hasKey.owl%2523businessAddress.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-hasKey.owl%2523hasSSN.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-hasKey.owl%2523Address.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-hasKey.owl%2523Address │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-hasKey.owl%2523Business.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-hasKey.owl%2523Business │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── owl2primer-objectproperty-inverse-withoutassignedname │ ├── classes │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-inverse-withoutAssignedName.owl%2523Dead.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-inverse-withoutAssignedName.owl%2523Orphan.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-inverse-withoutAssignedName.owl%2523Dead.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-inverse-withoutAssignedName.owl%2523Orphan.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-inverse-withoutAssignedName.owl%2523hasChild.json │ ├── individuals.json │ ├── properties.json │ ├── properties │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-inverse-withoutAssignedName.owl%2523hasChild.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-inverse-withoutAssignedName.owl%2523Dead.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-inverse-withoutAssignedName.owl%2523Dead │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-inverse-withoutAssignedName.owl%2523Orphan.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-inverse-withoutAssignedName.owl%2523Orphan │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── owl2primer-objectproperty-inverse │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-inverse.owl%2523hasChild.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-inverse.owl%2523hasParent.json │ ├── individuals.json │ ├── properties.json │ ├── properties │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-inverse.owl%2523hasChild.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-inverse.owl%2523hasParent.json │ └── terms.json ├── owl2primer-objectproperty-inversefunctional │ ├── entities │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-inverseFunctional.owl%2523hasHusband.json │ ├── individuals.json │ ├── properties.json │ ├── properties │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-inverseFunctional.owl%2523hasHusband.json │ └── terms.json ├── owl2primer-objectproperty-irreflexive │ ├── entities │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-irreflexive.owl%2523hasParent.json │ ├── individuals.json │ ├── properties.json │ ├── properties │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-irreflexive.owl%2523hasParent.json │ └── terms.json ├── owl2primer-objectproperty-reflexive │ ├── entities │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-reflexive.owl%2523hasRelative.json │ ├── individuals.json │ ├── properties.json │ ├── properties │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-reflexive.owl%2523hasRelative.json │ └── terms.json ├── owl2primer-property-chain │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fproperty-chain.owl%2523hasGrandParent.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fproperty-chain.owl%2523hasParent.json │ ├── individuals.json │ ├── properties.json │ ├── properties │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fproperty-chain.owl%2523hasGrandParent.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fproperty-chain.owl%2523hasParent.json │ └── terms.json ├── owl2primer-propertyrestriction-cardinality │ ├── classes │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-cardinality.owl%2523Parent.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-cardinality.owl%2523John.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-cardinality.owl%2523Parent.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-cardinality.owl%2523hasChild.json │ ├── individuals.json │ ├── individuals │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-cardinality.owl%2523John.json │ ├── properties.json │ ├── properties │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-cardinality.owl%2523hasChild.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-cardinality.owl%2523Parent.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-cardinality.owl%2523Parent │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── owl2primer-propertyrestriction-maxqualifiedcardinality │ ├── classes │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-maxQualifiedCardinality.owl%2523Parent.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-maxQualifiedCardinality.owl%2523John.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-maxQualifiedCardinality.owl%2523Parent.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-maxQualifiedCardinality.owl%2523hasChild.json │ ├── individuals.json │ ├── individuals │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-maxQualifiedCardinality.owl%2523John.json │ ├── properties.json │ ├── properties │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-maxQualifiedCardinality.owl%2523hasChild.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-maxQualifiedCardinality.owl%2523Parent.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-maxQualifiedCardinality.owl%2523Parent │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── owl2primer-propertyrestriction-minqualifiedcardinality │ ├── classes │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-minQualifiedCardinality.owl%2523Parent.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-minQualifiedCardinality.owl%2523John.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-minQualifiedCardinality.owl%2523Parent.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-minQualifiedCardinality.owl%2523hasChild.json │ ├── individuals.json │ ├── individuals │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-minQualifiedCardinality.owl%2523John.json │ ├── properties.json │ ├── properties │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-minQualifiedCardinality.owl%2523hasChild.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-minQualifiedCardinality.owl%2523Parent.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-minQualifiedCardinality.owl%2523Parent │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── owl2primer-propertyrestriction-qualifiedcardinality │ ├── classes │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-qualifiedCardinality.owl%2523Parent.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-qualifiedCardinality.owl%2523John.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-qualifiedCardinality.owl%2523Parent.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-qualifiedCardinality.owl%2523hasChild.json │ ├── individuals.json │ ├── individuals │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-qualifiedCardinality.owl%2523John.json │ ├── properties.json │ ├── properties │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-qualifiedCardinality.owl%2523hasChild.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-qualifiedCardinality.owl%2523Parent.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-qualifiedCardinality.owl%2523Parent │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── owl2primer-qualified-cardinality-exact-restriction │ ├── classes │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-exact-restriction.rdf%2523Parent.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-exact-restriction.rdf%2523Parent.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-exact-restriction.rdf%2523hasChild.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-exact-restriction.rdf%2523john.json │ ├── individuals.json │ ├── individuals │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-exact-restriction.rdf%2523john.json │ ├── properties.json │ ├── properties │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-exact-restriction.rdf%2523hasChild.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-exact-restriction.rdf%2523Parent.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-exact-restriction.rdf%2523Parent │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── owl2primer-qualified-cardinality-max-restriction │ ├── classes │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-max-restriction.rdf%2523Parent.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-max-restriction.rdf%2523Parent.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-max-restriction.rdf%2523hasChild.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-max-restriction.rdf%2523john.json │ ├── individuals.json │ ├── individuals │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-max-restriction.rdf%2523john.json │ ├── properties.json │ ├── properties │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-max-restriction.rdf%2523hasChild.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-max-restriction.rdf%2523Parent.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-max-restriction.rdf%2523Parent │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── owl2primer-qualified-cardinality-min-restriction │ ├── classes │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-min-restriction.rdf%2523Parent.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-min-restriction.rdf%2523Parent.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-min-restriction.rdf%2523hasChild.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-min-restriction.rdf%2523john.json │ ├── individuals.json │ ├── individuals │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-min-restriction.rdf%2523john.json │ ├── properties.json │ ├── properties │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-min-restriction.rdf%2523hasChild.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-min-restriction.rdf%2523Parent.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-min-restriction.rdf%2523Parent │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── owl2primer-reflexive-object-property │ ├── entities │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Freflexive-object-property.rdf%2523hasRelative.json │ ├── individuals.json │ ├── properties.json │ ├── properties │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Freflexive-object-property.rdf%2523hasRelative.json │ └── terms.json ├── owl2primer-same-individual │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsame-individual%2523James.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsame-individual%2523Jim.json │ ├── individuals.json │ ├── individuals │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsame-individual%2523James.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsame-individual%2523Jim.json │ ├── properties.json │ └── terms.json ├── owl2primer-self-restriction │ ├── classes │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fself-restriction.owl%2523NarcisticPerson.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fself-restriction.owl%2523NarcisticPerson.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fself-restriction.owl%2523loves.json │ ├── individuals.json │ ├── properties.json │ ├── properties │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fself-restriction.owl%2523loves.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fself-restriction.owl%2523NarcisticPerson.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fself-restriction.owl%2523NarcisticPerson │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── owl2primer-sub-object-property │ ├── classes │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsub-object-property%2523Man.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsub-object-property%2523Person.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsub-object-property%2523Woman.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsub-object-property%2523Man.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsub-object-property%2523Person.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsub-object-property%2523Woman.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsub-object-property%2523hasSpouse.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsub-object-property%2523hasWife.json │ ├── individuals.json │ ├── properties.json │ ├── properties │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsub-object-property%2523hasSpouse.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsub-object-property%2523hasWife.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsub-object-property%2523Man.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsub-object-property%2523Man │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsub-object-property%2523Person.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsub-object-property%2523Person │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsub-object-property%2523Woman.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsub-object-property%2523Woman │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── owl2primer-subclassof-intersectionof │ ├── classes │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf-intersectionOf%2523Grandfather.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf-intersectionOf%2523Man.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf-intersectionOf%2523Parent.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf-intersectionOf%2523Grandfather.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf-intersectionOf%2523Man.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf-intersectionOf%2523Parent.json │ ├── individuals.json │ ├── properties.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf-intersectionOf%2523Grandfather.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf-intersectionOf%2523Grandfather │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf-intersectionOf%2523Man.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf-intersectionOf%2523Man │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf-intersectionOf%2523Parent.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf-intersectionOf%2523Parent │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── owl2primer-subclassof │ ├── classes │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf%2523Mother.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf%2523Person.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf%2523Woman.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf%2523Mother.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf%2523Person.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf%2523Woman.json │ ├── individuals.json │ ├── properties.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf%2523Mother.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf%2523Mother │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf%2523Person.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf%2523Person │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf%2523Woman.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf%2523Woman │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── owl2primer-symmetric-object-property │ ├── entities │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsymmetric-object-property.rdf%2523hasSpouse.json │ ├── individuals.json │ ├── properties.json │ ├── properties │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsymmetric-object-property.rdf%2523hasSpouse.json │ └── terms.json ├── owl2primer-transitive-object-property │ ├── entities │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Ftransitive-object-property.rdf%2523hasAncestor.json │ ├── individuals.json │ ├── properties.json │ ├── properties │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Ftransitive-object-property.rdf%2523hasAncestor.json │ └── terms.json ├── owl2primer-unionof │ ├── classes │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FunionOf%2523Father.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FunionOf%2523Mother.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FunionOf%2523Parent.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FunionOf%2523Father.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FunionOf%2523Mother.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FunionOf%2523Parent.json │ ├── individuals.json │ ├── properties.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FunionOf%2523Father.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FunionOf%2523Father │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FunionOf%2523Mother.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FunionOf%2523Mother │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FunionOf%2523Parent.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FunionOf%2523Parent │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── owl2primer-unqualified-cardinality-exact-restriction │ ├── classes │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Funqualified-cardinality-exact-restriction.rdf%2523Parent.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Funqualified-cardinality-exact-restriction.rdf%2523Parent.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Funqualified-cardinality-exact-restriction.rdf%2523hasChild.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Funqualified-cardinality-exact-restriction.rdf%2523john.json │ ├── individuals.json │ ├── individuals │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Funqualified-cardinality-exact-restriction.rdf%2523john.json │ ├── properties.json │ ├── properties │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Funqualified-cardinality-exact-restriction.rdf%2523hasChild.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Funqualified-cardinality-exact-restriction.rdf%2523Parent.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Funqualified-cardinality-exact-restriction.rdf%2523Parent │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── owl2primer-user-defined-data-type-nesting-issue │ ├── entities │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fuser-defined-data-type.rdf%2523hasToddlerAge.json │ ├── individuals.json │ ├── properties.json │ ├── properties │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fuser-defined-data-type.rdf%2523hasToddlerAge.json │ └── terms.json ├── owl2primer-user-defined-data-type │ ├── entities │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fuser-defined-data-type.rdf%2523hasToddlerAge.json │ ├── individuals.json │ ├── properties.json │ ├── properties │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fuser-defined-data-type.rdf%2523hasToddlerAge.json │ └── terms.json ├── owl2primer-value-restriction-on-individual │ ├── classes │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fvalue-restriction-on-individual.rdf%2523JohnsChildren.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fvalue-restriction-on-individual.rdf%2523John.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fvalue-restriction-on-individual.rdf%2523JohnsChildren.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fvalue-restriction-on-individual.rdf%2523hasParent.json │ ├── individuals.json │ ├── individuals │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fvalue-restriction-on-individual.rdf%2523John.json │ ├── properties.json │ ├── properties │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fvalue-restriction-on-individual.rdf%2523hasParent.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fvalue-restriction-on-individual.rdf%2523JohnsChildren.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fvalue-restriction-on-individual.rdf%2523JohnsChildren │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── partof │ ├── classes │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMS_1000353.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMS_1003056.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPRIDE_0000674.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPRIDE_0000675.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000916.json │ │ └── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0003684.json │ ├── entities │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMS_1000353.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMS_1003056.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPRIDE_0000674.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPRIDE_0000675.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000916.json │ │ └── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0003684.json │ ├── individuals.json │ ├── properties.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMS_1000353.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMS_1000353 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMS_1003056.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMS_1003056 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPRIDE_0000674.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPRIDE_0000674 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPRIDE_0000675.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPRIDE_0000675 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000916.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000916 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0003684.json │ │ └── http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0003684 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── preferred-root │ ├── classes │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FPreferredRoot.owl%2523PreferredRoot_0001.json │ ├── entities │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FPreferredRoot.owl%2523PreferredRoot_0001.json │ ├── individuals.json │ ├── properties.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FPreferredRoot.owl%2523PreferredRoot_0001.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FPreferredRoot.owl%2523PreferredRoot_0001 │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── punning-class-individual │ ├── classes │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fpunning%252Fclass-individual.owl%2523Quantity.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fpunning%252Fclass-individual.owl%2523ThermodynamicTemperature.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fpunning%252Fclass-individual.owl%2523Quantity.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fpunning%252Fclass-individual.owl%2523ThermodynamicTemperature.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fpunning%252Fclass-individual.owl%2523commonlyHasUnit.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fpunning%252Fclass-individual.owl%2523terakelvin.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fpunning%252Fclass-individual.owl%2523thermodynamicTemperatureOfTheTriplePointOfWater.json │ ├── individuals.json │ ├── individuals │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fpunning%252Fclass-individual.owl%2523ThermodynamicTemperature.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fpunning%252Fclass-individual.owl%2523terakelvin.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fpunning%252Fclass-individual.owl%2523thermodynamicTemperatureOfTheTriplePointOfWater.json │ ├── properties.json │ ├── properties │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fpunning%252Fclass-individual.owl%2523commonlyHasUnit.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fpunning%252Fclass-individual.owl%2523Quantity.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fpunning%252Fclass-individual.owl%2523Quantity │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fpunning%252Fclass-individual.owl%2523ThermodynamicTemperature.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fpunning%252Fclass-individual.owl%2523ThermodynamicTemperature │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── rdfs │ ├── classes │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523ContainerMembershipProperty.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal.json │ │ └── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523ContainerMembershipProperty.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523comment.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523domain.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523isDefinedBy.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523label.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523member.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523range.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523seeAlso.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523subClassOf.json │ │ └── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523subPropertyOf.json │ ├── individuals.json │ ├── properties.json │ ├── properties │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523comment.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523domain.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523isDefinedBy.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523label.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523member.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523range.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523seeAlso.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523subClassOf.json │ │ └── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523subPropertyOf.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523ContainerMembershipProperty.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523ContainerMembershipProperty │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource.json │ │ └── http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── reified-bnode │ ├── classes │ │ ├── http%253A%252F%252Fexample.com%252Freified-bnode%2523cell.json │ │ └── http%253A%252F%252Fexample.com%252Freified-bnode%2523cell_part.json │ ├── entities │ │ ├── http%253A%252F%252Fexample.com%252Freified-bnode%2523cell.json │ │ ├── http%253A%252F%252Fexample.com%252Freified-bnode%2523cell_part.json │ │ └── http%253A%252F%252Fexample.com%252Freified-bnode%2523part_of.json │ ├── individuals.json │ ├── properties.json │ ├── properties │ │ └── http%253A%252F%252Fexample.com%252Freified-bnode%2523part_of.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fexample.com%252Freified-bnode%2523cell.json │ │ ├── http%253A%252F%252Fexample.com%252Freified-bnode%2523cell │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fexample.com%252Freified-bnode%2523cell_part.json │ │ └── http%253A%252F%252Fexample.com%252Freified-bnode%2523cell_part │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── related-hasvalue │ ├── classes │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FhasValue.owl%2523A.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FhasValue.owl%2523A.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FhasValue.owl%2523b1.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FhasValue.owl%2523r.json │ ├── individuals.json │ ├── individuals │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FhasValue.owl%2523b1.json │ ├── properties.json │ ├── properties │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FhasValue.owl%2523r.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FhasValue.owl%2523A.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FhasValue.owl%2523A │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── related-oneof │ ├── classes │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FoneOf.owl%2523A.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FoneOf.owl%2523A.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FoneOf.owl%2523b1.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FoneOf.owl%2523b2.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FoneOf.owl%2523b3.json │ ├── individuals.json │ ├── individuals │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FoneOf.owl%2523b1.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FoneOf.owl%2523b2.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FoneOf.owl%2523b3.json │ ├── properties.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FoneOf.owl%2523A.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FoneOf.owl%2523A │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── related-somevaluesof-filleranonymousconjunction │ ├── classes │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerAnonymousConjunction.owl%2523A.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerAnonymousConjunction.owl%2523B.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerAnonymousConjunction.owl%2523C.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerAnonymousConjunction.owl%2523A.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerAnonymousConjunction.owl%2523B.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerAnonymousConjunction.owl%2523C.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerAnonymousConjunction.owl%2523r.json │ ├── individuals.json │ ├── properties.json │ ├── properties │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerAnonymousConjunction.owl%2523r.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerAnonymousConjunction.owl%2523A.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerAnonymousConjunction.owl%2523A │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerAnonymousConjunction.owl%2523B.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerAnonymousConjunction.owl%2523B │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerAnonymousConjunction.owl%2523C.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerAnonymousConjunction.owl%2523C │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── related-somevaluesof-filleranonymousdisjunction │ ├── classes │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252Fv.0.0.1%252FsomeValuesOf-fillerAnonymousDisjunction%2523A.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252Fv.0.0.1%252FsomeValuesOf-fillerAnonymousDisjunction%2523B.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252Fv.0.0.1%252FsomeValuesOf-fillerAnonymousDisjunction%2523C.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252Fv.0.0.1%252FsomeValuesOf-fillerAnonymousDisjunction%2523A.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252Fv.0.0.1%252FsomeValuesOf-fillerAnonymousDisjunction%2523B.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252Fv.0.0.1%252FsomeValuesOf-fillerAnonymousDisjunction%2523C.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252Fv.0.0.1%252FsomeValuesOf-fillerAnonymousDisjunction%2523p.json │ ├── individuals.json │ ├── properties.json │ ├── properties │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252Fv.0.0.1%252FsomeValuesOf-fillerAnonymousDisjunction%2523p.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252Fv.0.0.1%252FsomeValuesOf-fillerAnonymousDisjunction%2523A.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252Fv.0.0.1%252FsomeValuesOf-fillerAnonymousDisjunction%2523A │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252Fv.0.0.1%252FsomeValuesOf-fillerAnonymousDisjunction%2523B.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252Fv.0.0.1%252FsomeValuesOf-fillerAnonymousDisjunction%2523B │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252Fv.0.0.1%252FsomeValuesOf-fillerAnonymousDisjunction%2523C.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252Fv.0.0.1%252FsomeValuesOf-fillerAnonymousDisjunction%2523C │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── related-somevaluesof-fillernestedanonymousconjunction │ ├── classes │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerNestedAnonymousConjunction.owl%2523A.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerNestedAnonymousConjunction.owl%2523B.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerNestedAnonymousConjunction.owl%2523C.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerNestedAnonymousConjunction.owl%2523D.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerNestedAnonymousConjunction.owl%2523A.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerNestedAnonymousConjunction.owl%2523B.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerNestedAnonymousConjunction.owl%2523C.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerNestedAnonymousConjunction.owl%2523D.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerNestedAnonymousConjunction.owl%2523p.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerNestedAnonymousConjunction.owl%2523r.json │ ├── individuals.json │ ├── properties.json │ ├── properties │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerNestedAnonymousConjunction.owl%2523p.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerNestedAnonymousConjunction.owl%2523r.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerNestedAnonymousConjunction.owl%2523A.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerNestedAnonymousConjunction.owl%2523A │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerNestedAnonymousConjunction.owl%2523B.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerNestedAnonymousConjunction.owl%2523B │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerNestedAnonymousConjunction.owl%2523C.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerNestedAnonymousConjunction.owl%2523C │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerNestedAnonymousConjunction.owl%2523D.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerNestedAnonymousConjunction.owl%2523D │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── related-somevaluesof-hierarchical-relatedtoself │ ├── classes │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-hierarchical-relatedToSelf.owl%2523A.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-hierarchical-relatedToSelf.owl%2523A.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-hierarchical-relatedToSelf.owl%2523r.json │ ├── individuals.json │ ├── properties.json │ ├── properties │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-hierarchical-relatedToSelf.owl%2523r.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-hierarchical-relatedToSelf.owl%2523A.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-hierarchical-relatedToSelf.owl%2523A │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── related-somevaluesof-hierarchical │ ├── classes │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-hierarchical.owl%2523A.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-hierarchical.owl%2523B.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-hierarchical.owl%2523A.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-hierarchical.owl%2523B.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-hierarchical.owl%2523r.json │ ├── individuals.json │ ├── properties.json │ ├── properties │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-hierarchical.owl%2523r.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-hierarchical.owl%2523A.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-hierarchical.owl%2523A │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-hierarchical.owl%2523B.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-hierarchical.owl%2523B │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── related-somevaluesof-oneof │ ├── classes │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-oneOf.owl%2523A.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-oneOf.owl%2523A.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-oneOf.owl%2523b1.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-oneOf.owl%2523b2.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-oneOf.owl%2523b3.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-oneOf.owl%2523r.json │ ├── individuals.json │ ├── individuals │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-oneOf.owl%2523b1.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-oneOf.owl%2523b2.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-oneOf.owl%2523b3.json │ ├── properties.json │ ├── properties │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-oneOf.owl%2523r.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-oneOf.owl%2523A.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-oneOf.owl%2523A │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── related-somevaluesof │ ├── classes │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf.owl%2523A.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf.owl%2523B.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf.owl%2523A.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf.owl%2523B.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf.owl%2523r.json │ ├── individuals.json │ ├── properties.json │ ├── properties │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf.owl%2523r.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf.owl%2523A.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf.owl%2523A │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf.owl%2523B.json │ │ └── http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf.owl%2523B │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json ├── skos │ ├── classes │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523Collection.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523Concept.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523ConceptScheme.json │ │ └── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523OrderedCollection.json │ ├── entities │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523Collection.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523Concept.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523ConceptScheme.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523OrderedCollection.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523altLabel.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523broadMatch.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523broader.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523broaderTransitive.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523changeNote.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523closeMatch.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523definition.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523editorialNote.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523exactMatch.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523example.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523hasTopConcept.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523hiddenLabel.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523historyNote.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523inScheme.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523mappingRelation.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523member.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523memberList.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523narrowMatch.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523narrower.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523narrowerTransitive.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523notation.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523note.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523prefLabel.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523related.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523relatedMatch.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523scopeNote.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523semanticRelation.json │ │ └── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523topConceptOf.json │ ├── individuals.json │ ├── properties.json │ ├── properties │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523altLabel.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523broadMatch.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523broader.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523broaderTransitive.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523changeNote.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523closeMatch.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523definition.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523editorialNote.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523exactMatch.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523example.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523hasTopConcept.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523hiddenLabel.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523historyNote.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523inScheme.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523mappingRelation.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523member.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523memberList.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523narrowMatch.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523narrower.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523narrowerTransitive.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523notation.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523note.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523prefLabel.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523related.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523relatedMatch.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523scopeNote.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523semanticRelation.json │ │ └── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523topConceptOf.json │ ├── terms.json │ └── terms │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523Collection.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523Collection │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523Concept.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523Concept │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523ConceptScheme.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523ConceptScheme │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json │ │ ├── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523OrderedCollection.json │ │ └── http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523OrderedCollection │ │ ├── ancestors.json │ │ ├── children.json │ │ ├── descendants.json │ │ ├── hierarchicalAncestors.json │ │ ├── hierarchicalChildren.json │ │ ├── hierarchicalDescendants.json │ │ ├── hierarchicalParents.json │ │ └── parents.json └── xmpl │ ├── classes │ ├── http%253A%252F%252Fexmpl.org%252Fxmpl%252FXMPL000001.json │ ├── http%253A%252F%252Fexmpl.org%252Fxmpl%252FXMPL000002.json │ └── http%253A%252F%252Fexmpl.org%252Fxmpl%252FXMPL000003.json │ ├── entities │ ├── http%253A%252F%252Fexmpl.org%252Fxmpl%252FPreferred_name.json │ ├── http%253A%252F%252Fexmpl.org%252Fxmpl%252FSynonym.json │ ├── http%253A%252F%252Fexmpl.org%252Fxmpl%252FXMPL000001.json │ ├── http%253A%252F%252Fexmpl.org%252Fxmpl%252FXMPL000002.json │ └── http%253A%252F%252Fexmpl.org%252Fxmpl%252FXMPL000003.json │ ├── individuals.json │ ├── properties.json │ ├── properties │ ├── http%253A%252F%252Fexmpl.org%252Fxmpl%252FPreferred_name.json │ └── http%253A%252F%252Fexmpl.org%252Fxmpl%252FSynonym.json │ ├── terms.json │ └── terms │ ├── http%253A%252F%252Fexmpl.org%252Fxmpl%252FXMPL000001.json │ ├── http%253A%252F%252Fexmpl.org%252Fxmpl%252FXMPL000001 │ ├── ancestors.json │ ├── children.json │ ├── descendants.json │ ├── hierarchicalAncestors.json │ ├── hierarchicalChildren.json │ ├── hierarchicalDescendants.json │ ├── hierarchicalParents.json │ └── parents.json │ ├── http%253A%252F%252Fexmpl.org%252Fxmpl%252FXMPL000002.json │ ├── http%253A%252F%252Fexmpl.org%252Fxmpl%252FXMPL000002 │ ├── ancestors.json │ ├── children.json │ ├── descendants.json │ ├── hierarchicalAncestors.json │ ├── hierarchicalChildren.json │ ├── hierarchicalDescendants.json │ ├── hierarchicalParents.json │ └── parents.json │ ├── http%253A%252F%252Fexmpl.org%252Fxmpl%252FXMPL000003.json │ └── http%253A%252F%252Fexmpl.org%252Fxmpl%252FXMPL000003 │ ├── ancestors.json │ ├── children.json │ ├── descendants.json │ ├── hierarchicalAncestors.json │ ├── hierarchicalChildren.json │ ├── hierarchicalDescendants.json │ ├── hierarchicalParents.json │ └── parents.json └── v2 ├── ontologies.json └── ontologies ├── annotation-properties-simple ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── base_uri ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── data-property-domain-range-restrictions ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── definition-multiple ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── definition-single ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── direct-parent-with-annotation-axiom ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── duo ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── efo-hierarchical-properties ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── efo-iri-labels ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── genepio ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── gitissue502 ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── individuals-anonymous-types-with-inverse ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── isobsolete ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── isobsoletesimple ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── isobsoletesimplewitheforeason ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── label ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── labelsingle ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── max-cardinality-ttl ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── max-cardinality ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── oio ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── ontology-annotations-version-chebi ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── ontology-annotations-version-efo ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── ontology-annotations-version-ncbitaxon ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── ontology-annotations-version-obo-date ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-alldisjointclasses ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-alldisjointdataproperties ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-alldisjointobjectproperties ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-anonymous-inverse-object-property ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-asymmetric-object-property ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-class-assertion ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-class-expression-based-on-datatype-restriction ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-class ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-complex-class-assertions-with-negation ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-data-property-assertion ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-dataproperty-functional ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-datatype-enumeration-nesting-issue ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-datatype-enumeration ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-datatype-exclusion-nesting-issue ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-datatype-exclusion ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-datatype-minmax-nesting-issue ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-datatype-minmax ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-different-individuals ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-disjoint-classes ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-disjointunionof ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-enumeration-of-individuals ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-equivalent-intersectionof-complementof ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-equivalent-intersectionof ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-equivalent-propertyrestriction-allvaluesfrom ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-equivalent-propertyrestriction-somevaluesfrom ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-equivalentclass-collection ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-equivalentclass ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-equivalentobjectproperty ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-functional-data-property ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-functional-object-property ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-individual ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-intersectionof ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-inverse-inverse-functional-object-property ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-inverse-object-property ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-irreflexive-object-property ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-key-constraint-on-data-property ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-minimal ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-negative-data-property-assertion ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-negative-object-property-assertion ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-object-property-assertion ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-object-property-domain-range-restriction ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-objectproperty-asymmetric ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-objectproperty-disjoint ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-objectproperty-functional ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-objectproperty-haskey ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-objectproperty-inverse-withoutassignedname ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-objectproperty-inverse ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-objectproperty-inversefunctional ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-objectproperty-irreflexive ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-objectproperty-reflexive ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-property-chain ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-propertyrestriction-cardinality ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-propertyrestriction-maxqualifiedcardinality ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-propertyrestriction-minqualifiedcardinality ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-propertyrestriction-qualifiedcardinality ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-qualified-cardinality-exact-restriction ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-qualified-cardinality-max-restriction ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-qualified-cardinality-min-restriction ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-reflexive-object-property ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-same-individual ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-self-restriction ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-sub-object-property ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-subclassof-intersectionof ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-subclassof ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-symmetric-object-property ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-transitive-object-property ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-unionof ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-unqualified-cardinality-exact-restriction ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-user-defined-data-type-nesting-issue ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-user-defined-data-type ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── owl2primer-value-restriction-on-individual ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── partof ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── preferred-root ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── punning-class-individual ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── rdfs ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── reified-bnode ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── related-hasvalue ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── related-oneof ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── related-somevaluesof-filleranonymousconjunction ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── related-somevaluesof-filleranonymousdisjunction ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── related-somevaluesof-fillernestedanonymousconjunction ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── related-somevaluesof-hierarchical-relatedtoself ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── related-somevaluesof-hierarchical ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── related-somevaluesof-oneof ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── related-somevaluesof ├── classes.json ├── entities.json ├── individuals.json └── properties.json ├── skos ├── classes.json ├── entities.json ├── individuals.json └── properties.json └── xmpl ├── classes.json ├── entities.json ├── individuals.json └── properties.json /.dockerignore: -------------------------------------------------------------------------------- 1 | .venv 2 | target 3 | 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/ols-down-.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/.github/ISSUE_TEMPLATE/ols-down-.md -------------------------------------------------------------------------------- /.github/SECURITY_SCANNING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/.github/SECURITY_SCANNING.md -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/workflows/claude.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/.github/workflows/claude.yml -------------------------------------------------------------------------------- /.github/workflows/docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/.github/workflows/docker.yml -------------------------------------------------------------------------------- /.github/workflows/security-codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/.github/workflows/security-codeql.yml -------------------------------------------------------------------------------- /.github/workflows/security-secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/.github/workflows/security-secrets.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/LICENSE -------------------------------------------------------------------------------- /New OLS ontology request.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/New OLS ontology request.xlsx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/README.md -------------------------------------------------------------------------------- /apitester4/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/apitester4/.vscode/launch.json -------------------------------------------------------------------------------- /apitester4/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/apitester4/.vscode/settings.json -------------------------------------------------------------------------------- /apitester4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/apitester4/Dockerfile -------------------------------------------------------------------------------- /apitester4/ontologies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/apitester4/ontologies.json -------------------------------------------------------------------------------- /apitester4/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/apitester4/pom.xml -------------------------------------------------------------------------------- /backend/.dockerignore: -------------------------------------------------------------------------------- 1 | ./frontend/node_modules 2 | ./target 3 | 4 | -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | 3 | -------------------------------------------------------------------------------- /backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/backend/Dockerfile -------------------------------------------------------------------------------- /backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/backend/README.md -------------------------------------------------------------------------------- /backend/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/backend/pom.xml -------------------------------------------------------------------------------- /backend/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/backend/src/main/resources/logback.xml -------------------------------------------------------------------------------- /compare_testcase_output.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/compare_testcase_output.sh -------------------------------------------------------------------------------- /compare_testcase_output_mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/compare_testcase_output_mac.sh -------------------------------------------------------------------------------- /dataload/.dockerignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dataload/.gitignore: -------------------------------------------------------------------------------- 1 | out 2 | 3 | -------------------------------------------------------------------------------- /dataload/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/Dockerfile -------------------------------------------------------------------------------- /dataload/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/README.md -------------------------------------------------------------------------------- /dataload/configs/ado.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/configs/ado.json -------------------------------------------------------------------------------- /dataload/configs/apollo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/configs/apollo.json -------------------------------------------------------------------------------- /dataload/configs/cao.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/configs/cao.json -------------------------------------------------------------------------------- /dataload/configs/cdao.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/configs/cdao.json -------------------------------------------------------------------------------- /dataload/configs/ceph.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/configs/ceph.json -------------------------------------------------------------------------------- /dataload/configs/dron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/configs/dron.json -------------------------------------------------------------------------------- /dataload/configs/duo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/configs/duo.json -------------------------------------------------------------------------------- /dataload/configs/edam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/configs/edam.json -------------------------------------------------------------------------------- /dataload/configs/efo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/configs/efo.json -------------------------------------------------------------------------------- /dataload/configs/fbbt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/configs/fbbt.json -------------------------------------------------------------------------------- /dataload/configs/fobi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/configs/fobi.json -------------------------------------------------------------------------------- /dataload/configs/foundry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/configs/foundry.json -------------------------------------------------------------------------------- /dataload/configs/gaz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/configs/gaz.json -------------------------------------------------------------------------------- /dataload/configs/get-foundry-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/configs/get-foundry-config.sh -------------------------------------------------------------------------------- /dataload/configs/gsso.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/configs/gsso.json -------------------------------------------------------------------------------- /dataload/configs/hp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/configs/hp.json -------------------------------------------------------------------------------- /dataload/configs/idocovid19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/configs/idocovid19.json -------------------------------------------------------------------------------- /dataload/configs/kisao.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/configs/kisao.json -------------------------------------------------------------------------------- /dataload/configs/lifestylefactors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/configs/lifestylefactors.json -------------------------------------------------------------------------------- /dataload/configs/mamo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/configs/mamo.json -------------------------------------------------------------------------------- /dataload/configs/ms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/configs/ms.json -------------------------------------------------------------------------------- /dataload/configs/ols.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/configs/ols.json -------------------------------------------------------------------------------- /dataload/configs/pcl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/configs/pcl.json -------------------------------------------------------------------------------- /dataload/configs/pride.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/configs/pride.json -------------------------------------------------------------------------------- /dataload/configs/rdfs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/configs/rdfs.json -------------------------------------------------------------------------------- /dataload/configs/ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/configs/ro.json -------------------------------------------------------------------------------- /dataload/configs/sbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/configs/sbo.json -------------------------------------------------------------------------------- /dataload/configs/schemaorg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/configs/schemaorg.json -------------------------------------------------------------------------------- /dataload/configs/small.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/configs/small.json -------------------------------------------------------------------------------- /dataload/configs/taxon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/configs/taxon.json -------------------------------------------------------------------------------- /dataload/configs/uberon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/configs/uberon.json -------------------------------------------------------------------------------- /dataload/create_datafiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/create_datafiles.sh -------------------------------------------------------------------------------- /dataload/create_indexes.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/create_indexes.cypher -------------------------------------------------------------------------------- /dataload/create_neo4j_indexes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/create_neo4j_indexes.sh -------------------------------------------------------------------------------- /dataload/dataload.dockersh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/dataload.dockersh -------------------------------------------------------------------------------- /dataload/embeddings/ols_embed/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/embeddings/ols_embed/Cargo.lock -------------------------------------------------------------------------------- /dataload/embeddings/ols_embed/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/embeddings/ols_embed/Cargo.toml -------------------------------------------------------------------------------- /dataload/embeddings/ols_embed/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/embeddings/ols_embed/src/main.rs -------------------------------------------------------------------------------- /dataload/embeddings/ols_top_k/ols_top_k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/embeddings/ols_top_k/ols_top_k.py -------------------------------------------------------------------------------- /dataload/embeddings/ols_top_k/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/embeddings/ols_top_k/uv.lock -------------------------------------------------------------------------------- /dataload/extras/json2sssom/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/extras/json2sssom/pom.xml -------------------------------------------------------------------------------- /dataload/extras/orcid2level/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/extras/orcid2level/pom.xml -------------------------------------------------------------------------------- /dataload/extras/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/extras/pom.xml -------------------------------------------------------------------------------- /dataload/json2neo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/json2neo/pom.xml -------------------------------------------------------------------------------- /dataload/json2solr/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/json2solr/pom.xml -------------------------------------------------------------------------------- /dataload/linker/dependency-reduced-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/linker/dependency-reduced-pom.xml -------------------------------------------------------------------------------- /dataload/linker/foo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/linker/foo.json -------------------------------------------------------------------------------- /dataload/linker/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/linker/pom.xml -------------------------------------------------------------------------------- /dataload/linker/src/main/java/LevelDB.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/linker/src/main/java/LevelDB.java -------------------------------------------------------------------------------- /dataload/linker/src/main/java/Linker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/linker/src/main/java/Linker.java -------------------------------------------------------------------------------- /dataload/load_into_neo4j.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/load_into_neo4j.sh -------------------------------------------------------------------------------- /dataload/load_into_solr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/load_into_solr.sh -------------------------------------------------------------------------------- /dataload/make_csv_import_cmd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/make_csv_import_cmd.sh -------------------------------------------------------------------------------- /dataload/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/pom.xml -------------------------------------------------------------------------------- /dataload/pre_download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/pre_download.sh -------------------------------------------------------------------------------- /dataload/predownloader/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/predownloader/pom.xml -------------------------------------------------------------------------------- /dataload/rdf2json/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/rdf2json/pom.xml -------------------------------------------------------------------------------- /dataload/solr_config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/solr_config/README.md -------------------------------------------------------------------------------- /dataload/solr_config/ols4_autocomplete/conf/_rest_managed.json: -------------------------------------------------------------------------------- 1 | {"initArgs":{},"managedList":[]} 2 | -------------------------------------------------------------------------------- /dataload/solr_config/ols4_autocomplete/core.properties: -------------------------------------------------------------------------------- 1 | name=ols4_autocomplete 2 | -------------------------------------------------------------------------------- /dataload/solr_config/solr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/solr_config/solr.xml -------------------------------------------------------------------------------- /dataload/solr_config/solrconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/solr_config/solrconfig.xml -------------------------------------------------------------------------------- /dataload/solr_config/zoo.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dataload/solr_config/zoo.cfg -------------------------------------------------------------------------------- /dev-testing/README.md: -------------------------------------------------------------------------------- 1 | # Dev test cycle 2 | 3 | -------------------------------------------------------------------------------- /dev-testing/backend-testing/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dev-testing/backend-testing/pom.xml -------------------------------------------------------------------------------- /dev-testing/clean-neo4j.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dev-testing/clean-neo4j.sh -------------------------------------------------------------------------------- /dev-testing/clean-solr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dev-testing/clean-solr.sh -------------------------------------------------------------------------------- /dev-testing/frontend-testing/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dev-testing/frontend-testing/pom.xml -------------------------------------------------------------------------------- /dev-testing/load_test_into_neo4j.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dev-testing/load_test_into_neo4j.sh -------------------------------------------------------------------------------- /dev-testing/load_test_into_solr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dev-testing/load_test_into_solr.sh -------------------------------------------------------------------------------- /dev-testing/make_csv_import_cmd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dev-testing/make_csv_import_cmd.sh -------------------------------------------------------------------------------- /dev-testing/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dev-testing/pom.xml -------------------------------------------------------------------------------- /dev-testing/start-backend.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dev-testing/start-backend.sh -------------------------------------------------------------------------------- /dev-testing/start-frontend.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | cd $OLS4_HOME/frontend/ 3 | npm start 4 | -------------------------------------------------------------------------------- /dev-testing/start-neo4j.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dev-testing/start-neo4j.sh -------------------------------------------------------------------------------- /dev-testing/start-solr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dev-testing/start-solr.sh -------------------------------------------------------------------------------- /dev-testing/startNeo4JSolr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dev-testing/startNeo4JSolr.sh -------------------------------------------------------------------------------- /dev-testing/stop-neo4j.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dev-testing/stop-neo4j.sh -------------------------------------------------------------------------------- /dev-testing/stop-solr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dev-testing/stop-solr.sh -------------------------------------------------------------------------------- /dev-testing/stopNeo4jSolr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dev-testing/stopNeo4jSolr.sh -------------------------------------------------------------------------------- /dev-testing/teststack-mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dev-testing/teststack-mac.sh -------------------------------------------------------------------------------- /dev-testing/teststack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/dev-testing/teststack.sh -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/overview.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/docs/overview.graffle -------------------------------------------------------------------------------- /docs/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/docs/overview.png -------------------------------------------------------------------------------- /ebi_ontologies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/ebi_ontologies.json -------------------------------------------------------------------------------- /frontend/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build 3 | .yarn 4 | 5 | -------------------------------------------------------------------------------- /frontend/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/.env -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/.yarnrc.yml: -------------------------------------------------------------------------------- 1 | nodeLinker: node-modules 2 | 3 | -------------------------------------------------------------------------------- /frontend/Caddyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/Caddyfile -------------------------------------------------------------------------------- /frontend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/Dockerfile -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/build.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/build.mjs -------------------------------------------------------------------------------- /frontend/build_widgets.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/build_widgets.mjs -------------------------------------------------------------------------------- /frontend/dev_server.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/dev_server.mjs -------------------------------------------------------------------------------- /frontend/dist/banner.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/dist/css/ebi-global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/dist/css/ebi-global.css -------------------------------------------------------------------------------- /frontend/dist/curator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/dist/curator.svg -------------------------------------------------------------------------------- /frontend/dist/embl-ebi-background-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/dist/embl-ebi-background-4.jpg -------------------------------------------------------------------------------- /frontend/dist/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/dist/favicon.ico -------------------------------------------------------------------------------- /frontend/dist/instance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/dist/instance.svg -------------------------------------------------------------------------------- /frontend/dist/json.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/dist/json.svg -------------------------------------------------------------------------------- /frontend/dist/jsonbeta.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/dist/jsonbeta.svg -------------------------------------------------------------------------------- /frontend/dist/legacy/OLS-graphview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/dist/legacy/OLS-graphview.css -------------------------------------------------------------------------------- /frontend/dist/legacy/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/dist/legacy/jquery.min.js -------------------------------------------------------------------------------- /frontend/dist/legacy/ols-graphview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/dist/legacy/ols-graphview.js -------------------------------------------------------------------------------- /frontend/dist/legacy/vis.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/dist/legacy/vis.min.css -------------------------------------------------------------------------------- /frontend/dist/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/dist/logo.png -------------------------------------------------------------------------------- /frontend/dist/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/dist/logo.svg -------------------------------------------------------------------------------- /frontend/dist/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/dist/logo192.png -------------------------------------------------------------------------------- /frontend/dist/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/dist/logo512.png -------------------------------------------------------------------------------- /frontend/dist/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/dist/manifest.json -------------------------------------------------------------------------------- /frontend/dist/model-viewer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/dist/model-viewer.min.js -------------------------------------------------------------------------------- /frontend/dist/not-found.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/dist/not-found.jpg -------------------------------------------------------------------------------- /frontend/dist/part.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/dist/part.svg -------------------------------------------------------------------------------- /frontend/dist/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/dist/robots.txt -------------------------------------------------------------------------------- /frontend/dist_widgets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/dist_widgets/README.md -------------------------------------------------------------------------------- /frontend/dist_widgets/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/dist_widgets/package.json -------------------------------------------------------------------------------- /frontend/entrypoint.dockersh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/entrypoint.dockersh -------------------------------------------------------------------------------- /frontend/index.html.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/index.html.in -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/src/App.test.tsx -------------------------------------------------------------------------------- /frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/src/App.tsx -------------------------------------------------------------------------------- /frontend/src/app/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/src/app/api.ts -------------------------------------------------------------------------------- /frontend/src/app/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/src/app/hooks.ts -------------------------------------------------------------------------------- /frontend/src/app/mui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/src/app/mui.ts -------------------------------------------------------------------------------- /frontend/src/app/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/src/app/store.ts -------------------------------------------------------------------------------- /frontend/src/app/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/src/app/util.ts -------------------------------------------------------------------------------- /frontend/src/banner.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/components/ApiLinks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/src/components/ApiLinks.tsx -------------------------------------------------------------------------------- /frontend/src/components/Banner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/src/components/Banner.tsx -------------------------------------------------------------------------------- /frontend/src/components/DataTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/src/components/DataTable.tsx -------------------------------------------------------------------------------- /frontend/src/components/EntityLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/src/components/EntityLink.tsx -------------------------------------------------------------------------------- /frontend/src/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/src/components/Footer.tsx -------------------------------------------------------------------------------- /frontend/src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/src/components/Header.tsx -------------------------------------------------------------------------------- /frontend/src/components/Image3D.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/src/components/Image3D.jsx -------------------------------------------------------------------------------- /frontend/src/components/LanguagePicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/src/components/LanguagePicker.tsx -------------------------------------------------------------------------------- /frontend/src/components/LoadingOverlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/src/components/LoadingOverlay.tsx -------------------------------------------------------------------------------- /frontend/src/components/Node.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/src/components/Node.tsx -------------------------------------------------------------------------------- /frontend/src/components/Pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/src/components/Pagination.tsx -------------------------------------------------------------------------------- /frontend/src/components/SearchBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/src/components/SearchBox.tsx -------------------------------------------------------------------------------- /frontend/src/components/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/src/components/Tabs.tsx -------------------------------------------------------------------------------- /frontend/src/global.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'react-loading-overlay' -------------------------------------------------------------------------------- /frontend/src/history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/src/history.ts -------------------------------------------------------------------------------- /frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/src/index.css -------------------------------------------------------------------------------- /frontend/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/src/index.tsx -------------------------------------------------------------------------------- /frontend/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/src/logo.svg -------------------------------------------------------------------------------- /frontend/src/model/Class.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/src/model/Class.ts -------------------------------------------------------------------------------- /frontend/src/model/Entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/src/model/Entity.ts -------------------------------------------------------------------------------- /frontend/src/model/Individual.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/src/model/Individual.ts -------------------------------------------------------------------------------- /frontend/src/model/LinkedEntities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/src/model/LinkedEntities.ts -------------------------------------------------------------------------------- /frontend/src/model/Ontology.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/src/model/Ontology.ts -------------------------------------------------------------------------------- /frontend/src/model/Property.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/src/model/Property.ts -------------------------------------------------------------------------------- /frontend/src/model/Reified.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/src/model/Reified.ts -------------------------------------------------------------------------------- /frontend/src/model/Suggest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/src/model/Suggest.ts -------------------------------------------------------------------------------- /frontend/src/model/Thing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/src/model/Thing.ts -------------------------------------------------------------------------------- /frontend/src/pages/API.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/src/pages/API.tsx -------------------------------------------------------------------------------- /frontend/src/pages/About.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/src/pages/About.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Downloads.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/src/pages/Downloads.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/src/pages/Error.tsx -------------------------------------------------------------------------------- /frontend/src/pages/MCP.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/src/pages/MCP.tsx -------------------------------------------------------------------------------- /frontend/src/pages/OLS3Help.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/src/pages/OLS3Help.tsx -------------------------------------------------------------------------------- /frontend/src/pages/home/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/src/pages/home/Home.tsx -------------------------------------------------------------------------------- /frontend/src/pages/home/homeSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/src/pages/home/homeSlice.ts -------------------------------------------------------------------------------- /frontend/src/pages/search/Search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/src/pages/search/Search.tsx -------------------------------------------------------------------------------- /frontend/src/pages/search/searchSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/src/pages/search/searchSlice.ts -------------------------------------------------------------------------------- /frontend/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /frontend/src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/src/reportWebVitals.ts -------------------------------------------------------------------------------- /frontend/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/src/setupTests.ts -------------------------------------------------------------------------------- /frontend/src/widgets/EntityTreeWidget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/src/widgets/EntityTreeWidget.tsx -------------------------------------------------------------------------------- /frontend/src/widgets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/src/widgets/index.ts -------------------------------------------------------------------------------- /frontend/src/widgets/styles/treestyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/src/widgets/styles/treestyles.css -------------------------------------------------------------------------------- /frontend/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/tailwind.config.js -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /import.report: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /k8chart-dev/ols4/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/k8chart-dev/ols4/.helmignore -------------------------------------------------------------------------------- /k8chart-dev/ols4/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/k8chart-dev/ols4/Chart.yaml -------------------------------------------------------------------------------- /k8chart-dev/ols4/templates/_helpers.tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /k8chart-dev/ols4/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/k8chart-dev/ols4/values.yaml -------------------------------------------------------------------------------- /k8chart-dev/pvcs/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/k8chart-dev/pvcs/Chart.yaml -------------------------------------------------------------------------------- /k8chart-dev/pvcs/values.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /k8chart/ols4/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/k8chart/ols4/.helmignore -------------------------------------------------------------------------------- /k8chart/ols4/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/k8chart/ols4/Chart.yaml -------------------------------------------------------------------------------- /k8chart/ols4/templates/_helpers.tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /k8chart/ols4/templates/ols4-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/k8chart/ols4/templates/ols4-configmap.yaml -------------------------------------------------------------------------------- /k8chart/ols4/templates/ols4-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/k8chart/ols4/templates/ols4-ingress.yaml -------------------------------------------------------------------------------- /k8chart/ols4/templates/ols4-neo4j-pv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/k8chart/ols4/templates/ols4-neo4j-pv.yaml -------------------------------------------------------------------------------- /k8chart/ols4/templates/ols4-neo4j-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/k8chart/ols4/templates/ols4-neo4j-pvc.yaml -------------------------------------------------------------------------------- /k8chart/ols4/templates/ols4-solr-pv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/k8chart/ols4/templates/ols4-solr-pv.yaml -------------------------------------------------------------------------------- /k8chart/ols4/templates/ols4-solr-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/k8chart/ols4/templates/ols4-solr-pvc.yaml -------------------------------------------------------------------------------- /k8chart/ols4/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/k8chart/ols4/values.yaml -------------------------------------------------------------------------------- /k8chart/pvcs/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/k8chart/pvcs/Chart.yaml -------------------------------------------------------------------------------- /k8chart/pvcs/values.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /legacy-plugins-test/OLS-graphview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/legacy-plugins-test/OLS-graphview.css -------------------------------------------------------------------------------- /legacy-plugins-test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/legacy-plugins-test/README.md -------------------------------------------------------------------------------- /legacy-plugins-test/awesomplete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/legacy-plugins-test/awesomplete.css -------------------------------------------------------------------------------- /legacy-plugins-test/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/legacy-plugins-test/bootstrap.css -------------------------------------------------------------------------------- /legacy-plugins-test/handlebars.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/legacy-plugins-test/handlebars.min.js -------------------------------------------------------------------------------- /legacy-plugins-test/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/legacy-plugins-test/img/loading.gif -------------------------------------------------------------------------------- /legacy-plugins-test/img/network/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/legacy-plugins-test/img/network/cross.png -------------------------------------------------------------------------------- /legacy-plugins-test/img/network/cross2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/legacy-plugins-test/img/network/cross2.png -------------------------------------------------------------------------------- /legacy-plugins-test/img/network/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/legacy-plugins-test/img/network/minus.png -------------------------------------------------------------------------------- /legacy-plugins-test/img/network/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/legacy-plugins-test/img/network/plus.png -------------------------------------------------------------------------------- /legacy-plugins-test/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/legacy-plugins-test/jquery.min.js -------------------------------------------------------------------------------- /legacy-plugins-test/jstree.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/legacy-plugins-test/jstree.min.js -------------------------------------------------------------------------------- /legacy-plugins-test/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/legacy-plugins-test/main.css -------------------------------------------------------------------------------- /legacy-plugins-test/ols-autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/legacy-plugins-test/ols-autocomplete.js -------------------------------------------------------------------------------- /legacy-plugins-test/ols-colors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/legacy-plugins-test/ols-colors.css -------------------------------------------------------------------------------- /legacy-plugins-test/ols-graphview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/legacy-plugins-test/ols-graphview.js -------------------------------------------------------------------------------- /legacy-plugins-test/ols-treeview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/legacy-plugins-test/ols-treeview.js -------------------------------------------------------------------------------- /legacy-plugins-test/ols.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/legacy-plugins-test/ols.css -------------------------------------------------------------------------------- /legacy-plugins-test/proton/30px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/legacy-plugins-test/proton/30px.png -------------------------------------------------------------------------------- /legacy-plugins-test/proton/32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/legacy-plugins-test/proton/32px.png -------------------------------------------------------------------------------- /legacy-plugins-test/proton/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/legacy-plugins-test/proton/style.css -------------------------------------------------------------------------------- /legacy-plugins-test/proton/style.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/legacy-plugins-test/proton/style.min.css -------------------------------------------------------------------------------- /legacy-plugins-test/proton/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/legacy-plugins-test/proton/throbber.gif -------------------------------------------------------------------------------- /legacy-plugins-test/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/legacy-plugins-test/test.html -------------------------------------------------------------------------------- /legacy-plugins-test/typeaheadjs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/legacy-plugins-test/typeaheadjs.css -------------------------------------------------------------------------------- /legacy-plugins-test/vis.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/legacy-plugins-test/vis.min.css -------------------------------------------------------------------------------- /notebooks/free_text_embedding_search.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/notebooks/free_text_embedding_search.ipynb -------------------------------------------------------------------------------- /notebooks/hp_mp_similarity.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/notebooks/hp_mp_similarity.ipynb -------------------------------------------------------------------------------- /ols-shared/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/ols-shared/pom.xml -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/pom.xml -------------------------------------------------------------------------------- /test_api.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/test_api.sh -------------------------------------------------------------------------------- /test_api_fast.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/test_api_fast.sh -------------------------------------------------------------------------------- /test_dataload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/test_dataload.sh -------------------------------------------------------------------------------- /testcases/annotation-properties/simple.owl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/testcases/annotation-properties/simple.owl -------------------------------------------------------------------------------- /testcases/datatypes/nesting-issue/hao.owl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/testcases/datatypes/nesting-issue/hao.owl -------------------------------------------------------------------------------- /testcases/defined-fields/BaseUri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/testcases/defined-fields/BaseUri.json -------------------------------------------------------------------------------- /testcases/defined-fields/BaseUri.owl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/testcases/defined-fields/BaseUri.owl -------------------------------------------------------------------------------- /testcases/defined-fields/IsObsolete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/testcases/defined-fields/IsObsolete.json -------------------------------------------------------------------------------- /testcases/defined-fields/IsObsolete.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/testcases/defined-fields/IsObsolete.rdf -------------------------------------------------------------------------------- /testcases/defined-fields/PreferredRoot.owl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/testcases/defined-fields/PreferredRoot.owl -------------------------------------------------------------------------------- /testcases/defined-fields/labelSingle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/testcases/defined-fields/labelSingle.json -------------------------------------------------------------------------------- /testcases/defined-fields/labelSingle.owl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/testcases/defined-fields/labelSingle.owl -------------------------------------------------------------------------------- /testcases/duo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/testcases/duo.json -------------------------------------------------------------------------------- /testcases/hierarchical-properties/efo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/testcases/hierarchical-properties/efo.json -------------------------------------------------------------------------------- /testcases/hierarchical-properties/efo.owl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/testcases/hierarchical-properties/efo.owl -------------------------------------------------------------------------------- /testcases/imports/OntologyA.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/testcases/imports/OntologyA.rdf -------------------------------------------------------------------------------- /testcases/imports/OntologyB.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/testcases/imports/OntologyB.rdf -------------------------------------------------------------------------------- /testcases/imports/ro.owl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/testcases/imports/ro.owl -------------------------------------------------------------------------------- /testcases/iri-labels/efo-iri-labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/testcases/iri-labels/efo-iri-labels.json -------------------------------------------------------------------------------- /testcases/iri-labels/efo-iri-labels.owl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/testcases/iri-labels/efo-iri-labels.owl -------------------------------------------------------------------------------- /testcases/localized-labels/label.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/testcases/localized-labels/label.json -------------------------------------------------------------------------------- /testcases/localized-labels/label.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/testcases/localized-labels/label.rdf -------------------------------------------------------------------------------- /testcases/owl2-primer/class-assertion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/testcases/owl2-primer/class-assertion.json -------------------------------------------------------------------------------- /testcases/owl2-primer/class-assertion.owl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/testcases/owl2-primer/class-assertion.owl -------------------------------------------------------------------------------- /testcases/owl2-primer/class.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/testcases/owl2-primer/class.json -------------------------------------------------------------------------------- /testcases/owl2-primer/class.owl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/testcases/owl2-primer/class.owl -------------------------------------------------------------------------------- /testcases/owl2-primer/datatype-minmax.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/testcases/owl2-primer/datatype-minmax.json -------------------------------------------------------------------------------- /testcases/owl2-primer/datatype-minmax.owl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/testcases/owl2-primer/datatype-minmax.owl -------------------------------------------------------------------------------- /testcases/owl2-primer/disjoint-classes.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/testcases/owl2-primer/disjoint-classes.rdf -------------------------------------------------------------------------------- /testcases/owl2-primer/disjointUnionOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/testcases/owl2-primer/disjointUnionOf.json -------------------------------------------------------------------------------- /testcases/owl2-primer/disjointUnionOf.owl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/testcases/owl2-primer/disjointUnionOf.owl -------------------------------------------------------------------------------- /testcases/owl2-primer/equivalentClass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/testcases/owl2-primer/equivalentClass.json -------------------------------------------------------------------------------- /testcases/owl2-primer/equivalentClass.owl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/testcases/owl2-primer/equivalentClass.owl -------------------------------------------------------------------------------- /testcases/owl2-primer/intersectionOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/testcases/owl2-primer/intersectionOf.json -------------------------------------------------------------------------------- /testcases/owl2-primer/intersectionOf.owl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/testcases/owl2-primer/intersectionOf.owl -------------------------------------------------------------------------------- /testcases/owl2-primer/minimal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/testcases/owl2-primer/minimal.json -------------------------------------------------------------------------------- /testcases/owl2-primer/minimal.owl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/testcases/owl2-primer/minimal.owl -------------------------------------------------------------------------------- /testcases/owl2-primer/namedIndividual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/testcases/owl2-primer/namedIndividual.json -------------------------------------------------------------------------------- /testcases/owl2-primer/namedIndividual.owl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/testcases/owl2-primer/namedIndividual.owl -------------------------------------------------------------------------------- /testcases/owl2-primer/property-chain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/testcases/owl2-primer/property-chain.json -------------------------------------------------------------------------------- /testcases/owl2-primer/property-chain.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/testcases/owl2-primer/property-chain.rdf -------------------------------------------------------------------------------- /testcases/owl2-primer/same-individual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/testcases/owl2-primer/same-individual.json -------------------------------------------------------------------------------- /testcases/owl2-primer/same-individual.owl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/testcases/owl2-primer/same-individual.owl -------------------------------------------------------------------------------- /testcases/owl2-primer/self-restriction.owl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/testcases/owl2-primer/self-restriction.owl -------------------------------------------------------------------------------- /testcases/owl2-primer/subClassOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/testcases/owl2-primer/subClassOf.json -------------------------------------------------------------------------------- /testcases/owl2-primer/subClassOf.owl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/testcases/owl2-primer/subClassOf.owl -------------------------------------------------------------------------------- /testcases/owl2-primer/subClassOf.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/testcases/owl2-primer/subClassOf.ttl -------------------------------------------------------------------------------- /testcases/owl2-primer/unionOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/testcases/owl2-primer/unionOf.json -------------------------------------------------------------------------------- /testcases/owl2-primer/unionOf.owl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/testcases/owl2-primer/unionOf.owl -------------------------------------------------------------------------------- /testcases/punning/class-individual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/testcases/punning/class-individual.json -------------------------------------------------------------------------------- /testcases/punning/class-individual.owl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/testcases/punning/class-individual.owl -------------------------------------------------------------------------------- /testcases/reification/reified-bnode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/testcases/reification/reified-bnode.json -------------------------------------------------------------------------------- /testcases/reification/reified-bnode.owl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/testcases/reification/reified-bnode.owl -------------------------------------------------------------------------------- /testcases/related/hasValue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/testcases/related/hasValue.json -------------------------------------------------------------------------------- /testcases/related/hasValue.owl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/testcases/related/hasValue.owl -------------------------------------------------------------------------------- /testcases/related/oneOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/testcases/related/oneOf.json -------------------------------------------------------------------------------- /testcases/related/oneOf.owl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/testcases/related/oneOf.owl -------------------------------------------------------------------------------- /testcases/related/someValuesOf-oneOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/testcases/related/someValuesOf-oneOf.json -------------------------------------------------------------------------------- /testcases/related/someValuesOf-oneOf.owl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/testcases/related/someValuesOf-oneOf.owl -------------------------------------------------------------------------------- /testcases/related/someValuesOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/testcases/related/someValuesOf.json -------------------------------------------------------------------------------- /testcases/related/someValuesOf.owl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBISPOT/ols4/HEAD/testcases/related/someValuesOf.owl -------------------------------------------------------------------------------- /testcases_expected_output/annotation-properties/gitIssue502/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/annotation-properties/simple/classes.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/annotation-properties/simple/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/class-expression-issues/max-cardinality-ttl/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/class-expression-issues/max-cardinality/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/datatypes/nesting-issue/datatype-enumeration/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/datatypes/nesting-issue/datatype-exclusion/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/datatypes/nesting-issue/datatype-minmax/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/datatypes/nesting-issue/minimal-genepio/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/datatypes/nesting-issue/minimal-genepio/properties.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/datatypes/nesting-issue/user-defined-data-type/classes.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/datatypes/nesting-issue/user-defined-data-type/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/defined-fields/BaseUri/autocomplete.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/defined-fields/BaseUri/classes.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/defined-fields/BaseUri/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/defined-fields/BaseUri/properties.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/defined-fields/DefinitionMultiple/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/defined-fields/DefinitionMultiple/properties.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/defined-fields/DefinitionSingle/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/defined-fields/DefinitionSingle/properties.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/defined-fields/DirectParentWithAnnotationAxiom/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/defined-fields/IsObsoleteSimple/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/defined-fields/IsObsoleteSimple/properties.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/defined-fields/IsObsoleteSimpleWithEfoReason/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/defined-fields/IsObsoleteSimpleWithEfoReason/properties.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/defined-fields/PreferredRoot/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/defined-fields/PreferredRoot/properties.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/defined-fields/labelSingle/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/defined-fields/labelSingle/properties.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/hierarchical-properties/efo/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/hierarchical-properties/partof/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/hierarchical-properties/partof/properties.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/iri-labels/efo-iri-labels/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/iri-labels/use-user-defined-pref-label/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/localized-labels/label/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/ontology-annotations/version/chebi/autocomplete.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/ontology-annotations/version/chebi/classes.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/ontology-annotations/version/chebi/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/ontology-annotations/version/chebi/properties.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/ontology-annotations/version/efo/autocomplete.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/ontology-annotations/version/efo/classes.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/ontology-annotations/version/efo/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/ontology-annotations/version/efo/properties.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/ontology-annotations/version/ncbitaxon/autocomplete.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/ontology-annotations/version/ncbitaxon/classes.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/ontology-annotations/version/ncbitaxon/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/ontology-annotations/version/ncbitaxon/properties.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/ontology-annotations/version/obo-date/autocomplete.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/ontology-annotations/version/obo-date/classes.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/ontology-annotations/version/obo-date/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/ontology-annotations/version/obo-date/properties.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/allDisjointClasses/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/allDisjointClasses/properties.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/allDisjointDataProperties/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/allDisjointObjectProperties/classes.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/allDisjointObjectProperties/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/anonymous-inverse-object-property/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/asymmetric-object-property/classes.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/asymmetric-object-property/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/class-assertion/properties.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/class-expression-based-on-datatype-restriction/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/class/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/class/properties.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/complex-class-assertions-with-negation/properties.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/data-property-domain-range-restrictions/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/dataProperty-functional/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/datatype-enumeration/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/datatype-exclusion/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/datatype-minmax/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/different-individuals/classes.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/different-individuals/properties.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/disjoint-classes/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/disjoint-classes/properties.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/disjointUnionOf/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/disjointUnionOf/properties.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/enumeration-of-individuals/properties.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/equivalent-intersectionOf-complementOf/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/equivalent-intersectionOf-complementOf/properties.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/equivalent-intersectionOf/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/equivalent-intersectionOf/properties.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/equivalent-propertyRestriction-allValuesFrom/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/equivalent-propertyRestriction-someValuesFrom/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/equivalentClass-collection/properties.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/equivalentClass/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/equivalentClass/properties.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/equivalentObjectProperty/classes.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/functional-data-property/classes.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/functional-data-property/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/functional-object-property/classes.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/functional-object-property/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/intersectionOf/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/intersectionOf/properties.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/inverse-functional-object-property/classes.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/inverse-functional-object-property/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/inverse-object-property/classes.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/inverse-object-property/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/irreflexive-object-property/classes.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/irreflexive-object-property/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/minimal/autocomplete.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/minimal/classes.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/minimal/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/minimal/properties.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/namedIndividual/classes.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/namedIndividual/properties.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/negative-data-property-assertion/classes.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/object-property-domain-range-restriction/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/objectProperty-asymmetric/classes.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/objectProperty-asymmetric/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/objectProperty-disjoint/classes.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/objectProperty-disjoint/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/objectProperty-functional/classes.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/objectProperty-functional/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/objectProperty-inverse-withoutAssignedName/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/objectProperty-inverse/classes.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/objectProperty-inverse/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/objectProperty-inverseFunctional/classes.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/objectProperty-inverseFunctional/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/objectProperty-irreflexive/classes.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/objectProperty-irreflexive/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/objectProperty-reflexive/classes.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/objectProperty-reflexive/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/property-chain/classes.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/property-chain/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/reflexive-object-property/classes.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/reflexive-object-property/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/same-individual/classes.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/same-individual/properties.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/self-restriction/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/sub-object-property/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/subClassOf-intersectionOf/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/subClassOf-intersectionOf/properties.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/subClassOf/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/subClassOf/properties.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/symmetric-object-property/classes.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/symmetric-object-property/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/transitive-object-property/classes.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/transitive-object-property/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/unionOf/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/unionOf/properties.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/user-defined-data-type/classes.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/owl2-primer/user-defined-data-type/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/reification/reified-bnode/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/related/oneOf/properties.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/related/someValuesOf-fillerAnonymousConjunction/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/related/someValuesOf-fillerAnonymousDisjunction/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/related/someValuesOf-fillerNestedAnonymousConjunction/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/related/someValuesOf-hierarchical-relatedToSelf/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/related/someValuesOf-hierarchical/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output/related/someValuesOf/individuals.jsonl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/annotation-properties-simple/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/annotation-properties-simple/terms.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/base_uri/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/base_uri/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/base_uri/terms.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/data-property-domain-range-restrictions/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/definition-multiple/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/definition-multiple/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/definition-single/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/definition-single/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/direct-parent-with-annotation-axiom/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000001/ancestors.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000001/parents.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000009/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000009/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000011/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000011/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000018/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000018/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000024/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000024/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000026/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000026/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000027/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000027/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000028/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000028/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000030/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000030/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000034/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000034/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000035/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000035/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000038/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000038/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000142/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000142/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000144/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000144/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000145/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000145/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000146/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000146/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000147/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000147/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000148/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000148/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000182/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000182/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000002/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000002/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000003/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000003/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000004/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000004/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_00000044/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_00000044/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000005/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000005/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000007/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000007/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000011/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000011/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000012/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000012/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000014/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000014/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000015/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000015/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000016/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000016/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000019/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000019/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000020/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000020/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000021/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000021/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000022/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000022/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000024/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000024/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000025/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000025/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000026/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000026/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000027/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000027/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000028/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000028/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000029/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000029/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000031/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000031/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000032/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000032/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000033/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000033/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000034/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000034/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000035/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000035/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000036/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000036/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000038/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000038/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000039/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000039/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000040/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000040/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000043/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000043/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000045/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000045/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000046/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000046/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGAZ_00000448/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGAZ_00000448/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000005/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000005/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000006/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000006/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000007/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000007/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000008/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000008/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000012/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000012/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000013/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000013/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000015/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000015/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000017/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000017/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000018/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000018/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000019/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000019/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000024/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000024/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000025/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000025/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000031/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000031/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUO_0000001/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUO_0000002/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUO_0000003/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/duo/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252Ftopic_0003/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/efo-hierarchical-properties/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/efo-iri-labels/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/genepio/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/genepio/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/gitissue502/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/isobsoletesimple/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/isobsoletesimple/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/isobsoletesimplewitheforeason/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/isobsoletesimplewitheforeason/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/label/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/labelsingle/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/labelsingle/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/max-cardinality-ttl/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/max-cardinality/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/oio/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/ontology-annotations-version-chebi/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/ontology-annotations-version-chebi/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/ontology-annotations-version-chebi/terms.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/ontology-annotations-version-efo/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/ontology-annotations-version-efo/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/ontology-annotations-version-efo/terms.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/ontology-annotations-version-ncbitaxon/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/ontology-annotations-version-ncbitaxon/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/ontology-annotations-version-ncbitaxon/terms.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/ontology-annotations-version-obo-date/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/ontology-annotations-version-obo-date/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/ontology-annotations-version-obo-date/terms.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-alldisjointclasses/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-alldisjointclasses/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-alldisjointdataproperties/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-alldisjointobjectproperties/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-alldisjointobjectproperties/terms.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-anonymous-inverse-object-property/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-asymmetric-object-property/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-asymmetric-object-property/terms.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-class-assertion/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-class-expression-based-on-datatype-restriction/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-class/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-class/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-complex-class-assertions-with-negation/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-dataproperty-functional/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-datatype-enumeration-nesting-issue/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-datatype-enumeration/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-datatype-exclusion-nesting-issue/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-datatype-exclusion/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-datatype-minmax-nesting-issue/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-datatype-minmax/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-different-individuals/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-different-individuals/terms.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-disjoint-classes/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-disjoint-classes/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-disjointunionof/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-disjointunionof/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-enumeration-of-individuals/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-equivalent-intersectionof-complementof/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-equivalent-intersectionof-complementof/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-equivalent-intersectionof/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-equivalent-intersectionof/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-equivalent-propertyrestriction-allvaluesfrom/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-equivalent-propertyrestriction-somevaluesfrom/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-equivalentclass-collection/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-equivalentclass/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-equivalentclass/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-equivalentobjectproperty/terms.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-functional-data-property/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-functional-data-property/terms.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-functional-object-property/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-functional-object-property/terms.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-individual/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-individual/terms.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-intersectionof/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-intersectionof/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-inverse-inverse-functional-object-property/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-inverse-inverse-functional-object-property/terms.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-inverse-object-property/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-inverse-object-property/terms.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-irreflexive-object-property/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-irreflexive-object-property/terms.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-minimal/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-minimal/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-minimal/terms.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-negative-data-property-assertion/terms.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-object-property-domain-range-restriction/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-objectproperty-asymmetric/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-objectproperty-asymmetric/terms.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-objectproperty-disjoint/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-objectproperty-disjoint/terms.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-objectproperty-functional/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-objectproperty-functional/terms.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-objectproperty-inverse-withoutassignedname/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-objectproperty-inverse/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-objectproperty-inverse/terms.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-objectproperty-inversefunctional/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-objectproperty-inversefunctional/terms.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-objectproperty-irreflexive/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-objectproperty-irreflexive/terms.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-objectproperty-reflexive/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-objectproperty-reflexive/terms.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-property-chain/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-property-chain/terms.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-reflexive-object-property/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-reflexive-object-property/terms.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-same-individual/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-same-individual/terms.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-self-restriction/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-sub-object-property/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-subclassof-intersectionof/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-subclassof-intersectionof/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-subclassof/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-subclassof/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-symmetric-object-property/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-symmetric-object-property/terms.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-transitive-object-property/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-transitive-object-property/terms.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-unionof/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-unionof/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-user-defined-data-type-nesting-issue/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-user-defined-data-type-nesting-issue/terms.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-user-defined-data-type/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/owl2primer-user-defined-data-type/terms.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/partof/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/partof/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/preferred-root/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/preferred-root/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/rdfs/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/reified-bnode/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/related-oneof/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/related-somevaluesof-filleranonymousconjunction/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/related-somevaluesof-filleranonymousdisjunction/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/related-somevaluesof-fillernestedanonymousconjunction/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/related-somevaluesof-hierarchical-relatedtoself/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/related-somevaluesof-hierarchical/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/related-somevaluesof/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/skos/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/xmpl/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/xmpl/terms/http%253A%252F%252Fexmpl.org%252Fxmpl%252FXMPL000001/ancestors.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/xmpl/terms/http%253A%252F%252Fexmpl.org%252Fxmpl%252FXMPL000001/parents.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/xmpl/terms/http%253A%252F%252Fexmpl.org%252Fxmpl%252FXMPL000002/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/xmpl/terms/http%253A%252F%252Fexmpl.org%252Fxmpl%252FXMPL000002/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/xmpl/terms/http%253A%252F%252Fexmpl.org%252Fxmpl%252FXMPL000003/children.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/ontologies/xmpl/terms/http%253A%252F%252Fexmpl.org%252Fxmpl%252FXMPL000003/descendants.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/annotation-properties-simple/classes.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/annotation-properties-simple/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/base_uri/classes.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/base_uri/entities.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/base_uri/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/base_uri/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/data-property-domain-range-restrictions/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/definition-multiple/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/definition-multiple/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/definition-single/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/definition-single/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/direct-parent-with-annotation-axiom/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/efo-hierarchical-properties/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/efo-iri-labels/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/genepio/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/genepio/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/gitissue502/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/isobsoletesimple/classes.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/isobsoletesimple/entities.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/isobsoletesimple/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/isobsoletesimple/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/isobsoletesimplewitheforeason/classes.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/isobsoletesimplewitheforeason/entities.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/isobsoletesimplewitheforeason/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/isobsoletesimplewitheforeason/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/label/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/labelsingle/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/labelsingle/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/max-cardinality-ttl/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/max-cardinality/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/oio/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/ontology-annotations-version-chebi/classes.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/ontology-annotations-version-chebi/entities.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/ontology-annotations-version-chebi/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/ontology-annotations-version-chebi/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/ontology-annotations-version-efo/classes.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/ontology-annotations-version-efo/entities.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/ontology-annotations-version-efo/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/ontology-annotations-version-efo/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/ontology-annotations-version-ncbitaxon/classes.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/ontology-annotations-version-ncbitaxon/entities.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/ontology-annotations-version-ncbitaxon/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/ontology-annotations-version-ncbitaxon/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/ontology-annotations-version-obo-date/classes.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/ontology-annotations-version-obo-date/entities.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/ontology-annotations-version-obo-date/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/ontology-annotations-version-obo-date/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-alldisjointclasses/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-alldisjointclasses/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-alldisjointdataproperties/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-alldisjointobjectproperties/classes.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-alldisjointobjectproperties/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-anonymous-inverse-object-property/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-asymmetric-object-property/classes.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-asymmetric-object-property/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-class-assertion/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-class-expression-based-on-datatype-restriction/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-class/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-class/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-complex-class-assertions-with-negation/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-dataproperty-functional/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-datatype-enumeration-nesting-issue/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-datatype-enumeration/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-datatype-exclusion-nesting-issue/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-datatype-exclusion/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-datatype-minmax-nesting-issue/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-datatype-minmax/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-different-individuals/classes.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-different-individuals/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-disjoint-classes/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-disjoint-classes/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-disjointunionof/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-disjointunionof/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-enumeration-of-individuals/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-equivalent-intersectionof-complementof/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-equivalent-intersectionof-complementof/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-equivalent-intersectionof/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-equivalent-intersectionof/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-equivalent-propertyrestriction-allvaluesfrom/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-equivalent-propertyrestriction-somevaluesfrom/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-equivalentclass-collection/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-equivalentclass/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-equivalentclass/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-equivalentobjectproperty/classes.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-functional-data-property/classes.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-functional-data-property/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-functional-object-property/classes.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-functional-object-property/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-individual/classes.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-individual/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-intersectionof/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-intersectionof/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-inverse-inverse-functional-object-property/classes.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-inverse-inverse-functional-object-property/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-inverse-object-property/classes.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-inverse-object-property/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-irreflexive-object-property/classes.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-irreflexive-object-property/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-minimal/classes.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-minimal/entities.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-minimal/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-minimal/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-negative-data-property-assertion/classes.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-object-property-domain-range-restriction/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-objectproperty-asymmetric/classes.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-objectproperty-asymmetric/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-objectproperty-disjoint/classes.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-objectproperty-disjoint/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-objectproperty-functional/classes.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-objectproperty-functional/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-objectproperty-inverse-withoutassignedname/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-objectproperty-inverse/classes.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-objectproperty-inverse/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-objectproperty-inversefunctional/classes.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-objectproperty-inversefunctional/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-objectproperty-irreflexive/classes.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-objectproperty-irreflexive/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-objectproperty-reflexive/classes.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-objectproperty-reflexive/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-property-chain/classes.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-property-chain/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-reflexive-object-property/classes.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-reflexive-object-property/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-same-individual/classes.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-same-individual/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-self-restriction/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-sub-object-property/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-subclassof-intersectionof/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-subclassof-intersectionof/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-subclassof/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-subclassof/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-symmetric-object-property/classes.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-symmetric-object-property/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-transitive-object-property/classes.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-transitive-object-property/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-unionof/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-unionof/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-user-defined-data-type-nesting-issue/classes.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-user-defined-data-type-nesting-issue/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-user-defined-data-type/classes.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/owl2primer-user-defined-data-type/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/partof/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/partof/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/preferred-root/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/preferred-root/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/rdfs/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/reified-bnode/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/related-oneof/properties.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/related-somevaluesof-filleranonymousconjunction/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/related-somevaluesof-filleranonymousdisjunction/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/related-somevaluesof-fillernestedanonymousconjunction/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/related-somevaluesof-hierarchical-relatedtoself/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/related-somevaluesof-hierarchical/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/related-somevaluesof/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/skos/individuals.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /testcases_expected_output_api/v2/ontologies/xmpl/individuals.json: -------------------------------------------------------------------------------- 1 | [] --------------------------------------------------------------------------------