Skip to content

Instantly share code, notes, and snippets.

@shawngraham
Created June 11, 2018 14:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shawngraham/be7287163d17326e7b3b65c219093506 to your computer and use it in GitHub Desktop.
Save shawngraham/be7287163d17326e7b3b65c219093506 to your computer and use it in GitHub Desktop.
{
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"# Make the Requests module available\n",
"import requests"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"# Create a variable called 'api_search_url' and give it a value\n",
"api_search_url = 'https://opencontext.org/search/.json?'"
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"# This creates a dictionary called 'params' and sets values for the API's mandatory parameters\n",
"params = {\n",
" 'q': 'roman' # Search for this keyword -- feel free to change!\n",
" \n",
"}"
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/plain": [
"{'q': 'roman'}"
]
},
"execution_count": 7,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# Let's view the updated dictionary\n",
"params"
]
},
{
"cell_type": "code",
"execution_count": 8,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Here's the formatted url that gets sent to the Open Context API:\n",
"https://opencontext.org/search/.json?q=roman\n",
"\n",
"All ok\n"
]
}
],
"source": [
"# This sends our request to the Trove API and stores the result in a variable called 'response'\n",
"response = requests.get(api_search_url, params=params)\n",
"\n",
"# This shows us the url that's sent to the API\n",
"print('Here\\'s the formatted url that gets sent to the Open Context API:\\n{}\\n'.format(response.url)) \n",
"\n",
"# This checks the status code of the response to make sure there were no errors\n",
"if response.status_code == requests.codes.ok:\n",
" print('All ok')\n",
"elif response.status_code == 403:\n",
" print('There was an authentication error. Did you paste your API above?')\n",
"else:\n",
" print('There was a problem. Error code: {}'.format(response.status_code))\n",
" print('Try running this cell again.')"
]
},
{
"cell_type": "code",
"execution_count": 9,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"# Get the API's JSON results and make them available as a Python variable called 'data'\n",
"data = response.json()\n"
]
},
{
"cell_type": "code",
"execution_count": 10,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"oc-api:geotile-scope\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34mnull\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"features\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m2\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:geo-facet\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"geometry\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Polygon\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-disc-tile-geom-032021\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"coordinates\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m-84.375\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m27.059125784374068\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m-78.75000000000001\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m27.059125784374068\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m-78.75000000000001\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m31.952162238024975\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m-84.375\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m31.952162238024975\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m-84.375\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m27.059125784374068\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"when\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"stop\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"1950\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"start\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"-336999\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-gen:formation-use-life\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#event-032021\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m2\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Discovery region (1)\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1950\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&disc-geotile=032021\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m-337000\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"feature-type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"discovery region (facet)\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-disc-tile-032021\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?q=roman&disc-geotile=032021\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Feature\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&disc-geotile=032021\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m6343\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:geo-facet\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"geometry\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Polygon\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-disc-tile-geom-122103\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"coordinates\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m28.125\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m31.952162238024975\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m33.750000000000014\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m31.952162238024975\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m33.750000000000014\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m36.5978891330702\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m28.125\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m36.5978891330702\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m28.125\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m31.952162238024975\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"when\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"stop\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"1950\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"start\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"-336999\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-gen:formation-use-life\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#event-122103\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m6343\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Discovery region (2)\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1950\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&disc-geotile=122103\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m-337000\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"feature-type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"discovery region (facet)\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-disc-tile-122103\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?q=roman&disc-geotile=122103\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Feature\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&disc-geotile=122103\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m181\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:geo-facet\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"geometry\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Polygon\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-disc-tile-geom-122121\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"coordinates\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m28.125\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m27.059125784374068\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m33.750000000000014\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m27.059125784374068\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m33.750000000000014\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m31.952162238024975\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m28.125\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m31.952162238024975\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m28.125\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m27.059125784374068\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"when\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"stop\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"1950\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"start\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"-336999\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-gen:formation-use-life\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#event-122121\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m181\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Discovery region (3)\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1950\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&disc-geotile=122121\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m-337000\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"feature-type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"discovery region (facet)\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-disc-tile-122121\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?q=roman&disc-geotile=122121\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Feature\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&disc-geotile=122121\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m13\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:geo-facet\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"geometry\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Polygon\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-disc-tile-geom-122112\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"coordinates\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m33.750000000000014\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m31.952162238024975\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m39.37499999999999\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m31.952162238024975\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m39.37499999999999\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m36.5978891330702\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m33.750000000000014\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m36.5978891330702\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m33.750000000000014\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m31.952162238024975\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"when\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"stop\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"1950\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"start\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"-336999\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-gen:formation-use-life\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#event-122112\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m13\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Discovery region (4)\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1950\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&disc-geotile=122112\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m-337000\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"feature-type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"discovery region (facet)\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-disc-tile-122112\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?q=roman&disc-geotile=122112\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Feature\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&disc-geotile=122112\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m10\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:geo-facet\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"geometry\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Polygon\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-disc-tile-geom-120211\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"coordinates\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m16.875000000000007\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m52.482780222078226\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m22.499999999999986\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m52.482780222078226\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m22.499999999999986\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m55.7765730186677\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m16.875000000000007\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m55.7765730186677\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m16.875000000000007\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m52.482780222078226\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"when\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"stop\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"1950\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"start\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"-336999\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-gen:formation-use-life\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#event-120211\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m10\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Discovery region (5)\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1950\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&disc-geotile=120211\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m-337000\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"feature-type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"discovery region (facet)\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-disc-tile-120211\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?q=roman&disc-geotile=120211\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Feature\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&disc-geotile=120211\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m14\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:geo-facet\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"geometry\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Polygon\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-disc-tile-geom-122110\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"coordinates\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m33.750000000000014\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m36.5978891330702\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m39.37499999999999\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m36.5978891330702\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m39.37499999999999\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m40.979898069620155\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m33.750000000000014\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m40.979898069620155\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m33.750000000000014\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m36.5978891330702\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"when\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"stop\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"1950\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"start\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"-336999\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-gen:formation-use-life\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#event-122110\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m14\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Discovery region (6)\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1950\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&disc-geotile=122110\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m-337000\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"feature-type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"discovery region (facet)\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-disc-tile-122110\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?q=roman&disc-geotile=122110\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Feature\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&disc-geotile=122110\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m13\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:geo-facet\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"geometry\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Polygon\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-disc-tile-geom-120221\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"coordinates\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m5.625000000000013\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m45.089035564831015\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m11.249999999999993\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m45.089035564831015\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m11.249999999999993\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m48.922499263758255\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m5.625000000000013\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m48.922499263758255\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m5.625000000000013\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m45.089035564831015\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"when\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"stop\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"1950\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"start\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"-336999\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-gen:formation-use-life\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#event-120221\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m13\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Discovery region (7)\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1950\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&disc-geotile=120221\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m-337000\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"feature-type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"discovery region (facet)\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-disc-tile-120221\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?q=roman&disc-geotile=120221\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Feature\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&disc-geotile=120221\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:geo-facet\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"geometry\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Polygon\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-disc-tile-geom-032000\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"coordinates\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m-90.0\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m36.5978891330702\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m-84.375\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m36.5978891330702\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m-84.375\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m40.979898069620155\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m-90.0\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m40.979898069620155\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m-90.0\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m36.5978891330702\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"when\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"stop\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"1950\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"start\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"-336999\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-gen:formation-use-life\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#event-032000\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Discovery region (8)\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1950\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&disc-geotile=032000\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m-337000\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"feature-type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"discovery region (facet)\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-disc-tile-032000\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?q=roman&disc-geotile=032000\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Feature\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&disc-geotile=032000\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m28\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:geo-facet\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"geometry\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Polygon\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-disc-tile-geom-033111\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"coordinates\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m-5.625000000000013\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m36.5978891330702\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m0.0\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m36.5978891330702\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m0.0\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m40.979898069620155\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m-5.625000000000013\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m40.979898069620155\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m-5.625000000000013\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m36.5978891330702\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"when\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"stop\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"1950\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"start\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"-336999\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-gen:formation-use-life\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#event-033111\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m28\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Discovery region (9)\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1950\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&disc-geotile=033111\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m-337000\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"feature-type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"discovery region (facet)\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-disc-tile-033111\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?q=roman&disc-geotile=033111\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Feature\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&disc-geotile=033111\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m263\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:geo-facet\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"geometry\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Polygon\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-disc-tile-geom-120203\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"coordinates\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m5.625000000000013\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m48.922499263758255\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m11.249999999999993\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m48.922499263758255\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m11.249999999999993\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m52.482780222078226\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m5.625000000000013\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m52.482780222078226\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m5.625000000000013\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m48.922499263758255\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"when\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"stop\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"1950\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"start\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"-336999\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-gen:formation-use-life\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#event-120203\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m263\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Discovery region (10)\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1950\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&disc-geotile=120203\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m-337000\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"feature-type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"discovery region (facet)\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-disc-tile-120203\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?q=roman&disc-geotile=120203\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Feature\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&disc-geotile=120203\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m127\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:geo-facet\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"geometry\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Polygon\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-disc-tile-geom-120201\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"coordinates\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m5.625000000000013\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m52.482780222078226\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m11.249999999999993\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m52.482780222078226\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m11.249999999999993\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m55.7765730186677\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m5.625000000000013\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m55.7765730186677\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m5.625000000000013\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m52.482780222078226\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"when\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"stop\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"1950\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"start\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"-336999\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-gen:formation-use-life\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#event-120201\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m127\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Discovery region (11)\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1950\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&disc-geotile=120201\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m-337000\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"feature-type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"discovery region (facet)\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-disc-tile-120201\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?q=roman&disc-geotile=120201\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Feature\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&disc-geotile=120201\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m2981\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:geo-facet\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"geometry\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Polygon\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-disc-tile-geom-122130\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"coordinates\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m33.750000000000014\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m27.059125784374068\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m39.37499999999999\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m27.059125784374068\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m39.37499999999999\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m31.952162238024975\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m33.750000000000014\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m31.952162238024975\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m33.750000000000014\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m27.059125784374068\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"when\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"stop\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"1950\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"start\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"-336999\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-gen:formation-use-life\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#event-122130\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m2981\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Discovery region (12)\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1950\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&disc-geotile=122130\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m-337000\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"feature-type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"discovery region (facet)\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-disc-tile-122130\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?q=roman&disc-geotile=122130\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Feature\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&disc-geotile=122130\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:geo-facet\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"geometry\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Polygon\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-disc-tile-geom-123020\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"coordinates\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m45.00000000000001\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m27.059125784374068\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m50.62499999999999\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m27.059125784374068\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m50.62499999999999\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m31.952162238024975\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m45.00000000000001\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m31.952162238024975\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m45.00000000000001\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m27.059125784374068\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"when\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"stop\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"1950\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"start\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"-336999\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-gen:formation-use-life\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#event-123020\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Discovery region (13)\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1950\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&disc-geotile=123020\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m-337000\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"feature-type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"discovery region (facet)\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-disc-tile-123020\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?q=roman&disc-geotile=123020\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Feature\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&disc-geotile=123020\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m980\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:geo-facet\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"geometry\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Polygon\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-disc-tile-geom-122100\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"coordinates\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m22.499999999999986\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m36.5978891330702\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m28.125\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m36.5978891330702\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m28.125\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m40.979898069620155\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m22.499999999999986\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m40.979898069620155\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m22.499999999999986\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m36.5978891330702\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"when\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"stop\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"1950\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"start\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"-336999\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-gen:formation-use-life\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#event-122100\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m980\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Discovery region (14)\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1950\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&disc-geotile=122100\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m-337000\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"feature-type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"discovery region (facet)\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-disc-tile-122100\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?q=roman&disc-geotile=122100\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Feature\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&disc-geotile=122100\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m6\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:geo-facet\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"geometry\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Polygon\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-disc-tile-geom-021333\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"coordinates\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m-95.625\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m40.979898069620155\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m-90.0\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m40.979898069620155\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m-90.0\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m45.089035564831015\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m-95.625\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m45.089035564831015\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m-95.625\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m40.979898069620155\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"when\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"stop\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"1950\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"start\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"-336999\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-gen:formation-use-life\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#event-021333\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m6\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Discovery region (15)\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1950\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&disc-geotile=021333\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m-337000\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"feature-type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"discovery region (facet)\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-disc-tile-021333\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?q=roman&disc-geotile=021333\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Feature\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&disc-geotile=021333\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m127\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:geo-facet\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"geometry\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Polygon\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-disc-tile-geom-122101\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"coordinates\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m28.125\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m36.5978891330702\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m33.750000000000014\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m36.5978891330702\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m33.750000000000014\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m40.979898069620155\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m28.125\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m40.979898069620155\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m28.125\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m36.5978891330702\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"when\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"stop\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"1950\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"start\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"-336999\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-gen:formation-use-life\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#event-122101\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m127\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Discovery region (16)\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1950\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&disc-geotile=122101\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m-337000\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"feature-type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"discovery region (facet)\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-disc-tile-122101\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?q=roman&disc-geotile=122101\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Feature\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&disc-geotile=122101\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m7\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:geo-facet\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"geometry\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Polygon\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-disc-tile-geom-122131\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"coordinates\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m39.37499999999999\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m27.059125784374068\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m45.00000000000001\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m27.059125784374068\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m45.00000000000001\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m31.952162238024975\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m39.37499999999999\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m31.952162238024975\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m39.37499999999999\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m27.059125784374068\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"when\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"stop\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"1950\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"start\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"-336999\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-gen:formation-use-life\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#event-122131\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m7\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Discovery region (17)\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1950\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&disc-geotile=122131\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m-337000\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"feature-type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"discovery region (facet)\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-disc-tile-122131\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?q=roman&disc-geotile=122131\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Feature\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&disc-geotile=122131\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m56\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:geo-facet\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"geometry\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Polygon\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-disc-tile-geom-120212\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"coordinates\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m11.249999999999993\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m48.922499263758255\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m16.875000000000007\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m48.922499263758255\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m16.875000000000007\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m52.482780222078226\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m11.249999999999993\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m52.482780222078226\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m11.249999999999993\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m48.922499263758255\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"when\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"stop\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"1950\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"start\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"-336999\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-gen:formation-use-life\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#event-120212\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m56\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Discovery region (18)\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1950\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&disc-geotile=120212\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m-337000\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"feature-type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"discovery region (facet)\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-disc-tile-120212\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?q=roman&disc-geotile=120212\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Feature\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&disc-geotile=120212\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m9604\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:geo-facet\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"geometry\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Polygon\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-disc-tile-geom-120232\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"coordinates\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m11.249999999999993\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m40.979898069620155\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m16.875000000000007\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m40.979898069620155\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m16.875000000000007\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m45.089035564831015\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m11.249999999999993\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m45.089035564831015\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m11.249999999999993\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m40.979898069620155\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"when\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"stop\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"1950\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"start\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"-336999\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-gen:formation-use-life\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#event-120232\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m9604\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Discovery region (19)\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1950\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&disc-geotile=120232\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m-337000\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"feature-type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"discovery region (facet)\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-disc-tile-120232\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?q=roman&disc-geotile=120232\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Feature\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&disc-geotile=120232\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:geo-facet\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"geometry\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Polygon\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-disc-tile-geom-023301\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"coordinates\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m-106.875\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m16.636191878397664\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m-101.25\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m16.636191878397664\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m-101.25\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m21.943045533438166\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m-106.875\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m21.943045533438166\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m-106.875\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m16.636191878397664\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"when\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"stop\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"1950\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"start\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"-336999\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-gen:formation-use-life\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#event-023301\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Discovery region (20)\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1950\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&disc-geotile=023301\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m-337000\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"feature-type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"discovery region (facet)\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-disc-tile-023301\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?q=roman&disc-geotile=023301\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Feature\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&disc-geotile=023301\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m15\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:geo-facet\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"geometry\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Polygon\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-disc-tile-geom-122111\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"coordinates\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m39.37499999999999\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m36.5978891330702\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m45.00000000000001\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m36.5978891330702\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m45.00000000000001\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m40.979898069620155\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m39.37499999999999\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m40.979898069620155\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m39.37499999999999\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m36.5978891330702\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"when\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"stop\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"1950\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"start\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"-336999\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-gen:formation-use-life\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#event-122111\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m15\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Discovery region (21)\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1950\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&disc-geotile=122111\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m-337000\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"feature-type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"discovery region (facet)\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-disc-tile-122111\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?q=roman&disc-geotile=122111\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Feature\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&disc-geotile=122111\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m3\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:geo-facet\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"geometry\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Polygon\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-disc-tile-geom-023131\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"coordinates\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m-95.625\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m27.059125784374068\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m-90.0\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m27.059125784374068\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m-90.0\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m31.952162238024975\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m-95.625\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m31.952162238024975\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m-95.625\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m27.059125784374068\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"when\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"stop\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"1950\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"start\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"-336999\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-gen:formation-use-life\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#event-023131\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m3\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Discovery region (22)\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1950\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&disc-geotile=023131\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m-337000\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"feature-type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"discovery region (facet)\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-disc-tile-023131\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?q=roman&disc-geotile=023131\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Feature\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&disc-geotile=023131\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:geo-facet\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"geometry\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Polygon\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-disc-tile-geom-030222\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"coordinates\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m-90.0\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m40.979898069620155\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m-84.375\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m40.979898069620155\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m-84.375\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m45.089035564831015\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m-90.0\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m45.089035564831015\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m-90.0\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m40.979898069620155\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"when\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"stop\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"1950\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"start\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"-336999\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-gen:formation-use-life\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#event-030222\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Discovery region (23)\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1950\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&disc-geotile=030222\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m-337000\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"feature-type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"discovery region (facet)\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-disc-tile-030222\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?q=roman&disc-geotile=030222\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Feature\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&disc-geotile=030222\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m29\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:geo-facet\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"geometry\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Polygon\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-disc-tile-geom-120210\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"coordinates\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m11.249999999999993\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m52.482780222078226\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m16.875000000000007\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m52.482780222078226\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m16.875000000000007\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m55.7765730186677\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m11.249999999999993\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m55.7765730186677\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m11.249999999999993\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m52.482780222078226\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"when\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"stop\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"1950\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"start\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"-336999\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-gen:formation-use-life\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#event-120210\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m29\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Discovery region (24)\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1950\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&disc-geotile=120210\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m-337000\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"feature-type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"discovery region (facet)\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-disc-tile-120210\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?q=roman&disc-geotile=120210\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Feature\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&disc-geotile=120210\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:geo-record\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"project label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"ARCE Sphinx Project 1979-1983 Archive\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"updated\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"2018-03-23T01:20:16Z\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"context label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Egypt/Giza/Sphinx Amphitheater/Sphinx Ditch/Sphinx Northwest/Feature FNWa2\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"published\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"2017-12-23T01:03:45Z\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"uri\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/media/433b76a4-d91e-48ec-9821-70dbaf510957\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"item category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Image\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Drawing d-nw-004\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"snippet\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\" small (modern and <em>Roman</em>) veneer stones immediately west of the N Large Box (\\\"caison\\\"). Profile shows the\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"thumbnail\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://artiraq.org/static/opencontext/giza-sphinx/thumbs/Drawings/101-drawing-d-nw-004.jpg\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34mfalse\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/media/433b76a4-d91e-48ec-9821-70dbaf510957\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34mfalse\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"feature-type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"item record\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"context href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/subjects/cecae52e-d854-4798-ba27-03edfb538bd0\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"project href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/projects/141e814a-ba2d-4560-879f-80f1afb019e9\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"citation uri\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34mfalse\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#rec-1-of-21565\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"geometry\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Point\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-rec-geom-1-of-21565\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"coordinates\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m31.137304256746678\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m29.975380310025677\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/media/433b76a4-d91e-48ec-9821-70dbaf510957\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Drawing d-nw-004\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Feature\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#record-1-of-21565\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:geo-record\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"project label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"ARCE Sphinx Project 1979-1983 Archive\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"updated\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"2018-03-23T01:22:16Z\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"context label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Egypt/Giza/Sphinx Amphitheater/Sphinx Ditch/Sphinx Northwest/Feature FNWa2\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"published\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"2017-12-23T01:03:41Z\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"uri\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/media/607284d3-0506-4db5-b491-6a567e0544c0\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"item category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Image\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Drawing d-nw-001\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"snippet\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\" \\n Description NWa2: Large fine limestone block showing after removal of small (modern and <em>Roman</em>) veneer stones\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"thumbnail\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://artiraq.org/static/opencontext/giza-sphinx/thumbs/Drawings/101-drawing-d-nw-001.jpg\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34mfalse\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/media/607284d3-0506-4db5-b491-6a567e0544c0\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34mfalse\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"feature-type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"item record\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"context href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/subjects/cecae52e-d854-4798-ba27-03edfb538bd0\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"project href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/projects/141e814a-ba2d-4560-879f-80f1afb019e9\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"citation uri\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34mfalse\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#rec-2-of-21565\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"geometry\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Point\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-rec-geom-2-of-21565\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"coordinates\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m31.137304256746678\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m29.975380310025677\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/media/607284d3-0506-4db5-b491-6a567e0544c0\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Drawing d-nw-001\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Feature\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#record-2-of-21565\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:geo-record\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"project label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"ARCE Sphinx Project 1979-1983 Archive\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"updated\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"2018-03-23T01:20:12Z\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"context label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Egypt/Giza/Sphinx Amphitheater/Sphinx Ditch/Sphinx East/Removal 14\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"published\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"2017-12-23T01:02:26Z\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"uri\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/media/99478565-701f-4329-be42-dce415b9b68a\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"item category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Image\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Drawing d-n-008\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"snippet\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\" R14 was the removal of a small amount of deposits immediately south of the <em>Roman</em> Stairs, between the\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"thumbnail\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://artiraq.org/static/opencontext/giza-sphinx/thumbs/Drawings/101-drawing-d-n-008.jpg\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34mfalse\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/media/99478565-701f-4329-be42-dce415b9b68a\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34mfalse\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"feature-type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"item record\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"context href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/subjects/37cbe2aa-1877-4eba-b3a5-45c43d13abc9\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"project href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/projects/141e814a-ba2d-4560-879f-80f1afb019e9\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"citation uri\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34mfalse\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#rec-3-of-21565\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"geometry\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Point\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-rec-geom-3-of-21565\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"coordinates\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m31.137937830616877\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m29.97526657483614\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/media/99478565-701f-4329-be42-dce415b9b68a\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Drawing d-n-008\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Feature\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#record-3-of-21565\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:geo-record\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"project label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"ARCE Sphinx Project 1979-1983 Archive\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"updated\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"2018-03-23T01:05:18Z\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"context label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Egypt/Giza/Sphinx Amphitheater/Sphinx Ditch/Sphinx East/Removal 14\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"published\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"2017-12-23T01:01:31Z\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"uri\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/media/27d3136b-3023-45e4-ae86-901fa8ad8342\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"item category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Image\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Drawing d-e-016\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"snippet\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\" immediately south of the <em>Roman</em> Stairs, between the stairs and the Sound and Light box and a core block of the\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"thumbnail\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://artiraq.org/static/opencontext/giza-sphinx/thumbs/Drawings/d-e-016.jpg\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34mfalse\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/media/27d3136b-3023-45e4-ae86-901fa8ad8342\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34mfalse\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"feature-type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"item record\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"context href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/subjects/37cbe2aa-1877-4eba-b3a5-45c43d13abc9\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"project href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/projects/141e814a-ba2d-4560-879f-80f1afb019e9\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"citation uri\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34mfalse\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#rec-4-of-21565\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"geometry\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Point\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-rec-geom-4-of-21565\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"coordinates\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m31.137937830616877\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m29.97526657483614\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/media/27d3136b-3023-45e4-ae86-901fa8ad8342\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Drawing d-e-016\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Feature\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#record-4-of-21565\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:geo-record\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"project label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"ARCE Sphinx Project 1979-1983 Archive\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"updated\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"2018-03-23T01:05:51Z\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"context label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Egypt/Giza/Sphinx Amphitheater/Sphinx Ditch/Sphinx East/Removal 14\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"published\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"2017-12-23T01:01:31Z\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"uri\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/media/4f1437de-aef1-4f43-8c0b-47eb8e7fe850\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"item category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Image\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Drawing d-e-017\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"snippet\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\" <em>Roman</em> Stairs, between the stairs and the Sound and Light box and a core block of the west Sphinx Temple\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"thumbnail\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://artiraq.org/static/opencontext/giza-sphinx/thumbs/Drawings/d-e-017.jpg\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34mfalse\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/media/4f1437de-aef1-4f43-8c0b-47eb8e7fe850\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34mfalse\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"feature-type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"item record\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"context href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/subjects/37cbe2aa-1877-4eba-b3a5-45c43d13abc9\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"project href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/projects/141e814a-ba2d-4560-879f-80f1afb019e9\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"citation uri\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34mfalse\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#rec-5-of-21565\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"geometry\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Point\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-rec-geom-5-of-21565\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"coordinates\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m31.137937830616877\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m29.97526657483614\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/media/4f1437de-aef1-4f43-8c0b-47eb8e7fe850\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Drawing d-e-017\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Feature\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#record-5-of-21565\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:geo-record\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"project label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"ARCE Sphinx Project 1979-1983 Archive\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"updated\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"2018-03-23T01:02:11Z\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"context label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Egypt/Giza/Sphinx Amphitheater/Sphinx Ditch/Sphinx East/Removal 14\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"published\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"2017-12-23T01:01:33Z\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"uri\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/media/846687bc-2e8c-4b44-876c-4873e4278250\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"item category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Image\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Drawing d-e-019\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"snippet\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\" R14 was the removal of a small amount of deposits immediately south of the <em>Roman</em> Stairs, between the\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"thumbnail\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://artiraq.org/static/opencontext/giza-sphinx/thumbs/Drawings/d-e-019.jpg\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34mfalse\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/media/846687bc-2e8c-4b44-876c-4873e4278250\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34mfalse\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"feature-type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"item record\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"context href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/subjects/37cbe2aa-1877-4eba-b3a5-45c43d13abc9\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"project href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/projects/141e814a-ba2d-4560-879f-80f1afb019e9\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"citation uri\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34mfalse\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#rec-6-of-21565\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"geometry\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Point\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-rec-geom-6-of-21565\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"coordinates\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m31.137937830616877\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m29.97526657483614\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/media/846687bc-2e8c-4b44-876c-4873e4278250\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Drawing d-e-019\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Feature\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#record-6-of-21565\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:geo-record\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"project label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"ARCE Sphinx Project 1979-1983 Archive\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"updated\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"2018-03-23T01:22:18Z\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"context label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Egypt/Giza/Sphinx Amphitheater/Sphinx Ditch/Sphinx East/Removal 14\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"published\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"2017-12-23T01:01:35Z\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"uri\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/media/b9a02c98-e11d-47c7-81c4-db140c1712ed\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"item category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Image\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Drawing d-e-022\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"snippet\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\" of <em>Roman</em> pavement and SE of South Forepaw \\n \\n Year \\n Resource Type Drawings \\n Keywords Depression\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"thumbnail\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://artiraq.org/static/opencontext/giza-sphinx/thumbs/Drawings/d-e-022.jpg\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34mfalse\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/media/b9a02c98-e11d-47c7-81c4-db140c1712ed\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34mfalse\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"feature-type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"item record\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"context href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/subjects/37cbe2aa-1877-4eba-b3a5-45c43d13abc9\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"project href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/projects/141e814a-ba2d-4560-879f-80f1afb019e9\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"citation uri\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34mfalse\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#rec-7-of-21565\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"geometry\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Point\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-rec-geom-7-of-21565\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"coordinates\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m31.137937830616877\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m29.97526657483614\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/media/b9a02c98-e11d-47c7-81c4-db140c1712ed\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Drawing d-e-022\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Feature\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#record-7-of-21565\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:geo-record\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"project label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"The Gabii Project\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"updated\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"2018-01-31T08:15:43Z\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"context label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Italy/Gabii/Area B/Unit 1162\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"published\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"2017-06-04T23:27:35Z\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"uri\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/media/07c8b5d2-dab1-4b21-ae90-ceb0ffe515b0\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"item category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Image\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"2771\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"snippet\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\" Priority Medium \\n File Attachment Filename 2771.pdf \\n \\n<em>Roman</em> Republican\\nhttp://n2t.net/ark:/99152\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"thumbnail\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/static/oc/images/icons/3d-noun-37529.png\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m-50.0\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/media/07c8b5d2-dab1-4b21-ae90-ceb0ffe515b0\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m-500.0\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"feature-type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"item record\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"context href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/subjects/98014789-c3a6-48c6-9da8-8598d1c026eb\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"project href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/projects/3585b372-8d2d-436c-9a4c-b5c10fce3ccd\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"citation uri\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34mfalse\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#rec-8-of-21565\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"geometry\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Point\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-rec-geom-8-of-21565\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"coordinates\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m12.719540897587173\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m41.88768286105927\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"when\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"stop\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"-0049\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"start\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"-0499\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-gen:formation-use-life\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#event-rec-when-8-of-21565\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/media/07c8b5d2-dab1-4b21-ae90-ceb0ffe515b0\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"2771\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Feature\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#record-8-of-21565\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:geo-record\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"project label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"ARCE Sphinx Project 1979-1983 Archive\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"updated\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"2018-03-23T01:04:19Z\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"context label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Egypt/Giza/Sphinx Amphitheater/Sphinx Ditch/Sphinx East/Roman Pavement/Removal 15\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"published\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"2017-12-23T01:01:33Z\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"uri\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/media/254e87ae-8e32-43c9-a13b-71d579213978\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"item category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Image\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Drawing d-e-020\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"snippet\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Drawing d-e-020 from Egypt/Giza/Sphinx Amphitheater/Sphinx Ditch/Sphinx East/<em>Roman</em> Pavement/Removal\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"thumbnail\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://artiraq.org/static/opencontext/giza-sphinx/thumbs/Drawings/d-e-020.jpg\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34mfalse\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/media/254e87ae-8e32-43c9-a13b-71d579213978\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34mfalse\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"feature-type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"item record\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"context href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/subjects/c89534ea-27ef-4989-9330-188925c983b8\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"project href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/projects/141e814a-ba2d-4560-879f-80f1afb019e9\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"citation uri\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34mfalse\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#rec-9-of-21565\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"geometry\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Point\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-rec-geom-9-of-21565\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"coordinates\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m31.13804786067644\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m29.97526634987221\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/media/254e87ae-8e32-43c9-a13b-71d579213978\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Drawing d-e-020\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Feature\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#record-9-of-21565\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:geo-record\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"project label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"ARCE Sphinx Project 1979-1983 Archive\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"updated\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"2018-03-23T01:02:54Z\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"context label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Egypt/Giza/Sphinx Amphitheater/Sphinx Ditch/Sphinx East/Roman Pavement/Removal 15\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"published\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"2017-12-23T01:01:34Z\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"uri\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/media/14851d29-eb3f-431e-84cc-d1d90fc165eb\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"item category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Image\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Drawing d-e-021\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"snippet\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Drawing d-e-021 from Egypt/Giza/Sphinx Amphitheater/Sphinx Ditch/Sphinx East/<em>Roman</em> Pavement/Removal\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"thumbnail\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://artiraq.org/static/opencontext/giza-sphinx/thumbs/Drawings/d-e-021.jpg\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34mfalse\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/media/14851d29-eb3f-431e-84cc-d1d90fc165eb\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34mfalse\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"feature-type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"item record\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"context href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/subjects/c89534ea-27ef-4989-9330-188925c983b8\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"project href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/projects/141e814a-ba2d-4560-879f-80f1afb019e9\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"citation uri\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34mfalse\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#rec-10-of-21565\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"geometry\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Point\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-rec-geom-10-of-21565\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"coordinates\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m31.13804786067644\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m29.97526634987221\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/media/14851d29-eb3f-431e-84cc-d1d90fc165eb\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Drawing d-e-021\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Feature\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#record-10-of-21565\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:geo-record\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"project label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"ARCE Sphinx Project 1979-1983 Archive\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"updated\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"2018-03-23T01:20:43Z\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"context label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Egypt/Giza/Terrace 1/Sphinx Temple\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"published\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"2017-12-23T01:02:55Z\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"uri\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/media/e4c24bfd-6199-4d66-9af2-392ee138a247\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"item category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Image\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Drawing d-gen-011\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"snippet\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\" including: Sphinx Temple NW Corner, Sphinx North Forepaw, Pavement, <em>Roman</em> Stairs, North Ledge, Amenhotep II\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"thumbnail\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://artiraq.org/static/opencontext/giza-sphinx/thumbs/Drawings-B/d-gen-011.jpg\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34mfalse\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/media/e4c24bfd-6199-4d66-9af2-392ee138a247\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34mfalse\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"feature-type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"item record\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"context href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/subjects/1a934b66-8bd6-476e-94c1-fdb51c456aa9\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"project href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/projects/141e814a-ba2d-4560-879f-80f1afb019e9\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"citation uri\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34mfalse\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#rec-11-of-21565\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"geometry\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Point\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-rec-geom-11-of-21565\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"coordinates\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m31.13832000374021\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m29.975190517527544\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/media/e4c24bfd-6199-4d66-9af2-392ee138a247\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Drawing d-gen-011\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Feature\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#record-11-of-21565\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:geo-record\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"project label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"ARCE Sphinx Project 1979-1983 Archive\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"updated\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"2018-03-23T01:02:37Z\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"context label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Egypt/Giza/Sphinx Amphitheater/Sphinx Ditch/Sphinx East/Removal 14\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"published\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"2017-12-23T01:01:36Z\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"uri\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/media/af4246af-16a1-4770-b00a-f16f774dacf9\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"item category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Image\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Drawing d-e-024\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"snippet\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\" amount of deposits immediately south of the <em>Roman</em> Stairs, between the stairs and the Sound and Light box\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"thumbnail\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://artiraq.org/static/opencontext/giza-sphinx/thumbs/Drawings/d-e-024.jpg\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34mfalse\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/media/af4246af-16a1-4770-b00a-f16f774dacf9\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34mfalse\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"feature-type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"item record\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"context href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/subjects/37cbe2aa-1877-4eba-b3a5-45c43d13abc9\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"project href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/projects/141e814a-ba2d-4560-879f-80f1afb019e9\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"citation uri\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34mfalse\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#rec-12-of-21565\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"geometry\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Point\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-rec-geom-12-of-21565\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"coordinates\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m31.137937830616877\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m29.97526657483614\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/media/af4246af-16a1-4770-b00a-f16f774dacf9\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Drawing d-e-024\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Feature\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#record-12-of-21565\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:geo-record\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"project label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"The Gabii Project\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"updated\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"2018-01-31T08:20:27Z\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"context label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Italy/Gabii/Area B/Unit 1242\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"published\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"2017-06-04T23:26:17Z\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"uri\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/media/99496876-67e8-408f-8da6-212f515ef67f\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"item category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Image\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"2672\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"snippet\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\" Priority Medium \\n File Attachment Filename 2672.pdf \\n \\n<em>Roman</em> Republican\\nhttp://n2t.net/ark:/99152\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"thumbnail\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/static/oc/images/icons/3d-noun-37529.png\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1.0\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/media/99496876-67e8-408f-8da6-212f515ef67f\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m-675.0\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"feature-type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"item record\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"context href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/subjects/4d680e71-b622-42eb-9577-bd0eec2a8251\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"project href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/projects/3585b372-8d2d-436c-9a4c-b5c10fce3ccd\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"citation uri\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34mfalse\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#rec-13-of-21565\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"geometry\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Point\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-rec-geom-13-of-21565\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"coordinates\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m12.719486146888293\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m41.88774442934475\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"when\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"stop\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"0001\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"start\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"-0674\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-gen:formation-use-life\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#event-rec-when-13-of-21565\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/media/99496876-67e8-408f-8da6-212f515ef67f\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"2672\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Feature\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#record-13-of-21565\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:geo-record\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"project label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"The Gabii Project\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"updated\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"2018-01-31T08:18:05Z\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"context label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Italy/Gabii/Area B/Unit 1386\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"published\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"2017-06-04T23:32:24Z\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"uri\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/media/9d2ca9a6-127a-475f-8698-6acaf47f3967\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"item category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Image\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"2770\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"snippet\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\" Medium \\n File Attachment Filename 2770.pdf \\n \\n<em>Roman</em> Republican\\nhttp://n2t.net/ark:/99152/p0qhb66mvjk\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"thumbnail\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/static/oc/images/icons/3d-noun-37529.png\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m200.0\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/media/9d2ca9a6-127a-475f-8698-6acaf47f3967\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m-900.0\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"feature-type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"item record\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"context href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/subjects/321b8a74-9782-450b-93e2-82d963cb2f8f\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"project href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/projects/3585b372-8d2d-436c-9a4c-b5c10fce3ccd\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"citation uri\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34mfalse\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#rec-14-of-21565\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"geometry\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Point\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-rec-geom-14-of-21565\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"coordinates\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m12.719685707676424\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m41.88771672158477\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"when\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"stop\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"0200\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"start\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"-0899\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-gen:formation-use-life\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#event-rec-when-14-of-21565\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/media/9d2ca9a6-127a-475f-8698-6acaf47f3967\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"2770\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Feature\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#record-14-of-21565\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:geo-record\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"project label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"ARCE Sphinx Project 1979-1983 Archive\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"updated\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"2018-03-23T01:06:48Z\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"context label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Egypt/Giza/Sphinx Amphitheater/Sphinx Ditch/Sphinx East\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"published\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"2017-12-23T01:01:46Z\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"uri\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/media/f9d43eb2-12bd-4f8a-9f78-4ecba5406e07\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"item category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Image\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Drawing d-e-042\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"snippet\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\" \\n Resource Type Drawings \\n Keywords Chapel Forepaws Masonry <em>Roman</em> Pavement \\n Scale 1:50 \\n \\n Creator\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"thumbnail\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://artiraq.org/static/opencontext/giza-sphinx/thumbs/Drawings-B/d-e-042.jpg\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34mfalse\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/media/f9d43eb2-12bd-4f8a-9f78-4ecba5406e07\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34mfalse\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"feature-type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"item record\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"context href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/subjects/5714b49e-a383-4738-9235-29841bfaaba0\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"project href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/projects/141e814a-ba2d-4560-879f-80f1afb019e9\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"citation uri\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34mfalse\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#rec-15-of-21565\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"geometry\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Point\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-rec-geom-15-of-21565\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"coordinates\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m31.137937830616877\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m29.97526657483614\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/media/f9d43eb2-12bd-4f8a-9f78-4ecba5406e07\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Drawing d-e-042\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Feature\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#record-15-of-21565\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:geo-record\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"project label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"ARCE Sphinx Project 1979-1983 Archive\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"updated\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"2018-03-23T01:04:33Z\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"context label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Egypt/Giza/Sphinx Amphitheater/Sphinx Ditch/Sphinx East/Removal 14\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"published\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"2017-12-23T01:02:02Z\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"uri\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/media/8b650f2e-2196-45d1-aa17-535943293d23\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"item category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Image\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Drawing d-e-066\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"snippet\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\") R14 \\n \\n Description R14 was the removal of a small amount of deposits immediately south of the <em>Roman</em>\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"thumbnail\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://artiraq.org/static/opencontext/giza-sphinx/thumbs/Drawings-B/d-e-066.jpg\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34mfalse\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/media/8b650f2e-2196-45d1-aa17-535943293d23\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34mfalse\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"feature-type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"item record\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"context href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/subjects/37cbe2aa-1877-4eba-b3a5-45c43d13abc9\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"project href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/projects/141e814a-ba2d-4560-879f-80f1afb019e9\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"citation uri\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://n2t.net/ark:/28722/k2nv9pv9c\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#rec-16-of-21565\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"geometry\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Point\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-rec-geom-16-of-21565\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"coordinates\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m31.137937830616877\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m29.97526657483614\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/media/8b650f2e-2196-45d1-aa17-535943293d23\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Drawing d-e-066\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Feature\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#record-16-of-21565\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:geo-record\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"project label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"ARCE Sphinx Project 1979-1983 Archive\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"updated\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"2018-03-23T01:02:22Z\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"context label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Egypt/Giza/Sphinx Amphitheater/Sphinx Ditch/Sphinx East/Removal 14\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"published\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"2017-12-23T01:02:01Z\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"uri\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/media/0bc963d4-40da-406c-b395-696ea87618be\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"item category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Image\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Drawing d-e-064\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"snippet\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\" was the removal of a small amount of deposits immediately south of the <em>Roman</em> Stairs, between the\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"thumbnail\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://artiraq.org/static/opencontext/giza-sphinx/thumbs/Drawings-B/d-e-064.jpg\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34mfalse\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/media/0bc963d4-40da-406c-b395-696ea87618be\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34mfalse\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"feature-type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"item record\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"context href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/subjects/37cbe2aa-1877-4eba-b3a5-45c43d13abc9\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"project href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/projects/141e814a-ba2d-4560-879f-80f1afb019e9\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"citation uri\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://n2t.net/ark:/28722/k2sn0dp45\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#rec-17-of-21565\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"geometry\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Point\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-rec-geom-17-of-21565\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"coordinates\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m31.137937830616877\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m29.97526657483614\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/media/0bc963d4-40da-406c-b395-696ea87618be\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Drawing d-e-064\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Feature\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#record-17-of-21565\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:geo-record\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"project label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"The Gabii Project\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"updated\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"2018-01-31T08:17:31Z\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"context label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Italy/Gabii/Area B/Unit 1468\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"published\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"2017-06-04T23:33:47Z\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"uri\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/media/9409bf05-af66-4314-b78c-dec7d3a58c77\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"item category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Image\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"2843\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"snippet\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\" Attachment Priority High \\n File Attachment Filename 2843.pdf \\n \\n<em>Roman</em> Republican\\nhttp://n2t.net/ark:/99152\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"thumbnail\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/static/oc/images/icons/3d-noun-37529.png\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34mfalse\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/media/9409bf05-af66-4314-b78c-dec7d3a58c77\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34mfalse\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"feature-type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"item record\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"context href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/subjects/fadbab7d-868a-4b20-b9b9-b54f5544d156\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"project href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/projects/3585b372-8d2d-436c-9a4c-b5c10fce3ccd\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"citation uri\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34mfalse\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#rec-18-of-21565\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"geometry\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Point\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-rec-geom-18-of-21565\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"coordinates\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m12.719678174242606\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m41.88768863730048\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/media/9409bf05-af66-4314-b78c-dec7d3a58c77\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"2843\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Feature\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#record-18-of-21565\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:geo-record\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"project label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"The Gabii Project\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"updated\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"2018-01-31T08:21:34Z\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"context label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Italy/Gabii/Area B/Unit 1321\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"published\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"2017-06-04T23:31:38Z\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"uri\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/media/eeee731e-4394-452b-871d-8b82add85ae2\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"item category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Image\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"2709\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"snippet\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\" \\n File Attachment Filename 2709.pdf \\n \\n<em>Roman</em> Republican\\nhttp://n2t.net/ark:/99152/p0qhb66mvjk\\nTemporal\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"thumbnail\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/static/oc/images/icons/3d-noun-37529.png\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m900.0\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/media/eeee731e-4394-452b-871d-8b82add85ae2\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m-400.0\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"feature-type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"item record\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"context href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/subjects/afe93991-1894-42eb-a1d8-93a3d03dfa6c\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"project href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/projects/3585b372-8d2d-436c-9a4c-b5c10fce3ccd\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"citation uri\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34mfalse\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#rec-19-of-21565\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"geometry\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Point\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-rec-geom-19-of-21565\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"coordinates\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m12.719596721093325\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m41.88778964097052\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"when\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"stop\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"0900\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"start\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"-0399\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-gen:formation-use-life\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#event-rec-when-19-of-21565\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/media/eeee731e-4394-452b-871d-8b82add85ae2\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"2709\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Feature\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#record-19-of-21565\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:geo-record\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"project label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"ARCE Sphinx Project 1979-1983 Archive\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"updated\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"2018-03-23T01:05:26Z\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"context label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Egypt/Giza/Sphinx Amphitheater/Sphinx Ditch/Sphinx Southeast/Feature FSEd3\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"published\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"2017-12-23T01:04:03Z\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"uri\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/media/10a6fd7d-e922-407c-91f1-c492b3b1e6ef\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"item category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Image\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Drawing d-se-001\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"snippet\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\", south of <em>Roman</em> pavement \\n \\n Year \\n Resource Type Drawings \\n Keywords Bedrock Depression Floor\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"thumbnail\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://artiraq.org/static/opencontext/giza-sphinx/thumbs/Drawings/d-se-001.jpg\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34mfalse\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/media/10a6fd7d-e922-407c-91f1-c492b3b1e6ef\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34mfalse\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"feature-type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"item record\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"context href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/subjects/3013a0b2-dfc8-419c-a1ee-23ad344e7d4f\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"project href\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/projects/141e814a-ba2d-4560-879f-80f1afb019e9\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"citation uri\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34mfalse\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#rec-20-of-21565\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"geometry\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Point\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#geo-rec-geom-20-of-21565\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"coordinates\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m31.137930070235992\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34m29.97510631209676\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/media/10a6fd7d-e922-407c-91f1-c492b3b1e6ef\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Drawing d-se-001\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Feature\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#record-20-of-21565\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"oc-api:active-filters\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"oc-api:remove-json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"oc-api:remove\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#filter-1\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"oc-api:filter\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"General Keyword Search\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Search Term: 'roman'\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"oc-api:response-tile-zoom\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m6\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"startIndex\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m0\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Open Context API\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/search/.json?q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"dcmi:created\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"2017-12-23T01:04:03Z\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"oc-api:active-sorting\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"oc-api:sort-order\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"descending\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:interest-score\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#current-sort-1\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Interest score\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"next-json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?q=roman&start=20&rows=20\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"itemsPerPage\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m20\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"next\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&start=20&rows=20\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"start\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"-336999\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"oai-pmh:earliestDatestamp\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"2006-02-28T00:00:00Z\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"@context\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[33m\"https://opencontext.org/contexts/search.json\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[33m\"http://geojson.org/geojson-ld/geojson-context.jsonld\"\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"dc-terms:temporal\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"-336999/2014\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"FeatureCollection\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"dcmi:modified\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"2018-05-31T23:40:00Z\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"oc-api:has-form-use-life-ranges\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m2\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:chrono-facet\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"stop\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"1950\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1950\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m-337405\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"start\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"-337404\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?form-chronotile=10M-00001000101011&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?form-chronotile=10M-00001000101011&q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m2\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:chrono-facet\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"stop\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"1950\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1950\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m-15140\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"start\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"-15139\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?form-chronotile=10M-00000000011011&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?form-chronotile=10M-00000000011011&q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:chrono-facet\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"stop\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"-1101\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m-1102\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m-9647\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"start\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"-9646\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?form-chronotile=10M-00000000010212&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?form-chronotile=10M-00000000010212&q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m8\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:chrono-facet\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"stop\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"-5373\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m-5374\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m-6595\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"start\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"-6594\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?form-chronotile=10M-00000000003301&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?form-chronotile=10M-00000000003301&q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m123\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:chrono-facet\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"stop\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"-5984\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m-5985\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m-6595\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"start\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"-6594\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?form-chronotile=10M-00000000003303&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?form-chronotile=10M-00000000003303&q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m6\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:chrono-facet\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"stop\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"0119\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m119\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m-5985\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"start\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"-5984\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?form-chronotile=10M-00000000001122&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?form-chronotile=10M-00000000001122&q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m3\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:chrono-facet\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"stop\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"-1101\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m-1102\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m-2322\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"start\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"-2321\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?form-chronotile=10M-00000000000312&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?form-chronotile=10M-00000000000312&q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m5\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:chrono-facet\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"stop\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"1340\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1340\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m-1712\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"start\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"-1711\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?form-chronotile=10M-00000000000103&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?form-chronotile=10M-00000000000103&q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m8\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:chrono-facet\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"stop\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"0119\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m119\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m-1712\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"start\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"-1711\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?form-chronotile=10M-00000000000123&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?form-chronotile=10M-00000000000123&q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m55\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:chrono-facet\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"stop\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"-0490\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m-491\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m-1712\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"start\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"-1711\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?form-chronotile=10M-00000000000301&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?form-chronotile=10M-00000000000301&q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m4142\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:chrono-facet\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"stop\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"1950\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1950\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m-1102\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"start\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"-1101\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?form-chronotile=10M-00000000000100&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?form-chronotile=10M-00000000000100&q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m830\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:chrono-facet\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"stop\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"1340\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1340\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m-1102\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"start\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"-1101\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?form-chronotile=10M-00000000000102&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?form-chronotile=10M-00000000000102&q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m195\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:chrono-facet\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"stop\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"0729\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m729\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m-1102\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"start\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"-1101\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?form-chronotile=10M-00000000000120&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?form-chronotile=10M-00000000000120&q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m3268\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:chrono-facet\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"stop\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"0119\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m119\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m-1102\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"start\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"-1101\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?form-chronotile=10M-00000000000122&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?form-chronotile=10M-00000000000122&q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m92\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:chrono-facet\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"stop\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"-0490\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m-491\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m-1102\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"start\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"-1101\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?form-chronotile=10M-00000000000300&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?form-chronotile=10M-00000000000300&q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m7\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:chrono-facet\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"stop\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"1950\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1950\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m-491\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"start\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"-0490\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?form-chronotile=10M-00000000000011&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?form-chronotile=10M-00000000000011&q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1067\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:chrono-facet\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"stop\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"1340\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1340\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m-491\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"start\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"-0490\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?form-chronotile=10M-00000000000013&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?form-chronotile=10M-00000000000013&q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m3478\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:chrono-facet\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"stop\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"0729\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m729\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m-491\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"start\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"-0490\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?form-chronotile=10M-00000000000031&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?form-chronotile=10M-00000000000031&q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m250\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:chrono-facet\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"stop\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"0119\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m119\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m-491\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"start\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"-0490\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?form-chronotile=10M-00000000000033&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?form-chronotile=10M-00000000000033&q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m8\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:chrono-facet\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"stop\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"1950\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1950\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m119\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"start\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"0119\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?form-chronotile=10M-00000000000010&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?form-chronotile=10M-00000000000010&q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m4526\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:chrono-facet\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"stop\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"1340\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1340\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m119\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"start\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"0119\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?form-chronotile=10M-00000000000012&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?form-chronotile=10M-00000000000012&q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1373\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:chrono-facet\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"stop\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"0729\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m729\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m119\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"start\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"0119\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?form-chronotile=10M-00000000000030&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?form-chronotile=10M-00000000000030&q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m34\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:chrono-facet\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"stop\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"1950\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1950\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m729\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"start\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"0729\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?form-chronotile=10M-00000000000001&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?form-chronotile=10M-00000000000001&q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m124\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:chrono-facet\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"stop\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"1340\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1340\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m729\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"start\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"0729\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?form-chronotile=10M-00000000000003&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?form-chronotile=10M-00000000000003&q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m26\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"category\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:chrono-facet\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"stop\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"1950\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"properties\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"late bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1950\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"early bce/ce\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1340\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"start\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"1340\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?form-chronotile=10M-00000000000000&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?form-chronotile=10M-00000000000000&q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"stop\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"2014\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"oc-api:has-facets\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:facet-context\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Context\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"data-type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"id\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"oc-api:has-id-options\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m6267\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"cyprus\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/subjects/67D9F00D-14E6-4A1B-3A61-EC92FC774098\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Cyprus\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/Cyprus.json?q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/Cyprus?q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m4789\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"italy\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/subjects/B66A08F2-5D96-4DD4-1AB1-32880C9A8D9D\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Italy\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/Italy.json?q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/Italy?q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m2777\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"jordan\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/subjects/D9AE02E5-C3F3-41D0-EB3A-39798F63GGGG\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Jordan\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/Jordan.json?q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/Jordan?q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1130\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"turkey\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/subjects/1_Global_Spatial\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Turkey\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/Turkey.json?q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/Turkey?q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m457\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"germany\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/subjects/2_Global_Germany\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Germany\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/Germany.json?q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/Germany?q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m179\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"egypt\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/subjects/A2257E54-3B4F-4DA5-0E50-A428ECEB47A2\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Egypt\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/Egypt.json?q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/Egypt?q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m39\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"palestinian-authority\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/subjects/4_global_Palestine\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Palestinian Authority\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/Palestinian+Authority.json?q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/Palestinian+Authority?q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m39\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"poland\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/subjects/a2f952b7-baef-49d8-9cfb-c32a630ac64e\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Poland\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/Poland.json?q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/Poland?q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m28\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"spain\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/subjects/3776e3e7-91ea-4c35-9481-0b1fae3afa9a\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Spain\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/Spain.json?q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/Spain?q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m14\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"israel\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/subjects/3_Global_Israel\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Israel\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/Israel.json?q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/Israel?q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m12\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"united-states\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/subjects/2A1B75E6-8C79-49B9-873A-A2E006669691\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"United States\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/United+States.json?q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/United+States?q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"mexico\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/subjects/ee431393-7ab1-4d7a-abec-bb05f53babda\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Mexico\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/Mexico.json?q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/Mexico?q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:facet-context\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#facet-context\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:facet-item-type\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Open Context Type\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"data-type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"id\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"oc-api:has-id-options\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m9709\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"subjects\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-gen:subjects\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Subjects\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?q=roman&type=subjects\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&type=subjects\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m6085\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"media\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-gen:media\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Media\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?q=roman&type=media\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&type=media\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m4215\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"types\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-gen:types\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Descriptive types\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?q=roman&type=types\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&type=types\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m846\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"predicates\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-gen:predicates\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Predicates or properties\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?q=roman&type=predicates\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&type=predicates\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m522\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"documents\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-gen:documents\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Documents\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?q=roman&type=documents\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&type=documents\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m172\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"persons\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-gen:persons\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Persons or Organizations\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?q=roman&type=persons\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&type=persons\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m14\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"projects\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-gen:projects\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Projects or Collections\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?q=roman&type=projects\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&type=projects\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m2\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"tables\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-gen:tables\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Tables\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?q=roman&type=tables\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&type=tables\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:facet-item-type\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#facet-item-type\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/vocabularies/oc-general/subjects\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"(Related) Subjects\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"data-type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"id\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"oc-api:has-id-options\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m2886\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"rel--oc-gen-cat-object\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/vocabularies/oc-general/cat-object\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Object\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?prop=rel--oc-gen-cat-object&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?prop=rel--oc-gen-cat-object&q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m2090\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"rel--oc-gen-cat-sample-col\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/vocabularies/oc-general/cat-sample-col\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Sample, Collection, or Aggregation\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?prop=rel--oc-gen-cat-sample-col&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?prop=rel--oc-gen-cat-sample-col&q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1479\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"rel--oc-gen-cat-loc-or-context\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/vocabularies/oc-general/cat-loc-or-context\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Location or Context\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?prop=rel--oc-gen-cat-loc-or-context&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?prop=rel--oc-gen-cat-loc-or-context&q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#facet-prop-oc-gen-subjects\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:facet-prop\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"rel--oc-gen-subjects\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:facet-project\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Project\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"data-type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"id\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"oc-api:has-id-options\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m7922\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"24-murlo\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/projects/DF043419-F23B-41DA-7E4D-EE52AF22F92F\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Murlo\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?q=roman&proj=24-murlo\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&proj=24-murlo\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m6199\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"42-pyla-koutsopetria-archaeological-project-i-pedestrian\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/projects/3F6DCD13-A476-488E-ED10-47D25513FCB2\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Pyla-Koutsopetria Archaeological Project I: Pedestrian Survey\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?q=roman&proj=42-pyla-koutsopetria-archaeological-project-i-pedestrian\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&proj=42-pyla-koutsopetria-archaeological-project-i-pedestrian\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m2939\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"10-petra-great-temple-excavations\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/projects/A5DDBEA2-B3C8-43F9-8151-33343CBDC857\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Petra Great Temple Excavations\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?q=roman&proj=10-petra-great-temple-excavations\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&proj=10-petra-great-temple-excavations\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m2437\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"104-the-gabii-project\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/projects/3585b372-8d2d-436c-9a4c-b5c10fce3ccd\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"The Gabii Project\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?q=roman&proj=104-the-gabii-project\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&proj=104-the-gabii-project\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m977\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"11-aegean-archaeomalacology\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/projects/B1DAC335-4DC6-4A57-622E-75BF28BA598D\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Aegean Archaeomalacology\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?q=roman&proj=11-aegean-archaeomalacology\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&proj=11-aegean-archaeomalacology\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m526\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"65-biometrical-database-of-european-aurochs-and-domestic-c\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/projects/1816A043-92E2-471D-A23D-AAC58695D0D3\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Biometrical Database of European Aurochs and Domestic Cattle\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?q=roman&proj=65-biometrical-database-of-european-aurochs-and-domestic-c\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&proj=65-biometrical-database-of-european-aurochs-and-domestic-c\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m184\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"101-arce-sphinx-project-1979-1983-archive\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/projects/141e814a-ba2d-4560-879f-80f1afb019e9\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"ARCE Sphinx Project 1979-1983 Archive\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?q=roman&proj=101-arce-sphinx-project-1979-1983-archive\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&proj=101-arce-sphinx-project-1979-1983-archive\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m138\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"0-hybrid-objects-and-intercultural-assemblages-in-colonia\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/projects/ab22d409-8051-4f52-a000-7c081ddce52a\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Hybrid Objects and Intercultural Assemblages in Colonial Louisiana\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?q=roman&proj=0-hybrid-objects-and-intercultural-assemblages-in-colonia\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&proj=0-hybrid-objects-and-intercultural-assemblages-in-colonia\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m123\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"35-catalhoyuk-area-tp-zooarchaeology\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/projects/02594C48-7497-40D7-11AE-AB942DC513B8\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"\\u00c7atalh\\u00f6y\\u00fck Area TP Zooarchaeology\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?q=roman&proj=35-catalhoyuk-area-tp-zooarchaeology\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&proj=35-catalhoyuk-area-tp-zooarchaeology\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m46\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"14-bade-museum\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/projects/B4345F6A-F926-4062-144E-3FBC175CC7B6\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Bade Museum\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?q=roman&proj=14-bade-museum\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&proj=14-bade-museum\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m15\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"22-kenan-tepe\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/projects/3DE4CD9C-259E-4C14-9B03-8B10454BA66E\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Kenan Tepe\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?q=roman&proj=22-kenan-tepe\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&proj=22-kenan-tepe\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m15\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"93-biometry-of-iron-age-ii-and-hellenistic-period-dog-bur\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/projects/646b7034-07b7-4971-8d89-ebe37dda4cd2\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Biometry of Iron Age II and Hellenistic Period Dog 'Burials' from Tell Gezer and Other Sites\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?q=roman&proj=93-biometry-of-iron-age-ii-and-hellenistic-period-dog-bur\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&proj=93-biometry-of-iron-age-ii-and-hellenistic-period-dog-bur\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m14\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"1-domuztepe-excavations\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/projects/3\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Domuztepe Excavations\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?q=roman&proj=1-domuztepe-excavations\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&proj=1-domuztepe-excavations\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m7\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"52-digital-index-of-north-american-archaeology-dinaa\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/projects/416A274C-CF88-4471-3E31-93DB825E9E4A\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Digital Index of North American Archaeology (DINAA)\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?q=roman&proj=52-digital-index-of-north-american-archaeology-dinaa\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&proj=52-digital-index-of-north-american-archaeology-dinaa\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m6\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"91-historic-fort-snelling\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/projects/fab0532a-2953-4f13-aa97-8a9d7e992dbe\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Historic Fort Snelling\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?q=roman&proj=91-historic-fort-snelling\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&proj=91-historic-fort-snelling\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m5\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"39-ceramics-trade-provenience-and-geology-cyprus-in-the\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/projects/ABABD13C-A69F-499E-CA7F-5118F3684E4D\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Ceramics, Trade, Provenience and Geology: Cyprus in the Late Bronze Age\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?q=roman&proj=39-ceramics-trade-provenience-and-geology-cyprus-in-the\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&proj=39-ceramics-trade-provenience-and-geology-cyprus-in-the\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m3\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"109-differentiating-local-from-nonlocal-ceramic-production\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/projects/cbd24bbb-c6fc-44ed-bd67-6f844f120ad5\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Differentiating local from nonlocal ceramic production at Iron Age Sardis using NAA\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?q=roman&proj=109-differentiating-local-from-nonlocal-ceramic-production\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&proj=109-differentiating-local-from-nonlocal-ceramic-production\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"100-paleoindian-database-of-the-americas-pidba\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/projects/d75ef68a-0e23-458c-976d-286d83c13013\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Paleoindian Database of the Americas (PIDBA)\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?q=roman&proj=100-paleoindian-database-of-the-americas-pidba\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&proj=100-paleoindian-database-of-the-americas-pidba\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"103-architecture-and-urbanism-at-seyitomer-hoyuk-turkey\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/projects/347286db-b6c6-4fd2-b3bd-b50316b0cb9f\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Architecture and Urbanism at Seyit\\u00f6mer H\\u00f6y\\u00fck, Turkey\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?q=roman&proj=103-architecture-and-urbanism-at-seyitomer-hoyuk-turkey\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&proj=103-architecture-and-urbanism-at-seyitomer-hoyuk-turkey\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"20-dhiban-excavation-and-development-project\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/projects/01D080DF-2F6B-4F59-BCF0-87543AC89574\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Dhiban Excavation and Development Project\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?q=roman&proj=20-dhiban-excavation-and-development-project\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&proj=20-dhiban-excavation-and-development-project\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"21-rough-cilicia\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/projects/295B5BF4-0F44-4698-80CD-7A39CB6F133D\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Rough Cilicia\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?q=roman&proj=21-rough-cilicia\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&proj=21-rough-cilicia\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"26-zooarchaeology-of-karain-cave-b\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/projects/731B0670-CE2A-414A-8EF6-9C050A1C60F5\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Zooarchaeology of Karain Cave B\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?q=roman&proj=26-zooarchaeology-of-karain-cave-b\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&proj=26-zooarchaeology-of-karain-cave-b\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"31-barcin-hoyuk-zooarchaeology\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/projects/74749949-4FD4-4C3E-C830-5AA75703E08E\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Bar\\u00e7\\u0131n H\\u00f6y\\u00fck Zooarchaeology\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?q=roman&proj=31-barcin-hoyuk-zooarchaeology\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&proj=31-barcin-hoyuk-zooarchaeology\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"36-ilipinar-zooarchaeology\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/projects/D297CD29-50CA-4B2C-4A07-498ADF3AF487\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Il\\u0131p\\u0131nar Zooarchaeology\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?q=roman&proj=36-ilipinar-zooarchaeology\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&proj=36-ilipinar-zooarchaeology\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"9-iraq-heritage-program\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/projects/GHF1PRJ0000000025\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Iraq Heritage Program\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?q=roman&proj=9-iraq-heritage-program\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&proj=9-iraq-heritage-program\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"99-idalion\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/projects/df8e4efd-e06b-4b0b-a056-08b6fd199536\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Idalion\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?q=roman&proj=99-idalion\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&proj=99-idalion\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:facet-project\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#facet-project\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:facet-prop-ld\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Descriptions (Common Standards)\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"data-type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"id\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"oc-api:has-id-options\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m10539\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"dc-terms-temporal\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://purl.org/dc/terms/temporal\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Temporal Coverage\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?prop=dc-terms-temporal&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?prop=dc-terms-temporal&q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m5351\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"cidoc-crm-p2-has-type\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://erlangen-crm.org/current/P2_has_type\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Has type\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?prop=cidoc-crm-p2-has-type&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?prop=cidoc-crm-p2-has-type&q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m4282\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"skos-related\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://www.w3.org/2004/02/skos/core#related\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Related\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?prop=skos-related&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?prop=skos-related&q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m3184\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"rel--cidoc-crm-p2-has-type\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://erlangen-crm.org/current/P2_has_type\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Has type\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?prop=rel--cidoc-crm-p2-has-type&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?prop=rel--cidoc-crm-p2-has-type&q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1089\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"rel--cidoc-crm-p45-consists-of\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://erlangen-crm.org/current/P45_consists_of\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Consists of\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?prop=rel--cidoc-crm-p45-consists-of&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?prop=rel--cidoc-crm-p45-consists-of&q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m988\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-zoo-has-anat-id\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/vocabularies/open-context-zooarch/has-anat-id\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Has anatomical identification\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?prop=oc-zoo-has-anat-id&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?prop=oc-zoo-has-anat-id&q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m964\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"biol-term-hastaxonomy\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://purl.org/NET/biol/ns#term_hasTaxonomy\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Has Biological Taxonomy\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?prop=biol-term-hastaxonomy&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?prop=biol-term-hastaxonomy&q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m542\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-zoo-anatomical-meas\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/vocabularies/open-context-zooarch/anatomical-meas\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Anatomical measurement\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?prop=oc-zoo-anatomical-meas&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?prop=oc-zoo-anatomical-meas&q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m527\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"dc-terms-references\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://purl.org/dc/terms/references\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"References\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?prop=dc-terms-references&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?prop=dc-terms-references&q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m521\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-zoo-has-fusion-char\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/vocabularies/open-context-zooarch/has-fusion-char\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Has fusion character\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?prop=oc-zoo-has-fusion-char&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?prop=oc-zoo-has-fusion-char&q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m495\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"cidoc-crm-p45-consists-of\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://erlangen-crm.org/current/P45_consists_of\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Consists of\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?prop=cidoc-crm-p45-consists-of&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?prop=cidoc-crm-p45-consists-of&q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m491\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"dc-terms-ispartof\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://purl.org/dc/terms/isPartOf\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Is Part Of\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?prop=dc-terms-ispartof&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?prop=dc-terms-ispartof&q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m420\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"skos-closematch\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://www.w3.org/2004/02/skos/core#closeMatch\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Close Match\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?prop=skos-closematch&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?prop=skos-closematch&q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m137\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"rel--gawd-origin\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://gawd.atlantides.org/terms/origin\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Origin place\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?prop=rel--gawd-origin&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?prop=rel--gawd-origin&q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m125\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"rel--dc-terms-subject\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://purl.org/dc/terms/subject\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Subject\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?prop=rel--dc-terms-subject&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?prop=rel--dc-terms-subject&q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m70\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"gawd-origin\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://gawd.atlantides.org/terms/origin\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Origin place\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?prop=gawd-origin&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?prop=gawd-origin&q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m48\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"dc-terms-subject\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://purl.org/dc/terms/subject\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Subject\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?prop=dc-terms-subject&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?prop=dc-terms-subject&q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m18\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"dc-terms-isreferencedby\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://purl.org/dc/terms/isReferencedBy\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Is Referenced By\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?prop=dc-terms-isreferencedby&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?prop=dc-terms-isreferencedby&q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m17\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"dc-terms-haspart\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://purl.org/dc/terms/hasPart\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Has Part\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?prop=dc-terms-haspart&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?prop=dc-terms-haspart&q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m14\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"bibo-status\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://purl.org/ontology/bibo/status\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Status\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?prop=bibo-status&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?prop=bibo-status&q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m12\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"dc-terms-spatial\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://purl.org/dc/terms/spatial\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Spatial\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?prop=dc-terms-spatial&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?prop=dc-terms-spatial&q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m11\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"dc-terms-coverage\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://purl.org/dc/terms/coverage\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Coverage\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?prop=dc-terms-coverage&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?prop=dc-terms-coverage&q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m8\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-zoo-has-phys-sex-det\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/vocabularies/open-context-zooarch/has-phys-sex-det\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Has physiological sex determination\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?prop=oc-zoo-has-phys-sex-det&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?prop=oc-zoo-has-phys-sex-det&q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m6\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"dinaa-00001\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://opencontext.org/vocabularies/dinaa/00001\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Has period\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?prop=dinaa-00001&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?prop=dinaa-00001&q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"rel--dc-terms-references\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://purl.org/dc/terms/references\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"References\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?prop=rel--dc-terms-references&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?prop=rel--dc-terms-references&q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"oc-api:has-text-options\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m133\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"rel--skos-altlabel\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://www.w3.org/2004/02/skos/core#altLabel\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Alternative label\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?prop=rel--skos-altlabel&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?prop=rel--skos-altlabel&q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m6\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"skos-altlabel\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://www.w3.org/2004/02/skos/core#altLabel\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Alternative label\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?prop=skos-altlabel&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?prop=skos-altlabel&q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m3\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"slug\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"dc-terms-identifier\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"rdfs:isDefinedBy\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"http://purl.org/dc/terms/identifier\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Identifier\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?prop=dc-terms-identifier&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?prop=dc-terms-identifier&q=roman\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:facet-prop\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#facet-prop-ld\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"oc-api:has-rel-media-options\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m1883\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?images=1&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?images=1&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Linked with images\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m41\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?other-media=1&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?other-media=1&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Linked with media (non-image)\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"count\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m19\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?q=roman&documents=1\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&documents=1\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Linked with documents\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#related-media\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Has Related Media\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"totalResults\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m21565\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"last-json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?q=roman&start=21560&rows=20\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"last\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q=roman&start=21560&rows=20\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"oc-api:max-disc-tile-zoom\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[34m20\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"oc-api:has-sorting\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?sort=item--asc&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"oc-api:sort-order\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"ascending\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:sort-item\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?sort=item--asc&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Item (type, provenance, label)\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?sort=item--desc&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"oc-api:sort-order\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"descending\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:sort-item\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?sort=item--desc&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Item (type, provenance, label)\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?sort=updated--asc&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"oc-api:sort-order\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"ascending\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:sort-updated\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?sort=updated--asc&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Updated\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?sort=updated--desc&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"oc-api:sort-order\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"descending\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"type\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"oc-api:sort-updated\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?sort=updated--desc&q=roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"Updated\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"oc-api:has-text-search\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m[\u001b[39;49;00m\n",
" \u001b[39;49;00m{\u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"oc-api:template\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/?q={SearchTerm}\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"oc-api:template-json\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"https://opencontext.org/search/.json?q={SearchTerm}\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"id\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"#textfield-keyword-search\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"oc-api:search-term\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"roman\"\u001b[39;49;00m,\u001b[39;49;00m \u001b[39;49;00m\n",
" \u001b[39;49;00m\u001b[34;01m\"label\"\u001b[39;49;00m:\u001b[39;49;00m \u001b[39;49;00m\u001b[33m\"General Keyword Search\"\u001b[39;49;00m\n",
" \u001b[39;49;00m}\u001b[39;49;00m\n",
" \u001b[39;49;00m]\u001b[39;49;00m\n",
"}\u001b[39;49;00m\n",
"\n"
]
}
],
"source": [
"# Let's prettify the raw JSON data and then display it.\n",
"\n",
"# We're using the Pygments library to add some colour to the output, so we need to import it\n",
"import json\n",
"from pygments import highlight, lexers, formatters\n",
"\n",
"# This uses Python's JSON module to output the results as nicely indented text\n",
"formatted_data = json.dumps(data, indent=2)\n",
"\n",
"# This colours the text\n",
"highlighted_data = highlight(formatted_data, lexers.JsonLexer(), formatters.TerminalFormatter())\n",
"\n",
"# And now display the results\n",
"print(highlighted_data)"
]
},
{
"cell_type": "code",
"execution_count": 12,
"metadata": {
"collapsed": false,
"scrolled": true
},
"outputs": [],
"source": [
"# dump json to file\n",
"import json\n",
"with open('romandata.json', 'w') as outfile:\n",
" json.dump(data, outfile)\n",
" "
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 2",
"language": "python",
"name": "python2"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 2
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython2",
"version": "2.7.10"
}
},
"nbformat": 4,
"nbformat_minor": 0
}
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment